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