move GNUNET_TRANSPORT_ATS_ to GNUNET_ATS_
[oweals/gnunet.git] / src / testing / testing_peergroup.c
1 /*
2  This file is part of GNUnet
3  (C) 2008-2011 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_peergroup.c
23  * @brief API implementation for easy peer group creation
24  * @author Nathan Evans
25  * @author Christian Grothoff
26  *
27  */
28 #include "platform.h"
29 #include "gnunet_constants.h"
30 #include "gnunet_arm_service.h"
31 #include "gnunet_testing_lib.h"
32 #include "gnunet_core_service.h"
33 #include "gnunet_disk_lib.h"
34
35 /** Globals **/
36 #define DEFAULT_CONNECT_TIMEOUT GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 30)
37
38 #define DEFAULT_CONNECT_ATTEMPTS 2
39
40 /** Struct definitions **/
41
42 struct PeerGroupStartupContext
43 {
44   struct GNUNET_TESTING_PeerGroup *pg;
45   const struct GNUNET_CONFIGURATION_Handle *cfg;
46   unsigned int total;
47   unsigned int peers_left;
48   unsigned long long max_concurrent_connections;
49   unsigned long long connect_attempts;
50   unsigned long long max_concurrent_ssh;
51   struct GNUNET_TIME_Absolute timeout;
52   GNUNET_TESTING_NotifyConnection connect_cb;
53   GNUNET_TESTING_NotifyCompletion peergroup_cb;
54
55   /**
56    * Closure for all peergroup callbacks.
57    */
58   void *cls;
59
60   const struct GNUNET_TESTING_Host *hostnames;
61   enum GNUNET_TESTING_Topology topology;
62
63   float topology_percentage;
64
65   float topology_probability;
66
67   enum GNUNET_TESTING_Topology restrict_topology;
68   char *restrict_transports;
69   enum GNUNET_TESTING_Topology connect_topology;
70   enum GNUNET_TESTING_TopologyOption connect_topology_option;
71   double connect_topology_option_modifier;
72   int verbose;
73
74   struct ProgressMeter *hostkey_meter;
75   struct ProgressMeter *peer_start_meter;
76   struct ProgressMeter *connect_meter;
77
78   /**
79    * Task used to kill the peergroup.
80    */
81   GNUNET_SCHEDULER_TaskIdentifier die_task;
82
83   char *fail_reason;
84
85   /**
86    * Variable used to store the number of connections we should wait for.
87    */
88   unsigned int expected_connections;
89
90   /**
91    * Time when the connecting peers was started.
92    */
93   struct GNUNET_TIME_Absolute connect_start_time;
94
95   /**
96    * The total number of connections that have been created so far.
97    */
98   unsigned int total_connections;
99
100   /**
101    * The total number of connections that have failed so far.
102    */
103   unsigned int failed_connections;
104
105   /**
106    * File handle to write out topology in dot format.
107    */
108   struct GNUNET_DISK_FileHandle *topology_output_file;
109 };
110
111 struct TopologyOutputContext
112 {
113   struct GNUNET_DISK_FileHandle *file;
114   GNUNET_TESTING_NotifyCompletion notify_cb;
115   void *notify_cb_cls;
116 };
117
118 /**
119  * Simple struct to keep track of progress, and print a
120  * percentage meter for long running tasks.
121  */
122 struct ProgressMeter
123 {
124   /**
125    * Total number of tasks to complete.
126    */
127   unsigned int total;
128
129   /**
130    * Print percentage done after modnum tasks.
131    */
132   unsigned int modnum;
133
134   /**
135    * Print a . each dotnum tasks.
136    */
137   unsigned int dotnum;
138
139   /**
140    * Total number completed thus far.
141    */
142   unsigned int completed;
143
144   /**
145    * Whether or not to print.
146    */
147   int print;
148
149   /**
150    * Startup string for progress meter.
151    */
152   char *startup_string;
153 };
154
155
156 /** Utility functions **/
157
158 /**
159  * Create a meter to keep track of the progress of some task.
160  *
161  * @param total the total number of items to complete
162  * @param start_string a string to prefix the meter with (if printing)
163  * @param print GNUNET_YES to print the meter, GNUNET_NO to count
164  *              internally only
165  *
166  * @return the progress meter
167  */
168 static struct ProgressMeter *
169 create_meter (unsigned int total, char *start_string, int print)
170 {
171   struct ProgressMeter *ret;
172
173   ret = GNUNET_malloc (sizeof (struct ProgressMeter));
174   ret->print = print;
175   ret->total = total;
176   ret->modnum = total / 4;
177   ret->dotnum = (total / 50) + 1;
178   if (start_string != NULL)
179     ret->startup_string = GNUNET_strdup (start_string);
180   else
181     ret->startup_string = GNUNET_strdup ("");
182
183   return ret;
184 }
185
186 /**
187  * Update progress meter (increment by one).
188  *
189  * @param meter the meter to update and print info for
190  *
191  * @return GNUNET_YES if called the total requested,
192  *         GNUNET_NO if more items expected
193  */
194 static int
195 update_meter (struct ProgressMeter *meter)
196 {
197   if (meter->print == GNUNET_YES)
198   {
199     if (meter->completed % meter->modnum == 0)
200     {
201       if (meter->completed == 0)
202       {
203         fprintf (stdout, "%sProgress: [0%%", meter->startup_string);
204       }
205       else
206         fprintf (stdout, "%d%%",
207                  (int) (((float) meter->completed / meter->total) * 100));
208     }
209     else if (meter->completed % meter->dotnum == 0)
210       fprintf (stdout, ".");
211
212     if (meter->completed + 1 == meter->total)
213       fprintf (stdout, "%d%%]\n", 100);
214     fflush (stdout);
215   }
216   meter->completed++;
217
218   if (meter->completed == meter->total)
219     return GNUNET_YES;
220   return GNUNET_NO;
221 }
222
223 /**
224  * Reset progress meter.
225  *
226  * @param meter the meter to reset
227  *
228  * @return GNUNET_YES if meter reset,
229  *         GNUNET_SYSERR on error
230  */
231 static int
232 reset_meter (struct ProgressMeter *meter)
233 {
234   if (meter == NULL)
235     return GNUNET_SYSERR;
236
237   meter->completed = 0;
238   return GNUNET_YES;
239 }
240
241 /**
242  * Release resources for meter
243  *
244  * @param meter the meter to free
245  */
246 static void
247 free_meter (struct ProgressMeter *meter)
248 {
249   GNUNET_free_non_null (meter->startup_string);
250   GNUNET_free (meter);
251 }
252
253
254 /** Functions for creating, starting and connecting the peergroup **/
255
256 /**
257  * Check whether peers successfully shut down.
258  */
259 static void
260 internal_shutdown_callback (void *cls, const char *emsg)
261 {
262   struct PeerGroupStartupContext *pg_start_ctx = cls;
263
264   if (emsg != NULL)
265     pg_start_ctx->peergroup_cb (pg_start_ctx->cls, emsg);
266   else
267     pg_start_ctx->peergroup_cb (pg_start_ctx->cls, pg_start_ctx->fail_reason);
268 }
269
270 /**
271  * Check if the get_handle is being used, if so stop the request.  Either
272  * way, schedule the end_badly_cont function which actually shuts down the
273  * test.
274  */
275 static void
276 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
277 {
278   struct PeerGroupStartupContext *pg_start_ctx = cls;
279
280   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
281               "Failing peer group startup with error: `%s'!\n",
282               pg_start_ctx->fail_reason);
283
284   GNUNET_TESTING_daemons_stop (pg_start_ctx->pg,
285                                GNUNET_TIME_absolute_get_remaining
286                                (pg_start_ctx->timeout),
287                                &internal_shutdown_callback, pg_start_ctx);
288
289   if (pg_start_ctx->hostkey_meter != NULL)
290     free_meter (pg_start_ctx->hostkey_meter);
291   if (pg_start_ctx->peer_start_meter != NULL)
292     free_meter (pg_start_ctx->peer_start_meter);
293   if (pg_start_ctx->connect_meter != NULL)
294     free_meter (pg_start_ctx->connect_meter);
295 }
296
297 /**
298  * This function is called whenever a connection attempt is finished between two of
299  * the started peers (started with GNUNET_TESTING_daemons_start).  The total
300  * number of times this function is called should equal the number returned
301  * from the GNUNET_TESTING_connect_topology call.
302  *
303  * The emsg variable is NULL on success (peers connected), and non-NULL on
304  * failure (peers failed to connect).
305  */
306 static void
307 internal_topology_callback (void *cls, const struct GNUNET_PeerIdentity *first,
308                             const struct GNUNET_PeerIdentity *second,
309                             uint32_t distance,
310                             const struct GNUNET_CONFIGURATION_Handle *first_cfg,
311                             const struct GNUNET_CONFIGURATION_Handle
312                             *second_cfg,
313                             struct GNUNET_TESTING_Daemon *first_daemon,
314                             struct GNUNET_TESTING_Daemon *second_daemon,
315                             const char *emsg)
316 {
317   struct PeerGroupStartupContext *pg_start_ctx = cls;
318   char *temp_str;
319   char *second_str;
320   int temp;
321
322 #if TIMING
323   unsigned long long duration;
324   unsigned long long total_duration;
325   unsigned int new_connections;
326   unsigned int new_failed_connections;
327   double conns_per_sec_recent;
328   double conns_per_sec_total;
329   double failed_conns_per_sec_recent;
330   double failed_conns_per_sec_total;
331 #endif
332
333 #if TIMING
334   if (GNUNET_TIME_absolute_get_difference
335       (connect_last_time,
336        GNUNET_TIME_absolute_get ()).rel_value >
337       GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS,
338                                      CONN_UPDATE_DURATION).rel_value)
339   {
340     /* Get number of new connections */
341     new_connections = total_connections - previous_connections;
342
343     /* Get number of new FAILED connections */
344     new_failed_connections = failed_connections - previous_failed_connections;
345
346     /* Get duration in seconds */
347     duration =
348         GNUNET_TIME_absolute_get_difference (connect_last_time,
349                                              GNUNET_TIME_absolute_get
350                                              ()).rel_value / 1000;
351     total_duration =
352         GNUNET_TIME_absolute_get_difference (connect_start_time,
353                                              GNUNET_TIME_absolute_get
354                                              ()).rel_value / 1000;
355
356     failed_conns_per_sec_recent = (double) new_failed_connections / duration;
357     failed_conns_per_sec_total = (double) failed_connections / total_duration;
358     conns_per_sec_recent = (double) new_connections / duration;
359     conns_per_sec_total = (double) total_connections / total_duration;
360     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
361                 "Recent: %.2f/s, Total: %.2f/s, Recent failed: %.2f/s, total failed %.2f/s\n",
362                 conns_per_sec_recent, CONN_UPDATE_DURATION, conns_per_sec_total,
363                 failed_conns_per_sec_recent, failed_conns_per_sec_total);
364     connect_last_time = GNUNET_TIME_absolute_get ();
365     previous_connections = total_connections;
366     previous_failed_connections = failed_connections;
367     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
368                 "have %u total_connections, %u failed\n", total_connections,
369                 failed_connections);
370   }
371 #endif
372
373
374   if (emsg == NULL)
375   {
376     pg_start_ctx->total_connections++;
377 #if VERBOSE > 1
378     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
379                 "connected peer %s to peer %s, distance %u\n",
380                 first_daemon->shortname, second_daemon->shortname, distance);
381 #endif
382     if (pg_start_ctx->topology_output_file != NULL)
383     {
384       second_str = GNUNET_strdup (GNUNET_i2s (second));
385       temp =
386           GNUNET_asprintf (&temp_str, "\t\"%s\" -- \"%s\"\n",
387                            GNUNET_i2s (first), second_str);
388       GNUNET_free (second_str);
389       if (temp > 0)
390         GNUNET_DISK_file_write (pg_start_ctx->topology_output_file, temp_str,
391                                 temp);
392       GNUNET_free (temp_str);
393     }
394   }
395   else
396   {
397     pg_start_ctx->failed_connections++;
398 #if VERBOSE
399     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
400                 "Failed to connect peer %s to peer %s with error :\n%s\n",
401                 first_daemon->shortname, second_daemon->shortname, emsg);
402
403     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
404                 "Failed to connect peer %s to peer %s with error :\n%s\n",
405                 first_daemon->shortname, second_daemon->shortname, emsg);
406 #endif
407   }
408
409   GNUNET_assert (pg_start_ctx->connect_meter != NULL);
410   if (pg_start_ctx->connect_cb != NULL)
411     pg_start_ctx->connect_cb (pg_start_ctx->cls, first, second, distance,
412                               first_cfg, second_cfg, first_daemon,
413                               second_daemon, emsg);
414   if (GNUNET_YES == update_meter (pg_start_ctx->connect_meter))
415   {
416 #if VERBOSE
417     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
418                 "Created %d total connections, which is our target number!  Starting next phase of testing.\n",
419                 total_connections);
420 #endif
421
422 #if TIMING
423     total_duration =
424         GNUNET_TIME_absolute_get_difference (connect_start_time,
425                                              GNUNET_TIME_absolute_get
426                                              ()).rel_value / 1000;
427     failed_conns_per_sec_total = (double) failed_connections / total_duration;
428     conns_per_sec_total = (double) total_connections / total_duration;
429     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
430                 "Overall connection info --- Total: %u, Total Failed %u/s\n",
431                 total_connections, failed_connections);
432     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
433                 "Overall connection info --- Total: %.2f/s, Total Failed %.2f/s\n",
434                 conns_per_sec_total, failed_conns_per_sec_total);
435 #endif
436
437     GNUNET_assert (pg_start_ctx->die_task != GNUNET_SCHEDULER_NO_TASK);
438     GNUNET_SCHEDULER_cancel (pg_start_ctx->die_task);
439
440     /* Call final callback, signifying that the peer group has been started and connected */
441     if (pg_start_ctx->peergroup_cb != NULL)
442       pg_start_ctx->peergroup_cb (pg_start_ctx->cls, NULL);
443
444     if (pg_start_ctx->topology_output_file != NULL)
445     {
446       temp = GNUNET_asprintf (&temp_str, "}\n");
447       if (temp > 0)
448         GNUNET_DISK_file_write (pg_start_ctx->topology_output_file, temp_str,
449                                 temp);
450       GNUNET_free (temp_str);
451       GNUNET_DISK_file_close (pg_start_ctx->topology_output_file);
452     }
453   }
454 }
455
456 static void
457 internal_peers_started_callback (void *cls,
458                                  const struct GNUNET_PeerIdentity *id,
459                                  const struct GNUNET_CONFIGURATION_Handle *cfg,
460                                  struct GNUNET_TESTING_Daemon *d,
461                                  const char *emsg)
462 {
463   struct PeerGroupStartupContext *pg_start_ctx = cls;
464
465   if (emsg != NULL)
466   {
467     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
468                 "Failed to start daemon with error: `%s'\n", emsg);
469     return;
470   }
471   GNUNET_assert (id != NULL);
472
473 #if VERBOSE > 1
474   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Started daemon %llu out of %llu\n",
475               (num_peers - peers_left) + 1, num_peers);
476 #endif
477
478   pg_start_ctx->peers_left--;
479
480   if (GNUNET_YES == update_meter (pg_start_ctx->peer_start_meter))
481   {
482 #if VERBOSE
483     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
484                 "All %d daemons started, now connecting peers!\n", num_peers);
485 #endif
486     GNUNET_assert (pg_start_ctx->die_task != GNUNET_SCHEDULER_NO_TASK);
487     GNUNET_SCHEDULER_cancel (pg_start_ctx->die_task);
488
489     pg_start_ctx->expected_connections = UINT_MAX;
490     if ((pg_start_ctx->pg != NULL) && (pg_start_ctx->peers_left == 0))
491     {
492       pg_start_ctx->connect_start_time = GNUNET_TIME_absolute_get ();
493       pg_start_ctx->expected_connections =
494           GNUNET_TESTING_connect_topology (pg_start_ctx->pg,
495                                            pg_start_ctx->connect_topology,
496                                            pg_start_ctx->connect_topology_option,
497                                            pg_start_ctx->connect_topology_option_modifier,
498                                            DEFAULT_CONNECT_TIMEOUT,
499                                            pg_start_ctx->connect_attempts, NULL,
500                                            NULL);
501
502       pg_start_ctx->connect_meter =
503           create_meter (pg_start_ctx->expected_connections, "Peer connection ",
504                         pg_start_ctx->verbose);
505       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Have %d expected connections\n",
506                   pg_start_ctx->expected_connections);
507     }
508
509     if (pg_start_ctx->expected_connections == 0)
510     {
511       GNUNET_free_non_null (pg_start_ctx->fail_reason);
512       pg_start_ctx->fail_reason =
513           GNUNET_strdup ("from connect topology (bad return)");
514       pg_start_ctx->die_task =
515           GNUNET_SCHEDULER_add_now (&end_badly, pg_start_ctx);
516     }
517
518     GNUNET_free_non_null (pg_start_ctx->fail_reason);
519     pg_start_ctx->fail_reason =
520         GNUNET_strdup ("from connect topology (timeout)");
521     pg_start_ctx->die_task =
522         GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_absolute_get_remaining
523                                       (pg_start_ctx->timeout), &end_badly,
524                                       pg_start_ctx);
525   }
526 }
527
528 /**
529  * Callback indicating that the hostkey was created for a peer.
530  *
531  * @param cls NULL
532  * @param id the peer identity
533  * @param d the daemon handle (pretty useless at this point, remove?)
534  * @param emsg non-null on failure
535  */
536 static void
537 internal_hostkey_callback (void *cls, const struct GNUNET_PeerIdentity *id,
538                            struct GNUNET_TESTING_Daemon *d, const char *emsg)
539 {
540   struct PeerGroupStartupContext *pg_start_ctx = cls;
541   unsigned int create_expected_connections;
542
543   if (emsg != NULL)
544   {
545     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
546                 "Hostkey callback received error: %s\n", emsg);
547   }
548
549 #if VERBOSE > 1
550   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
551               "Hostkey (%d/%d) created for peer `%s'\n", num_peers - peers_left,
552               num_peers, GNUNET_i2s (id));
553 #endif
554
555   pg_start_ctx->peers_left--;
556   if (GNUNET_YES == update_meter (pg_start_ctx->hostkey_meter))
557   {
558     GNUNET_SCHEDULER_cancel (pg_start_ctx->die_task);
559     /* Set up task in case topology creation doesn't finish
560      * within a reasonable amount of time */
561     pg_start_ctx->die_task =
562         GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_absolute_get_remaining
563                                       (pg_start_ctx->timeout), &end_badly,
564                                       "from create_topology");
565     pg_start_ctx->peers_left = pg_start_ctx->total;     /* Reset counter */
566     create_expected_connections =
567         GNUNET_TESTING_create_topology (pg_start_ctx->pg,
568                                         pg_start_ctx->topology,
569                                         pg_start_ctx->restrict_topology,
570                                         pg_start_ctx->restrict_transports);
571     if (create_expected_connections > 0)
572     {
573       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
574                   "Topology set up, have %u expected connections, now starting peers!\n",
575                   create_expected_connections);
576       GNUNET_TESTING_daemons_continue_startup (pg_start_ctx->pg);
577     }
578     else
579     {
580       GNUNET_SCHEDULER_cancel (pg_start_ctx->die_task);
581       pg_start_ctx->die_task =
582           GNUNET_SCHEDULER_add_now (&end_badly,
583                                     "from create topology (bad return)");
584     }
585
586     GNUNET_SCHEDULER_cancel (pg_start_ctx->die_task);
587     pg_start_ctx->die_task =
588         GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_absolute_get_remaining
589                                       (pg_start_ctx->timeout), &end_badly,
590                                       "from continue startup (timeout)");
591   }
592 }
593
594
595 /**
596  * Prototype of a callback function indicating that two peers
597  * are currently connected.
598  *
599  * @param cls closure
600  * @param first peer id for first daemon
601  * @param second peer id for the second daemon
602  * @param emsg error message (NULL on success)
603  */
604 void
605 write_topology_cb (void *cls, const struct GNUNET_PeerIdentity *first,
606                    const struct GNUNET_PeerIdentity *second, const char *emsg)
607 {
608   struct TopologyOutputContext *topo_ctx;
609   int temp;
610   char *temp_str;
611   char *temp_pid2;
612
613   topo_ctx = (struct TopologyOutputContext *) cls;
614   GNUNET_assert (topo_ctx->file != NULL);
615   if ((emsg == NULL) && (first != NULL) && (second != NULL))
616   {
617     GNUNET_assert (first != NULL);
618     GNUNET_assert (second != NULL);
619     temp_pid2 = GNUNET_strdup (GNUNET_i2s (second));
620     temp =
621         GNUNET_asprintf (&temp_str, "\t\"%s\" -- \"%s\"\n", GNUNET_i2s (first),
622                          temp_pid2);
623     GNUNET_free (temp_pid2);
624     GNUNET_DISK_file_write (topo_ctx->file, temp_str, temp);
625   }
626   else if ((emsg == NULL) && (first == NULL) && (second == NULL))
627   {
628     temp = GNUNET_asprintf (&temp_str, "}\n");
629     GNUNET_DISK_file_write (topo_ctx->file, temp_str, temp);
630     GNUNET_DISK_file_close (topo_ctx->file);
631     topo_ctx->notify_cb (topo_ctx->notify_cb_cls, NULL);
632     GNUNET_free (topo_ctx);
633   }
634   else
635   {
636     temp = GNUNET_asprintf (&temp_str, "}\n");
637     GNUNET_DISK_file_write (topo_ctx->file, temp_str, temp);
638     GNUNET_DISK_file_close (topo_ctx->file);
639     topo_ctx->notify_cb (topo_ctx->notify_cb_cls, emsg);
640     GNUNET_free (topo_ctx);
641   }
642 }
643
644 /**
645  * Print current topology to a graphviz readable file.
646  *
647  * @param pg a currently running peergroup to print to file
648  * @param output_filename the file to write the topology to
649  * @param notify_cb callback to call upon completion or failure
650  * @param notify_cb_cls closure for notify_cb
651  *
652  */
653 void
654 GNUNET_TESTING_peergroup_topology_to_file (struct GNUNET_TESTING_PeerGroup *pg,
655                                            const char *output_filename,
656                                            GNUNET_TESTING_NotifyCompletion
657                                            notify_cb, void *notify_cb_cls)
658 {
659   struct TopologyOutputContext *topo_ctx;
660   int temp;
661   char *temp_str;
662
663   topo_ctx = GNUNET_malloc (sizeof (struct TopologyOutputContext));
664
665   topo_ctx->notify_cb = notify_cb;
666   topo_ctx->notify_cb_cls = notify_cb_cls;
667   topo_ctx->file =
668       GNUNET_DISK_file_open (output_filename,
669                              GNUNET_DISK_OPEN_READWRITE |
670                              GNUNET_DISK_OPEN_CREATE,
671                              GNUNET_DISK_PERM_USER_READ |
672                              GNUNET_DISK_PERM_USER_WRITE);
673   if (topo_ctx->file == NULL)
674   {
675     notify_cb (notify_cb_cls, "Failed to open output file!");
676     GNUNET_free (topo_ctx);
677     return;
678   }
679
680   temp = GNUNET_asprintf (&temp_str, "strict graph G {\n");
681   if (temp > 0)
682     GNUNET_DISK_file_write (topo_ctx->file, temp_str, temp);
683   GNUNET_free_non_null (temp_str);
684   GNUNET_TESTING_get_topology (pg, &write_topology_cb, topo_ctx);
685 }
686
687 /**
688  * Start a peer group with a given number of peers.  Notify
689  * on completion of peer startup and connection based on given
690  * topological constraints.  Optionally notify on each
691  * established connection.
692  *
693  * @param cfg configuration template to use
694  * @param total number of daemons to start
695  * @param timeout total time allowed for peers to start
696  * @param connect_cb function to call each time two daemons are connected
697  * @param peergroup_cb function to call once all peers are up and connected
698  * @param peergroup_cls closure for peergroup callbacks
699  * @param hostnames linked list of host structs to use to start peers on
700  *                  (NULL to run on localhost only)
701  *
702  * @return NULL on error, otherwise handle to control peer group
703  */
704 struct GNUNET_TESTING_PeerGroup *
705 GNUNET_TESTING_peergroup_start (const struct GNUNET_CONFIGURATION_Handle *cfg,
706                                 unsigned int total,
707                                 struct GNUNET_TIME_Relative timeout,
708                                 GNUNET_TESTING_NotifyConnection connect_cb,
709                                 GNUNET_TESTING_NotifyCompletion peergroup_cb,
710                                 void *peergroup_cls,
711                                 const struct GNUNET_TESTING_Host *hostnames)
712 {
713   struct PeerGroupStartupContext *pg_start_ctx;
714   unsigned long long temp_config_number;
715   char *temp_str;
716   int temp;
717
718   GNUNET_assert (total > 0);
719   GNUNET_assert (cfg != NULL);
720
721   pg_start_ctx = GNUNET_malloc (sizeof (struct PeerGroupStartupContext));
722
723   if (GNUNET_OK !=
724       GNUNET_CONFIGURATION_get_value_number (cfg, "testing", "connect_attempts",
725                                              &pg_start_ctx->connect_attempts))
726   {
727     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Must provide option %s:%s!\n",
728                 "testing", "connect_attempts");
729     GNUNET_free (pg_start_ctx);
730     return NULL;
731   }
732
733   if (GNUNET_OK !=
734       GNUNET_CONFIGURATION_get_value_number (cfg, "testing",
735                                              "max_outstanding_connections",
736                                              &pg_start_ctx->max_concurrent_connections))
737   {
738     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Must provide option %s:%s!\n",
739                 "testing", "max_outstanding_connections");
740     GNUNET_free (pg_start_ctx);
741     return NULL;
742   }
743
744   if (GNUNET_OK !=
745       GNUNET_CONFIGURATION_get_value_number (cfg, "testing",
746                                              "max_concurrent_ssh",
747                                              &pg_start_ctx->max_concurrent_ssh))
748   {
749     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Must provide option %s:%s!\n",
750                 "testing", "max_concurrent_ssh");
751     GNUNET_free (pg_start_ctx);
752     return NULL;
753   }
754
755   if (GNUNET_SYSERR ==
756       (pg_start_ctx->verbose =
757        GNUNET_CONFIGURATION_get_value_yesno (cfg, "testing",
758                                              "use_progressbars")))
759   {
760     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Must provide option %s:%s!\n",
761                 "testing", "use_progressbars");
762     GNUNET_free (pg_start_ctx);
763     return NULL;
764   }
765
766   if (GNUNET_OK ==
767       GNUNET_CONFIGURATION_get_value_number (cfg, "testing",
768                                              "peergroup_timeout",
769                                              &temp_config_number))
770     pg_start_ctx->timeout =
771         GNUNET_TIME_relative_to_absolute (GNUNET_TIME_relative_multiply
772                                           (GNUNET_TIME_UNIT_SECONDS,
773                                            temp_config_number));
774   else
775   {
776     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Must provide option %s:%s!\n",
777                 "testing", "peergroup_timeout");
778     GNUNET_free (pg_start_ctx);
779     return NULL;
780   }
781
782
783   /* Read topology related options from the configuration file */
784   temp_str = NULL;
785   if ((GNUNET_YES ==
786        GNUNET_CONFIGURATION_get_value_string (cfg, "testing", "topology",
787                                               &temp_str)) &&
788       (GNUNET_NO ==
789        GNUNET_TESTING_topology_get (&pg_start_ctx->topology, temp_str)))
790   {
791     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
792                 "Invalid topology `%s' given for section %s option %s\n",
793                 temp_str, "TESTING", "TOPOLOGY");
794     pg_start_ctx->topology = GNUNET_TESTING_TOPOLOGY_CLIQUE;    /* Defaults to NONE, so set better default here */
795   }
796   GNUNET_free_non_null (temp_str);
797
798   if (GNUNET_YES ==
799       GNUNET_CONFIGURATION_get_value_string (cfg, "testing",
800                                              "topology_output_file", &temp_str))
801   {
802     pg_start_ctx->topology_output_file =
803         GNUNET_DISK_file_open (temp_str,
804                                GNUNET_DISK_OPEN_READWRITE |
805                                GNUNET_DISK_OPEN_CREATE,
806                                GNUNET_DISK_PERM_USER_READ |
807                                GNUNET_DISK_PERM_USER_WRITE);
808     if (pg_start_ctx->topology_output_file != NULL)
809     {
810       GNUNET_free (temp_str);
811       temp = GNUNET_asprintf (&temp_str, "strict graph G {\n");
812       if (temp > 0)
813         GNUNET_DISK_file_write (pg_start_ctx->topology_output_file, temp_str,
814                                 temp);
815     }
816     GNUNET_free (temp_str);
817   }
818
819   if (GNUNET_OK !=
820       GNUNET_CONFIGURATION_get_value_string (cfg, "testing", "percentage",
821                                              &temp_str))
822     pg_start_ctx->topology_percentage = 0.5;
823   else
824   {
825     pg_start_ctx->topology_percentage = atof (temp_str);
826     GNUNET_free (temp_str);
827   }
828
829   if (GNUNET_OK !=
830       GNUNET_CONFIGURATION_get_value_string (cfg, "testing", "probability",
831                                              &temp_str))
832     pg_start_ctx->topology_probability = 0.5;
833   else
834   {
835     pg_start_ctx->topology_probability = atof (temp_str);
836     GNUNET_free (temp_str);
837   }
838
839   if ((GNUNET_YES ==
840        GNUNET_CONFIGURATION_get_value_string (cfg, "testing",
841                                               "connect_topology", &temp_str)) &&
842       (GNUNET_NO ==
843        GNUNET_TESTING_topology_get (&pg_start_ctx->connect_topology, temp_str)))
844   {
845     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
846                 "Invalid connect topology `%s' given for section %s option %s\n",
847                 temp_str, "TESTING", "CONNECT_TOPOLOGY");
848   }
849   GNUNET_free_non_null (temp_str);
850
851   if ((GNUNET_YES ==
852        GNUNET_CONFIGURATION_get_value_string (cfg, "testing",
853                                               "connect_topology_option",
854                                               &temp_str)) &&
855       (GNUNET_NO ==
856        GNUNET_TESTING_topology_option_get
857        (&pg_start_ctx->connect_topology_option, temp_str)))
858   {
859     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
860                 "Invalid connect topology option `%s' given for section %s option %s\n",
861                 temp_str, "TESTING", "CONNECT_TOPOLOGY_OPTION");
862     pg_start_ctx->connect_topology_option = GNUNET_TESTING_TOPOLOGY_OPTION_ALL; /* Defaults to NONE, set to ALL */
863   }
864   GNUNET_free_non_null (temp_str);
865
866   if (GNUNET_YES ==
867       GNUNET_CONFIGURATION_get_value_string (cfg, "testing",
868                                              "connect_topology_option_modifier",
869                                              &temp_str))
870   {
871     if (sscanf
872         (temp_str, "%lf", &pg_start_ctx->connect_topology_option_modifier) != 1)
873     {
874       GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
875                   _
876                   ("Invalid value `%s' for option `%s' in section `%s': expected float\n"),
877                   temp_str, "connect_topology_option_modifier", "TESTING");
878       GNUNET_free (temp_str);
879       GNUNET_free (pg_start_ctx);
880       return NULL;
881     }
882     GNUNET_free (temp_str);
883   }
884
885   if (GNUNET_YES !=
886       GNUNET_CONFIGURATION_get_value_string (cfg, "testing",
887                                              "blacklist_transports",
888                                              &pg_start_ctx->restrict_transports))
889     pg_start_ctx->restrict_transports = NULL;
890
891   pg_start_ctx->restrict_topology = GNUNET_TESTING_TOPOLOGY_NONE;
892   if ((GNUNET_YES ==
893        GNUNET_CONFIGURATION_get_value_string (cfg, "testing",
894                                               "blacklist_topology", &temp_str))
895       && (GNUNET_NO ==
896           GNUNET_TESTING_topology_get (&pg_start_ctx->restrict_topology,
897                                        temp_str)))
898   {
899     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
900                 "Invalid topology `%s' given for section %s option %s\n",
901                 temp_str, "TESTING", "BLACKLIST_TOPOLOGY");
902   }
903
904   GNUNET_free_non_null (temp_str);
905
906   pg_start_ctx->cfg = cfg;
907   pg_start_ctx->total = total;
908   pg_start_ctx->peers_left = total;
909   pg_start_ctx->connect_cb = connect_cb;
910   pg_start_ctx->peergroup_cb = peergroup_cb;
911   pg_start_ctx->cls = peergroup_cls;
912   pg_start_ctx->hostnames = hostnames;
913   pg_start_ctx->hostkey_meter =
914       create_meter (pg_start_ctx->peers_left, "Hostkeys created ",
915                     pg_start_ctx->verbose);
916   pg_start_ctx->peer_start_meter =
917       create_meter (pg_start_ctx->peers_left, "Peers started ",
918                     pg_start_ctx->verbose);
919   /* Make compilers happy */
920   reset_meter (pg_start_ctx->peer_start_meter);
921   pg_start_ctx->die_task =
922       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_absolute_get_remaining
923                                     (pg_start_ctx->timeout), &end_badly,
924                                     "didn't generate all hostkeys within allowed startup time!");
925
926   pg_start_ctx->pg =
927       GNUNET_TESTING_daemons_start (pg_start_ctx->cfg, pg_start_ctx->peers_left,
928                                     pg_start_ctx->max_concurrent_connections,
929                                     pg_start_ctx->max_concurrent_ssh,
930                                     GNUNET_TIME_absolute_get_remaining
931                                     (pg_start_ctx->timeout),
932                                     &internal_hostkey_callback, pg_start_ctx,
933                                     &internal_peers_started_callback,
934                                     pg_start_ctx, &internal_topology_callback,
935                                     pg_start_ctx, pg_start_ctx->hostnames);
936
937   return pg_start_ctx->pg;
938 }
939
940 /* end of testing_peergroup.c */