377f4d550bbd042d8cd6ed1c85ffeb3eb5449a24
[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_EXTRA_LOGGING
34
35 #define VERBOSE_TOPOLOGY GNUNET_EXTRA_LOGGING
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       procarr[pg_iter] =
2931           GNUNET_OS_start_process (NULL, NULL, "mv", "mv", mytemp, arg, NULL);
2932       GNUNET_assert (procarr[pg_iter] != NULL);
2933 #if VERBOSE_TESTING
2934       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2935                   "Copying file with command cp %s %s\n", mytemp, arg);
2936 #endif
2937       ret = GNUNET_OS_process_wait (procarr[pg_iter]);  /* FIXME: schedule this, throttle! */
2938       GNUNET_OS_process_close (procarr[pg_iter]);
2939       GNUNET_free (arg);
2940     }
2941     else                        /* Remote, scp the file to the correct place */
2942     {
2943       if (NULL != pg->peers[pg_iter].daemon->username)
2944         GNUNET_asprintf (&arg, "%s@%s:%s/friends",
2945                          pg->peers[pg_iter].daemon->username,
2946                          pg->peers[pg_iter].daemon->hostname,
2947                          temp_service_path);
2948       else
2949         GNUNET_asprintf (&arg, "%s:%s/friends",
2950                          pg->peers[pg_iter].daemon->hostname,
2951                          temp_service_path);
2952       procarr[pg_iter] =
2953           GNUNET_OS_start_process (NULL, NULL, "scp", "scp", mytemp, arg, NULL);
2954       GNUNET_assert (procarr[pg_iter] != NULL);
2955       ret = GNUNET_OS_process_wait (procarr[pg_iter]);  /* FIXME: schedule this, throttle! */
2956       GNUNET_OS_process_close (procarr[pg_iter]);
2957       if (ret != GNUNET_OK)
2958       {
2959         /* FIXME: free contents of 'procarr' array */
2960         GNUNET_free (procarr);
2961         GNUNET_free (temp_service_path);
2962         GNUNET_free (mytemp);
2963         GNUNET_free (arg);
2964         return ret;
2965       }
2966       procarr[pg_iter] = NULL;
2967 #if VERBOSE_TESTING
2968       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2969                   "Copying file with command scp %s %s\n", mytemp, arg);
2970 #endif
2971       GNUNET_free (arg);
2972     }
2973     GNUNET_free (temp_service_path);
2974     GNUNET_free (mytemp);
2975   }
2976
2977 #if NOT_STUPID
2978   count = 0;
2979   ret = GNUNET_SYSERR;
2980   while ((count < max_wait) && (ret != GNUNET_OK))
2981   {
2982     ret = GNUNET_OK;
2983     for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
2984     {
2985 #if VERBOSE_TESTING
2986       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Checking copy status of file %d\n",
2987                   pg_iter);
2988 #endif
2989       if (procarr[pg_iter] != NULL)     /* Check for already completed! */
2990       {
2991         if (GNUNET_OS_process_status (procarr[pg_iter], &type, &return_code) !=
2992             GNUNET_OK)
2993         {
2994           ret = GNUNET_SYSERR;
2995         }
2996         else if ((type != GNUNET_OS_PROCESS_EXITED) || (return_code != 0))
2997         {
2998           ret = GNUNET_SYSERR;
2999         }
3000         else
3001         {
3002           GNUNET_OS_process_close (procarr[pg_iter]);
3003           procarr[pg_iter] = NULL;
3004 #if VERBOSE_TESTING
3005           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "File %d copied\n", pg_iter);
3006 #endif
3007         }
3008       }
3009     }
3010     count++;
3011     if (ret == GNUNET_SYSERR)
3012     {
3013       /* FIXME: why sleep here? -CG */
3014       sleep (1);
3015     }
3016   }
3017
3018 #if VERBOSE_TESTING
3019   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3020               _("Finished copying all friend files!\n"));
3021 #endif
3022 #endif
3023   GNUNET_free (procarr);
3024   return ret;
3025 }
3026
3027 /*
3028  * Create the blacklist files based on the PeerConnection's
3029  * of each peer in the peer group, and copy the files
3030  * to the appropriate place.
3031  *
3032  * @param pg the peer group we are dealing with
3033  * @param transports space delimited list of transports to blacklist
3034  */
3035 static int
3036 create_and_copy_blacklist_files (struct GNUNET_TESTING_PeerGroup *pg,
3037                                  const char *transports)
3038 {
3039   FILE *temp_file_handle;
3040   unsigned int pg_iter;
3041   char *temp_service_path;
3042   struct GNUNET_OS_Process **procarr;
3043   char *arg;
3044   char *mytemp;
3045   enum GNUNET_OS_ProcessStatusType type;
3046   unsigned long return_code;
3047   int count;
3048   int ret;
3049   int max_wait = 10;
3050   int transport_len;
3051   unsigned int i;
3052   char *pos;
3053   char *temp_transports;
3054
3055 #if OLD
3056   struct GNUNET_CRYPTO_HashAsciiEncoded peer_enc;
3057   struct PeerConnection *conn_iter;
3058 #else
3059   static struct BlacklistContext blacklist_ctx;
3060 #endif
3061
3062   procarr = GNUNET_malloc (sizeof (struct GNUNET_OS_Process *) * pg->total);
3063   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
3064   {
3065     mytemp = GNUNET_DISK_mktemp ("blacklist");
3066     GNUNET_assert (mytemp != NULL);
3067     temp_file_handle = FOPEN (mytemp, "wt");
3068     GNUNET_assert (temp_file_handle != NULL);
3069     temp_transports = GNUNET_strdup (transports);
3070 #if !OLD
3071     blacklist_ctx.temp_file_handle = temp_file_handle;
3072 #endif
3073     transport_len = strlen (temp_transports) + 1;
3074     pos = NULL;
3075
3076     for (i = 0; i < transport_len; i++)
3077     {
3078       if ((temp_transports[i] == ' ') && (pos == NULL))
3079         continue;               /* At start of string (whitespace) */
3080       else if ((temp_transports[i] == ' ') || (temp_transports[i] == '\0'))     /* At end of string */
3081       {
3082         temp_transports[i] = '\0';
3083 #if OLD
3084         conn_iter = pg->peers[pg_iter].blacklisted_peers_head;
3085         while (conn_iter != NULL)
3086         {
3087           GNUNET_CRYPTO_hash_to_enc (&pg->peers[conn_iter->index].daemon->
3088                                      id.hashPubKey, &peer_enc);
3089           FPRINTF (temp_file_handle, "%s:%s\n", pos, (char *) &peer_enc);
3090           conn_iter = conn_iter->next;
3091         }
3092 #else
3093         blacklist_ctx.transport = pos;
3094         (void) GNUNET_CONTAINER_multihashmap_iterate (pg->
3095                                                       peers
3096                                                       [pg_iter].blacklisted_peers,
3097                                                       &blacklist_file_iterator,
3098                                                       &blacklist_ctx);
3099 #endif
3100         pos = NULL;
3101       }                         /* At beginning of actual string */
3102       else if (pos == NULL)
3103       {
3104         pos = &temp_transports[i];
3105       }
3106     }
3107
3108     GNUNET_free (temp_transports);
3109     FCLOSE (temp_file_handle);
3110
3111     if (GNUNET_OK !=
3112         GNUNET_CONFIGURATION_get_value_string (pg->peers[pg_iter].daemon->cfg,
3113                                                "PATHS", "SERVICEHOME",
3114                                                &temp_service_path))
3115     {
3116       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3117                   _
3118                   ("No `%s' specified in peer configuration in section `%s', cannot copy friends file!\n"),
3119                   "SERVICEHOME", "PATHS");
3120       if (UNLINK (mytemp) != 0)
3121         GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "unlink", mytemp);
3122       GNUNET_free (mytemp);
3123       break;
3124     }
3125
3126     if (pg->peers[pg_iter].daemon->hostname == NULL)    /* Local, just copy the file */
3127     {
3128       GNUNET_asprintf (&arg, "%s/blacklist", temp_service_path);
3129       procarr[pg_iter] =
3130           GNUNET_OS_start_process (NULL, NULL, "mv", "mv", mytemp, arg, NULL);
3131 #if VERBOSE_TESTING
3132       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3133                   _("Copying file with command cp %s %s\n"), mytemp, arg);
3134 #endif
3135
3136       GNUNET_free (arg);
3137     }
3138     else                        /* Remote, scp the file to the correct place */
3139     {
3140       if (NULL != pg->peers[pg_iter].daemon->username)
3141         GNUNET_asprintf (&arg, "%s@%s:%s/blacklist",
3142                          pg->peers[pg_iter].daemon->username,
3143                          pg->peers[pg_iter].daemon->hostname,
3144                          temp_service_path);
3145       else
3146         GNUNET_asprintf (&arg, "%s:%s/blacklist",
3147                          pg->peers[pg_iter].daemon->hostname,
3148                          temp_service_path);
3149       procarr[pg_iter] =
3150           GNUNET_OS_start_process (NULL, NULL, "scp", "scp", mytemp, arg, NULL);
3151       GNUNET_assert (procarr[pg_iter] != NULL);
3152       GNUNET_OS_process_wait (procarr[pg_iter]);        /* FIXME: add scheduled blacklist file copy that parallelizes file copying! */
3153
3154 #if VERBOSE_TESTING
3155       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3156                   _("Copying file with command scp %s %s\n"), mytemp, arg);
3157 #endif
3158       GNUNET_free (arg);
3159     }
3160     GNUNET_free (temp_service_path);
3161     GNUNET_free (mytemp);
3162   }
3163
3164   count = 0;
3165   ret = GNUNET_SYSERR;
3166   while ((count < max_wait) && (ret != GNUNET_OK))
3167   {
3168     ret = GNUNET_OK;
3169     for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
3170     {
3171 #if VERBOSE_TESTING
3172       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3173                   _("Checking copy status of file %d\n"), pg_iter);
3174 #endif
3175       if (procarr[pg_iter] != NULL)     /* Check for already completed! */
3176       {
3177         if (GNUNET_OS_process_status (procarr[pg_iter], &type, &return_code) !=
3178             GNUNET_OK)
3179         {
3180           ret = GNUNET_SYSERR;
3181         }
3182         else if ((type != GNUNET_OS_PROCESS_EXITED) || (return_code != 0))
3183         {
3184           ret = GNUNET_SYSERR;
3185         }
3186         else
3187         {
3188           GNUNET_OS_process_close (procarr[pg_iter]);
3189           procarr[pg_iter] = NULL;
3190 #if VERBOSE_TESTING
3191           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, _("File %d copied\n"), pg_iter);
3192 #endif
3193         }
3194       }
3195     }
3196     count++;
3197     if (ret == GNUNET_SYSERR)
3198     {
3199       /* FIXME: why sleep here? -CG */
3200       sleep (1);
3201     }
3202   }
3203
3204 #if VERBOSE_TESTING
3205   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3206               _("Finished copying all blacklist files!\n"));
3207 #endif
3208   GNUNET_free (procarr);
3209   return ret;
3210 }
3211
3212 /* Forward Declaration */
3213 static void
3214 schedule_connect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
3215
3216 /**
3217  * Choose a random peer's next connection to create, and
3218  * call schedule_connect to set up the connect task.
3219  *
3220  * @param pg the peer group to connect
3221  */
3222 static void
3223 preschedule_connect (struct GNUNET_TESTING_PeerGroup *pg)
3224 {
3225   struct ConnectTopologyContext *ct_ctx = &pg->ct_ctx;
3226   struct PeerConnection *connection_iter;
3227   struct ConnectContext *connect_context;
3228   uint32_t random_peer;
3229
3230   if (ct_ctx->remaining_connections == 0)
3231     return;
3232   random_peer =
3233       GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, pg->total);
3234   while (pg->peers[random_peer].connect_peers_head == NULL)
3235     random_peer =
3236         GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, pg->total);
3237
3238   connection_iter = pg->peers[random_peer].connect_peers_head;
3239   connect_context = GNUNET_malloc (sizeof (struct ConnectContext));
3240   connect_context->first_index = random_peer;
3241   connect_context->second_index = connection_iter->index;
3242   connect_context->ct_ctx = ct_ctx;
3243   connect_context->task =
3244       GNUNET_SCHEDULER_add_now (&schedule_connect, connect_context);
3245   GNUNET_CONTAINER_DLL_insert (pg->cc_head, pg->cc_tail, connect_context);
3246   GNUNET_CONTAINER_DLL_remove (pg->peers[random_peer].connect_peers_head,
3247                                pg->peers[random_peer].connect_peers_tail,
3248                                connection_iter);
3249   GNUNET_free (connection_iter);
3250   ct_ctx->remaining_connections--;
3251 }
3252
3253 #if USE_SEND_HELLOS
3254 /* Forward declaration */
3255 static void
3256 schedule_send_hellos (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
3257
3258 /**
3259  * Close connections and free the hello context.
3260  *
3261  * @param cls the 'struct SendHelloContext *'
3262  * @param tc scheduler context
3263  */
3264 static void
3265 free_hello_context (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3266 {
3267   struct SendHelloContext *send_hello_context = cls;
3268
3269   if (send_hello_context->peer->daemon->server != NULL)
3270   {
3271     GNUNET_CORE_disconnect (send_hello_context->peer->daemon->server);
3272     send_hello_context->peer->daemon->server = NULL;
3273   }
3274   if (send_hello_context->peer->daemon->th != NULL)
3275   {
3276     GNUNET_TRANSPORT_disconnect (send_hello_context->peer->daemon->th);
3277     send_hello_context->peer->daemon->th = NULL;
3278   }
3279   if (send_hello_context->core_connect_task != GNUNET_SCHEDULER_NO_TASK)
3280   {
3281     GNUNET_SCHEDULER_cancel (send_hello_context->core_connect_task);
3282     send_hello_context->core_connect_task = GNUNET_SCHEDULER_NO_TASK;
3283   }
3284   send_hello_context->pg->outstanding_connects--;
3285   GNUNET_free (send_hello_context);
3286 }
3287
3288 /**
3289  * For peers that haven't yet connected, notify
3290  * the caller that they have failed (timeout).
3291  *
3292  * @param cls the 'struct SendHelloContext *'
3293  * @param tc scheduler context
3294  */
3295 static void
3296 notify_remaining_connections_failed (void *cls,
3297                                      const struct GNUNET_SCHEDULER_TaskContext
3298                                      *tc)
3299 {
3300   struct SendHelloContext *send_hello_context = cls;
3301   struct GNUNET_TESTING_PeerGroup *pg = send_hello_context->pg;
3302   struct PeerConnection *connection;
3303
3304   GNUNET_CORE_disconnect (send_hello_context->peer->daemon->server);
3305   send_hello_context->peer->daemon->server = NULL;
3306
3307   connection = send_hello_context->peer->connect_peers_head;
3308
3309   while (connection != NULL)
3310   {
3311     if (pg->notify_connection != NULL)
3312     {
3313       pg->notify_connection (pg->notify_connection_cls, &send_hello_context->peer->daemon->id, &pg->peers[connection->index].daemon->id, 0,     /* FIXME */
3314                              send_hello_context->peer->daemon->cfg,
3315                              pg->peers[connection->index].daemon->cfg,
3316                              send_hello_context->peer->daemon,
3317                              pg->peers[connection->index].daemon,
3318                              "Peers failed to connect (timeout)");
3319     }
3320     GNUNET_CONTAINER_DLL_remove (send_hello_context->peer->connect_peers_head,
3321                                  send_hello_context->peer->connect_peers_tail,
3322                                  connection);
3323     GNUNET_free (connection);
3324     connection = connection->next;
3325   }
3326   GNUNET_SCHEDULER_add_now (&free_hello_context, send_hello_context);
3327 #if BAD
3328   other_peer = &pg->peers[connection->index];
3329 #endif
3330 }
3331
3332 /**
3333  * For peers that haven't yet connected, send
3334  * CORE connect requests.
3335  *
3336  * @param cls the 'struct SendHelloContext *'
3337  * @param tc scheduler context
3338  */
3339 static void
3340 send_core_connect_requests (void *cls,
3341                             const struct GNUNET_SCHEDULER_TaskContext *tc)
3342 {
3343   struct SendHelloContext *send_hello_context = cls;
3344   struct PeerConnection *conn;
3345
3346   GNUNET_assert (send_hello_context->peer->daemon->server != NULL);
3347
3348   send_hello_context->core_connect_task = GNUNET_SCHEDULER_NO_TASK;
3349
3350   send_hello_context->connect_attempts++;
3351   if (send_hello_context->connect_attempts <
3352       send_hello_context->pg->ct_ctx.connect_attempts)
3353   {
3354     conn = send_hello_context->peer->connect_peers_head;
3355     while (conn != NULL)
3356     {
3357       GNUNET_TRANSPORT_try_connect (send_hello_context->peer->daemon->th,
3358                                     &send_hello_context->pg->peers[conn->
3359                                                                    index].daemon->
3360                                     id);
3361       conn = conn->next;
3362     }
3363     send_hello_context->core_connect_task =
3364         GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_divide
3365                                       (send_hello_context->pg->
3366                                        ct_ctx.connect_timeout,
3367                                        send_hello_context->pg->
3368                                        ct_ctx.connect_attempts),
3369                                       &send_core_connect_requests,
3370                                       send_hello_context);
3371   }
3372   else
3373   {
3374     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
3375                 "Timeout before all connections created, marking rest as failed!\n");
3376     GNUNET_SCHEDULER_add_now (&notify_remaining_connections_failed,
3377                               send_hello_context);
3378   }
3379
3380 }
3381
3382 /**
3383  * Success, connection is up.  Signal client our success.
3384  *
3385  * @param cls our "struct SendHelloContext"
3386  * @param peer identity of the peer that has connected
3387  * @param atsi performance information
3388  *
3389  * FIXME: remove peers from BOTH lists, call notify twice, should
3390  * double the speed of connections as long as the list iteration
3391  * doesn't take too long!
3392  */
3393 static void
3394 core_connect_notify (void *cls, const struct GNUNET_PeerIdentity *peer,
3395                      const struct GNUNET_ATS_Information *atsi)
3396 {
3397   struct SendHelloContext *send_hello_context = cls;
3398   struct PeerConnection *connection;
3399   struct GNUNET_TESTING_PeerGroup *pg = send_hello_context->pg;
3400
3401 #if BAD
3402   struct PeerData *other_peer;
3403 #endif
3404 #if DEBUG_TESTING
3405   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Connected peer %s to peer %s\n",
3406               ctx->d1->shortname, GNUNET_i2s (peer));
3407 #endif
3408
3409   if (0 ==
3410       memcmp (&send_hello_context->peer->daemon->id, peer,
3411               sizeof (struct GNUNET_PeerIdentity)))
3412     return;
3413
3414   connection = send_hello_context->peer->connect_peers_head;
3415 #if BAD
3416   other_peer = NULL;
3417 #endif
3418
3419   while ((connection != NULL) &&
3420          (0 !=
3421           memcmp (&pg->peers[connection->index].daemon->id, peer,
3422                   sizeof (struct GNUNET_PeerIdentity))))
3423   {
3424     connection = connection->next;
3425   }
3426
3427   if (connection == NULL)
3428   {
3429     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3430                 "Connected peer %s to %s, not in list (no problem(?))\n",
3431                 GNUNET_i2s (peer), send_hello_context->peer->daemon->shortname);
3432   }
3433   else
3434   {
3435 #if BAD
3436     other_peer = &pg->peers[connection->index];
3437 #endif
3438     if (pg->notify_connection != NULL)
3439     {
3440       pg->notify_connection (pg->notify_connection_cls, &send_hello_context->peer->daemon->id, peer, 0, /* FIXME */
3441                              send_hello_context->peer->daemon->cfg,
3442                              pg->peers[connection->index].daemon->cfg,
3443                              send_hello_context->peer->daemon,
3444                              pg->peers[connection->index].daemon, NULL);
3445     }
3446     GNUNET_CONTAINER_DLL_remove (send_hello_context->peer->connect_peers_head,
3447                                  send_hello_context->peer->connect_peers_tail,
3448                                  connection);
3449     GNUNET_free (connection);
3450   }
3451
3452 #if BAD
3453   /* Notify of reverse connection and remove from other peers list of outstanding */
3454   if (other_peer != NULL)
3455   {
3456     connection = other_peer->connect_peers_head;
3457     while ((connection != NULL) &&
3458            (0 !=
3459             memcmp (&send_hello_context->peer->daemon->id,
3460                     &pg->peers[connection->index].daemon->id,
3461                     sizeof (struct GNUNET_PeerIdentity))))
3462     {
3463       connection = connection->next;
3464     }
3465     if (connection != NULL)
3466     {
3467       if (pg->notify_connection != NULL)
3468       {
3469         pg->notify_connection (pg->notify_connection_cls, peer, &send_hello_context->peer->daemon->id, 0,       /* FIXME */
3470                                pg->peers[connection->index].daemon->cfg,
3471                                send_hello_context->peer->daemon->cfg,
3472                                pg->peers[connection->index].daemon,
3473                                send_hello_context->peer->daemon, NULL);
3474       }
3475
3476       GNUNET_CONTAINER_DLL_remove (other_peer->connect_peers_head,
3477                                    other_peer->connect_peers_tail, connection);
3478       GNUNET_free (connection);
3479     }
3480   }
3481 #endif
3482
3483   if (send_hello_context->peer->connect_peers_head == NULL)
3484   {
3485     GNUNET_SCHEDULER_add_now (&free_hello_context, send_hello_context);
3486   }
3487 }
3488
3489 /**
3490  * Notify of a successful connection to the core service.
3491  *
3492  * @param cls a struct SendHelloContext *
3493  * @param server handle to the core service
3494  * @param my_identity the peer identity of this peer
3495  */
3496 void
3497 core_init (void *cls, struct GNUNET_CORE_Handle *server,
3498            struct GNUNET_PeerIdentity *my_identity)
3499 {
3500   struct SendHelloContext *send_hello_context = cls;
3501
3502   send_hello_context->core_ready = GNUNET_YES;
3503 }
3504
3505 /**
3506  * Function called once a hello has been sent
3507  * to the transport, move on to the next one
3508  * or go away forever.
3509  *
3510  * @param cls the 'struct SendHelloContext *'
3511  * @param tc scheduler context
3512  */
3513 static void
3514 hello_sent_callback (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3515 {
3516   struct SendHelloContext *send_hello_context = cls;
3517
3518   //unsigned int pg_iter;
3519   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
3520   {
3521     GNUNET_free (send_hello_context);
3522     return;
3523   }
3524
3525   send_hello_context->pg->remaining_hellos--;
3526 #if DEBUG_TESTING
3527   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sent HELLO, have %d remaining!\n",
3528               send_hello_context->pg->remaining_hellos);
3529 #endif
3530   if (send_hello_context->peer_pos == NULL)     /* All HELLOs (for this peer!) have been transmitted! */
3531   {
3532 #if DEBUG_TESTING
3533     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3534                 "All hellos for this peer sent, disconnecting transport!\n");
3535 #endif
3536     GNUNET_assert (send_hello_context->peer->daemon->th != NULL);
3537     GNUNET_TRANSPORT_disconnect (send_hello_context->peer->daemon->th);
3538     send_hello_context->peer->daemon->th = NULL;
3539     GNUNET_assert (send_hello_context->peer->daemon->server == NULL);
3540     send_hello_context->peer->daemon->server =
3541         GNUNET_CORE_connect (send_hello_context->peer->cfg, 1,
3542                              send_hello_context, &core_init,
3543                              &core_connect_notify, NULL, NULL, NULL, GNUNET_NO,
3544                              NULL, GNUNET_NO, no_handlers);
3545
3546     send_hello_context->core_connect_task =
3547         GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_divide
3548                                       (send_hello_context->pg->
3549                                        ct_ctx.connect_timeout,
3550                                        send_hello_context->pg->
3551                                        ct_ctx.connect_attempts),
3552                                       &send_core_connect_requests,
3553                                       send_hello_context);
3554   }
3555   else
3556     GNUNET_SCHEDULER_add_now (&schedule_send_hellos, send_hello_context);
3557 }
3558
3559 /**
3560  * Connect to a peer, give it all the HELLO's of those peers
3561  * we will later ask it to connect to.
3562  *
3563  * @param ct_ctx the overall connection context
3564  */
3565 static void
3566 schedule_send_hellos (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3567 {
3568   struct SendHelloContext *send_hello_context = cls;
3569   struct GNUNET_TESTING_PeerGroup *pg = send_hello_context->pg;
3570
3571   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
3572   {
3573     GNUNET_free (send_hello_context);
3574     return;
3575   }
3576
3577   GNUNET_assert (send_hello_context->peer_pos != NULL); /* All of the HELLO sends to be scheduled have been scheduled! */
3578
3579   if (((send_hello_context->peer->daemon->th == NULL) &&
3580        (pg->outstanding_connects > pg->max_outstanding_connections)) ||
3581       (pg->stop_connects == GNUNET_YES))
3582   {
3583 #if VERBOSE_TESTING > 2
3584     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3585                 _
3586                 ("Delaying connect, we have too many outstanding connections!\n"));
3587 #endif
3588     GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
3589                                   (GNUNET_TIME_UNIT_MILLISECONDS, 100),
3590                                   &schedule_send_hellos, send_hello_context);
3591   }
3592   else
3593   {
3594 #if VERBOSE_TESTING > 2
3595     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3596                 _("Creating connection, outstanding_connections is %d\n"),
3597                 outstanding_connects);
3598 #endif
3599     if (send_hello_context->peer->daemon->th == NULL)
3600     {
3601       pg->outstanding_connects++;       /* Actual TRANSPORT, CORE connections! */
3602       send_hello_context->peer->daemon->th =
3603           GNUNET_TRANSPORT_connect (send_hello_context->peer->cfg, NULL,
3604                                     send_hello_context, NULL, NULL, NULL);
3605     }
3606 #if DEBUG_TESTING
3607     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3608                 _("Offering HELLO of peer %s to peer %s\n"),
3609                 send_hello_context->peer->daemon->shortname,
3610                 pg->peers[send_hello_context->peer_pos->index].
3611                 daemon->shortname);
3612 #endif
3613     GNUNET_TRANSPORT_offer_hello (send_hello_context->peer->daemon->th,
3614                                   (const struct GNUNET_MessageHeader *)
3615                                   pg->peers[send_hello_context->peer_pos->
3616                                             index].daemon->hello,
3617                                   &hello_sent_callback, send_hello_context);
3618     send_hello_context->peer_pos = send_hello_context->peer_pos->next;
3619     GNUNET_assert (send_hello_context->peer->daemon->th != NULL);
3620   }
3621 }
3622 #endif
3623
3624 /**
3625  * Internal notification of a connection, kept so that we can ensure some connections
3626  * happen instead of flooding all testing daemons with requests to connect.
3627  */
3628 static void
3629 internal_connect_notify (void *cls, const struct GNUNET_PeerIdentity *first,
3630                          const struct GNUNET_PeerIdentity *second,
3631                          uint32_t distance,
3632                          const struct GNUNET_CONFIGURATION_Handle *first_cfg,
3633                          const struct GNUNET_CONFIGURATION_Handle *second_cfg,
3634                          struct GNUNET_TESTING_Daemon *first_daemon,
3635                          struct GNUNET_TESTING_Daemon *second_daemon,
3636                          const char *emsg)
3637 {
3638   struct ConnectContext *connect_ctx = cls;
3639   struct ConnectTopologyContext *ct_ctx = connect_ctx->ct_ctx;
3640   struct GNUNET_TESTING_PeerGroup *pg = ct_ctx->pg;
3641   struct PeerConnection *connection;
3642
3643   GNUNET_assert (NULL != connect_ctx->cc);
3644   connect_ctx->cc = NULL;
3645   GNUNET_assert (0 < pg->outstanding_connects);
3646   pg->outstanding_connects--;
3647   GNUNET_CONTAINER_DLL_remove (pg->cc_head, pg->cc_tail, connect_ctx);
3648   /*
3649    * Check whether the inverse connection has been scheduled yet,
3650    * if not, we can remove it from the other peers list and avoid
3651    * even trying to connect them again!
3652    */
3653   connection = pg->peers[connect_ctx->second_index].connect_peers_head;
3654 #if BAD
3655   other_peer = NULL;
3656 #endif
3657
3658   while ((connection != NULL) &&
3659          (0 !=
3660           memcmp (first, &pg->peers[connection->index].daemon->id,
3661                   sizeof (struct GNUNET_PeerIdentity))))
3662     connection = connection->next;
3663
3664   if (connection != NULL)       /* Can safely remove! */
3665   {
3666     GNUNET_assert (0 < ct_ctx->remaining_connections);
3667     ct_ctx->remaining_connections--;
3668     if (pg->notify_connection != NULL)  /* Notify of reverse connection */
3669       pg->notify_connection (pg->notify_connection_cls, second, first, distance,
3670                              second_cfg, first_cfg, second_daemon, first_daemon,
3671                              emsg);
3672
3673     GNUNET_CONTAINER_DLL_remove (pg->
3674                                  peers[connect_ctx->
3675                                        second_index].connect_peers_head,
3676                                  pg->peers[connect_ctx->
3677                                            second_index].connect_peers_tail,
3678                                  connection);
3679     GNUNET_free (connection);
3680   }
3681
3682   if (ct_ctx->remaining_connections == 0)
3683   {
3684     if (ct_ctx->notify_connections_done != NULL)
3685     {
3686       ct_ctx->notify_connections_done (ct_ctx->notify_cls, NULL);
3687       ct_ctx->notify_connections_done = NULL;
3688     }
3689   }
3690   else
3691     preschedule_connect (pg);
3692
3693   if (pg->notify_connection != NULL)
3694     pg->notify_connection (pg->notify_connection_cls, first, second, distance,
3695                            first_cfg, second_cfg, first_daemon, second_daemon,
3696                            emsg);
3697   GNUNET_free (connect_ctx);
3698 }
3699
3700 /**
3701  * Either delay a connection (because there are too many outstanding)
3702  * or schedule it for right now.
3703  *
3704  * @param cls a connection context
3705  * @param tc the task runtime context
3706  */
3707 static void
3708 schedule_connect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
3709 {
3710   struct ConnectContext *connect_context = cls;
3711   struct GNUNET_TESTING_PeerGroup *pg = connect_context->ct_ctx->pg;
3712
3713   connect_context->task = GNUNET_SCHEDULER_NO_TASK;
3714   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
3715     return;
3716
3717   if ((pg->outstanding_connects > pg->max_outstanding_connections) ||
3718       (pg->stop_connects == GNUNET_YES))
3719   {
3720 #if VERBOSE_TESTING
3721     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3722                 _
3723                 ("Delaying connect, we have too many outstanding connections!\n"));
3724 #endif
3725     connect_context->task =
3726         GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
3727                                       (GNUNET_TIME_UNIT_MILLISECONDS, 100),
3728                                       &schedule_connect, connect_context);
3729     return;
3730   }
3731 #if VERBOSE_TESTING
3732   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3733               _
3734               ("Creating connection, outstanding_connections is %d (max %d)\n"),
3735               pg->outstanding_connects, pg->max_outstanding_connections);
3736 #endif
3737   pg->outstanding_connects++;
3738   pg->total_connects_scheduled++;
3739   GNUNET_assert (NULL == connect_context->cc);
3740   connect_context->cc =
3741       GNUNET_TESTING_daemons_connect (pg->
3742                                       peers[connect_context->
3743                                             first_index].daemon,
3744                                       pg->peers[connect_context->
3745                                                 second_index].daemon,
3746                                       connect_context->ct_ctx->connect_timeout,
3747                                       connect_context->ct_ctx->connect_attempts,
3748 #if USE_SEND_HELLOS
3749                                       GNUNET_NO,
3750 #else
3751                                       GNUNET_YES,
3752 #endif
3753                                       &internal_connect_notify,
3754                                       connect_context);
3755
3756 }
3757
3758 #if !OLD
3759 /**
3760  * Iterator for actually scheduling connections to be created
3761  * between two peers.
3762  *
3763  * @param cls closure, a GNUNET_TESTING_Daemon
3764  * @param key the key the second Daemon was stored under
3765  * @param value the GNUNET_TESTING_Daemon that the first is to connect to
3766  *
3767  * @return GNUNET_YES to continue iteration
3768  */
3769 static int
3770 connect_iterator (void *cls, const GNUNET_HashCode * key, void *value)
3771 {
3772   struct ConnectTopologyContext *ct_ctx = cls;
3773   struct PeerData *first = ct_ctx->first;
3774   struct GNUNET_TESTING_Daemon *second = value;
3775   struct ConnectContext *connect_context;
3776
3777   connect_context = GNUNET_malloc (sizeof (struct ConnectContext));
3778   connect_context->first = first->daemon;
3779   connect_context->second = second;
3780   connect_context->ct_ctx = ct_ctx;
3781   connect_context->task =
3782       GNUNET_SCHEDULER_add_now (&schedule_connect, connect_context);
3783   GNUNET_CONTAINER_DLL_insert (ct_ctx->pg->cc_head, ct_ctx->pg->cc_tail,
3784                                connect_context);
3785   return GNUNET_YES;
3786 }
3787 #endif
3788
3789 #if !OLD
3790 /**
3791  * Iterator for copying all entries in the allowed hashmap to the
3792  * connect hashmap.
3793  *
3794  * @param cls closure, a GNUNET_TESTING_Daemon
3795  * @param key the key the second Daemon was stored under
3796  * @param value the GNUNET_TESTING_Daemon that the first is to connect to
3797  *
3798  * @return GNUNET_YES to continue iteration
3799  */
3800 static int
3801 copy_topology_iterator (void *cls, const GNUNET_HashCode * key, void *value)
3802 {
3803   struct PeerData *first = cls;
3804
3805   GNUNET_assert (GNUNET_OK ==
3806                  GNUNET_CONTAINER_multihashmap_put (first->connect_peers, key,
3807                                                     value,
3808                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
3809
3810   return GNUNET_YES;
3811 }
3812 #endif
3813
3814 /**
3815  * Make the peers to connect the same as those that are allowed to be
3816  * connected.
3817  *
3818  * @param pg the peer group
3819  */
3820 static int
3821 copy_allowed_topology (struct GNUNET_TESTING_PeerGroup *pg)
3822 {
3823   unsigned int pg_iter;
3824   int ret;
3825   int total;
3826
3827 #if OLD
3828   struct PeerConnection *iter;
3829 #endif
3830   total = 0;
3831   ret = 0;
3832   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
3833   {
3834 #if OLD
3835     iter = pg->peers[pg_iter].allowed_peers_head;
3836     while (iter != NULL)
3837     {
3838       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3839                   "Creating connection between %d and %d\n", pg_iter,
3840                   iter->index);
3841       total += add_connections (pg, pg_iter, iter->index, CONNECT, GNUNET_YES);
3842       //total += add_actual_connections(pg, pg_iter, iter->index);
3843       iter = iter->next;
3844     }
3845 #else
3846     ret =
3847         GNUNET_CONTAINER_multihashmap_iterate (pg->peers[pg_iter].allowed_peers,
3848                                                &copy_topology_iterator,
3849                                                &pg->peers[pg_iter]);
3850 #endif
3851     if (GNUNET_SYSERR == ret)
3852       return GNUNET_SYSERR;
3853
3854     total = total + ret;
3855   }
3856
3857   return total;
3858 }
3859
3860 /**
3861  * Connect the topology as specified by the PeerConnection's
3862  * of each peer in the peer group
3863  *
3864  * @param pg the peer group we are dealing with
3865  * @param connect_timeout how long try connecting two peers
3866  * @param connect_attempts how many times (max) to attempt
3867  * @param notify_callback callback to notify when finished
3868  * @param notify_cls closure for notify callback
3869  *
3870  * @return the number of connections that will be attempted
3871  */
3872 static int
3873 connect_topology (struct GNUNET_TESTING_PeerGroup *pg,
3874                   struct GNUNET_TIME_Relative connect_timeout,
3875                   unsigned int connect_attempts,
3876                   GNUNET_TESTING_NotifyCompletion notify_callback,
3877                   void *notify_cls)
3878 {
3879   unsigned int pg_iter;
3880   unsigned int total;
3881
3882 #if OLD
3883   struct PeerConnection *connection_iter;
3884 #endif
3885 #if USE_SEND_HELLOS
3886   struct SendHelloContext *send_hello_context;
3887 #endif
3888
3889   total = 0;
3890   pg->ct_ctx.notify_connections_done = notify_callback;
3891   pg->ct_ctx.notify_cls = notify_cls;
3892   pg->ct_ctx.pg = pg;
3893
3894   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
3895   {
3896 #if OLD
3897     connection_iter = pg->peers[pg_iter].connect_peers_head;
3898     while (connection_iter != NULL)
3899     {
3900       connection_iter = connection_iter->next;
3901       total++;
3902     }
3903 #else
3904     total +=
3905         GNUNET_CONTAINER_multihashmap_size (pg->peers[pg_iter].connect_peers);
3906 #endif
3907   }
3908
3909   if (total == 0)
3910     return total;
3911
3912   pg->ct_ctx.connect_timeout = connect_timeout;
3913   pg->ct_ctx.connect_attempts = connect_attempts;
3914   pg->ct_ctx.remaining_connections = total;
3915
3916 #if USE_SEND_HELLOS
3917   /* First give all peers the HELLO's of other peers (connect to first peer's transport service, give HELLO's of other peers, continue...) */
3918   pg->remaining_hellos = total;
3919   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
3920   {
3921     send_hello_context = GNUNET_malloc (sizeof (struct SendHelloContext));
3922     send_hello_context->peer = &pg->peers[pg_iter];
3923     send_hello_context->peer_pos = pg->peers[pg_iter].connect_peers_head;
3924     send_hello_context->pg = pg;
3925     GNUNET_SCHEDULER_add_now (&schedule_send_hellos, send_hello_context);
3926   }
3927 #else
3928   for (pg_iter = 0; pg_iter < pg->max_outstanding_connections; pg_iter++)
3929   {
3930     preschedule_connect (pg);
3931   }
3932 #endif
3933   return total;
3934
3935 }
3936
3937 /**
3938  * Takes a peer group and creates a topology based on the
3939  * one specified.  Creates a topology means generates friend
3940  * files for the peers so they can only connect to those allowed
3941  * by the topology.  This will only have an effect once peers
3942  * are started if the FRIENDS_ONLY option is set in the base
3943  * config.  Also takes an optional restrict topology which
3944  * disallows connections based on particular transports
3945  * UNLESS they are specified in the restricted topology.
3946  *
3947  * @param pg the peer group struct representing the running peers
3948  * @param topology which topology to connect the peers in
3949  * @param restrict_topology disallow restrict_transports transport
3950  *                          connections to peers NOT in this topology
3951  *                          use GNUNET_TESTING_TOPOLOGY_NONE for no restrictions
3952  * @param restrict_transports space delimited list of transports to blacklist
3953  *                            to create restricted topology
3954  *
3955  * @return the maximum number of connections were all allowed peers
3956  *         connected to each other
3957  */
3958 unsigned int
3959 GNUNET_TESTING_create_topology (struct GNUNET_TESTING_PeerGroup *pg,
3960                                 enum GNUNET_TESTING_Topology topology,
3961                                 enum GNUNET_TESTING_Topology restrict_topology,
3962                                 const char *restrict_transports)
3963 {
3964   int ret;
3965
3966   unsigned int num_connections;
3967   int unblacklisted_connections;
3968   char *filename;
3969   struct PeerConnection *conn_iter;
3970   struct PeerConnection *temp_conn;
3971   unsigned int off;
3972
3973 #if !OLD
3974   unsigned int i;
3975
3976   for (i = 0; i < pg->total; i++)
3977   {
3978     pg->peers[i].allowed_peers = GNUNET_CONTAINER_multihashmap_create (100);
3979     pg->peers[i].connect_peers = GNUNET_CONTAINER_multihashmap_create (100);
3980     pg->peers[i].blacklisted_peers = GNUNET_CONTAINER_multihashmap_create (100);
3981     pg->peers[i].pg = pg;
3982   }
3983 #endif
3984
3985   switch (topology)
3986   {
3987   case GNUNET_TESTING_TOPOLOGY_CLIQUE:
3988     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, _("Creating clique topology\n"));
3989     num_connections = create_clique (pg, &add_connections, ALLOWED, GNUNET_NO);
3990     break;
3991   case GNUNET_TESTING_TOPOLOGY_SMALL_WORLD_RING:
3992     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3993                 _("Creating small world (ring) topology\n"));
3994     num_connections = create_small_world_ring (pg, &add_connections, ALLOWED);
3995     break;
3996   case GNUNET_TESTING_TOPOLOGY_SMALL_WORLD:
3997     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
3998                 _("Creating small world (2d-torus) topology\n"));
3999     num_connections = create_small_world (pg, &add_connections, ALLOWED);
4000     break;
4001   case GNUNET_TESTING_TOPOLOGY_RING:
4002     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, _("Creating ring topology\n"));
4003     num_connections = create_ring (pg, &add_connections, ALLOWED);
4004     break;
4005   case GNUNET_TESTING_TOPOLOGY_2D_TORUS:
4006     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, _("Creating 2d torus topology\n"));
4007     num_connections = create_2d_torus (pg, &add_connections, ALLOWED);
4008     break;
4009   case GNUNET_TESTING_TOPOLOGY_ERDOS_RENYI:
4010     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, _("Creating Erdos-Renyi topology\n"));
4011     num_connections = create_erdos_renyi (pg, &add_connections, ALLOWED);
4012     break;
4013   case GNUNET_TESTING_TOPOLOGY_INTERNAT:
4014     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, _("Creating InterNAT topology\n"));
4015     num_connections = create_nated_internet (pg, &add_connections, ALLOWED);
4016     break;
4017   case GNUNET_TESTING_TOPOLOGY_SCALE_FREE:
4018     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, _("Creating Scale Free topology\n"));
4019     num_connections = create_scale_free (pg, &add_connections, ALLOWED);
4020     break;
4021   case GNUNET_TESTING_TOPOLOGY_LINE:
4022     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4023                 _("Creating straight line topology\n"));
4024     num_connections = create_line (pg, &add_connections, ALLOWED);
4025     break;
4026   case GNUNET_TESTING_TOPOLOGY_FROM_FILE:
4027     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, _("Creating topology from file!\n"));
4028     if (GNUNET_OK ==
4029         GNUNET_CONFIGURATION_get_value_string (pg->cfg, "testing",
4030                                                "topology_file", &filename))
4031       num_connections =
4032           create_from_file (pg, filename, &add_connections, ALLOWED);
4033     else
4034     {
4035       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
4036                   "Missing configuration option TESTING:TOPOLOGY_FILE for creating topology from file!\n");
4037       num_connections = 0;
4038     }
4039     break;
4040   case GNUNET_TESTING_TOPOLOGY_NONE:
4041     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4042                 _
4043                 ("Creating no allowed topology (all peers can connect at core level)\n"));
4044     num_connections = pg->total * pg->total;    /* Clique is allowed! */
4045     break;
4046   default:
4047     num_connections = 0;
4048     break;
4049   }
4050
4051   if (GNUNET_YES ==
4052       GNUNET_CONFIGURATION_get_value_yesno (pg->cfg, "TESTING", "F2F"))
4053   {
4054     ret = create_and_copy_friend_files (pg);
4055     if (ret != GNUNET_OK)
4056     {
4057       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4058                   _("Failed during friend file copying!\n"));
4059       return GNUNET_SYSERR;
4060     }
4061     else
4062     {
4063       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4064                   _("Friend files created/copied successfully!\n"));
4065     }
4066   }
4067
4068   /* Use the create clique method to initially set all connections as blacklisted. */
4069   if ((restrict_topology != GNUNET_TESTING_TOPOLOGY_NONE) &&
4070       (restrict_topology != GNUNET_TESTING_TOPOLOGY_FROM_FILE))
4071     create_clique (pg, &add_connections, BLACKLIST, GNUNET_NO);
4072   else
4073     return num_connections;
4074
4075   unblacklisted_connections = 0;
4076   /* Un-blacklist connections as per the topology specified */
4077   switch (restrict_topology)
4078   {
4079   case GNUNET_TESTING_TOPOLOGY_CLIQUE:
4080     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4081                 _("Blacklisting all but clique topology\n"));
4082     unblacklisted_connections =
4083         create_clique (pg, &remove_connections, BLACKLIST, GNUNET_NO);
4084     break;
4085   case GNUNET_TESTING_TOPOLOGY_SMALL_WORLD_RING:
4086     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4087                 _("Blacklisting all but small world (ring) topology\n"));
4088     unblacklisted_connections =
4089         create_small_world_ring (pg, &remove_connections, BLACKLIST);
4090     break;
4091   case GNUNET_TESTING_TOPOLOGY_SMALL_WORLD:
4092     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4093                 _("Blacklisting all but small world (2d-torus) topology\n"));
4094     unblacklisted_connections =
4095         create_small_world (pg, &remove_connections, BLACKLIST);
4096     break;
4097   case GNUNET_TESTING_TOPOLOGY_RING:
4098     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4099                 _("Blacklisting all but ring topology\n"));
4100     unblacklisted_connections =
4101         create_ring (pg, &remove_connections, BLACKLIST);
4102     break;
4103   case GNUNET_TESTING_TOPOLOGY_2D_TORUS:
4104     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4105                 _("Blacklisting all but 2d torus topology\n"));
4106     unblacklisted_connections =
4107         create_2d_torus (pg, &remove_connections, BLACKLIST);
4108     break;
4109   case GNUNET_TESTING_TOPOLOGY_ERDOS_RENYI:
4110     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4111                 _("Blacklisting all but Erdos-Renyi topology\n"));
4112     unblacklisted_connections =
4113         create_erdos_renyi (pg, &remove_connections, BLACKLIST);
4114     break;
4115   case GNUNET_TESTING_TOPOLOGY_INTERNAT:
4116     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4117                 _("Blacklisting all but InterNAT topology\n"));
4118
4119 #if TOPOLOGY_HACK
4120     for (off = 0; off < pg->total; off++)
4121     {
4122       conn_iter = pg->peers[off].allowed_peers_head;
4123       while (conn_iter != NULL)
4124       {
4125         temp_conn = conn_iter->next;
4126         GNUNET_free (conn_iter);
4127         conn_iter = temp_conn;
4128       }
4129       pg->peers[off].allowed_peers_head = NULL;
4130       pg->peers[off].allowed_peers_tail = NULL;
4131
4132       conn_iter = pg->peers[off].connect_peers_head;
4133       while (conn_iter != NULL)
4134       {
4135         temp_conn = conn_iter->next;
4136         GNUNET_free (conn_iter);
4137         conn_iter = temp_conn;
4138       }
4139       pg->peers[off].connect_peers_head = NULL;
4140       pg->peers[off].connect_peers_tail = NULL;
4141     }
4142     unblacklisted_connections =
4143         create_nated_internet_copy (pg, &remove_connections, BLACKLIST);
4144 #else
4145     unblacklisted_connections =
4146         create_nated_internet (pg, &remove_connections, BLACKLIST);
4147 #endif
4148
4149     break;
4150   case GNUNET_TESTING_TOPOLOGY_SCALE_FREE:
4151     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4152                 _("Blacklisting all but Scale Free topology\n"));
4153     unblacklisted_connections =
4154         create_scale_free (pg, &remove_connections, BLACKLIST);
4155     break;
4156   case GNUNET_TESTING_TOPOLOGY_LINE:
4157     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4158                 _("Blacklisting all but straight line topology\n"));
4159     unblacklisted_connections =
4160         create_line (pg, &remove_connections, BLACKLIST);
4161   default:
4162     break;
4163   }
4164
4165   if ((unblacklisted_connections > 0) && (restrict_transports != NULL))
4166   {
4167     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Creating blacklist with `%s'\n",
4168                 restrict_transports);
4169     ret = create_and_copy_blacklist_files (pg, restrict_transports);
4170     if (ret != GNUNET_OK)
4171     {
4172       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4173                   _("Failed during blacklist file copying!\n"));
4174       return 0;
4175     }
4176     else
4177     {
4178       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4179                   _("Blacklist files created/copied successfully!\n"));
4180     }
4181   }
4182   return num_connections;
4183 }
4184
4185 #if !OLD
4186 /**
4187  * Iterator for choosing random peers to connect.
4188  *
4189  * @param cls closure, a RandomContext
4190  * @param key the key the second Daemon was stored under
4191  * @param value the GNUNET_TESTING_Daemon that the first is to connect to
4192  *
4193  * @return GNUNET_YES to continue iteration
4194  */
4195 static int
4196 random_connect_iterator (void *cls, const GNUNET_HashCode * key, void *value)
4197 {
4198   struct RandomContext *random_ctx = cls;
4199   double random_number;
4200   uint32_t second_pos;
4201   GNUNET_HashCode first_hash;
4202
4203   random_number =
4204       ((double)
4205        GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_WEAK,
4206                                  UINT64_MAX)) / ((double) UINT64_MAX);
4207   if (random_number < random_ctx->percentage)
4208   {
4209     GNUNET_assert (GNUNET_OK ==
4210                    GNUNET_CONTAINER_multihashmap_put (random_ctx->
4211                                                       first->connect_peers_working_set,
4212                                                       key, value,
4213                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
4214   }
4215
4216   /* Now we have considered this particular connection, remove it from the second peer so it's not double counted */
4217   uid_from_hash (key, &second_pos);
4218   hash_from_uid (random_ctx->first_uid, &first_hash);
4219   GNUNET_assert (random_ctx->pg->total > second_pos);
4220   GNUNET_assert (GNUNET_YES ==
4221                  GNUNET_CONTAINER_multihashmap_remove (random_ctx->
4222                                                        pg->peers
4223                                                        [second_pos].connect_peers,
4224                                                        &first_hash,
4225                                                        random_ctx->
4226                                                        first->daemon));
4227
4228   return GNUNET_YES;
4229 }
4230
4231 /**
4232  * Iterator for adding at least X peers to a peers connection set.
4233  *
4234  * @param cls closure, MinimumContext
4235  * @param key the key the second Daemon was stored under
4236  * @param value the GNUNET_TESTING_Daemon that the first is to connect to
4237  *
4238  * @return GNUNET_YES to continue iteration
4239  */
4240 static int
4241 minimum_connect_iterator (void *cls, const GNUNET_HashCode * key, void *value)
4242 {
4243   struct MinimumContext *min_ctx = cls;
4244   uint32_t second_pos;
4245   GNUNET_HashCode first_hash;
4246   unsigned int i;
4247
4248   if (GNUNET_CONTAINER_multihashmap_size
4249       (min_ctx->first->connect_peers_working_set) < min_ctx->num_to_add)
4250   {
4251     for (i = 0; i < min_ctx->num_to_add; i++)
4252     {
4253       if (min_ctx->pg_array[i] == min_ctx->current)
4254       {
4255         GNUNET_assert (GNUNET_OK ==
4256                        GNUNET_CONTAINER_multihashmap_put (min_ctx->
4257                                                           first->connect_peers_working_set,
4258                                                           key, value,
4259                                                           GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
4260         uid_from_hash (key, &second_pos);
4261         hash_from_uid (min_ctx->first_uid, &first_hash);
4262         GNUNET_assert (min_ctx->pg->total > second_pos);
4263         GNUNET_assert (GNUNET_OK ==
4264                        GNUNET_CONTAINER_multihashmap_put (min_ctx->
4265                                                           pg->peers
4266                                                           [second_pos].connect_peers_working_set,
4267                                                           &first_hash,
4268                                                           min_ctx->first->
4269                                                           daemon,
4270                                                           GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
4271         /* Now we have added this particular connection, remove it from the second peer's map so it's not double counted */
4272         GNUNET_assert (GNUNET_YES ==
4273                        GNUNET_CONTAINER_multihashmap_remove (min_ctx->
4274                                                              pg->peers
4275                                                              [second_pos].connect_peers,
4276                                                              &first_hash,
4277                                                              min_ctx->
4278                                                              first->daemon));
4279       }
4280     }
4281     min_ctx->current++;
4282     return GNUNET_YES;
4283   }
4284   else
4285     return GNUNET_NO;           /* We can stop iterating, we have enough peers! */
4286
4287 }
4288
4289 /**
4290  * Iterator for adding peers to a connection set based on a depth first search.
4291  *
4292  * @param cls closure, MinimumContext
4293  * @param key the key the second daemon was stored under
4294  * @param value the GNUNET_TESTING_Daemon that the first is to connect to
4295  *
4296  * @return GNUNET_YES to continue iteration
4297  */
4298 static int
4299 dfs_connect_iterator (void *cls, const GNUNET_HashCode * key, void *value)
4300 {
4301   struct DFSContext *dfs_ctx = cls;
4302   GNUNET_HashCode first_hash;
4303
4304   if (dfs_ctx->current == dfs_ctx->chosen)
4305   {
4306     GNUNET_assert (GNUNET_OK ==
4307                    GNUNET_CONTAINER_multihashmap_put (dfs_ctx->
4308                                                       first->connect_peers_working_set,
4309                                                       key, value,
4310                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
4311     uid_from_hash (key, &dfs_ctx->second_uid);
4312     hash_from_uid (dfs_ctx->first_uid, &first_hash);
4313     GNUNET_assert (GNUNET_OK ==
4314                    GNUNET_CONTAINER_multihashmap_put (dfs_ctx->
4315                                                       pg->peers[dfs_ctx->
4316                                                                 second_uid].connect_peers_working_set,
4317                                                       &first_hash,
4318                                                       dfs_ctx->first->daemon,
4319                                                       GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
4320     GNUNET_assert (GNUNET_YES ==
4321                    GNUNET_CONTAINER_multihashmap_remove (dfs_ctx->
4322                                                          pg->peers
4323                                                          [dfs_ctx->second_uid].connect_peers,
4324                                                          &first_hash,
4325                                                          dfs_ctx->
4326                                                          first->daemon));
4327     /* Can't remove second from first yet because we are currently iterating, hence the return value in the DFSContext! */
4328     return GNUNET_NO;           /* We have found our peer, don't iterate more */
4329   }
4330
4331   dfs_ctx->current++;
4332   return GNUNET_YES;
4333 }
4334 #endif
4335
4336 /**
4337  * From the set of connections possible, choose percentage percent of connections
4338  * to actually connect.
4339  *
4340  * @param pg the peergroup we are dealing with
4341  * @param percentage what percent of total connections to make
4342  */
4343 void
4344 choose_random_connections (struct GNUNET_TESTING_PeerGroup *pg,
4345                            double percentage)
4346 {
4347   uint32_t pg_iter;
4348
4349 #if OLD
4350   struct PeerConnection *conn_iter;
4351   double random_number;
4352 #else
4353   struct RandomContext random_ctx;
4354 #endif
4355
4356   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4357   {
4358 #if OLD
4359     conn_iter = pg->peers[pg_iter].connect_peers_head;
4360     while (conn_iter != NULL)
4361     {
4362       random_number =
4363           ((double)
4364            GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_WEAK,
4365                                      UINT64_MAX)) / ((double) UINT64_MAX);
4366       if (random_number < percentage)
4367       {
4368         add_connections (pg, pg_iter, conn_iter->index, WORKING_SET,
4369                          GNUNET_YES);
4370       }
4371       conn_iter = conn_iter->next;
4372     }
4373 #else
4374     random_ctx.first_uid = pg_iter;
4375     random_ctx.first = &pg->peers[pg_iter];
4376     random_ctx.percentage = percentage;
4377     random_ctx.pg = pg;
4378     pg->peers[pg_iter].connect_peers_working_set =
4379         GNUNET_CONTAINER_multihashmap_create (pg->total);
4380     GNUNET_CONTAINER_multihashmap_iterate (pg->peers[pg_iter].connect_peers,
4381                                            &random_connect_iterator,
4382                                            &random_ctx);
4383     /* Now remove the old connections */
4384     GNUNET_CONTAINER_multihashmap_destroy (pg->peers[pg_iter].connect_peers);
4385     /* And replace with the random set */
4386     pg->peers[pg_iter].connect_peers =
4387         pg->peers[pg_iter].connect_peers_working_set;
4388 #endif
4389   }
4390
4391   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4392   {
4393     conn_iter = pg->peers[pg_iter].connect_peers_head;
4394     while (pg->peers[pg_iter].connect_peers_head != NULL)
4395       remove_connections (pg, pg_iter,
4396                           pg->peers[pg_iter].connect_peers_head->index, CONNECT,
4397                           GNUNET_YES);
4398
4399     pg->peers[pg_iter].connect_peers_head =
4400         pg->peers[pg_iter].connect_peers_working_set_head;
4401     pg->peers[pg_iter].connect_peers_tail =
4402         pg->peers[pg_iter].connect_peers_working_set_tail;
4403     pg->peers[pg_iter].connect_peers_working_set_head = NULL;
4404     pg->peers[pg_iter].connect_peers_working_set_tail = NULL;
4405   }
4406 }
4407
4408 /**
4409  * Count the number of connections in a linked list of connections.
4410  *
4411  * @param conn_list the connection list to get the count of
4412  *
4413  * @return the number of elements in the list
4414  */
4415 static unsigned int
4416 count_connections (struct PeerConnection *conn_list)
4417 {
4418   struct PeerConnection *iter;
4419   unsigned int count;
4420
4421   count = 0;
4422   iter = conn_list;
4423   while (iter != NULL)
4424   {
4425     iter = iter->next;
4426     count++;
4427   }
4428   return count;
4429 }
4430
4431 static unsigned int
4432 count_workingset_connections (struct GNUNET_TESTING_PeerGroup *pg)
4433 {
4434   unsigned int count;
4435   unsigned int pg_iter;
4436
4437 #if OLD
4438   struct PeerConnection *conn_iter;
4439 #endif
4440   count = 0;
4441
4442   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4443   {
4444 #if OLD
4445     conn_iter = pg->peers[pg_iter].connect_peers_working_set_head;
4446     while (conn_iter != NULL)
4447     {
4448       count++;
4449       conn_iter = conn_iter->next;
4450     }
4451 #else
4452     count +=
4453         GNUNET_CONTAINER_multihashmap_size (pg->
4454                                             peers
4455                                             [pg_iter].connect_peers_working_set);
4456 #endif
4457   }
4458
4459   return count;
4460 }
4461
4462 static unsigned int
4463 count_allowed_connections (struct GNUNET_TESTING_PeerGroup *pg)
4464 {
4465   unsigned int count;
4466   unsigned int pg_iter;
4467
4468 #if OLD
4469   struct PeerConnection *conn_iter;
4470 #endif
4471
4472   count = 0;
4473   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4474   {
4475 #if OLD
4476     conn_iter = pg->peers[pg_iter].allowed_peers_head;
4477     while (conn_iter != NULL)
4478     {
4479       count++;
4480       conn_iter = conn_iter->next;
4481     }
4482 #else
4483     count +=
4484         GNUNET_CONTAINER_multihashmap_size (pg->peers[pg_iter].allowed_peers);
4485 #endif
4486   }
4487
4488   return count;
4489 }
4490
4491 /**
4492  * From the set of connections possible, choose at least num connections per
4493  * peer.
4494  *
4495  * @param pg the peergroup we are dealing with
4496  * @param num how many connections at least should each peer have (if possible)?
4497  */
4498 static void
4499 choose_minimum (struct GNUNET_TESTING_PeerGroup *pg, unsigned int num)
4500 {
4501 #if !OLD
4502   struct MinimumContext minimum_ctx;
4503 #else
4504   struct PeerConnection *conn_iter;
4505   unsigned int temp_list_size;
4506   unsigned int i;
4507   unsigned int count;
4508   uint32_t random;              /* Random list entry to connect peer to */
4509 #endif
4510   uint32_t pg_iter;
4511
4512 #if OLD
4513   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4514   {
4515     temp_list_size = count_connections (pg->peers[pg_iter].connect_peers_head);
4516     if (temp_list_size == 0)
4517     {
4518       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Peer %d has 0 connections!?!?\n",
4519                   pg_iter);
4520       break;
4521     }
4522     for (i = 0; i < num; i++)
4523     {
4524       random =
4525           GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, temp_list_size);
4526       conn_iter = pg->peers[pg_iter].connect_peers_head;
4527       for (count = 0; count < random; count++)
4528         conn_iter = conn_iter->next;
4529       /* We now have a random connection, connect it! */
4530       GNUNET_assert (conn_iter != NULL);
4531       add_connections (pg, pg_iter, conn_iter->index, WORKING_SET, GNUNET_YES);
4532     }
4533   }
4534 #else
4535   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4536   {
4537     pg->peers[pg_iter].connect_peers_working_set =
4538         GNUNET_CONTAINER_multihashmap_create (num);
4539   }
4540
4541   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4542   {
4543     minimum_ctx.first_uid = pg_iter;
4544     minimum_ctx.pg_array =
4545         GNUNET_CRYPTO_random_permute (GNUNET_CRYPTO_QUALITY_WEAK,
4546                                       GNUNET_CONTAINER_multihashmap_size
4547                                       (pg->peers[pg_iter].connect_peers));
4548     minimum_ctx.first = &pg->peers[pg_iter];
4549     minimum_ctx.pg = pg;
4550     minimum_ctx.num_to_add = num;
4551     minimum_ctx.current = 0;
4552     GNUNET_CONTAINER_multihashmap_iterate (pg->peers[pg_iter].connect_peers,
4553                                            &minimum_connect_iterator,
4554                                            &minimum_ctx);
4555   }
4556
4557   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4558   {
4559     /* Remove the "old" connections */
4560     GNUNET_CONTAINER_multihashmap_destroy (pg->peers[pg_iter].connect_peers);
4561     /* And replace with the working set */
4562     pg->peers[pg_iter].connect_peers =
4563         pg->peers[pg_iter].connect_peers_working_set;
4564   }
4565 #endif
4566   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4567   {
4568     while (pg->peers[pg_iter].connect_peers_head != NULL)
4569     {
4570       conn_iter = pg->peers[pg_iter].connect_peers_head;
4571       GNUNET_CONTAINER_DLL_remove (pg->peers[pg_iter].connect_peers_head,
4572                                    pg->peers[pg_iter].connect_peers_tail,
4573                                    conn_iter);
4574       GNUNET_free (conn_iter);
4575       /*remove_connections(pg, pg_iter, pg->peers[pg_iter].connect_peers_head->index, CONNECT, GNUNET_YES); */
4576     }
4577
4578     pg->peers[pg_iter].connect_peers_head =
4579         pg->peers[pg_iter].connect_peers_working_set_head;
4580     pg->peers[pg_iter].connect_peers_tail =
4581         pg->peers[pg_iter].connect_peers_working_set_tail;
4582     pg->peers[pg_iter].connect_peers_working_set_head = NULL;
4583     pg->peers[pg_iter].connect_peers_working_set_tail = NULL;
4584   }
4585 }
4586
4587 #if !OLD
4588 struct FindClosestContext
4589 {
4590     /**
4591      * The currently known closest peer.
4592      */
4593   struct GNUNET_TESTING_Daemon *closest;
4594
4595     /**
4596      * The info for the peer we are adding connections for.
4597      */
4598   struct PeerData *curr_peer;
4599
4600     /**
4601      * The distance (bits) between the current
4602      * peer and the currently known closest.
4603      */
4604   unsigned int closest_dist;
4605
4606     /**
4607      * The offset of the closest known peer in
4608      * the peer group.
4609      */
4610   unsigned int closest_num;
4611 };
4612
4613 /**
4614  * Iterator over hash map entries of the allowed
4615  * peer connections.  Find the closest, not already
4616  * connected peer and return it.
4617  *
4618  * @param cls closure (struct FindClosestContext)
4619  * @param key current key code (hash of offset in pg)
4620  * @param value value in the hash map - a GNUNET_TESTING_Daemon
4621  * @return GNUNET_YES if we should continue to
4622  *         iterate,
4623  *         GNUNET_NO if not.
4624  */
4625 static int
4626 find_closest_peers (void *cls, const GNUNET_HashCode * key, void *value)
4627 {
4628   struct FindClosestContext *closest_ctx = cls;
4629   struct GNUNET_TESTING_Daemon *daemon = value;
4630
4631   if (((closest_ctx->closest == NULL) ||
4632        (GNUNET_CRYPTO_hash_matching_bits
4633         (&daemon->id.hashPubKey,
4634          &closest_ctx->curr_peer->daemon->id.hashPubKey) >
4635         closest_ctx->closest_dist)) &&
4636       (GNUNET_YES !=
4637        GNUNET_CONTAINER_multihashmap_contains (closest_ctx->
4638                                                curr_peer->connect_peers, key)))
4639   {
4640     closest_ctx->closest_dist =
4641         GNUNET_CRYPTO_hash_matching_bits (&daemon->id.hashPubKey,
4642                                           &closest_ctx->curr_peer->daemon->
4643                                           id.hashPubKey);
4644     closest_ctx->closest = daemon;
4645     uid_from_hash (key, &closest_ctx->closest_num);
4646   }
4647   return GNUNET_YES;
4648 }
4649
4650 /**
4651  * From the set of connections possible, choose at num connections per
4652  * peer based on depth which are closest out of those allowed.  Guaranteed
4653  * to add num peers to connect to, provided there are that many peers
4654  * in the underlay topology to connect to.
4655  *
4656  * @param pg the peergroup we are dealing with
4657  * @param num how many connections at least should each peer have (if possible)?
4658  * @param proc processor to actually add the connections
4659  * @param list the peer list to use
4660  */
4661 void
4662 add_closest (struct GNUNET_TESTING_PeerGroup *pg, unsigned int num,
4663              GNUNET_TESTING_ConnectionProcessor proc, enum PeerLists list)
4664 {
4665 #if OLD
4666
4667 #else
4668   struct FindClosestContext closest_ctx;
4669 #endif
4670   uint32_t pg_iter;
4671   uint32_t i;
4672
4673   for (i = 0; i < num; i++)     /* Each time find a closest peer (from those available) */
4674   {
4675     for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4676     {
4677       closest_ctx.curr_peer = &pg->peers[pg_iter];
4678       closest_ctx.closest = NULL;
4679       closest_ctx.closest_dist = 0;
4680       closest_ctx.closest_num = 0;
4681       GNUNET_CONTAINER_multihashmap_iterate (pg->peers[pg_iter].allowed_peers,
4682                                              &find_closest_peers, &closest_ctx);
4683       if (closest_ctx.closest != NULL)
4684       {
4685         GNUNET_assert (closest_ctx.closest_num < pg->total);
4686         proc (pg, pg_iter, closest_ctx.closest_num, list);
4687       }
4688     }
4689   }
4690 }
4691 #endif
4692
4693 /**
4694  * From the set of connections possible, choose at least num connections per
4695  * peer based on depth first traversal of peer connections.  If DFS leaves
4696  * peers unconnected, ensure those peers get connections.
4697  *
4698  * @param pg the peergroup we are dealing with
4699  * @param num how many connections at least should each peer have (if possible)?
4700  */
4701 void
4702 perform_dfs (struct GNUNET_TESTING_PeerGroup *pg, unsigned int num)
4703 {
4704   uint32_t pg_iter;
4705   uint32_t dfs_count;
4706   uint32_t starting_peer;
4707   uint32_t least_connections;
4708   uint32_t random_connection;
4709
4710 #if OLD
4711   unsigned int temp_count;
4712   struct PeerConnection *peer_iter;
4713 #else
4714   struct DFSContext dfs_ctx;
4715   GNUNET_HashCode second_hash;
4716 #endif
4717
4718 #if OLD
4719   starting_peer = 0;
4720   dfs_count = 0;
4721   while ((count_workingset_connections (pg) < num * pg->total) &&
4722          (count_allowed_connections (pg) > 0))
4723   {
4724     if (dfs_count % pg->total == 0)     /* Restart the DFS at some weakly connected peer */
4725     {
4726       least_connections = -1;   /* Set to very high number */
4727       for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4728       {
4729         temp_count =
4730             count_connections (pg->
4731                                peers[pg_iter].connect_peers_working_set_head);
4732         if (temp_count < least_connections)
4733         {
4734           starting_peer = pg_iter;
4735           least_connections = temp_count;
4736         }
4737       }
4738     }
4739
4740     temp_count =
4741         count_connections (pg->peers[starting_peer].connect_peers_head);
4742     if (temp_count == 0)
4743       continue;                 /* FIXME: infinite loop? */
4744
4745     random_connection =
4746         GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, temp_count);
4747     temp_count = 0;
4748     peer_iter = pg->peers[starting_peer].connect_peers_head;
4749     while (temp_count < random_connection)
4750     {
4751       peer_iter = peer_iter->next;
4752       temp_count++;
4753     }
4754     GNUNET_assert (peer_iter != NULL);
4755     add_connections (pg, starting_peer, peer_iter->index, WORKING_SET,
4756                      GNUNET_NO);
4757     remove_connections (pg, starting_peer, peer_iter->index, CONNECT,
4758                         GNUNET_YES);
4759     starting_peer = peer_iter->index;
4760     dfs_count++;
4761   }
4762
4763 #else
4764   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4765   {
4766     pg->peers[pg_iter].connect_peers_working_set =
4767         GNUNET_CONTAINER_multihashmap_create (num);
4768   }
4769
4770   starting_peer = 0;
4771   dfs_count = 0;
4772   while ((count_workingset_connections (pg) < num * pg->total) &&
4773          (count_allowed_connections (pg) > 0))
4774   {
4775     if (dfs_count % pg->total == 0)     /* Restart the DFS at some weakly connected peer */
4776     {
4777       least_connections = -1;   /* Set to very high number */
4778       for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4779       {
4780         if (GNUNET_CONTAINER_multihashmap_size
4781             (pg->peers[pg_iter].connect_peers_working_set) < least_connections)
4782         {
4783           starting_peer = pg_iter;
4784           least_connections =
4785               GNUNET_CONTAINER_multihashmap_size (pg->
4786                                                   peers
4787                                                   [pg_iter].connect_peers_working_set);
4788         }
4789       }
4790     }
4791
4792     if (GNUNET_CONTAINER_multihashmap_size (pg->peers[starting_peer].connect_peers) == 0)       /* Ensure there is at least one peer left to connect! */
4793     {
4794       dfs_count = 0;
4795       continue;
4796     }
4797
4798     /* Choose a random peer from the chosen peers set of connections to add */
4799     dfs_ctx.chosen =
4800         GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
4801                                   GNUNET_CONTAINER_multihashmap_size (pg->peers
4802                                                                       [starting_peer].connect_peers));
4803     dfs_ctx.first_uid = starting_peer;
4804     dfs_ctx.first = &pg->peers[starting_peer];
4805     dfs_ctx.pg = pg;
4806     dfs_ctx.current = 0;
4807
4808     GNUNET_CONTAINER_multihashmap_iterate (pg->
4809                                            peers[starting_peer].connect_peers,
4810                                            &dfs_connect_iterator, &dfs_ctx);
4811     /* Remove the second from the first, since we will be continuing the search and may encounter the first peer again! */
4812     hash_from_uid (dfs_ctx.second_uid, &second_hash);
4813     GNUNET_assert (GNUNET_YES ==
4814                    GNUNET_CONTAINER_multihashmap_remove (pg->peers
4815                                                          [starting_peer].connect_peers,
4816                                                          &second_hash,
4817                                                          pg->
4818                                                          peers
4819                                                          [dfs_ctx.second_uid].daemon));
4820     starting_peer = dfs_ctx.second_uid;
4821   }
4822
4823   for (pg_iter = 0; pg_iter < pg->total; pg_iter++)
4824   {
4825     /* Remove the "old" connections */
4826     GNUNET_CONTAINER_multihashmap_destroy (pg->peers[pg_iter].connect_peers);
4827     /* And replace with the working set */
4828     pg->peers[pg_iter].connect_peers =
4829         pg->peers[pg_iter].connect_peers_working_set;
4830   }
4831 #endif
4832 }
4833
4834 /**
4835  * Internal callback for topology information for a particular peer.
4836  */
4837 static void
4838 internal_topology_callback (void *cls, const struct GNUNET_PeerIdentity *peer,
4839                             const struct GNUNET_ATS_Information *atsi,
4840                             unsigned int atsi_count)
4841 {
4842   struct CoreContext *core_ctx = cls;
4843   struct TopologyIterateContext *iter_ctx = core_ctx->iter_context;
4844
4845   if (peer == NULL)             /* Either finished, or something went wrong */
4846   {
4847     iter_ctx->completed++;
4848     iter_ctx->connected--;
4849     /* One core context allocated per iteration, must free! */
4850     GNUNET_free (core_ctx);
4851   }
4852   else
4853   {
4854     iter_ctx->topology_cb (iter_ctx->cls, &core_ctx->daemon->id, peer, NULL);
4855   }
4856
4857   if (iter_ctx->completed == iter_ctx->total)
4858   {
4859     iter_ctx->topology_cb (iter_ctx->cls, NULL, NULL, NULL);
4860     /* Once all are done, free the iteration context */
4861     GNUNET_free (iter_ctx);
4862   }
4863 }
4864
4865 /**
4866  * Check running topology iteration tasks, if below max start a new one, otherwise
4867  * schedule for some time in the future.
4868  */
4869 static void
4870 schedule_get_topology (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
4871 {
4872   struct CoreContext *core_context = cls;
4873   struct TopologyIterateContext *topology_context =
4874       (struct TopologyIterateContext *) core_context->iter_context;
4875   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
4876     return;
4877
4878   if (topology_context->connected >
4879       topology_context->pg->max_outstanding_connections)
4880   {
4881 #if VERBOSE_TESTING > 2
4882     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4883                 _
4884                 ("Delaying connect, we have too many outstanding connections!\n"));
4885 #endif
4886     GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
4887                                   (GNUNET_TIME_UNIT_MILLISECONDS, 100),
4888                                   &schedule_get_topology, core_context);
4889   }
4890   else
4891   {
4892 #if VERBOSE_TESTING > 2
4893     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
4894                 _("Creating connection, outstanding_connections is %d\n"),
4895                 outstanding_connects);
4896 #endif
4897     topology_context->connected++;
4898
4899     if (GNUNET_OK !=
4900         GNUNET_CORE_iterate_peers (core_context->daemon->cfg,
4901                                    &internal_topology_callback, core_context))
4902     {
4903       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Topology iteration failed.\n");
4904       internal_topology_callback (core_context, NULL, NULL, 0);
4905     }
4906   }
4907 }
4908
4909 /**
4910  * Iterate over all (running) peers in the peer group, retrieve
4911  * all connections that each currently has.
4912  */
4913 void
4914 GNUNET_TESTING_get_topology (struct GNUNET_TESTING_PeerGroup *pg,
4915                              GNUNET_TESTING_NotifyTopology cb, void *cls)
4916 {
4917   struct TopologyIterateContext *topology_context;
4918   struct CoreContext *core_ctx;
4919   unsigned int i;
4920   unsigned int total_count;
4921
4922   /* Allocate a single topology iteration context */
4923   topology_context = GNUNET_malloc (sizeof (struct TopologyIterateContext));
4924   topology_context->topology_cb = cb;
4925   topology_context->cls = cls;
4926   topology_context->pg = pg;
4927   total_count = 0;
4928   for (i = 0; i < pg->total; i++)
4929   {
4930     if (pg->peers[i].daemon->running == GNUNET_YES)
4931     {
4932       /* Allocate one core context per core we need to connect to */
4933       core_ctx = GNUNET_malloc (sizeof (struct CoreContext));
4934       core_ctx->daemon = pg->peers[i].daemon;
4935       /* Set back pointer to topology iteration context */
4936       core_ctx->iter_context = topology_context;
4937       GNUNET_SCHEDULER_add_now (&schedule_get_topology, core_ctx);
4938       total_count++;
4939     }
4940   }
4941   if (total_count == 0)
4942   {
4943     cb (cls, NULL, NULL, "Cannot iterate over topology, no running peers!");
4944     GNUNET_free (topology_context);
4945   }
4946   else
4947     topology_context->total = total_count;
4948   return;
4949 }
4950
4951 /**
4952  * Callback function to process statistic values.
4953  * This handler is here only really to insert a peer
4954  * identity (or daemon) so the statistics can be uniquely
4955  * tied to a single running peer.
4956  *
4957  * @param cls closure
4958  * @param subsystem name of subsystem that created the statistic
4959  * @param name the name of the datum
4960  * @param value the current value
4961  * @param is_persistent GNUNET_YES if the value is persistent, GNUNET_NO if not
4962  * @return GNUNET_OK to continue, GNUNET_SYSERR to abort iteration
4963  */
4964 static int
4965 internal_stats_callback (void *cls, const char *subsystem, const char *name,
4966                          uint64_t value, int is_persistent)
4967 {
4968   struct StatsCoreContext *core_context = cls;
4969   struct StatsIterateContext *stats_context =
4970       (struct StatsIterateContext *) core_context->iter_context;
4971
4972   return stats_context->proc (stats_context->cls, &core_context->daemon->id,
4973                               subsystem, name, value, is_persistent);
4974 }
4975
4976 /**
4977  * Internal continuation call for statistics iteration.
4978  *
4979  * @param cls closure, the CoreContext for this iteration
4980  * @param success whether or not the statistics iterations
4981  *        was canceled or not (we don't care)
4982  */
4983 static void
4984 internal_stats_cont (void *cls, int success)
4985 {
4986   struct StatsCoreContext *core_context = cls;
4987   struct StatsIterateContext *stats_context =
4988       (struct StatsIterateContext *) core_context->iter_context;
4989
4990   stats_context->connected--;
4991   stats_context->completed++;
4992
4993   if (stats_context->completed == stats_context->total)
4994   {
4995     stats_context->cont (stats_context->cls, GNUNET_YES);
4996     GNUNET_free (stats_context);
4997   }
4998
4999   if (core_context->stats_handle != NULL)
5000     GNUNET_STATISTICS_destroy (core_context->stats_handle, GNUNET_NO);
5001
5002   GNUNET_free (core_context);
5003 }
5004
5005 /**
5006  * Check running topology iteration tasks, if below max start a new one, otherwise
5007  * schedule for some time in the future.
5008  */
5009 static void
5010 schedule_get_statistics (void *cls,
5011                          const struct GNUNET_SCHEDULER_TaskContext *tc)
5012 {
5013   struct StatsCoreContext *core_context = cls;
5014   struct StatsIterateContext *stats_context =
5015       (struct StatsIterateContext *) core_context->iter_context;
5016
5017   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
5018     return;
5019
5020   if (stats_context->connected > stats_context->pg->max_outstanding_connections)
5021   {
5022 #if VERBOSE_TESTING > 2
5023     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5024                 _
5025                 ("Delaying connect, we have too many outstanding connections!\n"));
5026 #endif
5027     GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
5028                                   (GNUNET_TIME_UNIT_MILLISECONDS, 100),
5029                                   &schedule_get_statistics, core_context);
5030   }
5031   else
5032   {
5033 #if VERBOSE_TESTING > 2
5034     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5035                 _("Creating connection, outstanding_connections is %d\n"),
5036                 outstanding_connects);
5037 #endif
5038
5039     stats_context->connected++;
5040     core_context->stats_handle =
5041         GNUNET_STATISTICS_create ("testing", core_context->daemon->cfg);
5042     if (core_context->stats_handle == NULL)
5043     {
5044       internal_stats_cont (core_context, GNUNET_NO);
5045       return;
5046     }
5047
5048     core_context->stats_get_handle =
5049         GNUNET_STATISTICS_get (core_context->stats_handle, NULL, NULL,
5050                                GNUNET_TIME_relative_get_forever (),
5051                                &internal_stats_cont, &internal_stats_callback,
5052                                core_context);
5053     if (core_context->stats_get_handle == NULL)
5054       internal_stats_cont (core_context, GNUNET_NO);
5055
5056   }
5057 }
5058
5059 struct DuplicateStats
5060 {
5061   /**
5062    * Next item in the list
5063    */
5064   struct DuplicateStats *next;
5065
5066   /**
5067    * Nasty string, concatenation of relevant information.
5068    */
5069   char *unique_string;
5070 };
5071
5072 /**
5073  * Check whether the combination of port/host/unix domain socket
5074  * already exists in the list of peers being checked for statistics.
5075  *
5076  * @param pg the peergroup in question
5077  * @param specific_peer the peer we're concerned with
5078  * @param stats_list the list to return to the caller
5079  *
5080  * @return GNUNET_YES if the statistics instance has been seen already,
5081  *         GNUNET_NO if not (and we may have added it to the list)
5082  */
5083 static int
5084 stats_check_existing (struct GNUNET_TESTING_PeerGroup *pg,
5085                       struct PeerData *specific_peer,
5086                       struct DuplicateStats **stats_list)
5087 {
5088   struct DuplicateStats *pos;
5089   char *unix_domain_socket;
5090   unsigned long long port;
5091   char *to_match;
5092
5093   if (GNUNET_YES !=
5094       GNUNET_CONFIGURATION_get_value_yesno (pg->cfg, "testing",
5095                                             "single_statistics_per_host"))
5096     return GNUNET_NO;           /* Each peer has its own statistics instance, do nothing! */
5097
5098   pos = *stats_list;
5099   if (GNUNET_OK !=
5100       GNUNET_CONFIGURATION_get_value_string (specific_peer->cfg, "statistics",
5101                                              "unixpath", &unix_domain_socket))
5102     return GNUNET_NO;
5103
5104   if (GNUNET_OK !=
5105       GNUNET_CONFIGURATION_get_value_number (specific_peer->cfg, "statistics",
5106                                              "port", &port))
5107   {
5108     GNUNET_free (unix_domain_socket);
5109     return GNUNET_NO;
5110   }
5111
5112   if (specific_peer->daemon->hostname != NULL)
5113     GNUNET_asprintf (&to_match, "%s%s%llu", specific_peer->daemon->hostname,
5114                      unix_domain_socket, port);
5115   else
5116     GNUNET_asprintf (&to_match, "%s%llu", unix_domain_socket, port);
5117
5118   while (pos != NULL)
5119   {
5120     if (0 == strcmp (to_match, pos->unique_string))
5121     {
5122       GNUNET_free (unix_domain_socket);
5123       GNUNET_free (to_match);
5124       return GNUNET_YES;
5125     }
5126     pos = pos->next;
5127   }
5128   pos = GNUNET_malloc (sizeof (struct DuplicateStats));
5129   pos->unique_string = to_match;
5130   pos->next = *stats_list;
5131   *stats_list = pos;
5132   GNUNET_free (unix_domain_socket);
5133   return GNUNET_NO;
5134 }
5135
5136 /**
5137  * Iterate over all (running) peers in the peer group, retrieve
5138  * all statistics from each.
5139  *
5140  * @param pg the peergroup to iterate statistics of
5141  * @param cont continuation to call once all stats have been retrieved
5142  * @param proc processing function for each statistic from each peer
5143  * @param cls closure to pass to proc
5144  *
5145  */
5146 void
5147 GNUNET_TESTING_get_statistics (struct GNUNET_TESTING_PeerGroup *pg,
5148                                GNUNET_STATISTICS_Callback cont,
5149                                GNUNET_TESTING_STATISTICS_Iterator proc,
5150                                void *cls)
5151 {
5152   struct StatsIterateContext *stats_context;
5153   struct StatsCoreContext *core_ctx;
5154   unsigned int i;
5155   unsigned int total_count;
5156   struct DuplicateStats *stats_list;
5157   struct DuplicateStats *pos;
5158
5159   stats_list = NULL;
5160
5161   /* Allocate a single stats iteration context */
5162   stats_context = GNUNET_malloc (sizeof (struct StatsIterateContext));
5163   stats_context->cont = cont;
5164   stats_context->proc = proc;
5165   stats_context->cls = cls;
5166   stats_context->pg = pg;
5167   total_count = 0;
5168
5169   for (i = 0; i < pg->total; i++)
5170   {
5171     if ((pg->peers[i].daemon->running == GNUNET_YES) &&
5172         (GNUNET_NO == stats_check_existing (pg, &pg->peers[i], &stats_list)))
5173     {
5174       /* Allocate one core context per core we need to connect to */
5175       core_ctx = GNUNET_malloc (sizeof (struct StatsCoreContext));
5176       core_ctx->daemon = pg->peers[i].daemon;
5177       /* Set back pointer to topology iteration context */
5178       core_ctx->iter_context = stats_context;
5179       GNUNET_SCHEDULER_add_now (&schedule_get_statistics, core_ctx);
5180       total_count++;
5181     }
5182   }
5183
5184   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
5185               "Retrieving stats from %u total instances.\n", total_count);
5186   stats_context->total = total_count;
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 (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 (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 (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 (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 */