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