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