missing variable
[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   int count_added;
1402
1403   if (emsg != NULL)
1404     {
1405       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Ending test, churning of peers failed with error `%s'", emsg);
1406       GNUNET_SCHEDULER_add_now(sched, &end_badly, (void *)emsg);
1407       return;
1408     }
1409
1410   /**
1411    * If we switched any peers on, we have to somehow force connect the new peer to
1412    * SOME bootstrap peer in the network.  First schedule a task to find all peers
1413    * with no connections, then choose a random peer for each and connect them.
1414    */
1415   if (find_peer_context != NULL)
1416     {
1417       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "We have churned on some peers, so we must schedule find peer requests for them!\n");
1418       count_added = 0;
1419       for (i = 0; i < num_peers; i ++)
1420         {
1421           temp_daemon = GNUNET_TESTING_daemon_get(pg, i);
1422           if (GNUNET_YES == GNUNET_TESTING_daemon_running(temp_daemon))
1423             {
1424               peer_count = GNUNET_malloc (sizeof(struct PeerCount));
1425               memcpy(&peer_count->peer_id, &temp_daemon->id, sizeof(struct GNUNET_PeerIdentity));
1426               GNUNET_assert(peer_count->count == 0);
1427               peer_count->heap_node = GNUNET_CONTAINER_heap_insert(find_peer_context->peer_min_heap, peer_count, peer_count->count);
1428               GNUNET_CONTAINER_multihashmap_put(find_peer_context->peer_hash, &temp_daemon->id.hashPubKey, peer_count, GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
1429               count_added++;
1430             }
1431         }
1432       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));
1433       GNUNET_SCHEDULER_add_delayed(sched, DEFAULT_PEER_DISCONNECT_TIMEOUT, &schedule_churn_get_topology, find_peer_context);
1434       //GNUNET_TESTING_get_topology (pg, &count_peers_churn_cb, find_peer_context);
1435     }
1436   else
1437     {
1438       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");
1439       if (dhtlog_handle != NULL)
1440         {
1441           topo_ctx = GNUNET_malloc(sizeof(struct TopologyIteratorContext));
1442           topo_ctx->cont = &do_get;
1443           topo_ctx->cls = all_gets;
1444           topo_ctx->timeout = DEFAULT_GET_TIMEOUT;
1445           topo_ctx->peers_seen = GNUNET_CONTAINER_multihashmap_create(num_peers);
1446           calc_timeout = GNUNET_TIME_relative_add(DEFAULT_GET_TIMEOUT, all_get_timeout);
1447           calc_timeout = GNUNET_TIME_relative_add(calc_timeout, DEFAULT_TOPOLOGY_CAPTURE_TIMEOUT);
1448           calc_timeout = GNUNET_TIME_relative_add(calc_timeout, DEFAULT_PEER_DISCONNECT_TIMEOUT);
1449           die_task = GNUNET_SCHEDULER_add_delayed (sched, calc_timeout,
1450                                                    &end_badly, "from do gets (churn_complete)");
1451           GNUNET_SCHEDULER_add_delayed(sched, DEFAULT_PEER_DISCONNECT_TIMEOUT, &capture_current_topology, topo_ctx);
1452         }
1453       else
1454         {
1455           calc_timeout = GNUNET_TIME_relative_add(DEFAULT_GET_TIMEOUT, all_get_timeout);
1456           calc_timeout = GNUNET_TIME_relative_add(calc_timeout, DEFAULT_PEER_DISCONNECT_TIMEOUT);
1457           die_task = GNUNET_SCHEDULER_add_delayed (sched, calc_timeout,
1458                                                    &end_badly, "from do gets (churn_complete)");
1459           if (dhtlog_handle != NULL)
1460             dhtlog_handle->insert_round(DHT_ROUND_GET, rounds_finished);
1461           GNUNET_SCHEDULER_add_delayed(sched, DEFAULT_PEER_DISCONNECT_TIMEOUT, &do_get, all_gets);
1462         }
1463     }
1464 }
1465
1466 /**
1467  * Decide how many peers to turn on or off in this round, make sure the
1468  * numbers actually make sense, then do so.  This function sets in motion
1469  * churn, find peer requests for newly joined peers, and issuing get
1470  * requests once the new peers have done so.
1471  *
1472  * @param cls closure (unused)
1473  * @param cls task context (unused)
1474  */
1475 static void
1476 churn_peers (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
1477 {
1478   unsigned int count_running;
1479   unsigned int churn_up;
1480   unsigned int churn_down;
1481   struct GNUNET_TIME_Relative timeout;
1482   struct FindPeerContext *find_peer_context;
1483
1484   churn_up = churn_down = 0;
1485   count_running = GNUNET_TESTING_daemons_running(pg);
1486   if (count_running > churn_array[current_churn_round])
1487     churn_down = count_running - churn_array[current_churn_round];
1488   else if (count_running < churn_array[current_churn_round])
1489     churn_up = churn_array[current_churn_round] - count_running;
1490   else
1491     GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Not churning any peers, topology unchanged.\n");
1492
1493   if (churn_up > num_peers - count_running)
1494     {
1495       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Churn file specified %u peers (up); only have %u!", churn_array[current_churn_round], num_peers);
1496       churn_up = num_peers - count_running;
1497     }
1498   else if (churn_down > count_running)
1499     {
1500       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Churn file specified %u peers (down); only have %u!", churn_array[current_churn_round], count_running);
1501       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "This will leave NO peers running (mistake in churn configuration?)!");
1502       churn_down = count_running;
1503     }
1504   //timeout = GNUNET_TIME_relative_multiply(seconds_per_peer_start, churn_up > 0 ? churn_up : churn_down);
1505   //timeout = GNUNET_TIME_relative_multiply (seconds_per_peer_start, churn_up > 0 ? churn_up : churn_down);
1506   timeout = DEFAULT_TIMEOUT; /* FIXME: Lack of intelligent choice here */
1507   find_peer_context = NULL;
1508   if (churn_up > 0) /* Only need to do find peer requests if we turned new peers on */
1509     {
1510       find_peer_context = GNUNET_malloc(sizeof(struct FindPeerContext));
1511       find_peer_context->count_peers_cb = &count_peers_churn_cb;
1512       find_peer_context->previous_peers = 0;
1513       find_peer_context->current_peers = 0;
1514       find_peer_context->endtime = GNUNET_TIME_relative_to_absolute(timeout);
1515       find_peer_context->peer_hash = GNUNET_CONTAINER_multihashmap_create(num_peers);
1516       find_peer_context->peer_min_heap = GNUNET_CONTAINER_heap_create(GNUNET_CONTAINER_HEAP_ORDER_MIN);
1517     }
1518   GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "churn_peers: want %u total, %u running, starting %u, stopping %u\n",
1519              churn_array[current_churn_round], count_running, churn_up, churn_down);
1520   GNUNET_TESTING_daemons_churn (pg, churn_down, churn_up, timeout, &churn_complete, find_peer_context);
1521   current_churn_round++;
1522 }
1523
1524 /**
1525  * Task to release DHT handle associated with GET request.
1526  */
1527 static void
1528 get_stop_finished (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
1529 {
1530   struct TestGetContext *test_get = cls;
1531   struct TopologyIteratorContext *topo_ctx;
1532
1533   /* The dht_handle may be null if this get was scheduled from a down peer */
1534   if (test_get->dht_handle != NULL)
1535     {
1536       GNUNET_DHT_disconnect(test_get->dht_handle);
1537       outstanding_gets--; /* GET is really finished */
1538       test_get->dht_handle = NULL;
1539     }
1540
1541   /* Reset the uid (which item to search for) and the daemon (which peer to search from) for later get request iterations */
1542   test_get->uid = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_puts);
1543   test_get->daemon = GNUNET_TESTING_daemon_get(pg, GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_peers));
1544
1545 #if VERBOSE > 1
1546   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "%d gets succeeded, %d gets failed!\n", gets_completed, gets_failed);
1547 #endif
1548   update_meter(get_meter);
1549   if ((gets_completed + gets_failed == num_gets) && (outstanding_gets == 0))
1550     {
1551       fprintf(stderr, "Canceling die task (get_stop_finished) %llu gets completed, %llu gets failed\n", gets_completed, gets_failed);
1552       GNUNET_SCHEDULER_cancel(sched, die_task);
1553       reset_meter(put_meter);
1554       reset_meter(get_meter);
1555       /**
1556        *  Handle all cases:
1557        *    1) Testing is completely finished, call the topology iteration dealy and die
1558        *    2) Testing is not finished, churn the network and do gets again (current_churn_round < churn_rounds)
1559        *    3) Testing is not finished, reschedule all the PUTS *and* GETS again (num_rounds > 1)
1560        */
1561       if (rounds_finished == total_rounds - 1) /* Everything is finished, end testing */
1562         {
1563           if (dhtlog_handle != NULL)
1564             {
1565               topo_ctx = GNUNET_malloc(sizeof(struct TopologyIteratorContext));
1566               topo_ctx->cont = &log_dht_statistics;
1567               topo_ctx->peers_seen = GNUNET_CONTAINER_multihashmap_create(num_peers);
1568               GNUNET_SCHEDULER_add_now(sched, &capture_current_topology, topo_ctx);
1569             }
1570           else
1571             GNUNET_SCHEDULER_add_now (sched, &finish_testing, NULL);
1572         }
1573       else if (current_churn_round < churns_per_round * (rounds_finished + 1)) /* Do next round of churn */
1574         {
1575           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);
1576           gets_completed = 0;
1577           gets_failed = 0;
1578
1579           if (dhtlog_handle != NULL)
1580             dhtlog_handle->insert_round(DHT_ROUND_CHURN, rounds_finished);
1581
1582           GNUNET_SCHEDULER_add_now(sched, &churn_peers, NULL);
1583         }
1584       else if (rounds_finished < total_rounds - 1) /* Start a new complete round */
1585         {
1586           rounds_finished++;
1587           gets_completed = 0;
1588           gets_failed = 0;
1589           GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Round %u of %llu finished, scheduling next round.\n", rounds_finished, total_rounds);
1590
1591           /** We reset the peer daemon for puts and gets on each disconnect, so all we need to do is start another round! */
1592           if (GNUNET_YES == in_dht_replication) /* Replication done in DHT, don't redo puts! */
1593             {
1594               if (dhtlog_handle != NULL)
1595                 dhtlog_handle->insert_round(DHT_ROUND_GET, rounds_finished);
1596
1597               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),
1598                                                        &end_badly, "from do gets (next round)");
1599               GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, round_delay), &do_get, all_gets);
1600             }
1601           else
1602             {
1603               if (dhtlog_handle != NULL)
1604                 dhtlog_handle->insert_round(DHT_ROUND_NORMAL, rounds_finished);
1605               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)),
1606                                                        &end_badly, "from do puts");
1607               GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, round_delay), &do_put, all_puts);
1608             }
1609         }
1610     }
1611 }
1612
1613 /**
1614  * Task to release get handle.
1615  */
1616 static void
1617 get_stop_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
1618 {
1619   struct TestGetContext *test_get = cls;
1620
1621   if (tc->reason == GNUNET_SCHEDULER_REASON_TIMEOUT)
1622     gets_failed++;
1623   GNUNET_assert(test_get->get_handle != NULL);
1624   GNUNET_DHT_get_stop(test_get->get_handle, &get_stop_finished, test_get);
1625   test_get->get_handle = NULL;
1626   test_get->disconnect_task = GNUNET_SCHEDULER_NO_TASK;
1627 }
1628
1629 /**
1630  * Iterator called if the GET request initiated returns a response.
1631  *
1632  * @param cls closure
1633  * @param exp when will this value expire
1634  * @param key key of the result
1635  * @param type type of the result
1636  * @param size number of bytes in data
1637  * @param data pointer to the result data
1638  */
1639 void get_result_iterator (void *cls,
1640                           struct GNUNET_TIME_Absolute exp,
1641                           const GNUNET_HashCode * key,
1642                           uint32_t type,
1643                           uint32_t size,
1644                           const void *data)
1645 {
1646   struct TestGetContext *test_get = cls;
1647
1648   if (test_get->succeeded == GNUNET_YES)
1649     return; /* Get has already been successful, probably ending now */
1650
1651   if (0 != memcmp(&known_keys[test_get->uid], key, sizeof (GNUNET_HashCode))) /* || (0 != memcmp(original_data, data, sizeof(original_data))))*/
1652     {
1653       gets_completed++;
1654       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Key or data is not the same as was inserted!\n");
1655     }
1656   else
1657     {
1658       gets_completed++;
1659       test_get->succeeded = GNUNET_YES;
1660     }
1661 #if VERBOSE > 1
1662   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received correct GET response!\n");
1663 #endif
1664   GNUNET_SCHEDULER_cancel(sched, test_get->disconnect_task);
1665   GNUNET_SCHEDULER_add_continuation(sched, &get_stop_task, test_get, GNUNET_SCHEDULER_REASON_PREREQ_DONE);
1666 }
1667
1668 /**
1669  * Continuation telling us GET request was sent.
1670  */
1671 static void
1672 get_continuation (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
1673 {
1674   // Is there something to be done here?
1675   if (tc->reason != GNUNET_SCHEDULER_REASON_PREREQ_DONE)
1676     return;
1677 }
1678
1679 /**
1680  * Set up some data, and call API PUT function
1681  */
1682 static void
1683 do_get (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
1684 {
1685   struct TestGetContext *test_get = cls;
1686
1687   if (num_gets == 0)
1688     {
1689       GNUNET_SCHEDULER_cancel(sched, die_task);
1690       GNUNET_SCHEDULER_add_now(sched, &finish_testing, NULL);
1691     }
1692
1693   if (test_get == NULL)
1694     return; /* End of the list */
1695
1696   /* Set this here in case we are re-running gets */
1697   test_get->succeeded = GNUNET_NO;
1698
1699   if (GNUNET_YES != GNUNET_TESTING_daemon_running(test_get->daemon)) /* If the peer has been churned off, don't try issuing request from it! */
1700     {
1701       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Peer we should issue get request from is down, skipping.\n");
1702       gets_failed++;
1703       GNUNET_SCHEDULER_add_now (sched, &get_stop_finished, test_get);
1704       GNUNET_SCHEDULER_add_now (sched, &do_get, test_get->next);
1705       return;
1706     }
1707
1708   /* Check if more gets are outstanding than should be */
1709   if (outstanding_gets > max_outstanding_gets)
1710     {
1711       GNUNET_SCHEDULER_add_delayed (sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MILLISECONDS, 200), &do_get, test_get);
1712       return;
1713     }
1714
1715   /* Connect to the first peer's DHT */
1716   test_get->dht_handle = GNUNET_DHT_connect(sched, test_get->daemon->cfg, 10);
1717   GNUNET_assert(test_get->dht_handle != NULL);
1718   outstanding_gets++;
1719
1720   /* Insert the data at the first peer */
1721   test_get->get_handle = GNUNET_DHT_get_start(test_get->dht_handle,
1722                                               get_delay,
1723                                               1,
1724                                               &known_keys[test_get->uid],
1725                                               &get_result_iterator,
1726                                               test_get,
1727                                               &get_continuation,
1728                                               test_get);
1729 #if VERBOSE > 1
1730   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting get for uid %u from peer %s\n",
1731              test_get->uid,
1732              test_get->daemon->shortname);
1733 #endif
1734   test_get->disconnect_task = GNUNET_SCHEDULER_add_delayed(sched, get_timeout, &get_stop_task, test_get);
1735
1736   /* Schedule the next request in the linked list of get requests */
1737   GNUNET_SCHEDULER_add_now (sched, &do_get, test_get->next);
1738 }
1739
1740 /**
1741  * Called when the PUT request has been transmitted to the DHT service.
1742  * Schedule the GET request for some time in the future.
1743  */
1744 static void
1745 put_finished (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
1746 {
1747   struct TestPutContext *test_put = cls;
1748   struct TopologyIteratorContext *topo_ctx;
1749   outstanding_puts--;
1750   puts_completed++;
1751
1752   if (tc->reason == GNUNET_SCHEDULER_REASON_TIMEOUT)
1753     fprintf(stderr, "PUT Request failed!\n");
1754
1755   /* Reset the daemon (which peer to insert at) for later put request iterations */
1756   if (replicate_same == GNUNET_NO)
1757     test_put->daemon = GNUNET_TESTING_daemon_get(pg, GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_peers));
1758
1759   GNUNET_SCHEDULER_cancel(sched, test_put->disconnect_task);
1760   test_put->disconnect_task = GNUNET_SCHEDULER_add_now(sched, &put_disconnect_task, test_put);
1761   if (GNUNET_YES == update_meter(put_meter))
1762     {
1763       GNUNET_assert(outstanding_puts == 0);
1764       GNUNET_SCHEDULER_cancel (sched, die_task);
1765       if (dhtlog_handle != NULL)
1766         {
1767           topo_ctx = GNUNET_malloc(sizeof(struct TopologyIteratorContext));
1768           topo_ctx->cont = &do_get;
1769           topo_ctx->cls = all_gets;
1770           topo_ctx->timeout = DEFAULT_GET_TIMEOUT;
1771           topo_ctx->peers_seen = GNUNET_CONTAINER_multihashmap_create(num_peers);
1772           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),
1773                                                    &end_badly, "from do gets (put finished)");
1774           GNUNET_SCHEDULER_add_now(sched, &capture_current_topology, topo_ctx);
1775         }
1776       else
1777         {
1778           fprintf(stderr, "Scheduling die task (put finished)\n");
1779           die_task = GNUNET_SCHEDULER_add_delayed (sched, GNUNET_TIME_relative_add(DEFAULT_GET_TIMEOUT, all_get_timeout),
1780                                                    &end_badly, "from do gets (put finished)");
1781           GNUNET_SCHEDULER_add_delayed(sched, DEFAULT_GET_TIMEOUT, &do_get, all_gets);
1782         }
1783       return;
1784     }
1785 }
1786
1787 /**
1788  * Set up some data, and call API PUT function
1789  */
1790 static void
1791 do_put (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
1792 {
1793   struct TestPutContext *test_put = cls;
1794   char data[test_data_size]; /* Made up data to store */
1795   uint32_t rand;
1796   int i;
1797
1798   if (test_put == NULL)
1799     return; /* End of list */
1800
1801   if (GNUNET_YES != GNUNET_TESTING_daemon_running(test_put->daemon)) /* If the peer has been churned off, don't try issuing request from it! */
1802     {
1803       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Peer we should issue put request at is down, skipping.\n");
1804       update_meter(put_meter);
1805       GNUNET_SCHEDULER_add_now (sched, &do_put, test_put->next);
1806       return;
1807     }
1808
1809   for (i = 0; i < sizeof(data); i++)
1810     {
1811       memset(&data[i], GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, (uint32_t)-1), 1);
1812     }
1813
1814   if (outstanding_puts > max_outstanding_puts)
1815     {
1816       GNUNET_SCHEDULER_add_delayed (sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MILLISECONDS, 200), &do_put, test_put);
1817       return;
1818     }
1819
1820 #if VERBOSE > 1
1821     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting put for uid %u from peer %s\n",
1822                 test_put->uid,
1823                 test_put->daemon->shortname);
1824 #endif
1825   test_put->dht_handle = GNUNET_DHT_connect(sched, test_put->daemon->cfg, 10);
1826
1827   GNUNET_assert(test_put->dht_handle != NULL);
1828   outstanding_puts++;
1829   GNUNET_DHT_put(test_put->dht_handle,
1830                  &known_keys[test_put->uid],
1831                  1,
1832                  sizeof(data), data,
1833                  GNUNET_TIME_absolute_get_forever(),
1834                  put_delay,
1835                  &put_finished, test_put);
1836   test_put->disconnect_task = GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_get_forever(), &put_disconnect_task, test_put);
1837   rand = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, 2);
1838   GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, rand), &do_put, test_put->next);
1839 }
1840
1841 static void
1842 schedule_find_peer_requests (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc);
1843
1844 /**
1845  * Given a number of total peers and a bucket size, estimate the number of
1846  * connections in a perfect kademlia topology.
1847  */
1848 static unsigned int connection_estimate(unsigned int peer_count, unsigned int bucket_size)
1849 {
1850   unsigned int i;
1851   unsigned int filled;
1852   i = num_peers;
1853
1854   filled = 0;
1855   while (i >= bucket_size)
1856     {
1857       filled++;
1858       i = i/2;
1859     }
1860   filled++; /* Add one filled bucket to account for one "half full" and some miscellaneous */
1861   return filled * bucket_size * peer_count;
1862
1863 }
1864
1865
1866 /**
1867  * Callback for iterating over all the peer connections of a peer group.
1868  */
1869 void count_peers_cb (void *cls,
1870                       const struct GNUNET_PeerIdentity *first,
1871                       const struct GNUNET_PeerIdentity *second,
1872                       struct GNUNET_TIME_Relative latency,
1873                       uint32_t distance,
1874                       const char *emsg)
1875 {
1876   struct FindPeerContext *find_peer_context = cls;
1877   if ((first != NULL) && (second != NULL))
1878     {
1879       add_new_connection(find_peer_context, first, second);
1880       find_peer_context->current_peers++;
1881     }
1882   else
1883     {
1884       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Peer count finished (%u connections), %u new peers, connection estimate %u (double %u)\n",
1885                                             find_peer_context->current_peers,
1886                                             find_peer_context->current_peers - find_peer_context->previous_peers,
1887                                             connection_estimate(num_peers, DEFAULT_BUCKET_SIZE),
1888                                             2 * connection_estimate(num_peers, DEFAULT_BUCKET_SIZE));
1889
1890       if ((find_peer_context->current_peers - find_peer_context->previous_peers > FIND_PEER_THRESHOLD) &&
1891           (find_peer_context->current_peers < 2 * connection_estimate(num_peers, DEFAULT_BUCKET_SIZE)) &&
1892           (GNUNET_TIME_absolute_get_remaining(find_peer_context->endtime).value > 0))
1893         {
1894           GNUNET_SCHEDULER_add_now(sched, &schedule_find_peer_requests, find_peer_context);
1895         }
1896       else
1897         {
1898           GNUNET_CONTAINER_multihashmap_iterate(find_peer_context->peer_hash, &remove_peer_count, find_peer_context);
1899           GNUNET_CONTAINER_multihashmap_destroy(find_peer_context->peer_hash);
1900           GNUNET_CONTAINER_heap_destroy(find_peer_context->peer_min_heap);
1901           GNUNET_free(find_peer_context);
1902           fprintf(stderr, "Not sending any more find peer requests.\n");
1903         }
1904     }
1905 }
1906
1907
1908 /**
1909  * Set up a single find peer request for each peer in the topology.  Do this
1910  * until the settle time is over, limited by the number of outstanding requests
1911  * and the time allowed for each one!
1912  */
1913 static void
1914 schedule_find_peer_requests (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
1915 {
1916   struct FindPeerContext *find_peer_ctx = cls;
1917   struct TestFindPeer *test_find_peer;
1918   struct PeerCount *peer_count;
1919   uint32_t i;
1920   uint32_t random;
1921
1922   if (find_peer_ctx->previous_peers == 0) /* First time, go slowly */
1923     find_peer_ctx->total = 1;
1924   else if (find_peer_ctx->current_peers - find_peer_ctx->previous_peers > MAX_FIND_PEER_CUTOFF) /* Found LOTS of peers, still go slowly */
1925     find_peer_ctx->total = find_peer_ctx->last_sent - (find_peer_ctx->last_sent / 8);
1926 #if USE_MIN
1927   else if (find_peer_ctx->current_peers - find_peer_ctx->previous_peers < MIN_FIND_PEER_CUTOFF)
1928     find_peer_ctx->total = find_peer_ctx->last_sent * 2; /* FIXME: always multiply by two (unless above max?) */
1929   else
1930     find_peer_ctx->total = find_peer_ctx->last_sent;
1931 #else
1932   else
1933     find_peer_ctx->total = find_peer_ctx->last_sent * 2;
1934 #endif
1935
1936   if (find_peer_ctx->total > max_outstanding_find_peers)
1937     find_peer_ctx->total = max_outstanding_find_peers;
1938
1939   find_peer_ctx->last_sent = find_peer_ctx->total;
1940   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));
1941
1942   find_peer_offset = GNUNET_TIME_relative_divide(find_peer_delay, find_peer_ctx->total);
1943   for (i = 0; i < find_peer_ctx->total; i++)
1944     {
1945       test_find_peer = GNUNET_malloc(sizeof(struct TestFindPeer));
1946       if (find_peer_ctx->previous_peers == 0) /* If we haven't sent any requests, yet choose random peers */
1947         {
1948           /**
1949            * Attempt to spread find peer requests across even sections of the peer address
1950            * space.  Choose basically 1 peer in every num_peers / max_outstanding_requests
1951            * each time, then offset it by a randomish value.
1952            *
1953            * For instance, if num_peers is 100 and max_outstanding is 10, first chosen peer
1954            * will be between 0 - 10, second between 10 - 20, etc.
1955            */
1956           random = (num_peers / find_peer_ctx->total) * i;
1957           random = random + GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, (num_peers / find_peer_ctx->total));
1958           if (random >= num_peers)
1959             {
1960               random = random - num_peers;
1961             }
1962     #if REAL_RANDOM
1963           random = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_peers);
1964     #endif
1965           test_find_peer->daemon = GNUNET_TESTING_daemon_get(pg, random);
1966         }
1967       else /* If we have sent requests, choose peers with a low number of connections to send requests from */
1968         {
1969           peer_count = GNUNET_CONTAINER_heap_remove_root(find_peer_ctx->peer_min_heap);
1970           GNUNET_CONTAINER_multihashmap_remove(find_peer_ctx->peer_hash, &peer_count->peer_id.hashPubKey, peer_count);
1971           test_find_peer->daemon = GNUNET_TESTING_daemon_get_by_id(pg, &peer_count->peer_id);
1972           GNUNET_assert(test_find_peer->daemon != NULL);
1973         }
1974
1975       test_find_peer->find_peer_context = find_peer_ctx;
1976       GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(find_peer_offset, i), &send_find_peer_request, test_find_peer);
1977     }
1978
1979   if ((find_peer_ctx->peer_hash == NULL) && (find_peer_ctx->peer_min_heap == NULL))
1980     {
1981       find_peer_ctx->peer_hash = GNUNET_CONTAINER_multihashmap_create(num_peers);
1982       find_peer_ctx->peer_min_heap = GNUNET_CONTAINER_heap_create(GNUNET_CONTAINER_HEAP_ORDER_MIN);
1983     }
1984   else
1985     {
1986       GNUNET_CONTAINER_multihashmap_iterate(find_peer_ctx->peer_hash, &remove_peer_count, find_peer_ctx);
1987       GNUNET_CONTAINER_multihashmap_destroy(find_peer_ctx->peer_hash);
1988       find_peer_ctx->peer_hash = GNUNET_CONTAINER_multihashmap_create(num_peers);
1989     }
1990
1991   GNUNET_assert(0 == GNUNET_CONTAINER_multihashmap_size(find_peer_ctx->peer_hash));
1992   GNUNET_assert(0 == GNUNET_CONTAINER_heap_get_size(find_peer_ctx->peer_min_heap));
1993
1994 }
1995
1996 /**
1997  * Set up some all of the put and get operations we want
1998  * to do.  Allocate data structure for each, add to list,
1999  * then call actual insert functions.
2000  */
2001 static void
2002 setup_puts_and_gets (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
2003 {
2004   int i;
2005   uint32_t temp_daemon;
2006   struct TestPutContext *test_put;
2007   struct TestGetContext *test_get;
2008 #if REMEMBER
2009   int remember[num_puts][num_peers];
2010   memset(&remember, 0, sizeof(int) * num_puts * num_peers);
2011 #endif
2012   known_keys = GNUNET_malloc(sizeof(GNUNET_HashCode) * num_puts);
2013   for (i = 0; i < num_puts; i++)
2014     {
2015       test_put = GNUNET_malloc(sizeof(struct TestPutContext));
2016       test_put->uid = i;
2017       GNUNET_CRYPTO_hash_create_random (GNUNET_CRYPTO_QUALITY_WEAK, &known_keys[i]);
2018       temp_daemon = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_peers);
2019       test_put->daemon = GNUNET_TESTING_daemon_get(pg, temp_daemon);
2020       test_put->next = all_puts;
2021       all_puts = test_put;
2022     }
2023
2024   for (i = 0; i < num_gets; i++)
2025     {
2026       test_get = GNUNET_malloc(sizeof(struct TestGetContext));
2027       test_get->uid = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_puts);
2028 #if REMEMBER
2029       while (remember[test_get->uid][temp_daemon] == 1)
2030         temp_daemon = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_peers);
2031       remember[test_get->uid][temp_daemon] = 1;
2032 #endif
2033       test_get->daemon = GNUNET_TESTING_daemon_get(pg, GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_peers));
2034       test_get->next = all_gets;
2035       all_gets = test_get;
2036     }
2037
2038   /*GNUNET_SCHEDULER_cancel (sched, die_task);*/
2039   die_task = GNUNET_SCHEDULER_add_delayed (sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, num_puts * 2),
2040                                            &end_badly, "from do puts");
2041   GNUNET_SCHEDULER_add_now (sched, &do_put, all_puts);
2042 }
2043
2044 /**
2045  * Set up some all of the put and get operations we want
2046  * to do.  Allocate data structure for each, add to list,
2047  * then call actual insert functions.
2048  */
2049 static void
2050 continue_puts_and_gets (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
2051 {
2052   int i;
2053   int max;
2054   struct TopologyIteratorContext *topo_ctx;
2055   struct FindPeerContext *find_peer_context;
2056   if (dhtlog_handle != NULL)
2057     {
2058       if (settle_time >= 180 * 2)
2059         max = (settle_time / 180) - 2;
2060       else
2061         max = 1;
2062       for (i = 1; i < max; i++)
2063         {
2064           topo_ctx = GNUNET_malloc(sizeof(struct TopologyIteratorContext));
2065           topo_ctx->current_iteration = i;
2066           topo_ctx->total_iterations = max;
2067           topo_ctx->peers_seen = GNUNET_CONTAINER_multihashmap_create(num_peers);
2068           //fprintf(stderr, "scheduled topology iteration in %d minutes\n", i);
2069           GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, i * 3), &capture_current_topology, topo_ctx);
2070         }
2071       topo_ctx = GNUNET_malloc(sizeof(struct TopologyIteratorContext));
2072       topo_ctx->cont = &setup_puts_and_gets;
2073       topo_ctx->peers_seen = GNUNET_CONTAINER_multihashmap_create(num_peers);
2074       GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, settle_time), &capture_current_topology, topo_ctx);
2075     }
2076   else
2077     GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, settle_time), &setup_puts_and_gets, NULL);
2078
2079   if (GNUNET_YES == do_find_peer)
2080     {
2081       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Scheduling find peer requests during \"settle\" time.\n");
2082       find_peer_context = GNUNET_malloc(sizeof(struct FindPeerContext));
2083       find_peer_context->count_peers_cb = &count_peers_cb;
2084       find_peer_context->endtime = GNUNET_TIME_relative_to_absolute(GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, settle_time));
2085       GNUNET_SCHEDULER_add_now(sched, &schedule_find_peer_requests, find_peer_context);
2086     }
2087   else
2088     {
2089       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Assuming automatic DHT find peer requests.\n");
2090     }
2091 }
2092
2093 /**
2094  * Task to release DHT handles
2095  */
2096 static void
2097 malicious_disconnect_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
2098 {
2099   struct MaliciousContext *ctx = cls;
2100   outstanding_malicious--;
2101   malicious_completed++;
2102   ctx->disconnect_task = GNUNET_SCHEDULER_NO_TASK;
2103   GNUNET_DHT_disconnect(ctx->dht_handle);
2104   ctx->dht_handle = NULL;
2105   GNUNET_free(ctx);
2106
2107   if (malicious_completed == malicious_getters + malicious_putters + malicious_droppers)
2108     {
2109       GNUNET_SCHEDULER_cancel(sched, die_task);
2110       fprintf(stderr, "Finished setting all malicious peers up, calling continuation!\n");
2111       if (dhtlog_handle != NULL)
2112         GNUNET_SCHEDULER_add_now (sched,
2113                                   &continue_puts_and_gets, NULL);
2114       else
2115         GNUNET_SCHEDULER_add_delayed (sched,
2116                                     GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, settle_time),
2117                                     &continue_puts_and_gets, NULL);
2118     }
2119
2120 }
2121
2122 /**
2123  * Task to release DHT handles
2124  */
2125 static void
2126 malicious_done_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
2127 {
2128   struct MaliciousContext *ctx = cls;
2129   GNUNET_SCHEDULER_cancel(sched, ctx->disconnect_task);
2130   GNUNET_SCHEDULER_add_now(sched, &malicious_disconnect_task, ctx);
2131 }
2132
2133 /**
2134  * Set up some data, and call API PUT function
2135  */
2136 static void
2137 set_malicious (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
2138 {
2139   struct MaliciousContext *ctx = cls;
2140   int ret;
2141
2142   if (outstanding_malicious > DEFAULT_MAX_OUTSTANDING_GETS)
2143     {
2144       GNUNET_SCHEDULER_add_delayed (sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MILLISECONDS, 100), &set_malicious, ctx);
2145       return;
2146     }
2147
2148   if (ctx->dht_handle == NULL)
2149     {
2150       ctx->dht_handle = GNUNET_DHT_connect(sched, ctx->daemon->cfg, 1);
2151       outstanding_malicious++;
2152     }
2153
2154   GNUNET_assert(ctx->dht_handle != NULL);
2155
2156
2157 #if VERBOSE > 1
2158     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Setting peer %s malicious type %d\n",
2159                 ctx->daemon->shortname, ctx->malicious_type);
2160 #endif
2161
2162   ret = GNUNET_YES;
2163   switch (ctx->malicious_type)
2164   {
2165   case GNUNET_MESSAGE_TYPE_DHT_MALICIOUS_GET:
2166     ret = GNUNET_DHT_set_malicious_getter(ctx->dht_handle, malicious_get_frequency, &malicious_done_task, ctx);
2167     break;
2168   case GNUNET_MESSAGE_TYPE_DHT_MALICIOUS_PUT:
2169     ret = GNUNET_DHT_set_malicious_putter(ctx->dht_handle, malicious_put_frequency, &malicious_done_task, ctx);
2170     break;
2171   case GNUNET_MESSAGE_TYPE_DHT_MALICIOUS_DROP:
2172     ret = GNUNET_DHT_set_malicious_dropper(ctx->dht_handle, &malicious_done_task, ctx);
2173     break;
2174   default:
2175     break;
2176   }
2177
2178   if (ret == GNUNET_NO)
2179     {
2180       GNUNET_SCHEDULER_add_delayed (sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MILLISECONDS, 100), &set_malicious, ctx);
2181     }
2182   else
2183     ctx->disconnect_task = GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_get_forever(), &malicious_disconnect_task, ctx);
2184 }
2185
2186 /**
2187  * Select randomly from set of known peers,
2188  * set the desired number of peers to the
2189  * proper malicious types.
2190  */
2191 static void
2192 setup_malicious_peers (void *cls, const struct GNUNET_SCHEDULER_TaskContext * tc)
2193 {
2194   struct MaliciousContext *ctx;
2195   int i;
2196   uint32_t temp_daemon;
2197
2198   for (i = 0; i < malicious_getters; i++)
2199     {
2200       ctx = GNUNET_malloc(sizeof(struct MaliciousContext));
2201       temp_daemon = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_peers);
2202       ctx->daemon = GNUNET_TESTING_daemon_get(pg, temp_daemon);
2203       ctx->malicious_type = GNUNET_MESSAGE_TYPE_DHT_MALICIOUS_GET;
2204       GNUNET_SCHEDULER_add_now (sched, &set_malicious, ctx);
2205
2206     }
2207
2208   for (i = 0; i < malicious_putters; i++)
2209     {
2210       ctx = GNUNET_malloc(sizeof(struct MaliciousContext));
2211       temp_daemon = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_peers);
2212       ctx->daemon = GNUNET_TESTING_daemon_get(pg, temp_daemon);
2213       ctx->malicious_type = GNUNET_MESSAGE_TYPE_DHT_MALICIOUS_PUT;
2214       GNUNET_SCHEDULER_add_now (sched, &set_malicious, ctx);
2215
2216     }
2217
2218   for (i = 0; i < malicious_droppers; i++)
2219     {
2220       ctx = GNUNET_malloc(sizeof(struct MaliciousContext));
2221       temp_daemon = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, num_peers);
2222       ctx->daemon = GNUNET_TESTING_daemon_get(pg, temp_daemon);
2223       ctx->malicious_type = GNUNET_MESSAGE_TYPE_DHT_MALICIOUS_DROP;
2224       GNUNET_SCHEDULER_add_now (sched, &set_malicious, ctx);
2225     }
2226
2227   /**
2228    * If we have any malicious peers to set up,
2229    * the malicious callback should call continue_gets_and_puts
2230    */
2231   if (malicious_getters + malicious_putters + malicious_droppers > 0)
2232     {
2233       GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Giving malicious set tasks some time before starting testing!\n");
2234       die_task = GNUNET_SCHEDULER_add_delayed (sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, (malicious_getters + malicious_putters + malicious_droppers) * 2),
2235                                                &end_badly, "from set malicious");
2236     }
2237   else /* Otherwise, continue testing */
2238     {
2239       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Scheduling continue_puts_and_gets now!\n");
2240       GNUNET_SCHEDULER_add_now (sched,
2241                                 &continue_puts_and_gets, NULL);
2242     }
2243 }
2244
2245 /**
2246  * This function is called whenever a connection attempt is finished between two of
2247  * the started peers (started with GNUNET_TESTING_daemons_start).  The total
2248  * number of times this function is called should equal the number returned
2249  * from the GNUNET_TESTING_connect_topology call.
2250  *
2251  * The emsg variable is NULL on success (peers connected), and non-NULL on
2252  * failure (peers failed to connect).
2253  */
2254 void
2255 topology_callback (void *cls,
2256                    const struct GNUNET_PeerIdentity *first,
2257                    const struct GNUNET_PeerIdentity *second,
2258                    uint32_t distance,
2259                    const struct GNUNET_CONFIGURATION_Handle *first_cfg,
2260                    const struct GNUNET_CONFIGURATION_Handle *second_cfg,
2261                    struct GNUNET_TESTING_Daemon *first_daemon,
2262                    struct GNUNET_TESTING_Daemon *second_daemon,
2263                    const char *emsg)
2264 {
2265   struct TopologyIteratorContext *topo_ctx;
2266   if (emsg == NULL)
2267     {
2268       total_connections++;
2269 #if VERBOSE > 1
2270       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "connected peer %s to peer %s, distance %u\n",
2271                  first_daemon->shortname,
2272                  second_daemon->shortname,
2273                  distance);
2274 #endif
2275     }
2276   else
2277     {
2278       failed_connections++;
2279 #if VERBOSE
2280       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Failed to connect peer %s to peer %s with error :\n%s\n",
2281                   first_daemon->shortname,
2282                   second_daemon->shortname, emsg);
2283 #endif
2284     }
2285
2286   GNUNET_assert(peer_connect_meter != NULL);
2287   if (GNUNET_YES == update_meter(peer_connect_meter))
2288     {
2289 #if VERBOSE
2290       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2291                   "Created %d total connections, which is our target number!  Starting next phase of testing.\n",
2292                   total_connections);
2293 #endif
2294       if (dhtlog_handle != NULL)
2295         {
2296           dhtlog_handle->update_connections (trialuid, total_connections);
2297           dhtlog_handle->insert_topology(expected_connections);
2298         }
2299
2300       GNUNET_SCHEDULER_cancel (sched, die_task);
2301       /*die_task = GNUNET_SCHEDULER_add_delayed (sched, DEFAULT_TIMEOUT,
2302                                                &end_badly, "from setup puts/gets");*/
2303       if ((dhtlog_handle != NULL) && (settle_time > 0))
2304         {
2305           topo_ctx = GNUNET_malloc(sizeof(struct TopologyIteratorContext));
2306           topo_ctx->cont = &setup_malicious_peers;
2307           topo_ctx->peers_seen = GNUNET_CONTAINER_multihashmap_create(num_peers);
2308           //topo_ctx->cont = &continue_puts_and_gets;
2309           GNUNET_SCHEDULER_add_now(sched, &capture_current_topology, topo_ctx);
2310         }
2311       else
2312         {
2313           GNUNET_SCHEDULER_add_now(sched, &setup_malicious_peers, NULL);
2314           /*GNUNET_SCHEDULER_add_delayed (sched,
2315                                         GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, settle_time),
2316                                         &continue_puts_and_gets, NULL);*/
2317         }
2318     }
2319   else if (total_connections + failed_connections == expected_connections)
2320     {
2321       GNUNET_SCHEDULER_cancel (sched, die_task);
2322       die_task = GNUNET_SCHEDULER_add_now (sched,
2323                                            &end_badly, "from topology_callback (too many failed connections)");
2324     }
2325 }
2326
2327 static void
2328 peers_started_callback (void *cls,
2329        const struct GNUNET_PeerIdentity *id,
2330        const struct GNUNET_CONFIGURATION_Handle *cfg,
2331        struct GNUNET_TESTING_Daemon *d, const char *emsg)
2332 {
2333   if (emsg != NULL)
2334     {
2335       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Failed to start daemon with error: `%s'\n",
2336                   emsg);
2337       return;
2338     }
2339   GNUNET_assert (id != NULL);
2340
2341 #if VERBOSE > 1
2342   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Started daemon %llu out of %llu\n",
2343               (num_peers - peers_left) + 1, num_peers);
2344 #endif
2345
2346   peers_left--;
2347
2348   if (GNUNET_YES == update_meter(peer_start_meter))
2349     {
2350 #if VERBOSE
2351       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2352                   "All %d daemons started, now connecting peers!\n",
2353                   num_peers);
2354 #endif
2355       GNUNET_SCHEDULER_cancel (sched, die_task);
2356
2357       expected_connections = -1;
2358       if ((pg != NULL) && (peers_left == 0))
2359         {
2360           expected_connections = GNUNET_TESTING_connect_topology (pg, connect_topology, connect_topology_option, connect_topology_option_modifier);
2361
2362           peer_connect_meter = create_meter(expected_connections, "Peer connection ", GNUNET_YES);
2363           fprintf(stderr, "Have %d expected connections\n", expected_connections);
2364         }
2365
2366       if (expected_connections == GNUNET_SYSERR)
2367         {
2368           die_task = GNUNET_SCHEDULER_add_now (sched,
2369                                                &end_badly, "from connect topology (bad return)");
2370         }
2371
2372       die_task = GNUNET_SCHEDULER_add_delayed (sched,
2373                                                GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, DEFAULT_CONNECT_TIMEOUT * expected_connections),
2374                                                &end_badly, "from connect topology (timeout)");
2375
2376       ok = 0;
2377     }
2378 }
2379
2380 static void
2381 create_topology ()
2382 {
2383   peers_left = num_peers; /* Reset counter */
2384   if (GNUNET_TESTING_create_topology (pg, topology, blacklist_topology, blacklist_transports) != GNUNET_SYSERR)
2385     {
2386 #if VERBOSE
2387       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2388                   "Topology set up, now starting peers!\n");
2389 #endif
2390       GNUNET_TESTING_daemons_continue_startup(pg);
2391     }
2392   else
2393     {
2394       GNUNET_SCHEDULER_cancel (sched, die_task);
2395       die_task = GNUNET_SCHEDULER_add_now (sched,
2396                                            &end_badly, "from create topology (bad return)");
2397     }
2398   GNUNET_free_non_null(blacklist_transports);
2399   GNUNET_SCHEDULER_cancel (sched, die_task);
2400   die_task = GNUNET_SCHEDULER_add_delayed (sched,
2401                                            GNUNET_TIME_relative_multiply(seconds_per_peer_start, num_peers),
2402                                            &end_badly, "from continue startup (timeout)");
2403 }
2404
2405 /**
2406  * Callback indicating that the hostkey was created for a peer.
2407  *
2408  * @param cls NULL
2409  * @param id the peer identity
2410  * @param d the daemon handle (pretty useless at this point, remove?)
2411  * @param emsg non-null on failure
2412  */
2413 void hostkey_callback (void *cls,
2414                        const struct GNUNET_PeerIdentity *id,
2415                        struct GNUNET_TESTING_Daemon *d,
2416                        const char *emsg)
2417 {
2418   if (emsg != NULL)
2419     {
2420       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Hostkey callback received error: %s\n", emsg);
2421     }
2422
2423 #if VERBOSE > 1
2424     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2425                 "Hostkey (%d/%d) created for peer `%s'\n",
2426                 num_peers - peers_left, num_peers, GNUNET_i2s(id));
2427 #endif
2428
2429     peers_left--;
2430     if (GNUNET_YES == update_meter(hostkey_meter))
2431       {
2432 #if VERBOSE
2433         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2434                     "All %d hostkeys created, now creating topology!\n",
2435                     num_peers);
2436 #endif
2437         GNUNET_SCHEDULER_cancel (sched, die_task);
2438         /* Set up task in case topology creation doesn't finish
2439          * within a reasonable amount of time */
2440         die_task = GNUNET_SCHEDULER_add_delayed (sched,
2441                                                  DEFAULT_TOPOLOGY_TIMEOUT,
2442                                                  &end_badly, "from create_topology");
2443         GNUNET_SCHEDULER_add_now(sched, &create_topology, NULL);
2444         ok = 0;
2445       }
2446 }
2447
2448
2449 static void
2450 run (void *cls,
2451      struct GNUNET_SCHEDULER_Handle *s,
2452      char *const *args,
2453      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
2454 {
2455   struct stat frstat;
2456   struct GNUNET_DHTLOG_TrialInfo trial_info;
2457   struct GNUNET_TESTING_Host *hosts;
2458   struct GNUNET_TESTING_Host *temphost;
2459   struct GNUNET_TESTING_Host *tempnext;
2460   char *topology_str;
2461   char *connect_topology_str;
2462   char *blacklist_topology_str;
2463   char *connect_topology_option_str;
2464   char *connect_topology_option_modifier_string;
2465   char *trialmessage;
2466   char *topology_percentage_str;
2467   float topology_percentage;
2468   char *topology_probability_str;
2469   char *hostfile;
2470   float topology_probability;
2471   unsigned long long temp_config_number;
2472   int stop_closest;
2473   int stop_found;
2474   int strict_kademlia;
2475   char *buf;
2476   char *data;
2477   char *churn_data;
2478   char *churn_filename;
2479   int count;
2480   int ret;
2481   unsigned int line_number;
2482
2483   sched = s;
2484   config = cfg;
2485   rounds_finished = 0;
2486   memset(&trial_info, 0, sizeof(struct GNUNET_DHTLOG_TrialInfo));
2487   /* Get path from configuration file */
2488   if (GNUNET_YES != GNUNET_CONFIGURATION_get_value_string(cfg, "paths", "servicehome", &test_directory))
2489     {
2490       ok = 404;
2491       return;
2492     }
2493
2494   /**
2495    * Get DHT specific testing options.
2496    */
2497   if ((GNUNET_YES == GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht_testing", "mysql_logging")) ||
2498       (GNUNET_YES == GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht_testing", "mysql_logging_extended")))
2499     {
2500       dhtlog_handle = GNUNET_DHTLOG_connect(cfg);
2501       if (dhtlog_handle == NULL)
2502         {
2503           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2504                       "Could not connect to mysql server for logging, will NOT log dht operations!");
2505           ok = 3306;
2506           return;
2507         }
2508     }
2509
2510   stop_closest = GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht", "stop_on_closest");
2511   if (stop_closest == GNUNET_SYSERR)
2512     stop_closest = GNUNET_NO;
2513
2514   stop_found = GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht", "stop_found");
2515   if (stop_found == GNUNET_SYSERR)
2516     stop_found = GNUNET_NO;
2517
2518   strict_kademlia = GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht", "strict_kademlia");
2519   if (strict_kademlia == GNUNET_SYSERR)
2520     strict_kademlia = GNUNET_NO;
2521
2522   if (GNUNET_OK !=
2523       GNUNET_CONFIGURATION_get_value_string (cfg, "dht_testing", "comment",
2524                                              &trialmessage))
2525     trialmessage = NULL;
2526
2527   churn_data = NULL;
2528   /** Check for a churn file to do churny simulation */
2529   if (GNUNET_OK ==
2530       GNUNET_CONFIGURATION_get_value_string(cfg, "dht_testing", "churn_file",
2531                                             &churn_filename))
2532     {
2533       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Reading churn data from %s\n", churn_filename);
2534       if (GNUNET_OK != GNUNET_DISK_file_test (churn_filename))
2535         {
2536           GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Error reading churn file!\n");
2537           return;
2538         }
2539       if ((0 != STAT (churn_filename, &frstat)) || (frstat.st_size == 0))
2540         {
2541           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2542                       "Could not open file specified for churn data, ending test!");
2543           ok = 1119;
2544           GNUNET_free_non_null(trialmessage);
2545           GNUNET_free(churn_filename);
2546           return;
2547         }
2548
2549       churn_data = GNUNET_malloc_large (frstat.st_size);
2550       GNUNET_assert(churn_data != NULL);
2551       if (frstat.st_size !=
2552           GNUNET_DISK_fn_read (churn_filename, churn_data, frstat.st_size))
2553         {
2554           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2555                     "Could not read file %s specified for churn, ending test!", churn_filename);
2556           GNUNET_free (churn_filename);
2557           GNUNET_free (churn_data);
2558           GNUNET_free_non_null(trialmessage);
2559           return;
2560         }
2561
2562       GNUNET_free_non_null(churn_filename);
2563
2564       buf = churn_data;
2565       count = 0;
2566       /* Read the first line */
2567       while (count < frstat.st_size)
2568         {
2569           count++;
2570           if (((churn_data[count] == '\n')) && (buf != &churn_data[count]))
2571             {
2572               churn_data[count] = '\0';
2573               if (1 != sscanf(buf, "%u", &churn_rounds))
2574                 {
2575                   GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Failed to read number of rounds from %s, ending test!\n", churn_filename);
2576                   GNUNET_free_non_null(trialmessage);
2577                   GNUNET_free(churn_filename);
2578                   ret = 4200;
2579                   return;
2580                 }
2581               GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Read %u rounds from churn file\n", churn_rounds);
2582               buf = &churn_data[count + 1];
2583               churn_array = GNUNET_malloc(sizeof(unsigned int) * churn_rounds);
2584               break; /* Done with this part */
2585             }
2586         }
2587
2588       if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_number(cfg, "dht_testing", "churns_per_round", &churns_per_round))
2589         {
2590           churns_per_round = (unsigned long long)churn_rounds;
2591         }
2592
2593       line_number = 0;
2594       while ((count < frstat.st_size) && (line_number < churn_rounds))
2595         {
2596           count++;
2597           if (((churn_data[count] == '\n')) && (buf != &churn_data[count]))
2598             {
2599               churn_data[count] = '\0';
2600
2601               ret = sscanf(buf, "%u", &churn_array[line_number]);
2602               if (1 == ret)
2603                 {
2604                   GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Read %u peers in round %u\n", churn_array[line_number], line_number);
2605                   line_number++;
2606                 }
2607               else
2608                 {
2609                   GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Error reading line `%s' in hostfile\n", buf);
2610                   buf = &churn_data[count + 1];
2611                   continue;
2612                 }
2613               buf = &churn_data[count + 1];
2614             }
2615           else if (churn_data[count] == '\n') /* Blank line */
2616             buf = &churn_data[count + 1];
2617         }
2618     }
2619   GNUNET_free_non_null(churn_data);
2620
2621   /** Check for a hostfile containing user@host:port triples */
2622   if (GNUNET_OK !=
2623       GNUNET_CONFIGURATION_get_value_string (cfg, "testing", "hostfile",
2624                                              &hostfile))
2625     hostfile = NULL;
2626
2627   hosts = NULL;
2628   temphost = NULL;
2629   if (hostfile != NULL)
2630     {
2631       if (GNUNET_OK != GNUNET_DISK_file_test (hostfile))
2632           GNUNET_DISK_fn_write (hostfile, NULL, 0, GNUNET_DISK_PERM_USER_READ
2633             | GNUNET_DISK_PERM_USER_WRITE);
2634       if ((0 != STAT (hostfile, &frstat)) || (frstat.st_size == 0))
2635         {
2636           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2637                       "Could not open file specified for host list, ending test!");
2638           ok = 1119;
2639           GNUNET_free_non_null(trialmessage);
2640           GNUNET_free(hostfile);
2641           return;
2642         }
2643
2644     data = GNUNET_malloc_large (frstat.st_size);
2645     GNUNET_assert(data != NULL);
2646     if (frstat.st_size !=
2647         GNUNET_DISK_fn_read (hostfile, data, frstat.st_size))
2648       {
2649         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2650                   "Could not read file %s specified for host list, ending test!", hostfile);
2651         GNUNET_free (hostfile);
2652         GNUNET_free (data);
2653         GNUNET_free_non_null(trialmessage);
2654         return;
2655       }
2656
2657     GNUNET_free_non_null(hostfile);
2658
2659     buf = data;
2660     count = 0;
2661     while (count < frstat.st_size)
2662       {
2663         count++;
2664         /* if (((data[count] == '\n') || (data[count] == '\0')) && (buf != &data[count]))*/
2665         if (((data[count] == '\n')) && (buf != &data[count]))
2666           {
2667             data[count] = '\0';
2668             temphost = GNUNET_malloc(sizeof(struct GNUNET_TESTING_Host));
2669             ret = sscanf(buf, "%a[a-zA-Z0-9]@%a[a-zA-Z0-9.]:%hd", &temphost->username, &temphost->hostname, &temphost->port);
2670             if (3 == ret)
2671               {
2672                 GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Successfully read host %s, port %d and user %s from file\n", temphost->hostname, temphost->port, temphost->username);
2673               }
2674             else
2675               {
2676                 GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Error reading line `%s' in hostfile\n", buf);
2677                 GNUNET_free(temphost);
2678                 buf = &data[count + 1];
2679                 continue;
2680               }
2681             /* temphost->hostname = buf; */
2682             temphost->next = hosts;
2683             hosts = temphost;
2684             buf = &data[count + 1];
2685           }
2686         else if ((data[count] == '\n') || (data[count] == '\0'))
2687           buf = &data[count + 1];
2688       }
2689     }
2690
2691   if (GNUNET_OK !=
2692           GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "malicious_getters",
2693                                                  &malicious_getters))
2694     malicious_getters = 0;
2695
2696   if (GNUNET_OK !=
2697           GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "malicious_putters",
2698                                                  &malicious_putters))
2699     malicious_putters = 0;
2700
2701   if (GNUNET_OK !=
2702             GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "malicious_droppers",
2703                                                    &malicious_droppers))
2704     malicious_droppers = 0;
2705
2706   if (GNUNET_OK !=
2707       GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "settle_time",
2708                                                  &settle_time))
2709     settle_time = 0;
2710
2711   if (GNUNET_SYSERR ==
2712       GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "num_puts",
2713                                              &num_puts))
2714     num_puts = num_peers;
2715
2716   if (GNUNET_SYSERR ==
2717       GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "num_gets",
2718                                              &num_gets))
2719     num_gets = num_peers;
2720
2721   if (GNUNET_OK ==
2722         GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "find_peer_delay",
2723                                                &temp_config_number))
2724     find_peer_delay = GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, temp_config_number);
2725   else
2726     find_peer_delay = DEFAULT_FIND_PEER_DELAY;
2727
2728   if (GNUNET_OK ==
2729         GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "concurrent_find_peers",
2730                                                &temp_config_number))
2731     max_outstanding_find_peers = temp_config_number;
2732   else
2733     max_outstanding_find_peers = DEFAULT_MAX_OUTSTANDING_FIND_PEERS;
2734
2735   if (GNUNET_OK ==
2736         GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "get_timeout",
2737                                                &temp_config_number))
2738     get_timeout = GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, temp_config_number);
2739   else
2740     get_timeout = DEFAULT_GET_TIMEOUT;
2741
2742   if (GNUNET_OK ==
2743         GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "concurrent_puts",
2744                                                &temp_config_number))
2745     max_outstanding_puts = temp_config_number;
2746   else
2747     max_outstanding_puts = DEFAULT_MAX_OUTSTANDING_PUTS;
2748
2749   if (GNUNET_OK ==
2750         GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "concurrent_gets",
2751                                                &temp_config_number))
2752     max_outstanding_gets = temp_config_number;
2753   else
2754     max_outstanding_gets = DEFAULT_MAX_OUTSTANDING_GETS;
2755
2756   if (GNUNET_OK ==
2757         GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "timeout",
2758                                                &temp_config_number))
2759     all_get_timeout = GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, temp_config_number);
2760   else
2761     all_get_timeout.value = get_timeout.value * num_gets;
2762
2763   if (GNUNET_OK ==
2764         GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "get_delay",
2765                                                &temp_config_number))
2766     get_delay = GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, temp_config_number);
2767   else
2768     get_delay = DEFAULT_GET_DELAY;
2769
2770   if (GNUNET_OK ==
2771         GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "put_delay",
2772                                                &temp_config_number))
2773     put_delay = GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, temp_config_number);
2774   else
2775     put_delay = DEFAULT_PUT_DELAY;
2776
2777   if (GNUNET_OK ==
2778       GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "peer_start_timeout",
2779                                              &temp_config_number))
2780     seconds_per_peer_start = GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, temp_config_number);
2781   else
2782     seconds_per_peer_start = DEFAULT_SECONDS_PER_PEER_START;
2783
2784   if (GNUNET_OK ==
2785         GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "data_size",
2786                                                &temp_config_number))
2787     test_data_size = temp_config_number;
2788   else
2789     test_data_size = DEFAULT_TEST_DATA_SIZE;
2790
2791   /**
2792    * Get testing related options.
2793    */
2794   if (GNUNET_YES == GNUNET_CONFIGURATION_get_value_yesno(cfg, "DHT_TESTING", "REPLICATE_SAME"))
2795     {
2796       replicate_same = GNUNET_YES;
2797     }
2798
2799   if (GNUNET_NO == GNUNET_CONFIGURATION_get_value_number (cfg, "DHT_TESTING",
2800                                                           "MALICIOUS_GET_FREQUENCY",
2801                                                           &malicious_get_frequency))
2802     malicious_get_frequency = DEFAULT_MALICIOUS_GET_FREQUENCY;
2803
2804
2805   if (GNUNET_NO == GNUNET_CONFIGURATION_get_value_number (cfg, "DHT_TESTING",
2806                                                           "MALICIOUS_PUT_FREQUENCY",
2807                                                           &malicious_put_frequency))
2808     malicious_put_frequency = DEFAULT_MALICIOUS_PUT_FREQUENCY;
2809
2810
2811   /* The normal behavior of the DHT is to do find peer requests
2812    * on its own.  Only if this is explicitly turned off should
2813    * the testing driver issue find peer requests (even though
2814    * this is likely the default when testing).
2815    */
2816   if (GNUNET_NO ==
2817         GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht",
2818                                              "do_find_peer"))
2819     {
2820       do_find_peer = GNUNET_YES;
2821     }
2822
2823   if (GNUNET_YES ==
2824         GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht",
2825                                              "republish"))
2826     {
2827       in_dht_replication = GNUNET_YES;
2828     }
2829
2830   if (GNUNET_YES != GNUNET_CONFIGURATION_get_value_number (cfg, "DHT_TESTING",
2831                                                           "TRIAL_TO_RUN",
2832                                                           &trial_to_run))
2833     {
2834       trial_to_run = 0;
2835     }
2836
2837   if (GNUNET_YES == GNUNET_CONFIGURATION_get_value_number (cfg, "DHT_TESTING",
2838                                                           "FIND_PEER_DELAY",
2839                                                           &temp_config_number))
2840     {
2841       find_peer_delay = GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, temp_config_number);
2842     }
2843   else
2844     find_peer_delay = DEFAULT_FIND_PEER_DELAY;
2845
2846   if (GNUNET_YES != GNUNET_CONFIGURATION_get_value_number(cfg, "DHT_TESTING", "ROUND_DELAY", &round_delay))
2847     round_delay = 0;
2848
2849   if (GNUNET_NO == GNUNET_CONFIGURATION_get_value_number (cfg, "DHT_TESTING",
2850                                                             "OUTSTANDING_FIND_PEERS",
2851                                                             &max_outstanding_find_peers))
2852       max_outstanding_find_peers = DEFAULT_MAX_OUTSTANDING_FIND_PEERS;
2853
2854   if (GNUNET_YES == GNUNET_CONFIGURATION_get_value_yesno(cfg, "dht", "strict_kademlia"))
2855     max_outstanding_find_peers = max_outstanding_find_peers * 1;
2856
2857   find_peer_offset = GNUNET_TIME_relative_divide (find_peer_delay, max_outstanding_find_peers);
2858
2859   if (GNUNET_SYSERR ==
2860         GNUNET_CONFIGURATION_get_value_number (cfg, "dht_testing", "num_rounds",
2861                                                &total_rounds))
2862     {
2863       total_rounds = 1;
2864     }
2865
2866   topology_str = NULL;
2867   if ((GNUNET_YES ==
2868       GNUNET_CONFIGURATION_get_value_string(cfg, "testing", "topology",
2869                                             &topology_str)) && (GNUNET_NO == GNUNET_TESTING_topology_get(&topology, topology_str)))
2870     {
2871       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2872                   "Invalid topology `%s' given for section %s option %s\n", topology_str, "TESTING", "TOPOLOGY");
2873       topology = GNUNET_TESTING_TOPOLOGY_CLIQUE; /* Defaults to NONE, so set better default here */
2874     }
2875
2876   if (GNUNET_OK !=
2877       GNUNET_CONFIGURATION_get_value_string (cfg, "testing", "percentage",
2878                                                  &topology_percentage_str))
2879     topology_percentage = 0.5;
2880   else
2881     {
2882       topology_percentage = atof (topology_percentage_str);
2883       GNUNET_free(topology_percentage_str);
2884     }
2885
2886   if (GNUNET_OK !=
2887       GNUNET_CONFIGURATION_get_value_string (cfg, "testing", "probability",
2888                                                  &topology_probability_str))
2889     topology_probability = 0.5;
2890   else
2891     {
2892      topology_probability = atof (topology_probability_str);
2893      GNUNET_free(topology_probability_str);
2894     }
2895
2896   if ((GNUNET_YES ==
2897       GNUNET_CONFIGURATION_get_value_string(cfg, "testing", "connect_topology",
2898                                             &connect_topology_str)) && (GNUNET_NO == GNUNET_TESTING_topology_get(&connect_topology, connect_topology_str)))
2899     {
2900       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2901                   "Invalid connect topology `%s' given for section %s option %s\n", connect_topology_str, "TESTING", "CONNECT_TOPOLOGY");
2902     }
2903   GNUNET_free_non_null(connect_topology_str);
2904
2905   if ((GNUNET_YES ==
2906       GNUNET_CONFIGURATION_get_value_string(cfg, "testing", "connect_topology_option",
2907                                             &connect_topology_option_str)) && (GNUNET_NO == GNUNET_TESTING_topology_option_get(&connect_topology_option, connect_topology_option_str)))
2908     {
2909       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2910                   "Invalid connect topology option `%s' given for section %s option %s\n", connect_topology_option_str, "TESTING", "CONNECT_TOPOLOGY_OPTION");
2911       connect_topology_option = GNUNET_TESTING_TOPOLOGY_OPTION_ALL; /* Defaults to NONE, set to ALL */
2912     }
2913   GNUNET_free_non_null(connect_topology_option_str);
2914
2915   if (GNUNET_YES ==
2916         GNUNET_CONFIGURATION_get_value_string (cfg, "testing", "connect_topology_option_modifier",
2917                                                &connect_topology_option_modifier_string))
2918     {
2919       if (sscanf(connect_topology_option_modifier_string, "%lf", &connect_topology_option_modifier) != 1)
2920       {
2921         GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2922         _("Invalid value `%s' for option `%s' in section `%s': expected float\n"),
2923         connect_topology_option_modifier_string,
2924         "connect_topology_option_modifier",
2925         "TESTING");
2926       }
2927       GNUNET_free (connect_topology_option_modifier_string);
2928     }
2929
2930   if (GNUNET_YES != GNUNET_CONFIGURATION_get_value_string (cfg, "testing", "blacklist_transports",
2931                                          &blacklist_transports))
2932     blacklist_transports = NULL;
2933
2934   if ((GNUNET_YES ==
2935       GNUNET_CONFIGURATION_get_value_string(cfg, "testing", "blacklist_topology",
2936                                             &blacklist_topology_str)) &&
2937       (GNUNET_NO == GNUNET_TESTING_topology_get(&blacklist_topology, blacklist_topology_str)))
2938     {
2939       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2940                   "Invalid topology `%s' given for section %s option %s\n", topology_str, "TESTING", "BLACKLIST_TOPOLOGY");
2941     }
2942   GNUNET_free_non_null(topology_str);
2943   GNUNET_free_non_null(blacklist_topology_str);
2944
2945   /* Get number of peers to start from configuration */
2946   if (GNUNET_SYSERR ==
2947       GNUNET_CONFIGURATION_get_value_number (cfg, "testing", "num_peers",
2948                                              &num_peers))
2949     {
2950       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2951                   "Number of peers must be specified in section %s option %s\n", topology_str, "TESTING", "NUM_PEERS");
2952     }
2953   GNUNET_assert(num_peers > 0 && num_peers < (unsigned long long)-1);
2954   /* Set peers_left so we know when all peers started */
2955   peers_left = num_peers;
2956
2957
2958   /* Set up a task to end testing if peer start fails */
2959   die_task = GNUNET_SCHEDULER_add_delayed (sched,
2960                                            GNUNET_TIME_relative_multiply(seconds_per_peer_start, num_peers),
2961                                            &end_badly, "didn't generate all hostkeys within allowed startup time!");
2962
2963   if (dhtlog_handle == NULL)
2964     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2965                 "dhtlog_handle is NULL!");
2966
2967   trial_info.other_identifier = (unsigned int)trial_to_run;
2968   trial_info.num_nodes = peers_left;
2969   trial_info.topology = topology;
2970   trial_info.blacklist_topology = blacklist_topology;
2971   trial_info.connect_topology = connect_topology;
2972   trial_info.connect_topology_option = connect_topology_option;
2973   trial_info.connect_topology_option_modifier = connect_topology_option_modifier;
2974   trial_info.topology_percentage = topology_percentage;
2975   trial_info.topology_probability = topology_probability;
2976   trial_info.puts = num_puts;
2977   trial_info.gets = num_gets;
2978   trial_info.concurrent = max_outstanding_gets;
2979   trial_info.settle_time = settle_time;
2980   trial_info.num_rounds = 1;
2981   trial_info.malicious_getters = malicious_getters;
2982   trial_info.malicious_putters = malicious_putters;
2983   trial_info.malicious_droppers = malicious_droppers;
2984   trial_info.malicious_get_frequency = malicious_get_frequency;
2985   trial_info.malicious_put_frequency = malicious_put_frequency;
2986   trial_info.stop_closest = stop_closest;
2987   trial_info.stop_found = stop_found;
2988   trial_info.strict_kademlia = strict_kademlia;
2989
2990   if (trialmessage != NULL)
2991     trial_info.message = trialmessage;
2992   else
2993     trial_info.message = "";
2994
2995   if (dhtlog_handle != NULL)
2996     dhtlog_handle->insert_trial(&trial_info);
2997
2998   GNUNET_free_non_null(trialmessage);
2999
3000   hostkey_meter = create_meter(peers_left, "Hostkeys created ", GNUNET_YES);
3001   peer_start_meter = create_meter(peers_left, "Peers started ", GNUNET_YES);
3002
3003   put_meter = create_meter(num_puts, "Puts completed ", GNUNET_YES);
3004   get_meter = create_meter(num_gets, "Gets completed ", GNUNET_YES);
3005   pg = GNUNET_TESTING_daemons_start (sched, cfg,
3006                                      peers_left,
3007                                      GNUNET_TIME_relative_multiply(seconds_per_peer_start, num_peers),
3008                                      &hostkey_callback, NULL,
3009                                      &peers_started_callback, NULL,
3010                                      &topology_callback, NULL,
3011                                      hosts);
3012   temphost = hosts;
3013   while (temphost != NULL)
3014     {
3015       tempnext = temphost->next;
3016       GNUNET_free (temphost->username);
3017       GNUNET_free (temphost->hostname);
3018       GNUNET_free (temphost);
3019       temphost = tempnext;
3020     }
3021 }
3022
3023
3024 int
3025 main (int argc, char *argv[])
3026 {
3027   int ret;
3028   struct GNUNET_GETOPT_CommandLineOption options[] = {
3029       GNUNET_GETOPT_OPTION_END
3030     };
3031
3032   ret = GNUNET_PROGRAM_run (argc,
3033                             argv, "gnunet-dht-driver", "nohelp",
3034                             options, &run, &ok);
3035
3036   if (ret != GNUNET_OK)
3037     {
3038       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "`gnunet-dht-driver': Failed with error code %d\n", ret);
3039     }
3040
3041   /**
3042    * Need to remove base directory, subdirectories taken care
3043    * of by the testing framework.
3044    */
3045   if (GNUNET_DISK_directory_remove (test_directory) != GNUNET_OK)
3046     {
3047       GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Failed to remove testing directory %s\n", test_directory);
3048     }
3049   return ret;
3050 }
3051
3052 /* end of gnunet-dht-driver.c */