-fixes
[oweals/gnunet.git] / src / testing / testing_group.c
1 /*
2  This file is part of GNUnet
3  (C) 2008, 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 /**
22  * @file testing/testing_group.c
23  * @brief convenience API for writing testcases for GNUnet
24  * @author Nathan Evans
25  * @author Christian Grothoff
26  */
27 #include "platform.h"
28 #include "gnunet_constants.h"
29 #include "gnunet_arm_service.h"
30 #include "gnunet_testing_lib.h"
31 #include "gnunet_core_service.h"
32
33 #define VERBOSE_TESTING GNUNET_NO
34
35 #define VERBOSE_TOPOLOGY GNUNET_NO
36
37 #define DEBUG_CHURN GNUNET_EXTRA_LOGGING
38
39 #define USE_START_HELPER GNUNET_YES
40
41 #define OLD 1
42
43 /* Before connecting peers, send all of the HELLOs */
44 #define USE_SEND_HELLOS GNUNET_NO
45
46 #define TOPOLOGY_HACK GNUNET_YES
47
48
49 /**
50  * Lowest port used for GNUnet testing.  Should be high enough to not
51  * conflict with other applications running on the hosts but be low
52  * enough to not conflict with client-ports (typically starting around
53  * 32k).
54  */
55 #define LOW_PORT 12000
56
57 /**
58  * Highest port used for GNUnet testing.  Should be low enough to not
59  * conflict with the port range for "local" ports (client apps; see
60  * /proc/sys/net/ipv4/ip_local_port_range on Linux for example).
61  */
62 #define HIGH_PORT 56000
63
64 /* Maximum time to delay connect attempt */
65 #define MAX_CONNECT_DELAY 300
66
67 /**
68  * Which list of peers do we need to modify?
69  */
70 enum PeerLists
71 {
72   /** Modify allowed peers */
73   ALLOWED,
74
75   /** Modify connect peers */
76   CONNECT,
77
78   /** Modify blacklist peers */
79   BLACKLIST,
80
81   /** Modify workingset peers */
82   WORKING_SET
83 };
84
85 /**
86  * Prototype of a function called whenever two peers would be connected
87  * in a certain topology.
88  */
89 typedef unsigned int (*GNUNET_TESTING_ConnectionProcessor) (struct
90                                                             GNUNET_TESTING_PeerGroup
91                                                             * pg,
92                                                             unsigned int first,
93                                                             unsigned int second,
94                                                             enum PeerLists list,
95                                                             unsigned int check);
96
97 /**
98  * Context for handling churning a peer group
99  */
100 struct ChurnContext
101 {
102   /**
103    * The peergroup we are dealing with.
104    */
105   struct GNUNET_TESTING_PeerGroup *pg;
106
107   /**
108    * Name of the service to churn on/off, NULL
109    * to churn entire peer.
110    */
111   char *service;
112
113   /**
114    * Callback used to notify of churning finished
115    */
116   GNUNET_TESTING_NotifyCompletion cb;
117
118   /**
119    * Closure for callback
120    */
121   void *cb_cls;
122
123   /**
124    * Number of peers that still need to be started
125    */
126   unsigned int num_to_start;
127
128   /**
129    * Number of peers that still need to be stopped
130    */
131   unsigned int num_to_stop;
132
133   /**
134    * Number of peers that failed to start
135    */
136   unsigned int num_failed_start;
137
138   /**
139    * Number of peers that failed to stop
140    */
141   unsigned int num_failed_stop;
142 };
143
144 struct RestartContext
145 {
146   /**
147    * The group of peers being restarted
148    */
149   struct GNUNET_TESTING_PeerGroup *peer_group;
150
151   /**
152    * How many peers have been restarted thus far
153    */
154   unsigned int peers_restarted;
155
156   /**
157    * How many peers got an error when restarting
158    */
159   unsigned int peers_restart_failed;
160
161   /**
162    * The function to call once all peers have been restarted
163    */
164   GNUNET_TESTING_NotifyCompletion callback;
165
166   /**
167    * Closure for callback function
168    */
169   void *callback_cls;
170
171 };
172
173 struct SendHelloContext
174 {
175   /**
176    * Global handle to the peer group.
177    */
178   struct GNUNET_TESTING_PeerGroup *pg;
179
180   /**
181    * The data about this specific peer.
182    */
183   struct PeerData *peer;
184
185   /**
186    * The next HELLO that needs sent to this peer.
187    */
188   struct PeerConnection *peer_pos;
189
190   /**
191    * Are we connected to CORE yet?
192    */
193   unsigned int core_ready;
194
195   /**
196    * How many attempts should we make for failed connections?
197    */
198   unsigned int connect_attempts;
199
200   /**
201    * Task for scheduling core connect requests to be sent.
202    */
203   GNUNET_SCHEDULER_TaskIdentifier core_connect_task;
204 };
205
206 struct ShutdownContext
207 {
208   struct GNUNET_TESTING_PeerGroup *pg;
209   /**
210    * Total peers to wait for
211    */
212   unsigned int total_peers;
213
214   /**
215    * Number of peers successfully shut down
216    */
217   unsigned int peers_down;
218
219   /**
220    * Number of peers failed to shut down
221    */
222   unsigned int peers_failed;
223
224   /**
225    * Number of peers we have started shutting
226    * down.  If too many, wait on them.
227    */
228   unsigned int outstanding;
229
230   /**
231    * Timeout for shutdown.
232    */
233   struct GNUNET_TIME_Relative timeout;
234
235   /**
236    * Callback to call when all peers either
237    * shutdown or failed to shutdown
238    */
239   GNUNET_TESTING_NotifyCompletion cb;
240
241   /**
242    * Closure for cb
243    */
244   void *cb_cls;
245
246   /**
247    * Should we delete all of the files from the peers?
248    */
249   int delete_files;
250 };
251
252 /**
253  * Individual shutdown context for a particular peer.
254  */
255 struct PeerShutdownContext
256 {
257   /**
258    * Pointer to the high level shutdown context.
259    */
260   struct ShutdownContext *shutdown_ctx;
261
262   /**
263    * The daemon handle for the peer to shut down.
264    */
265   struct GNUNET_TESTING_Daemon *daemon;
266 };
267
268 /**
269  * Individual shutdown context for a particular peer.
270  */
271 struct PeerRestartContext
272 {
273   /**
274    * Pointer to the high level restart context.
275    */
276   struct ChurnRestartContext *churn_restart_ctx;
277
278   /**
279    * The daemon handle for the peer to shut down.
280    */
281   struct GNUNET_TESTING_Daemon *daemon;
282 };
283
284 struct ServiceStartContext
285 {
286   struct GNUNET_TESTING_PeerGroup *pg;
287   unsigned int remaining;
288   GNUNET_TESTING_NotifyCompletion cb;
289   unsigned int outstanding;
290   char *service;
291   struct GNUNET_TIME_Relative timeout;
292   void *cb_cls;
293 };
294
295 /**
296  * Individual shutdown context for a particular peer.
297  */
298 struct PeerServiceStartContext
299 {
300   /**
301    * Pointer to the high level start context.
302    */
303   struct ServiceStartContext *start_ctx;
304
305   /**
306    * The daemon handle for the peer to start the service on.
307    */
308   struct GNUNET_TESTING_Daemon *daemon;
309 };
310
311 struct CreateTopologyContext
312 {
313
314   /**
315    * Function to call with number of connections
316    */
317   GNUNET_TESTING_NotifyConnections cont;
318
319   /**
320    * Closure for connection notification
321    */
322   void *cls;
323 };
324
325 enum States
326 {
327   /** Waiting to read number of peers */
328   NUM_PEERS,
329
330   /** Should find next peer index */
331   PEER_INDEX,
332
333   /** Should find colon */
334   COLON,
335
336   /** Should read other peer index, space, or endline */
337   OTHER_PEER_INDEX
338 };
339
340 #if OLD
341 struct PeerConnection
342 {
343   /**
344    * Doubly Linked list
345    */
346   struct PeerConnection *prev;
347
348   /*
349    * Doubly Linked list
350    */
351   struct PeerConnection *next;
352
353   /*
354    * Index of daemon in pg->peers
355    */
356   uint32_t index;
357
358 };
359 #endif
360
361 struct InternalStartContext
362 {
363   /**
364    * Pointer to peerdata
365    */
366   struct PeerData *peer;
367
368   /**
369    * Timeout for peer startup
370    */
371   struct GNUNET_TIME_Relative timeout;
372
373   /**
374    * Client callback for hostkey notification
375    */
376   GNUNET_TESTING_NotifyHostkeyCreated hostkey_callback;
377
378   /**
379    * Closure for hostkey_callback
380    */
381   void *hostkey_cls;
382
383   /**
384    * Client callback for peer start notification
385    */
386   GNUNET_TESTING_NotifyDaemonRunning start_cb;
387
388   /**
389    * Closure for cb
390    */
391   void *start_cb_cls;
392
393   /**
394    * Hostname, where to start the peer
395    */
396   const char *hostname;
397
398   /**
399    * Username to use when connecting to the
400    * host via ssh.
401    */
402   const char *username;
403
404   /**
405    * Pointer to starting memory location of a hostkey
406    */
407   const char *hostkey;
408
409   /**
410    * Port to use for ssh.
411    */
412   uint16_t sshport;
413
414 };
415
416 struct ChurnRestartContext
417 {
418   /**
419    * PeerGroup that we are working with.
420    */
421   struct GNUNET_TESTING_PeerGroup *pg;
422
423   /**
424    * Number of restarts currently in flight.
425    */
426   unsigned int outstanding;
427
428   /**
429    * Handle to the underlying churn context.
430    */
431   struct ChurnContext *churn_ctx;
432
433   /**
434    * How long to allow the operation to take.
435    */
436   struct GNUNET_TIME_Relative timeout;
437 };
438
439 struct OutstandingSSH
440 {
441   struct OutstandingSSH *next;
442
443   struct OutstandingSSH *prev;
444
445   /**
446    * Number of current ssh connections.
447    */
448   uint32_t outstanding;
449
450   /**
451    * The hostname of this peer.
452    */
453   const char *hostname;
454 };
455
456 /**
457  * Data we keep per peer.
458  */
459 struct PeerData
460 {
461   /**
462    * (Initial) configuration of the host.
463    * (initial because clients could change
464    *  it and we would not know about those
465    *  updates).
466    */
467   struct GNUNET_CONFIGURATION_Handle *cfg;
468
469   /**
470    * Handle for controlling the daemon.
471    */
472   struct GNUNET_TESTING_Daemon *daemon;
473
474   /**
475    * The peergroup this peer belongs to.
476    */
477   struct GNUNET_TESTING_PeerGroup *pg;
478
479 #if OLD
480   /**
481    * Linked list of allowed peer connections.
482    */
483   struct PeerConnection *allowed_peers_head;
484
485   /**
486    * Linked list of allowed peer connections.
487    */
488   struct PeerConnection *allowed_peers_tail;
489
490   /**
491    * Linked list of blacklisted peer connections.
492    */
493   struct PeerConnection *blacklisted_peers_head;
494
495   /**
496    * Linked list of blacklisted peer connections.
497    */
498   struct PeerConnection *blacklisted_peers_tail;
499
500   /**
501    * Linked list of connect peer connections.
502    */
503   struct PeerConnection *connect_peers_head;
504
505   /**
506    * Linked list of connect peer connections.
507    */
508   struct PeerConnection *connect_peers_tail;
509
510   /**
511    * Linked list of connect peer connections.
512    */
513   struct PeerConnection *connect_peers_working_set_head;
514
515   /**
516    * Linked list of connect peer connections.
517    */
518   struct PeerConnection *connect_peers_working_set_tail;
519
520 #else
521   /**
522    * Hash map of allowed peer connections (F2F created topology)
523    */
524   struct GNUNET_CONTAINER_MultiHashMap *allowed_peers;
525
526   /**
527    * Hash map of blacklisted peers
528    */
529   struct GNUNET_CONTAINER_MultiHashMap *blacklisted_peers;
530
531   /**
532    * Hash map of peer connections
533    */
534   struct GNUNET_CONTAINER_MultiHashMap *connect_peers;
535
536   /**
537    * Temporary hash map of peer connections
538    */
539   struct GNUNET_CONTAINER_MultiHashMap *connect_peers_working_set;
540 #endif
541
542   /**
543    * Temporary variable for topology creation, should be reset before
544    * creating any topology so the count is valid once finished.
545    */
546   int num_connections;
547
548   /**
549    * Context to keep track of peers being started, to
550    * stagger hostkey generation and peer startup.
551    */
552   struct InternalStartContext internal_context;
553
554   /**
555    * Task ID for the queued internal_continue_startup task
556    */
557   GNUNET_SCHEDULER_TaskIdentifier startup_task;
558
559 };
560
561 /**
562  * Linked list of per-host data.
563  */
564 struct HostData
565 {
566   /**
567    * Name of the host.
568    */
569   char *hostname;
570
571   /**
572    * SSH username to use when connecting to this host.
573    */
574   char *username;
575
576   /**
577    * SSH port to use when connecting to this host.
578    */
579   uint16_t sshport;
580
581   /**
582    * Lowest port that we have not yet used
583    * for GNUnet.
584    */
585   uint16_t minport;
586 };
587
588 struct TopologyIterateContext
589 {
590   /**
591    * The peergroup we are working with.
592    */
593   struct GNUNET_TESTING_PeerGroup *pg;
594
595   /**
596    * Callback for notifying of two connected peers.
597    */
598   GNUNET_TESTING_NotifyTopology topology_cb;
599
600   /**
601    * Closure for topology_cb
602    */
603   void *cls;
604
605   /**
606    * Number of peers currently connected to.
607    */
608   unsigned int connected;
609
610   /**
611    * Number of peers we have finished iterating.
612    */
613   unsigned int completed;
614
615   /**
616    * Number of peers total.
617    */
618   unsigned int total;
619 };
620
621 struct StatsIterateContext
622 {
623   /**
624    * The peergroup that we are dealing with.
625    */
626   struct GNUNET_TESTING_PeerGroup *pg;
627
628   /**
629    * Continuation to call once all stats information has been retrieved.
630    */
631   GNUNET_STATISTICS_Callback cont;
632
633   /**
634    * Proc function to call on each value received.
635    */
636   GNUNET_TESTING_STATISTICS_Iterator proc;
637
638   /**
639    * Closure for topology_cb
640    */
641   void *cls;
642
643   /**
644    * Number of peers currently connected to.
645    */
646   unsigned int connected;
647
648   /**
649    * Number of peers we have finished iterating.
650    */
651   unsigned int completed;
652
653   /**
654    * Number of peers total.
655    */
656   unsigned int total;
657 };
658
659 struct CoreContext
660 {
661   void *iter_context;
662   struct GNUNET_TESTING_Daemon *daemon;
663 };
664
665 struct StatsCoreContext
666 {
667   void *iter_context;
668   struct GNUNET_TESTING_Daemon *daemon;
669   /**
670    * Handle to the statistics service.
671    */
672   struct GNUNET_STATISTICS_Handle *stats_handle;
673
674   /**
675    * Handle for getting statistics.
676    */
677   struct GNUNET_STATISTICS_GetHandle *stats_get_handle;
678 };
679
680 struct ConnectTopologyContext
681 {
682   /**
683    * How many connections are left to create.
684    */
685   unsigned int remaining_connections;
686
687   /**
688    * Handle to group of peers.
689    */
690   struct GNUNET_TESTING_PeerGroup *pg;
691
692   /**
693    * How long to try this connection before timing out.
694    */
695   struct GNUNET_TIME_Relative connect_timeout;
696
697   /**
698    * How many times to retry connecting the two peers.
699    */
700   unsigned int connect_attempts;
701
702   /**
703    * Temp value set for each iteration.
704    */
705   //struct PeerData *first;
706
707   /**
708    * Notification that all peers are connected.
709    */
710   GNUNET_TESTING_NotifyCompletion notify_connections_done;
711
712   /**
713    * Closure for notify.
714    */
715   void *notify_cls;
716 };
717
718 struct ConnectContext;
719
720 /**
721  * Handle to a group of GNUnet peers.
722  */
723 struct GNUNET_TESTING_PeerGroup
724 {
725   /**
726    * Configuration template.
727    */
728   const struct GNUNET_CONFIGURATION_Handle *cfg;
729
730   struct ConnectContext *cc_head;
731
732   struct ConnectContext *cc_tail;
733
734   /**
735    * Function to call on each started daemon.
736    */
737   //GNUNET_TESTING_NotifyDaemonRunning cb;
738
739   /**
740    * Closure for cb.
741    */
742   //void *cb_cls;
743
744   /*
745    * Function to call on each topology connection created
746    */
747   GNUNET_TESTING_NotifyConnection notify_connection;
748
749   /*
750    * Callback for notify_connection
751    */
752   void *notify_connection_cls;
753
754   /**
755    * Array of information about hosts.
756    */
757   struct HostData *hosts;
758
759   /**
760    * Number of hosts (size of HostData)
761    */
762   unsigned int num_hosts;
763
764   /**
765    * Array of "total" peers.
766    */
767   struct PeerData *peers;
768
769   /**
770    * Number of peers in this group.
771    */
772   unsigned int total;
773
774   /**
775    * At what time should we fail the peer startup process?
776    */
777   struct GNUNET_TIME_Absolute max_timeout;
778
779   /**
780    * How many peers are being started right now?
781    */
782   unsigned int starting;
783
784   /**
785    * How many peers have already been started?
786    */
787   unsigned int started;
788
789   /**
790    * Number of possible connections to peers
791    * at a time.
792    */
793   unsigned int max_outstanding_connections;
794
795   /**
796    * Number of ssh connections to peers (max).
797    */
798   unsigned int max_concurrent_ssh;
799
800   /**
801    * Number of connects we are waiting on, allows us to rate limit
802    * connect attempts.
803    */
804   unsigned int outstanding_connects;
805
806   /**
807    * Number of HELLOs we have yet to send.
808    */
809   unsigned int remaining_hellos;
810
811   /**
812    * How many connects have already been scheduled?
813    */
814   unsigned int total_connects_scheduled;
815
816   /**
817    * Hostkeys loaded from a file.
818    */
819   char *hostkey_data;
820
821   /**
822    * Head of DLL to keep track of the number of outstanding
823    * ssh connections per peer.
824    */
825   struct OutstandingSSH *ssh_head;
826
827   /**
828    * Tail of DLL to keep track of the number of outstanding
829    * ssh connections per peer.
830    */
831   struct OutstandingSSH *ssh_tail;
832
833   /**
834    * Stop scheduling peers connecting.
835    */
836   unsigned int stop_connects;
837
838   /**
839    * Connection context for peer group.
840    */
841   struct ConnectTopologyContext ct_ctx;
842 };
843
844 struct UpdateContext
845 {
846   /**
847    * The altered configuration.
848    */
849   struct GNUNET_CONFIGURATION_Handle *ret;
850
851   /**
852    * The original configuration to alter.
853    */
854   const struct GNUNET_CONFIGURATION_Handle *orig;
855
856   /**
857    * The hostname that this peer will run on.
858    */
859   const char *hostname;
860
861   /**
862    * The next possible port to assign.
863    */
864   unsigned int nport;
865
866   /**
867    * Unique number for unix domain sockets.
868    */
869   unsigned int upnum;
870
871   /**
872    * Unique number for this peer/host to offset
873    * things that are grouped by host.
874    */
875   unsigned int fdnum;
876 };
877
878 struct ConnectContext
879 {
880
881   struct ConnectContext *next;
882
883   struct ConnectContext *prev;
884
885   /**
886    * Index of peer to connect second to.
887    */
888   uint32_t first_index;
889
890   /**
891    * Index of peer to connect first to.
892    */
893   uint32_t second_index;
894
895   /**
896    * Task associated with the attempt to connect.
897    */
898   GNUNET_SCHEDULER_TaskIdentifier task;
899
900   /**
901    * Context in 'testing.c', to cancel connection attempt.
902    */
903   struct GNUNET_TESTING_ConnectContext *cc;
904
905   /**
906    * Higher level topology connection context.
907    */
908   struct ConnectTopologyContext *ct_ctx;
909
910   /**
911    * Whether this connection has been accounted for in the schedule_connect call.
912    */
913   int counted;
914 };
915
916 struct UnblacklistContext
917 {
918   /**
919    * The peergroup
920    */
921   struct GNUNET_TESTING_PeerGroup *pg;
922
923   /**
924    * uid of the first peer
925    */
926   uint32_t first_uid;
927 };
928
929 struct RandomContext
930 {
931   /**
932    * The peergroup
933    */
934   struct GNUNET_TESTING_PeerGroup *pg;
935
936   /**
937    * uid of the first peer
938    */
939   uint32_t first_uid;
940
941   /**
942    * Peer data for first peer.
943    */
944   struct PeerData *first;
945
946   /**
947    * Random percentage to use
948    */
949   double percentage;
950 };
951
952 struct MinimumContext
953 {
954   /**
955    * The peergroup
956    */
957   struct GNUNET_TESTING_PeerGroup *pg;
958
959   /**
960    * uid of the first peer
961    */
962   uint32_t first_uid;
963
964   /**
965    * Peer data for first peer.
966    */
967   struct PeerData *first;
968
969   /**
970    * Number of conns per peer
971    */
972   unsigned int num_to_add;
973
974   /**
975    * Permuted array of all possible connections.  Only add the Nth
976    * peer if it's in the Nth position.
977    */
978   unsigned int *pg_array;
979
980   /**
981    * What number is the current element we are iterating over?
982    */
983   unsigned int current;
984 };
985
986 struct DFSContext
987 {
988   /**
989    * The peergroup
990    */
991   struct GNUNET_TESTING_PeerGroup *pg;
992
993   /**
994    * uid of the first peer
995    */
996   uint32_t first_uid;
997
998   /**
999    * uid of the second peer
1000    */
1001   uint32_t second_uid;
1002
1003   /**
1004    * Peer data for first peer.
1005    */
1006   struct PeerData *first;
1007
1008   /**
1009    * Which peer has been chosen as the one to add?
1010    */
1011   unsigned int chosen;
1012
1013   /**
1014    * What number is the current element we are iterating over?
1015    */
1016   unsigned int current;
1017 };
1018
1019 /**
1020  * Simple struct to keep track of progress, and print a
1021  * nice little percentage meter for long running tasks.
1022  */
1023 struct ProgressMeter
1024 {
1025   unsigned int total;
1026
1027   unsigned int modnum;
1028
1029   unsigned int dotnum;
1030
1031   unsigned int completed;
1032
1033   int print;
1034
1035   char *startup_string;
1036 };
1037
1038 #if !OLD
1039 /**
1040  * Convert unique ID to hash code.
1041  *
1042  * @param uid unique ID to convert
1043  * @param hash set to uid (extended with zeros)
1044  */
1045 static void
1046 hash_from_uid (uint32_t uid, GNUNET_HashCode * hash)
1047 {
1048   memset (hash, 0, sizeof (GNUNET_HashCode));
1049   *((uint32_t *) hash) = uid;
1050 }
1051
1052 /**
1053  * Convert hash code to unique ID.
1054  *
1055  * @param uid unique ID to convert
1056  * @param hash set to uid (extended with zeros)
1057  */
1058 static void
1059 uid_from_hash (const GNUNET_HashCode * hash, uint32_t * uid)
1060 {
1061   memcpy (uid, hash, sizeof (uint32_t));
1062 }
1063 #endif
1064
1065 #if USE_SEND_HELLOS
1066 static struct GNUNET_CORE_MessageHandler no_handlers[] = {
1067   {NULL, 0, 0}
1068 };
1069 #endif
1070
1071 /**
1072  * Create a meter to keep track of the progress of some task.
1073  *
1074  * @param total the total number of items to complete
1075  * @param start_string a string to prefix the meter with (if printing)
1076  * @param print GNUNET_YES to print the meter, GNUNET_NO to count
1077  *              internally only
1078  *
1079  * @return the progress meter
1080  */
1081 static struct ProgressMeter *
1082 create_meter (unsigned int total, char *start_string, int print)
1083 {
1084   struct ProgressMeter *ret;
1085
1086   ret = GNUNET_malloc (sizeof (struct ProgressMeter));
1087   ret->print = print;
1088   ret->total = total;
1089   ret->modnum = total / 4;
1090   if (ret->modnum == 0)         /* Divide by zero check */
1091     ret->modnum = 1;
1092   ret->dotnum = (total / 50) + 1;
1093   if (start_string != NULL)
1094     ret->startup_string = GNUNET_strdup (start_string);
1095   else
1096     ret->startup_string = GNUNET_strdup ("");
1097
1098   return ret;
1099 }
1100
1101 /**
1102  * Update progress meter (increment by one).
1103  *
1104  * @param meter the meter to update and print info for
1105  *
1106  * @return GNUNET_YES if called the total requested,
1107  *         GNUNET_NO if more items expected
1108  */
1109 static int
1110 update_meter (struct ProgressMeter *meter)
1111 {
1112   if (meter->print == GNUNET_YES)
1113   {
1114     if (meter->completed % meter->modnum == 0)
1115     {
1116       if (meter->completed == 0)
1117       {
1118         FPRINTF (stdout, "%sProgress: [0%%", meter->startup_string);
1119       }
1120       else
1121         FPRINTF (stdout, "%d%%",
1122                  (int) (((float) meter->completed / meter->total) * 100));
1123     }
1124     else if (meter->completed % meter->dotnum == 0)
1125       FPRINTF (stdout, "%s",  ".");
1126
1127     if (meter->completed + 1 == meter->total)
1128       FPRINTF (stdout, "%d%%]\n", 100);
1129     fflush (stdout);
1130   }
1131   meter->completed++;
1132
1133   if (meter->completed == meter->total)
1134     return GNUNET_YES;
1135   if (meter->completed > meter->total)
1136     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Progress meter overflow!!\n");
1137   return GNUNET_NO;
1138 }
1139
1140 /**
1141  * Reset progress meter.
1142  *
1143  * @param meter the meter to reset
1144  *
1145  * @return GNUNET_YES if meter reset,
1146  *         GNUNET_SYSERR on error
1147  */
1148 static int
1149 reset_meter (struct ProgressMeter *meter)
1150 {
1151   if (meter == NULL)
1152     return GNUNET_SYSERR;
1153
1154   meter->completed = 0;
1155   return GNUNET_YES;
1156 }
1157
1158 /**
1159  * Release resources for meter
1160  *
1161  * @param meter the meter to free
1162  */
1163 static void
1164 free_meter (struct ProgressMeter *meter)
1165 {
1166   GNUNET_free_non_null (meter->startup_string);
1167   GNUNET_free (meter);
1168 }
1169
1170 /**
1171  * Get a topology from a string input.
1172  *
1173  * @param topology where to write the retrieved topology
1174  * @param topology_string The string to attempt to
1175  *        get a configuration value from
1176  * @return GNUNET_YES if topology string matched a
1177  *         known topology, GNUNET_NO if not
1178  */
1179 int
1180 GNUNET_TESTING_topology_get (enum GNUNET_TESTING_Topology *topology,
1181                              const char *topology_string)
1182 {
1183   /**
1184    * Strings representing topologies in enum
1185    */
1186   static const char *topology_strings[] = {
1187     /**
1188      * A clique (everyone connected to everyone else).
1189      */
1190     "CLIQUE",
1191
1192     /**
1193      * Small-world network (2d torus plus random links).
1194      */
1195     "SMALL_WORLD",
1196
1197     /**
1198      * Small-world network (ring plus random links).
1199      */
1200     "SMALL_WORLD_RING",
1201
1202     /**
1203      * Ring topology.
1204      */
1205     "RING",
1206
1207     /**
1208      * 2-d torus.
1209      */
1210     "2D_TORUS",
1211
1212     /**
1213      * Random graph.
1214      */
1215     "ERDOS_RENYI",
1216
1217     /**
1218      * Certain percentage of peers are unable to communicate directly
1219      * replicating NAT conditions
1220      */
1221     "INTERNAT",
1222
1223     /**
1224      * Scale free topology.
1225      */
1226     "SCALE_FREE",
1227
1228     /**
1229      * Straight line topology.
1230      */
1231     "LINE",
1232
1233     /**
1234      * All peers are disconnected.
1235      */
1236     "NONE",
1237
1238     /**
1239      * Read the topology from a file.
1240      */
1241     "FROM_FILE",
1242
1243     NULL
1244   };
1245
1246   int curr = 0;
1247
1248   if (topology_string == NULL)
1249     return GNUNET_NO;
1250   while (topology_strings[curr] != NULL)
1251   {
1252     if (strcasecmp (topology_strings[curr], topology_string) == 0)
1253     {
1254       *topology = curr;
1255       return GNUNET_YES;
1256     }
1257     curr++;
1258   }
1259   *topology = GNUNET_TESTING_TOPOLOGY_NONE;
1260   return GNUNET_NO;
1261 }
1262
1263 /**
1264  * Get connect topology option from string input.
1265  *
1266  * @param topology_option where to write the retrieved topology
1267  * @param topology_string The string to attempt to
1268  *        get a configuration value from
1269  * @return GNUNET_YES if string matched a known
1270  *         topology option, GNUNET_NO if not
1271  */
1272 int
1273 GNUNET_TESTING_topology_option_get (enum GNUNET_TESTING_TopologyOption
1274                                     *topology_option,
1275                                     const char *topology_string)
1276 {
1277   /**
1278    * Options for connecting a topology as strings.
1279    */
1280   static const char *topology_option_strings[] = {
1281     /**
1282      * Try to connect all peers specified in the topology.
1283      */
1284     "CONNECT_ALL",
1285
1286     /**
1287      * Choose a random subset of connections to create.
1288      */
1289     "CONNECT_RANDOM_SUBSET",
1290
1291     /**
1292      * Create at least X connections for each peer.
1293      */
1294     "CONNECT_MINIMUM",
1295
1296     /**
1297      * Using a depth first search, create one connection
1298      * per peer.  If any are missed (graph disconnected)
1299      * start over at those peers until all have at least one
1300      * connection.
1301      */
1302     "CONNECT_DFS",
1303
1304     /**
1305      * Find the N closest peers to each allowed peer in the
1306      * topology and make sure a connection to those peers
1307      * exists in the connect topology.
1308      */
1309     "CONNECT_CLOSEST",
1310
1311     /**
1312      * No options specified.
1313      */
1314     "CONNECT_NONE",
1315
1316     NULL
1317   };
1318   int curr = 0;
1319
1320   if (topology_string == NULL)
1321     return GNUNET_NO;
1322   while (NULL != topology_option_strings[curr])
1323   {
1324     if (strcasecmp (topology_option_strings[curr], topology_string) == 0)
1325     {
1326       *topology_option = curr;
1327       return GNUNET_YES;
1328     }
1329     curr++;
1330   }
1331   *topology_option = GNUNET_TESTING_TOPOLOGY_OPTION_NONE;
1332   return GNUNET_NO;
1333 }
1334
1335 /**
1336  * Function to iterate over options.  Copies
1337  * the options to the target configuration,
1338  * updating PORT values as needed.
1339  *
1340  * @param cls closure
1341  * @param section name of the section
1342  * @param option name of the option
1343  * @param value value of the option
1344  */
1345 static void
1346 update_config (void *cls, const char *section, const char *option,
1347                const char *value)
1348 {
1349   struct UpdateContext *ctx = cls;
1350   unsigned int ival;
1351   char cval[12];
1352   char uval[128];
1353   char *single_variable;
1354   char *per_host_variable;
1355   unsigned long long num_per_host;
1356
1357   GNUNET_asprintf (&single_variable, "single_%s_per_host", section);
1358   GNUNET_asprintf (&per_host_variable, "num_%s_per_host", section);
1359
1360   if ((0 == strcmp (option, "PORT")) && (1 == SSCANF (value, "%u", &ival)))
1361   {
1362     if ((ival != 0) &&
1363         (GNUNET_YES !=
1364          GNUNET_CONFIGURATION_get_value_yesno (ctx->orig, "testing",
1365                                                single_variable)))
1366     {
1367       GNUNET_snprintf (cval, sizeof (cval), "%u", ctx->nport++);
1368       value = cval;
1369     }
1370     else if ((ival != 0) &&
1371              (GNUNET_YES ==
1372               GNUNET_CONFIGURATION_get_value_yesno (ctx->orig, "testing",
1373                                                     single_variable)) &&
1374              GNUNET_CONFIGURATION_get_value_number (ctx->orig, "testing",
1375                                                     per_host_variable,
1376                                                     &num_per_host))
1377     {
1378       GNUNET_snprintf (cval, sizeof (cval), "%u",
1379                        ival + ctx->fdnum % num_per_host);
1380       value = cval;
1381     }
1382
1383     /* FIXME: REMOVE FOREVER HACK HACK HACK */
1384     if (0 == strcasecmp (section, "transport-tcp"))
1385       GNUNET_CONFIGURATION_set_value_string (ctx->ret, section,
1386                                              "ADVERTISED_PORT", value);
1387   }
1388
1389   if (0 == strcmp (option, "UNIXPATH"))
1390   {
1391     if (GNUNET_YES !=
1392         GNUNET_CONFIGURATION_get_value_yesno (ctx->orig, "testing",
1393                                               single_variable))
1394     {
1395       GNUNET_snprintf (uval, sizeof (uval), "/tmp/test-service-%s-%u", section,
1396                        ctx->upnum++);
1397       value = uval;
1398     }
1399     else if ((GNUNET_YES ==
1400               GNUNET_CONFIGURATION_get_value_number (ctx->orig, "testing",
1401                                                      per_host_variable,
1402                                                      &num_per_host)) &&
1403              (num_per_host > 0))
1404
1405     {
1406       GNUNET_snprintf (uval, sizeof (uval), "/tmp/test-service-%s-%u", section,
1407                        ctx->fdnum % num_per_host);
1408       value = uval;
1409     }
1410   }
1411
1412   if ((0 == strcmp (option, "HOSTNAME")) && (ctx->hostname != NULL))
1413   {
1414     value = ctx->hostname;
1415   }
1416   GNUNET_free (single_variable);
1417   GNUNET_free (per_host_variable);
1418   GNUNET_CONFIGURATION_set_value_string (ctx->ret, section, option, value);
1419 }
1420
1421 /**
1422  * Create a new configuration using the given configuration
1423  * as a template; however, each PORT in the existing cfg
1424  * must be renumbered by incrementing "*port".  If we run
1425  * out of "*port" numbers, return NULL.
1426  *
1427  * @param cfg template configuration
1428  * @param off the current peer offset
1429  * @param port port numbers to use, update to reflect
1430  *             port numbers that were used
1431  * @param upnum number to make unix domain socket names unique
1432  * @param hostname hostname of the controlling host, to allow control connections from
1433  * @param fdnum number used to offset the unix domain socket for grouped processes
1434  *              (such as statistics or peerinfo, which can be shared among others)
1435  *
1436  * @return new configuration, NULL on error
1437  */
1438 struct GNUNET_CONFIGURATION_Handle *
1439 GNUNET_TESTING_create_cfg (const struct GNUNET_CONFIGURATION_Handle *cfg, uint32_t off,
1440              uint16_t * port, uint32_t * upnum, const char *hostname,
1441              uint32_t * fdnum)
1442 {
1443   struct UpdateContext uc;
1444   uint16_t orig;
1445   char *control_host;
1446   char *allowed_hosts;
1447   unsigned long long skew_variance;
1448   unsigned long long skew_offset;
1449   long long actual_offset;
1450
1451   orig = *port;
1452   uc.nport = *port;
1453   uc.upnum = *upnum;
1454   uc.fdnum = *fdnum;
1455   uc.ret = GNUNET_CONFIGURATION_create ();
1456   uc.hostname = hostname;
1457   uc.orig = cfg;
1458
1459   GNUNET_CONFIGURATION_iterate (cfg, &update_config, &uc);
1460   if (uc.nport >= HIGH_PORT)
1461   {
1462     *port = orig;
1463     GNUNET_CONFIGURATION_destroy (uc.ret);
1464     return NULL;
1465   }
1466
1467   if ((GNUNET_OK ==
1468        GNUNET_CONFIGURATION_get_value_number (cfg, "testing", "skew_variance",
1469                                               &skew_variance)) &&
1470       (skew_variance > 0))
1471   {
1472     skew_offset =
1473         GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_WEAK,
1474                                   skew_variance + 1);
1475     actual_offset =
1476         skew_offset - GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_WEAK,
1477                                                 skew_variance + 1);
1478     /* Min is -skew_variance, Max is skew_variance */
1479     skew_offset = skew_variance + actual_offset;        /* Normal distribution around 0 */
1480     GNUNET_CONFIGURATION_set_value_number (uc.ret, "testing", "skew_offset",
1481                                            skew_offset);
1482   }
1483
1484   if (GNUNET_CONFIGURATION_get_value_string
1485       (cfg, "testing", "control_host", &control_host) == GNUNET_OK)
1486   {
1487     if (hostname != NULL)
1488       GNUNET_asprintf (&allowed_hosts, "%s; 127.0.0.1; %s;", control_host,
1489                        hostname);
1490     else
1491       GNUNET_asprintf (&allowed_hosts, "%s; 127.0.0.1;", control_host);
1492
1493     GNUNET_CONFIGURATION_set_value_string (uc.ret, "core", "ACCEPT_FROM",
1494                                            allowed_hosts);
1495
1496     GNUNET_CONFIGURATION_set_value_string (uc.ret, "nse", "ACCEPT_FROM",
1497                                            allowed_hosts);
1498
1499     GNUNET_CONFIGURATION_set_value_string (uc.ret, "transport", "ACCEPT_FROM",
1500                                            allowed_hosts);
1501     GNUNET_CONFIGURATION_set_value_string (uc.ret, "dht", "ACCEPT_FROM",
1502                                            allowed_hosts);
1503     GNUNET_CONFIGURATION_set_value_string (uc.ret, "statistics", "ACCEPT_FROM",
1504                                            allowed_hosts);
1505
1506     GNUNET_CONFIGURATION_set_value_string (uc.ret, "core", "UNIXPATH", "");
1507     GNUNET_CONFIGURATION_set_value_string (uc.ret, "transport", "UNIXPATH", "");
1508     GNUNET_CONFIGURATION_set_value_string (uc.ret, "dht", "UNIXPATH", "");
1509     GNUNET_CONFIGURATION_set_value_string (uc.ret, "statistics", "UNIXPATH",
1510                                            "");
1511     GNUNET_CONFIGURATION_set_value_string (uc.ret, "nse", "UNIXPATH", "");
1512
1513     GNUNET_CONFIGURATION_set_value_string (uc.ret, "transport-tcp",
1514                                            "USE_LOCALADDR", "YES");
1515     GNUNET_CONFIGURATION_set_value_string (uc.ret, "transport-udp",
1516                                            "USE_LOCALADDR", "YES");
1517     GNUNET_free_non_null (control_host);
1518     GNUNET_free (allowed_hosts);
1519   }
1520
1521   /* arm needs to know to allow connections from the host on which it is running,
1522    * otherwise gnunet-arm is unable to connect to it in some instances */
1523   if (hostname != NULL)
1524   {
1525     GNUNET_asprintf (&allowed_hosts, "%s; 127.0.0.1;", hostname);
1526     GNUNET_CONFIGURATION_set_value_string (uc.ret, "nat", "BINDTO", hostname);
1527     GNUNET_CONFIGURATION_set_value_string (uc.ret, "nat", "INTERNAL_ADDRESS",
1528                                            hostname);
1529     GNUNET_CONFIGURATION_set_value_string (uc.ret, "nat", "EXTERNAL_ADDRESS",
1530                                            hostname);
1531     GNUNET_CONFIGURATION_set_value_string (uc.ret, "disablev6", "BINDTO",
1532                                            "YES");
1533     GNUNET_CONFIGURATION_set_value_string (uc.ret, "transport-tcp",
1534                                            "USE_LOCALADDR", "YES");
1535     GNUNET_CONFIGURATION_set_value_string (uc.ret, "transport-udp",
1536                                            "USE_LOCALADDR", "YES");
1537     GNUNET_CONFIGURATION_set_value_string (uc.ret, "arm", "ACCEPT_FROM",
1538                                            allowed_hosts);
1539     GNUNET_free (allowed_hosts);
1540   }
1541   else
1542   {
1543
1544     GNUNET_CONFIGURATION_set_value_string (uc.ret, "transport-tcp",
1545                                            "USE_LOCALADDR", "YES");
1546     GNUNET_CONFIGURATION_set_value_string (uc.ret, "transport-udp",
1547                                            "USE_LOCALADDR", "YES");
1548     GNUNET_CONFIGURATION_set_value_string (uc.ret, "nat", "BINDTO",
1549                                            "127.0.0.1");
1550     GNUNET_CONFIGURATION_set_value_string (uc.ret, "nat", "INTERNAL_ADDRESS",
1551                                            "127.0.0.1");
1552     GNUNET_CONFIGURATION_set_value_string (uc.ret, "nat", "EXTERNAL_ADDRESS",
1553                                            "127.0.0.1");
1554     GNUNET_CONFIGURATION_set_value_string (uc.ret, "nat", "disablev6",
1555                                            "YES");
1556   }
1557
1558   *port = (uint16_t) uc.nport;
1559   *upnum = uc.upnum;
1560   uc.fdnum++;
1561   *fdnum = uc.fdnum;
1562   return uc.ret;
1563 }
1564
1565 /*
1566  * Remove entries from the peer connection list
1567  *
1568  * @param pg the peer group we are working with
1569  * @param first index of the first peer
1570  * @param second index of the second peer
1571  * @param list the peer list to use
1572  * @param check UNUSED
1573  *
1574  * @return the number of connections added (can be 0, 1 or 2)
1575  *
1576  */
1577 static unsigned int
1578 remove_connections (struct GNUNET_TESTING_PeerGroup *pg, unsigned int first,
1579                     unsigned int second, enum PeerLists list,
1580                     unsigned int check)
1581 {
1582   int removed;
1583
1584 #if OLD
1585   struct PeerConnection **first_list;
1586   struct PeerConnection **second_list;
1587   struct PeerConnection *first_iter;
1588   struct PeerConnection *second_iter;
1589   struct PeerConnection **first_tail;
1590   struct PeerConnection **second_tail;
1591
1592 #else
1593   GNUNET_HashCode hash_first;
1594   GNUNET_HashCode hash_second;
1595
1596   hash_from_uid (first, &hash_first);
1597   hash_from_uid (second, &hash_second);
1598 #endif
1599
1600   removed = 0;
1601 #if OLD
1602   switch (list)
1603   {
1604   case ALLOWED:
1605     first_list = &pg->peers[first].allowed_peers_head;
1606     second_list = &pg->peers[second].allowed_peers_head;
1607     first_tail = &pg->peers[first].allowed_peers_tail;
1608     second_tail = &pg->peers[second].allowed_peers_tail;
1609     break;
1610   case CONNECT:
1611     first_list = &pg->peers[first].connect_peers_head;
1612     second_list = &pg->peers[second].connect_peers_head;
1613     first_tail = &pg->peers[first].connect_peers_tail;
1614     second_tail = &pg->peers[second].connect_peers_tail;
1615     break;
1616   case BLACKLIST:
1617     first_list = &pg->peers[first].blacklisted_peers_head;
1618     second_list = &pg->peers[second].blacklisted_peers_head;
1619     first_tail = &pg->peers[first].blacklisted_peers_tail;
1620     second_tail = &pg->peers[second].blacklisted_peers_tail;
1621     break;
1622   case WORKING_SET:
1623     first_list = &pg->peers[first].connect_peers_working_set_head;
1624     second_list = &pg->peers[second].connect_peers_working_set_head;
1625     first_tail = &pg->peers[first].connect_peers_working_set_tail;
1626     second_tail = &pg->peers[second].connect_peers_working_set_tail;
1627     break;
1628   default:
1629     GNUNET_break (0);
1630     return 0;
1631   }
1632
1633   first_iter = *first_list;
1634   while (first_iter != NULL)
1635   {
1636     if (first_iter->index == second)
1637     {
1638       GNUNET_CONTAINER_DLL_remove (*first_list, *first_tail, first_iter);
1639       GNUNET_free (first_iter);
1640       removed++;
1641       break;
1642     }
1643     first_iter = first_iter->next;
1644   }
1645
1646   second_iter = *second_list;
1647   while (second_iter != NULL)
1648   {
1649     if (second_iter->index == first)
1650     {
1651       GNUNET_CONTAINER_DLL_remove (*second_list, *second_tail, second_iter);
1652       GNUNET_free (second_iter);
1653       removed++;
1654       break;
1655     }
1656     second_iter = second_iter->next;
1657   }
1658 #else
1659   if (GNUNET_YES ==
1660       GNUNET_CONTAINER_multihashmap_contains (pg->
1661                                               peers[first].blacklisted_peers,
1662                                               &hash_second))
1663   {
1664     GNUNET_CONTAINER_multihashmap_remove_all (pg->
1665                                               peers[first].blacklisted_peers,
1666                                               &hash_second);
1667   }
1668
1669   if (GNUNET_YES ==
1670       GNUNET_CONTAINER_multihashmap_contains (pg->
1671                                               peers[second].blacklisted_peers,
1672                                               &hash_first))
1673   {
1674     GNUNET_CONTAINER_multihashmap_remove_all (pg->
1675                                               peers[second].blacklisted_peers,
1676                                               &hash_first);
1677   }
1678 #endif
1679
1680   return removed;
1681 }
1682
1683 /**
1684  * Add entries to the some list
1685  *
1686  * @param pg the peer group we are working with
1687  * @param first index of the first peer
1688  * @param second index of the second peer
1689  * @param list the list type that we should modify
1690  * @param check GNUNET_YES to check lists before adding
1691  *              GNUNET_NO to force add
1692  *
1693  * @return the number of connections added (can be 0, 1 or 2)
1694  *
1695  */
1696 static unsigned int
1697 add_connections (struct GNUNET_TESTING_PeerGroup *pg, unsigned int first,
1698                  unsigned int second, enum PeerLists list, unsigned int check)
1699 {
1700   int added;
1701   int add_first;
1702   int add_second;
1703
1704   struct PeerConnection **first_list;
1705   struct PeerConnection **second_list;
1706   struct PeerConnection *first_iter;
1707   struct PeerConnection *second_iter;
1708   struct PeerConnection *new_first;
1709   struct PeerConnection *new_second;
1710   struct PeerConnection **first_tail;
1711   struct PeerConnection **second_tail;
1712
1713   switch (list)
1714   {
1715   case ALLOWED:
1716     first_list = &pg->peers[first].allowed_peers_head;
1717     second_list = &pg->peers[second].allowed_peers_head;
1718     first_tail = &pg->peers[first].allowed_peers_tail;
1719     second_tail = &pg->peers[second].allowed_peers_tail;
1720     break;
1721   case CONNECT:
1722     first_list = &pg->peers[first].connect_peers_head;
1723     second_list = &pg->peers[second].connect_peers_head;
1724     first_tail = &pg->peers[first].connect_peers_tail;
1725     second_tail = &pg->peers[second].connect_peers_tail;
1726     break;
1727   case BLACKLIST:
1728     first_list = &pg->peers[first].blacklisted_peers_head;
1729     second_list = &pg->peers[second].blacklisted_peers_head;
1730     first_tail = &pg->peers[first].blacklisted_peers_tail;
1731     second_tail = &pg->peers[second].blacklisted_peers_tail;
1732     break;
1733   case WORKING_SET:
1734     first_list = &pg->peers[first].connect_peers_working_set_head;
1735     second_list = &pg->peers[second].connect_peers_working_set_head;
1736     first_tail = &pg->peers[first].connect_peers_working_set_tail;
1737     second_tail = &pg->peers[second].connect_peers_working_set_tail;
1738     break;
1739   default:
1740     GNUNET_break (0);
1741     return 0;
1742   }
1743
1744   add_first = GNUNET_YES;
1745   add_second = GNUNET_YES;
1746
1747   if (check == GNUNET_YES)
1748   {
1749     first_iter = *first_list;
1750     while (first_iter != NULL)
1751     {
1752       if (first_iter->index == second)
1753       {
1754         add_first = GNUNET_NO;
1755         break;
1756       }
1757       first_iter = first_iter->next;
1758     }
1759
1760     second_iter = *second_list;
1761     while (second_iter != NULL)
1762     {
1763       if (second_iter->index == first)
1764       {
1765         add_second = GNUNET_NO;
1766         break;
1767       }
1768       second_iter = second_iter->next;
1769     }
1770   }
1771
1772   added = 0;
1773   if (add_first)
1774   {
1775     new_first = GNUNET_malloc (sizeof (struct PeerConnection));
1776     new_first->index = second;
1777     GNUNET_CONTAINER_DLL_insert (*first_list, *first_tail, new_first);
1778     pg->peers[first].num_connections++;
1779     added++;
1780   }
1781
1782   if (add_second)
1783   {
1784     new_second = GNUNET_malloc (sizeof (struct PeerConnection));
1785     new_second->index = first;
1786     GNUNET_CONTAINER_DLL_insert (*second_list, *second_tail, new_second);
1787     pg->peers[second].num_connections++;
1788     added++;
1789   }
1790
1791   return added;
1792 }
1793
1794 /**
1795  * Scale free network construction as described in:
1796  *
1797  * "Emergence of Scaling in Random Networks." Science 286, 509-512, 1999.
1798  *
1799  * Start with a network of "one" peer, then progressively add
1800  * peers up to the total number.  At each step, iterate over
1801  * all possible peers and connect new peer based on number of
1802  * existing connections of the target peer.
1803  *
1804  * @param pg the peer group we are dealing with
1805  * @param proc the connection processor to use
1806  * @param list the peer list to use
1807  *
1808  * @return the number of connections created
1809  */
1810 static unsigned int
1811 create_scale_free (struct GNUNET_TESTING_PeerGroup *pg,
1812                    GNUNET_TESTING_ConnectionProcessor proc, enum PeerLists list)
1813 {
1814
1815   unsigned int total_connections;
1816   unsigned int outer_count;
1817   unsigned int i;
1818   unsigned int previous_total_connections;
1819   double random;
1820   double probability;
1821
1822   GNUNET_assert (pg->total > 1);
1823
1824   /* Add a connection between the first two nodes */
1825   total_connections = proc (pg, 0, 1, list, GNUNET_YES);
1826
1827   for (outer_count = 1; outer_count < pg->total; outer_count++)
1828   {
1829     previous_total_connections = total_connections;
1830     for (i = 0; i < outer_count; i++)
1831     {
1832       probability =
1833           pg->peers[i].num_connections / (double) previous_total_connections;
1834       random =
1835           ((double)
1836            GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_WEAK,
1837                                      UINT64_MAX)) / ((double) UINT64_MAX);
1838 #if VERBOSE_TESTING
1839       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1840                   "Considering connecting peer %d to peer %d\n", outer_count,
1841                   i);
1842 #endif
1843       if (random < probability)
1844       {
1845 #if VERBOSE_TESTING
1846         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Connecting peer %d to peer %d\n",
1847                     outer_count, i);
1848 #endif
1849         total_connections += proc (pg, outer_count, i, list, GNUNET_YES);
1850       }
1851     }
1852   }
1853
1854   return total_connections;
1855 }
1856
1857 /**
1858  * Create a topology given a peer group (set of running peers)
1859  * and a connection processor.  Creates a small world topology
1860  * according to the rewired ring construction.  The basic
1861  * behavior is that a ring topology is created, but with some
1862  * probability instead of connecting a peer to the next
1863  * neighbor in the ring a connection will be created to a peer
1864  * selected uniformly at random.   We use the TESTING
1865  * PERCENTAGE option to specify what number of
1866  * connections each peer should have.  Default is 2,
1867  * which makes the ring, any given number is multiplied by
1868  * the log of the network size; i.e. a PERCENTAGE of 2 makes
1869  * each peer have on average 2logn connections.  The additional
1870  * connections are made at increasing distance around the ring
1871  * from the original peer, or to random peers based on the re-
1872  * wiring probability. The TESTING
1873  * PROBABILITY option is used as the probability that a given
1874  * connection is rewired.
1875  *
1876  * @param pg the peergroup to create the topology on
1877  * @param proc the connection processor to call to actually set
1878  *        up connections between two peers
1879  * @param list the peer list to use
1880  *
1881  * @return the number of connections that were set up
1882  *
1883  */
1884 static unsigned int
1885 create_small_world_ring (struct GNUNET_TESTING_PeerGroup *pg,
1886                          GNUNET_TESTING_ConnectionProcessor proc,
1887                          enum PeerLists list)
1888 {
1889   unsigned int i, j;
1890   int nodeToConnect;
1891   unsigned int natLog;
1892   unsigned int randomPeer;
1893   double random, logNModifier, probability;
1894   unsigned int smallWorldConnections;
1895   int connsPerPeer;
1896   char *p_string;
1897   int max;
1898   int min;
1899   unsigned int useAnd;
1900   int connect_attempts;
1901
1902   logNModifier = 0.5;           /* FIXME: default value? */
1903   if (GNUNET_OK ==
1904       GNUNET_CONFIGURATION_get_value_string (pg->cfg, "TESTING", "PERCENTAGE",
1905                                              &p_string))
1906   {
1907     if (SSCANF (p_string, "%lf", &logNModifier) != 1)
1908       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1909                   _
1910                   ("Invalid value `%s' for option `%s' in section `%s': expected float\n"),
1911                   p_string, "LOGNMODIFIER", "TESTING");
1912     GNUNET_free (p_string);
1913   }
1914   probability = 0.5;            /* FIXME: default percentage? */
1915   if (GNUNET_OK ==
1916       GNUNET_CONFIGURATION_get_value_string (pg->cfg, "TESTING", "PROBABILITY",
1917                                              &p_string))
1918   {
1919     if (SSCANF (p_string, "%lf", &probability) != 1)
1920       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1921                   _
1922                   ("Invalid value `%s' for option `%s' in section `%s': expected float\n"),
1923                   p_string, "PERCENTAGE", "TESTING");
1924     GNUNET_free (p_string);
1925   }
1926   natLog = log (pg->total);
1927   connsPerPeer = ceil (natLog * logNModifier);
1928
1929   if (connsPerPeer % 2 == 1)
1930     connsPerPeer += 1;
1931
1932   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, _("Target is %d connections per peer."),
1933               connsPerPeer);
1934
1935   smallWorldConnections = 0;
1936   connect_attempts = 0;
1937   for (i = 0; i < pg->total; i++)
1938   {
1939     useAnd = 0;
1940     max = i + connsPerPeer / 2;
1941     min = i - connsPerPeer / 2;
1942
1943     if (max > pg->total - 1)
1944     {
1945       max = max - pg->total;
1946       useAnd = 1;
1947     }
1948
1949     if (min < 0)
1950     {
1951       min = pg->total - 1 + min;
1952       useAnd = 1;
1953     }
1954
1955     for (j = 0; j < connsPerPeer / 2; j++)
1956     {
1957       random =
1958           ((double)
1959            GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_WEAK,
1960                                      UINT64_MAX) / ((double) UINT64_MAX));
1961       if (random < probability)
1962       {
1963         /* Connect to uniformly selected random peer */
1964         randomPeer =
1965             GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, pg->total);
1966         while ((((randomPeer < max) && (randomPeer > min)) && (useAnd == 0)) ||
1967                (((randomPeer > min) || (randomPeer < max)) && (useAnd == 1)))
1968         {
1969           randomPeer =
1970               GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, pg->total);
1971         }
1972         smallWorldConnections += proc (pg, i, randomPeer, list, GNUNET_YES);
1973       }
1974       else
1975       {
1976         nodeToConnect = i + j + 1;
1977         if (nodeToConnect > pg->total - 1)
1978         {
1979           nodeToConnect = nodeToConnect - pg->total;
1980         }
1981         connect_attempts += proc (pg, i, nodeToConnect, list, GNUNET_YES);
1982       }
1983     }
1984
1985   }
1986
1987   connect_attempts += smallWorldConnections;
1988
1989   return connect_attempts;
1990 }
1991
1992 /**
1993  * Create a topology given a peer group (set of running peers)
1994  * and a connection processor.
1995  *
1996  * @param pg the peergroup to create the topology on
1997  * @param proc the connection processor to call to actually set
1998  *        up connections between two peers
1999  * @param list the peer list to use
2000  *
2001  * @return the number of connections that were set up
2002  *
2003  */
2004 static unsigned int
2005 create_nated_internet (struct GNUNET_TESTING_PeerGroup *pg,
2006                        GNUNET_TESTING_ConnectionProcessor proc,
2007                        enum PeerLists list)
2008 {
2009   unsigned int outer_count, inner_count;
2010   unsigned int cutoff;
2011   int connect_attempts;
2012   double nat_percentage;
2013   char *p_string;
2014
2015   nat_percentage = 0.6;         /* FIXME: default percentage? */
2016   if (GNUNET_OK ==
2017       GNUNET_CONFIGURATION_get_value_string (pg->cfg, "TESTING", "PERCENTAGE",
2018                                              &p_string))
2019   {
2020     if (SSCANF (p_string, "%lf", &nat_percentage) != 1)
2021       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2022                   _
2023                   ("Invalid value `%s' for option `%s' in section `%s': expected float\n"),
2024                   p_string, "PERCENTAGE", "TESTING");
2025     GNUNET_free (p_string);
2026   }
2027
2028   cutoff = (unsigned int) (nat_percentage * pg->total);
2029   connect_attempts = 0;
2030   for (outer_count = 0; outer_count < pg->total - 1; outer_count++)
2031   {
2032     for (inner_count = outer_count + 1; inner_count < pg->total; inner_count++)
2033     {
2034       if ((outer_count > cutoff) || (inner_count > cutoff))
2035       {
2036 #if VERBOSE_TESTING
2037         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Connecting peer %d to peer %d\n",
2038                     outer_count, inner_count);
2039 #endif
2040         connect_attempts +=
2041             proc (pg, outer_count, inner_count, list, GNUNET_YES);
2042       }
2043     }
2044   }
2045   return connect_attempts;
2046 }
2047
2048 #if TOPOLOGY_HACK
2049 /**
2050  * Create a topology given a peer group (set of running peers)
2051  * and a connection processor.
2052  *
2053  * @param pg the peergroup to create the topology on
2054  * @param proc the connection processor to call to actually set
2055  *        up connections between two peers
2056  * @param list the peer list to use
2057  *
2058  * @return the number of connections that were set up
2059  *
2060  */
2061 static unsigned int
2062 create_nated_internet_copy (struct GNUNET_TESTING_PeerGroup *pg,
2063                             GNUNET_TESTING_ConnectionProcessor proc,
2064                             enum PeerLists list)
2065 {
2066   unsigned int outer_count, inner_count;
2067   unsigned int cutoff;
2068   int connect_attempts;
2069   double nat_percentage;
2070   char *p_string;
2071   unsigned int count;
2072   struct ProgressMeter *conn_meter;
2073
2074   nat_percentage = 0.6;         /* FIXME: default percentage? */
2075   if (GNUNET_OK ==
2076       GNUNET_CONFIGURATION_get_value_string (pg->cfg, "TESTING", "PERCENTAGE",
2077                                              &p_string))
2078   {
2079     if (SSCANF (p_string, "%lf", &nat_percentage) != 1)
2080       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2081                   _
2082                   ("Invalid value `%s' for option `%s' in section `%s': expected float\n"),
2083                   p_string, "PERCENTAGE", "TESTING");
2084     GNUNET_free (p_string);
2085   }
2086
2087   cutoff = (unsigned int) (nat_percentage * pg->total);
2088   count = 0;
2089   for (outer_count = 0; outer_count < pg->total - 1; outer_count++)
2090   {
2091     for (inner_count = outer_count + 1; inner_count < pg->total; inner_count++)
2092     {
2093       if ((outer_count > cutoff) || (inner_count > cutoff))
2094       {
2095         count++;
2096       }
2097     }
2098   }
2099   conn_meter = create_meter (count, "NAT COPY", GNUNET_YES);
2100   connect_attempts = 0;
2101   for (outer_count = 0; outer_count < pg->total - 1; outer_count++)
2102   {
2103     for (inner_count = outer_count + 1; inner_count < pg->total; inner_count++)
2104     {
2105       if ((outer_count > cutoff) || (inner_count > cutoff))
2106       {
2107 #if VERBOSE_TESTING
2108         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Connecting peer %d to peer %d\n",
2109                     outer_count, inner_count);
2110 #endif
2111         connect_attempts +=
2112             proc (pg, outer_count, inner_count, list, GNUNET_YES);
2113         add_connections (pg, outer_count, inner_count, ALLOWED, GNUNET_NO);
2114         update_meter (conn_meter);
2115       }
2116     }
2117   }
2118   free_meter (conn_meter);
2119
2120   return connect_attempts;
2121 }
2122 #endif
2123
2124 /**
2125  * Create a topology given a peer group (set of running peers)
2126  * and a connection processor.
2127  *
2128  * @param pg the peergroup to create the topology on
2129  * @param proc the connection processor to call to actually set
2130  *        up connections between two peers
2131  * @param list the peer list to use
2132  *
2133  * @return the number of connections that were set up
2134  *
2135  */
2136 static unsigned int
2137 create_small_world (struct GNUNET_TESTING_PeerGroup *pg,
2138                     GNUNET_TESTING_ConnectionProcessor proc,
2139                     enum PeerLists list)
2140 {
2141   unsigned int i, j, k;
2142   unsigned int square;
2143   unsigned int rows;
2144   unsigned int cols;
2145   unsigned int toggle = 1;
2146   unsigned int nodeToConnect;
2147   unsigned int natLog;
2148   unsigned int node1Row;
2149   unsigned int node1Col;
2150   unsigned int node2Row;
2151   unsigned int node2Col;
2152   unsigned int distance;
2153   double probability, random, percentage;
2154   unsigned int smallWorldConnections;
2155   unsigned int small_world_it;
2156   char *p_string;
2157   int connect_attempts;
2158
2159   square = floor (sqrt (pg->total));
2160   rows = square;
2161   cols = square;
2162
2163   percentage = 0.5;             /* FIXME: default percentage? */
2164   if (GNUNET_OK ==
2165       GNUNET_CONFIGURATION_get_value_string (pg->cfg, "TESTING", "PERCENTAGE",
2166                                              &p_string))
2167   {
2168     if (SSCANF (p_string, "%lf", &percentage) != 1)
2169       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2170                   _
2171                   ("Invalid value `%s' for option `%s' in section `%s': expected float\n"),
2172                   p_string, "PERCENTAGE", "TESTING");
2173     GNUNET_free (p_string);
2174   }
2175   if (percentage < 0.0)
2176   {
2177     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2178                 _
2179                 ("Invalid value `%s' for option `%s' in section `%s': got %f, needed value greater than 0\n"),
2180                 "PERCENTAGE", "TESTING", percentage);
2181     percentage = 0.5;
2182   }
2183   probability = 0.5;            /* FIXME: default percentage? */
2184   if (GNUNET_OK ==
2185       GNUNET_CONFIGURATION_get_value_string (pg->cfg, "TESTING", "PROBABILITY",
2186                                              &p_string))
2187   {
2188     if (SSCANF (p_string, "%lf", &probability) != 1)
2189       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2190                   _
2191                   ("Invalid value `%s' for option `%s' in section `%s': expected float\n"),
2192                   p_string, "PROBABILITY", "TESTING");
2193     GNUNET_free (p_string);
2194   }
2195   if (square * square != pg->total)
2196   {
2197     while (rows * cols < pg->total)
2198     {
2199       if (toggle % 2 == 0)
2200         rows++;
2201       else
2202         cols++;
2203
2204       toggle++;
2205     }
2206   }
2207 #if VERBOSE_TESTING
2208   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2209               _("Connecting nodes in 2d torus topology: %u rows %u columns\n"),
2210               rows, cols);
2211 #endif
2212
2213   connect_attempts = 0;
2214   /* Rows and columns are all sorted out, now iterate over all nodes and connect each
2215    * to the node to its right and above.  Once this is over, we'll have our torus!
2216    * Special case for the last node (if the rows and columns are not equal), connect
2217    * to the first in the row to maintain topology.
2218    */
2219   for (i = 0; i < pg->total; i++)
2220   {
2221     /* First connect to the node to the right */
2222     if (((i + 1) % cols != 0) && (i + 1 != pg->total))
2223       nodeToConnect = i + 1;
2224     else if (i + 1 == pg->total)
2225       nodeToConnect = rows * cols - cols;
2226     else
2227       nodeToConnect = i - cols + 1;
2228
2229     connect_attempts += proc (pg, i, nodeToConnect, list, GNUNET_YES);
2230
2231     if (i < cols)
2232     {
2233       nodeToConnect = (rows * cols) - cols + i;
2234       if (nodeToConnect >= pg->total)
2235         nodeToConnect -= cols;
2236     }
2237     else
2238       nodeToConnect = i - cols;
2239
2240     if (nodeToConnect < pg->total)
2241       connect_attempts += proc (pg, i, nodeToConnect, list, GNUNET_YES);
2242   }
2243   natLog = log (pg->total);
2244 #if VERBOSE_TESTING > 2
2245   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2246               _("natural log of %d is %d, will run %d iterations\n"), pg->total,
2247               natLog, (int) (natLog * percentage));
2248   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2249               _("Total connections added thus far: %u!\n"), connect_attempts);
2250 #endif
2251   smallWorldConnections = 0;
2252   small_world_it = (unsigned int) (natLog * percentage);
2253   if (small_world_it < 1)
2254     small_world_it = 1;
2255   GNUNET_assert (small_world_it > 0 && small_world_it < (unsigned int) -1);
2256   for (i = 0; i < small_world_it; i++)
2257   {
2258     for (j = 0; j < pg->total; j++)
2259     {
2260       /* Determine the row and column of node at position j on the 2d torus */
2261       node1Row = j / cols;
2262       node1Col = j - (node1Row * cols);
2263       for (k = 0; k < pg->total; k++)
2264       {
2265         /* Determine the row and column of node at position k on the 2d torus */
2266         node2Row = k / cols;
2267         node2Col = k - (node2Row * cols);
2268         /* Simple Cartesian distance */
2269         distance = abs (node1Row - node2Row) + abs (node1Col - node2Col);
2270         if (distance > 1)
2271         {
2272           /* Calculate probability as 1 over the square of the distance */
2273           probability = 1.0 / (distance * distance);
2274           /* Choose a random value between 0 and 1 */
2275           random =
2276               ((double)
2277                GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_WEAK,
2278                                          UINT64_MAX)) / ((double) UINT64_MAX);
2279           /* If random < probability, then connect the two nodes */
2280           if (random < probability)
2281             smallWorldConnections += proc (pg, j, k, list, GNUNET_YES);
2282
2283         }
2284       }
2285     }
2286   }
2287   connect_attempts += smallWorldConnections;
2288 #if VERBOSE_TESTING > 2
2289   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2290               _("Total connections added for small world: %d!\n"),
2291               smallWorldConnections);
2292 #endif
2293   return connect_attempts;
2294 }
2295
2296 /**
2297  * Create a topology given a peer group (set of running peers)
2298  * and a connection processor.
2299  *
2300  * @param pg the peergroup to create the topology on
2301  * @param proc the connection processor to call to actually set
2302  *        up connections between two peers
2303  * @param list the peer list to use
2304  *
2305  * @return the number of connections that were set up
2306  *
2307  */
2308 static unsigned int
2309 create_erdos_renyi (struct GNUNET_TESTING_PeerGroup *pg,
2310                     GNUNET_TESTING_ConnectionProcessor proc,
2311                     enum PeerLists list)
2312 {
2313   double temp_rand;
2314   unsigned int outer_count;
2315   unsigned int inner_count;
2316   int connect_attempts;
2317   double probability;
2318   char *p_string;
2319
2320   probability = 0.5;            /* FIXME: default percentage? */
2321   if (GNUNET_OK ==
2322       GNUNET_CONFIGURATION_get_value_string (pg->cfg, "TESTING", "PROBABILITY",
2323                                              &p_string))
2324   {
2325     if (SSCANF (p_string, "%lf", &probability) != 1)
2326       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2327                   _
2328                   ("Invalid value `%s' for option `%s' in section `%s': expected float\n"),
2329                   p_string, "PROBABILITY", "TESTING");
2330     GNUNET_free (p_string);
2331   }
2332   connect_attempts = 0;
2333   for (outer_count = 0; outer_count < pg->total - 1; outer_count++)
2334   {
2335     for (inner_count = outer_count + 1; inner_count < pg->total; inner_count++)
2336     {
2337       temp_rand =
2338           ((double)
2339            GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_WEAK,
2340                                      UINT64_MAX)) / ((double) UINT64_MAX);
2341 #if VERBOSE_TESTING
2342       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, _("rand is %f probability is %f\n"),
2343                   temp_rand, probability);
2344 #endif
2345       if (temp_rand < probability)
2346       {
2347         connect_attempts +=
2348             proc (pg, outer_count, inner_count, list, GNUNET_YES);
2349       }
2350     }
2351   }
2352
2353   return connect_attempts;
2354 }
2355
2356 /**
2357  * Create a topology given a peer group (set of running peers)
2358  * and a connection processor.  This particular function creates
2359  * the connections for a 2d-torus, plus additional "closest"
2360  * connections per peer.
2361  *
2362  * @param pg the peergroup to create the topology on
2363  * @param proc the connection processor to call to actually set
2364  *        up connections between two peers
2365  * @param list the peer list to use
2366  *
2367  * @return the number of connections that were set up
2368  *
2369  */
2370 static unsigned int
2371 create_2d_torus (struct GNUNET_TESTING_PeerGroup *pg,
2372                  GNUNET_TESTING_ConnectionProcessor proc, enum PeerLists list)
2373 {
2374   unsigned int i;
2375   unsigned int square;
2376   unsigned int rows;
2377   unsigned int cols;
2378   unsigned int toggle = 1;
2379   unsigned int nodeToConnect;
2380   int connect_attempts;
2381
2382   connect_attempts = 0;
2383
2384   square = floor (sqrt (pg->total));
2385   rows = square;
2386   cols = square;
2387
2388   if (square * square != pg->total)
2389   {
2390     while (rows * cols < pg->total)
2391     {
2392       if (toggle % 2 == 0)
2393         rows++;
2394       else
2395         cols++;
2396
2397       toggle++;
2398     }
2399   }
2400 #if VERBOSE_TESTING
2401   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2402               _("Connecting nodes in 2d torus topology: %u rows %u columns\n"),
2403               rows, cols);
2404 #endif
2405   /* Rows and columns are all sorted out, now iterate over all nodes and connect each
2406    * to the node to its right and above.  Once this is over, we'll have our torus!
2407    * Special case for the last node (if the rows and columns are not equal), connect
2408    * to the first in the row to maintain topology.
2409    */
2410   for (i = 0; i < pg->total; i++)
2411   {
2412     /* First connect to the node to the right */
2413     if (((i + 1) % cols != 0) && (i + 1 != pg->total))
2414       nodeToConnect = i + 1;
2415     else if (i + 1 == pg->total)
2416       nodeToConnect = rows * cols - cols;
2417     else
2418       nodeToConnect = i - cols + 1;
2419 #if VERBOSE_TESTING
2420     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Connecting peer %d to peer %d\n", i,
2421                 nodeToConnect);
2422 #endif
2423     connect_attempts += proc (pg, i, nodeToConnect, list, GNUNET_YES);
2424
2425     /* Second connect to the node immediately above */
2426     if (i < cols)
2427     {
2428       nodeToConnect = (rows * cols) - cols + i;
2429       if (nodeToConnect >= pg->total)
2430         nodeToConnect -= cols;
2431     }
2432     else
2433       nodeToConnect = i - cols;
2434
2435     if (nodeToConnect < pg->total)
2436     {
2437 #if VERBOSE_TESTING
2438       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Connecting peer %d to peer %d\n", i,
2439                   nodeToConnect);
2440 #endif
2441       connect_attempts += proc (pg, i, nodeToConnect, list, GNUNET_YES);
2442     }
2443
2444   }
2445
2446   return connect_attempts;
2447 }
2448
2449 /**
2450  * Create a topology given a peer group (set of running peers)
2451  * and a connection processor.
2452  *
2453  * @param pg the peergroup to create the topology on
2454  * @param proc the connection processor to call to actually set
2455  *        up connections between two peers
2456  * @param list the peer list to use
2457  * @param check does the connection processor need to check before
2458  *              performing an action on the list?
2459  *
2460  * @return the number of connections that were set up
2461  *
2462  */
2463 static unsigned int
2464 create_clique (struct GNUNET_TESTING_PeerGroup *pg,
2465                GNUNET_TESTING_ConnectionProcessor proc, enum PeerLists list,
2466                unsigned int check)
2467 {
2468   unsigned int outer_count;
2469   unsigned int inner_count;
2470   int connect_attempts;
2471   struct ProgressMeter *conn_meter;
2472
2473   connect_attempts = 0;
2474
2475   conn_meter =
2476       create_meter ((((pg->total * pg->total) + pg->total) / 2) - pg->total,
2477                     "Create Clique ", GNUNET_NO);
2478   for (outer_count = 0; outer_count < pg->total - 1; outer_count++)
2479   {
2480     for (inner_count = outer_count + 1; inner_count < pg->total; inner_count++)
2481     {
2482 #if VERBOSE_TESTING
2483       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Connecting peer %d to peer %d\n",
2484                   outer_count, inner_count);
2485 #endif
2486       connect_attempts += proc (pg, outer_count, inner_count, list, check);
2487       update_meter (conn_meter);
2488     }
2489   }
2490   reset_meter (conn_meter);
2491   free_meter (conn_meter);
2492   return connect_attempts;
2493 }
2494
2495 #if !OLD
2496 /**
2497  * Iterator over hash map entries.
2498  *
2499  * @param cls closure the peer group
2500  * @param key the key stored in the hashmap is the
2501  *            index of the peer to connect to
2502  * @param value value in the hash map, handle to the peer daemon
2503  * @return GNUNET_YES if we should continue to
2504  *         iterate,
2505  *         GNUNET_NO if not.
2506  */
2507 static int
2508 unblacklist_iterator (void *cls, const GNUNET_HashCode * key, void *value)
2509 {
2510   struct UnblacklistContext *un_ctx = cls;
2511   uint32_t second_pos;
2512
2513   uid_from_hash (key, &second_pos);
2514
2515   unblacklist_connections (un_ctx->pg, un_ctx->first_uid, second_pos);
2516
2517   return GNUNET_YES;
2518 }
2519 #endif
2520
2521 #if !OLD
2522 /**
2523  * Create a blacklist topology based on the allowed topology
2524  * which disallows any connections not in the allowed topology
2525  * at the transport level.
2526  *
2527  * @param pg the peergroup to create the topology on
2528  * @param proc the connection processor to call to allow
2529  *        up connections between two peers
2530  *
2531  * @return the number of connections that were set up
2532  *
2533  */
2534 static unsigned int
2535 copy_allowed (struct GNUNET_TESTING_PeerGroup *pg,
2536               GNUNET_TESTING_ConnectionProcessor proc)
2537 {
2538   unsigned int count;
2539   unsigned int total;
2540   struct PeerConnection *iter;
2541
2542 #if !OLD
2543   struct UnblacklistContext un_ctx;
2544
2545   un_ctx.pg = pg;
2546 #endif
2547   total = 0;
2548   for (count = 0; count < pg->total - 1; count++)
2549   {
2550 #if OLD
2551     iter = pg->peers[count].allowed_peers_head;
2552     while (iter != NULL)
2553     {
2554       remove_connections (pg, count, iter->index, BLACKLIST, GNUNET_YES);
2555       //unblacklist_connections(pg, count, iter->index);
2556       iter = iter->next;
2557     }
2558 #else
2559     un_ctx.first_uid = count;
2560     total +=
2561         GNUNET_CONTAINER_multihashmap_iterate (pg->peers[count].allowed_peers,
2562                                                &unblacklist_iterator, &un_ctx);
2563 #endif
2564   }
2565   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Unblacklisted %u peers\n", total);
2566   return total;
2567 }
2568 #endif
2569
2570 /**
2571  * Create a topology given a peer group (set of running peers)
2572  * and a connection processor.
2573  *
2574  * @param pg the peergroup to create the topology on
2575  * @param proc the connection processor to call to actually set
2576  *        up connections between two peers
2577  * @param list which list should be modified
2578  *
2579  * @return the number of connections that were set up
2580  *
2581  */
2582 static unsigned int
2583 create_line (struct GNUNET_TESTING_PeerGroup *pg,
2584              GNUNET_TESTING_ConnectionProcessor proc, enum PeerLists list)
2585 {
2586   unsigned int count;
2587   unsigned int connect_attempts;
2588
2589   connect_attempts = 0;
2590   /* Connect each peer to the next highest numbered peer */
2591   for (count = 0; count < pg->total - 1; count++)
2592   {
2593 #if VERBOSE_TESTING
2594     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Connecting peer %d to peer %d\n",
2595                 count, count + 1);
2596 #endif
2597     connect_attempts += proc (pg, count, count + 1, list, GNUNET_YES);
2598   }
2599
2600   return connect_attempts;
2601 }
2602
2603 /**
2604  * Create a topology given a peer group (set of running peers)
2605  * and a connection processor.
2606  *
2607  * @param pg the peergroup to create the topology on
2608  * @param filename the file to read topology information from
2609  * @param proc the connection processor to call to actually set
2610  *        up connections between two peers
2611  * @param list the peer list to use
2612  *
2613  * @return the number of connections that were set up
2614  *
2615  */
2616 static unsigned int
2617 create_from_file (struct GNUNET_TESTING_PeerGroup *pg, char *filename,
2618                   GNUNET_TESTING_ConnectionProcessor proc, enum PeerLists list)
2619 {
2620   int connect_attempts;
2621   unsigned int first_peer_index;
2622   unsigned int second_peer_index;
2623   struct stat frstat;
2624   int count;
2625   char *data;
2626   const char *buf;
2627   unsigned int total_peers;
2628   enum States curr_state;
2629
2630   connect_attempts = 0;
2631   if (GNUNET_OK != GNUNET_DISK_file_test (filename))
2632     GNUNET_DISK_fn_write (filename, NULL, 0, GNUNET_DISK_PERM_USER_READ);
2633
2634   if ((0 != STAT (filename, &frstat)) || (frstat.st_size == 0))
2635   {
2636     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2637                 "Could not open file `%s' specified for topology!", filename);
2638     return connect_attempts;
2639   }
2640
2641   data = GNUNET_malloc_large (frstat.st_size);
2642   GNUNET_assert (data != NULL);
2643   if (frstat.st_size != GNUNET_DISK_fn_read (filename, data, frstat.st_size))
2644   {
2645     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2646                 "Could not read file %s specified for host list, ending test!",
2647                 filename);
2648     GNUNET_free (data);
2649     return connect_attempts;
2650   }
2651
2652   buf = data;
2653   count = 0;
2654   first_peer_index = 0;
2655   /* First line should contain a single integer, specifying the number of peers */
2656   /* Each subsequent line should contain this format PEER_INDEX:OTHER_PEER_INDEX[,...] */
2657   curr_state = NUM_PEERS;
2658   while (count < frstat.st_size - 1)
2659   {
2660     if ((buf[count] == '\n') || (buf[count] == ' '))
2661     {
2662       count++;
2663       continue;
2664     }
2665
2666     switch (curr_state)
2667     {
2668     case NUM_PEERS:
2669       errno = 0;
2670       total_peers = strtoul (&buf[count], NULL, 10);
2671       if (errno != 0)
2672       {
2673         GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2674                     "Failed to read number of peers from topology file!\n");
2675         GNUNET_free (data);
2676         return connect_attempts;
2677       }
2678 #if DEBUG_TESTING
2679       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Found %u total peers in topology\n",
2680                   total_peers);
2681 #endif
2682       GNUNET_assert (total_peers == pg->total);
2683       curr_state = PEER_INDEX;
2684       while ((buf[count] != '\n') && (count < frstat.st_size - 1))
2685         count++;
2686       count++;
2687       break;
2688     case PEER_INDEX:
2689       errno = 0;
2690       first_peer_index = strtoul (&buf[count], NULL, 10);
2691       if (errno != 0)
2692       {
2693         GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2694                     "Failed to read peer index from topology file!\n");
2695         GNUNET_free (data);
2696         return connect_attempts;
2697       }
2698       while ((buf[count] != ':') && (count < frstat.st_size - 1))
2699         count++;
2700       count++;
2701       curr_state = OTHER_PEER_INDEX;
2702       break;
2703     case COLON:
2704       if (1 == sscanf (&buf[count], ":"))
2705         curr_state = OTHER_PEER_INDEX;
2706       count++;
2707       break;
2708     case OTHER_PEER_INDEX:
2709       errno = 0;
2710       second_peer_index = strtoul (&buf[count], NULL, 10);
2711       if (errno != 0)
2712       {
2713         GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2714                     "Failed to peer index from topology file!\n");
2715         GNUNET_free (data);
2716         return connect_attempts;
2717       }
2718       /* Assume file is written with first peer 1, but array index is 0 */
2719       connect_attempts +=
2720           proc (pg, first_peer_index - 1, second_peer_index - 1, list,
2721                 GNUNET_YES);
2722       while ((buf[count] != '\n') && (buf[count] != ',') &&
2723              (count < frstat.st_size - 1))
2724         count++;
2725       if (buf[count] == '\n')
2726       {
2727         curr_state = PEER_INDEX;
2728       }
2729       else if (buf[count] != ',')
2730       {
2731         curr_state = OTHER_PEER_INDEX;
2732       }
2733       count++;
2734       break;
2735     default:
2736       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2737                   "Found bad data in topology file while in state %d!\n",
2738                   curr_state);
2739       GNUNET_break (0);
2740       GNUNET_free (data);
2741       return connect_attempts;
2742     }
2743   }
2744   GNUNET_free (data);
2745   return connect_attempts;
2746 }
2747
2748 /**
2749  * Create a topology given a peer group (set of running peers)
2750  * and a connection processor.
2751  *
2752  * @param pg the peergroup to create the topology on
2753  * @param proc the connection processor to call to actually set
2754  *        up connections between two peers
2755  * @param list the peer list to use
2756  *
2757  * @return the number of connections that were set up
2758  *
2759  */
2760 static unsigned int
2761 create_ring (struct GNUNET_TESTING_PeerGroup *pg,
2762              GNUNET_TESTING_ConnectionProcessor proc, enum PeerLists list)
2763 {
2764   unsigned int count;
2765   int connect_attempts;
2766
2767   connect_attempts = 0;
2768
2769   /* Connect each peer to the next highest numbered peer */
2770   for (count = 0; count < pg->total - 1; count++)
2771   {
2772 #if VERBOSE_TESTING
2773     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Connecting peer %d to peer %d\n",
2774                 count, count + 1);
2775 #endif
2776     connect_attempts += proc (pg, count, count + 1, list, GNUNET_YES);
2777   }
2778
2779   /* Connect the last peer to the first peer */
2780   connect_attempts += proc (pg, pg->total - 1, 0, list, GNUNET_YES);
2781
2782   return connect_attempts;
2783 }
2784
2785 #if !OLD
2786 /**
2787  * Iterator for writing friends of a peer to a file.
2788  *
2789  * @param cls closure, an open writable file handle
2790  * @param key the key the daemon was stored under
2791  * @param value the GNUNET_TESTING_Daemon that needs to be written.
2792  *
2793  * @return GNUNET_YES to continue iteration
2794  *
2795  * TODO: Could replace friend_file_iterator and blacklist_file_iterator
2796  *       with a single file_iterator that takes a closure which contains
2797  *       the prefix to write before the peer.  Then this could be used
2798  *       for blacklisting multiple transports and writing the friend
2799  *       file.  I'm sure *someone* will complain loudly about other
2800  *       things that negate these functions even existing so no point in
2801  *       "fixing" now.
2802  */
2803 static int
2804 friend_file_iterator (void *cls, const GNUNET_HashCode * key, void *value)
2805 {
2806   FILE *temp_friend_handle = cls;
2807   struct GNUNET_TESTING_Daemon *peer = value;
2808   struct GNUNET_PeerIdentity *temppeer;
2809   struct GNUNET_CRYPTO_HashAsciiEncoded peer_enc;
2810
2811   temppeer = &peer->id;
2812   GNUNET_CRYPTO_hash_to_enc (&temppeer->hashPubKey, &peer_enc);
2813   FPRINTF (temp_friend_handle, "%s\n", (char *) &peer_enc);
2814
2815   return GNUNET_YES;
2816 }
2817
2818 struct BlacklistContext
2819 {
2820   /*
2821    * The (open) file handle to write to
2822    */
2823   FILE *temp_file_handle;
2824
2825   /*
2826    * The transport that this peer will be blacklisted on.
2827    */
2828   char *transport;
2829 };
2830
2831 /**
2832  * Iterator for writing blacklist data to appropriate files.
2833  *
2834  * @param cls closure, an open writable file handle
2835  * @param key the key the daemon was stored under
2836  * @param value the GNUNET_TESTING_Daemon that needs to be written.
2837  *
2838  * @return GNUNET_YES to continue iteration
2839  */
2840 static int
2841 blacklist_file_iterator (void *cls, const GNUNET_HashCode * key, void *value)
2842 {
2843   struct BlacklistContext *blacklist_ctx = cls;
2844   struct GNUNET_TESTING_Daemon *peer = value;
2845   struct GNUNET_PeerIdentity *temppeer;
2846   struct GNUNET_CRYPTO_HashAsciiEncoded peer_enc;
2847
2848   temppeer = &peer->id;
2849   GNUNET_CRYPTO_hash_to_enc (&temppeer->hashPubKey, &peer_enc);
2850   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Writing entry %s:%s to file\n",
2851               blacklist_ctx->transport, (char *) &peer_enc);
2852   FPRINTF (blacklist_ctx->temp_file_handle, "%s:%s\n", blacklist_ctx->transport,
2853            (char *) &peer_enc);
2854
2855   return GNUNET_YES;
2856 }
2857 #endif
2858
2859 /*
2860  * Create the friend files based on the PeerConnection's
2861  * of each peer in the peer group, and copy the files
2862  * to the appropriate place
2863  *
2864  * @param pg the peer group we are dealing with
2865  */
2866 static int
2867 create_and_copy_friend_files (struct GNUNET_TESTING_PeerGroup *pg)
2868 {
2869   FILE *temp_friend_handle;
2870   unsigned int pg_iter;
2871   char *temp_service_path;
2872   struct GNUNET_OS_Process **procarr;
2873   char *arg;
2874   char *mytemp;
2875
2876 #if NOT_STUPID
2877   enum GNUNET_OS_ProcessStatusType type;
2878   unsigned long return_code;
2879   int count;
2880   int max_wait = 10;
2881 #endif
2882   int ret;
2883
2884   ret = GNUNET_OK;
2885 #if OLD
2886   struct GNUNET_CRYPTO_HashAsciiEncoded peer_enc;
2887   struct PeerConnection *conn_iter;
2888 #endif
2889   procarr = GNUNET_malloc (sizeof (struct GNUNET_OS_Process *) * pg->total);
2890   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
2891   {
2892     mytemp = GNUNET_DISK_mktemp ("friends");
2893     GNUNET_assert (mytemp != NULL);
2894     temp_friend_handle = FOPEN (mytemp, "wt");
2895     GNUNET_assert (temp_friend_handle != NULL);
2896 #if OLD
2897     conn_iter = pg->peers[pg_iter].allowed_peers_head;
2898     while (conn_iter != NULL)
2899     {
2900       GNUNET_CRYPTO_hash_to_enc (&pg->peers[conn_iter->index].daemon->
2901                                  id.hashPubKey, &peer_enc);
2902       FPRINTF (temp_friend_handle, "%s\n", (char *) &peer_enc);
2903       conn_iter = conn_iter->next;
2904     }
2905 #else
2906     GNUNET_CONTAINER_multihashmap_iterate (pg->peers[pg_iter].allowed_peers,
2907                                            &friend_file_iterator,
2908                                            temp_friend_handle);
2909 #endif
2910     FCLOSE (temp_friend_handle);
2911
2912     if (GNUNET_OK !=
2913         GNUNET_CONFIGURATION_get_value_string (pg->peers[pg_iter].daemon->cfg,
2914                                                "PATHS", "SERVICEHOME",
2915                                                &temp_service_path))
2916     {
2917       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
2918                   _
2919                   ("No `%s' specified in peer configuration in section `%s', cannot copy friends file!\n"),
2920                   "SERVICEHOME", "PATHS");
2921       if (UNLINK (mytemp) != 0)
2922         GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "unlink", mytemp);
2923       GNUNET_free (mytemp);
2924       break;
2925     }
2926
2927     if (pg->peers[pg_iter].daemon->hostname == NULL)    /* Local, just copy the file */
2928     {
2929       GNUNET_asprintf (&arg, "%s/friends", temp_service_path);
2930 #if VERBOSE_TESTING
2931       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2932                   "Copying file with RENAME(%s,%s)\n", mytemp, arg);
2933 #endif
2934       RENAME (mytemp, arg);
2935       procarr[pg_iter] = NULL;
2936       GNUNET_free (arg);
2937     }
2938     else                        /* Remote, scp the file to the correct place */
2939     {
2940       if (NULL != pg->peers[pg_iter].daemon->username)
2941         GNUNET_asprintf (&arg, "%s@%s:%s/friends",
2942                          pg->peers[pg_iter].daemon->username,
2943                          pg->peers[pg_iter].daemon->hostname,
2944                          temp_service_path);
2945       else
2946         GNUNET_asprintf (&arg, "%s:%s/friends",
2947                          pg->peers[pg_iter].daemon->hostname,
2948                          temp_service_path);
2949       procarr[pg_iter] =
2950         GNUNET_OS_start_process (GNUNET_NO, NULL, NULL, "scp", "scp", mytemp, arg, NULL);
2951       GNUNET_assert (procarr[pg_iter] != NULL);
2952       ret = GNUNET_OS_process_wait (procarr[pg_iter]);  /* FIXME: schedule this, throttle! */
2953       GNUNET_OS_process_close (procarr[pg_iter]);
2954       if (ret != GNUNET_OK)
2955       {
2956         /* FIXME: free contents of 'procarr' array */
2957         GNUNET_free (procarr);
2958         GNUNET_free (temp_service_path);
2959         GNUNET_free (mytemp);
2960         GNUNET_free (arg);
2961         return ret;
2962       }
2963       procarr[pg_iter] = NULL;
2964 #if VERBOSE_TESTING
2965       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2966                   "Copying file with command scp %s %s\n", mytemp, arg);
2967 #endif
2968       GNUNET_free (arg);
2969     }
2970     GNUNET_free (temp_service_path);
2971     GNUNET_free (mytemp);
2972   }
2973
2974 #if NOT_STUPID
2975   count = 0;
2976   ret = GNUNET_SYSERR;
2977   while ((count < max_wait) && (ret != GNUNET_OK))
2978   {
2979     ret = GNUNET_OK;
2980     for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
2981     {
2982 #if VERBOSE_TESTING
2983       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Checking copy status of file %d\n",
2984                   pg_iter);
2985 #endif
2986       if (procarr[pg_iter] != NULL)     /* Check for already completed! */
2987       {
2988         if (GNUNET_OS_process_status (procarr[pg_iter], &type, &return_code) !=
2989             GNUNET_OK)
2990         {
2991           ret = GNUNET_SYSERR;
2992         }
2993         else if ((type != GNUNET_OS_PROCESS_EXITED) || (return_code != 0))
2994         {
2995           ret = GNUNET_SYSERR;
2996         }
2997         else
2998         {
2999           GNUNET_OS_process_close (procarr[pg_iter]);
3000           procarr[pg_iter] = NULL;
3001 #if VERBOSE_TESTING
3002           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "File %d copied\n", pg_iter);
3003 #endif
3004         }
3005       }
3006     }
3007     count++;
3008     if (ret == GNUNET_SYSERR)
3009     {
3010       /* FIXME: why sleep here? -CG */
3011       sleep (1);
3012     }
3013   }
3014
3015 #if VERBOSE_TESTING
3016   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3017               _("Finished copying all friend files!\n"));
3018 #endif
3019 #endif
3020   GNUNET_free (procarr);
3021   return ret;
3022 }
3023
3024 /*
3025  * Create the blacklist files based on the PeerConnection's
3026  * of each peer in the peer group, and copy the files
3027  * to the appropriate place.
3028  *
3029  * @param pg the peer group we are dealing with
3030  * @param transports space delimited list of transports to blacklist
3031  */
3032 static int
3033 create_and_copy_blacklist_files (struct GNUNET_TESTING_PeerGroup *pg,
3034                                  const char *transports)
3035 {
3036   FILE *temp_file_handle;
3037   unsigned int pg_iter;
3038   char *temp_service_path;
3039   struct GNUNET_OS_Process **procarr;
3040   char *arg;
3041   char *mytemp;
3042   enum GNUNET_OS_ProcessStatusType type;
3043   unsigned long return_code;
3044   int count;
3045   int ret;
3046   int max_wait = 10;
3047   int transport_len;
3048   unsigned int i;
3049   char *pos;
3050   char *temp_transports;
3051
3052 #if OLD
3053   struct GNUNET_CRYPTO_HashAsciiEncoded peer_enc;
3054   struct PeerConnection *conn_iter;
3055 #else
3056   static struct BlacklistContext blacklist_ctx;
3057 #endif
3058
3059   procarr = GNUNET_malloc (sizeof (struct GNUNET_OS_Process *) * pg->total);
3060   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
3061   {
3062     mytemp = GNUNET_DISK_mktemp ("blacklist");
3063     GNUNET_assert (mytemp != NULL);
3064     temp_file_handle = FOPEN (mytemp, "wt");
3065     GNUNET_assert (temp_file_handle != NULL);
3066     temp_transports = GNUNET_strdup (transports);
3067 #if !OLD
3068     blacklist_ctx.temp_file_handle = temp_file_handle;
3069 #endif
3070     transport_len = strlen (temp_transports) + 1;
3071     pos = NULL;
3072
3073     for (i = 0; i < transport_len; i++)
3074     {
3075       if ((temp_transports[i] == ' ') && (pos == NULL))
3076         continue;               /* At start of string (whitespace) */
3077       else if ((temp_transports[i] == ' ') || (temp_transports[i] == '\0'))     /* At end of string */
3078       {
3079         temp_transports[i] = '\0';
3080 #if OLD
3081         conn_iter = pg->peers[pg_iter].blacklisted_peers_head;
3082         while (conn_iter != NULL)
3083         {
3084           GNUNET_CRYPTO_hash_to_enc (&pg->peers[conn_iter->index].daemon->
3085                                      id.hashPubKey, &peer_enc);
3086           FPRINTF (temp_file_handle, "%s:%s\n", pos, (char *) &peer_enc);
3087           conn_iter = conn_iter->next;
3088         }
3089 #else
3090         blacklist_ctx.transport = pos;
3091         (void) GNUNET_CONTAINER_multihashmap_iterate (pg->
3092                                                       peers
3093                                                       [pg_iter].blacklisted_peers,
3094                                                       &blacklist_file_iterator,
3095                                                       &blacklist_ctx);
3096 #endif
3097         pos = NULL;
3098       }                         /* At beginning of actual string */
3099       else if (pos == NULL)
3100       {
3101         pos = &temp_transports[i];
3102       }
3103     }
3104
3105     GNUNET_free (temp_transports);
3106     FCLOSE (temp_file_handle);
3107
3108     if (GNUNET_OK !=
3109         GNUNET_CONFIGURATION_get_value_string (pg->peers[pg_iter].daemon->cfg,
3110                                                "PATHS", "SERVICEHOME",
3111                                                &temp_service_path))
3112     {
3113       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3114                   _
3115                   ("No `%s' specified in peer configuration in section `%s', cannot copy friends file!\n"),
3116                   "SERVICEHOME", "PATHS");
3117       if (UNLINK (mytemp) != 0)
3118         GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "unlink", mytemp);
3119       GNUNET_free (mytemp);
3120       break;
3121     }
3122
3123     if (pg->peers[pg_iter].daemon->hostname == NULL)    /* Local, just copy the file */
3124     {
3125       GNUNET_asprintf (&arg, "%s/blacklist", temp_service_path);
3126       RENAME (mytemp, arg);
3127       procarr[pg_iter] = NULL;
3128 #if VERBOSE_TESTING
3129       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3130                   _("Copying file with RENAME (%s,%s)\n"), mytemp, arg);
3131 #endif
3132
3133       GNUNET_free (arg);
3134     }
3135     else                        /* Remote, scp the file to the correct place */
3136     {
3137       if (NULL != pg->peers[pg_iter].daemon->username)
3138         GNUNET_asprintf (&arg, "%s@%s:%s/blacklist",
3139                          pg->peers[pg_iter].daemon->username,
3140                          pg->peers[pg_iter].daemon->hostname,
3141                          temp_service_path);
3142       else
3143         GNUNET_asprintf (&arg, "%s:%s/blacklist",
3144                          pg->peers[pg_iter].daemon->hostname,
3145                          temp_service_path);
3146       procarr[pg_iter] =
3147         GNUNET_OS_start_process (GNUNET_NO, NULL, NULL, "scp", "scp", mytemp, arg, NULL);
3148       GNUNET_assert (procarr[pg_iter] != NULL);
3149       GNUNET_OS_process_wait (procarr[pg_iter]);        /* FIXME: add scheduled blacklist file copy that parallelizes file copying! */
3150
3151 #if VERBOSE_TESTING
3152       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3153                   _("Copying file with command scp %s %s\n"), mytemp, arg);
3154 #endif
3155       GNUNET_free (arg);
3156     }
3157     GNUNET_free (temp_service_path);
3158     GNUNET_free (mytemp);
3159   }
3160
3161   count = 0;
3162   ret = GNUNET_SYSERR;
3163   while ((count < max_wait) && (ret != GNUNET_OK))
3164   {
3165     ret = GNUNET_OK;
3166     for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
3167     {
3168 #if VERBOSE_TESTING
3169       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3170                   _("Checking copy status of file %d\n"), pg_iter);
3171 #endif
3172       if (procarr[pg_iter] != NULL)     /* Check for already completed! */
3173       {
3174         if (GNUNET_OS_process_status (procarr[pg_iter], &type, &return_code) !=
3175             GNUNET_OK)
3176         {
3177           ret = GNUNET_SYSERR;
3178         }
3179         else if ((type != GNUNET_OS_PROCESS_EXITED) || (return_code != 0))
3180         {
3181           ret = GNUNET_SYSERR;
3182         }
3183         else
3184         {
3185           GNUNET_OS_process_close (procarr[pg_iter]);
3186           procarr[pg_iter] = NULL;
3187 #if VERBOSE_TESTING
3188           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, _("File %d copied\n"), pg_iter);
3189 #endif
3190         }
3191       }
3192     }
3193     count++;
3194     if (ret == GNUNET_SYSERR)
3195     {
3196       /* FIXME: why sleep here? -CG */
3197       sleep (1);
3198     }
3199   }
3200
3201 #if VERBOSE_TESTING
3202   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3203               _("Finished copying all blacklist files!\n"));
3204 #endif
3205   GNUNET_free (procarr);
3206   return ret;
3207 }
3208
3209 /* Forward Declaration */
3210 static void
3211 schedule_connect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
3212
3213 /**
3214  * Choose a random peer's next connection to create, and
3215  * call schedule_connect to set up the connect task.
3216  *
3217  * @param pg the peer group to connect
3218  */
3219 static void
3220 preschedule_connect (struct GNUNET_TESTING_PeerGroup *pg)
3221 {
3222   struct ConnectTopologyContext *ct_ctx = &pg->ct_ctx;
3223   struct PeerConnection *connection_iter;
3224   struct ConnectContext *connect_context;
3225   uint32_t random_peer;
3226
3227   if (ct_ctx->remaining_connections == 0)
3228     return;
3229   random_peer =
3230       GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, pg->total);
3231   while (pg->peers[random_peer].connect_peers_head == NULL)
3232     random_peer =
3233         GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, pg->total);
3234
3235   connection_iter = pg->peers[random_peer].connect_peers_head;
3236   connect_context = GNUNET_malloc (sizeof (struct ConnectContext));
3237   connect_context->first_index = random_peer;
3238   connect_context->second_index = connection_iter->index;
3239   connect_context->ct_ctx = ct_ctx;
3240   connect_context->task =
3241       GNUNET_SCHEDULER_add_now (&schedule_connect, connect_context);
3242   GNUNET_CONTAINER_DLL_insert (pg->cc_head, pg->cc_tail, connect_context);
3243   GNUNET_CONTAINER_DLL_remove (pg->peers[random_peer].connect_peers_head,
3244                                pg->peers[random_peer].connect_peers_tail,
3245                                connection_iter);
3246   GNUNET_free (connection_iter);
3247   ct_ctx->remaining_connections--;
3248 }
3249
3250 #if USE_SEND_HELLOS
3251 /* Forward declaration */
3252 static void
3253 schedule_send_hellos (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
3254
3255 /**
3256  * Close connections and free the hello context.
3257  *
3258  * @param cls the 'struct SendHelloContext *'
3259  * @param tc scheduler context
3260  */
3261 static void
3262 free_hello_context (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3263 {
3264   struct SendHelloContext *send_hello_context = cls;
3265
3266   if (send_hello_context->peer->daemon->server != NULL)
3267   {
3268     GNUNET_CORE_disconnect (send_hello_context->peer->daemon->server);
3269     send_hello_context->peer->daemon->server = NULL;
3270   }
3271   if (send_hello_context->peer->daemon->th != NULL)
3272   {
3273     GNUNET_TRANSPORT_disconnect (send_hello_context->peer->daemon->th);
3274     send_hello_context->peer->daemon->th = NULL;
3275   }
3276   if (send_hello_context->core_connect_task != GNUNET_SCHEDULER_NO_TASK)
3277   {
3278     GNUNET_SCHEDULER_cancel (send_hello_context->core_connect_task);
3279     send_hello_context->core_connect_task = GNUNET_SCHEDULER_NO_TASK;
3280   }
3281   send_hello_context->pg->outstanding_connects--;
3282   GNUNET_free (send_hello_context);
3283 }
3284
3285 /**
3286  * For peers that haven't yet connected, notify
3287  * the caller that they have failed (timeout).
3288  *
3289  * @param cls the 'struct SendHelloContext *'
3290  * @param tc scheduler context
3291  */
3292 static void
3293 notify_remaining_connections_failed (void *cls,
3294                                      const struct GNUNET_SCHEDULER_TaskContext
3295                                      *tc)
3296 {
3297   struct SendHelloContext *send_hello_context = cls;
3298   struct GNUNET_TESTING_PeerGroup *pg = send_hello_context->pg;
3299   struct PeerConnection *connection;
3300
3301   GNUNET_CORE_disconnect (send_hello_context->peer->daemon->server);
3302   send_hello_context->peer->daemon->server = NULL;
3303
3304   connection = send_hello_context->peer->connect_peers_head;
3305
3306   while (connection != NULL)
3307   {
3308     if (pg->notify_connection != NULL)
3309     {
3310       pg->notify_connection (pg->notify_connection_cls, &send_hello_context->peer->daemon->id, &pg->peers[connection->index].daemon->id, 0,     /* FIXME */
3311                              send_hello_context->peer->daemon->cfg,
3312                              pg->peers[connection->index].daemon->cfg,
3313                              send_hello_context->peer->daemon,
3314                              pg->peers[connection->index].daemon,
3315                              "Peers failed to connect (timeout)");
3316     }
3317     GNUNET_CONTAINER_DLL_remove (send_hello_context->peer->connect_peers_head,
3318                                  send_hello_context->peer->connect_peers_tail,
3319                                  connection);
3320     GNUNET_free (connection);
3321     connection = connection->next;
3322   }
3323   GNUNET_SCHEDULER_add_now (&free_hello_context, send_hello_context);
3324 #if BAD
3325   other_peer = &pg->peers[connection->index];
3326 #endif
3327 }
3328
3329 /**
3330  * For peers that haven't yet connected, send
3331  * CORE connect requests.
3332  *
3333  * @param cls the 'struct SendHelloContext *'
3334  * @param tc scheduler context
3335  */
3336 static void
3337 send_core_connect_requests (void *cls,
3338                             const struct GNUNET_SCHEDULER_TaskContext *tc)
3339 {
3340   struct SendHelloContext *send_hello_context = cls;
3341   struct PeerConnection *conn;
3342
3343   GNUNET_assert (send_hello_context->peer->daemon->server != NULL);
3344
3345   send_hello_context->core_connect_task = GNUNET_SCHEDULER_NO_TASK;
3346
3347   send_hello_context->connect_attempts++;
3348   if (send_hello_context->connect_attempts <
3349       send_hello_context->pg->ct_ctx.connect_attempts)
3350   {
3351     conn = send_hello_context->peer->connect_peers_head;
3352     while (conn != NULL)
3353     {
3354       GNUNET_TRANSPORT_try_connect (send_hello_context->peer->daemon->th,
3355                                     &send_hello_context->pg->peers[conn->
3356                                                                    index].daemon->
3357                                     id);
3358       conn = conn->next;
3359     }
3360     send_hello_context->core_connect_task =
3361         GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_divide
3362                                       (send_hello_context->pg->
3363                                        ct_ctx.connect_timeout,
3364                                        send_hello_context->pg->
3365                                        ct_ctx.connect_attempts),
3366                                       &send_core_connect_requests,
3367                                       send_hello_context);
3368   }
3369   else
3370   {
3371     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3372                 "Timeout before all connections created, marking rest as failed!\n");
3373     GNUNET_SCHEDULER_add_now (&notify_remaining_connections_failed,
3374                               send_hello_context);
3375   }
3376
3377 }
3378
3379 /**
3380  * Success, connection is up.  Signal client our success.
3381  *
3382  * @param cls our "struct SendHelloContext"
3383  * @param peer identity of the peer that has connected
3384  * @param atsi performance information
3385  *
3386  * FIXME: remove peers from BOTH lists, call notify twice, should
3387  * double the speed of connections as long as the list iteration
3388  * doesn't take too long!
3389  */
3390 static void
3391 core_connect_notify (void *cls, const struct GNUNET_PeerIdentity *peer,
3392                      const struct GNUNET_ATS_Information *atsi)
3393 {
3394   struct SendHelloContext *send_hello_context = cls;
3395   struct PeerConnection *connection;
3396   struct GNUNET_TESTING_PeerGroup *pg = send_hello_context->pg;
3397
3398 #if BAD
3399   struct PeerData *other_peer;
3400 #endif
3401 #if DEBUG_TESTING
3402   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Connected peer %s to peer %s\n",
3403               ctx->d1->shortname, GNUNET_i2s (peer));
3404 #endif
3405
3406   if (0 ==
3407       memcmp (&send_hello_context->peer->daemon->id, peer,
3408               sizeof (struct GNUNET_PeerIdentity)))
3409     return;
3410
3411   connection = send_hello_context->peer->connect_peers_head;
3412 #if BAD
3413   other_peer = NULL;
3414 #endif
3415
3416   while ((connection != NULL) &&
3417          (0 !=
3418           memcmp (&pg->peers[connection->index].daemon->id, peer,
3419                   sizeof (struct GNUNET_PeerIdentity))))
3420   {
3421     connection = connection->next;
3422   }
3423
3424   if (connection == NULL)
3425   {
3426     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3427                 "Connected peer %s to %s, not in list (no problem(?))\n",
3428                 GNUNET_i2s (peer), send_hello_context->peer->daemon->shortname);
3429   }
3430   else
3431   {
3432 #if BAD
3433     other_peer = &pg->peers[connection->index];
3434 #endif
3435     if (pg->notify_connection != NULL)
3436     {
3437       pg->notify_connection (pg->notify_connection_cls, &send_hello_context->peer->daemon->id, peer, 0, /* FIXME */
3438                              send_hello_context->peer->daemon->cfg,
3439                              pg->peers[connection->index].daemon->cfg,
3440                              send_hello_context->peer->daemon,
3441                              pg->peers[connection->index].daemon, NULL);
3442     }
3443     GNUNET_CONTAINER_DLL_remove (send_hello_context->peer->connect_peers_head,
3444                                  send_hello_context->peer->connect_peers_tail,
3445                                  connection);
3446     GNUNET_free (connection);
3447   }
3448
3449 #if BAD
3450   /* Notify of reverse connection and remove from other peers list of outstanding */
3451   if (other_peer != NULL)
3452   {
3453     connection = other_peer->connect_peers_head;
3454     while ((connection != NULL) &&
3455            (0 !=
3456             memcmp (&send_hello_context->peer->daemon->id,
3457                     &pg->peers[connection->index].daemon->id,
3458                     sizeof (struct GNUNET_PeerIdentity))))
3459     {
3460       connection = connection->next;
3461     }
3462     if (connection != NULL)
3463     {
3464       if (pg->notify_connection != NULL)
3465       {
3466         pg->notify_connection (pg->notify_connection_cls, peer, &send_hello_context->peer->daemon->id, 0,       /* FIXME */
3467                                pg->peers[connection->index].daemon->cfg,
3468                                send_hello_context->peer->daemon->cfg,
3469                                pg->peers[connection->index].daemon,
3470                                send_hello_context->peer->daemon, NULL);
3471       }
3472
3473       GNUNET_CONTAINER_DLL_remove (other_peer->connect_peers_head,
3474                                    other_peer->connect_peers_tail, connection);
3475       GNUNET_free (connection);
3476     }
3477   }
3478 #endif
3479
3480   if (send_hello_context->peer->connect_peers_head == NULL)
3481   {
3482     GNUNET_SCHEDULER_add_now (&free_hello_context, send_hello_context);
3483   }
3484 }
3485
3486 /**
3487  * Notify of a successful connection to the core service.
3488  *
3489  * @param cls a struct SendHelloContext *
3490  * @param server handle to the core service
3491  * @param my_identity the peer identity of this peer
3492  */
3493 void
3494 core_init (void *cls, struct GNUNET_CORE_Handle *server,
3495            struct GNUNET_PeerIdentity *my_identity)
3496 {
3497   struct SendHelloContext *send_hello_context = cls;
3498
3499   send_hello_context->core_ready = GNUNET_YES;
3500 }
3501
3502 /**
3503  * Function called once a hello has been sent
3504  * to the transport, move on to the next one
3505  * or go away forever.
3506  *
3507  * @param cls the 'struct SendHelloContext *'
3508  * @param tc scheduler context
3509  */
3510 static void
3511 hello_sent_callback (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3512 {
3513   struct SendHelloContext *send_hello_context = cls;
3514
3515   //unsigned int pg_iter;
3516   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
3517   {
3518     GNUNET_free (send_hello_context);
3519     return;
3520   }
3521
3522   send_hello_context->pg->remaining_hellos--;
3523 #if DEBUG_TESTING
3524   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sent HELLO, have %d remaining!\n",
3525               send_hello_context->pg->remaining_hellos);
3526 #endif
3527   if (send_hello_context->peer_pos == NULL)     /* All HELLOs (for this peer!) have been transmitted! */
3528   {
3529 #if DEBUG_TESTING
3530     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3531                 "All hellos for this peer sent, disconnecting transport!\n");
3532 #endif
3533     GNUNET_assert (send_hello_context->peer->daemon->th != NULL);
3534     GNUNET_TRANSPORT_disconnect (send_hello_context->peer->daemon->th);
3535     send_hello_context->peer->daemon->th = NULL;
3536     GNUNET_assert (send_hello_context->peer->daemon->server == NULL);
3537     send_hello_context->peer->daemon->server =
3538         GNUNET_CORE_connect (send_hello_context->peer->cfg, 1,
3539                              send_hello_context, &core_init,
3540                              &core_connect_notify, NULL, NULL, NULL, GNUNET_NO,
3541                              NULL, GNUNET_NO, no_handlers);
3542
3543     send_hello_context->core_connect_task =
3544         GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_divide
3545                                       (send_hello_context->pg->
3546                                        ct_ctx.connect_timeout,
3547                                        send_hello_context->pg->
3548                                        ct_ctx.connect_attempts),
3549                                       &send_core_connect_requests,
3550                                       send_hello_context);
3551   }
3552   else
3553     GNUNET_SCHEDULER_add_now (&schedule_send_hellos, send_hello_context);
3554 }
3555
3556 /**
3557  * Connect to a peer, give it all the HELLO's of those peers
3558  * we will later ask it to connect to.
3559  *
3560  * @param ct_ctx the overall connection context
3561  */
3562 static void
3563 schedule_send_hellos (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3564 {
3565   struct SendHelloContext *send_hello_context = cls;
3566   struct GNUNET_TESTING_PeerGroup *pg = send_hello_context->pg;
3567
3568   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
3569   {
3570     GNUNET_free (send_hello_context);
3571     return;
3572   }
3573
3574   GNUNET_assert (send_hello_context->peer_pos != NULL); /* All of the HELLO sends to be scheduled have been scheduled! */
3575
3576   if (((send_hello_context->peer->daemon->th == NULL) &&
3577        (pg->outstanding_connects > pg->max_outstanding_connections)) ||
3578       (pg->stop_connects == GNUNET_YES))
3579   {
3580 #if VERBOSE_TESTING > 2
3581     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3582                 _
3583                 ("Delaying connect, we have too many outstanding connections!\n"));
3584 #endif
3585     GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
3586                                   (GNUNET_TIME_UNIT_MILLISECONDS, 100),
3587                                   &schedule_send_hellos, send_hello_context);
3588   }
3589   else
3590   {
3591 #if VERBOSE_TESTING > 2
3592     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3593                 _("Creating connection, outstanding_connections is %d\n"),
3594                 outstanding_connects);
3595 #endif
3596     if (send_hello_context->peer->daemon->th == NULL)
3597     {
3598       pg->outstanding_connects++;       /* Actual TRANSPORT, CORE connections! */
3599       send_hello_context->peer->daemon->th =
3600           GNUNET_TRANSPORT_connect (send_hello_context->peer->cfg, NULL,
3601                                     send_hello_context, NULL, NULL, NULL);
3602     }
3603 #if DEBUG_TESTING
3604     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3605                 _("Offering HELLO of peer %s to peer %s\n"),
3606                 send_hello_context->peer->daemon->shortname,
3607                 pg->peers[send_hello_context->peer_pos->index].
3608                 daemon->shortname);
3609 #endif
3610     GNUNET_TRANSPORT_offer_hello (send_hello_context->peer->daemon->th,
3611                                   (const struct GNUNET_MessageHeader *)
3612                                   pg->peers[send_hello_context->peer_pos->
3613                                             index].daemon->hello,
3614                                   &hello_sent_callback, send_hello_context);
3615     send_hello_context->peer_pos = send_hello_context->peer_pos->next;
3616     GNUNET_assert (send_hello_context->peer->daemon->th != NULL);
3617   }
3618 }
3619 #endif
3620
3621 /**
3622  * Internal notification of a connection, kept so that we can ensure some connections
3623  * happen instead of flooding all testing daemons with requests to connect.
3624  */
3625 static void
3626 internal_connect_notify (void *cls, const struct GNUNET_PeerIdentity *first,
3627                          const struct GNUNET_PeerIdentity *second,
3628                          uint32_t distance,
3629                          const struct GNUNET_CONFIGURATION_Handle *first_cfg,
3630                          const struct GNUNET_CONFIGURATION_Handle *second_cfg,
3631                          struct GNUNET_TESTING_Daemon *first_daemon,
3632                          struct GNUNET_TESTING_Daemon *second_daemon,
3633                          const char *emsg)
3634 {
3635   struct ConnectContext *connect_ctx = cls;
3636   struct ConnectTopologyContext *ct_ctx = connect_ctx->ct_ctx;
3637   struct GNUNET_TESTING_PeerGroup *pg = ct_ctx->pg;
3638   struct PeerConnection *connection;
3639
3640   GNUNET_assert (NULL != connect_ctx->cc);
3641   connect_ctx->cc = NULL;
3642   GNUNET_assert (0 < pg->outstanding_connects);
3643   pg->outstanding_connects--;
3644   GNUNET_CONTAINER_DLL_remove (pg->cc_head, pg->cc_tail, connect_ctx);
3645   /*
3646    * Check whether the inverse connection has been scheduled yet,
3647    * if not, we can remove it from the other peers list and avoid
3648    * even trying to connect them again!
3649    */
3650   connection = pg->peers[connect_ctx->second_index].connect_peers_head;
3651 #if BAD
3652   other_peer = NULL;
3653 #endif
3654
3655   while ((connection != NULL) &&
3656          (0 !=
3657           memcmp (first, &pg->peers[connection->index].daemon->id,
3658                   sizeof (struct GNUNET_PeerIdentity))))
3659     connection = connection->next;
3660
3661   if (connection != NULL)       /* Can safely remove! */
3662   {
3663     GNUNET_assert (0 < ct_ctx->remaining_connections);
3664     ct_ctx->remaining_connections--;
3665     if (pg->notify_connection != NULL)  /* Notify of reverse connection */
3666       pg->notify_connection (pg->notify_connection_cls, second, first, distance,
3667                              second_cfg, first_cfg, second_daemon, first_daemon,
3668                              emsg);
3669
3670     GNUNET_CONTAINER_DLL_remove (pg->
3671                                  peers[connect_ctx->
3672                                        second_index].connect_peers_head,
3673                                  pg->peers[connect_ctx->
3674                                            second_index].connect_peers_tail,
3675                                  connection);
3676     GNUNET_free (connection);
3677   }
3678
3679   if (ct_ctx->remaining_connections == 0)
3680   {
3681     if (ct_ctx->notify_connections_done != NULL)
3682     {
3683       ct_ctx->notify_connections_done (ct_ctx->notify_cls, NULL);
3684       ct_ctx->notify_connections_done = NULL;
3685     }
3686   }
3687   else
3688     preschedule_connect (pg);
3689
3690   if (pg->notify_connection != NULL)
3691     pg->notify_connection (pg->notify_connection_cls, first, second, distance,
3692                            first_cfg, second_cfg, first_daemon, second_daemon,
3693                            emsg);
3694   GNUNET_free (connect_ctx);
3695 }
3696
3697 /**
3698  * Either delay a connection (because there are too many outstanding)
3699  * or schedule it for right now.
3700  *
3701  * @param cls a connection context
3702  * @param tc the task runtime context
3703  */
3704 static void
3705 schedule_connect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3706 {
3707   struct ConnectContext *connect_context = cls;
3708   struct GNUNET_TESTING_PeerGroup *pg = connect_context->ct_ctx->pg;
3709
3710   connect_context->task = GNUNET_SCHEDULER_NO_TASK;
3711   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
3712     return;
3713
3714   if ((pg->outstanding_connects > pg->max_outstanding_connections) ||
3715       (pg->stop_connects == GNUNET_YES))
3716   {
3717 #if VERBOSE_TESTING
3718     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3719                 _
3720                 ("Delaying connect, we have too many outstanding connections!\n"));
3721 #endif
3722     connect_context->task =
3723         GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
3724                                       (GNUNET_TIME_UNIT_MILLISECONDS, 100),
3725                                       &schedule_connect, connect_context);
3726     return;
3727   }
3728 #if VERBOSE_TESTING
3729   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3730               _
3731               ("Creating connection, outstanding_connections is %d (max %d)\n"),
3732               pg->outstanding_connects, pg->max_outstanding_connections);
3733 #endif
3734   pg->outstanding_connects++;
3735   pg->total_connects_scheduled++;
3736   GNUNET_assert (NULL == connect_context->cc);
3737   connect_context->cc =
3738       GNUNET_TESTING_daemons_connect (pg->
3739                                       peers[connect_context->
3740                                             first_index].daemon,
3741                                       pg->peers[connect_context->
3742                                                 second_index].daemon,
3743                                       connect_context->ct_ctx->connect_timeout,
3744                                       connect_context->ct_ctx->connect_attempts,
3745 #if USE_SEND_HELLOS
3746                                       GNUNET_NO,
3747 #else
3748                                       GNUNET_YES,
3749 #endif
3750                                       &internal_connect_notify,
3751                                       connect_context);
3752
3753 }
3754
3755 #if !OLD
3756 /**
3757  * Iterator for actually scheduling connections to be created
3758  * between two peers.
3759  *
3760  * @param cls closure, a GNUNET_TESTING_Daemon
3761  * @param key the key the second Daemon was stored under
3762  * @param value the GNUNET_TESTING_Daemon that the first is to connect to
3763  *
3764  * @return GNUNET_YES to continue iteration
3765  */
3766 static int
3767 connect_iterator (void *cls, const GNUNET_HashCode * key, void *value)
3768 {
3769   struct ConnectTopologyContext *ct_ctx = cls;
3770   struct PeerData *first = ct_ctx->first;
3771   struct GNUNET_TESTING_Daemon *second = value;
3772   struct ConnectContext *connect_context;
3773
3774   connect_context = GNUNET_malloc (sizeof (struct ConnectContext));
3775   connect_context->first = first->daemon;
3776   connect_context->second = second;
3777   connect_context->ct_ctx = ct_ctx;
3778   connect_context->task =
3779       GNUNET_SCHEDULER_add_now (&schedule_connect, connect_context);
3780   GNUNET_CONTAINER_DLL_insert (ct_ctx->pg->cc_head, ct_ctx->pg->cc_tail,
3781                                connect_context);
3782   return GNUNET_YES;
3783 }
3784 #endif
3785
3786 #if !OLD
3787 /**
3788  * Iterator for copying all entries in the allowed hashmap to the
3789  * connect hashmap.
3790  *
3791  * @param cls closure, a GNUNET_TESTING_Daemon
3792  * @param key the key the second Daemon was stored under
3793  * @param value the GNUNET_TESTING_Daemon that the first is to connect to
3794  *
3795  * @return GNUNET_YES to continue iteration
3796  */
3797 static int
3798 copy_topology_iterator (void *cls, const GNUNET_HashCode * key, void *value)
3799 {
3800   struct PeerData *first = cls;
3801
3802   GNUNET_assert (GNUNET_OK ==
3803                  GNUNET_CONTAINER_multihashmap_put (first->connect_peers, key,
3804                                                     value,
3805                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
3806
3807   return GNUNET_YES;
3808 }
3809 #endif
3810
3811 /**
3812  * Make the peers to connect the same as those that are allowed to be
3813  * connected.
3814  *
3815  * @param pg the peer group
3816  */
3817 static int
3818 copy_allowed_topology (struct GNUNET_TESTING_PeerGroup *pg)
3819 {
3820   unsigned int pg_iter;
3821   int ret;
3822   int total;
3823
3824 #if OLD
3825   struct PeerConnection *iter;
3826 #endif
3827   total = 0;
3828   ret = 0;
3829   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
3830   {
3831 #if OLD
3832     iter = pg->peers[pg_iter].allowed_peers_head;
3833     while (iter != NULL)
3834     {
3835       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3836                   "Creating connection between %d and %d\n", pg_iter,
3837                   iter->index);
3838       total += add_connections (pg, pg_iter, iter->index, CONNECT, GNUNET_YES);
3839       //total += add_actual_connections(pg, pg_iter, iter->index);
3840       iter = iter->next;
3841     }
3842 #else
3843     ret =
3844         GNUNET_CONTAINER_multihashmap_iterate (pg->peers[pg_iter].allowed_peers,
3845                                                &copy_topology_iterator,
3846                                                &pg->peers[pg_iter]);
3847 #endif
3848     if (GNUNET_SYSERR == ret)
3849       return GNUNET_SYSERR;
3850
3851     total = total + ret;
3852   }
3853
3854   return total;
3855 }
3856
3857 /**
3858  * Connect the topology as specified by the PeerConnection's
3859  * of each peer in the peer group
3860  *
3861  * @param pg the peer group we are dealing with
3862  * @param connect_timeout how long try connecting two peers
3863  * @param connect_attempts how many times (max) to attempt
3864  * @param notify_callback callback to notify when finished
3865  * @param notify_cls closure for notify callback
3866  *
3867  * @return the number of connections that will be attempted
3868  */
3869 static int
3870 connect_topology (struct GNUNET_TESTING_PeerGroup *pg,
3871                   struct GNUNET_TIME_Relative connect_timeout,
3872                   unsigned int connect_attempts,
3873                   GNUNET_TESTING_NotifyCompletion notify_callback,
3874                   void *notify_cls)
3875 {
3876   unsigned int pg_iter;
3877   unsigned int total;
3878
3879 #if OLD
3880   struct PeerConnection *connection_iter;
3881 #endif
3882 #if USE_SEND_HELLOS
3883   struct SendHelloContext *send_hello_context;
3884 #endif
3885
3886   total = 0;
3887   pg->ct_ctx.notify_connections_done = notify_callback;
3888   pg->ct_ctx.notify_cls = notify_cls;
3889   pg->ct_ctx.pg = pg;
3890
3891   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
3892   {
3893 #if OLD
3894     connection_iter = pg->peers[pg_iter].connect_peers_head;
3895     while (connection_iter != NULL)
3896     {
3897       connection_iter = connection_iter->next;
3898       total++;
3899     }
3900 #else
3901     total +=
3902         GNUNET_CONTAINER_multihashmap_size (pg->peers[pg_iter].connect_peers);
3903 #endif
3904   }
3905
3906   if (total == 0)
3907     return total;
3908
3909   pg->ct_ctx.connect_timeout = connect_timeout;
3910   pg->ct_ctx.connect_attempts = connect_attempts;
3911   pg->ct_ctx.remaining_connections = total;
3912
3913 #if USE_SEND_HELLOS
3914   /* First give all peers the HELLO's of other peers (connect to first peer's transport service, give HELLO's of other peers, continue...) */
3915   pg->remaining_hellos = total;
3916   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
3917   {
3918     send_hello_context = GNUNET_malloc (sizeof (struct SendHelloContext));
3919     send_hello_context->peer = &pg->peers[pg_iter];
3920     send_hello_context->peer_pos = pg->peers[pg_iter].connect_peers_head;
3921     send_hello_context->pg = pg;
3922     GNUNET_SCHEDULER_add_now (&schedule_send_hellos, send_hello_context);
3923   }
3924 #else
3925   for (pg_iter = 0; pg_iter < pg->max_outstanding_connections; pg_iter++)
3926   {
3927     preschedule_connect (pg);
3928   }
3929 #endif
3930   return total;
3931
3932 }
3933
3934 /**
3935  * Takes a peer group and creates a topology based on the
3936  * one specified.  Creates a topology means generates friend
3937  * files for the peers so they can only connect to those allowed
3938  * by the topology.  This will only have an effect once peers
3939  * are started if the FRIENDS_ONLY option is set in the base
3940  * config.  Also takes an optional restrict topology which
3941  * disallows connections based on particular transports
3942  * UNLESS they are specified in the restricted topology.
3943  *
3944  * @param pg the peer group struct representing the running peers
3945  * @param topology which topology to connect the peers in
3946  * @param restrict_topology disallow restrict_transports transport
3947  *                          connections to peers NOT in this topology
3948  *                          use GNUNET_TESTING_TOPOLOGY_NONE for no restrictions
3949  * @param restrict_transports space delimited list of transports to blacklist
3950  *                            to create restricted topology
3951  *
3952  * @return the maximum number of connections were all allowed peers
3953  *         connected to each other
3954  */
3955 unsigned int
3956 GNUNET_TESTING_create_topology (struct GNUNET_TESTING_PeerGroup *pg,
3957                                 enum GNUNET_TESTING_Topology topology,
3958                                 enum GNUNET_TESTING_Topology restrict_topology,
3959                                 const char *restrict_transports)
3960 {
3961   int ret;
3962
3963   unsigned int num_connections;
3964   int unblacklisted_connections;
3965   char *filename;
3966   struct PeerConnection *conn_iter;
3967   struct PeerConnection *temp_conn;
3968   unsigned int off;
3969
3970 #if !OLD
3971   unsigned int i;
3972
3973   for (i = 0; i < pg->total; i++)
3974   {
3975     pg->peers[i].allowed_peers = GNUNET_CONTAINER_multihashmap_create (100);
3976     pg->peers[i].connect_peers = GNUNET_CONTAINER_multihashmap_create (100);
3977     pg->peers[i].blacklisted_peers = GNUNET_CONTAINER_multihashmap_create (100);
3978     pg->peers[i].pg = pg;
3979   }
3980 #endif
3981
3982   switch (topology)
3983   {
3984   case GNUNET_TESTING_TOPOLOGY_CLIQUE:
3985     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, _("Creating clique topology\n"));
3986     num_connections = create_clique (pg, &add_connections, ALLOWED, GNUNET_NO);
3987     break;
3988   case GNUNET_TESTING_TOPOLOGY_SMALL_WORLD_RING:
3989     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3990                 _("Creating small world (ring) topology\n"));
3991     num_connections = create_small_world_ring (pg, &add_connections, ALLOWED);
3992     break;
3993   case GNUNET_TESTING_TOPOLOGY_SMALL_WORLD:
3994     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3995                 _("Creating small world (2d-torus) topology\n"));
3996     num_connections = create_small_world (pg, &add_connections, ALLOWED);
3997     break;
3998   case GNUNET_TESTING_TOPOLOGY_RING:
3999     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, _("Creating ring topology\n"));
4000     num_connections = create_ring (pg, &add_connections, ALLOWED);
4001     break;
4002   case GNUNET_TESTING_TOPOLOGY_2D_TORUS:
4003     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, _("Creating 2d torus topology\n"));
4004     num_connections = create_2d_torus (pg, &add_connections, ALLOWED);
4005     break;
4006   case GNUNET_TESTING_TOPOLOGY_ERDOS_RENYI:
4007     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, _("Creating Erdos-Renyi topology\n"));
4008     num_connections = create_erdos_renyi (pg, &add_connections, ALLOWED);
4009     break;
4010   case GNUNET_TESTING_TOPOLOGY_INTERNAT:
4011     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, _("Creating InterNAT topology\n"));
4012     num_connections = create_nated_internet (pg, &add_connections, ALLOWED);
4013     break;
4014   case GNUNET_TESTING_TOPOLOGY_SCALE_FREE:
4015     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, _("Creating Scale Free topology\n"));
4016     num_connections = create_scale_free (pg, &add_connections, ALLOWED);
4017     break;
4018   case GNUNET_TESTING_TOPOLOGY_LINE:
4019     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4020                 _("Creating straight line topology\n"));
4021     num_connections = create_line (pg, &add_connections, ALLOWED);
4022     break;
4023   case GNUNET_TESTING_TOPOLOGY_FROM_FILE:
4024     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, _("Creating topology from file!\n"));
4025     if (GNUNET_OK ==
4026         GNUNET_CONFIGURATION_get_value_string (pg->cfg, "testing",
4027                                                "topology_file", &filename))
4028       num_connections =
4029           create_from_file (pg, filename, &add_connections, ALLOWED);
4030     else
4031     {
4032       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
4033                   "Missing configuration option TESTING:TOPOLOGY_FILE for creating topology from file!\n");
4034       num_connections = 0;
4035     }
4036     break;
4037   case GNUNET_TESTING_TOPOLOGY_NONE:
4038     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4039                 _
4040                 ("Creating no allowed topology (all peers can connect at core level)\n"));
4041     num_connections = pg->total * pg->total;    /* Clique is allowed! */
4042     break;
4043   default:
4044     num_connections = 0;
4045     break;
4046   }
4047
4048   if (GNUNET_YES ==
4049       GNUNET_CONFIGURATION_get_value_yesno (pg->cfg, "TESTING", "F2F"))
4050   {
4051     ret = create_and_copy_friend_files (pg);
4052     if (ret != GNUNET_OK)
4053     {
4054       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4055                   _("Failed during friend file copying!\n"));
4056       return GNUNET_SYSERR;
4057     }
4058     else
4059     {
4060       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4061                   _("Friend files created/copied successfully!\n"));
4062     }
4063   }
4064
4065   /* Use the create clique method to initially set all connections as blacklisted. */
4066   if ((restrict_topology != GNUNET_TESTING_TOPOLOGY_NONE) &&
4067       (restrict_topology != GNUNET_TESTING_TOPOLOGY_FROM_FILE))
4068     create_clique (pg, &add_connections, BLACKLIST, GNUNET_NO);
4069   else
4070     return num_connections;
4071
4072   unblacklisted_connections = 0;
4073   /* Un-blacklist connections as per the topology specified */
4074   switch (restrict_topology)
4075   {
4076   case GNUNET_TESTING_TOPOLOGY_CLIQUE:
4077     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4078                 _("Blacklisting all but clique topology\n"));
4079     unblacklisted_connections =
4080         create_clique (pg, &remove_connections, BLACKLIST, GNUNET_NO);
4081     break;
4082   case GNUNET_TESTING_TOPOLOGY_SMALL_WORLD_RING:
4083     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4084                 _("Blacklisting all but small world (ring) topology\n"));
4085     unblacklisted_connections =
4086         create_small_world_ring (pg, &remove_connections, BLACKLIST);
4087     break;
4088   case GNUNET_TESTING_TOPOLOGY_SMALL_WORLD:
4089     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4090                 _("Blacklisting all but small world (2d-torus) topology\n"));
4091     unblacklisted_connections =
4092         create_small_world (pg, &remove_connections, BLACKLIST);
4093     break;
4094   case GNUNET_TESTING_TOPOLOGY_RING:
4095     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4096                 _("Blacklisting all but ring topology\n"));
4097     unblacklisted_connections =
4098         create_ring (pg, &remove_connections, BLACKLIST);
4099     break;
4100   case GNUNET_TESTING_TOPOLOGY_2D_TORUS:
4101     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4102                 _("Blacklisting all but 2d torus topology\n"));
4103     unblacklisted_connections =
4104         create_2d_torus (pg, &remove_connections, BLACKLIST);
4105     break;
4106   case GNUNET_TESTING_TOPOLOGY_ERDOS_RENYI:
4107     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4108                 _("Blacklisting all but Erdos-Renyi topology\n"));
4109     unblacklisted_connections =
4110         create_erdos_renyi (pg, &remove_connections, BLACKLIST);
4111     break;
4112   case GNUNET_TESTING_TOPOLOGY_INTERNAT:
4113     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4114                 _("Blacklisting all but InterNAT topology\n"));
4115
4116 #if TOPOLOGY_HACK
4117     for (off = 0; off < pg->total; off++)
4118     {
4119       conn_iter = pg->peers[off].allowed_peers_head;
4120       while (conn_iter != NULL)
4121       {
4122         temp_conn = conn_iter->next;
4123         GNUNET_free (conn_iter);
4124         conn_iter = temp_conn;
4125       }
4126       pg->peers[off].allowed_peers_head = NULL;
4127       pg->peers[off].allowed_peers_tail = NULL;
4128
4129       conn_iter = pg->peers[off].connect_peers_head;
4130       while (conn_iter != NULL)
4131       {
4132         temp_conn = conn_iter->next;
4133         GNUNET_free (conn_iter);
4134         conn_iter = temp_conn;
4135       }
4136       pg->peers[off].connect_peers_head = NULL;
4137       pg->peers[off].connect_peers_tail = NULL;
4138     }
4139     unblacklisted_connections =
4140         create_nated_internet_copy (pg, &remove_connections, BLACKLIST);
4141 #else
4142     unblacklisted_connections =
4143         create_nated_internet (pg, &remove_connections, BLACKLIST);
4144 #endif
4145
4146     break;
4147   case GNUNET_TESTING_TOPOLOGY_SCALE_FREE:
4148     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4149                 _("Blacklisting all but Scale Free topology\n"));
4150     unblacklisted_connections =
4151         create_scale_free (pg, &remove_connections, BLACKLIST);
4152     break;
4153   case GNUNET_TESTING_TOPOLOGY_LINE:
4154     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4155                 _("Blacklisting all but straight line topology\n"));
4156     unblacklisted_connections =
4157         create_line (pg, &remove_connections, BLACKLIST);
4158   default:
4159     break;
4160   }
4161
4162   if ((unblacklisted_connections > 0) && (restrict_transports != NULL))
4163   {
4164     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Creating blacklist with `%s'\n",
4165                 restrict_transports);
4166     ret = create_and_copy_blacklist_files (pg, restrict_transports);
4167     if (ret != GNUNET_OK)
4168     {
4169       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4170                   _("Failed during blacklist file copying!\n"));
4171       return 0;
4172     }
4173     else
4174     {
4175       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4176                   _("Blacklist files created/copied successfully!\n"));
4177     }
4178   }
4179   return num_connections;
4180 }
4181
4182 #if !OLD
4183 /**
4184  * Iterator for choosing random peers to connect.
4185  *
4186  * @param cls closure, a RandomContext
4187  * @param key the key the second Daemon was stored under
4188  * @param value the GNUNET_TESTING_Daemon that the first is to connect to
4189  *
4190  * @return GNUNET_YES to continue iteration
4191  */
4192 static int
4193 random_connect_iterator (void *cls, const GNUNET_HashCode * key, void *value)
4194 {
4195   struct RandomContext *random_ctx = cls;
4196   double random_number;
4197   uint32_t second_pos;
4198   GNUNET_HashCode first_hash;
4199
4200   random_number =
4201       ((double)
4202        GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_WEAK,
4203                                  UINT64_MAX)) / ((double) UINT64_MAX);
4204   if (random_number < random_ctx->percentage)
4205   {
4206     GNUNET_assert (GNUNET_OK ==
4207                    GNUNET_CONTAINER_multihashmap_put (random_ctx->
4208                                                       first->connect_peers_working_set,
4209                                                       key, value,
4210                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
4211   }
4212
4213   /* Now we have considered this particular connection, remove it from the second peer so it's not double counted */
4214   uid_from_hash (key, &second_pos);
4215   hash_from_uid (random_ctx->first_uid, &first_hash);
4216   GNUNET_assert (random_ctx->pg->total > second_pos);
4217   GNUNET_assert (GNUNET_YES ==
4218                  GNUNET_CONTAINER_multihashmap_remove (random_ctx->
4219                                                        pg->peers
4220                                                        [second_pos].connect_peers,
4221                                                        &first_hash,
4222                                                        random_ctx->
4223                                                        first->daemon));
4224
4225   return GNUNET_YES;
4226 }
4227
4228 /**
4229  * Iterator for adding at least X peers to a peers connection set.
4230  *
4231  * @param cls closure, MinimumContext
4232  * @param key the key the second Daemon was stored under
4233  * @param value the GNUNET_TESTING_Daemon that the first is to connect to
4234  *
4235  * @return GNUNET_YES to continue iteration
4236  */
4237 static int
4238 minimum_connect_iterator (void *cls, const GNUNET_HashCode * key, void *value)
4239 {
4240   struct MinimumContext *min_ctx = cls;
4241   uint32_t second_pos;
4242   GNUNET_HashCode first_hash;
4243   unsigned int i;
4244
4245   if (GNUNET_CONTAINER_multihashmap_size
4246       (min_ctx->first->connect_peers_working_set) < min_ctx->num_to_add)
4247   {
4248     for (i = 0; i < min_ctx->num_to_add; i++)
4249     {
4250       if (min_ctx->pg_array[i] == min_ctx->current)
4251       {
4252         GNUNET_assert (GNUNET_OK ==
4253                        GNUNET_CONTAINER_multihashmap_put (min_ctx->
4254                                                           first->connect_peers_working_set,
4255                                                           key, value,
4256                                                           GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
4257         uid_from_hash (key, &second_pos);
4258         hash_from_uid (min_ctx->first_uid, &first_hash);
4259         GNUNET_assert (min_ctx->pg->total > second_pos);
4260         GNUNET_assert (GNUNET_OK ==
4261                        GNUNET_CONTAINER_multihashmap_put (min_ctx->
4262                                                           pg->peers
4263                                                           [second_pos].connect_peers_working_set,
4264                                                           &first_hash,
4265                                                           min_ctx->first->
4266                                                           daemon,
4267                                                           GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
4268         /* Now we have added this particular connection, remove it from the second peer's map so it's not double counted */
4269         GNUNET_assert (GNUNET_YES ==
4270                        GNUNET_CONTAINER_multihashmap_remove (min_ctx->
4271                                                              pg->peers
4272                                                              [second_pos].connect_peers,
4273                                                              &first_hash,
4274                                                              min_ctx->
4275                                                              first->daemon));
4276       }
4277     }
4278     min_ctx->current++;
4279     return GNUNET_YES;
4280   }
4281   else
4282     return GNUNET_NO;           /* We can stop iterating, we have enough peers! */
4283
4284 }
4285
4286 /**
4287  * Iterator for adding peers to a connection set based on a depth first search.
4288  *
4289  * @param cls closure, MinimumContext
4290  * @param key the key the second daemon was stored under
4291  * @param value the GNUNET_TESTING_Daemon that the first is to connect to
4292  *
4293  * @return GNUNET_YES to continue iteration
4294  */
4295 static int
4296 dfs_connect_iterator (void *cls, const GNUNET_HashCode * key, void *value)
4297 {
4298   struct DFSContext *dfs_ctx = cls;
4299   GNUNET_HashCode first_hash;
4300
4301   if (dfs_ctx->current == dfs_ctx->chosen)
4302   {
4303     GNUNET_assert (GNUNET_OK ==
4304                    GNUNET_CONTAINER_multihashmap_put (dfs_ctx->
4305                                                       first->connect_peers_working_set,
4306                                                       key, value,
4307                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
4308     uid_from_hash (key, &dfs_ctx->second_uid);
4309     hash_from_uid (dfs_ctx->first_uid, &first_hash);
4310     GNUNET_assert (GNUNET_OK ==
4311                    GNUNET_CONTAINER_multihashmap_put (dfs_ctx->
4312                                                       pg->peers[dfs_ctx->
4313                                                                 second_uid].connect_peers_working_set,
4314                                                       &first_hash,
4315                                                       dfs_ctx->first->daemon,
4316                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
4317     GNUNET_assert (GNUNET_YES ==
4318                    GNUNET_CONTAINER_multihashmap_remove (dfs_ctx->
4319                                                          pg->peers
4320                                                          [dfs_ctx->second_uid].connect_peers,
4321                                                          &first_hash,
4322                                                          dfs_ctx->
4323                                                          first->daemon));
4324     /* Can't remove second from first yet because we are currently iterating, hence the return value in the DFSContext! */
4325     return GNUNET_NO;           /* We have found our peer, don't iterate more */
4326   }
4327
4328   dfs_ctx->current++;
4329   return GNUNET_YES;
4330 }
4331 #endif
4332
4333 /**
4334  * From the set of connections possible, choose percentage percent of connections
4335  * to actually connect.
4336  *
4337  * @param pg the peergroup we are dealing with
4338  * @param percentage what percent of total connections to make
4339  */
4340 void
4341 choose_random_connections (struct GNUNET_TESTING_PeerGroup *pg,
4342                            double percentage)
4343 {
4344   uint32_t pg_iter;
4345
4346 #if OLD
4347   struct PeerConnection *conn_iter;
4348   double random_number;
4349 #else
4350   struct RandomContext random_ctx;
4351 #endif
4352
4353   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4354   {
4355 #if OLD
4356     conn_iter = pg->peers[pg_iter].connect_peers_head;
4357     while (conn_iter != NULL)
4358     {
4359       random_number =
4360           ((double)
4361            GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_WEAK,
4362                                      UINT64_MAX)) / ((double) UINT64_MAX);
4363       if (random_number < percentage)
4364       {
4365         add_connections (pg, pg_iter, conn_iter->index, WORKING_SET,
4366                          GNUNET_YES);
4367       }
4368       conn_iter = conn_iter->next;
4369     }
4370 #else
4371     random_ctx.first_uid = pg_iter;
4372     random_ctx.first = &pg->peers[pg_iter];
4373     random_ctx.percentage = percentage;
4374     random_ctx.pg = pg;
4375     pg->peers[pg_iter].connect_peers_working_set =
4376         GNUNET_CONTAINER_multihashmap_create (pg->total);
4377     GNUNET_CONTAINER_multihashmap_iterate (pg->peers[pg_iter].connect_peers,
4378                                            &random_connect_iterator,
4379                                            &random_ctx);
4380     /* Now remove the old connections */
4381     GNUNET_CONTAINER_multihashmap_destroy (pg->peers[pg_iter].connect_peers);
4382     /* And replace with the random set */
4383     pg->peers[pg_iter].connect_peers =
4384         pg->peers[pg_iter].connect_peers_working_set;
4385 #endif
4386   }
4387
4388   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4389   {
4390     conn_iter = pg->peers[pg_iter].connect_peers_head;
4391     while (pg->peers[pg_iter].connect_peers_head != NULL)
4392       remove_connections (pg, pg_iter,
4393                           pg->peers[pg_iter].connect_peers_head->index, CONNECT,
4394                           GNUNET_YES);
4395
4396     pg->peers[pg_iter].connect_peers_head =
4397         pg->peers[pg_iter].connect_peers_working_set_head;
4398     pg->peers[pg_iter].connect_peers_tail =
4399         pg->peers[pg_iter].connect_peers_working_set_tail;
4400     pg->peers[pg_iter].connect_peers_working_set_head = NULL;
4401     pg->peers[pg_iter].connect_peers_working_set_tail = NULL;
4402   }
4403 }
4404
4405 /**
4406  * Count the number of connections in a linked list of connections.
4407  *
4408  * @param conn_list the connection list to get the count of
4409  *
4410  * @return the number of elements in the list
4411  */
4412 static unsigned int
4413 count_connections (struct PeerConnection *conn_list)
4414 {
4415   struct PeerConnection *iter;
4416   unsigned int count;
4417
4418   count = 0;
4419   iter = conn_list;
4420   while (iter != NULL)
4421   {
4422     iter = iter->next;
4423     count++;
4424   }
4425   return count;
4426 }
4427
4428 static unsigned int
4429 count_workingset_connections (struct GNUNET_TESTING_PeerGroup *pg)
4430 {
4431   unsigned int count;
4432   unsigned int pg_iter;
4433
4434 #if OLD
4435   struct PeerConnection *conn_iter;
4436 #endif
4437   count = 0;
4438
4439   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4440   {
4441 #if OLD
4442     conn_iter = pg->peers[pg_iter].connect_peers_working_set_head;
4443     while (conn_iter != NULL)
4444     {
4445       count++;
4446       conn_iter = conn_iter->next;
4447     }
4448 #else
4449     count +=
4450         GNUNET_CONTAINER_multihashmap_size (pg->
4451                                             peers
4452                                             [pg_iter].connect_peers_working_set);
4453 #endif
4454   }
4455
4456   return count;
4457 }
4458
4459 static unsigned int
4460 count_allowed_connections (struct GNUNET_TESTING_PeerGroup *pg)
4461 {
4462   unsigned int count;
4463   unsigned int pg_iter;
4464
4465 #if OLD
4466   struct PeerConnection *conn_iter;
4467 #endif
4468
4469   count = 0;
4470   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4471   {
4472 #if OLD
4473     conn_iter = pg->peers[pg_iter].allowed_peers_head;
4474     while (conn_iter != NULL)
4475     {
4476       count++;
4477       conn_iter = conn_iter->next;
4478     }
4479 #else
4480     count +=
4481         GNUNET_CONTAINER_multihashmap_size (pg->peers[pg_iter].allowed_peers);
4482 #endif
4483   }
4484
4485   return count;
4486 }
4487
4488 /**
4489  * From the set of connections possible, choose at least num connections per
4490  * peer.
4491  *
4492  * @param pg the peergroup we are dealing with
4493  * @param num how many connections at least should each peer have (if possible)?
4494  */
4495 static void
4496 choose_minimum (struct GNUNET_TESTING_PeerGroup *pg, unsigned int num)
4497 {
4498 #if !OLD
4499   struct MinimumContext minimum_ctx;
4500 #else
4501   struct PeerConnection *conn_iter;
4502   unsigned int temp_list_size;
4503   unsigned int i;
4504   unsigned int count;
4505   uint32_t random;              /* Random list entry to connect peer to */
4506 #endif
4507   uint32_t pg_iter;
4508
4509 #if OLD
4510   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4511   {
4512     temp_list_size = count_connections (pg->peers[pg_iter].connect_peers_head);
4513     if (temp_list_size == 0)
4514     {
4515       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Peer %d has 0 connections!?!?\n",
4516                   pg_iter);
4517       break;
4518     }
4519     for (i = 0; i < num; i++)
4520     {
4521       random =
4522           GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, temp_list_size);
4523       conn_iter = pg->peers[pg_iter].connect_peers_head;
4524       for (count = 0; count < random; count++)
4525         conn_iter = conn_iter->next;
4526       /* We now have a random connection, connect it! */
4527       GNUNET_assert (conn_iter != NULL);
4528       add_connections (pg, pg_iter, conn_iter->index, WORKING_SET, GNUNET_YES);
4529     }
4530   }
4531 #else
4532   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4533   {
4534     pg->peers[pg_iter].connect_peers_working_set =
4535         GNUNET_CONTAINER_multihashmap_create (num);
4536   }
4537
4538   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4539   {
4540     minimum_ctx.first_uid = pg_iter;
4541     minimum_ctx.pg_array =
4542         GNUNET_CRYPTO_random_permute (GNUNET_CRYPTO_QUALITY_WEAK,
4543                                       GNUNET_CONTAINER_multihashmap_size
4544                                       (pg->peers[pg_iter].connect_peers));
4545     minimum_ctx.first = &pg->peers[pg_iter];
4546     minimum_ctx.pg = pg;
4547     minimum_ctx.num_to_add = num;
4548     minimum_ctx.current = 0;
4549     GNUNET_CONTAINER_multihashmap_iterate (pg->peers[pg_iter].connect_peers,
4550                                            &minimum_connect_iterator,
4551                                            &minimum_ctx);
4552   }
4553
4554   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4555   {
4556     /* Remove the "old" connections */
4557     GNUNET_CONTAINER_multihashmap_destroy (pg->peers[pg_iter].connect_peers);
4558     /* And replace with the working set */
4559     pg->peers[pg_iter].connect_peers =
4560         pg->peers[pg_iter].connect_peers_working_set;
4561   }
4562 #endif
4563   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4564   {
4565     while (pg->peers[pg_iter].connect_peers_head != NULL)
4566     {
4567       conn_iter = pg->peers[pg_iter].connect_peers_head;
4568       GNUNET_CONTAINER_DLL_remove (pg->peers[pg_iter].connect_peers_head,
4569                                    pg->peers[pg_iter].connect_peers_tail,
4570                                    conn_iter);
4571       GNUNET_free (conn_iter);
4572       /*remove_connections(pg, pg_iter, pg->peers[pg_iter].connect_peers_head->index, CONNECT, GNUNET_YES); */
4573     }
4574
4575     pg->peers[pg_iter].connect_peers_head =
4576         pg->peers[pg_iter].connect_peers_working_set_head;
4577     pg->peers[pg_iter].connect_peers_tail =
4578         pg->peers[pg_iter].connect_peers_working_set_tail;
4579     pg->peers[pg_iter].connect_peers_working_set_head = NULL;
4580     pg->peers[pg_iter].connect_peers_working_set_tail = NULL;
4581   }
4582 }
4583
4584 #if !OLD
4585 struct FindClosestContext
4586 {
4587     /**
4588      * The currently known closest peer.
4589      */
4590   struct GNUNET_TESTING_Daemon *closest;
4591
4592     /**
4593      * The info for the peer we are adding connections for.
4594      */
4595   struct PeerData *curr_peer;
4596
4597     /**
4598      * The distance (bits) between the current
4599      * peer and the currently known closest.
4600      */
4601   unsigned int closest_dist;
4602
4603     /**
4604      * The offset of the closest known peer in
4605      * the peer group.
4606      */
4607   unsigned int closest_num;
4608 };
4609
4610 /**
4611  * Iterator over hash map entries of the allowed
4612  * peer connections.  Find the closest, not already
4613  * connected peer and return it.
4614  *
4615  * @param cls closure (struct FindClosestContext)
4616  * @param key current key code (hash of offset in pg)
4617  * @param value value in the hash map - a GNUNET_TESTING_Daemon
4618  * @return GNUNET_YES if we should continue to
4619  *         iterate,
4620  *         GNUNET_NO if not.
4621  */
4622 static int
4623 find_closest_peers (void *cls, const GNUNET_HashCode * key, void *value)
4624 {
4625   struct FindClosestContext *closest_ctx = cls;
4626   struct GNUNET_TESTING_Daemon *daemon = value;
4627
4628   if (((closest_ctx->closest == NULL) ||
4629        (GNUNET_CRYPTO_hash_matching_bits
4630         (&daemon->id.hashPubKey,
4631          &closest_ctx->curr_peer->daemon->id.hashPubKey) >
4632         closest_ctx->closest_dist)) &&
4633       (GNUNET_YES !=
4634        GNUNET_CONTAINER_multihashmap_contains (closest_ctx->
4635                                                curr_peer->connect_peers, key)))
4636   {
4637     closest_ctx->closest_dist =
4638         GNUNET_CRYPTO_hash_matching_bits (&daemon->id.hashPubKey,
4639                                           &closest_ctx->curr_peer->daemon->
4640                                           id.hashPubKey);
4641     closest_ctx->closest = daemon;
4642     uid_from_hash (key, &closest_ctx->closest_num);
4643   }
4644   return GNUNET_YES;
4645 }
4646
4647 /**
4648  * From the set of connections possible, choose at num connections per
4649  * peer based on depth which are closest out of those allowed.  Guaranteed
4650  * to add num peers to connect to, provided there are that many peers
4651  * in the underlay topology to connect to.
4652  *
4653  * @param pg the peergroup we are dealing with
4654  * @param num how many connections at least should each peer have (if possible)?
4655  * @param proc processor to actually add the connections
4656  * @param list the peer list to use
4657  */
4658 void
4659 add_closest (struct GNUNET_TESTING_PeerGroup *pg, unsigned int num,
4660              GNUNET_TESTING_ConnectionProcessor proc, enum PeerLists list)
4661 {
4662 #if OLD
4663
4664 #else
4665   struct FindClosestContext closest_ctx;
4666 #endif
4667   uint32_t pg_iter;
4668   uint32_t i;
4669
4670   for (i = 0; i < num; i++)     /* Each time find a closest peer (from those available) */
4671   {
4672     for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4673     {
4674       closest_ctx.curr_peer = &pg->peers[pg_iter];
4675       closest_ctx.closest = NULL;
4676       closest_ctx.closest_dist = 0;
4677       closest_ctx.closest_num = 0;
4678       GNUNET_CONTAINER_multihashmap_iterate (pg->peers[pg_iter].allowed_peers,
4679                                              &find_closest_peers, &closest_ctx);
4680       if (closest_ctx.closest != NULL)
4681       {
4682         GNUNET_assert (closest_ctx.closest_num < pg->total);
4683         proc (pg, pg_iter, closest_ctx.closest_num, list);
4684       }
4685     }
4686   }
4687 }
4688 #endif
4689
4690 /**
4691  * From the set of connections possible, choose at least num connections per
4692  * peer based on depth first traversal of peer connections.  If DFS leaves
4693  * peers unconnected, ensure those peers get connections.
4694  *
4695  * @param pg the peergroup we are dealing with
4696  * @param num how many connections at least should each peer have (if possible)?
4697  */
4698 void
4699 perform_dfs (struct GNUNET_TESTING_PeerGroup *pg, unsigned int num)
4700 {
4701   uint32_t pg_iter;
4702   uint32_t dfs_count;
4703   uint32_t starting_peer;
4704   uint32_t least_connections;
4705   uint32_t random_connection;
4706
4707 #if OLD
4708   unsigned int temp_count;
4709   struct PeerConnection *peer_iter;
4710 #else
4711   struct DFSContext dfs_ctx;
4712   GNUNET_HashCode second_hash;
4713 #endif
4714
4715 #if OLD
4716   starting_peer = 0;
4717   dfs_count = 0;
4718   while ((count_workingset_connections (pg) < num * pg->total) &&
4719          (count_allowed_connections (pg) > 0))
4720   {
4721     if (dfs_count % pg->total == 0)     /* Restart the DFS at some weakly connected peer */
4722     {
4723       least_connections = -1;   /* Set to very high number */
4724       for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4725       {
4726         temp_count =
4727             count_connections (pg->
4728                                peers[pg_iter].connect_peers_working_set_head);
4729         if (temp_count < least_connections)
4730         {
4731           starting_peer = pg_iter;
4732           least_connections = temp_count;
4733         }
4734       }
4735     }
4736
4737     temp_count =
4738         count_connections (pg->peers[starting_peer].connect_peers_head);
4739     if (temp_count == 0)
4740       continue;                 /* FIXME: infinite loop? */
4741
4742     random_connection =
4743         GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, temp_count);
4744     temp_count = 0;
4745     peer_iter = pg->peers[starting_peer].connect_peers_head;
4746     while (temp_count < random_connection)
4747     {
4748       peer_iter = peer_iter->next;
4749       temp_count++;
4750     }
4751     GNUNET_assert (peer_iter != NULL);
4752     add_connections (pg, starting_peer, peer_iter->index, WORKING_SET,
4753                      GNUNET_NO);
4754     remove_connections (pg, starting_peer, peer_iter->index, CONNECT,
4755                         GNUNET_YES);
4756     starting_peer = peer_iter->index;
4757     dfs_count++;
4758   }
4759
4760 #else
4761   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4762   {
4763     pg->peers[pg_iter].connect_peers_working_set =
4764         GNUNET_CONTAINER_multihashmap_create (num);
4765   }
4766
4767   starting_peer = 0;
4768   dfs_count = 0;
4769   while ((count_workingset_connections (pg) < num * pg->total) &&
4770          (count_allowed_connections (pg) > 0))
4771   {
4772     if (dfs_count % pg->total == 0)     /* Restart the DFS at some weakly connected peer */
4773     {
4774       least_connections = -1;   /* Set to very high number */
4775       for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4776       {
4777         if (GNUNET_CONTAINER_multihashmap_size
4778             (pg->peers[pg_iter].connect_peers_working_set) < least_connections)
4779         {
4780           starting_peer = pg_iter;
4781           least_connections =
4782               GNUNET_CONTAINER_multihashmap_size (pg->
4783                                                   peers
4784                                                   [pg_iter].connect_peers_working_set);
4785         }
4786       }
4787     }
4788
4789     if (GNUNET_CONTAINER_multihashmap_size (pg->peers[starting_peer].connect_peers) == 0)       /* Ensure there is at least one peer left to connect! */
4790     {
4791       dfs_count = 0;
4792       continue;
4793     }
4794
4795     /* Choose a random peer from the chosen peers set of connections to add */
4796     dfs_ctx.chosen =
4797         GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
4798                                   GNUNET_CONTAINER_multihashmap_size (pg->peers
4799                                                                       [starting_peer].connect_peers));
4800     dfs_ctx.first_uid = starting_peer;
4801     dfs_ctx.first = &pg->peers[starting_peer];
4802     dfs_ctx.pg = pg;
4803     dfs_ctx.current = 0;
4804
4805     GNUNET_CONTAINER_multihashmap_iterate (pg->
4806                                            peers[starting_peer].connect_peers,
4807                                            &dfs_connect_iterator, &dfs_ctx);
4808     /* Remove the second from the first, since we will be continuing the search and may encounter the first peer again! */
4809     hash_from_uid (dfs_ctx.second_uid, &second_hash);
4810     GNUNET_assert (GNUNET_YES ==
4811                    GNUNET_CONTAINER_multihashmap_remove (pg->peers
4812                                                          [starting_peer].connect_peers,
4813                                                          &second_hash,
4814                                                          pg->
4815                                                          peers
4816                                                          [dfs_ctx.second_uid].daemon));
4817     starting_peer = dfs_ctx.second_uid;
4818   }
4819
4820   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4821   {
4822     /* Remove the "old" connections */
4823     GNUNET_CONTAINER_multihashmap_destroy (pg->peers[pg_iter].connect_peers);
4824     /* And replace with the working set */
4825     pg->peers[pg_iter].connect_peers =
4826         pg->peers[pg_iter].connect_peers_working_set;
4827   }
4828 #endif
4829 }
4830
4831 /**
4832  * Internal callback for topology information for a particular peer.
4833  */
4834 static void
4835 internal_topology_callback (void *cls, const struct GNUNET_PeerIdentity *peer,
4836                             const struct GNUNET_ATS_Information *atsi,
4837                             unsigned int atsi_count)
4838 {
4839   struct CoreContext *core_ctx = cls;
4840   struct TopologyIterateContext *iter_ctx = core_ctx->iter_context;
4841
4842   if (peer == NULL)             /* Either finished, or something went wrong */
4843   {
4844     iter_ctx->completed++;
4845     iter_ctx->connected--;
4846     /* One core context allocated per iteration, must free! */
4847     GNUNET_free (core_ctx);
4848   }
4849   else
4850   {
4851     iter_ctx->topology_cb (iter_ctx->cls, &core_ctx->daemon->id, peer, NULL);
4852   }
4853
4854   if (iter_ctx->completed == iter_ctx->total)
4855   {
4856     iter_ctx->topology_cb (iter_ctx->cls, NULL, NULL, NULL);
4857     /* Once all are done, free the iteration context */
4858     GNUNET_free (iter_ctx);
4859   }
4860 }
4861
4862 /**
4863  * Check running topology iteration tasks, if below max start a new one, otherwise
4864  * schedule for some time in the future.
4865  */
4866 static void
4867 schedule_get_topology (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
4868 {
4869   struct CoreContext *core_context = cls;
4870   struct TopologyIterateContext *topology_context =
4871       (struct TopologyIterateContext *) core_context->iter_context;
4872   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
4873     return;
4874
4875   if (topology_context->connected >
4876       topology_context->pg->max_outstanding_connections)
4877   {
4878 #if VERBOSE_TESTING > 2
4879     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4880                 _
4881                 ("Delaying connect, we have too many outstanding connections!\n"));
4882 #endif
4883     GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
4884                                   (GNUNET_TIME_UNIT_MILLISECONDS, 100),
4885                                   &schedule_get_topology, core_context);
4886   }
4887   else
4888   {
4889 #if VERBOSE_TESTING > 2
4890     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4891                 _("Creating connection, outstanding_connections is %d\n"),
4892                 outstanding_connects);
4893 #endif
4894     topology_context->connected++;
4895
4896     if (GNUNET_OK !=
4897         GNUNET_CORE_iterate_peers (core_context->daemon->cfg,
4898                                    &internal_topology_callback, core_context))
4899     {
4900       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Topology iteration failed.\n");
4901       internal_topology_callback (core_context, NULL, NULL, 0);
4902     }
4903   }
4904 }
4905
4906 /**
4907  * Iterate over all (running) peers in the peer group, retrieve
4908  * all connections that each currently has.
4909  */
4910 void
4911 GNUNET_TESTING_get_topology (struct GNUNET_TESTING_PeerGroup *pg,
4912                              GNUNET_TESTING_NotifyTopology cb, void *cls)
4913 {
4914   struct TopologyIterateContext *topology_context;
4915   struct CoreContext *core_ctx;
4916   unsigned int i;
4917   unsigned int total_count;
4918
4919   /* Allocate a single topology iteration context */
4920   topology_context = GNUNET_malloc (sizeof (struct TopologyIterateContext));
4921   topology_context->topology_cb = cb;
4922   topology_context->cls = cls;
4923   topology_context->pg = pg;
4924   total_count = 0;
4925   for (i = 0; i < pg->total; i++)
4926   {
4927     if (pg->peers[i].daemon->running == GNUNET_YES)
4928     {
4929       /* Allocate one core context per core we need to connect to */
4930       core_ctx = GNUNET_malloc (sizeof (struct CoreContext));
4931       core_ctx->daemon = pg->peers[i].daemon;
4932       /* Set back pointer to topology iteration context */
4933       core_ctx->iter_context = topology_context;
4934       GNUNET_SCHEDULER_add_now (&schedule_get_topology, core_ctx);
4935       total_count++;
4936     }
4937   }
4938   if (total_count == 0)
4939   {
4940     cb (cls, NULL, NULL, "Cannot iterate over topology, no running peers!");
4941     GNUNET_free (topology_context);
4942   }
4943   else
4944     topology_context->total = total_count;
4945   return;
4946 }
4947
4948 /**
4949  * Callback function to process statistic values.
4950  * This handler is here only really to insert a peer
4951  * identity (or daemon) so the statistics can be uniquely
4952  * tied to a single running peer.
4953  *
4954  * @param cls closure
4955  * @param subsystem name of subsystem that created the statistic
4956  * @param name the name of the datum
4957  * @param value the current value
4958  * @param is_persistent GNUNET_YES if the value is persistent, GNUNET_NO if not
4959  * @return GNUNET_OK to continue, GNUNET_SYSERR to abort iteration
4960  */
4961 static int
4962 internal_stats_callback (void *cls, const char *subsystem, const char *name,
4963                          uint64_t value, int is_persistent)
4964 {
4965   struct StatsCoreContext *core_context = cls;
4966   struct StatsIterateContext *stats_context =
4967       (struct StatsIterateContext *) core_context->iter_context;
4968
4969   return stats_context->proc (stats_context->cls, &core_context->daemon->id,
4970                               subsystem, name, value, is_persistent);
4971 }
4972
4973 /**
4974  * Internal continuation call for statistics iteration.
4975  *
4976  * @param cls closure, the CoreContext for this iteration
4977  * @param success whether or not the statistics iterations
4978  *        was canceled or not (we don't care)
4979  */
4980 static void
4981 internal_stats_cont (void *cls, int success)
4982 {
4983   struct StatsCoreContext *core_context = cls;
4984   struct StatsIterateContext *stats_context =
4985       (struct StatsIterateContext *) core_context->iter_context;
4986
4987   stats_context->connected--;
4988   stats_context->completed++;
4989
4990   if (stats_context->completed == stats_context->total)
4991   {
4992     stats_context->cont (stats_context->cls, GNUNET_YES);
4993     GNUNET_free (stats_context);
4994   }
4995
4996   if (core_context->stats_handle != NULL)
4997     GNUNET_STATISTICS_destroy (core_context->stats_handle, GNUNET_NO);
4998
4999   GNUNET_free (core_context);
5000 }
5001
5002 /**
5003  * Check running topology iteration tasks, if below max start a new one, otherwise
5004  * schedule for some time in the future.
5005  */
5006 static void
5007 schedule_get_statistics (void *cls,
5008                          const struct GNUNET_SCHEDULER_TaskContext *tc)
5009 {
5010   struct StatsCoreContext *core_context = cls;
5011   struct StatsIterateContext *stats_context =
5012       (struct StatsIterateContext *) core_context->iter_context;
5013
5014   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
5015     return;
5016
5017   if (stats_context->connected > stats_context->pg->max_outstanding_connections)
5018   {
5019 #if VERBOSE_TESTING > 2
5020     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5021                 _
5022                 ("Delaying connect, we have too many outstanding connections!\n"));
5023 #endif
5024     GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
5025                                   (GNUNET_TIME_UNIT_MILLISECONDS, 100),
5026                                   &schedule_get_statistics, core_context);
5027   }
5028   else
5029   {
5030 #if VERBOSE_TESTING > 2
5031     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5032                 _("Creating connection, outstanding_connections is %d\n"),
5033                 outstanding_connects);
5034 #endif
5035
5036     stats_context->connected++;
5037     core_context->stats_handle =
5038         GNUNET_STATISTICS_create ("testing", core_context->daemon->cfg);
5039     if (core_context->stats_handle == NULL)
5040     {
5041       internal_stats_cont (core_context, GNUNET_NO);
5042       return;
5043     }
5044
5045     core_context->stats_get_handle =
5046         GNUNET_STATISTICS_get (core_context->stats_handle, NULL, NULL,
5047                                GNUNET_TIME_relative_get_forever (),
5048                                &internal_stats_cont, &internal_stats_callback,
5049                                core_context);
5050     if (core_context->stats_get_handle == NULL)
5051       internal_stats_cont (core_context, GNUNET_NO);
5052
5053   }
5054 }
5055
5056 struct DuplicateStats
5057 {
5058   /**
5059    * Next item in the list
5060    */
5061   struct DuplicateStats *next;
5062
5063   /**
5064    * Nasty string, concatenation of relevant information.
5065    */
5066   char *unique_string;
5067 };
5068
5069 /**
5070  * Check whether the combination of port/host/unix domain socket
5071  * already exists in the list of peers being checked for statistics.
5072  *
5073  * @param pg the peergroup in question
5074  * @param specific_peer the peer we're concerned with
5075  * @param stats_list the list to return to the caller
5076  *
5077  * @return GNUNET_YES if the statistics instance has been seen already,
5078  *         GNUNET_NO if not (and we may have added it to the list)
5079  */
5080 static int
5081 stats_check_existing (struct GNUNET_TESTING_PeerGroup *pg,
5082                       struct PeerData *specific_peer,
5083                       struct DuplicateStats **stats_list)
5084 {
5085   struct DuplicateStats *pos;
5086   char *unix_domain_socket;
5087   unsigned long long port;
5088   char *to_match;
5089
5090   if (GNUNET_YES !=
5091       GNUNET_CONFIGURATION_get_value_yesno (pg->cfg, "testing",
5092                                             "single_statistics_per_host"))
5093     return GNUNET_NO;           /* Each peer has its own statistics instance, do nothing! */
5094
5095   pos = *stats_list;
5096   if (GNUNET_OK !=
5097       GNUNET_CONFIGURATION_get_value_string (specific_peer->cfg, "statistics",
5098                                              "unixpath", &unix_domain_socket))
5099     return GNUNET_NO;
5100
5101   if (GNUNET_OK !=
5102       GNUNET_CONFIGURATION_get_value_number (specific_peer->cfg, "statistics",
5103                                              "port", &port))
5104   {
5105     GNUNET_free (unix_domain_socket);
5106     return GNUNET_NO;
5107   }
5108
5109   if (specific_peer->daemon->hostname != NULL)
5110     GNUNET_asprintf (&to_match, "%s%s%llu", specific_peer->daemon->hostname,
5111                      unix_domain_socket, port);
5112   else
5113     GNUNET_asprintf (&to_match, "%s%llu", unix_domain_socket, port);
5114
5115   while (pos != NULL)
5116   {
5117     if (0 == strcmp (to_match, pos->unique_string))
5118     {
5119       GNUNET_free (unix_domain_socket);
5120       GNUNET_free (to_match);
5121       return GNUNET_YES;
5122     }
5123     pos = pos->next;
5124   }
5125   pos = GNUNET_malloc (sizeof (struct DuplicateStats));
5126   pos->unique_string = to_match;
5127   pos->next = *stats_list;
5128   *stats_list = pos;
5129   GNUNET_free (unix_domain_socket);
5130   return GNUNET_NO;
5131 }
5132
5133 /**
5134  * Iterate over all (running) peers in the peer group, retrieve
5135  * all statistics from each.
5136  *
5137  * @param pg the peergroup to iterate statistics of
5138  * @param cont continuation to call once all stats have been retrieved
5139  * @param proc processing function for each statistic from each peer
5140  * @param cls closure to pass to proc
5141  *
5142  */
5143 void
5144 GNUNET_TESTING_get_statistics (struct GNUNET_TESTING_PeerGroup *pg,
5145                                GNUNET_STATISTICS_Callback cont,
5146                                GNUNET_TESTING_STATISTICS_Iterator proc,
5147                                void *cls)
5148 {
5149   struct StatsIterateContext *stats_context;
5150   struct StatsCoreContext *core_ctx;
5151   unsigned int i;
5152   unsigned int total_count;
5153   struct DuplicateStats *stats_list;
5154   struct DuplicateStats *pos;
5155
5156   stats_list = NULL;
5157
5158   /* Allocate a single stats iteration context */
5159   stats_context = GNUNET_malloc (sizeof (struct StatsIterateContext));
5160   stats_context->cont = cont;
5161   stats_context->proc = proc;
5162   stats_context->cls = cls;
5163   stats_context->pg = pg;
5164   total_count = 0;
5165
5166   for (i = 0; i < pg->total; i++)
5167   {
5168     if ((pg->peers[i].daemon->running == GNUNET_YES) &&
5169         (GNUNET_NO == stats_check_existing (pg, &pg->peers[i], &stats_list)))
5170     {
5171       /* Allocate one core context per core we need to connect to */
5172       core_ctx = GNUNET_malloc (sizeof (struct StatsCoreContext));
5173       core_ctx->daemon = pg->peers[i].daemon;
5174       /* Set back pointer to topology iteration context */
5175       core_ctx->iter_context = stats_context;
5176       GNUNET_SCHEDULER_add_now (&schedule_get_statistics, core_ctx);
5177       total_count++;
5178     }
5179   }
5180
5181   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5182               "Retrieving stats from %u total instances.\n", total_count);
5183   if (0 != total_count)
5184     stats_context->total = total_count;
5185   else
5186     GNUNET_free (stats_context);
5187   if (stats_list != NULL)
5188   {
5189     pos = stats_list;
5190     while (pos != NULL)
5191     {
5192       GNUNET_free (pos->unique_string);
5193       stats_list = pos->next;
5194       GNUNET_free (pos);
5195       pos = stats_list->next;
5196     }
5197   }
5198   return;
5199 }
5200
5201 /**
5202  * Stop the connection process temporarily.
5203  *
5204  * @param pg the peer group to stop connecting
5205  */
5206 void
5207 GNUNET_TESTING_stop_connections (struct GNUNET_TESTING_PeerGroup *pg)
5208 {
5209   pg->stop_connects = GNUNET_YES;
5210 }
5211
5212 /**
5213  * Resume the connection process temporarily.
5214  *
5215  * @param pg the peer group to resume connecting
5216  */
5217 void
5218 GNUNET_TESTING_resume_connections (struct GNUNET_TESTING_PeerGroup *pg)
5219 {
5220   pg->stop_connects = GNUNET_NO;
5221 }
5222
5223 /**
5224  * There are many ways to connect peers that are supported by this function.
5225  * To connect peers in the same topology that was created via the
5226  * GNUNET_TESTING_create_topology, the topology variable must be set to
5227  * GNUNET_TESTING_TOPOLOGY_NONE.  If the topology variable is specified,
5228  * a new instance of that topology will be generated and attempted to be
5229  * connected.  This could result in some connections being impossible,
5230  * because some topologies are non-deterministic.
5231  *
5232  * @param pg the peer group struct representing the running peers
5233  * @param topology which topology to connect the peers in
5234  * @param options options for connecting the topology
5235  * @param option_modifier modifier for options that take a parameter
5236  * @param connect_timeout how long to wait before giving up on connecting
5237  *                        two peers
5238  * @param connect_attempts how many times to attempt to connect two peers
5239  *                         over the connect_timeout duration
5240  * @param notify_callback notification to be called once all connections completed
5241  * @param notify_cls closure for notification callback
5242  *
5243  * @return the number of connections that will be attempted, GNUNET_SYSERR on error
5244  */
5245 int
5246 GNUNET_TESTING_connect_topology (struct GNUNET_TESTING_PeerGroup *pg,
5247                                  enum GNUNET_TESTING_Topology topology,
5248                                  enum GNUNET_TESTING_TopologyOption options,
5249                                  double option_modifier,
5250                                  struct GNUNET_TIME_Relative connect_timeout,
5251                                  unsigned int connect_attempts,
5252                                  GNUNET_TESTING_NotifyCompletion
5253                                  notify_callback, void *notify_cls)
5254 {
5255   switch (topology)
5256   {
5257   case GNUNET_TESTING_TOPOLOGY_CLIQUE:
5258 #if VERBOSE_TOPOLOGY
5259     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5260                 _("Creating clique CONNECT topology\n"));
5261 #endif
5262     create_clique (pg, &add_connections, CONNECT, GNUNET_NO);
5263     break;
5264   case GNUNET_TESTING_TOPOLOGY_SMALL_WORLD_RING:
5265 #if VERBOSE_TOPOLOGY
5266     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5267                 _("Creating small world (ring) CONNECT topology\n"));
5268 #endif
5269     create_small_world_ring (pg, &add_connections, CONNECT);
5270     break;
5271   case GNUNET_TESTING_TOPOLOGY_SMALL_WORLD:
5272 #if VERBOSE_TOPOLOGY
5273     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5274                 _("Creating small world (2d-torus) CONNECT topology\n"));
5275 #endif
5276     create_small_world (pg, &add_connections, CONNECT);
5277     break;
5278   case GNUNET_TESTING_TOPOLOGY_RING:
5279 #if VERBOSE_TOPOLOGY
5280     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, _("Creating ring CONNECT topology\n"));
5281 #endif
5282     create_ring (pg, &add_connections, CONNECT);
5283     break;
5284   case GNUNET_TESTING_TOPOLOGY_2D_TORUS:
5285 #if VERBOSE_TOPOLOGY
5286     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5287                 _("Creating 2d torus CONNECT topology\n"));
5288 #endif
5289     create_2d_torus (pg, &add_connections, CONNECT);
5290     break;
5291   case GNUNET_TESTING_TOPOLOGY_ERDOS_RENYI:
5292 #if VERBOSE_TOPOLOGY
5293     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5294                 _("Creating Erdos-Renyi CONNECT topology\n"));
5295 #endif
5296     create_erdos_renyi (pg, &add_connections, CONNECT);
5297     break;
5298   case GNUNET_TESTING_TOPOLOGY_INTERNAT:
5299 #if VERBOSE_TOPOLOGY
5300     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5301                 _("Creating InterNAT CONNECT topology\n"));
5302 #endif
5303     create_nated_internet (pg, &add_connections, CONNECT);
5304     break;
5305   case GNUNET_TESTING_TOPOLOGY_SCALE_FREE:
5306 #if VERBOSE_TOPOLOGY
5307     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5308                 _("Creating Scale Free CONNECT topology\n"));
5309 #endif
5310     create_scale_free (pg, &add_connections, CONNECT);
5311     break;
5312   case GNUNET_TESTING_TOPOLOGY_LINE:
5313 #if VERBOSE_TOPOLOGY
5314     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5315                 _("Creating straight line CONNECT topology\n"));
5316 #endif
5317     create_line (pg, &add_connections, CONNECT);
5318     break;
5319   case GNUNET_TESTING_TOPOLOGY_NONE:
5320 #if VERBOSE_TOPOLOGY
5321     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, _("Creating no CONNECT topology\n"));
5322 #endif
5323     copy_allowed_topology (pg);
5324     break;
5325   default:
5326     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5327                 _("Unknown topology specification, can't connect peers!\n"));
5328     return GNUNET_SYSERR;
5329   }
5330
5331   switch (options)
5332   {
5333   case GNUNET_TESTING_TOPOLOGY_OPTION_RANDOM:
5334 #if VERBOSE_TOPOLOGY
5335     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5336                 _
5337                 ("Connecting random subset (%'.2f percent) of possible peers\n"),
5338                 100 * option_modifier);
5339 #endif
5340     choose_random_connections (pg, option_modifier);
5341     break;
5342   case GNUNET_TESTING_TOPOLOGY_OPTION_MINIMUM:
5343 #if VERBOSE_TOPOLOGY
5344     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5345                 _("Connecting a minimum of %u peers each (if possible)\n"),
5346                 (unsigned int) option_modifier);
5347 #endif
5348     choose_minimum (pg, (unsigned int) option_modifier);
5349     break;
5350   case GNUNET_TESTING_TOPOLOGY_OPTION_DFS:
5351 #if VERBOSE_TOPOLOGY
5352     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5353                 _
5354                 ("Using DFS to connect a minimum of %u peers each (if possible)\n"),
5355                 (unsigned int) option_modifier);
5356 #endif
5357 #if FIXME
5358     perform_dfs (pg, (int) option_modifier);
5359 #endif
5360     break;
5361   case GNUNET_TESTING_TOPOLOGY_OPTION_ADD_CLOSEST:
5362 #if VERBOSE_TOPOLOGY
5363     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5364                 _("Finding additional %u closest peers each (if possible)\n"),
5365                 (unsigned int) option_modifier);
5366 #endif
5367 #if FIXME
5368     add_closest (pg, (unsigned int) option_modifier, &add_connections, CONNECT);
5369 #endif
5370     break;
5371   case GNUNET_TESTING_TOPOLOGY_OPTION_NONE:
5372     break;
5373   case GNUNET_TESTING_TOPOLOGY_OPTION_ALL:
5374     break;
5375   default:
5376     break;
5377   }
5378
5379   return connect_topology (pg, connect_timeout, connect_attempts,
5380                            notify_callback, notify_cls);
5381 }
5382
5383 /**
5384  * Lookup and return the number of SSH connections to a host.
5385  *
5386  * @param hostname the hostname to lookup in the list
5387  * @param pg the peergroup that the host belongs to
5388  *
5389  * @return the number of current ssh connections to the host
5390  */
5391 static unsigned int
5392 count_outstanding_at_host (const char *hostname,
5393                            struct GNUNET_TESTING_PeerGroup *pg)
5394 {
5395   struct OutstandingSSH *pos;
5396
5397   pos = pg->ssh_head;
5398   while ((pos != NULL) && (strcmp (pos->hostname, hostname) != 0))
5399     pos = pos->next;
5400   GNUNET_assert (pos != NULL);
5401   return pos->outstanding;
5402 }
5403
5404 /**
5405  * Increment the number of SSH connections to a host by one.
5406  *
5407  * @param hostname the hostname to lookup in the list
5408  * @param pg the peergroup that the host belongs to
5409  *
5410  */
5411 static void
5412 increment_outstanding_at_host (const char *hostname,
5413                                struct GNUNET_TESTING_PeerGroup *pg)
5414 {
5415   struct OutstandingSSH *pos;
5416
5417   pos = pg->ssh_head;
5418   while ((pos != NULL) && (strcmp (pos->hostname, hostname) != 0))
5419     pos = pos->next;
5420   GNUNET_assert (pos != NULL);
5421   pos->outstanding++;
5422 }
5423
5424 /**
5425  * Decrement the number of SSH connections to a host by one.
5426  *
5427  * @param hostname the hostname to lookup in the list
5428  * @param pg the peergroup that the host belongs to
5429  *
5430  */
5431 static void
5432 decrement_outstanding_at_host (const char *hostname,
5433                                struct GNUNET_TESTING_PeerGroup *pg)
5434 {
5435   struct OutstandingSSH *pos;
5436
5437   pos = pg->ssh_head;
5438   while ((pos != NULL) && (strcmp (pos->hostname, hostname) != 0))
5439     pos = pos->next;
5440   GNUNET_assert (pos != NULL);
5441   pos->outstanding--;
5442 }
5443
5444 /**
5445  * Callback that is called whenever a hostkey is generated
5446  * for a peer.  Call the real callback and decrement the
5447  * starting counter for the peergroup.
5448  *
5449  * @param cls closure
5450  * @param id identifier for the daemon, NULL on error
5451  * @param d handle for the daemon
5452  * @param emsg error message (NULL on success)
5453  */
5454 static void
5455 internal_hostkey_callback (void *cls, const struct GNUNET_PeerIdentity *id,
5456                            struct GNUNET_TESTING_Daemon *d, const char *emsg)
5457 {
5458   struct InternalStartContext *internal_context = cls;
5459
5460   internal_context->peer->pg->starting--;
5461   internal_context->peer->pg->started++;
5462   if (internal_context->hostname != NULL)
5463     decrement_outstanding_at_host (internal_context->hostname,
5464                                    internal_context->peer->pg);
5465   if (internal_context->hostkey_callback != NULL)
5466     internal_context->hostkey_callback (internal_context->hostkey_cls, id, d,
5467                                         emsg);
5468   else if (internal_context->peer->pg->started ==
5469            internal_context->peer->pg->total)
5470   {
5471     internal_context->peer->pg->started = 0;    /* Internal startup may use this counter! */
5472     GNUNET_TESTING_daemons_continue_startup (internal_context->peer->pg);
5473   }
5474 }
5475
5476 /**
5477  * Callback that is called whenever a peer has finished starting.
5478  * Call the real callback and decrement the starting counter
5479  * for the peergroup.
5480  *
5481  * @param cls closure
5482  * @param id identifier for the daemon, NULL on error
5483  * @param cfg config
5484  * @param d handle for the daemon
5485  * @param emsg error message (NULL on success)
5486  */
5487 static void
5488 internal_startup_callback (void *cls, const struct GNUNET_PeerIdentity *id,
5489                            const struct GNUNET_CONFIGURATION_Handle *cfg,
5490                            struct GNUNET_TESTING_Daemon *d, const char *emsg)
5491 {
5492   struct InternalStartContext *internal_context = cls;
5493
5494   internal_context->peer->pg->starting--;
5495   if (internal_context->hostname != NULL)
5496     decrement_outstanding_at_host (internal_context->hostname,
5497                                    internal_context->peer->pg);
5498   if (internal_context->start_cb != NULL)
5499     internal_context->start_cb (internal_context->start_cb_cls, id, cfg, d,
5500                                 emsg);
5501 }
5502
5503
5504 /**
5505  * Calls GNUNET_TESTING_daemon_continue_startup to set the daemon's state
5506  * from HOSTKEY_CREATED to TOPOLOGY_SETUP. Makes sure not to saturate a host
5507  * with requests delaying them when needed.
5508  *
5509  * @param cls closure: internal context of the daemon.
5510  * @param tc TaskContext
5511  */
5512 static void
5513 internal_continue_startup (void *cls,
5514                            const struct GNUNET_SCHEDULER_TaskContext *tc)
5515 {
5516   struct InternalStartContext *internal_context = cls;
5517
5518   internal_context->peer->startup_task = GNUNET_SCHEDULER_NO_TASK;
5519
5520   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
5521   {
5522     return;
5523   }
5524
5525   if ((internal_context->peer->pg->starting <
5526        internal_context->peer->pg->max_concurrent_ssh) ||
5527       ((internal_context->hostname != NULL) &&
5528        (count_outstanding_at_host
5529         (internal_context->hostname,
5530          internal_context->peer->pg) <
5531         internal_context->peer->pg->max_concurrent_ssh)))
5532   {
5533     if (internal_context->hostname != NULL)
5534       increment_outstanding_at_host (internal_context->hostname,
5535                                      internal_context->peer->pg);
5536     internal_context->peer->pg->starting++;
5537     GNUNET_TESTING_daemon_continue_startup (internal_context->peer->daemon);
5538   }
5539   else
5540   {
5541     internal_context->peer->startup_task =
5542         GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
5543                                       (GNUNET_TIME_UNIT_MILLISECONDS, 100),
5544                                       &internal_continue_startup,
5545                                       internal_context);
5546   }
5547 }
5548
5549 /**
5550  * Callback for informing us about a successful
5551  * or unsuccessful churn start call.
5552  *
5553  * @param cls a ChurnContext
5554  * @param id the peer identity of the started peer
5555  * @param cfg the handle to the configuration of the peer
5556  * @param d handle to the daemon for the peer
5557  * @param emsg NULL on success, non-NULL on failure
5558  *
5559  */
5560 void
5561 churn_start_callback (void *cls, const struct GNUNET_PeerIdentity *id,
5562                       const struct GNUNET_CONFIGURATION_Handle *cfg,
5563                       struct GNUNET_TESTING_Daemon *d, const char *emsg)
5564 {
5565   struct ChurnRestartContext *startup_ctx = cls;
5566   struct ChurnContext *churn_ctx = startup_ctx->churn_ctx;
5567
5568   unsigned int total_left;
5569   char *error_message;
5570
5571   error_message = NULL;
5572   if (emsg != NULL)
5573   {
5574     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5575                 "Churn stop callback failed with error `%s'\n", emsg);
5576     churn_ctx->num_failed_start++;
5577   }
5578   else
5579   {
5580     churn_ctx->num_to_start--;
5581   }
5582
5583   total_left =
5584       (churn_ctx->num_to_stop - churn_ctx->num_failed_stop) +
5585       (churn_ctx->num_to_start - churn_ctx->num_failed_start);
5586
5587   if (total_left == 0)
5588   {
5589     if ((churn_ctx->num_failed_stop > 0) || (churn_ctx->num_failed_start > 0))
5590       GNUNET_asprintf (&error_message,
5591                        "Churn didn't complete successfully, %u peers failed to start %u peers failed to be stopped!",
5592                        churn_ctx->num_failed_start, churn_ctx->num_failed_stop);
5593     churn_ctx->cb (churn_ctx->cb_cls, error_message);
5594     GNUNET_free_non_null (error_message);
5595     GNUNET_free (churn_ctx);
5596     GNUNET_free (startup_ctx);
5597   }
5598 }
5599
5600 static void
5601 schedule_churn_restart (void *cls,
5602                         const struct GNUNET_SCHEDULER_TaskContext *tc)
5603 {
5604   struct PeerRestartContext *peer_restart_ctx = cls;
5605   struct ChurnRestartContext *startup_ctx = peer_restart_ctx->churn_restart_ctx;
5606
5607   if (startup_ctx->outstanding > startup_ctx->pg->max_concurrent_ssh)
5608     GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
5609                                   (GNUNET_TIME_UNIT_MILLISECONDS, 100),
5610                                   &schedule_churn_restart, peer_restart_ctx);
5611   else
5612   {
5613     if (startup_ctx->churn_ctx->service != NULL)
5614       GNUNET_TESTING_daemon_start_stopped_service (peer_restart_ctx->daemon,
5615                                                    startup_ctx->
5616                                                    churn_ctx->service,
5617                                                    startup_ctx->timeout,
5618                                                    &churn_start_callback,
5619                                                    startup_ctx);
5620     else
5621       GNUNET_TESTING_daemon_start_stopped (peer_restart_ctx->daemon,
5622                                            startup_ctx->timeout,
5623                                            &churn_start_callback, startup_ctx);
5624     GNUNET_free (peer_restart_ctx);
5625   }
5626 }
5627
5628 /**
5629  * Callback for informing us about a successful
5630  * or unsuccessful churn start call.
5631  *
5632  * @param cls a struct ServiceStartContext *startup_ctx
5633  * @param id the peer identity of the started peer
5634  * @param cfg the handle to the configuration of the peer
5635  * @param d handle to the daemon for the peer
5636  * @param emsg NULL on success, non-NULL on failure
5637  *
5638  */
5639 void
5640 service_start_callback (void *cls, const struct GNUNET_PeerIdentity *id,
5641                         const struct GNUNET_CONFIGURATION_Handle *cfg,
5642                         struct GNUNET_TESTING_Daemon *d, const char *emsg)
5643 {
5644   struct ServiceStartContext *startup_ctx = (struct ServiceStartContext *) cls;
5645
5646   if (emsg != NULL)
5647   {
5648     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
5649                 "Service start failed with error `%s'\n", emsg);
5650   }
5651
5652   startup_ctx->outstanding--;
5653   startup_ctx->remaining--;
5654
5655   if (startup_ctx->remaining == 0)
5656   {
5657     startup_ctx->cb (startup_ctx->cb_cls, NULL);
5658     GNUNET_free (startup_ctx->service);
5659     GNUNET_free (startup_ctx);
5660   }
5661 }
5662
5663 static void
5664 schedule_service_start (void *cls,
5665                         const struct GNUNET_SCHEDULER_TaskContext *tc)
5666 {
5667   struct PeerServiceStartContext *peer_ctx = cls;
5668   struct ServiceStartContext *startup_ctx = peer_ctx->start_ctx;
5669
5670   if (startup_ctx->outstanding > startup_ctx->pg->max_concurrent_ssh)
5671     GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
5672                                   (GNUNET_TIME_UNIT_MILLISECONDS, 100),
5673                                   &schedule_service_start, peer_ctx);
5674   else
5675   {
5676
5677     GNUNET_TESTING_daemon_start_service (peer_ctx->daemon, startup_ctx->service,
5678                                          startup_ctx->timeout,
5679                                          &service_start_callback, startup_ctx);
5680     GNUNET_free (peer_ctx);
5681   }
5682 }
5683
5684
5685 static void
5686 internal_start (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
5687 {
5688   struct InternalStartContext *internal_context = cls;
5689
5690   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
5691   {
5692     return;
5693   }
5694
5695   if ((internal_context->peer->pg->starting <
5696        internal_context->peer->pg->max_concurrent_ssh) ||
5697       ((internal_context->hostname != NULL) &&
5698        (count_outstanding_at_host
5699         (internal_context->hostname,
5700          internal_context->peer->pg) <
5701         internal_context->peer->pg->max_concurrent_ssh)))
5702   {
5703     if (internal_context->hostname != NULL)
5704       increment_outstanding_at_host (internal_context->hostname,
5705                                      internal_context->peer->pg);
5706     internal_context->peer->pg->starting++;
5707     internal_context->peer->daemon =
5708         GNUNET_TESTING_daemon_start (internal_context->peer->cfg,
5709                                      internal_context->timeout, GNUNET_NO,
5710                                      internal_context->hostname,
5711                                      internal_context->username,
5712                                      internal_context->sshport,
5713                                      internal_context->hostkey,
5714                                      &internal_hostkey_callback,
5715                                      internal_context,
5716                                      &internal_startup_callback,
5717                                      internal_context);
5718   }
5719   else
5720   {
5721     GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
5722                                   (GNUNET_TIME_UNIT_MILLISECONDS, 100),
5723                                   &internal_start, internal_context);
5724   }
5725 }
5726
5727 #if USE_START_HELPER
5728
5729 struct PeerStartHelperContext
5730 {
5731   struct GNUNET_TESTING_PeerGroup *pg;
5732
5733   struct HostData *host;
5734
5735   struct GNUNET_OS_Process *proc;
5736 };
5737
5738 static void
5739 check_peers_started (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
5740 {
5741   struct PeerStartHelperContext *helper = cls;
5742   enum GNUNET_OS_ProcessStatusType type;
5743   unsigned long code;
5744   unsigned int i;
5745   GNUNET_TESTING_NotifyDaemonRunning cb;
5746
5747   if (GNUNET_NO == GNUNET_OS_process_status (helper->proc, &type, &code))       /* Still running, wait some more! */
5748   {
5749     GNUNET_SCHEDULER_add_delayed (GNUNET_CONSTANTS_EXEC_WAIT,
5750                                   &check_peers_started, helper);
5751     return;
5752   }
5753
5754   helper->pg->starting--;
5755   if (helper->pg->starting == 0)        /* All peers have finished starting! */
5756   {
5757     /* Call the peer started callback for each peer, set proper FSM state (?) */
5758     for (i = 0; i < helper->pg->total; i++)
5759     {
5760       cb = helper->pg->peers[i].daemon->cb;
5761       helper->pg->peers[i].daemon->cb = NULL;
5762       helper->pg->peers[i].daemon->running = GNUNET_YES;
5763       helper->pg->peers[i].daemon->phase = SP_START_DONE;
5764       if (NULL != cb)
5765       {
5766         if ((type != GNUNET_OS_PROCESS_EXITED) || (code != 0))
5767           cb (helper->pg->peers[i].daemon->cb_cls,
5768               &helper->pg->peers[i].daemon->id,
5769               helper->pg->peers[i].daemon->cfg, helper->pg->peers[i].daemon,
5770               "Failed to execute peerStartHelper.pl, or return code bad!");
5771         else
5772           cb (helper->pg->peers[i].daemon->cb_cls,
5773               &helper->pg->peers[i].daemon->id,
5774               helper->pg->peers[i].daemon->cfg, helper->pg->peers[i].daemon,
5775               NULL);
5776
5777       }
5778
5779     }
5780   }
5781   GNUNET_OS_process_close (helper->proc);
5782 }
5783
5784 static void
5785 start_peer_helper (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
5786 {
5787   struct PeerStartHelperContext *helper = cls;
5788   char *baseservicehome;
5789   char *tempdir;
5790   char *arg;
5791
5792   /* ssh user@host peerStartHelper /path/to/basedirectory */
5793   GNUNET_assert (GNUNET_OK ==
5794                  GNUNET_CONFIGURATION_get_value_string (helper->pg->cfg,
5795                                                         "PATHS", "SERVICEHOME",
5796                                                         &baseservicehome));
5797   GNUNET_asprintf (&tempdir, "%s/%s/", baseservicehome, helper->host->hostname);
5798   if (NULL != helper->host->username)
5799     GNUNET_asprintf (&arg, "%s@%s", helper->host->username,
5800                      helper->host->hostname);
5801   else
5802     GNUNET_asprintf (&arg, "%s", helper->host->hostname);
5803
5804   /* FIXME: Doesn't support ssh_port option! */
5805   helper->proc =
5806     GNUNET_OS_start_process (GNUNET_NO, NULL, NULL, "ssh", "ssh", arg,
5807                                "peerStartHelper.pl", tempdir, NULL);
5808   GNUNET_assert (helper->proc != NULL);
5809 #if DEBUG_TESTING
5810   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "starting peers with cmd ssh %s %s %s\n",
5811               arg, "peerStartHelper.pl", tempdir);
5812 #endif
5813   GNUNET_SCHEDULER_add_now (&check_peers_started, helper);
5814   GNUNET_free (tempdir);
5815   GNUNET_free (baseservicehome);
5816   GNUNET_free (arg);
5817 }
5818 #endif
5819
5820 /**
5821  * Function which continues a peer group starting up
5822  * after successfully generating hostkeys for each peer.
5823  *
5824  * @param pg the peer group to continue starting
5825  *
5826  */
5827 void
5828 GNUNET_TESTING_daemons_continue_startup (struct GNUNET_TESTING_PeerGroup *pg)
5829 {
5830   unsigned int i;
5831
5832 #if USE_START_HELPER
5833   if ((pg->num_hosts > 0) && (pg->hostkey_data != NULL))
5834   {
5835     struct PeerStartHelperContext *helper;
5836
5837     pg->starting = pg->num_hosts;
5838     for (i = 0; i < pg->num_hosts; i++)
5839     {
5840       helper = GNUNET_malloc (sizeof (struct PeerStartHelperContext));
5841       helper->pg = pg;
5842       helper->host = &pg->hosts[i];
5843       GNUNET_SCHEDULER_add_now (&start_peer_helper, helper);
5844     }
5845   }
5846   else
5847   {
5848     pg->starting = 0;
5849     for (i = 0; i < pg->total; i++)
5850     {
5851       pg->peers[i].startup_task =
5852           GNUNET_SCHEDULER_add_now (&internal_continue_startup,
5853                                     &pg->peers[i].internal_context);
5854     }
5855   }
5856 #else
5857   pg->starting = 0;
5858   for (i = 0; i < pg->total; i++)
5859   {
5860     pg->peers[i].startup_task =
5861         GNUNET_SCHEDULER_add_now (&internal_continue_startup,
5862                                   &pg->peers[i].internal_context);
5863   }
5864 #endif
5865 }
5866
5867 #if USE_START_HELPER
5868 static void
5869 call_hostkey_callbacks (void *cls,
5870                         const struct GNUNET_SCHEDULER_TaskContext *tc)
5871 {
5872   struct GNUNET_TESTING_PeerGroup *pg = cls;
5873   unsigned int i;
5874
5875   for (i = 0; i < pg->total; i++)
5876   {
5877     if (pg->peers[i].internal_context.hostkey_callback != NULL)
5878       pg->peers[i].internal_context.hostkey_callback (pg->peers[i].
5879                                                       internal_context.hostkey_cls,
5880                                                       &pg->peers[i].daemon->id,
5881                                                       pg->peers[i].daemon,
5882                                                       NULL);
5883   }
5884
5885   if (pg->peers[0].internal_context.hostkey_callback == NULL)
5886     GNUNET_TESTING_daemons_continue_startup (pg);
5887 }
5888 #endif
5889
5890 /**
5891  * Start count gnunet instances with the same set of transports and
5892  * applications.  The port numbers (any option called "PORT") will be
5893  * adjusted to ensure that no two peers running on the same system
5894  * have the same port(s) in their respective configurations.
5895  *
5896  * @param cfg configuration template to use
5897  * @param total number of daemons to start
5898  * @param max_concurrent_connections for testing, how many peers can
5899  *                                   we connect to simultaneously
5900  * @param max_concurrent_ssh when starting with ssh, how many ssh
5901  *        connections will we allow at once (based on remote hosts allowed!)
5902  * @param timeout total time allowed for peers to start
5903  * @param hostkey_callback function to call on each peers hostkey generation
5904  *        if NULL, peers will be started by this call, if non-null,
5905  *        GNUNET_TESTING_daemons_continue_startup must be called after
5906  *        successful hostkey generation
5907  * @param hostkey_cls closure for hostkey callback
5908  * @param cb function to call on each daemon that was started
5909  * @param cb_cls closure for cb
5910  * @param connect_callback function to call each time two hosts are connected
5911  * @param connect_callback_cls closure for connect_callback
5912  * @param hostnames linked list of host structs to use to start peers on
5913  *                  (NULL to run on localhost only)
5914  *
5915  * @return NULL on error, otherwise handle to control peer group
5916  */
5917 struct GNUNET_TESTING_PeerGroup *
5918 GNUNET_TESTING_daemons_start (const struct GNUNET_CONFIGURATION_Handle *cfg,
5919                               unsigned int total,
5920                               unsigned int max_concurrent_connections,
5921                               unsigned int max_concurrent_ssh,
5922                               struct GNUNET_TIME_Relative timeout,
5923                               GNUNET_TESTING_NotifyHostkeyCreated
5924                               hostkey_callback, void *hostkey_cls,
5925                               GNUNET_TESTING_NotifyDaemonRunning cb,
5926                               void *cb_cls,
5927                               GNUNET_TESTING_NotifyConnection connect_callback,
5928                               void *connect_callback_cls,
5929                               const struct GNUNET_TESTING_Host *hostnames)
5930 {
5931   struct GNUNET_TESTING_PeerGroup *pg;
5932   const struct GNUNET_TESTING_Host *hostpos;
5933   const char *hostname;
5934   const char *username;
5935   char *baseservicehome;
5936   char *newservicehome;
5937   char *tmpdir;
5938   char *hostkeys_file;
5939   char *arg;
5940   char *ssh_port_str;
5941   struct GNUNET_DISK_FileHandle *fd;
5942   struct GNUNET_CONFIGURATION_Handle *pcfg;
5943   unsigned int off;
5944   struct OutstandingSSH *ssh_entry;
5945   unsigned int hostcnt;
5946   unsigned int i;
5947   uint16_t minport;
5948   uint16_t sshport;
5949   uint32_t upnum;
5950   uint32_t fdnum;
5951   uint64_t fs;
5952   uint64_t total_hostkeys;
5953   struct GNUNET_OS_Process *proc;
5954
5955   username = NULL;
5956   if (0 == total)
5957   {
5958     GNUNET_break (0);
5959     return NULL;
5960   }
5961
5962   upnum = 0;
5963   fdnum = 0;
5964   pg = GNUNET_malloc (sizeof (struct GNUNET_TESTING_PeerGroup));
5965   pg->cfg = cfg;
5966   pg->notify_connection = connect_callback;
5967   pg->notify_connection_cls = connect_callback_cls;
5968   pg->total = total;
5969   pg->max_timeout = GNUNET_TIME_relative_to_absolute (timeout);
5970   pg->peers = GNUNET_malloc (total * sizeof (struct PeerData));
5971   pg->max_outstanding_connections = max_concurrent_connections;
5972   pg->max_concurrent_ssh = max_concurrent_ssh;
5973   if (NULL != hostnames)
5974   {
5975     off = 0;
5976     hostpos = hostnames;
5977     while (hostpos != NULL)
5978     {
5979       hostpos = hostpos->next;
5980       off++;
5981     }
5982     pg->hosts = GNUNET_malloc (off * sizeof (struct HostData));
5983     off = 0;
5984
5985     hostpos = hostnames;
5986     while (hostpos != NULL)
5987     {
5988       pg->hosts[off].minport = LOW_PORT;
5989       pg->hosts[off].hostname = GNUNET_strdup (hostpos->hostname);
5990       if (hostpos->username != NULL)
5991         pg->hosts[off].username = GNUNET_strdup (hostpos->username);
5992       pg->hosts[off].sshport = hostpos->port;
5993       hostpos = hostpos->next;
5994       off++;
5995     }
5996
5997     if (off == 0)
5998     {
5999       pg->hosts = NULL;
6000     }
6001     hostcnt = off;
6002     minport = 0;
6003     pg->num_hosts = off;
6004   }
6005   else
6006   {
6007     hostcnt = 0;
6008     minport = LOW_PORT;
6009   }
6010
6011   /* Create the servicehome directory for each remote peer */
6012   GNUNET_assert (GNUNET_OK ==
6013                  GNUNET_CONFIGURATION_get_value_string (cfg, "PATHS",
6014                                                         "SERVICEHOME",
6015                                                         &baseservicehome));
6016   for (i = 0; i < pg->num_hosts; i++)
6017   {
6018     ssh_entry = GNUNET_malloc (sizeof (struct OutstandingSSH));
6019     ssh_entry->hostname = pg->hosts[i].hostname;        /* Don't free! */
6020     GNUNET_CONTAINER_DLL_insert (pg->ssh_head, pg->ssh_tail, ssh_entry);
6021     GNUNET_asprintf (&tmpdir, "%s/%s", baseservicehome, pg->hosts[i].hostname);
6022     if (NULL != pg->hosts[i].username)
6023       GNUNET_asprintf (&arg, "%s@%s", pg->hosts[i].username,
6024                        pg->hosts[i].hostname);
6025     else
6026       GNUNET_asprintf (&arg, "%s", pg->hosts[i].hostname);
6027     if (pg->hosts[i].sshport != 0)
6028     {
6029       GNUNET_asprintf (&ssh_port_str, "%d", pg->hosts[i].sshport);
6030       proc =
6031         GNUNET_OS_start_process (GNUNET_NO, NULL, NULL, "ssh", "ssh", "-P", ssh_port_str,
6032 #if !DEBUG_TESTING
6033                                    "-q",
6034 #endif
6035                                    arg, "mkdir -p", tmpdir, NULL);
6036     }
6037     else
6038       proc =
6039         GNUNET_OS_start_process (GNUNET_NO, NULL, NULL, "ssh", "ssh", arg, "mkdir -p",
6040                                    tmpdir, NULL);
6041     GNUNET_assert (proc != NULL);
6042     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6043                 "Creating remote dir with command ssh %s %s %s\n", arg,
6044                 " mkdir -p ", tmpdir);
6045     GNUNET_free (tmpdir);
6046     GNUNET_free (arg);
6047     GNUNET_OS_process_wait (proc);
6048     GNUNET_OS_process_close (proc);
6049   }
6050   GNUNET_free (baseservicehome);
6051   baseservicehome = NULL;
6052
6053   if (GNUNET_YES ==
6054       GNUNET_CONFIGURATION_get_value_string (cfg, "TESTING", "HOSTKEYSFILE",
6055                                              &hostkeys_file))
6056   {
6057     if (GNUNET_YES != GNUNET_DISK_file_test (hostkeys_file))
6058       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
6059                   _("Could not read hostkeys file!\n"));
6060     else
6061     {
6062       /* Check hostkey file size, read entire thing into memory */
6063       fd = GNUNET_DISK_file_open (hostkeys_file, GNUNET_DISK_OPEN_READ,
6064                                   GNUNET_DISK_PERM_NONE);
6065       if (NULL == fd)
6066       {
6067         GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, "open",
6068                                   hostkeys_file);
6069         GNUNET_free (hostkeys_file);
6070         for (i = 0; i < pg->num_hosts; i++)
6071         {
6072           GNUNET_free (pg->hosts[i].hostname);
6073           GNUNET_free_non_null (pg->hosts[i].username);
6074         }
6075         GNUNET_free (pg->peers);
6076         GNUNET_free (pg->hosts);
6077         GNUNET_free (pg);
6078         return NULL;
6079       }
6080
6081       if (GNUNET_YES != GNUNET_DISK_file_size (hostkeys_file, &fs, GNUNET_YES))
6082         fs = 0;
6083 #if DEBUG_TESTING
6084       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6085                   "Found file size %llu for hostkeys\n", fs);
6086 #endif
6087       if (0 != (fs % HOSTKEYFILESIZE))
6088       {
6089         GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
6090                     "File size %llu seems incorrect for hostkeys...\n", fs);
6091       }
6092       else
6093       {
6094         total_hostkeys = fs / HOSTKEYFILESIZE;
6095         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6096                     "Will read %llu hostkeys from file\n", total_hostkeys);
6097         pg->hostkey_data = GNUNET_malloc_large (fs);
6098         GNUNET_assert (fs == GNUNET_DISK_file_read (fd, pg->hostkey_data, fs));
6099       }
6100       GNUNET_assert (GNUNET_OK == GNUNET_DISK_file_close (fd));
6101     }
6102     GNUNET_free (hostkeys_file);
6103   }
6104
6105   for (off = 0; off < total; off++)
6106   {
6107     if (hostcnt > 0)
6108     {
6109       hostname = pg->hosts[off % hostcnt].hostname;
6110       username = pg->hosts[off % hostcnt].username;
6111       sshport = pg->hosts[off % hostcnt].sshport;
6112       pcfg =
6113           GNUNET_TESTING_create_cfg (cfg, off, &pg->hosts[off % hostcnt].minport, &upnum,
6114                        hostname, &fdnum);
6115     }
6116     else
6117     {
6118       hostname = NULL;
6119       username = NULL;
6120       sshport = 0;
6121       pcfg = GNUNET_TESTING_create_cfg (cfg, off, &minport, &upnum, hostname, &fdnum);
6122     }
6123
6124     if (NULL == pcfg)
6125     {
6126       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
6127                   _
6128                   ("Could not create configuration for peer number %u on `%s'!\n"),
6129                   off, hostname == NULL ? "localhost" : hostname);
6130       continue;
6131     }
6132
6133     if (GNUNET_YES ==
6134         GNUNET_CONFIGURATION_get_value_string (pcfg, "PATHS", "SERVICEHOME",
6135                                                &baseservicehome))
6136     {
6137       if (hostname != NULL)
6138         GNUNET_asprintf (&newservicehome, "%s/%s/%d/", baseservicehome,
6139                          hostname, off);
6140       else
6141         GNUNET_asprintf (&newservicehome, "%s/%d/", baseservicehome, off);
6142       GNUNET_free (baseservicehome);
6143       baseservicehome = NULL;
6144     }
6145     else
6146     {
6147       tmpdir = getenv ("TMPDIR");
6148       tmpdir = tmpdir ? tmpdir : "/tmp";
6149       if (hostname != NULL)
6150         GNUNET_asprintf (&newservicehome, "%s/%s/%s/%d/", tmpdir, hostname,
6151                          "gnunet-testing-test-test", off);
6152       else
6153         GNUNET_asprintf (&newservicehome, "%s/%s/%d/", tmpdir,
6154                          "gnunet-testing-test-test", off);
6155     }
6156     GNUNET_CONFIGURATION_set_value_string (pcfg, "PATHS", "SERVICEHOME",
6157                                            newservicehome);
6158     GNUNET_free (newservicehome);
6159     pg->peers[off].cfg = pcfg;
6160     pg->peers[off].pg = pg;
6161     pg->peers[off].internal_context.peer = &pg->peers[off];
6162     pg->peers[off].internal_context.timeout = timeout;
6163     pg->peers[off].internal_context.hostname = hostname;
6164     pg->peers[off].internal_context.username = username;
6165     pg->peers[off].internal_context.sshport = sshport;
6166     if (pg->hostkey_data != NULL)
6167       pg->peers[off].internal_context.hostkey =
6168           &pg->hostkey_data[off * HOSTKEYFILESIZE];
6169     pg->peers[off].internal_context.hostkey_callback = hostkey_callback;
6170     pg->peers[off].internal_context.hostkey_cls = hostkey_cls;
6171     pg->peers[off].internal_context.start_cb = cb;
6172     pg->peers[off].internal_context.start_cb_cls = cb_cls;
6173 #if !USE_START_HELPER
6174     GNUNET_SCHEDULER_add_now (&internal_start,
6175                               &pg->peers[off].internal_context);
6176 #else
6177     if ((pg->hostkey_data != NULL) && (hostcnt > 0))
6178     {
6179       pg->peers[off].daemon =
6180           GNUNET_TESTING_daemon_start (pcfg, timeout, GNUNET_YES, hostname,
6181                                        username, sshport,
6182                                        pg->peers[off].internal_context.hostkey,
6183                                        &internal_hostkey_callback,
6184                                        &pg->peers[off].internal_context,
6185                                        &internal_startup_callback,
6186                                        &pg->peers[off].internal_context);
6187           /**
6188            * At this point, given that we had a hostkeyfile,
6189            * we can call the hostkey callback!
6190            * But first, we should copy (rsync) all of the configs
6191            * and hostkeys to the remote peers.  Then let topology
6192            * creation happen, then call the peer start helper processes,
6193            * then set pg->whatever_phase for each peer and let them
6194            * enter the fsm to get the HELLO's for peers and start connecting.
6195            */
6196     }
6197     else
6198     {
6199       GNUNET_SCHEDULER_add_now (&internal_start,
6200                                 &pg->peers[off].internal_context);
6201     }
6202
6203 #endif
6204   }
6205
6206 #if USE_START_HELPER            /* Now the peergroup has been set up, hostkeys and configs written to files. */
6207   if ((pg->hostkey_data != NULL) && (hostcnt > 0))
6208   {
6209     for (off = 0; off < hostcnt; off++)
6210     {
6211
6212       if (hostcnt > 0)
6213       {
6214         hostname = pg->hosts[off % hostcnt].hostname;
6215         username = pg->hosts[off % hostcnt].username;
6216         sshport = pg->hosts[off % hostcnt].sshport;
6217       }
6218       else
6219       {
6220         hostname = NULL;
6221         username = NULL;
6222         sshport = 0;
6223       }
6224
6225       if (GNUNET_YES ==
6226           GNUNET_CONFIGURATION_get_value_string (cfg, "PATHS", "SERVICEHOME",
6227                                                  &baseservicehome))
6228       {
6229 #if DEBUG_TESTING
6230         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "baseservice home is %s\n",
6231                     baseservicehome);
6232 #endif
6233         if (hostname != NULL)
6234           GNUNET_asprintf (&newservicehome, "%s/%s/", baseservicehome,
6235                            hostname);
6236         else
6237           GNUNET_asprintf (&newservicehome, "%s/", baseservicehome);
6238         GNUNET_free (baseservicehome);
6239         baseservicehome = NULL;
6240       }
6241       else
6242       {
6243         tmpdir = getenv ("TMPDIR");
6244         tmpdir = tmpdir ? tmpdir : "/tmp";
6245         if (hostname != NULL)
6246           GNUNET_asprintf (&newservicehome, "%s/%s/%s/", tmpdir, hostname,
6247                            "gnunet-testing-test-test");
6248         else
6249           GNUNET_asprintf (&newservicehome, "%s/%s/", tmpdir,
6250                            "gnunet-testing-test-test", off);
6251       }
6252
6253       if (NULL != username)
6254         GNUNET_asprintf (&arg, "%s@%s:%s", username, pg->hosts[off].hostname,
6255                          newservicehome);
6256       else
6257         GNUNET_asprintf (&arg, "%s:%s", pg->hosts[off].hostname,
6258                          newservicehome);
6259
6260       /* FIXME: Doesn't support ssh_port option! */
6261       proc =
6262         GNUNET_OS_start_process (GNUNET_NO, NULL, NULL, "rsync", "rsync", "-r",
6263                                    newservicehome, arg, NULL);
6264 #if DEBUG_TESTING
6265       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
6266                   "copying directory with command rsync -r %s %s\n",
6267                   newservicehome, arg);
6268 #endif
6269       GNUNET_free (newservicehome);
6270       GNUNET_free (arg);
6271       if (NULL == proc)
6272       {
6273         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
6274                     _
6275                     ("Could not start `%s' process to copy configuration directory.\n"),
6276                     "scp");
6277         GNUNET_assert (0);
6278       }
6279       GNUNET_OS_process_wait (proc);
6280       GNUNET_OS_process_close (proc);
6281     }
6282     /* Now all the configuration files and hostkeys are copied to the remote host.  Call the hostkey callback for each peer! */
6283     GNUNET_SCHEDULER_add_now (&call_hostkey_callbacks, pg);
6284   }
6285 #endif
6286   return pg;
6287 }
6288
6289 /*
6290  * Get a daemon by number, so callers don't have to do nasty
6291  * offsetting operation.
6292  */
6293 struct GNUNET_TESTING_Daemon *
6294 GNUNET_TESTING_daemon_get (struct GNUNET_TESTING_PeerGroup *pg,
6295                            unsigned int position)
6296 {
6297   if (position < pg->total)
6298     return pg->peers[position].daemon;
6299   return NULL;
6300 }
6301
6302 /*
6303  * Get a daemon by peer identity, so callers can
6304  * retrieve the daemon without knowing it's offset.
6305  *
6306  * @param pg the peer group to retrieve the daemon from
6307  * @param peer_id the peer identity of the daemon to retrieve
6308  *
6309  * @return the daemon on success, or NULL if no such peer identity is found
6310  */
6311 struct GNUNET_TESTING_Daemon *
6312 GNUNET_TESTING_daemon_get_by_id (struct GNUNET_TESTING_PeerGroup *pg,
6313                                  const struct GNUNET_PeerIdentity *peer_id)
6314 {
6315   unsigned int i;
6316
6317   for (i = 0; i < pg->total; i++)
6318   {
6319     if (0 ==
6320         memcmp (&pg->peers[i].daemon->id, peer_id,
6321                 sizeof (struct GNUNET_PeerIdentity)))
6322       return pg->peers[i].daemon;
6323   }
6324   return NULL;
6325 }
6326
6327 /**
6328  * Prototype of a function that will be called when a
6329  * particular operation was completed the testing library.
6330  *
6331  * @param cls closure (a struct RestartContext)
6332  * @param id id of the peer that was restarted
6333  * @param cfg handle to the configuration of the peer
6334  * @param d handle to the daemon that was restarted
6335  * @param emsg NULL on success
6336  */
6337 static void
6338 restart_callback (void *cls, const struct GNUNET_PeerIdentity *id,
6339                   const struct GNUNET_CONFIGURATION_Handle *cfg,
6340                   struct GNUNET_TESTING_Daemon *d, const char *emsg)
6341 {
6342   struct RestartContext *restart_context = cls;
6343
6344   if (emsg == NULL)
6345   {
6346     restart_context->peers_restarted++;
6347   }
6348   else
6349   {
6350     restart_context->peers_restart_failed++;
6351   }
6352
6353   if (restart_context->peers_restarted == restart_context->peer_group->total)
6354   {
6355     restart_context->callback (restart_context->callback_cls, NULL);
6356     GNUNET_free (restart_context);
6357   }
6358   else if (restart_context->peers_restart_failed +
6359            restart_context->peers_restarted ==
6360            restart_context->peer_group->total)
6361   {
6362     restart_context->callback (restart_context->callback_cls,
6363                                "Failed to restart peers!");
6364     GNUNET_free (restart_context);
6365   }
6366
6367 }
6368
6369 /**
6370  * Callback for informing us about a successful
6371  * or unsuccessful churn stop call.
6372  *
6373  * @param cls a ChurnContext
6374  * @param emsg NULL on success, non-NULL on failure
6375  *
6376  */
6377 static void
6378 churn_stop_callback (void *cls, const char *emsg)
6379 {
6380   struct ShutdownContext *shutdown_ctx = cls;
6381   struct ChurnContext *churn_ctx = shutdown_ctx->cb_cls;
6382   unsigned int total_left;
6383   char *error_message;
6384
6385   error_message = NULL;
6386   shutdown_ctx->outstanding--;
6387
6388   if (emsg != NULL)
6389   {
6390     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
6391                 "Churn stop callback failed with error `%s'\n", emsg);
6392     churn_ctx->num_failed_stop++;
6393   }
6394   else
6395   {
6396     churn_ctx->num_to_stop--;
6397   }
6398
6399   total_left =
6400       (churn_ctx->num_to_stop - churn_ctx->num_failed_stop) +
6401       (churn_ctx->num_to_start - churn_ctx->num_failed_start);
6402
6403   if (total_left == 0)
6404   {
6405     if ((churn_ctx->num_failed_stop > 0) || (churn_ctx->num_failed_start > 0))
6406     {
6407       GNUNET_asprintf (&error_message,
6408                        "Churn didn't complete successfully, %u peers failed to start %u peers failed to be stopped!",
6409                        churn_ctx->num_failed_start, churn_ctx->num_failed_stop);
6410     }
6411     churn_ctx->cb (churn_ctx->cb_cls, error_message);
6412     GNUNET_free_non_null (error_message);
6413     GNUNET_free (churn_ctx);
6414     GNUNET_free (shutdown_ctx);
6415   }
6416 }
6417
6418 /**
6419  * Count the number of running peers.
6420  *
6421  * @param pg handle for the peer group
6422  *
6423  * @return the number of currently running peers in the peer group
6424  */
6425 unsigned int
6426 GNUNET_TESTING_daemons_running (struct GNUNET_TESTING_PeerGroup *pg)
6427 {
6428   unsigned int i;
6429   unsigned int running = 0;
6430
6431   for (i = 0; i < pg->total; i++)
6432   {
6433     if (pg->peers[i].daemon->running == GNUNET_YES)
6434     {
6435       GNUNET_assert (running != -1);
6436       running++;
6437     }
6438   }
6439   return running;
6440 }
6441
6442 /**
6443  * Task to rate limit the number of outstanding peer shutdown
6444  * requests.  This is necessary for making sure we don't do
6445  * too many ssh connections at once, but is generally nicer
6446  * to any system as well (graduated task starts, as opposed
6447  * to calling gnunet-arm N times all at once).
6448  */
6449 static void
6450 schedule_churn_shutdown_task (void *cls,
6451                               const struct GNUNET_SCHEDULER_TaskContext *tc)
6452 {
6453   struct PeerShutdownContext *peer_shutdown_ctx = cls;
6454   struct ShutdownContext *shutdown_ctx;
6455   struct ChurnContext *churn_ctx;
6456
6457   GNUNET_assert (peer_shutdown_ctx != NULL);
6458   shutdown_ctx = peer_shutdown_ctx->shutdown_ctx;
6459   GNUNET_assert (shutdown_ctx != NULL);
6460   churn_ctx = (struct ChurnContext *) shutdown_ctx->cb_cls;
6461   if (shutdown_ctx->outstanding > churn_ctx->pg->max_concurrent_ssh)
6462     GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
6463                                   (GNUNET_TIME_UNIT_MILLISECONDS, 100),
6464                                   &schedule_churn_shutdown_task,
6465                                   peer_shutdown_ctx);
6466   else
6467   {
6468     shutdown_ctx->outstanding++;
6469     if (churn_ctx->service != NULL)
6470       GNUNET_TESTING_daemon_stop_service (peer_shutdown_ctx->daemon,
6471                                           churn_ctx->service,
6472                                           shutdown_ctx->timeout,
6473                                           shutdown_ctx->cb, shutdown_ctx);
6474     else
6475       GNUNET_TESTING_daemon_stop (peer_shutdown_ctx->daemon,
6476                                   shutdown_ctx->timeout, shutdown_ctx->cb,
6477                                   shutdown_ctx, GNUNET_NO, GNUNET_YES);
6478     GNUNET_free (peer_shutdown_ctx);
6479   }
6480 }
6481
6482
6483 /**
6484  * Simulate churn by stopping some peers (and possibly
6485  * re-starting others if churn is called multiple times).  This
6486  * function can only be used to create leave-join churn (peers "never"
6487  * leave for good).  First "voff" random peers that are currently
6488  * online will be taken offline; then "von" random peers that are then
6489  * offline will be put back online.  No notifications will be
6490  * generated for any of these operations except for the callback upon
6491  * completion.
6492  *
6493  * @param pg handle for the peer group
6494  * @param service the service to churn off/on, NULL to churn peer
6495  * @param voff number of peers that should go offline
6496  * @param von number of peers that should come back online;
6497  *            must be zero on first call (since "testbed_start"
6498  *            always starts all of the peers)
6499  * @param timeout how long to wait for operations to finish before
6500  *        giving up
6501  * @param cb function to call at the end
6502  * @param cb_cls closure for cb
6503  */
6504 void
6505 GNUNET_TESTING_daemons_churn (struct GNUNET_TESTING_PeerGroup *pg,
6506                               char *service, unsigned int voff,
6507                               unsigned int von,
6508                               struct GNUNET_TIME_Relative timeout,
6509                               GNUNET_TESTING_NotifyCompletion cb, void *cb_cls)
6510 {
6511   struct ChurnContext *churn_ctx;
6512   struct ShutdownContext *shutdown_ctx;
6513   struct PeerShutdownContext *peer_shutdown_ctx;
6514   struct PeerRestartContext *peer_restart_ctx;
6515   struct ChurnRestartContext *churn_startup_ctx;
6516
6517   unsigned int running;
6518   unsigned int stopped;
6519   unsigned int total_running;
6520   unsigned int total_stopped;
6521   unsigned int i;
6522   unsigned int *running_arr;
6523   unsigned int *stopped_arr;
6524   unsigned int *running_permute;
6525   unsigned int *stopped_permute;
6526   char *pos;
6527
6528   shutdown_ctx = NULL;
6529   peer_shutdown_ctx = NULL;
6530   peer_restart_ctx = NULL;
6531   churn_startup_ctx = NULL;
6532
6533   running = 0;
6534   stopped = 0;
6535
6536   if ((von == 0) && (voff == 0))        /* No peers at all? */
6537   {
6538     cb (cb_cls, NULL);
6539     return;
6540   }
6541
6542   for (i = 0; i < pg->total; i++)
6543   {
6544     if (service == NULL)
6545     {
6546       if (pg->peers[i].daemon->running == GNUNET_YES)
6547       {
6548         GNUNET_assert (running != -1);
6549         running++;
6550       }
6551       else
6552       {
6553         GNUNET_assert (stopped != -1);
6554         stopped++;
6555       }
6556     }
6557     else
6558     {
6559       /* FIXME: make churned services a list! */
6560       pos = pg->peers[i].daemon->churned_services;
6561       /* FIXME: while (pos != NULL) */
6562       if (pos != NULL)
6563       {
6564 #if FIXME
6565         if (0 == strcasecmp (pos, service))
6566         {
6567
6568           break;
6569         }
6570 #endif
6571         GNUNET_assert (stopped != -1);
6572         stopped++;
6573         /* FIXME: pos = pos->next; */
6574       }
6575       if (pos == NULL)
6576       {
6577         GNUNET_assert (running != -1);
6578         running++;
6579       }
6580     }
6581   }
6582
6583   if (voff > running)
6584   {
6585     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
6586                 "Trying to stop more peers (%d) than are currently running (%d)!\n",
6587                 voff, running);
6588     cb (cb_cls, "Trying to stop more peers than are currently running!");
6589     return;
6590   }
6591
6592   if (von > stopped)
6593   {
6594     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
6595                 "Trying to start more peers (%d) than are currently stopped (%d)!\n",
6596                 von, stopped);
6597     cb (cb_cls, "Trying to start more peers than are currently stopped!");
6598     return;
6599   }
6600
6601   churn_ctx = GNUNET_malloc (sizeof (struct ChurnContext));
6602
6603   if (service != NULL)
6604     churn_ctx->service = GNUNET_strdup (service);
6605   running_arr = NULL;
6606   if (running > 0)
6607     running_arr = GNUNET_malloc (running * sizeof (unsigned int));
6608
6609   stopped_arr = NULL;
6610   if (stopped > 0)
6611     stopped_arr = GNUNET_malloc (stopped * sizeof (unsigned int));
6612
6613   running_permute = NULL;
6614   stopped_permute = NULL;
6615
6616   if (running > 0)
6617     running_permute =
6618         GNUNET_CRYPTO_random_permute (GNUNET_CRYPTO_QUALITY_WEAK, running);
6619   if (stopped > 0)
6620     stopped_permute =
6621         GNUNET_CRYPTO_random_permute (GNUNET_CRYPTO_QUALITY_WEAK, stopped);
6622
6623   total_running = running;
6624   total_stopped = stopped;
6625   running = 0;
6626   stopped = 0;
6627
6628   churn_ctx->num_to_start = von;
6629   churn_ctx->num_to_stop = voff;
6630   churn_ctx->cb = cb;
6631   churn_ctx->cb_cls = cb_cls;
6632   churn_ctx->pg = pg;
6633
6634   for (i = 0; i < pg->total; i++)
6635   {
6636     if (service == NULL)
6637     {
6638       if (pg->peers[i].daemon->running == GNUNET_YES)
6639       {
6640         GNUNET_assert ((running_arr != NULL) && (total_running > running));
6641         running_arr[running] = i;
6642         running++;
6643       }
6644       else
6645       {
6646         GNUNET_assert ((stopped_arr != NULL) && (total_stopped > stopped));
6647         stopped_arr[stopped] = i;
6648         stopped++;
6649       }
6650     }
6651     else
6652     {
6653       /* FIXME: make churned services a list! */
6654       pos = pg->peers[i].daemon->churned_services;
6655       /* FIXME: while (pos != NULL) */
6656       if (pos != NULL)
6657       {
6658         GNUNET_assert ((stopped_arr != NULL) && (total_stopped > stopped));
6659         stopped_arr[stopped] = i;
6660         stopped++;
6661         /* FIXME: pos = pos->next; */
6662       }
6663       if (pos == NULL)
6664       {
6665         GNUNET_assert ((running_arr != NULL) && (total_running > running));
6666         running_arr[running] = i;
6667         running++;
6668       }
6669     }
6670   }
6671
6672   GNUNET_assert (running >= voff);
6673   if (voff > 0)
6674   {
6675     shutdown_ctx = GNUNET_malloc (sizeof (struct ShutdownContext));
6676     shutdown_ctx->cb = &churn_stop_callback;
6677     shutdown_ctx->cb_cls = churn_ctx;
6678     shutdown_ctx->total_peers = voff;
6679     shutdown_ctx->timeout = timeout;
6680   }
6681
6682   for (i = 0; i < voff; i++)
6683   {
6684 #if DEBUG_CHURN
6685     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping peer %d!\n",
6686                 running_arr[running_permute[i]]);
6687 #endif
6688     GNUNET_assert (running_arr != NULL);
6689     peer_shutdown_ctx = GNUNET_malloc (sizeof (struct PeerShutdownContext));
6690     peer_shutdown_ctx->daemon =
6691         pg->peers[running_arr[running_permute[i]]].daemon;
6692     peer_shutdown_ctx->shutdown_ctx = shutdown_ctx;
6693     GNUNET_SCHEDULER_add_now (&schedule_churn_shutdown_task, peer_shutdown_ctx);
6694   }
6695
6696   GNUNET_assert (stopped >= von);
6697   if (von > 0)
6698   {
6699     churn_startup_ctx = GNUNET_malloc (sizeof (struct ChurnRestartContext));
6700     churn_startup_ctx->churn_ctx = churn_ctx;
6701     churn_startup_ctx->timeout = timeout;
6702     churn_startup_ctx->pg = pg;
6703   }
6704   for (i = 0; i < von; i++)
6705   {
6706 #if DEBUG_CHURN
6707     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting up peer %d!\n",
6708                 stopped_arr[stopped_permute[i]]);
6709 #endif
6710     GNUNET_assert (stopped_arr != NULL);
6711     peer_restart_ctx = GNUNET_malloc (sizeof (struct PeerRestartContext));
6712     peer_restart_ctx->churn_restart_ctx = churn_startup_ctx;
6713     peer_restart_ctx->daemon =
6714         pg->peers[stopped_arr[stopped_permute[i]]].daemon;
6715     GNUNET_SCHEDULER_add_now (&schedule_churn_restart, peer_restart_ctx);
6716   }
6717
6718   GNUNET_free_non_null (running_arr);
6719   GNUNET_free_non_null (stopped_arr);
6720   GNUNET_free_non_null (running_permute);
6721   GNUNET_free_non_null (stopped_permute);
6722 }
6723
6724 /*
6725  * Start a given service for each of the peers in the peer group.
6726  *
6727  * @param pg handle for the peer group
6728  * @param service the service to start
6729  * @param timeout how long to wait for operations to finish before
6730  *        giving up
6731  * @param cb function to call once finished
6732  * @param cb_cls closure for cb
6733  *
6734  */
6735 void
6736 GNUNET_TESTING_daemons_start_service (struct GNUNET_TESTING_PeerGroup *pg,
6737                                       char *service,
6738                                       struct GNUNET_TIME_Relative timeout,
6739                                       GNUNET_TESTING_NotifyCompletion cb,
6740                                       void *cb_cls)
6741 {
6742   struct ServiceStartContext *start_ctx;
6743   struct PeerServiceStartContext *peer_start_ctx;
6744   unsigned int i;
6745
6746   GNUNET_assert (service != NULL);
6747
6748   start_ctx = GNUNET_malloc (sizeof (struct ServiceStartContext));
6749   start_ctx->pg = pg;
6750   start_ctx->remaining = pg->total;
6751   start_ctx->cb = cb;
6752   start_ctx->cb_cls = cb_cls;
6753   start_ctx->service = GNUNET_strdup (service);
6754   start_ctx->timeout = timeout;
6755
6756   for (i = 0; i < pg->total; i++)
6757   {
6758 #if DEBUG_START
6759     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting up service %s on peer %d!\n",
6760                 service, stopped_arr[stopped_permute[i]]);
6761 #endif
6762     peer_start_ctx = GNUNET_malloc (sizeof (struct PeerServiceStartContext));
6763     peer_start_ctx->start_ctx = start_ctx;
6764     peer_start_ctx->daemon = pg->peers[i].daemon;
6765     GNUNET_SCHEDULER_add_now (&schedule_service_start, peer_start_ctx);
6766   }
6767 }
6768
6769 /**
6770  * Restart all peers in the given group.
6771  *
6772  * @param pg the handle to the peer group
6773  * @param callback function to call on completion (or failure)
6774  * @param callback_cls closure for the callback function
6775  */
6776 void
6777 GNUNET_TESTING_daemons_restart (struct GNUNET_TESTING_PeerGroup *pg,
6778                                 GNUNET_TESTING_NotifyCompletion callback,
6779                                 void *callback_cls)
6780 {
6781   struct RestartContext *restart_context;
6782   unsigned int off;
6783
6784   if (pg->total > 0)
6785   {
6786     restart_context = GNUNET_malloc (sizeof (struct RestartContext));
6787     restart_context->peer_group = pg;
6788     restart_context->peers_restarted = 0;
6789     restart_context->callback = callback;
6790     restart_context->callback_cls = callback_cls;
6791
6792     for (off = 0; off < pg->total; off++)
6793     {
6794       GNUNET_TESTING_daemon_restart (pg->peers[off].daemon, &restart_callback,
6795                                      restart_context);
6796     }
6797   }
6798 }
6799
6800
6801 /**
6802  * Start or stop an individual peer from the given group.
6803  *
6804  * @param pg handle to the peer group
6805  * @param offset which peer to start or stop
6806  * @param desired_status GNUNET_YES to have it running, GNUNET_NO to stop it
6807  * @param timeout how long to wait for shutdown
6808  * @param cb function to call at the end
6809  * @param cb_cls closure for cb
6810  */
6811 void
6812 GNUNET_TESTING_daemons_vary (struct GNUNET_TESTING_PeerGroup *pg,
6813                              unsigned int offset, int desired_status,
6814                              struct GNUNET_TIME_Relative timeout,
6815                              GNUNET_TESTING_NotifyCompletion cb, void *cb_cls)
6816 {
6817   struct ShutdownContext *shutdown_ctx;
6818   struct ChurnRestartContext *startup_ctx;
6819   struct ChurnContext *churn_ctx;
6820
6821   if (GNUNET_NO == desired_status)
6822   {
6823     if (NULL != pg->peers[offset].daemon)
6824     {
6825       shutdown_ctx = GNUNET_malloc (sizeof (struct ShutdownContext));
6826       churn_ctx = GNUNET_malloc (sizeof (struct ChurnContext));
6827       churn_ctx->num_to_start = 0;
6828       churn_ctx->num_to_stop = 1;
6829       churn_ctx->cb = cb;
6830       churn_ctx->cb_cls = cb_cls;
6831       shutdown_ctx->cb_cls = churn_ctx;
6832       GNUNET_TESTING_daemon_stop (pg->peers[offset].daemon, timeout,
6833                                   &churn_stop_callback, shutdown_ctx, GNUNET_NO,
6834                                   GNUNET_YES);
6835     }
6836   }
6837   else if (GNUNET_YES == desired_status)
6838   {
6839     if (NULL == pg->peers[offset].daemon)
6840     {
6841       startup_ctx = GNUNET_malloc (sizeof (struct ChurnRestartContext));
6842       churn_ctx = GNUNET_malloc (sizeof (struct ChurnContext));
6843       churn_ctx->num_to_start = 1;
6844       churn_ctx->num_to_stop = 0;
6845       churn_ctx->cb = cb;
6846       churn_ctx->cb_cls = cb_cls;
6847       startup_ctx->churn_ctx = churn_ctx;
6848       GNUNET_TESTING_daemon_start_stopped (pg->peers[offset].daemon, timeout,
6849                                            &churn_start_callback, startup_ctx);
6850     }
6851   }
6852   else
6853     GNUNET_break (0);
6854 }
6855
6856
6857 /**
6858  * Callback for shutting down peers in a peer group.
6859  *
6860  * @param cls closure (struct ShutdownContext)
6861  * @param emsg NULL on success
6862  */
6863 static void
6864 internal_shutdown_callback (void *cls, const char *emsg)
6865 {
6866   struct PeerShutdownContext *peer_shutdown_ctx = cls;
6867   struct ShutdownContext *shutdown_ctx = peer_shutdown_ctx->shutdown_ctx;
6868   unsigned int off;
6869   int i;
6870   struct OutstandingSSH *ssh_pos;
6871
6872   shutdown_ctx->outstanding--;
6873   if (peer_shutdown_ctx->daemon->hostname != NULL)
6874     decrement_outstanding_at_host (peer_shutdown_ctx->daemon->hostname,
6875                                    shutdown_ctx->pg);
6876
6877   if (emsg == NULL)
6878   {
6879     shutdown_ctx->peers_down++;
6880   }
6881   else
6882   {
6883 #if VERBOSE_TESTING
6884     GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "internal_shutdown_callback",
6885                      "Failed to stop a peer: %s\n", emsg);
6886 #endif
6887     shutdown_ctx->peers_failed++;
6888   }
6889
6890   if ((shutdown_ctx->cb != NULL) &&
6891       (shutdown_ctx->peers_down + shutdown_ctx->peers_failed ==
6892        shutdown_ctx->total_peers))
6893   {
6894     if (shutdown_ctx->peers_failed > 0)
6895       shutdown_ctx->cb (shutdown_ctx->cb_cls,
6896                         "Not all peers successfully shut down!");
6897     else
6898       shutdown_ctx->cb (shutdown_ctx->cb_cls, NULL);
6899
6900     for (i = 0; i < shutdown_ctx->pg->total; i++)
6901     {
6902       if (shutdown_ctx->pg->peers[i].startup_task != GNUNET_SCHEDULER_NO_TASK)
6903         GNUNET_SCHEDULER_cancel (shutdown_ctx->pg->peers[i].startup_task);
6904     }
6905     GNUNET_free (shutdown_ctx->pg->peers);
6906     GNUNET_free_non_null (shutdown_ctx->pg->hostkey_data);
6907     for (off = 0; off < shutdown_ctx->pg->num_hosts; off++)
6908     {
6909       GNUNET_free (shutdown_ctx->pg->hosts[off].hostname);
6910       GNUNET_free_non_null (shutdown_ctx->pg->hosts[off].username);
6911     }
6912     GNUNET_free_non_null (shutdown_ctx->pg->hosts);
6913     while (NULL != (ssh_pos = shutdown_ctx->pg->ssh_head))
6914     {
6915       GNUNET_CONTAINER_DLL_remove (shutdown_ctx->pg->ssh_head,
6916                                    shutdown_ctx->pg->ssh_tail, ssh_pos);
6917       GNUNET_free (ssh_pos);
6918     }
6919     GNUNET_free (shutdown_ctx->pg);
6920     GNUNET_free (shutdown_ctx);
6921   }
6922   GNUNET_free (peer_shutdown_ctx);
6923 }
6924
6925
6926 /**
6927  * Task to rate limit the number of outstanding peer shutdown
6928  * requests.  This is necessary for making sure we don't do
6929  * too many ssh connections at once, but is generally nicer
6930  * to any system as well (graduated task starts, as opposed
6931  * to calling gnunet-arm N times all at once).
6932  */
6933 static void
6934 schedule_shutdown_task (void *cls,
6935                         const struct GNUNET_SCHEDULER_TaskContext *tc)
6936 {
6937   struct PeerShutdownContext *peer_shutdown_ctx = cls;
6938   struct ShutdownContext *shutdown_ctx;
6939
6940   GNUNET_assert (peer_shutdown_ctx != NULL);
6941   shutdown_ctx = peer_shutdown_ctx->shutdown_ctx;
6942   GNUNET_assert (shutdown_ctx != NULL);
6943
6944   if ((shutdown_ctx->outstanding < shutdown_ctx->pg->max_concurrent_ssh) ||
6945       ((peer_shutdown_ctx->daemon->hostname != NULL) &&
6946        (count_outstanding_at_host
6947         (peer_shutdown_ctx->daemon->hostname,
6948          shutdown_ctx->pg) < shutdown_ctx->pg->max_concurrent_ssh)))
6949   {
6950     if (peer_shutdown_ctx->daemon->hostname != NULL)
6951       increment_outstanding_at_host (peer_shutdown_ctx->daemon->hostname,
6952                                      shutdown_ctx->pg);
6953     shutdown_ctx->outstanding++;
6954     GNUNET_TESTING_daemon_stop (peer_shutdown_ctx->daemon,
6955                                 shutdown_ctx->timeout,
6956                                 &internal_shutdown_callback, peer_shutdown_ctx,
6957                                 shutdown_ctx->delete_files, GNUNET_NO);
6958   }
6959   else
6960     GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
6961                                   (GNUNET_TIME_UNIT_MILLISECONDS, 100),
6962                                   &schedule_shutdown_task, peer_shutdown_ctx);
6963
6964 }
6965
6966 /**
6967  * Read a testing hosts file based on a configuration.
6968  * Returns a DLL of hosts (caller must free!) on success
6969  * or NULL on failure.
6970  *
6971  * @param cfg a configuration with a testing section
6972  *
6973  * @return DLL of hosts on success, NULL on failure
6974  */
6975 struct GNUNET_TESTING_Host *
6976 GNUNET_TESTING_hosts_load (const struct GNUNET_CONFIGURATION_Handle *cfg)
6977 {
6978   struct GNUNET_TESTING_Host *hosts;
6979   struct GNUNET_TESTING_Host *temphost;
6980   char *data;
6981   char *buf;
6982   char *hostfile;
6983   struct stat frstat;
6984   int count;
6985   int ret;
6986
6987   /* Check for a hostfile containing user@host:port triples */
6988   if (GNUNET_OK !=
6989       GNUNET_CONFIGURATION_get_value_string (cfg, "testing", "hostfile",
6990                                              &hostfile))
6991     return NULL;
6992
6993   hosts = NULL;
6994   temphost = NULL;
6995   data = NULL;
6996   if (hostfile != NULL)
6997   {
6998     if (GNUNET_OK != GNUNET_DISK_file_test (hostfile))
6999       GNUNET_DISK_fn_write (hostfile, NULL, 0,
7000                             GNUNET_DISK_PERM_USER_READ |
7001                             GNUNET_DISK_PERM_USER_WRITE);
7002     if ((0 != STAT (hostfile, &frstat)) || (frstat.st_size == 0))
7003     {
7004       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
7005                   "Could not open file specified for host list, ending test!");
7006       GNUNET_free (hostfile);
7007       return NULL;
7008     }
7009
7010     data = GNUNET_malloc_large (frstat.st_size);
7011     GNUNET_assert (data != NULL);
7012     if (frstat.st_size != GNUNET_DISK_fn_read (hostfile, data, frstat.st_size))
7013     {
7014       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
7015                   "Could not read file %s specified for host list, ending test!",
7016                   hostfile);
7017       GNUNET_free (hostfile);
7018       GNUNET_free (data);
7019       return NULL;
7020     }
7021
7022     GNUNET_free_non_null (hostfile);
7023
7024     buf = data;
7025     count = 0;
7026     while (count < frstat.st_size - 1)
7027     {
7028       count++;
7029       if (((data[count] == '\n')) && (buf != &data[count]))
7030       {
7031         data[count] = '\0';
7032         temphost = GNUNET_malloc (sizeof (struct GNUNET_TESTING_Host));
7033         ret =
7034             SSCANF (buf, "%a[a-zA-Z0-9_]@%a[a-zA-Z0-9.]:%hd",
7035                     &temphost->username, &temphost->hostname, &temphost->port);
7036         if (3 == ret)
7037         {
7038           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
7039                       "Successfully read host %s, port %d and user %s from file\n",
7040                       temphost->hostname, temphost->port, temphost->username);
7041         }
7042         else
7043         {
7044           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
7045                       "Error reading line `%s' in hostfile\n", buf);
7046           GNUNET_free (temphost);
7047           buf = &data[count + 1];
7048           continue;
7049         }
7050         temphost->next = hosts;
7051         hosts = temphost;
7052         buf = &data[count + 1];
7053       }
7054       else if ((data[count] == '\n') || (data[count] == '\0'))
7055         buf = &data[count + 1];
7056     }
7057   }
7058   GNUNET_free_non_null (data);
7059
7060   return hosts;
7061 }
7062
7063 /**
7064  * Shutdown all peers started in the given group.
7065  *
7066  * @param pg handle to the peer group
7067  * @param timeout how long to wait for shutdown
7068  * @param cb callback to notify upon success or failure
7069  * @param cb_cls closure for cb
7070  */
7071 void
7072 GNUNET_TESTING_daemons_stop (struct GNUNET_TESTING_PeerGroup *pg,
7073                              struct GNUNET_TIME_Relative timeout,
7074                              GNUNET_TESTING_NotifyCompletion cb, void *cb_cls)
7075 {
7076   unsigned int off;
7077   struct ShutdownContext *shutdown_ctx;
7078   struct PeerShutdownContext *peer_shutdown_ctx;
7079
7080 #if OLD
7081   struct PeerConnection *conn_iter;
7082   struct PeerConnection *temp_conn;
7083 #endif
7084   struct ConnectContext *cc;
7085
7086   GNUNET_assert (pg->total > 0);
7087   while (NULL != (cc = pg->cc_head))
7088   {
7089     GNUNET_CONTAINER_DLL_remove (pg->cc_head, pg->cc_tail, cc);
7090     if (GNUNET_SCHEDULER_NO_TASK != cc->task)
7091       GNUNET_SCHEDULER_cancel (cc->task);
7092     if (NULL != cc->cc)
7093       GNUNET_TESTING_daemons_connect_cancel (cc->cc);
7094     GNUNET_free (cc);
7095   }
7096
7097   shutdown_ctx = GNUNET_malloc (sizeof (struct ShutdownContext));
7098   shutdown_ctx->delete_files =
7099       GNUNET_CONFIGURATION_get_value_yesno (pg->cfg, "TESTING", "DELETE_FILES");
7100   shutdown_ctx->cb = cb;
7101   shutdown_ctx->cb_cls = cb_cls;
7102   shutdown_ctx->total_peers = pg->total;
7103   shutdown_ctx->timeout = timeout;
7104   shutdown_ctx->pg = pg;
7105
7106   for (off = 0; off < pg->total; off++)
7107   {
7108     GNUNET_assert (NULL != pg->peers[off].daemon);
7109     peer_shutdown_ctx = GNUNET_malloc (sizeof (struct PeerShutdownContext));
7110     peer_shutdown_ctx->daemon = pg->peers[off].daemon;
7111     peer_shutdown_ctx->shutdown_ctx = shutdown_ctx;
7112     GNUNET_SCHEDULER_add_now (&schedule_shutdown_task, peer_shutdown_ctx);
7113
7114     if (NULL != pg->peers[off].cfg)
7115     {
7116       GNUNET_CONFIGURATION_destroy (pg->peers[off].cfg);
7117       pg->peers[off].cfg = NULL;
7118     }
7119 #if OLD
7120 // FIXME Do DLL remove for all pg->peers[off].LIST
7121     conn_iter = pg->peers[off].allowed_peers_head;
7122     while (conn_iter != NULL)
7123     {
7124       temp_conn = conn_iter->next;
7125       GNUNET_free (conn_iter);
7126       conn_iter = temp_conn;
7127     }
7128     pg->peers[off].allowed_peers_head = NULL;
7129
7130     conn_iter = pg->peers[off].connect_peers_head;
7131     while (conn_iter != NULL)
7132     {
7133       temp_conn = conn_iter->next;
7134       GNUNET_free (conn_iter);
7135       conn_iter = temp_conn;
7136     }
7137     pg->peers[off].connect_peers_head = NULL;
7138
7139     conn_iter = pg->peers[off].blacklisted_peers_head;
7140     while (conn_iter != NULL)
7141     {
7142       temp_conn = conn_iter->next;
7143       GNUNET_free (conn_iter);
7144       conn_iter = temp_conn;
7145     }
7146     pg->peers[off].blacklisted_peers_head = NULL;
7147
7148     conn_iter = pg->peers[off].connect_peers_working_set_head;
7149     while (conn_iter != NULL)
7150     {
7151       temp_conn = conn_iter->next;
7152       GNUNET_free (conn_iter);
7153       conn_iter = temp_conn;
7154     }
7155     pg->peers[off].connect_peers_working_set_head = NULL;
7156 #else
7157     if (pg->peers[off].allowed_peers != NULL)
7158       GNUNET_CONTAINER_multihashmap_destroy (pg->peers[off].allowed_peers);
7159     if (pg->peers[off].connect_peers != NULL)
7160       GNUNET_CONTAINER_multihashmap_destroy (pg->peers[off].connect_peers);
7161     if (pg->peers[off].blacklisted_peers != NULL)
7162       GNUNET_CONTAINER_multihashmap_destroy (pg->peers[off].blacklisted_peers);
7163 #endif
7164   }
7165 }
7166
7167 /* end of testing_group.c */