eae5e96700c5a5c9b7f4d9ce90a022d67571d0cf
[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   size_t buf_len;
541
542   if (0 != strcasecmp (subsystem, "nse"))
543     return GNUNET_SYSERR;
544   if (0 == strcmp (name, "# flood messages received"))
545   {
546     stats_context->total_nse_received_messages += value;
547     if ( (verbose > 1) && 
548          (NULL != data_file) )
549     {
550       buf_len =
551           GNUNET_snprintf (buf, sizeof (buf),
552                            "%p %u RECEIVED\n", 
553                            peer, value);
554       GNUNET_DISK_file_write (data_file, buf, buf_len);
555     }
556   }
557   if (0 == strcmp (name, "# flood messages transmitted"))
558   {
559     stats_context->total_nse_transmitted_messages += value;
560     if ( (verbose > 1) &&
561          (NULL != data_file) )
562     {
563       buf_len =
564           GNUNET_snprintf (buf, sizeof (buf),
565                            "%p %u TRANSMITTED\n", 
566                            peer, value);
567       GNUNET_DISK_file_write (data_file, buf, buf_len);
568     }
569   }
570   if (0 == strcmp (name, "# cross messages"))
571     stats_context->total_nse_cross += value;    
572   if (0 == strcmp (name, "# extra messages"))    
573     stats_context->total_nse_extra += value;
574   if (0 == strcmp (name, "# flood messages discarded (clock skew too large)"))
575     stats_context->total_discarded += value;    
576   return GNUNET_OK;
577 }
578
579
580 /**
581  * We're at the end of a round.  Stop monitoring, write total
582  * number of connections to log and get full stats.  Then trigger
583  * the next round.
584  *
585  * @param cls unused, NULL
586  * @param tc unused
587  */
588 static void
589 finish_round (void *cls, 
590               const struct GNUNET_SCHEDULER_TaskContext *tc)
591 {
592   struct StatsContext *stats_context;
593   char buf[1024];
594   size_t buf_len;
595
596   if (0 != (GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason))
597     return;
598   LOG (GNUNET_ERROR_TYPE_INFO, "Have %u connections\n", total_connections);
599   if (NULL != data_file)
600     {
601       buf_len = GNUNET_snprintf (buf, sizeof (buf),
602                                  "CONNECTIONS_0: %u\n", 
603                                  total_connections);
604       GNUNET_DISK_file_write (data_file, buf, buf_len);
605     }
606   close_monitor_connections ();    
607   stats_context = GNUNET_malloc (sizeof (struct StatsContext));
608   get_stats_op =
609       GNUNET_TESTBED_get_statistics (num_peers_in_round[current_round],
610                                      daemons,
611                                      "nse", NULL,
612                                      &statistics_iterator,
613                                      &stats_finished_callback,
614                                      stats_context);
615 }
616
617
618 /**
619  * We have reached the desired number of peers for the current round.
620  * Run it (by connecting and monitoring a few peers and waiting the
621  * specified delay before finishing the round).
622  */
623 static void
624 run_round ()
625 {
626   LOG_DEBUG ("Running round %u\n", current_round);
627   connect_nse_service ();
628   GNUNET_SCHEDULER_add_delayed (wait_time,
629                                 &finish_round,
630                                 NULL);
631 }
632
633
634 /**
635  * Creates an oplist entry and adds it to the oplist DLL
636  */
637 static struct OpListEntry *
638 make_oplist_entry ()
639 {
640   struct OpListEntry *entry;
641
642   entry = GNUNET_malloc (sizeof (struct OpListEntry));
643   GNUNET_CONTAINER_DLL_insert_tail (oplist_head, oplist_tail, entry);
644   return entry;
645 }
646
647
648 /**
649  * Functions of this signature are called when a peer has been successfully
650  * started or stopped.
651  *
652  * @param cls NULL
653  * @param emsg NULL on success; otherwise an error description
654  */
655 static void 
656 peer_churn_cb (void *cls, const char *emsg)
657 {
658   struct OpListEntry *entry = cls;
659   
660   GNUNET_TESTBED_operation_done (entry->op);
661   GNUNET_CONTAINER_DLL_remove (oplist_head, oplist_tail, entry);
662   GNUNET_free (entry);
663   if (num_peers_in_round[current_round] == peers_running)
664     run_round ();
665 }
666
667
668 /**
669  * Adjust the number of running peers to match the required number of running
670  * peers for the round
671  *
672  * @param 
673  * @return 
674  */
675 static void
676 adjust_running_peers ()
677 {
678   struct OpListEntry *entry;
679   unsigned int i;
680
681   /* start peers if we have too few */
682   for (i=peers_running;i<num_peers_in_round[current_round];i++)
683   {
684     entry = make_oplist_entry ();
685     entry->op = GNUNET_TESTBED_peer_start (NULL, daemons[i], 
686                                            &peer_churn_cb, entry);
687   }
688   /* stop peers if we have too many */
689   for (i=num_peers_in_round[current_round];i<peers_running;i++)
690   {
691     entry = make_oplist_entry ();
692     entry->op = GNUNET_TESTBED_peer_stop (NULL, daemons[i], 
693                                           &peer_churn_cb, entry);
694   }
695 }
696
697
698 /**
699  * Task run at the end of a round.  Disconnect from all monitored
700  * peers; then get statistics from *all* peers.
701  *
702  * @param cls NULL, unused
703  * @param tc unused
704  */
705 static void
706 next_round (void *cls, 
707             const struct GNUNET_SCHEDULER_TaskContext *tc)
708 {
709   if (0 != (GNUNET_SCHEDULER_REASON_SHUTDOWN & tc->reason))
710     return;
711   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "disconnecting nse service of peers\n");
712   current_round++;  
713   if (current_round == num_rounds)
714     {
715       /* this was the last round, terminate */
716       ok = 0;
717       GNUNET_SCHEDULER_shutdown ();
718       return;
719     }
720   if (num_peers_in_round[current_round] == peers_running)
721     {
722       /* no need to churn, just run next round */
723       run_round ();
724       return;
725     }
726   adjust_running_peers ();
727 }
728
729
730 /**
731  * Function that will be called whenever something in the
732  * testbed changes.
733  *
734  * @param cls closure, NULL
735  * @param event information on what is happening
736  */
737 static void
738 master_controller_cb (void *cls, 
739                       const struct GNUNET_TESTBED_EventInformation *event)
740 {
741   switch (event->type)
742     {
743     case GNUNET_TESTBED_ET_PEER_START:
744       peers_running++;
745       break;
746     case GNUNET_TESTBED_ET_PEER_STOP:
747       peers_running--;
748       break;
749     case GNUNET_TESTBED_ET_CONNECT:
750       total_connections++;
751       break;
752     case GNUNET_TESTBED_ET_DISCONNECT:
753       total_connections--;
754       break;
755     default:
756       break;
757     }
758 }
759
760
761 /**
762  * Signature of a main function for a testcase.
763  *
764  * @param cls NULL
765  * @param num_peers_ number of peers in 'peers'
766  * @param peers handle to peers run in the testbed.  NULL upon timeout (see
767  *          GNUNET_TESTBED_test_run()).
768  */
769 static void 
770 test_master (void *cls,
771              unsigned int num_peers_,
772              struct GNUNET_TESTBED_Peer **peers)
773 {
774   if (NULL == peers)
775   {
776     shutdown_now ();
777     return;
778   }
779   daemons = peers;
780   GNUNET_break (num_peers_ == num_peers);
781   peers_running = num_peers;
782   if (num_peers_in_round[current_round] == peers_running)
783   {
784     /* no need to churn, just run the starting round */
785     run_round ();
786     return;
787   }
788   adjust_running_peers ();
789 }
790
791
792 /**
793  * Actual main function that runs the emulation.
794  *
795  * @param cls unused
796  * @param args remaining args, unused
797  * @param cfgfile name of the configuration
798  * @param cfg configuration handle
799  */
800 static void
801 run (void *cls, char *const *args, const char *cfgfile,
802      const struct GNUNET_CONFIGURATION_Handle *cfg)
803 {
804   char *tok;
805   uint64_t event_mask;
806   unsigned int num;  
807
808   ok = 1;
809   testing_cfg = GNUNET_CONFIGURATION_dup (cfg);
810   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemons.\n");
811   if (NULL == num_peer_spec)
812   {
813     fprintf (stderr, "You need to specify the number of peers to run\n");
814     return;
815   }
816   for (tok = strtok (num_peer_spec, ","); NULL != tok; tok = strtok (NULL, ","))
817     {
818       if (1 != sscanf (tok, "%u", &num))
819         {
820           fprintf (stderr, "You need to specify numbers, not `%s'\n", tok);
821           return;
822         }
823       if (0 == num)
824         {
825           fprintf (stderr, "Refusing to run a round with 0 peers\n");
826           return;
827         }
828       GNUNET_array_append (num_peers_in_round, num_rounds, num);
829       num_peers = GNUNET_MAX (num_peers, num);
830     }
831   if (0 == num_peers)
832     {
833       fprintf (stderr, "Refusing to run a testbed with no rounds\n");
834       return;
835     }
836   if ( (NULL != data_filename) &&
837        (NULL == (data_file = 
838                  GNUNET_DISK_file_open (data_filename,
839                                         GNUNET_DISK_OPEN_READWRITE |
840                                         GNUNET_DISK_OPEN_TRUNCATE |
841                                         GNUNET_DISK_OPEN_CREATE,
842                                         GNUNET_DISK_PERM_USER_READ |
843                                         GNUNET_DISK_PERM_USER_WRITE))) )
844     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR,
845                               "open",
846                               data_filename);
847
848   if ( (NULL != output_filename) &&
849        (NULL == (output_file =
850                  GNUNET_DISK_file_open (output_filename,
851                                         GNUNET_DISK_OPEN_READWRITE |
852                                         GNUNET_DISK_OPEN_CREATE,
853                                         GNUNET_DISK_PERM_USER_READ |
854                                         GNUNET_DISK_PERM_USER_WRITE))) )
855     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, "open",
856                               output_filename);
857   event_mask = 0LL;
858   event_mask |= (1LL << GNUNET_TESTBED_ET_PEER_START);
859   event_mask |= (1LL << GNUNET_TESTBED_ET_PEER_STOP);
860   event_mask |= (1LL << GNUNET_TESTBED_ET_CONNECT);
861   event_mask |= (1LL << GNUNET_TESTBED_ET_DISCONNECT);
862   GNUNET_TESTBED_run (hosts_file,
863                       cfg,
864                       num_peers,
865                       event_mask,
866                       master_controller_cb,
867                       NULL,     /* master_controller_cb cls */
868                       &test_master,
869                       NULL);    /* test_master cls */
870   shutdown_task_id = 
871       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
872                                     &shutdown_task, NULL);
873 }
874
875
876 /**
877  * Main function.
878  *
879  * @return 0 on success
880  */
881 int
882 main (int argc, char *const *argv)
883 {
884   static struct GNUNET_GETOPT_CommandLineOption options[] = {
885     {'C', "connections", "COUNT",
886      gettext_noop ("limit to the number of connections to NSE services, 0 for none"),
887      1, &GNUNET_GETOPT_set_uint, &connection_limit},
888     {'d', "details", "FILENAME",
889      gettext_noop ("name of the file for writing connection information and statistics"),
890      1, &GNUNET_GETOPT_set_string, &data_filename},
891     {'H', "hosts", "FILENAME",
892      gettext_noop ("name of the file with the login information for the testbed"),
893      1, &GNUNET_GETOPT_set_string, &hosts_file},
894     {'o', "output", "FILENAME",
895      gettext_noop ("name of the file for writing the main results"),
896      1, &GNUNET_GETOPT_set_string, &output_filename},
897     {'p', "peers", "NETWORKSIZESPEC",
898      gettext_noop ("Number of peers to run in each round, separated by commas"),
899      1, &GNUNET_GETOPT_set_string, &num_peer_spec},
900     {'V', "verbose", NULL,
901      gettext_noop ("be verbose (print progress information)"),
902      0, &GNUNET_GETOPT_increment_value, &verbose},
903     {'w', "wait", "DELAY",
904      gettext_noop ("delay between rounds"),
905      1, &GNUNET_GETOPT_set_relative_time, &wait_time},
906     GNUNET_GETOPT_OPTION_END
907   };
908   if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
909     return 2;
910   if (GNUNET_OK !=
911       GNUNET_PROGRAM_run (argc, argv, "nse-profiler",
912                           gettext_noop
913                           ("Measure quality and performance of the NSE service."),
914                           options, &run, NULL))
915     ok = 1;
916   return ok;
917 }
918
919 /* end of nse-profiler.c */