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