fix
[oweals/gnunet.git] / src / dht / gnunet-dht-driver.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20 /**
21  * @file dht/gnunet-dht-driver.c
22  * @brief Driver for setting up a group of gnunet peers and
23  *        then issuing GETS and PUTS on the DHT.  Coarse results
24  *        are reported, fine grained results (if requested) are
25  *        logged to a (mysql) database, or to file.
26  *
27  * FIXME: Do churn!
28  */
29 #include "platform.h"
30 #ifndef HAVE_MALICIOUS
31 #error foo
32 #endif
33 #include "gnunet_testing_lib.h"
34 #include "gnunet_core_service.h"
35 #include "gnunet_dht_service.h"
36 #include "dhtlog.h"
37 #include "dht.h"
38
39 /* DEFINES */
40 #define VERBOSE GNUNET_NO
41
42 /* Timeout for entire driver to run */
43 #define DEFAULT_TIMEOUT GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, 5)
44
45 /* Timeout for waiting for (individual) replies to get requests */
46 #define DEFAULT_GET_TIMEOUT GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 90)
47
48 #define DEFAULT_TOPOLOGY_CAPTURE_TIMEOUT GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 90)
49
50 /* Timeout for waiting for gets to be sent to the service */
51 #define DEFAULT_GET_DELAY GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 10)
52
53 /* Timeout for waiting for puts to be sent to the service */
54 #define DEFAULT_PUT_DELAY GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 10)
55
56 /* Time to allow a find peer request to take */
57 #define DEFAULT_FIND_PEER_DELAY GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 40)
58
59 /* Time to wait for all peers disconnected due to to churn to actually be removed from system */
60 #define DEFAULT_PEER_DISCONNECT_TIMEOUT GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, 5)
61
62 #define DEFAULT_SECONDS_PER_PEER_START GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 45)
63
64 #define DEFAULT_TEST_DATA_SIZE 8
65
66 #define DEFAULT_BUCKET_SIZE 4
67
68 #define FIND_PEER_THRESHOLD 1
69
70 /* If more than this many peers are added, slow down sending */
71 #define MAX_FIND_PEER_CUTOFF 4000
72
73 /* If less than this many peers are added, speed up sending */
74 #define MIN_FIND_PEER_CUTOFF 500
75
76 #define DEFAULT_MAX_OUTSTANDING_PUTS 10
77
78 #define DEFAULT_MAX_OUTSTANDING_FIND_PEERS 196
79
80 #define DEFAULT_FIND_PEER_OFFSET GNUNET_TIME_relative_divide (DEFAULT_FIND_PEER_DELAY, DEFAULT_MAX_OUTSTANDING_FIND_PEERS)
81
82 #define DEFAULT_MAX_OUTSTANDING_GETS 10
83
84 #define DEFAULT_CONNECT_TIMEOUT 60
85
86 #define DEFAULT_TOPOLOGY_TIMEOUT GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, 8)
87
88 #define DEFAULT_RECONNECT_ATTEMPTS 8
89
90 /*
91  * Default frequency for sending malicious get messages
92  */
93 #define DEFAULT_MALICIOUS_GET_FREQUENCY GNUNET_TIME_UNIT_SECONDS
94
95 /*
96  * Default frequency for sending malicious put messages
97  */
98 #define DEFAULT_MALICIOUS_PUT_FREQUENCY GNUNET_TIME_UNIT_SECONDS
99
100 /* Structs */
101
102 struct MaliciousContext
103 {
104   /**
105    * Handle to DHT service (via the API)
106    */
107   struct GNUNET_DHT_Handle *dht_handle;
108
109   /**
110    *  Handle to the peer daemon
111    */
112   struct GNUNET_TESTING_Daemon *daemon;
113
114   /**
115    * Task for disconnecting DHT handles
116    */
117   GNUNET_SCHEDULER_TaskIdentifier disconnect_task;
118
119   /**
120    * What type of malicious to set this peer to.
121    */
122   int malicious_type;
123 };
124
125 struct TestFindPeer
126 {
127   /* This is a linked list */
128   struct TestFindPeer *next;
129
130   /* Handle to the bigger context */
131   struct FindPeerContext *find_peer_context;
132
133   /**
134    * Handle to the peer's DHT service (via the API)
135    */
136   struct GNUNET_DHT_Handle *dht_handle;
137
138   /**
139    *  Handle to the peer daemon
140    */
141   struct GNUNET_TESTING_Daemon *daemon;
142
143   /**
144    * Task for disconnecting DHT handles
145    */
146   GNUNET_SCHEDULER_TaskIdentifier disconnect_task;
147 };
148
149 struct TestPutContext
150 {
151   /* This is a linked list */
152   struct TestPutContext *next;
153
154   /**
155    * Handle to the first peers DHT service (via the API)
156    */
157   struct GNUNET_DHT_Handle *dht_handle;
158
159   /**
160    *  Handle to the PUT peer daemon
161    */
162   struct GNUNET_TESTING_Daemon *daemon;
163
164   /**
165    *  Identifier for this PUT
166    */
167   uint32_t uid;
168
169   /**
170    * Task for disconnecting DHT handles
171    */
172   GNUNET_SCHEDULER_TaskIdentifier disconnect_task;
173 };
174
175 struct TestGetContext
176 {
177   /* This is a linked list */
178   struct TestGetContext *next;
179
180   /**
181    * Handle to the first peers DHT service (via the API)
182    */
183   struct GNUNET_DHT_Handle *dht_handle;
184
185   /**
186    * Handle for the DHT get request
187    */
188   struct GNUNET_DHT_GetHandle *get_handle;
189
190   /**
191    *  Handle to the GET peer daemon
192    */
193   struct GNUNET_TESTING_Daemon *daemon;
194
195   /**
196    *  Identifier for this GET
197    */
198   uint32_t uid;
199
200   /**
201    * Task for disconnecting DHT handles (and stopping GET)
202    */
203   GNUNET_SCHEDULER_TaskIdentifier disconnect_task;
204
205   /**
206    * Whether or not this request has been fulfilled already.
207    */
208   int succeeded;
209 };
210
211 /**
212  * Simple struct to keep track of progress, and print a
213  * nice little percentage meter for long running tasks.
214  */
215 struct ProgressMeter
216 {
217   unsigned int total;
218
219   unsigned int modnum;
220
221   unsigned int dotnum;
222
223   unsigned int completed;
224
225   int print;
226
227   char *startup_string;
228 };
229
230 /**
231  * Linked list of information for populating statistics
232  * before ending trial.
233  */
234 struct StatisticsIteratorContext
235 {
236   const struct GNUNET_PeerIdentity *peer;
237   unsigned int stat_routes;
238   unsigned int stat_route_forwards;
239   unsigned int stat_results;
240   unsigned int stat_results_to_client;
241   unsigned int stat_result_forwards;
242   unsigned int stat_gets;
243   unsigned int stat_puts;
244   unsigned int stat_puts_inserted;
245   unsigned int stat_find_peer;
246   unsigned int stat_find_peer_start;
247   unsigned int stat_get_start;
248   unsigned int stat_put_start;
249   unsigned int stat_find_peer_reply;
250   unsigned int stat_get_reply;
251   unsigned int stat_find_peer_answer;
252   unsigned int stat_get_response_start;
253 };
254
255 /**
256  * Context for getting a topology, logging it, and continuing
257  * on with some next operation.
258  */
259 struct TopologyIteratorContext
260 {
261   unsigned int total_iterations;
262   unsigned int current_iteration;
263   unsigned int total_connections;
264   unsigned int total_peers;
265   struct GNUNET_CONTAINER_MultiHashMap *peers_seen;
266   struct GNUNET_PeerIdentity *peer;
267   GNUNET_SCHEDULER_Task cont;
268   void *cls;
269   struct GNUNET_TIME_Relative timeout;
270 };
271
272
273 struct PeerCount
274 {
275   /** Node in the heap */
276   struct GNUNET_CONTAINER_HeapNode *heap_node;
277
278   /** Peer the count refers to */
279   struct GNUNET_PeerIdentity peer_id;
280
281   /** Count of connections this peer has */
282   unsigned int count;
283 };
284
285 /**
286  * Context for sending out find peer requests.
287  */
288 struct FindPeerContext
289 {
290   /**
291    * How long to send find peer requests, once the settle time
292    * is over don't send any more out!
293    *
294    * TODO: Add option for settle time and find peer sending time?
295    */
296   struct GNUNET_TIME_Absolute endtime;
297
298   /**
299    * Number of connections in the current topology
300    * (after this round of find peer requests has ended).
301    */
302   unsigned int current_peers;
303
304   /**
305    * Number of connections in the current topology
306    * (before this round of find peer requests started).
307    */
308   unsigned int previous_peers;
309
310   /**
311    * Number of find peer requests we have currently
312    * outstanding.
313    */
314   unsigned int outstanding;
315
316   /**
317    * Number of find peer requests to send in this round.
318    */
319   unsigned int total;
320
321   /**
322    * Number of find peer requests sent last time around.
323    */
324   unsigned int last_sent;
325
326   /**
327    * Hashmap of peers in the current topology, value
328    * is a PeerCount, with the number of connections
329    * this peer has.
330    */
331   struct GNUNET_CONTAINER_MultiHashMap *peer_hash;
332
333   /**
334    * Min heap which orders values in the peer_hash for
335    * easy lookup.
336    */
337   struct GNUNET_CONTAINER_Heap *peer_min_heap;
338
339   /**
340    * Callback for counting the peers in the current topology.
341    */
342   GNUNET_TESTING_NotifyTopology count_peers_cb;
343 };
344
345 enum DHT_ROUND_TYPES
346 {
347   /**
348    * Next full round (puts + gets).
349    */
350   DHT_ROUND_NORMAL,
351
352   /**
353    * Next round of gets.
354    */
355   DHT_ROUND_GET,
356
357   /**
358    * Next round of puts.
359    */
360   DHT_ROUND_PUT,
361
362   /**
363    * Next round of churn.
364    */
365   DHT_ROUND_CHURN
366 };
367
368
369
370 /* Globals */
371
372 /**
373  * Timeout to let all get requests happen.
374  */
375 static struct GNUNET_TIME_Relative all_get_timeout;
376
377 /**
378  * Per get timeout
379  */
380 static struct GNUNET_TIME_Relative get_timeout;
381
382 static struct GNUNET_TIME_Relative get_delay;
383
384 static struct GNUNET_TIME_Relative put_delay;
385
386 static struct GNUNET_TIME_Relative find_peer_delay;
387
388 static struct GNUNET_TIME_Relative find_peer_offset;
389
390 static struct GNUNET_TIME_Relative seconds_per_peer_start;
391
392 static unsigned int do_find_peer;
393
394 static unsigned int in_dht_replication;
395
396 static unsigned long long test_data_size = DEFAULT_TEST_DATA_SIZE;
397
398 static unsigned long long max_outstanding_puts = DEFAULT_MAX_OUTSTANDING_PUTS;
399
400 static unsigned long long max_outstanding_gets = DEFAULT_MAX_OUTSTANDING_GETS;
401
402 static unsigned long long malicious_getters;
403
404 static unsigned long long max_outstanding_find_peers;
405
406 static unsigned long long malicious_putters;
407
408 static unsigned long long round_delay;
409
410 static unsigned long long malicious_droppers;
411
412 static struct GNUNET_TIME_Relative malicious_get_frequency;
413
414 static struct GNUNET_TIME_Relative malicious_put_frequency;
415
416 static unsigned long long settle_time;
417
418 static unsigned long long trial_to_run;
419
420 static struct GNUNET_DHTLOG_Handle *dhtlog_handle;
421
422 static unsigned long long trialuid;
423
424 /**
425  * If GNUNET_YES, insert data at the same peers every time.
426  * Otherwise, choose a new random peer to insert at each time.
427  */
428 static unsigned int replicate_same;
429
430 /**
431  * Number of rounds for testing (PUTS + GETS)
432  */
433 static unsigned long long total_rounds;
434
435 /**
436  * Number of rounds already run
437  */
438 static unsigned int rounds_finished;
439
440 /**
441  * Number of rounds of churn to read from the file (first line, should be a single number).
442  */
443 static unsigned int churn_rounds;
444
445 /**
446  * Current round we are in for churn, tells us how many peers to connect/disconnect.
447  */
448 static unsigned int current_churn_round;
449
450 /**
451  * Number of times to churn per round
452  */
453 static unsigned long long churns_per_round;
454
455 /**
456  * Array of churn values.
457  */
458 static unsigned int *churn_array;
459
460 /**
461  * Hash map of stats contexts.
462  */
463 struct GNUNET_CONTAINER_MultiHashMap *stats_map;
464
465 /**
466  * LL of malicious settings.
467  */
468 struct MaliciousContext *all_malicious;
469
470 /**
471  * List of GETS to perform
472  */
473 struct TestGetContext *all_gets;
474
475 /**
476  * List of PUTS to perform
477  */
478 struct TestPutContext *all_puts;
479
480 /**
481  * Directory to store temporary data in, defined in config file
482  */
483 static char *test_directory;
484
485 /**
486  * Variable used to store the number of connections we should wait for.
487  */
488 static unsigned int expected_connections;
489
490 /**
491  * Variable used to keep track of how many peers aren't yet started.
492  */
493 static unsigned long long peers_left;
494
495 /**
496  * Handle to the set of all peers run for this test.
497  */
498 static struct GNUNET_TESTING_PeerGroup *pg;
499
500 /**
501  * Global scheduler, used for all GNUNET_SCHEDULER_* functions.
502  */
503 static struct GNUNET_SCHEDULER_Handle *sched;
504
505 /**
506  * Global config handle.
507  */
508 const struct GNUNET_CONFIGURATION_Handle *config;
509
510 /**
511  * Total number of peers to run, set based on config file.
512  */
513 static unsigned long long num_peers;
514
515 /**
516  * Total number of items to insert.
517  */
518 static unsigned long long num_puts;
519
520 /**
521  * How many puts do we currently have in flight?
522  */
523 static unsigned long long outstanding_puts;
524
525 /**
526  * How many puts are done?
527  */
528 static unsigned long long puts_completed;
529
530 /**
531  * Total number of items to attempt to get.
532  */
533 static unsigned long long num_gets;
534
535 /**
536  * How many puts do we currently have in flight?
537  */
538 static unsigned long long outstanding_gets;
539
540 /**
541  * How many gets are done?
542  */
543 static unsigned long long gets_completed;
544
545 /**
546  * How many gets failed?
547  */
548 static unsigned long long gets_failed;
549
550 /**
551  * How many malicious control messages do
552  * we currently have in flight?
553  */
554 static unsigned long long outstanding_malicious;
555
556 /**
557  * How many set malicious peers are done?
558  */
559 static unsigned long long malicious_completed;
560
561 /**
562  * Global used to count how many connections we have currently
563  * been notified about (how many times has topology_callback been called
564  * with success?)
565  */
566 static unsigned int total_connections;
567
568 /**
569  * Global used to count how many failed connections we have
570  * been notified about (how many times has topology_callback
571  * been called with failure?)
572  */
573 static unsigned int failed_connections;
574
575 /* Task handle to use to schedule shutdown if something goes wrong */
576 GNUNET_SCHEDULER_TaskIdentifier die_task;
577
578 static char *blacklist_transports;
579
580 static enum GNUNET_TESTING_Topology topology;
581
582 static enum GNUNET_TESTING_Topology blacklist_topology = GNUNET_TESTING_TOPOLOGY_NONE; /* Don't do any blacklisting */
583
584 static enum GNUNET_TESTING_Topology connect_topology = GNUNET_TESTING_TOPOLOGY_NONE; /* NONE actually means connect all allowed peers */
585
586 static enum GNUNET_TESTING_TopologyOption connect_topology_option = GNUNET_TESTING_TOPOLOGY_OPTION_ALL;
587
588 static double connect_topology_option_modifier = 0.0;
589
590 static struct ProgressMeter *hostkey_meter;
591
592 static struct ProgressMeter *peer_start_meter;
593
594 static struct ProgressMeter *peer_connect_meter;
595
596 static struct ProgressMeter *put_meter;
597
598 static struct ProgressMeter *get_meter;
599
600 static GNUNET_HashCode *known_keys;
601
602 /* Global return value (0 for success, anything else for failure) */
603 static int ok;
604
605 /**
606  * Create a meter to keep track of the progress of some task.
607  *
608  * @param total the total number of items to complete
609  * @param start_string a string to prefix the meter with (if printing)
610  * @param print GNUNET_YES to print the meter, GNUNET_NO to count
611  *              internally only
612  *
613  * @return the progress meter
614  */
615 static struct ProgressMeter *
616 create_meter(unsigned int total, char * start_string, int print)
617 {
618   struct ProgressMeter *ret;
619   ret = GNUNET_malloc(sizeof(struct ProgressMeter));
620   ret->print = print;
621   ret->total = total;
622   ret->modnum = total / 4;
623   ret->dotnum = (total / 50) + 1;
624   if (start_string != NULL)
625     ret->startup_string = GNUNET_strdup(start_string);
626   else
627     ret->startup_string = GNUNET_strdup("");
628
629   return ret;
630 }
631
632 /**
633  * Update progress meter (increment by one).
634  *
635  * @param meter the meter to update and print info for
636  *
637  * @return GNUNET_YES if called the total requested,
638  *         GNUNET_NO if more items expected
639  */
640 static int
641 update_meter(struct ProgressMeter *meter)
642 {
643   if (meter->print == GNUNET_YES)
644     {
645       if (meter->completed % meter->modnum == 0)
646         {
647           if (meter->completed == 0)
648             {
649               fprintf(stdout, "%sProgress: [0%%", meter->startup_string);
650             }
651           else
652             fprintf(stdout, "%d%%", (int)(((float)meter->completed / meter->total) * 100));
653         }
654       else if (meter->completed % meter->dotnum == 0)
655         fprintf(stdout, ".");
656
657       if (meter->completed + 1 == meter->total)
658         fprintf(stdout, "%d%%]\n", 100);
659       fflush(stdout);
660     }
661   meter->completed++;
662
663   if (meter->completed == meter->total)
664     return GNUNET_YES;
665   return GNUNET_NO;
666 }
667
668 /**
669  * Reset progress meter.
670  *
671  * @param meter the meter to reset
672  *
673  * @return GNUNET_YES if meter reset,
674  *         GNUNET_SYSERR on error
675  */
676 static int
677 reset_meter(struct ProgressMeter *meter)
678 {
679   if (meter == NULL)
680     return GNUNET_SYSERR;
681
682   meter->completed = 0;
683   return GNUNET_YES;
684 }
685
686 /**
687  * Release resources for meter
688  *
689  * @param meter the meter to free
690  */
691 static void
692 free_meter(struct ProgressMeter *meter)
693 {
694   GNUNET_free_non_null(meter->startup_string);
695   GNUNET_free_non_null(meter);
696 }
697
698 /**
699  * Check whether peers successfully shut down.
700  */
701 void shutdown_callback (void *cls,
702                         const char *emsg)
703 {
704   if (emsg != NULL)
705     {
706       if (ok == 0)
707         ok = 2;
708     }
709 }
710
711 /**
712  * Task to release DHT handles for PUT
713  */
714 static void
715 put_disconnect_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
716 {
717   struct TestPutContext *test_put = cls;
718   test_put->disconnect_task = GNUNET_SCHEDULER_NO_TASK;
719   GNUNET_DHT_disconnect(test_put->dht_handle);
720   test_put->dht_handle = NULL;
721   test_put->daemon = GNUNET_TESTING_daemon_get(pg, GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_peers));
722 }
723
724 /**
725  * Function scheduled to be run on the successful completion of this
726  * testcase.
727  */
728 static void
729 finish_testing (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
730 {
731   GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Ending test normally!\n", (char *)cls);
732   GNUNET_assert (pg != NULL);
733   struct TestPutContext *test_put = all_puts;
734   struct TestGetContext *test_get = all_gets;
735
736   while (test_put != NULL)
737     {
738       if (test_put->disconnect_task != GNUNET_SCHEDULER_NO_TASK)
739         GNUNET_SCHEDULER_cancel(sched, test_put->disconnect_task);
740       if (test_put->dht_handle != NULL)
741         GNUNET_DHT_disconnect(test_put->dht_handle);
742       test_put = test_put->next;
743     }
744
745   while (test_get != NULL)
746     {
747       if (test_get->disconnect_task != GNUNET_SCHEDULER_NO_TASK)
748         GNUNET_SCHEDULER_cancel(sched, test_get->disconnect_task);
749       if (test_get->get_handle != NULL)
750         GNUNET_DHT_get_stop(test_get->get_handle);
751       if (test_get->dht_handle != NULL)
752         GNUNET_DHT_disconnect(test_get->dht_handle);
753       test_get = test_get->next;
754     }
755
756   GNUNET_TESTING_daemons_stop (pg, DEFAULT_TIMEOUT, &shutdown_callback, NULL);
757
758   if (dhtlog_handle != NULL)
759     {
760       fprintf(stderr, "Update trial endtime\n");
761       dhtlog_handle->update_trial (trialuid, gets_completed);
762       GNUNET_DHTLOG_disconnect(dhtlog_handle);
763       dhtlog_handle = NULL;
764     }
765
766   if (hostkey_meter != NULL)
767     free_meter(hostkey_meter);
768   if (peer_start_meter != NULL)
769     free_meter(peer_start_meter);
770   if (peer_connect_meter != NULL)
771     free_meter(peer_connect_meter);
772   if (put_meter != NULL)
773     free_meter(put_meter);
774   if (get_meter != NULL)
775     free_meter(get_meter);
776
777   ok = 0;
778 }
779
780 /**
781  * Callback for iterating over all the peer connections of a peer group.
782  */
783 void log_topology_cb (void *cls,
784                       const struct GNUNET_PeerIdentity *first,
785                       const struct GNUNET_PeerIdentity *second,
786                       struct GNUNET_TIME_Relative latency,
787                       uint32_t distance,
788                       const char *emsg)
789 {
790   struct TopologyIteratorContext *topo_ctx = cls;
791   if ((first != NULL) && (second != NULL))
792     {
793       if ((topo_ctx->peers_seen != NULL) && (GNUNET_NO == GNUNET_CONTAINER_multihashmap_contains(topo_ctx->peers_seen, &first->hashPubKey)))
794         {
795           GNUNET_CONTAINER_multihashmap_put(topo_ctx->peers_seen, &first->hashPubKey, NULL, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
796           topo_ctx->total_peers++;
797         }
798       topo_ctx->total_connections++;
799       if (GNUNET_YES == GNUNET_CONFIGURATION_get_value_yesno(config, "dht_testing", "mysql_logging_extended"))
800         dhtlog_handle->insert_extended_topology(first, second);
801     }
802   else
803     {
804       GNUNET_assert(dhtlog_handle != NULL);
805       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Topology iteration (%u/%u) finished (%u connections, %u peers)\n", topo_ctx->current_iteration, topo_ctx->total_iterations, topo_ctx->total_connections, topo_ctx->total_peers);
806       dhtlog_handle->update_topology(topo_ctx->total_connections);
807       if (topo_ctx->cont != NULL)
808         GNUNET_SCHEDULER_add_now (sched, topo_ctx->cont, topo_ctx->cls);
809       if (topo_ctx->peers_seen != NULL)
810         GNUNET_CONTAINER_multihashmap_destroy(topo_ctx->peers_seen);
811       GNUNET_free(topo_ctx);
812     }
813 }
814
815 /**
816  * Iterator over hash map entries.
817  *
818  * @param cls closure - always NULL
819  * @param key current key code
820  * @param value value in the hash map, a stats context
821  * @return GNUNET_YES if we should continue to
822  *         iterate,
823  *         GNUNET_NO if not.
824  */
825 static int stats_iterate (void *cls,
826                           const GNUNET_HashCode * key,
827                           void *value)
828 {
829   struct StatisticsIteratorContext *stats_ctx;
830   if (value == NULL)
831     return GNUNET_NO;
832   stats_ctx = value;
833   dhtlog_handle->insert_stat(stats_ctx->peer, stats_ctx->stat_routes, stats_ctx->stat_route_forwards, stats_ctx->stat_results,
834                              stats_ctx->stat_results_to_client, stats_ctx->stat_result_forwards, stats_ctx->stat_gets,
835                              stats_ctx->stat_puts, stats_ctx->stat_puts_inserted, stats_ctx->stat_find_peer,
836                              stats_ctx->stat_find_peer_start, stats_ctx->stat_get_start, stats_ctx->stat_put_start,
837                              stats_ctx->stat_find_peer_reply, stats_ctx->stat_get_reply, stats_ctx->stat_find_peer_answer,
838                              stats_ctx->stat_get_response_start);
839   GNUNET_free(stats_ctx);
840   return GNUNET_YES;
841 }
842
843 static void stats_finished (void *cls, int result)
844 {
845   fprintf(stderr, "Finished getting all peers statistics, iterating!\n");
846   GNUNET_CONTAINER_multihashmap_iterate(stats_map, &stats_iterate, NULL);
847   GNUNET_CONTAINER_multihashmap_destroy(stats_map);
848   GNUNET_SCHEDULER_add_now (sched, &finish_testing, NULL);
849 }
850
851 /**
852  * Callback function to process statistic values.
853  *
854  * @param cls closure
855  * @param peer the peer the statistics belong to
856  * @param subsystem name of subsystem that created the statistic
857  * @param name the name of the datum
858  * @param value the current value
859  * @param is_persistent GNUNET_YES if the value is persistent, GNUNET_NO if not
860  * @return GNUNET_OK to continue, GNUNET_SYSERR to abort iteration
861  */
862 static int stats_handle  (void *cls,
863                           const struct GNUNET_PeerIdentity *peer,
864                           const char *subsystem,
865                           const char *name,
866                           uint64_t value,
867                           int is_persistent)
868 {
869   struct StatisticsIteratorContext *stats_ctx;
870
871   if (dhtlog_handle != NULL)
872     dhtlog_handle->add_generic_stat(peer, name, subsystem, value);
873   if (GNUNET_CONTAINER_multihashmap_contains(stats_map, &peer->hashPubKey))
874     {
875       stats_ctx = GNUNET_CONTAINER_multihashmap_get(stats_map, &peer->hashPubKey);
876     }
877   else
878     {
879       stats_ctx = GNUNET_malloc(sizeof(struct StatisticsIteratorContext));
880       stats_ctx->peer = peer;
881       GNUNET_CONTAINER_multihashmap_put(stats_map, &peer->hashPubKey, stats_ctx, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
882     }
883   GNUNET_assert(stats_ctx != NULL);
884
885   if (strcmp(name, STAT_ROUTES) == 0)
886     stats_ctx->stat_routes = value;
887   else if (strcmp(name, STAT_ROUTE_FORWARDS) == 0)
888     stats_ctx->stat_route_forwards = value;
889   else if (strcmp(name, STAT_RESULTS) == 0)
890     stats_ctx->stat_results = value;
891   else if (strcmp(name, STAT_RESULTS_TO_CLIENT) == 0)
892     stats_ctx->stat_results_to_client = value;
893   else if (strcmp(name, STAT_RESULT_FORWARDS) == 0)
894     stats_ctx->stat_result_forwards = value;
895   else if (strcmp(name, STAT_GETS) == 0)
896     stats_ctx->stat_gets = value;
897   else if (strcmp(name, STAT_PUTS) == 0)
898     stats_ctx->stat_puts = value;
899   else if (strcmp(name, STAT_PUTS_INSERTED) == 0)
900     stats_ctx->stat_puts_inserted = value;
901   else if (strcmp(name, STAT_FIND_PEER) == 0)
902     stats_ctx->stat_find_peer = value;
903   else if (strcmp(name, STAT_FIND_PEER_START) == 0)
904     stats_ctx->stat_find_peer_start = value;
905   else if (strcmp(name, STAT_GET_START) == 0)
906     stats_ctx->stat_get_start = value;
907   else if (strcmp(name, STAT_PUT_START) == 0)
908     stats_ctx->stat_put_start = value;
909   else if (strcmp(name, STAT_FIND_PEER_REPLY) == 0)
910     stats_ctx->stat_find_peer_reply = value;
911   else if (strcmp(name, STAT_GET_REPLY) == 0)
912     stats_ctx->stat_get_reply = value;
913   else if (strcmp(name, STAT_FIND_PEER_ANSWER) == 0)
914     stats_ctx->stat_find_peer_answer = value;
915   else if (strcmp(name, STAT_GET_RESPONSE_START) == 0)
916     stats_ctx->stat_get_response_start = value;
917
918   return GNUNET_OK;
919 }
920
921 /**
922  * Connect to statistics service for each peer and get the appropriate
923  * dht statistics for safe keeping.
924  */
925 static void
926 log_dht_statistics (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
927 {
928   stats_map = GNUNET_CONTAINER_multihashmap_create(num_peers);
929   fprintf(stderr, "Starting statistics logging\n");
930   GNUNET_TESTING_get_statistics(pg, &stats_finished, &stats_handle, NULL);
931 }
932
933
934 /**
935  * Connect to all peers in the peer group and iterate over their
936  * connections.
937  */
938 static void
939 capture_current_topology (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
940 {
941   struct TopologyIteratorContext *topo_ctx = cls;
942   dhtlog_handle->insert_topology(0);
943   GNUNET_TESTING_get_topology (pg, &log_topology_cb, topo_ctx);
944 }
945
946
947 /**
948  * Check if the get_handle is being used, if so stop the request.  Either
949  * way, schedule the end_badly_cont function which actually shuts down the
950  * test.
951  */
952 static void
953 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
954 {
955   GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Failing test with error: `%s'!\n", (char *)cls);
956
957   struct TestPutContext *test_put = all_puts;
958   struct TestGetContext *test_get = all_gets;
959
960   while (test_put != NULL)
961     {
962       if (test_put->disconnect_task != GNUNET_SCHEDULER_NO_TASK)
963         GNUNET_SCHEDULER_cancel(sched, test_put->disconnect_task);
964       if (test_put->dht_handle != NULL)
965         GNUNET_DHT_disconnect(test_put->dht_handle);
966       test_put = test_put->next;
967     }
968
969   while (test_get != NULL)
970     {
971       if (test_get->disconnect_task != GNUNET_SCHEDULER_NO_TASK)
972         GNUNET_SCHEDULER_cancel(sched, test_get->disconnect_task);
973       if (test_get->get_handle != NULL)
974         GNUNET_DHT_get_stop(test_get->get_handle);
975       if (test_get->dht_handle != NULL)
976         GNUNET_DHT_disconnect(test_get->dht_handle);
977       test_get = test_get->next;
978     }
979
980   GNUNET_TESTING_daemons_stop (pg, DEFAULT_TIMEOUT, &shutdown_callback, NULL);
981
982   if (dhtlog_handle != NULL)
983     {
984       fprintf(stderr, "Update trial endtime\n");
985       dhtlog_handle->update_trial (trialuid, gets_completed);
986       GNUNET_DHTLOG_disconnect(dhtlog_handle);
987       dhtlog_handle = NULL;
988     }
989
990   if (hostkey_meter != NULL)
991     free_meter(hostkey_meter);
992   if (peer_start_meter != NULL)
993     free_meter(peer_start_meter);
994   if (peer_connect_meter != NULL)
995     free_meter(peer_connect_meter);
996   if (put_meter != NULL)
997     free_meter(put_meter);
998   if (get_meter != NULL)
999     free_meter(get_meter);
1000
1001   ok = 1;
1002 }
1003
1004 /**
1005  * Forward declaration.
1006  */
1007 static void
1008 do_put (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc);
1009
1010 /**
1011  * Forward declaration.
1012  */
1013 static void
1014 do_get (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc);
1015
1016 /**
1017  * Iterator over hash map entries.
1018  *
1019  * @param cls closure
1020  * @param key current key code
1021  * @param value value in the hash map
1022  * @return GNUNET_YES if we should continue to
1023  *         iterate,
1024  *         GNUNET_NO if not.
1025  */
1026 static int remove_peer_count (void *cls,
1027                               const GNUNET_HashCode * key,
1028                               void *value)
1029 {
1030   struct FindPeerContext *find_peer_ctx = cls;
1031   struct PeerCount *peer_count = value;
1032   GNUNET_CONTAINER_heap_remove_node(find_peer_ctx->peer_min_heap, peer_count->heap_node);
1033   GNUNET_free(peer_count);
1034
1035   return GNUNET_YES;
1036 }
1037
1038 /**
1039  * Connect to all peers in the peer group and iterate over their
1040  * connections.
1041  */
1042 static void
1043 count_new_peers (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
1044 {
1045   struct FindPeerContext *find_peer_context = cls;
1046   find_peer_context->previous_peers = find_peer_context->current_peers;
1047   find_peer_context->current_peers = 0;
1048   GNUNET_TESTING_get_topology (pg, find_peer_context->count_peers_cb, find_peer_context);
1049 }
1050
1051 static void
1052 decrement_find_peers (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
1053 {
1054   struct TestFindPeer *test_find_peer = cls;
1055   GNUNET_assert(test_find_peer->find_peer_context->outstanding > 0);
1056   test_find_peer->find_peer_context->outstanding--;
1057   test_find_peer->find_peer_context->total--;
1058   if ((0 == test_find_peer->find_peer_context->total) &&
1059       (GNUNET_TIME_absolute_get_remaining(test_find_peer->find_peer_context->endtime).value > 60))
1060   {
1061     GNUNET_SCHEDULER_add_now(sched, &count_new_peers, test_find_peer->find_peer_context);
1062   }
1063   GNUNET_free(test_find_peer);
1064 }
1065
1066 /**
1067  * A find peer request has been sent to the server, now we will schedule a task
1068  * to wait the appropriate time to allow the request to go out and back.
1069  *
1070  * @param cls closure - a TestFindPeer struct
1071  * @param tc context the task is being called with
1072  */
1073 static void
1074 handle_find_peer_sent (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
1075 {
1076   struct TestFindPeer *test_find_peer = cls;
1077
1078   GNUNET_DHT_disconnect(test_find_peer->dht_handle);
1079   GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_divide(find_peer_delay, 2), &decrement_find_peers, test_find_peer);
1080 }
1081
1082
1083 static void
1084 send_find_peer_request (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
1085 {
1086   struct TestFindPeer *test_find_peer = cls;
1087
1088   if (test_find_peer->find_peer_context->outstanding > max_outstanding_find_peers)
1089   {
1090     GNUNET_SCHEDULER_add_delayed(sched, find_peer_offset, &send_find_peer_request, test_find_peer);
1091     return;
1092   }
1093
1094   test_find_peer->find_peer_context->outstanding++;
1095   if (GNUNET_TIME_absolute_get_remaining(test_find_peer->find_peer_context->endtime).value == 0)
1096   {
1097     GNUNET_SCHEDULER_add_now(sched, &decrement_find_peers, test_find_peer);
1098     return;
1099   }
1100
1101   test_find_peer->dht_handle = GNUNET_DHT_connect(sched, test_find_peer->daemon->cfg, 1);
1102   GNUNET_assert(test_find_peer->dht_handle != NULL);
1103   GNUNET_DHT_find_peers (test_find_peer->dht_handle,
1104                          &handle_find_peer_sent, test_find_peer);
1105 }
1106
1107
1108 /**
1109  * Add a connection to the find_peer_context given.  This may
1110  * be complete overkill, but allows us to choose the peers with
1111  * the least connections to initiate find peer requests from.
1112  */
1113 static void add_new_connection(struct FindPeerContext *find_peer_context,
1114                                const struct GNUNET_PeerIdentity *first,
1115                                const struct GNUNET_PeerIdentity *second)
1116 {
1117   struct PeerCount *first_count;
1118   struct PeerCount *second_count;
1119
1120   if (GNUNET_CONTAINER_multihashmap_contains(find_peer_context->peer_hash, &first->hashPubKey))
1121   {
1122     first_count = GNUNET_CONTAINER_multihashmap_get(find_peer_context->peer_hash, &first->hashPubKey);
1123     first_count->count++;
1124     GNUNET_CONTAINER_heap_update_cost(find_peer_context->peer_min_heap, first_count->heap_node, first_count->count);
1125   }
1126   else
1127   {
1128     first_count = GNUNET_malloc(sizeof(struct PeerCount));
1129     first_count->count = 1;
1130     memcpy(&first_count->peer_id, first, sizeof(struct GNUNET_PeerIdentity));
1131     first_count->heap_node = GNUNET_CONTAINER_heap_insert(find_peer_context->peer_min_heap, first_count, first_count->count);
1132     GNUNET_CONTAINER_multihashmap_put(find_peer_context->peer_hash, &first->hashPubKey, first_count, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
1133   }
1134
1135   if (GNUNET_CONTAINER_multihashmap_contains(find_peer_context->peer_hash, &second->hashPubKey))
1136   {
1137     second_count = GNUNET_CONTAINER_multihashmap_get(find_peer_context->peer_hash, &second->hashPubKey);
1138     second_count->count++;
1139     GNUNET_CONTAINER_heap_update_cost(find_peer_context->peer_min_heap, second_count->heap_node, second_count->count);
1140   }
1141   else
1142   {
1143     second_count = GNUNET_malloc(sizeof(struct PeerCount));
1144     second_count->count = 1;
1145     memcpy(&second_count->peer_id, second, sizeof(struct GNUNET_PeerIdentity));
1146     second_count->heap_node = GNUNET_CONTAINER_heap_insert(find_peer_context->peer_min_heap, second_count, second_count->count);
1147     GNUNET_CONTAINER_multihashmap_put(find_peer_context->peer_hash, &second->hashPubKey, second_count, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
1148   }
1149 }
1150
1151
1152 /**
1153  * Iterate over min heap of connections per peer.  For any
1154  * peer that has 0 connections, attempt to connect them to
1155  * some random peer.
1156  *
1157  * @param cls closure a struct FindPeerContext
1158  * @param node internal node of the heap
1159  * @param element value stored, a struct PeerCount
1160  * @param cost cost associated with the node
1161  * @return GNUNET_YES if we should continue to iterate,
1162  *         GNUNET_NO if not.
1163  */
1164 static int iterate_min_heap_peers (void *cls,
1165                                    struct GNUNET_CONTAINER_HeapNode *node,
1166                                    void *element,
1167                                    GNUNET_CONTAINER_HeapCostType cost)
1168 {
1169   struct FindPeerContext *find_peer_context = cls;
1170   struct PeerCount *peer_count = element;
1171   struct GNUNET_TESTING_Daemon *d1;
1172   struct GNUNET_TESTING_Daemon *d2;
1173   struct GNUNET_TIME_Relative timeout;
1174   if (cost == 0)
1175     {
1176       d1 = GNUNET_TESTING_daemon_get_by_id (pg, &peer_count->peer_id);
1177       d2 = d1;
1178       while ((d2 == d1) || (GNUNET_YES != GNUNET_TESTING_daemon_running(d2)))
1179         {
1180           d2 = GNUNET_TESTING_daemon_get(pg, GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_peers));
1181         }
1182
1183       /** Just try to connect the peers, don't worry about callbacks, etc. **/
1184       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Peer %s has 0 connections.  Trying to connect to %s...\n", GNUNET_i2s(&peer_count->peer_id), d2->shortname);
1185       timeout = GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, DEFAULT_CONNECT_TIMEOUT);
1186       if (GNUNET_TIME_relative_to_absolute(timeout).value > find_peer_context->endtime.value)
1187         {
1188           timeout = GNUNET_TIME_absolute_get_remaining(find_peer_context->endtime);
1189         }
1190       GNUNET_TESTING_daemons_connect(d1, d2, timeout, DEFAULT_RECONNECT_ATTEMPTS, NULL, NULL);
1191     }
1192   if (GNUNET_TIME_absolute_get_remaining(find_peer_context->endtime).value > 0)
1193     return GNUNET_YES;
1194   else
1195     return GNUNET_NO;
1196 }
1197
1198 /**
1199  * Forward declaration.
1200  */
1201 static void
1202 schedule_churn_find_peer_requests (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc);
1203
1204 /**
1205  * Callback for iterating over all the peer connections of a peer group.
1206  * Used after we have churned on some peers to find which ones have zero
1207  * connections so we can make them issue find peer requests.
1208  */
1209 void count_peers_churn_cb (void *cls,
1210                            const struct GNUNET_PeerIdentity *first,
1211                            const struct GNUNET_PeerIdentity *second,
1212                            struct GNUNET_TIME_Relative latency,
1213                            uint32_t distance,
1214                            const char *emsg)
1215 {
1216   struct FindPeerContext *find_peer_context = cls;
1217   struct TopologyIteratorContext *topo_ctx;
1218   struct PeerCount *peer_count;
1219
1220   if ((first != NULL) && (second != NULL))
1221     {
1222       add_new_connection(find_peer_context, first, second);
1223       find_peer_context->current_peers++;
1224     }
1225   else
1226     {
1227       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Peer count finished (%u connections)\n",
1228                                             find_peer_context->current_peers);
1229       peer_count = GNUNET_CONTAINER_heap_peek(find_peer_context->peer_min_heap);
1230
1231       /* WAIT. When peers are churned they will come back with their peers (at least in peerinfo), because the HOSTS file doesn't likely get removed. CRAP. */
1232       /* NO they won't, because we have disabled peerinfo writing to disk (remember?) so we WILL have to give them new connections */
1233       /* Best course of action: have DHT automatically try to add peers from peerinfo on startup. This way IF peerinfo writes to file
1234        * then some peers will end up connected.
1235        *
1236        * Also, find any peers that have zero connections here and set up a task to choose at random another peer in the network to
1237        * connect to.  Of course, if they are blacklisted from that peer they won't be able to connect, so we will have to keep trying
1238        * until they get a peer.
1239        */
1240       /* However, they won't automatically be connected to any of their previous peers... How can we handle that? */
1241       /* So now we have choices: do we want them to come back with all their connections?  Probably not, but it solves this mess. */
1242
1243       /* Second problem, which is still a problem, is that a FIND_PEER request won't work when a peer has no connections */
1244
1245       /**
1246        * Okay, so here's how this *should* work now.
1247        *
1248        * 1. We check the min heap for any peers that have 0 connections.
1249        *    a. If any are found, we iterate over the heap and just randomly
1250        *       choose another peer and ask testing to please connect the two.
1251        *       This takes care of the case that a peer just randomly joins the
1252        *       network.  However, if there are strict topology restrictions
1253        *       (imagine a ring) choosing randomly most likely won't help.
1254        *       We make sure the connection attempt doesn't take longer than
1255        *       the total timeout, but don't care too much about the result.
1256        *    b. After that, we still schedule the find peer requests (concurrently
1257        *       with the connect attempts most likely).  This handles the case
1258        *       that the DHT iterates over peerinfo and just needs to try to send
1259        *       a message to get connected.  This should handle the case that the
1260        *       topology is very strict.
1261        *
1262        * 2. If all peers have > 0 connections, we still send find peer requests
1263        *    as long as possible (until timeout is reached) to help out those
1264        *    peers that were newly churned and need more connections.  This is because
1265        *    once all new peers have established a single connection, they won't be
1266        *    well connected.
1267        *
1268        * 3. Once we reach the timeout, we can do no more.  We must schedule the
1269        *    next iteration of get requests regardless of connections that peers
1270        *    may or may not have.
1271        *
1272        * Caveat: it would be nice to get peers to take data offline with them and
1273        *         come back with it (or not) based on the testing framework.  The
1274        *         same goes for remembering previous connections, but putting either
1275        *         into the general testing churn options seems like overkill because
1276        *         these are very specialized cases.
1277        */
1278       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Out of %u peers, fewest connections is %d\n", GNUNET_CONTAINER_heap_get_size(find_peer_context->peer_min_heap), peer_count->count);
1279       if ((peer_count->count == 0) && (GNUNET_TIME_absolute_get_remaining(find_peer_context->endtime).value > 0))
1280         {
1281           GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Found peer with no connections, will choose some peer(s) at random to connect to!\n");
1282           GNUNET_CONTAINER_heap_iterate (find_peer_context->peer_min_heap, &iterate_min_heap_peers, find_peer_context);
1283           GNUNET_SCHEDULER_add_now(sched, &schedule_churn_find_peer_requests, find_peer_context);
1284         }
1285       else if ((GNUNET_TIME_absolute_get_remaining(find_peer_context->endtime).value > 0) && (find_peer_context->last_sent != 0))
1286         {
1287           GNUNET_SCHEDULER_add_now(sched, &schedule_churn_find_peer_requests, find_peer_context);
1288         }
1289       else
1290         {
1291           GNUNET_CONTAINER_multihashmap_iterate(find_peer_context->peer_hash, &remove_peer_count, find_peer_context);
1292           GNUNET_CONTAINER_multihashmap_destroy(find_peer_context->peer_hash);
1293           GNUNET_CONTAINER_heap_destroy(find_peer_context->peer_min_heap);
1294           GNUNET_free(find_peer_context);
1295           GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Churn round %u of %llu finished, scheduling next GET round.\n", current_churn_round, churn_rounds);
1296           if (dhtlog_handle != NULL)
1297             {
1298               topo_ctx = GNUNET_malloc(sizeof(struct TopologyIteratorContext));
1299               topo_ctx->cont = &do_get;
1300               topo_ctx->cls = all_gets;
1301               topo_ctx->timeout = DEFAULT_GET_TIMEOUT;
1302               topo_ctx->peers_seen = GNUNET_CONTAINER_multihashmap_create(num_peers);
1303               die_task = GNUNET_SCHEDULER_add_delayed (sched, GNUNET_TIME_relative_add(GNUNET_TIME_relative_add(DEFAULT_GET_TIMEOUT, all_get_timeout), DEFAULT_TOPOLOGY_CAPTURE_TIMEOUT),
1304                                                        &end_badly, "from do gets (count_peers_churn_cb)");
1305               GNUNET_SCHEDULER_add_now(sched, &capture_current_topology, topo_ctx);
1306             }
1307           else
1308             {
1309               die_task = GNUNET_SCHEDULER_add_delayed (sched, GNUNET_TIME_relative_add(GNUNET_TIME_relative_add(DEFAULT_GET_TIMEOUT, all_get_timeout), DEFAULT_TOPOLOGY_CAPTURE_TIMEOUT),
1310                                                        &end_badly, "from do gets (count_peers_churn_cb)");
1311               GNUNET_SCHEDULER_add_now(sched, &do_get, all_gets);
1312             }
1313         }
1314     }
1315 }
1316
1317 /**
1318  * Set up a single find peer request for each peer in the topology.  Do this
1319  * until the settle time is over, limited by the number of outstanding requests
1320  * and the time allowed for each one!
1321  */
1322 static void
1323 schedule_churn_find_peer_requests (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
1324 {
1325   struct FindPeerContext *find_peer_ctx = cls;
1326   struct TestFindPeer *test_find_peer;
1327   struct PeerCount *peer_count;
1328   uint32_t i;
1329
1330   if (find_peer_ctx->previous_peers == 0) /* First time, go slowly */
1331     find_peer_ctx->total = 1;
1332   else if (find_peer_ctx->current_peers - find_peer_ctx->previous_peers < MIN_FIND_PEER_CUTOFF)
1333     find_peer_ctx->total = find_peer_ctx->total / 2;
1334   else if (find_peer_ctx->current_peers - find_peer_ctx->previous_peers > MAX_FIND_PEER_CUTOFF) /* Found LOTS of peers, still go slowly */
1335     find_peer_ctx->total = find_peer_ctx->last_sent - (find_peer_ctx->last_sent / 4);
1336   else
1337     find_peer_ctx->total = find_peer_ctx->last_sent * 4;
1338
1339   if (find_peer_ctx->total > max_outstanding_find_peers)
1340     find_peer_ctx->total = max_outstanding_find_peers;
1341
1342   find_peer_ctx->last_sent = find_peer_ctx->total;
1343   GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Sending %u find peer messages (after churn)\n", find_peer_ctx->total);
1344
1345   if (find_peer_ctx->total > 0)
1346     find_peer_offset = GNUNET_TIME_relative_divide(find_peer_delay, find_peer_ctx->total);
1347   else
1348     {
1349       find_peer_ctx->previous_peers = find_peer_ctx->current_peers;
1350       find_peer_ctx->current_peers = 0;
1351       GNUNET_TESTING_get_topology (pg, &count_peers_churn_cb, find_peer_ctx);
1352     }
1353
1354
1355   for (i = 0; i < find_peer_ctx->total; i++)
1356     {
1357       test_find_peer = GNUNET_malloc(sizeof(struct TestFindPeer));
1358       /* If we have sent requests, choose peers with a low number of connections to send requests from */
1359       peer_count = GNUNET_CONTAINER_heap_remove_root(find_peer_ctx->peer_min_heap);
1360       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Sending find peer request from peer with %u connections\n", peer_count->count);
1361       GNUNET_CONTAINER_multihashmap_remove(find_peer_ctx->peer_hash, &peer_count->peer_id.hashPubKey, peer_count);
1362       test_find_peer->daemon = GNUNET_TESTING_daemon_get_by_id(pg, &peer_count->peer_id);
1363       GNUNET_assert(test_find_peer->daemon != NULL);
1364       test_find_peer->find_peer_context = find_peer_ctx;
1365       GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(find_peer_offset, i), &send_find_peer_request, test_find_peer);
1366     }
1367
1368   if ((find_peer_ctx->peer_hash == NULL) && (find_peer_ctx->peer_min_heap == NULL))
1369     {
1370       find_peer_ctx->peer_hash = GNUNET_CONTAINER_multihashmap_create(num_peers);
1371       find_peer_ctx->peer_min_heap = GNUNET_CONTAINER_heap_create(GNUNET_CONTAINER_HEAP_ORDER_MIN);
1372     }
1373   else
1374     {
1375       GNUNET_CONTAINER_multihashmap_iterate(find_peer_ctx->peer_hash, &remove_peer_count, find_peer_ctx);
1376       GNUNET_CONTAINER_multihashmap_destroy(find_peer_ctx->peer_hash);
1377       find_peer_ctx->peer_hash = GNUNET_CONTAINER_multihashmap_create(num_peers);
1378     }
1379
1380   GNUNET_assert(0 == GNUNET_CONTAINER_multihashmap_size(find_peer_ctx->peer_hash));
1381   GNUNET_assert(0 == GNUNET_CONTAINER_heap_get_size(find_peer_ctx->peer_min_heap));
1382 }
1383
1384 static void schedule_churn_get_topology (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
1385 {
1386   struct FindPeerContext *find_peer_context = cls;
1387   GNUNET_TESTING_get_topology (pg, &count_peers_churn_cb, find_peer_context);
1388 }
1389
1390 /**
1391  * Called when churning of the topology has finished.
1392  *
1393  * @param cls closure unused
1394  * @param emsg NULL on success, or a printable error on failure
1395  */
1396 static void churn_complete (void *cls, const char *emsg)
1397 {
1398   struct FindPeerContext *find_peer_context = cls;
1399   struct PeerCount *peer_count;
1400   unsigned int i;
1401   struct GNUNET_TESTING_Daemon *temp_daemon;
1402   struct TopologyIteratorContext *topo_ctx;
1403   struct GNUNET_TIME_Relative calc_timeout;
1404   int count_added;
1405
1406   if (emsg != NULL)
1407     {
1408       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Ending test, churning of peers failed with error `%s'", emsg);
1409       GNUNET_SCHEDULER_add_now(sched, &end_badly, (void *)emsg);
1410       return;
1411     }
1412
1413   /**
1414    * If we switched any peers on, we have to somehow force connect the new peer to
1415    * SOME bootstrap peer in the network.  First schedule a task to find all peers
1416    * with no connections, then choose a random peer for each and connect them.
1417    */
1418   if (find_peer_context != NULL)
1419     {
1420       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "We have churned on some peers, so we must schedule find peer requests for them!\n");
1421       count_added = 0;
1422       for (i = 0; i < num_peers; i ++)
1423         {
1424           temp_daemon = GNUNET_TESTING_daemon_get(pg, i);
1425           if (GNUNET_YES == GNUNET_TESTING_daemon_running(temp_daemon))
1426             {
1427               peer_count = GNUNET_malloc (sizeof(struct PeerCount));
1428               memcpy(&peer_count->peer_id, &temp_daemon->id, sizeof(struct GNUNET_PeerIdentity));
1429               GNUNET_assert(peer_count->count == 0);
1430               peer_count->heap_node = GNUNET_CONTAINER_heap_insert(find_peer_context->peer_min_heap, peer_count, peer_count->count);
1431               GNUNET_CONTAINER_multihashmap_put(find_peer_context->peer_hash, &temp_daemon->id.hashPubKey, peer_count, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
1432               count_added++;
1433             }
1434         }
1435       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Added %d peers to heap, total size %d\n", count_added, GNUNET_CONTAINER_heap_get_size(find_peer_context->peer_min_heap));
1436       GNUNET_SCHEDULER_add_delayed(sched, DEFAULT_PEER_DISCONNECT_TIMEOUT, &schedule_churn_get_topology, find_peer_context);
1437       //GNUNET_TESTING_get_topology (pg, &count_peers_churn_cb, find_peer_context);
1438     }
1439   else
1440     {
1441       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Only churned off peers, no find peer requests, scheduling more gets (after allowing time for peers to disconnect properly!)...\n");
1442       if (dhtlog_handle != NULL)
1443         {
1444           topo_ctx = GNUNET_malloc(sizeof(struct TopologyIteratorContext));
1445           topo_ctx->cont = &do_get;
1446           topo_ctx->cls = all_gets;
1447           topo_ctx->timeout = DEFAULT_GET_TIMEOUT;
1448           topo_ctx->peers_seen = GNUNET_CONTAINER_multihashmap_create(num_peers);
1449           calc_timeout = GNUNET_TIME_relative_add(DEFAULT_GET_TIMEOUT, all_get_timeout);
1450           calc_timeout = GNUNET_TIME_relative_add(calc_timeout, DEFAULT_TOPOLOGY_CAPTURE_TIMEOUT);
1451           calc_timeout = GNUNET_TIME_relative_add(calc_timeout, DEFAULT_PEER_DISCONNECT_TIMEOUT);
1452           die_task = GNUNET_SCHEDULER_add_delayed (sched, calc_timeout,
1453                                                    &end_badly, "from do gets (churn_complete)");
1454           GNUNET_SCHEDULER_add_delayed(sched, DEFAULT_PEER_DISCONNECT_TIMEOUT, &capture_current_topology, topo_ctx);
1455         }
1456       else
1457         {
1458           calc_timeout = GNUNET_TIME_relative_add(DEFAULT_GET_TIMEOUT, all_get_timeout);
1459           calc_timeout = GNUNET_TIME_relative_add(calc_timeout, DEFAULT_PEER_DISCONNECT_TIMEOUT);
1460           die_task = GNUNET_SCHEDULER_add_delayed (sched, calc_timeout,
1461                                                    &end_badly, "from do gets (churn_complete)");
1462           if (dhtlog_handle != NULL)
1463             dhtlog_handle->insert_round(DHT_ROUND_GET, rounds_finished);
1464           GNUNET_SCHEDULER_add_delayed(sched, DEFAULT_PEER_DISCONNECT_TIMEOUT, &do_get, all_gets);
1465         }
1466     }
1467 }
1468
1469 /**
1470  * Decide how many peers to turn on or off in this round, make sure the
1471  * numbers actually make sense, then do so.  This function sets in motion
1472  * churn, find peer requests for newly joined peers, and issuing get
1473  * requests once the new peers have done so.
1474  *
1475  * @param cls closure (unused)
1476  * @param cls task context (unused)
1477  */
1478 static void
1479 churn_peers (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
1480 {
1481   unsigned int count_running;
1482   unsigned int churn_up;
1483   unsigned int churn_down;
1484   struct GNUNET_TIME_Relative timeout;
1485   struct FindPeerContext *find_peer_context;
1486
1487   churn_up = churn_down = 0;
1488   count_running = GNUNET_TESTING_daemons_running(pg);
1489   if (count_running > churn_array[current_churn_round])
1490     churn_down = count_running - churn_array[current_churn_round];
1491   else if (count_running < churn_array[current_churn_round])
1492     churn_up = churn_array[current_churn_round] - count_running;
1493   else
1494     GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Not churning any peers, topology unchanged.\n");
1495
1496   if (churn_up > num_peers - count_running)
1497     {
1498       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Churn file specified %u peers (up); only have %u!", churn_array[current_churn_round], num_peers);
1499       churn_up = num_peers - count_running;
1500     }
1501   else if (churn_down > count_running)
1502     {
1503       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Churn file specified %u peers (down); only have %u!", churn_array[current_churn_round], count_running);
1504       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "This will leave NO peers running (mistake in churn configuration?)!");
1505       churn_down = count_running;
1506     }
1507   //timeout = GNUNET_TIME_relative_multiply(seconds_per_peer_start, churn_up > 0 ? churn_up : churn_down);
1508   //timeout = GNUNET_TIME_relative_multiply (seconds_per_peer_start, churn_up > 0 ? churn_up : churn_down);
1509   timeout = GNUNET_TIME_relative_multiply(DEFAULT_TIMEOUT, 2); /* FIXME: Lack of intelligent choice here */
1510   find_peer_context = NULL;
1511   if (churn_up > 0) /* Only need to do find peer requests if we turned new peers on */
1512     {
1513       find_peer_context = GNUNET_malloc(sizeof(struct FindPeerContext));
1514       find_peer_context->count_peers_cb = &count_peers_churn_cb;
1515       find_peer_context->previous_peers = 0;
1516       find_peer_context->current_peers = 0;
1517       find_peer_context->endtime = GNUNET_TIME_relative_to_absolute(timeout);
1518       find_peer_context->peer_hash = GNUNET_CONTAINER_multihashmap_create(num_peers);
1519       find_peer_context->peer_min_heap = GNUNET_CONTAINER_heap_create(GNUNET_CONTAINER_HEAP_ORDER_MIN);
1520     }
1521   GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "churn_peers: want %u total, %u running, starting %u, stopping %u\n",
1522              churn_array[current_churn_round], count_running, churn_up, churn_down);
1523   GNUNET_TESTING_daemons_churn (pg, churn_down, churn_up, timeout, &churn_complete, find_peer_context);
1524   current_churn_round++;
1525 }
1526
1527 /**
1528  * Task to release DHT handle associated with GET request.
1529  */
1530 static void
1531 get_stop_finished (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
1532 {
1533   struct TestGetContext *test_get = cls;
1534   struct TopologyIteratorContext *topo_ctx;
1535
1536   /* The dht_handle may be null if this get was scheduled from a down peer */
1537   if (test_get->dht_handle != NULL)
1538     {
1539       GNUNET_DHT_disconnect(test_get->dht_handle);
1540       outstanding_gets--; /* GET is really finished */
1541       test_get->dht_handle = NULL;
1542     }
1543
1544   /* Reset the uid (which item to search for) and the daemon (which peer to search from) for later get request iterations */
1545   test_get->uid = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_puts);
1546   test_get->daemon = GNUNET_TESTING_daemon_get(pg, GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_peers));
1547
1548 #if VERBOSE > 1
1549   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "%d gets succeeded, %d gets failed!\n", gets_completed, gets_failed);
1550 #endif
1551   update_meter(get_meter);
1552   if ((gets_completed + gets_failed == num_gets) && (outstanding_gets == 0))
1553     {
1554       fprintf(stderr, "Canceling die task (get_stop_finished) %llu gets completed, %llu gets failed\n", gets_completed, gets_failed);
1555       GNUNET_SCHEDULER_cancel(sched, die_task);
1556       reset_meter(put_meter);
1557       reset_meter(get_meter);
1558       /**
1559        *  Handle all cases:
1560        *    1) Testing is completely finished, call the topology iteration dealy and die
1561        *    2) Testing is not finished, churn the network and do gets again (current_churn_round < churn_rounds)
1562        *    3) Testing is not finished, reschedule all the PUTS *and* GETS again (num_rounds > 1)
1563        */
1564       if (rounds_finished == total_rounds - 1) /* Everything is finished, end testing */
1565         {
1566           if (dhtlog_handle != NULL)
1567             {
1568               topo_ctx = GNUNET_malloc(sizeof(struct TopologyIteratorContext));
1569               topo_ctx->cont = &log_dht_statistics;
1570               topo_ctx->peers_seen = GNUNET_CONTAINER_multihashmap_create(num_peers);
1571               GNUNET_SCHEDULER_add_now(sched, &capture_current_topology, topo_ctx);
1572             }
1573           else
1574             GNUNET_SCHEDULER_add_now (sched, &finish_testing, NULL);
1575         }
1576       else if (current_churn_round < churns_per_round * (rounds_finished + 1)) /* Do next round of churn */
1577         {
1578           GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Current churn round %u, real round %u, scheduling next round of churn.\n", current_churn_round, rounds_finished + 1);
1579           gets_completed = 0;
1580           gets_failed = 0;
1581
1582           if (dhtlog_handle != NULL)
1583             dhtlog_handle->insert_round(DHT_ROUND_CHURN, rounds_finished);
1584
1585           GNUNET_SCHEDULER_add_now(sched, &churn_peers, NULL);
1586         }
1587       else if (rounds_finished < total_rounds - 1) /* Start a new complete round */
1588         {
1589           rounds_finished++;
1590           gets_completed = 0;
1591           gets_failed = 0;
1592           GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Round %u of %llu finished, scheduling next round.\n", rounds_finished, total_rounds);
1593
1594           /** We reset the peer daemon for puts and gets on each disconnect, so all we need to do is start another round! */
1595           if (GNUNET_YES == in_dht_replication) /* Replication done in DHT, don't redo puts! */
1596             {
1597               if (dhtlog_handle != NULL)
1598                 dhtlog_handle->insert_round(DHT_ROUND_GET, rounds_finished);
1599
1600               die_task = GNUNET_SCHEDULER_add_delayed (sched, GNUNET_TIME_relative_add(GNUNET_TIME_relative_add(GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, round_delay), all_get_timeout), DEFAULT_TOPOLOGY_CAPTURE_TIMEOUT),
1601                                                        &end_badly, "from do gets (next round)");
1602               GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, round_delay), &do_get, all_gets);
1603             }
1604           else
1605             {
1606               if (dhtlog_handle != NULL)
1607                 dhtlog_handle->insert_round(DHT_ROUND_NORMAL, rounds_finished);
1608               die_task = GNUNET_SCHEDULER_add_delayed (sched, GNUNET_TIME_relative_add(GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, round_delay), GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, num_puts * 2)),
1609                                                        &end_badly, "from do puts");
1610               GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, round_delay), &do_put, all_puts);
1611             }
1612         }
1613     }
1614 }
1615
1616 /**
1617  * Task to release get handle.
1618  */
1619 static void
1620 get_stop_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
1621 {
1622   struct TestGetContext *test_get = cls;
1623
1624   if (tc->reason == GNUNET_SCHEDULER_REASON_TIMEOUT)
1625     gets_failed++;
1626   GNUNET_assert(test_get->get_handle != NULL);
1627   GNUNET_DHT_get_stop(test_get->get_handle);
1628   test_get->get_handle = NULL;
1629   test_get->disconnect_task = GNUNET_SCHEDULER_NO_TASK;
1630   GNUNET_SCHEDULER_add_now (sched, &get_stop_finished, test_get);
1631 }
1632
1633 /**
1634  * Iterator called if the GET request initiated returns a response.
1635  *
1636  * @param cls closure
1637  * @param exp when will this value expire
1638  * @param key key of the result
1639  * @param get_path NULL-terminated array of pointers
1640  *                 to the peers on reverse GET path (or NULL if not recorded)
1641  * @param put_path NULL-terminated array of pointers
1642  *                 to the peers on the PUT path (or NULL if not recorded)
1643  * @param type type of the result
1644  * @param size number of bytes in data
1645  * @param data pointer to the result data
1646  */
1647 static void 
1648 get_result_iterator (void *cls,
1649                      struct GNUNET_TIME_Absolute exp,
1650                      const GNUNET_HashCode * key,
1651                      const struct GNUNET_PeerIdentity * const *get_path,
1652                      const struct GNUNET_PeerIdentity * const *put_path,
1653                      enum GNUNET_BLOCK_Type type,
1654                      size_t size,
1655                      const void *data)
1656 {
1657   struct TestGetContext *test_get = cls;
1658
1659   if (test_get->succeeded == GNUNET_YES)
1660     return; /* Get has already been successful, probably ending now */
1661
1662   if (0 != memcmp(&known_keys[test_get->uid], key, sizeof (GNUNET_HashCode))) /* || (0 != memcmp(original_data, data, sizeof(original_data))))*/
1663     {
1664       gets_completed++;
1665       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Key or data is not the same as was inserted!\n");
1666     }
1667   else
1668     {
1669       gets_completed++;
1670       test_get->succeeded = GNUNET_YES;
1671     }
1672 #if VERBOSE > 1
1673   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received correct GET response!\n");
1674 #endif
1675   GNUNET_SCHEDULER_cancel(sched, test_get->disconnect_task);
1676   GNUNET_SCHEDULER_add_continuation(sched, &get_stop_task, test_get, GNUNET_SCHEDULER_REASON_PREREQ_DONE);
1677 }
1678
1679
1680
1681 /**
1682  * Set up some data, and call API PUT function
1683  */
1684 static void
1685 do_get (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
1686 {
1687   struct TestGetContext *test_get = cls;
1688
1689   if (num_gets == 0)
1690     {
1691       GNUNET_SCHEDULER_cancel(sched, die_task);
1692       GNUNET_SCHEDULER_add_now(sched, &finish_testing, NULL);
1693     }
1694
1695   if (test_get == NULL)
1696     return; /* End of the list */
1697
1698   /* Set this here in case we are re-running gets */
1699   test_get->succeeded = GNUNET_NO;
1700
1701   if (GNUNET_YES != GNUNET_TESTING_daemon_running(test_get->daemon)) /* If the peer has been churned off, don't try issuing request from it! */
1702     {
1703       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Peer we should issue get request from is down, skipping.\n");
1704       gets_failed++;
1705       GNUNET_SCHEDULER_add_now (sched, &get_stop_finished, test_get);
1706       GNUNET_SCHEDULER_add_now (sched, &do_get, test_get->next);
1707       return;
1708     }
1709
1710   /* Check if more gets are outstanding than should be */
1711   if (outstanding_gets > max_outstanding_gets)
1712     {
1713       GNUNET_SCHEDULER_add_delayed (sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MILLISECONDS, 200), &do_get, test_get);
1714       return;
1715     }
1716
1717   /* Connect to the first peer's DHT */
1718   test_get->dht_handle = GNUNET_DHT_connect(sched, test_get->daemon->cfg, 10);
1719   GNUNET_assert(test_get->dht_handle != NULL);
1720   outstanding_gets++;
1721
1722   /* Insert the data at the first peer */
1723   test_get->get_handle = GNUNET_DHT_get_start(test_get->dht_handle,
1724                                               get_delay,
1725                                               GNUNET_BLOCK_TYPE_TEST,
1726                                               &known_keys[test_get->uid],
1727                                               GNUNET_DHT_RO_NONE,
1728                                               NULL, 0,
1729                                               NULL, 0,
1730                                               &get_result_iterator,
1731                                               test_get);
1732
1733 #if VERBOSE > 1
1734   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting get for uid %u from peer %s\n",
1735              test_get->uid,
1736              test_get->daemon->shortname);
1737 #endif
1738   test_get->disconnect_task = GNUNET_SCHEDULER_add_delayed(sched, get_timeout, &get_stop_task, test_get);
1739
1740   /* Schedule the next request in the linked list of get requests */
1741   GNUNET_SCHEDULER_add_now (sched, &do_get, test_get->next);
1742 }
1743
1744 /**
1745  * Called when the PUT request has been transmitted to the DHT service.
1746  * Schedule the GET request for some time in the future.
1747  */
1748 static void
1749 put_finished (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
1750 {
1751   struct TestPutContext *test_put = cls;
1752   struct TopologyIteratorContext *topo_ctx;
1753   outstanding_puts--;
1754   puts_completed++;
1755
1756   if (tc->reason == GNUNET_SCHEDULER_REASON_TIMEOUT)
1757     fprintf(stderr, "PUT Request failed!\n");
1758
1759   /* Reset the daemon (which peer to insert at) for later put request iterations */
1760   if (replicate_same == GNUNET_NO)
1761     test_put->daemon = GNUNET_TESTING_daemon_get(pg, GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_peers));
1762
1763   GNUNET_SCHEDULER_cancel(sched, test_put->disconnect_task);
1764   test_put->disconnect_task = GNUNET_SCHEDULER_add_now(sched, &put_disconnect_task, test_put);
1765   if (GNUNET_YES == update_meter(put_meter))
1766     {
1767       GNUNET_assert(outstanding_puts == 0);
1768       GNUNET_SCHEDULER_cancel (sched, die_task);
1769       if (dhtlog_handle != NULL)
1770         {
1771           topo_ctx = GNUNET_malloc(sizeof(struct TopologyIteratorContext));
1772           topo_ctx->cont = &do_get;
1773           topo_ctx->cls = all_gets;
1774           topo_ctx->timeout = DEFAULT_GET_TIMEOUT;
1775           topo_ctx->peers_seen = GNUNET_CONTAINER_multihashmap_create(num_peers);
1776           die_task = GNUNET_SCHEDULER_add_delayed (sched, GNUNET_TIME_relative_add(GNUNET_TIME_relative_add(DEFAULT_GET_TIMEOUT, all_get_timeout), DEFAULT_TOPOLOGY_CAPTURE_TIMEOUT),
1777                                                    &end_badly, "from do gets (put finished)");
1778           GNUNET_SCHEDULER_add_now(sched, &capture_current_topology, topo_ctx);
1779         }
1780       else
1781         {
1782           fprintf(stderr, "Scheduling die task (put finished)\n");
1783           die_task = GNUNET_SCHEDULER_add_delayed (sched, GNUNET_TIME_relative_add(DEFAULT_GET_TIMEOUT, all_get_timeout),
1784                                                    &end_badly, "from do gets (put finished)");
1785           GNUNET_SCHEDULER_add_delayed(sched, DEFAULT_GET_TIMEOUT, &do_get, all_gets);
1786         }
1787       return;
1788     }
1789 }
1790
1791 /**
1792  * Set up some data, and call API PUT function
1793  */
1794 static void
1795 do_put (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
1796 {
1797   struct TestPutContext *test_put = cls;
1798   char data[test_data_size]; /* Made up data to store */
1799   uint32_t rand;
1800   int i;
1801
1802   if (test_put == NULL)
1803     return; /* End of list */
1804
1805   if (GNUNET_YES != GNUNET_TESTING_daemon_running(test_put->daemon)) /* If the peer has been churned off, don't try issuing request from it! */
1806     {
1807       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Peer we should issue put request at is down, skipping.\n");
1808       update_meter(put_meter);
1809       GNUNET_SCHEDULER_add_now (sched, &do_put, test_put->next);
1810       return;
1811     }
1812
1813   for (i = 0; i < sizeof(data); i++)
1814     {
1815       memset(&data[i], GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, (uint32_t)-1), 1);
1816     }
1817
1818   if (outstanding_puts > max_outstanding_puts)
1819     {
1820       GNUNET_SCHEDULER_add_delayed (sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MILLISECONDS, 200), &do_put, test_put);
1821       return;
1822     }
1823
1824 #if VERBOSE > 1
1825     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting put for uid %u from peer %s\n",
1826                 test_put->uid,
1827                 test_put->daemon->shortname);
1828 #endif
1829   test_put->dht_handle = GNUNET_DHT_connect(sched, test_put->daemon->cfg, 10);
1830
1831   GNUNET_assert(test_put->dht_handle != NULL);
1832   outstanding_puts++;
1833   GNUNET_DHT_put(test_put->dht_handle,
1834                  &known_keys[test_put->uid],
1835                  GNUNET_DHT_RO_NONE,
1836                  GNUNET_BLOCK_TYPE_TEST,
1837                  sizeof(data), data,
1838                  GNUNET_TIME_UNIT_FOREVER_ABS,
1839                  put_delay,
1840                  &put_finished, test_put);
1841   test_put->disconnect_task = GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_get_forever(), &put_disconnect_task, test_put);
1842   rand = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, 2);
1843   GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, rand), &do_put, test_put->next);
1844 }
1845
1846 static void
1847 schedule_find_peer_requests (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc);
1848
1849 /**
1850  * Given a number of total peers and a bucket size, estimate the number of
1851  * connections in a perfect kademlia topology.
1852  */
1853 static unsigned int connection_estimate(unsigned int peer_count, unsigned int bucket_size)
1854 {
1855   unsigned int i;
1856   unsigned int filled;
1857   i = num_peers;
1858
1859   filled = 0;
1860   while (i >= bucket_size)
1861     {
1862       filled++;
1863       i = i/2;
1864     }
1865   filled++; /* Add one filled bucket to account for one "half full" and some miscellaneous */
1866   return filled * bucket_size * peer_count;
1867
1868 }
1869
1870
1871 /**
1872  * Callback for iterating over all the peer connections of a peer group.
1873  */
1874 void count_peers_cb (void *cls,
1875                       const struct GNUNET_PeerIdentity *first,
1876                       const struct GNUNET_PeerIdentity *second,
1877                       struct GNUNET_TIME_Relative latency,
1878                       uint32_t distance,
1879                       const char *emsg)
1880 {
1881   struct FindPeerContext *find_peer_context = cls;
1882   if ((first != NULL) && (second != NULL))
1883     {
1884       add_new_connection(find_peer_context, first, second);
1885       find_peer_context->current_peers++;
1886     }
1887   else
1888     {
1889       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Peer count finished (%u connections), %u new peers, connection estimate %u (double %u)\n",
1890                                             find_peer_context->current_peers,
1891                                             find_peer_context->current_peers - find_peer_context->previous_peers,
1892                                             connection_estimate(num_peers, DEFAULT_BUCKET_SIZE),
1893                                             2 * connection_estimate(num_peers, DEFAULT_BUCKET_SIZE));
1894
1895       if ((find_peer_context->current_peers - find_peer_context->previous_peers > FIND_PEER_THRESHOLD) &&
1896           (find_peer_context->current_peers < 2 * connection_estimate(num_peers, DEFAULT_BUCKET_SIZE)) &&
1897           (GNUNET_TIME_absolute_get_remaining(find_peer_context->endtime).value > 0))
1898         {
1899           GNUNET_SCHEDULER_add_now(sched, &schedule_find_peer_requests, find_peer_context);
1900         }
1901       else
1902         {
1903           GNUNET_CONTAINER_multihashmap_iterate(find_peer_context->peer_hash, &remove_peer_count, find_peer_context);
1904           GNUNET_CONTAINER_multihashmap_destroy(find_peer_context->peer_hash);
1905           GNUNET_CONTAINER_heap_destroy(find_peer_context->peer_min_heap);
1906           GNUNET_free(find_peer_context);
1907           fprintf(stderr, "Not sending any more find peer requests.\n");
1908         }
1909     }
1910 }
1911
1912
1913 /**
1914  * Set up a single find peer request for each peer in the topology.  Do this
1915  * until the settle time is over, limited by the number of outstanding requests
1916  * and the time allowed for each one!
1917  */
1918 static void
1919 schedule_find_peer_requests (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
1920 {
1921   struct FindPeerContext *find_peer_ctx = cls;
1922   struct TestFindPeer *test_find_peer;
1923   struct PeerCount *peer_count;
1924   uint32_t i;
1925   uint32_t random;
1926
1927   if (find_peer_ctx->previous_peers == 0) /* First time, go slowly */
1928     find_peer_ctx->total = 1;
1929   else if (find_peer_ctx->current_peers - find_peer_ctx->previous_peers > MAX_FIND_PEER_CUTOFF) /* Found LOTS of peers, still go slowly */
1930     find_peer_ctx->total = find_peer_ctx->last_sent - (find_peer_ctx->last_sent / 8);
1931 #if USE_MIN
1932   else if (find_peer_ctx->current_peers - find_peer_ctx->previous_peers < MIN_FIND_PEER_CUTOFF)
1933     find_peer_ctx->total = find_peer_ctx->last_sent * 2; /* FIXME: always multiply by two (unless above max?) */
1934   else
1935     find_peer_ctx->total = find_peer_ctx->last_sent;
1936 #else
1937   else
1938     find_peer_ctx->total = find_peer_ctx->last_sent * 2;
1939 #endif
1940
1941   if (find_peer_ctx->total > max_outstanding_find_peers)
1942     find_peer_ctx->total = max_outstanding_find_peers;
1943
1944   find_peer_ctx->last_sent = find_peer_ctx->total;
1945   GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Sending %u find peer messages (goal at least %u connections)\n", find_peer_ctx->total, connection_estimate(num_peers, DEFAULT_BUCKET_SIZE));
1946
1947   find_peer_offset = GNUNET_TIME_relative_divide(find_peer_delay, find_peer_ctx->total);
1948   for (i = 0; i < find_peer_ctx->total; i++)
1949     {
1950       test_find_peer = GNUNET_malloc(sizeof(struct TestFindPeer));
1951       if (find_peer_ctx->previous_peers == 0) /* If we haven't sent any requests, yet choose random peers */
1952         {
1953           /**
1954            * Attempt to spread find peer requests across even sections of the peer address
1955            * space.  Choose basically 1 peer in every num_peers / max_outstanding_requests
1956            * each time, then offset it by a randomish value.
1957            *
1958            * For instance, if num_peers is 100 and max_outstanding is 10, first chosen peer
1959            * will be between 0 - 10, second between 10 - 20, etc.
1960            */
1961           random = (num_peers / find_peer_ctx->total) * i;
1962           random = random + GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, (num_peers / find_peer_ctx->total));
1963           if (random >= num_peers)
1964             {
1965               random = random - num_peers;
1966             }
1967     #if REAL_RANDOM
1968           random = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_peers);
1969     #endif
1970           test_find_peer->daemon = GNUNET_TESTING_daemon_get(pg, random);
1971         }
1972       else /* If we have sent requests, choose peers with a low number of connections to send requests from */
1973         {
1974           peer_count = GNUNET_CONTAINER_heap_remove_root(find_peer_ctx->peer_min_heap);
1975           GNUNET_CONTAINER_multihashmap_remove(find_peer_ctx->peer_hash, &peer_count->peer_id.hashPubKey, peer_count);
1976           test_find_peer->daemon = GNUNET_TESTING_daemon_get_by_id(pg, &peer_count->peer_id);
1977           GNUNET_assert(test_find_peer->daemon != NULL);
1978         }
1979
1980       test_find_peer->find_peer_context = find_peer_ctx;
1981       GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(find_peer_offset, i), &send_find_peer_request, test_find_peer);
1982     }
1983
1984   if ((find_peer_ctx->peer_hash == NULL) && (find_peer_ctx->peer_min_heap == NULL))
1985     {
1986       find_peer_ctx->peer_hash = GNUNET_CONTAINER_multihashmap_create(num_peers);
1987       find_peer_ctx->peer_min_heap = GNUNET_CONTAINER_heap_create(GNUNET_CONTAINER_HEAP_ORDER_MIN);
1988     }
1989   else
1990     {
1991       GNUNET_CONTAINER_multihashmap_iterate(find_peer_ctx->peer_hash, &remove_peer_count, find_peer_ctx);
1992       GNUNET_CONTAINER_multihashmap_destroy(find_peer_ctx->peer_hash);
1993       find_peer_ctx->peer_hash = GNUNET_CONTAINER_multihashmap_create(num_peers);
1994     }
1995
1996   GNUNET_assert(0 == GNUNET_CONTAINER_multihashmap_size(find_peer_ctx->peer_hash));
1997   GNUNET_assert(0 == GNUNET_CONTAINER_heap_get_size(find_peer_ctx->peer_min_heap));
1998
1999 }
2000
2001 /**
2002  * Set up some all of the put and get operations we want
2003  * to do.  Allocate data structure for each, add to list,
2004  * then call actual insert functions.
2005  */
2006 static void
2007 setup_puts_and_gets (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
2008 {
2009   int i;
2010   uint32_t temp_daemon;
2011   struct TestPutContext *test_put;
2012   struct TestGetContext *test_get;
2013 #if REMEMBER
2014   int remember[num_puts][num_peers];
2015   memset(&remember, 0, sizeof(int) * num_puts * num_peers);
2016 #endif
2017   known_keys = GNUNET_malloc(sizeof(GNUNET_HashCode) * num_puts);
2018   for (i = 0; i < num_puts; i++)
2019     {
2020       test_put = GNUNET_malloc(sizeof(struct TestPutContext));
2021       test_put->uid = i;
2022       GNUNET_CRYPTO_hash_create_random (GNUNET_CRYPTO_QUALITY_WEAK, &known_keys[i]);
2023       temp_daemon = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_peers);
2024       test_put->daemon = GNUNET_TESTING_daemon_get(pg, temp_daemon);
2025       test_put->next = all_puts;
2026       all_puts = test_put;
2027     }
2028
2029   for (i = 0; i < num_gets; i++)
2030     {
2031       test_get = GNUNET_malloc(sizeof(struct TestGetContext));
2032       test_get->uid = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_puts);
2033 #if REMEMBER
2034       while (remember[test_get->uid][temp_daemon] == 1)
2035         temp_daemon = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_peers);
2036       remember[test_get->uid][temp_daemon] = 1;
2037 #endif
2038       test_get->daemon = GNUNET_TESTING_daemon_get(pg, GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_peers));
2039       test_get->next = all_gets;
2040       all_gets = test_get;
2041     }
2042
2043   /*GNUNET_SCHEDULER_cancel (sched, die_task);*/
2044   die_task = GNUNET_SCHEDULER_add_delayed (sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, num_puts * 2),
2045                                            &end_badly, "from do puts");
2046   GNUNET_SCHEDULER_add_now (sched, &do_put, all_puts);
2047
2048 }
2049
2050 /**
2051  * Set up some all of the put and get operations we want
2052  * to do.  Allocate data structure for each, add to list,
2053  * then call actual insert functions.
2054  */
2055 static void
2056 continue_puts_and_gets (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
2057 {
2058   int i;
2059   int max;
2060   struct TopologyIteratorContext *topo_ctx;
2061   struct FindPeerContext *find_peer_context;
2062   if (dhtlog_handle != NULL)
2063     {
2064       if (settle_time >= 180 * 2)
2065         max = (settle_time / 180) - 2;
2066       else
2067         max = 1;
2068       for (i = 1; i < max; i++)
2069         {
2070           topo_ctx = GNUNET_malloc(sizeof(struct TopologyIteratorContext));
2071           topo_ctx->current_iteration = i;
2072           topo_ctx->total_iterations = max;
2073           topo_ctx->peers_seen = GNUNET_CONTAINER_multihashmap_create(num_peers);
2074           //fprintf(stderr, "scheduled topology iteration in %d minutes\n", i);
2075           GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, i * 3), &capture_current_topology, topo_ctx);
2076         }
2077       topo_ctx = GNUNET_malloc(sizeof(struct TopologyIteratorContext));
2078       topo_ctx->cont = &setup_puts_and_gets;
2079       topo_ctx->peers_seen = GNUNET_CONTAINER_multihashmap_create(num_peers);
2080       GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, (settle_time + 90)), &capture_current_topology, topo_ctx);
2081     }
2082   else
2083     GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, (settle_time + 90)), &setup_puts_and_gets, NULL);
2084
2085   if (dhtlog_handle != NULL)
2086     dhtlog_handle->insert_round(DHT_ROUND_NORMAL, rounds_finished);
2087
2088   if (GNUNET_YES == do_find_peer)
2089     {
2090       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Scheduling find peer requests during \"settle\" time.\n");
2091       find_peer_context = GNUNET_malloc(sizeof(struct FindPeerContext));
2092       find_peer_context->count_peers_cb = &count_peers_cb;
2093       find_peer_context->endtime = GNUNET_TIME_relative_to_absolute(GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, settle_time));
2094       GNUNET_SCHEDULER_add_now(sched, &schedule_find_peer_requests, find_peer_context);
2095     }
2096   else
2097     {
2098       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Assuming automatic DHT find peer requests.\n");
2099     }
2100 }
2101
2102 /**
2103  * Task to release DHT handles
2104  */
2105 static void
2106 malicious_disconnect_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
2107 {
2108   struct MaliciousContext *ctx = cls;
2109   outstanding_malicious--;
2110   malicious_completed++;
2111   ctx->disconnect_task = GNUNET_SCHEDULER_NO_TASK;
2112   GNUNET_DHT_disconnect(ctx->dht_handle);
2113   ctx->dht_handle = NULL;
2114   GNUNET_free(ctx);
2115
2116   if (malicious_completed == malicious_getters + malicious_putters + malicious_droppers)
2117     {
2118       GNUNET_SCHEDULER_cancel(sched, die_task);
2119       fprintf(stderr, "Finished setting all malicious peers up, calling continuation!\n");
2120       if (dhtlog_handle != NULL)
2121         GNUNET_SCHEDULER_add_now (sched,
2122                                   &continue_puts_and_gets, NULL);
2123       else
2124         GNUNET_SCHEDULER_add_delayed (sched,
2125                                     GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, settle_time),
2126                                     &continue_puts_and_gets, NULL);
2127     }
2128
2129 }
2130
2131 /**
2132  * Task to release DHT handles
2133  */
2134 static void
2135 malicious_done_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
2136 {
2137   struct MaliciousContext *ctx = cls;
2138   GNUNET_SCHEDULER_cancel(sched, ctx->disconnect_task);
2139   GNUNET_SCHEDULER_add_now(sched, &malicious_disconnect_task, ctx);
2140 }
2141
2142 /**
2143  * Set up some data, and call API PUT function
2144  */
2145 static void
2146 set_malicious (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
2147 {
2148   struct MaliciousContext *ctx = cls;
2149
2150   if (outstanding_malicious > DEFAULT_MAX_OUTSTANDING_GETS)
2151     {
2152       GNUNET_SCHEDULER_add_delayed (sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MILLISECONDS, 100), &set_malicious, ctx);
2153       return;
2154     }
2155
2156   if (ctx->dht_handle == NULL)
2157     {
2158       ctx->dht_handle = GNUNET_DHT_connect(sched, ctx->daemon->cfg, 1);
2159       outstanding_malicious++;
2160     }
2161
2162   GNUNET_assert(ctx->dht_handle != NULL);
2163
2164
2165 #if VERBOSE > 1
2166     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Setting peer %s malicious type %d\n",
2167                 ctx->daemon->shortname, ctx->malicious_type);
2168 #endif
2169
2170   switch (ctx->malicious_type)
2171   {
2172   case GNUNET_MESSAGE_TYPE_DHT_MALICIOUS_GET:
2173     GNUNET_DHT_set_malicious_getter(ctx->dht_handle, malicious_get_frequency);
2174     GNUNET_SCHEDULER_add_now (sched,
2175                               &malicious_done_task, ctx);
2176     break;
2177   case GNUNET_MESSAGE_TYPE_DHT_MALICIOUS_PUT:
2178     GNUNET_DHT_set_malicious_putter(ctx->dht_handle, malicious_put_frequency);
2179     GNUNET_SCHEDULER_add_now (sched,
2180                               &malicious_done_task, ctx);
2181     break;
2182   case GNUNET_MESSAGE_TYPE_DHT_MALICIOUS_DROP:
2183     GNUNET_DHT_set_malicious_dropper(ctx->dht_handle);
2184     GNUNET_SCHEDULER_add_now (sched, &malicious_done_task, ctx);
2185     break;
2186   default:
2187     break;
2188   }
2189
2190   ctx->disconnect_task = GNUNET_SCHEDULER_add_delayed(sched, 
2191                                                       GNUNET_TIME_UNIT_FOREVER_REL,
2192                                                       &malicious_disconnect_task, ctx);
2193 }
2194
2195 /**
2196  * Select randomly from set of known peers,
2197  * set the desired number of peers to the
2198  * proper malicious types.
2199  */
2200 static void
2201 setup_malicious_peers (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
2202 {
2203   struct MaliciousContext *ctx;
2204   int i;
2205   uint32_t temp_daemon;
2206
2207   for (i = 0; i < malicious_getters; i++)
2208     {
2209       ctx = GNUNET_malloc(sizeof(struct MaliciousContext));
2210       temp_daemon = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_peers);
2211       ctx->daemon = GNUNET_TESTING_daemon_get(pg, temp_daemon);
2212       ctx->malicious_type = GNUNET_MESSAGE_TYPE_DHT_MALICIOUS_GET;
2213       GNUNET_SCHEDULER_add_now (sched, &set_malicious, ctx);
2214
2215     }
2216
2217   for (i = 0; i < malicious_putters; i++)
2218     {
2219       ctx = GNUNET_malloc(sizeof(struct MaliciousContext));
2220       temp_daemon = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_peers);
2221       ctx->daemon = GNUNET_TESTING_daemon_get(pg, temp_daemon);
2222       ctx->malicious_type = GNUNET_MESSAGE_TYPE_DHT_MALICIOUS_PUT;
2223       GNUNET_SCHEDULER_add_now (sched, &set_malicious, ctx);
2224
2225     }
2226
2227   for (i = 0; i < malicious_droppers; i++)
2228     {
2229       ctx = GNUNET_malloc(sizeof(struct MaliciousContext));
2230       temp_daemon = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_peers);
2231       ctx->daemon = GNUNET_TESTING_daemon_get(pg, temp_daemon);
2232       ctx->malicious_type = GNUNET_MESSAGE_TYPE_DHT_MALICIOUS_DROP;
2233       GNUNET_SCHEDULER_add_now (sched, &set_malicious, ctx);
2234     }
2235
2236   /**
2237    * If we have any malicious peers to set up,
2238    * the malicious callback should call continue_gets_and_puts
2239    */
2240   if (malicious_getters + malicious_putters + malicious_droppers > 0)
2241     {
2242       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Giving malicious set tasks some time before starting testing!\n");
2243       die_task = GNUNET_SCHEDULER_add_delayed (sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, (malicious_getters + malicious_putters + malicious_droppers) * 2),
2244                                                &end_badly, "from set malicious");
2245     }
2246   else /* Otherwise, continue testing */
2247     {
2248       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Scheduling continue_puts_and_gets now!\n");
2249       GNUNET_SCHEDULER_add_now (sched,
2250                                 &continue_puts_and_gets, NULL);
2251     }
2252 }
2253
2254 /**
2255  * This function is called whenever a connection attempt is finished between two of
2256  * the started peers (started with GNUNET_TESTING_daemons_start).  The total
2257  * number of times this function is called should equal the number returned
2258  * from the GNUNET_TESTING_connect_topology call.
2259  *
2260  * The emsg variable is NULL on success (peers connected), and non-NULL on
2261  * failure (peers failed to connect).
2262  */
2263 void
2264 topology_callback (void *cls,
2265                    const struct GNUNET_PeerIdentity *first,
2266                    const struct GNUNET_PeerIdentity *second,
2267                    uint32_t distance,
2268                    const struct GNUNET_CONFIGURATION_Handle *first_cfg,
2269                    const struct GNUNET_CONFIGURATION_Handle *second_cfg,
2270                    struct GNUNET_TESTING_Daemon *first_daemon,
2271                    struct GNUNET_TESTING_Daemon *second_daemon,
2272                    const char *emsg)
2273 {
2274   struct TopologyIteratorContext *topo_ctx;
2275   if (emsg == NULL)
2276     {
2277       total_connections++;
2278 #if VERBOSE > 1
2279       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "connected peer %s to peer %s, distance %u\n",
2280                  first_daemon->shortname,
2281                  second_daemon->shortname,
2282                  distance);
2283 #endif
2284     }
2285   else
2286     {
2287       failed_connections++;
2288 #if VERBOSE
2289       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Failed to connect peer %s to peer %s with error :\n%s\n",
2290                   first_daemon->shortname,
2291                   second_daemon->shortname, emsg);
2292 #endif
2293     }
2294
2295   GNUNET_assert(peer_connect_meter != NULL);
2296   if (GNUNET_YES == update_meter(peer_connect_meter))
2297     {
2298 #if VERBOSE
2299       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2300                   "Created %d total connections, which is our target number!  Starting next phase of testing.\n",
2301                   total_connections);
2302 #endif
2303       if (dhtlog_handle != NULL)
2304         {
2305           dhtlog_handle->update_connections (trialuid, total_connections);
2306           dhtlog_handle->insert_topology(expected_connections);
2307         }
2308
2309       GNUNET_SCHEDULER_cancel (sched, die_task);
2310       /*die_task = GNUNET_SCHEDULER_add_delayed (sched, DEFAULT_TIMEOUT,
2311                                                &end_badly, "from setup puts/gets");*/
2312       if ((dhtlog_handle != NULL) && (settle_time > 0))
2313         {
2314           topo_ctx = GNUNET_malloc(sizeof(struct TopologyIteratorContext));
2315           topo_ctx->cont = &setup_malicious_peers;
2316           topo_ctx->peers_seen = GNUNET_CONTAINER_multihashmap_create(num_peers);
2317           //topo_ctx->cont = &continue_puts_and_gets;
2318           GNUNET_SCHEDULER_add_now(sched, &capture_current_topology, topo_ctx);
2319         }
2320       else
2321         {
2322           GNUNET_SCHEDULER_add_now(sched, &setup_malicious_peers, NULL);
2323           /*GNUNET_SCHEDULER_add_delayed (sched,
2324                                         GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, settle_time),
2325                                         &continue_puts_and_gets, NULL);*/
2326         }
2327     }
2328   else if (total_connections + failed_connections == expected_connections)
2329     {
2330       GNUNET_SCHEDULER_cancel (sched, die_task);
2331       die_task = GNUNET_SCHEDULER_add_now (sched,
2332                                            &end_badly, "from topology_callback (too many failed connections)");
2333     }
2334 }
2335
2336 static void
2337 peers_started_callback (void *cls,
2338        const struct GNUNET_PeerIdentity *id,
2339        const struct GNUNET_CONFIGURATION_Handle *cfg,
2340        struct GNUNET_TESTING_Daemon *d, const char *emsg)
2341 {
2342   if (emsg != NULL)
2343     {
2344       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Failed to start daemon with error: `%s'\n",
2345                   emsg);
2346       return;
2347     }
2348   GNUNET_assert (id != NULL);
2349
2350 #if VERBOSE > 1
2351   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Started daemon %llu out of %llu\n",
2352               (num_peers - peers_left) + 1, num_peers);
2353 #endif
2354
2355   peers_left--;
2356
2357   if (GNUNET_YES == update_meter(peer_start_meter))
2358     {
2359 #if VERBOSE
2360       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2361                   "All %d daemons started, now connecting peers!\n",
2362                   num_peers);
2363 #endif
2364       GNUNET_SCHEDULER_cancel (sched, die_task);
2365
2366       expected_connections = -1;
2367       if ((pg != NULL) && (peers_left == 0))
2368         {
2369           expected_connections = GNUNET_TESTING_connect_topology (pg, connect_topology, connect_topology_option, connect_topology_option_modifier);
2370
2371           peer_connect_meter = create_meter(expected_connections, "Peer connection ", GNUNET_YES);
2372           fprintf(stderr, "Have %d expected connections\n", expected_connections);
2373         }
2374
2375       if (expected_connections == GNUNET_SYSERR)
2376         {
2377           die_task = GNUNET_SCHEDULER_add_now (sched,
2378                                                &end_badly, "from connect topology (bad return)");
2379         }
2380
2381       die_task = GNUNET_SCHEDULER_add_delayed (sched,
2382                                                GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, DEFAULT_CONNECT_TIMEOUT * expected_connections),
2383                                                &end_badly, "from connect topology (timeout)");
2384
2385       ok = 0;
2386     }
2387 }
2388
2389 static void
2390 create_topology ()
2391 {
2392   peers_left = num_peers; /* Reset counter */
2393   if (GNUNET_TESTING_create_topology (pg, topology, blacklist_topology, blacklist_transports) != GNUNET_SYSERR)
2394     {
2395 #if VERBOSE
2396       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2397                   "Topology set up, now starting peers!\n");
2398 #endif
2399       GNUNET_TESTING_daemons_continue_startup(pg);
2400     }
2401   else
2402     {
2403       GNUNET_SCHEDULER_cancel (sched, die_task);
2404       die_task = GNUNET_SCHEDULER_add_now (sched,
2405                                            &end_badly, "from create topology (bad return)");
2406     }
2407   GNUNET_free_non_null(blacklist_transports);
2408   GNUNET_SCHEDULER_cancel (sched, die_task);
2409   die_task = GNUNET_SCHEDULER_add_delayed (sched,
2410                                            GNUNET_TIME_relative_multiply(seconds_per_peer_start, num_peers),
2411                                            &end_badly, "from continue startup (timeout)");
2412 }
2413
2414 /**
2415  * Callback indicating that the hostkey was created for a peer.
2416  *
2417  * @param cls NULL
2418  * @param id the peer identity
2419  * @param d the daemon handle (pretty useless at this point, remove?)
2420  * @param emsg non-null on failure
2421  */
2422 void hostkey_callback (void *cls,
2423                        const struct GNUNET_PeerIdentity *id,
2424                        struct GNUNET_TESTING_Daemon *d,
2425                        const char *emsg)
2426 {
2427   if (emsg != NULL)
2428     {
2429       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Hostkey callback received error: %s\n", emsg);
2430     }
2431
2432 #if VERBOSE > 1
2433     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2434                 "Hostkey (%d/%d) created for peer `%s'\n",
2435                 num_peers - peers_left, num_peers, GNUNET_i2s(id));
2436 #endif
2437
2438     peers_left--;
2439     if (GNUNET_YES == update_meter(hostkey_meter))
2440       {
2441 #if VERBOSE
2442         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2443                     "All %d hostkeys created, now creating topology!\n",
2444                     num_peers);
2445 #endif
2446         GNUNET_SCHEDULER_cancel (sched, die_task);
2447         /* Set up task in case topology creation doesn't finish
2448          * within a reasonable amount of time */
2449         die_task = GNUNET_SCHEDULER_add_delayed (sched,
2450                                                  DEFAULT_TOPOLOGY_TIMEOUT,
2451                                                  &end_badly, "from create_topology");
2452         GNUNET_SCHEDULER_add_now(sched, &create_topology, NULL);
2453         ok = 0;
2454       }
2455 }
2456
2457
2458 static void
2459 run (void *cls,
2460      struct GNUNET_SCHEDULER_Handle *s,
2461      char *const *args,
2462      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
2463 {
2464   struct stat frstat;
2465   struct GNUNET_DHTLOG_TrialInfo trial_info;
2466   struct GNUNET_TESTING_Host *hosts;
2467   struct GNUNET_TESTING_Host *temphost;
2468   struct GNUNET_TESTING_Host *tempnext;
2469   char *topology_str;
2470   char *connect_topology_str;
2471   char *blacklist_topology_str;
2472   char *connect_topology_option_str;
2473   char *connect_topology_option_modifier_string;
2474   char *trialmessage;
2475   char *topology_percentage_str;
2476   float topology_percentage;
2477   char *topology_probability_str;
2478   char *hostfile;
2479   float topology_probability;
2480   unsigned long long temp_config_number;
2481   int stop_closest;
2482   int stop_found;
2483   int strict_kademlia;
2484   char *buf;
2485   char *data;
2486   char *churn_data;
2487   char *churn_filename;
2488   int count;
2489   int ret;
2490   unsigned int line_number;
2491
2492   sched = s;
2493   config = cfg;
2494   rounds_finished = 0;
2495   memset(&trial_info, 0, sizeof(struct GNUNET_DHTLOG_TrialInfo));
2496   /* Get path from configuration file */
2497   if (GNUNET_YES != GNUNET_CONFIGURATION_get_value_string(cfg, "paths", "servicehome", &test_directory))
2498     {
2499       ok = 404;
2500       return;
2501     }
2502
2503   /**
2504    * Get DHT specific testing options.
2505    */
2506   if ((GNUNET_YES == GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht_testing", "mysql_logging")) ||
2507       (GNUNET_YES == GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht_testing", "mysql_logging_extended")))
2508     {
2509       dhtlog_handle = GNUNET_DHTLOG_connect(cfg);
2510       if (dhtlog_handle == NULL)
2511         {
2512           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2513                       "Could not connect to mysql server for logging, will NOT log dht operations!");
2514           ok = 3306;
2515           return;
2516         }
2517     }
2518
2519   stop_closest = GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht", "stop_on_closest");
2520   if (stop_closest == GNUNET_SYSERR)
2521     stop_closest = GNUNET_NO;
2522
2523   stop_found = GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht", "stop_found");
2524   if (stop_found == GNUNET_SYSERR)
2525     stop_found = GNUNET_NO;
2526
2527   strict_kademlia = GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht", "strict_kademlia");
2528   if (strict_kademlia == GNUNET_SYSERR)
2529     strict_kademlia = GNUNET_NO;
2530
2531   if (GNUNET_OK !=
2532       GNUNET_CONFIGURATION_get_value_string (cfg, "dht_testing", "comment",
2533                                              &trialmessage))
2534     trialmessage = NULL;
2535
2536   churn_data = NULL;
2537   /** Check for a churn file to do churny simulation */
2538   if (GNUNET_OK ==
2539       GNUNET_CONFIGURATION_get_value_string(cfg, "dht_testing", "churn_file",
2540                                             &churn_filename))
2541     {
2542       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Reading churn data from %s\n", churn_filename);
2543       if (GNUNET_OK != GNUNET_DISK_file_test (churn_filename))
2544         {
2545           GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Error reading churn file!\n");
2546           return;
2547         }
2548       if ((0 != STAT (churn_filename, &frstat)) || (frstat.st_size == 0))
2549         {
2550           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2551                       "Could not open file specified for churn data, ending test!");
2552           ok = 1119;
2553           GNUNET_free_non_null(trialmessage);
2554           GNUNET_free(churn_filename);
2555           return;
2556         }
2557
2558       churn_data = GNUNET_malloc_large (frstat.st_size);
2559       GNUNET_assert(churn_data != NULL);
2560       if (frstat.st_size !=
2561           GNUNET_DISK_fn_read (churn_filename, churn_data, frstat.st_size))
2562         {
2563           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2564                     "Could not read file %s specified for churn, ending test!", churn_filename);
2565           GNUNET_free (churn_filename);
2566           GNUNET_free (churn_data);
2567           GNUNET_free_non_null(trialmessage);
2568           return;
2569         }
2570
2571       GNUNET_free_non_null(churn_filename);
2572
2573       buf = churn_data;
2574       count = 0;
2575       /* Read the first line */
2576       while (count < frstat.st_size)
2577         {
2578           count++;
2579           if (((churn_data[count] == '\n')) && (buf != &churn_data[count]))
2580             {
2581               churn_data[count] = '\0';
2582               if (1 != sscanf(buf, "%u", &churn_rounds))
2583                 {
2584                   GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Failed to read number of rounds from %s, ending test!\n", churn_filename);
2585                   GNUNET_free_non_null(trialmessage);
2586                   GNUNET_free(churn_filename);
2587                   ret = 4200;
2588                   return;
2589                 }
2590               GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Read %u rounds from churn file\n", churn_rounds);
2591               buf = &churn_data[count + 1];
2592               churn_array = GNUNET_malloc(sizeof(unsigned int) * churn_rounds);
2593               break; /* Done with this part */
2594             }
2595         }
2596
2597       if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_number(cfg, "dht_testing", "churns_per_round", &churns_per_round))
2598         {
2599           churns_per_round = (unsigned long long)churn_rounds;
2600         }
2601
2602       line_number = 0;
2603       while ((count < frstat.st_size) && (line_number < churn_rounds))
2604         {
2605           count++;
2606           if (((churn_data[count] == '\n')) && (buf != &churn_data[count]))
2607             {
2608               churn_data[count] = '\0';
2609
2610               ret = sscanf(buf, "%u", &churn_array[line_number]);
2611               if (1 == ret)
2612                 {
2613                   GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Read %u peers in round %u\n", churn_array[line_number], line_number);
2614                   line_number++;
2615                 }
2616               else
2617                 {
2618                   GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Error reading line `%s' in hostfile\n", buf);
2619                   buf = &churn_data[count + 1];
2620                   continue;
2621                 }
2622               buf = &churn_data[count + 1];
2623             }
2624           else if (churn_data[count] == '\n') /* Blank line */
2625             buf = &churn_data[count + 1];
2626         }
2627     }
2628   GNUNET_free_non_null(churn_data);
2629
2630   /** Check for a hostfile containing user@host:port triples */
2631   if (GNUNET_OK !=
2632       GNUNET_CONFIGURATION_get_value_string (cfg, "testing", "hostfile",
2633                                              &hostfile))
2634     hostfile = NULL;
2635
2636   hosts = NULL;
2637   temphost = NULL;
2638   if (hostfile != NULL)
2639     {
2640       if (GNUNET_OK != GNUNET_DISK_file_test (hostfile))
2641           GNUNET_DISK_fn_write (hostfile, NULL, 0, GNUNET_DISK_PERM_USER_READ
2642             | GNUNET_DISK_PERM_USER_WRITE);
2643       if ((0 != STAT (hostfile, &frstat)) || (frstat.st_size == 0))
2644         {
2645           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2646                       "Could not open file specified for host list, ending test!");
2647           ok = 1119;
2648           GNUNET_free_non_null(trialmessage);
2649           GNUNET_free(hostfile);
2650           return;
2651         }
2652
2653     data = GNUNET_malloc_large (frstat.st_size);
2654     GNUNET_assert(data != NULL);
2655     if (frstat.st_size !=
2656         GNUNET_DISK_fn_read (hostfile, data, frstat.st_size))
2657       {
2658         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2659                   "Could not read file %s specified for host list, ending test!", hostfile);
2660         GNUNET_free (hostfile);
2661         GNUNET_free (data);
2662         GNUNET_free_non_null(trialmessage);
2663         return;
2664       }
2665
2666     GNUNET_free_non_null(hostfile);
2667
2668     buf = data;
2669     count = 0;
2670     while (count < frstat.st_size)
2671       {
2672         count++;
2673         /* if (((data[count] == '\n') || (data[count] == '\0')) && (buf != &data[count]))*/
2674         if (((data[count] == '\n')) && (buf != &data[count]))
2675           {
2676             data[count] = '\0';
2677             temphost = GNUNET_malloc(sizeof(struct GNUNET_TESTING_Host));
2678             ret = sscanf(buf, "%a[a-zA-Z0-9]@%a[a-zA-Z0-9.]:%hd", &temphost->username, &temphost->hostname, &temphost->port);
2679             if (3 == ret)
2680               {
2681                 GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Successfully read host %s, port %d and user %s from file\n", temphost->hostname, temphost->port, temphost->username);
2682               }
2683             else
2684               {
2685                 GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Error reading line `%s' in hostfile\n", buf);
2686                 GNUNET_free(temphost);
2687                 buf = &data[count + 1];
2688                 continue;
2689               }
2690             /* temphost->hostname = buf; */
2691             temphost->next = hosts;
2692             hosts = temphost;
2693             buf = &data[count + 1];
2694           }
2695         else if ((data[count] == '\n') || (data[count] == '\0'))
2696           buf = &data[count + 1];
2697       }
2698     }
2699
2700   if (GNUNET_OK !=
2701           GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "malicious_getters",
2702                                                  &malicious_getters))
2703     malicious_getters = 0;
2704
2705   if (GNUNET_OK !=
2706           GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "malicious_putters",
2707                                                  &malicious_putters))
2708     malicious_putters = 0;
2709
2710   if (GNUNET_OK !=
2711             GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "malicious_droppers",
2712                                                    &malicious_droppers))
2713     malicious_droppers = 0;
2714
2715   if (GNUNET_OK !=
2716       GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "settle_time",
2717                                                  &settle_time))
2718     settle_time = 0;
2719
2720   if (GNUNET_SYSERR ==
2721       GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "num_puts",
2722                                              &num_puts))
2723     num_puts = num_peers;
2724
2725   if (GNUNET_SYSERR ==
2726       GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "num_gets",
2727                                              &num_gets))
2728     num_gets = num_peers;
2729
2730   if (GNUNET_OK ==
2731         GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "find_peer_delay",
2732                                                &temp_config_number))
2733     find_peer_delay = GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, temp_config_number);
2734   else
2735     find_peer_delay = DEFAULT_FIND_PEER_DELAY;
2736
2737   if (GNUNET_OK ==
2738         GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "concurrent_find_peers",
2739                                                &temp_config_number))
2740     max_outstanding_find_peers = temp_config_number;
2741   else
2742     max_outstanding_find_peers = DEFAULT_MAX_OUTSTANDING_FIND_PEERS;
2743
2744   if (GNUNET_OK ==
2745         GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "get_timeout",
2746                                                &temp_config_number))
2747     get_timeout = GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, temp_config_number);
2748   else
2749     get_timeout = DEFAULT_GET_TIMEOUT;
2750
2751   if (GNUNET_OK ==
2752         GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "concurrent_puts",
2753                                                &temp_config_number))
2754     max_outstanding_puts = temp_config_number;
2755   else
2756     max_outstanding_puts = DEFAULT_MAX_OUTSTANDING_PUTS;
2757
2758   if (GNUNET_OK ==
2759         GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "concurrent_gets",
2760                                                &temp_config_number))
2761     max_outstanding_gets = temp_config_number;
2762   else
2763     max_outstanding_gets = DEFAULT_MAX_OUTSTANDING_GETS;
2764
2765   if (GNUNET_OK ==
2766         GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "timeout",
2767                                                &temp_config_number))
2768     all_get_timeout = GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, temp_config_number);
2769   else
2770     all_get_timeout.value = get_timeout.value * num_gets;
2771
2772   if (GNUNET_OK ==
2773         GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "get_delay",
2774                                                &temp_config_number))
2775     get_delay = GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, temp_config_number);
2776   else
2777     get_delay = DEFAULT_GET_DELAY;
2778
2779   if (GNUNET_OK ==
2780         GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "put_delay",
2781                                                &temp_config_number))
2782     put_delay = GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, temp_config_number);
2783   else
2784     put_delay = DEFAULT_PUT_DELAY;
2785
2786   if (GNUNET_OK ==
2787       GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "peer_start_timeout",
2788                                              &temp_config_number))
2789     seconds_per_peer_start = GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, temp_config_number);
2790   else
2791     seconds_per_peer_start = DEFAULT_SECONDS_PER_PEER_START;
2792
2793   if (GNUNET_OK ==
2794         GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "data_size",
2795                                                &temp_config_number))
2796     test_data_size = temp_config_number;
2797   else
2798     test_data_size = DEFAULT_TEST_DATA_SIZE;
2799
2800   /**
2801    * Get testing related options.
2802    */
2803   if (GNUNET_YES == GNUNET_CONFIGURATION_get_value_yesno(cfg, "DHT_TESTING", "REPLICATE_SAME"))
2804     {
2805       replicate_same = GNUNET_YES;
2806     }
2807
2808   if (GNUNET_NO == GNUNET_CONFIGURATION_get_value_time (cfg, "DHT_TESTING",
2809                                                         "MALICIOUS_GET_FREQUENCY",
2810                                                         &malicious_get_frequency))
2811     malicious_get_frequency = DEFAULT_MALICIOUS_GET_FREQUENCY;
2812
2813
2814   if (GNUNET_NO == GNUNET_CONFIGURATION_get_value_time (cfg, "DHT_TESTING",
2815                                                         "MALICIOUS_PUT_FREQUENCY",
2816                                                         &malicious_put_frequency))
2817     malicious_put_frequency = DEFAULT_MALICIOUS_PUT_FREQUENCY;
2818
2819
2820   /* The normal behavior of the DHT is to do find peer requests
2821    * on its own.  Only if this is explicitly turned off should
2822    * the testing driver issue find peer requests (even though
2823    * this is likely the default when testing).
2824    */
2825   if (GNUNET_NO ==
2826         GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht",
2827                                              "do_find_peer"))
2828     {
2829       do_find_peer = GNUNET_YES;
2830     }
2831
2832   if (GNUNET_YES ==
2833         GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht",
2834                                              "republish"))
2835     {
2836       in_dht_replication = GNUNET_YES;
2837     }
2838
2839   if (GNUNET_YES != GNUNET_CONFIGURATION_get_value_number (cfg, "DHT_TESTING",
2840                                                           "TRIAL_TO_RUN",
2841                                                           &trial_to_run))
2842     {
2843       trial_to_run = 0;
2844     }
2845
2846   if (GNUNET_YES == GNUNET_CONFIGURATION_get_value_number (cfg, "DHT_TESTING",
2847                                                           "FIND_PEER_DELAY",
2848                                                           &temp_config_number))
2849     {
2850       find_peer_delay = GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, temp_config_number);
2851     }
2852   else
2853     find_peer_delay = DEFAULT_FIND_PEER_DELAY;
2854
2855   if (GNUNET_YES != GNUNET_CONFIGURATION_get_value_number(cfg, "DHT_TESTING", "ROUND_DELAY", &round_delay))
2856     round_delay = 0;
2857
2858   if (GNUNET_NO == GNUNET_CONFIGURATION_get_value_number (cfg, "DHT_TESTING",
2859                                                             "OUTSTANDING_FIND_PEERS",
2860                                                             &max_outstanding_find_peers))
2861       max_outstanding_find_peers = DEFAULT_MAX_OUTSTANDING_FIND_PEERS;
2862
2863   if (GNUNET_YES == GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht", "strict_kademlia"))
2864     max_outstanding_find_peers = max_outstanding_find_peers * 1;
2865
2866   find_peer_offset = GNUNET_TIME_relative_divide (find_peer_delay, max_outstanding_find_peers);
2867
2868   if (GNUNET_SYSERR ==
2869         GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "num_rounds",
2870                                                &total_rounds))
2871     {
2872       total_rounds = 1;
2873     }
2874
2875   topology_str = NULL;
2876   if ((GNUNET_YES ==
2877       GNUNET_CONFIGURATION_get_value_string(cfg, "testing", "topology",
2878                                             &topology_str)) && (GNUNET_NO == GNUNET_TESTING_topology_get(&topology, topology_str)))
2879     {
2880       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2881                   "Invalid topology `%s' given for section %s option %s\n", topology_str, "TESTING", "TOPOLOGY");
2882       topology = GNUNET_TESTING_TOPOLOGY_CLIQUE; /* Defaults to NONE, so set better default here */
2883     }
2884
2885   if (GNUNET_OK !=
2886       GNUNET_CONFIGURATION_get_value_string (cfg, "testing", "percentage",
2887                                                  &topology_percentage_str))
2888     topology_percentage = 0.5;
2889   else
2890     {
2891       topology_percentage = atof (topology_percentage_str);
2892       GNUNET_free(topology_percentage_str);
2893     }
2894
2895   if (GNUNET_OK !=
2896       GNUNET_CONFIGURATION_get_value_string (cfg, "testing", "probability",
2897                                                  &topology_probability_str))
2898     topology_probability = 0.5;
2899   else
2900     {
2901      topology_probability = atof (topology_probability_str);
2902      GNUNET_free(topology_probability_str);
2903     }
2904
2905   if ((GNUNET_YES ==
2906       GNUNET_CONFIGURATION_get_value_string(cfg, "testing", "connect_topology",
2907                                             &connect_topology_str)) && (GNUNET_NO == GNUNET_TESTING_topology_get(&connect_topology, connect_topology_str)))
2908     {
2909       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2910                   "Invalid connect topology `%s' given for section %s option %s\n", connect_topology_str, "TESTING", "CONNECT_TOPOLOGY");
2911     }
2912   GNUNET_free_non_null(connect_topology_str);
2913
2914   if ((GNUNET_YES ==
2915       GNUNET_CONFIGURATION_get_value_string(cfg, "testing", "connect_topology_option",
2916                                             &connect_topology_option_str)) && (GNUNET_NO == GNUNET_TESTING_topology_option_get(&connect_topology_option, connect_topology_option_str)))
2917     {
2918       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2919                   "Invalid connect topology option `%s' given for section %s option %s\n", connect_topology_option_str, "TESTING", "CONNECT_TOPOLOGY_OPTION");
2920       connect_topology_option = GNUNET_TESTING_TOPOLOGY_OPTION_ALL; /* Defaults to NONE, set to ALL */
2921     }
2922   GNUNET_free_non_null(connect_topology_option_str);
2923
2924   if (GNUNET_YES ==
2925         GNUNET_CONFIGURATION_get_value_string (cfg, "testing", "connect_topology_option_modifier",
2926                                                &connect_topology_option_modifier_string))
2927     {
2928       if (sscanf(connect_topology_option_modifier_string, "%lf", &connect_topology_option_modifier) != 1)
2929       {
2930         GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2931         _("Invalid value `%s' for option `%s' in section `%s': expected float\n"),
2932         connect_topology_option_modifier_string,
2933         "connect_topology_option_modifier",
2934         "TESTING");
2935       }
2936       GNUNET_free (connect_topology_option_modifier_string);
2937     }
2938
2939   if (GNUNET_YES != GNUNET_CONFIGURATION_get_value_string (cfg, "testing", "blacklist_transports",
2940                                          &blacklist_transports))
2941     blacklist_transports = NULL;
2942
2943   if ((GNUNET_YES ==
2944       GNUNET_CONFIGURATION_get_value_string(cfg, "testing", "blacklist_topology",
2945                                             &blacklist_topology_str)) &&
2946       (GNUNET_NO == GNUNET_TESTING_topology_get(&blacklist_topology, blacklist_topology_str)))
2947     {
2948       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2949                   "Invalid topology `%s' given for section %s option %s\n", topology_str, "TESTING", "BLACKLIST_TOPOLOGY");
2950     }
2951   GNUNET_free_non_null(topology_str);
2952   GNUNET_free_non_null(blacklist_topology_str);
2953
2954   /* Get number of peers to start from configuration */
2955   if (GNUNET_SYSERR ==
2956       GNUNET_CONFIGURATION_get_value_number (cfg, "testing", "num_peers",
2957                                              &num_peers))
2958     {
2959       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2960                   "Number of peers must be specified in section %s option %s\n", topology_str, "TESTING", "NUM_PEERS");
2961     }
2962   GNUNET_assert(num_peers > 0 && num_peers < (unsigned long long)-1);
2963   /* Set peers_left so we know when all peers started */
2964   peers_left = num_peers;
2965
2966
2967   /* Set up a task to end testing if peer start fails */
2968   die_task = GNUNET_SCHEDULER_add_delayed (sched,
2969                                            GNUNET_TIME_relative_multiply(seconds_per_peer_start, num_peers),
2970                                            &end_badly, "didn't generate all hostkeys within allowed startup time!");
2971
2972   if (dhtlog_handle == NULL)
2973     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2974                 "dhtlog_handle is NULL!");
2975
2976   trial_info.other_identifier = (unsigned int)trial_to_run;
2977   trial_info.num_nodes = peers_left;
2978   trial_info.topology = topology;
2979   trial_info.blacklist_topology = blacklist_topology;
2980   trial_info.connect_topology = connect_topology;
2981   trial_info.connect_topology_option = connect_topology_option;
2982   trial_info.connect_topology_option_modifier = connect_topology_option_modifier;
2983   trial_info.topology_percentage = topology_percentage;
2984   trial_info.topology_probability = topology_probability;
2985   trial_info.puts = num_puts;
2986   trial_info.gets = num_gets;
2987   trial_info.concurrent = max_outstanding_gets;
2988   trial_info.settle_time = settle_time;
2989   trial_info.num_rounds = 1;
2990   trial_info.malicious_getters = malicious_getters;
2991   trial_info.malicious_putters = malicious_putters;
2992   trial_info.malicious_droppers = malicious_droppers;
2993   trial_info.malicious_get_frequency = malicious_get_frequency.value;
2994   trial_info.malicious_put_frequency = malicious_put_frequency.value;
2995   trial_info.stop_closest = stop_closest;
2996   trial_info.stop_found = stop_found;
2997   trial_info.strict_kademlia = strict_kademlia;
2998
2999   if (trialmessage != NULL)
3000     trial_info.message = trialmessage;
3001   else
3002     trial_info.message = "";
3003
3004   if (dhtlog_handle != NULL)
3005     dhtlog_handle->insert_trial(&trial_info);
3006
3007   GNUNET_free_non_null(trialmessage);
3008
3009   hostkey_meter = create_meter(peers_left, "Hostkeys created ", GNUNET_YES);
3010   peer_start_meter = create_meter(peers_left, "Peers started ", GNUNET_YES);
3011
3012   put_meter = create_meter(num_puts, "Puts completed ", GNUNET_YES);
3013   get_meter = create_meter(num_gets, "Gets completed ", GNUNET_YES);
3014   pg = GNUNET_TESTING_daemons_start (sched, cfg,
3015                                      peers_left,
3016                                      GNUNET_TIME_relative_multiply(seconds_per_peer_start, num_peers),
3017                                      &hostkey_callback, NULL,
3018                                      &peers_started_callback, NULL,
3019                                      &topology_callback, NULL,
3020                                      hosts);
3021   temphost = hosts;
3022   while (temphost != NULL)
3023     {
3024       tempnext = temphost->next;
3025       GNUNET_free (temphost->username);
3026       GNUNET_free (temphost->hostname);
3027       GNUNET_free (temphost);
3028       temphost = tempnext;
3029     }
3030 }
3031
3032
3033 int
3034 main (int argc, char *argv[])
3035 {
3036   int ret;
3037   struct GNUNET_GETOPT_CommandLineOption options[] = {
3038       GNUNET_GETOPT_OPTION_END
3039     };
3040
3041   ret = GNUNET_PROGRAM_run (argc,
3042                             argv, "gnunet-dht-driver", "nohelp",
3043                             options, &run, &ok);
3044
3045   if (ret != GNUNET_OK)
3046     {
3047       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "`gnunet-dht-driver': Failed with error code %d\n", ret);
3048     }
3049
3050   /**
3051    * Need to remove base directory, subdirectories taken care
3052    * of by the testing framework.
3053    */
3054   if (GNUNET_DISK_directory_remove (test_directory) != GNUNET_OK)
3055     {
3056       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Failed to remove testing directory %s\n", test_directory);
3057     }
3058   return ret;
3059 }
3060
3061 /* end of gnunet-dht-driver.c */