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