- fix
[oweals/gnunet.git] / src / nse / gnunet-nse-profiler.c
1 /*
2      This file is part of GNUnet.
3      (C) 2011, 2012 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20 /**
21  * @file nse/gnunet-nse-profiler.c
22  *
23  * @brief Profiling driver for the network size estimation service.
24  *        Generally, the profiler starts a given number of peers,
25  *        then churns some off, waits a certain amount of time, then
26  *        churns again, and repeats.
27  *
28  * TODO:
29  * - need to check for leaks (especially FD leaks)
30  * - need to TEST
31  */
32 #include "platform.h"
33 #include "gnunet_testbed_service.h"
34 #include "gnunet_nse_service.h"
35
36 /**
37  * Generic loggins shorthand
38  */
39 #define LOG(kind,...)                                           \
40   GNUNET_log (kind, __VA_ARGS__)
41
42 /**
43  * Debug logging shorthand
44  */
45 #define LOG_DEBUG(...)                          \
46   LOG (GNUNET_ERROR_TYPE_DEBUG, __VA_ARGS__)
47
48
49 /**
50  * Information we track for a peer in the testbed.
51  */
52 struct NSEPeer
53 {
54   /**
55    * Prev reference in DLL.
56    */
57   struct NSEPeer *prev;
58
59   /**
60    * Next reference in DLL.
61    */
62   struct NSEPeer *next;
63
64   /**
65    * Handle with testbed.
66    */
67   struct GNUNET_TESTBED_Peer *daemon;
68
69   /**
70    * Testbed operation to connect to NSE service.
71    */
72   struct GNUNET_TESTBED_Operation *nse_op;
73
74 };
75
76
77 /**
78  * Context for the stats task?
79  */
80 struct StatsContext
81 {
82
83   /**
84    * How many messages have peers received during the test.
85    */
86   unsigned long long total_nse_received_messages;
87
88   /**
89    * How many messages have peers send during the test (should be == received).
90    */
91   unsigned long long total_nse_transmitted_messages;
92
93   /**
94    * How many messages have travelled an edge in both directions.
95    */
96   unsigned long long total_nse_cross;
97
98   /**
99    * How many extra messages per edge (corrections) have been received.
100    */
101   unsigned long long total_nse_extra;
102
103   /**
104    * How many messages have been discarded.
105    */
106   unsigned long long total_discarded;
107 };
108
109
110 /**
111  * Operation map entry
112  */
113 struct OpListEntry
114 {
115   /**
116    * DLL next ptr
117    */
118   struct OpListEntry *next;
119
120   /**
121    * DLL prev ptr
122    */
123   struct OpListEntry *prev;
124
125   /**
126    * The testbed operation
127    */
128   struct GNUNET_TESTBED_Operation *op;
129
130 };
131
132
133 /**
134  * Head of DLL of peers we monitor closely.
135  */
136 static struct NSEPeer *peer_head;
137
138 /**
139  * Tail of DLL of peers we monitor closely.
140  */
141 static struct NSEPeer *peer_tail;
142
143 /**
144  * Return value from 'main' (0 == success)
145  */
146 static int ok;
147
148 /**
149  * Be verbose (configuration option)
150  */
151 static int verbose;
152
153 /**
154  * Name of the file with the hosts to run the test over (configuration option)
155  */ 
156 static char *hosts_file;
157
158 /**
159  * Maximum number of peers in the test.
160  */
161 static unsigned int num_peers;
162
163 /**
164  * Total number of rounds to execute.
165  */
166 static unsigned int num_rounds;
167
168 /**
169  * Current round we are in.
170  */
171 static unsigned int current_round;
172
173 /**
174  * Array of size 'num_rounds' with the requested number of peers in the given round.
175  */
176 static unsigned int *num_peers_in_round;
177
178 /**
179  * How many peers are running right now?
180  */
181 static unsigned int peers_running;
182
183 /**
184  * Specification for the numbers of peers to have in each round.
185  */
186 static char *num_peer_spec;
187
188 /**
189  * Handles to all of the running peers.
190  */
191 static struct GNUNET_TESTBED_Peer **daemons;
192
193 /**
194  * Global configuration file
195  */
196 static struct GNUNET_CONFIGURATION_Handle *testing_cfg;
197
198 /**
199  * The shutdown task
200  */
201 static GNUNET_SCHEDULER_TaskIdentifier shutdown_task_id;
202
203 /**
204  * Maximum number of connections to NSE services.
205  */
206 static unsigned int connection_limit;
207
208 /**
209  * Total number of connections in the whole network.
210  */
211 static unsigned int total_connections;
212
213 /**
214  * File to report results to.
215  */
216 static struct GNUNET_DISK_FileHandle *output_file;
217
218 /**
219  * Filename to log results to.
220  */
221 static char *output_filename;
222
223 /**
224  * File to log connection info, statistics to.
225  */
226 static struct GNUNET_DISK_FileHandle *data_file;
227
228 /**
229  * Filename to log connection info, statistics to.
230  */
231 static char *data_filename;
232
233 /**
234  * How long to wait before triggering next round?
235  * Default: 60 s.
236  */
237 static struct GNUNET_TIME_Relative wait_time = { 60 * 1000 };
238
239 /**
240  * DLL head for operation list
241  */
242 static struct OpListEntry *oplist_head;
243
244 /**
245  * DLL tail for operation list
246  */
247 static struct OpListEntry *oplist_tail;
248
249 /**
250  * The get stats operation
251  */
252 static struct GNUNET_TESTBED_Operation *get_stats_op;
253
254 /**
255  * Are we shutting down
256  */
257 static int shutting_down;
258
259
260 /**
261  * Clean up all of the monitoring connections to NSE and
262  * STATISTICS that we keep to selected peers.
263  */
264 static void
265 close_monitor_connections ()
266 {
267   struct NSEPeer *pos;
268   struct OpListEntry *oplist_entry;
269
270   while (NULL != (pos = peer_head))
271   {
272     if (NULL != pos->nse_op)
273       GNUNET_TESTBED_operation_done (pos->nse_op);
274     GNUNET_CONTAINER_DLL_remove (peer_head, peer_tail, pos);
275     GNUNET_free (pos);
276   }
277   while (NULL != (oplist_entry = oplist_head))
278   {
279     GNUNET_CONTAINER_DLL_remove (oplist_head, oplist_tail, oplist_entry);
280     GNUNET_TESTBED_operation_done (oplist_entry->op);
281     GNUNET_free (oplist_entry);
282   }
283 }
284
285
286 /**
287  * Task run on shutdown; cleans up everything.
288  *
289  * @param cls unused
290  * @param tc unused
291  */
292 static void
293 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
294 {
295   shutdown_task_id = GNUNET_SCHEDULER_NO_TASK;
296   if (GNUNET_YES == shutting_down)
297     return;
298   shutting_down = GNUNET_YES;
299   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Ending test.\n");    
300   close_monitor_connections ();
301   if (NULL != get_stats_op)
302   {
303     GNUNET_TESTBED_operation_done (get_stats_op);
304     get_stats_op = NULL;
305   }
306   // FIXME: what about closing other files!?  
307   if (NULL != data_file)
308     GNUNET_DISK_file_close (data_file);
309   if (NULL != testing_cfg)
310     GNUNET_CONFIGURATION_destroy (testing_cfg);
311   testing_cfg = NULL;
312 }
313
314
315 /**
316  * Schedules shutdown task to be run now
317  */
318 static void
319 shutdown_now ()
320 {
321   if (GNUNET_SCHEDULER_NO_TASK != shutdown_task_id)
322     GNUNET_SCHEDULER_cancel (shutdown_task_id);
323   shutdown_task_id = GNUNET_SCHEDULER_add_now (&shutdown_task, NULL);
324 }
325
326
327 /**
328  * Callback to call when network size estimate is updated.
329  *
330  * @param cls closure with the 'struct NSEPeer' providing the update
331  * @param timestamp server timestamp
332  * @param estimate the value of the current network size estimate
333  * @param std_dev standard deviation (rounded down to nearest integer)
334  *                of the size estimation values seen
335  *
336  */
337 static void
338 handle_estimate (void *cls, 
339                  struct GNUNET_TIME_Absolute timestamp,
340                  double estimate, double std_dev)
341 {
342   struct NSEPeer *peer = cls;
343   char output_buffer[512];
344   size_t size;
345
346   if (NULL == output_file)
347     {
348       FPRINTF (stderr,
349                "Received network size estimate from peer %p. Size: %f std.dev. %f\n",
350                peer, estimate, std_dev);
351       return;
352     }
353   size = GNUNET_snprintf (output_buffer, 
354                           sizeof (output_buffer),
355                           "%p %llu %llu %f %f %f\n",
356                           peer, peers_running,
357                           timestamp.abs_value,
358                           GNUNET_NSE_log_estimate_to_n (estimate), estimate,
359                           std_dev);
360   if (size != GNUNET_DISK_file_write (output_file, output_buffer, size))
361     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
362                 "Unable to write to file!\n");
363 }
364
365
366 /**
367  * Adapter function called to establish a connection to
368  * NSE service.
369  * 
370  * @param cls closure (the 'struct NSEPeer')
371  * @param cfg configuration of the peer to connect to; will be available until
372  *          GNUNET_TESTBED_operation_done() is called on the operation returned
373  *          from GNUNET_TESTBED_service_connect()
374  * @return service handle to return in 'op_result', NULL on error
375  */
376 static void *
377 nse_connect_adapter (void *cls,
378                      const struct GNUNET_CONFIGURATION_Handle *cfg)
379 {
380   struct NSEPeer *current_peer = cls;
381
382   return GNUNET_NSE_connect (cfg, &handle_estimate, current_peer);
383 }
384
385
386 /**
387  * Adapter function called to destroy a connection to
388  * NSE service.
389  * 
390  * @param cls closure
391  * @param op_result service handle returned from the connect adapter
392  */
393 static void 
394 nse_disconnect_adapter (void *cls,
395                         void *op_result)
396 {
397   GNUNET_NSE_disconnect (op_result);
398 }
399
400
401 /**
402  * Task run to connect to the NSE and statistics services to a subset of
403  * all of the running peers.
404  */
405 static void
406 connect_nse_service ()
407 {
408   struct NSEPeer *current_peer;
409   unsigned int i;
410   unsigned int connections;
411
412   if (0 == connection_limit)
413     return;  
414   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Connecting to nse service of peers\n");
415   connections = 0;
416   for (i = 0; i < num_peers_in_round[current_round]; i++)
417   {
418     if ((num_peers_in_round[current_round] > connection_limit) && 
419         (0 != (i % (num_peers_in_round[current_round] / connection_limit))))
420       continue;
421     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
422                 "nse-profiler: connecting to nse service of peer %d\n", i);
423     current_peer = GNUNET_malloc (sizeof (struct NSEPeer));
424     current_peer->daemon = daemons[i];
425     current_peer->nse_op 
426         = GNUNET_TESTBED_service_connect (NULL,
427                                           current_peer->daemon,
428                                           "nse",
429                                           NULL, NULL,
430                                           &nse_connect_adapter,
431                                           &nse_disconnect_adapter,
432                                           current_peer);
433     GNUNET_CONTAINER_DLL_insert (peer_head, peer_tail, current_peer);
434     if (++connections == connection_limit)
435       break;
436   }
437 }
438
439
440 /**
441  * Task that starts/stops peers to move to the next round.
442  *
443  * @param cls NULL, unused
444  * @param tc scheduler context (unused)
445  */
446 static void
447 next_round (void *cls, 
448             const struct GNUNET_SCHEDULER_TaskContext *tc);
449
450
451 /**
452  * Continuation called by the "get_all" and "get" functions at the
453  * end of a round.  Obtains the final statistics and writes them to
454  * the file, then either starts the next round, or, if this was the
455  * last round, terminates the run.
456  *
457  * @param cls struct StatsContext
458  * @param op operation handle
459  * @param emsg error message, NULL on success
460  */
461 static void
462 stats_finished_callback (void *cls,
463                          struct GNUNET_TESTBED_Operation *op,
464                          const char *emsg)
465 {
466   struct StatsContext *stats_context = cls;
467   char buf[512];
468   size_t buf_len;
469
470   GNUNET_TESTBED_operation_done (get_stats_op);
471   get_stats_op = NULL;
472   if (NULL != emsg)
473     {
474       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
475                   "Failed to get statistics: %s\n",
476                   emsg);
477       GNUNET_SCHEDULER_shutdown ();
478       GNUNET_free (stats_context);
479       return;
480     }
481   LOG_DEBUG ("Finished collecting statistics\n");
482   if (NULL != data_file)
483     {
484       /* Stats lookup successful, write out data */
485       buf_len =
486         GNUNET_snprintf (buf, sizeof (buf),
487                          "TOTAL_NSE_RECEIVED_MESSAGES_%u: %u \n",
488                          current_round,
489                          stats_context->total_nse_received_messages);
490       GNUNET_DISK_file_write (data_file, buf, buf_len);
491       buf_len =
492         GNUNET_snprintf (buf, sizeof (buf),
493                          "TOTAL_NSE_TRANSMITTED_MESSAGES_%u: %u\n",
494                          current_round,
495                          stats_context->total_nse_transmitted_messages);
496       GNUNET_DISK_file_write (data_file, buf, buf_len);    
497       buf_len =
498         GNUNET_snprintf (buf, sizeof (buf),
499                          "TOTAL_NSE_CROSS_%u: %u \n",
500                          current_round,
501                          stats_context->total_nse_cross);
502       GNUNET_DISK_file_write (data_file, buf, buf_len);
503       buf_len =
504         GNUNET_snprintf (buf, sizeof (buf),
505                          "TOTAL_NSE_EXTRA_%u: %u \n",
506                          current_round,
507                          stats_context->total_nse_extra);
508       GNUNET_DISK_file_write (data_file, buf, buf_len);
509       buf_len =
510         GNUNET_snprintf (buf, sizeof (buf),
511                          "TOTAL_NSE_DISCARDED_%u: %u \n",
512                          current_round,
513                          stats_context->total_discarded);
514       GNUNET_DISK_file_write (data_file, buf, buf_len);    
515     }  
516   GNUNET_SCHEDULER_add_now (&next_round, NULL);
517   GNUNET_free (stats_context);
518 }
519
520
521 /**
522  * Callback function to process statistic values.
523  *
524  * @param cls struct StatsContext
525  * @param peer the peer the statistics belong to
526  * @param subsystem name of subsystem that created the statistic
527  * @param name the name of the datum
528  * @param value the current value
529  * @param is_persistent GNUNET_YES if the value is persistent, GNUNET_NO if not
530  * @return GNUNET_OK to continue, GNUNET_SYSERR to abort iteration
531  */
532 static int
533 statistics_iterator (void *cls, 
534                      const struct GNUNET_TESTBED_Peer *peer,
535                      const char *subsystem, const char *name, uint64_t value,
536                      int is_persistent)
537 {
538   struct StatsContext *stats_context = cls;
539   char buf[512];
540   const char *const sections[] = {"core", "transport", "nse"};
541   size_t buf_len;
542   unsigned int cnt;
543   unsigned int nsections;
544
545   nsections = sizeof (sections) / sizeof (char *);
546   for (cnt = 0; cnt < nsections; cnt++)
547     if (0 == strcmp (subsystem, sections[cnt]))
548       break;
549   if (cnt == nsections)
550     return GNUNET_OK;
551
552   if (NULL == data_file)
553   {
554     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
555                 "%p -> %s [%s]: %llu\n",
556                 peer, subsystem, name, value);
557   }
558   else
559   {
560     buf_len =
561         GNUNET_snprintf (buf,
562                          sizeof (buf),
563                          "%p [%s] %s %llu\n",
564                          peer,
565                          subsystem, name, value);
566     if (buf_len != GNUNET_DISK_file_write (data_file, buf, buf_len))
567       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Unable to write to file!\n");
568   }
569   if (0 != strcmp (subsystem, "nse"))
570     return GNUNET_OK;
571   if (0 == strcmp (name, "# flood messages received"))
572   {
573     stats_context->total_nse_received_messages += value;
574     if ( (verbose > 1) && 
575          (NULL != data_file) )
576     {
577       buf_len =
578           GNUNET_snprintf (buf, sizeof (buf),
579                            "%p %u RECEIVED\n", 
580                            peer, value);
581       GNUNET_DISK_file_write (data_file, buf, buf_len);
582     }
583   }
584   if (0 == strcmp (name, "# flood messages transmitted"))
585   {
586     stats_context->total_nse_transmitted_messages += value;
587     if ( (verbose > 1) &&
588          (NULL != data_file) )
589     {
590       buf_len =
591           GNUNET_snprintf (buf, sizeof (buf),
592                            "%p %u TRANSMITTED\n", 
593                            peer, value);
594       GNUNET_DISK_file_write (data_file, buf, buf_len);
595     }
596   }
597   if (0 == strcmp (name, "# cross messages"))
598     stats_context->total_nse_cross += value;    
599   if (0 == strcmp (name, "# extra messages"))    
600     stats_context->total_nse_extra += value;
601   if (0 == strcmp (name, "# flood messages discarded (clock skew too large)"))
602     stats_context->total_discarded += value;    
603   return GNUNET_OK;
604 }
605
606
607 /**
608  * We're at the end of a round.  Stop monitoring, write total
609  * number of connections to log and get full stats.  Then trigger
610  * the next round.
611  *
612  * @param cls unused, NULL
613  * @param tc unused
614  */
615 static void
616 finish_round (void *cls, 
617               const struct GNUNET_SCHEDULER_TaskContext *tc)
618 {
619   struct StatsContext *stats_context;
620   char buf[1024];
621   size_t buf_len;
622
623   if (0 != (GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason))
624     return;
625   LOG (GNUNET_ERROR_TYPE_INFO, "Have %u connections\n", total_connections);
626   if (NULL != data_file)
627     {
628       buf_len = GNUNET_snprintf (buf, sizeof (buf),
629                                  "CONNECTIONS_0: %u\n", 
630                                  total_connections);
631       GNUNET_DISK_file_write (data_file, buf, buf_len);
632     }
633   close_monitor_connections ();    
634   stats_context = GNUNET_malloc (sizeof (struct StatsContext));
635   get_stats_op =
636       GNUNET_TESTBED_get_statistics (num_peers_in_round[current_round], 
637                                      daemons,                            
638                                      &statistics_iterator,
639                                      &stats_finished_callback,
640                                      stats_context);
641 }
642
643
644 /**
645  * We have reached the desired number of peers for the current round.
646  * Run it (by connecting and monitoring a few peers and waiting the
647  * specified delay before finishing the round).
648  */
649 static void
650 run_round ()
651 {
652   LOG_DEBUG ("Running round %u\n", current_round);
653   connect_nse_service ();
654   GNUNET_SCHEDULER_add_delayed (wait_time,
655                                 &finish_round,
656                                 NULL);
657 }
658
659
660 /**
661  * Creates an oplist entry and adds it to the oplist DLL
662  */
663 static struct OpListEntry *
664 make_oplist_entry ()
665 {
666   struct OpListEntry *entry;
667
668   entry = GNUNET_malloc (sizeof (struct OpListEntry));
669   GNUNET_CONTAINER_DLL_insert_tail (oplist_head, oplist_tail, entry);
670   return entry;
671 }
672
673
674 /**
675  * Functions of this signature are called when a peer has been successfully
676  * started or stopped.
677  *
678  * @param cls NULL
679  * @param emsg NULL on success; otherwise an error description
680  */
681 static void 
682 peer_churn_cb (void *cls, const char *emsg)
683 {
684   struct OpListEntry *entry = cls;
685   
686   GNUNET_TESTBED_operation_done (entry->op);
687   GNUNET_CONTAINER_DLL_remove (oplist_head, oplist_tail, entry);
688   GNUNET_free (entry);
689   if (num_peers_in_round[current_round] == peers_running)
690     run_round ();
691 }
692
693
694 /**
695  * Adjust the number of running peers to match the required number of running
696  * peers for the round
697  *
698  * @param 
699  * @return 
700  */
701 static void
702 adjust_running_peers ()
703 {
704   struct OpListEntry *entry;
705   unsigned int i;
706
707   /* start peers if we have too few */
708   for (i=peers_running;i<num_peers_in_round[current_round];i++)
709   {
710     entry = make_oplist_entry ();
711     entry->op = GNUNET_TESTBED_peer_start (NULL, daemons[i], 
712                                            &peer_churn_cb, entry);
713   }
714   /* stop peers if we have too many */
715   for (i=num_peers_in_round[current_round];i<peers_running;i++)
716   {
717     entry = make_oplist_entry ();
718     entry->op = GNUNET_TESTBED_peer_stop (NULL, daemons[i], 
719                                           &peer_churn_cb, entry);
720   }
721 }
722
723
724 /**
725  * Task run at the end of a round.  Disconnect from all monitored
726  * peers; then get statistics from *all* peers.
727  *
728  * @param cls NULL, unused
729  * @param tc unused
730  */
731 static void
732 next_round (void *cls, 
733             const struct GNUNET_SCHEDULER_TaskContext *tc)
734 {
735   if (0 != (GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason))
736     return;
737   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "disconnecting nse service of peers\n");
738   current_round++;  
739   if (current_round == num_rounds)
740     {
741       /* this was the last round, terminate */
742       ok = 0;
743       GNUNET_SCHEDULER_shutdown ();
744       return;
745     }
746   if (num_peers_in_round[current_round] == peers_running)
747     {
748       /* no need to churn, just run next round */
749       run_round ();
750       return;
751     }
752   adjust_running_peers ();
753 }
754
755
756 /**
757  * Function that will be called whenever something in the
758  * testbed changes.
759  *
760  * @param cls closure, NULL
761  * @param event information on what is happening
762  */
763 static void
764 master_controller_cb (void *cls, 
765                       const struct GNUNET_TESTBED_EventInformation *event)
766 {
767   switch (event->type)
768     {
769     case GNUNET_TESTBED_ET_PEER_START:
770       peers_running++;
771       break;
772     case GNUNET_TESTBED_ET_PEER_STOP:
773       peers_running--;
774       break;
775     case GNUNET_TESTBED_ET_CONNECT:
776       total_connections++;
777       break;
778     case GNUNET_TESTBED_ET_DISCONNECT:
779       total_connections--;
780       break;
781     default:
782       break;
783     }
784 }
785
786
787 /**
788  * Signature of a main function for a testcase.
789  *
790  * @param cls NULL
791  * @param num_peers_ number of peers in 'peers'
792  * @param peers handle to peers run in the testbed.  NULL upon timeout (see
793  *          GNUNET_TESTBED_test_run()).
794  */
795 static void 
796 test_master (void *cls,
797              unsigned int num_peers_,
798              struct GNUNET_TESTBED_Peer **peers)
799 {
800   if (NULL == peers)
801   {
802     shutdown_now ();
803     return;
804   }
805   daemons = peers;
806   GNUNET_break (num_peers_ == num_peers);
807   peers_running = num_peers;
808   if (num_peers_in_round[current_round] == peers_running)
809   {
810     /* no need to churn, just run the starting round */
811     run_round ();
812     return;
813   }
814   adjust_running_peers ();
815 }
816
817
818 /**
819  * Actual main function that runs the emulation.
820  *
821  * @param cls unused
822  * @param args remaining args, unused
823  * @param cfgfile name of the configuration
824  * @param cfg configuration handle
825  */
826 static void
827 run (void *cls, char *const *args, const char *cfgfile,
828      const struct GNUNET_CONFIGURATION_Handle *cfg)
829 {
830   char *tok;
831   uint64_t event_mask;
832   unsigned int num;  
833
834   ok = 1;
835   testing_cfg = GNUNET_CONFIGURATION_dup (cfg);
836   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemons.\n");
837   if (NULL == num_peer_spec)
838   {
839     fprintf (stderr, "You need to specify the number of peers to run\n");
840     return;
841   }
842   for (tok = strtok (num_peer_spec, ","); NULL != tok; tok = strtok (NULL, ","))
843     {
844       if (1 != sscanf (tok, "%u", &num))
845         {
846           fprintf (stderr, "You need to specify numbers, not `%s'\n", tok);
847           return;
848         }
849       if (0 == num)
850         {
851           fprintf (stderr, "Refusing to run a round with 0 peers\n");
852           return;
853         }
854       GNUNET_array_append (num_peers_in_round, num_rounds, num);
855       num_peers = GNUNET_MAX (num_peers, num);
856     }
857   if (0 == num_peers)
858     {
859       fprintf (stderr, "Refusing to run a testbed with no rounds\n");
860       return;
861     }
862   if ( (NULL != data_filename) &&
863        (NULL == (data_file = 
864                  GNUNET_DISK_file_open (data_filename,
865                                         GNUNET_DISK_OPEN_READWRITE |
866                                         GNUNET_DISK_OPEN_TRUNCATE |
867                                         GNUNET_DISK_OPEN_CREATE,
868                                         GNUNET_DISK_PERM_USER_READ |
869                                         GNUNET_DISK_PERM_USER_WRITE))) )
870     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR,
871                               "open",
872                               data_filename);
873
874   if ( (NULL != output_filename) &&
875        (NULL == (output_file =
876                  GNUNET_DISK_file_open (output_filename,
877                                         GNUNET_DISK_OPEN_READWRITE |
878                                         GNUNET_DISK_OPEN_CREATE,
879                                         GNUNET_DISK_PERM_USER_READ |
880                                         GNUNET_DISK_PERM_USER_WRITE))) )
881     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, "open",
882                               output_filename);
883   event_mask = 0LL;
884   event_mask |= (1LL << GNUNET_TESTBED_ET_PEER_START);
885   event_mask |= (1LL << GNUNET_TESTBED_ET_PEER_STOP);
886   event_mask |= (1LL << GNUNET_TESTBED_ET_CONNECT);
887   event_mask |= (1LL << GNUNET_TESTBED_ET_DISCONNECT);
888   GNUNET_TESTBED_run (hosts_file,
889                       cfg,
890                       num_peers,
891                       event_mask,
892                       master_controller_cb,
893                       NULL,     /* master_controller_cb cls */
894                       &test_master,
895                       NULL);    /* test_master cls */
896   shutdown_task_id = 
897       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
898                                     &shutdown_task, NULL);
899 }
900
901
902 /**
903  * Main function.
904  *
905  * @return 0 on success
906  */
907 int
908 main (int argc, char *const *argv)
909 {
910   static struct GNUNET_GETOPT_CommandLineOption options[] = {
911     {'C', "connections", "COUNT",
912      gettext_noop ("limit to the number of connections to NSE services, 0 for none"),
913      1, &GNUNET_GETOPT_set_uint, &connection_limit},
914     {'d', "details", "FILENAME",
915      gettext_noop ("name of the file for writing connection information and statistics"),
916      1, &GNUNET_GETOPT_set_string, &data_filename},
917     {'H', "hosts", "FILENAME",
918      gettext_noop ("name of the file with the login information for the testbed"),
919      1, &GNUNET_GETOPT_set_string, &hosts_file},
920     {'o', "output", "FILENAME",
921      gettext_noop ("name of the file for writing the main results"),
922      1, &GNUNET_GETOPT_set_string, &output_filename},
923     {'p', "peers", "NETWORKSIZESPEC",
924      gettext_noop ("Number of peers to run in each round, separated by commas"),
925      1, &GNUNET_GETOPT_set_string, &num_peer_spec},
926     {'V', "verbose", NULL,
927      gettext_noop ("be verbose (print progress information)"),
928      0, &GNUNET_GETOPT_increment_value, &verbose},
929     {'w', "wait", "DELAY",
930      gettext_noop ("delay between rounds"),
931      1, &GNUNET_GETOPT_set_relative_time, &wait_time},
932     GNUNET_GETOPT_OPTION_END
933   };
934   if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
935     return 2;
936   if (GNUNET_OK !=
937       GNUNET_PROGRAM_run (argc, argv, "nse-profiler",
938                           gettext_noop
939                           ("Measure quality and performance of the NSE service."),
940                           options, &run, NULL))
941     ok = 1;
942   return ok;
943 }
944
945 /* end of nse-profiler.c */