64f41856988e6f776da2ba1b368eefb05a0e3212
[oweals/gnunet.git] / src / testbed / gnunet-testbed-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 /**
22  * @file testbed/gnunet-testbed-profiler.c
23  * @brief Profiling driver for the testbed.
24  * @author Sree Harsha Totakura <sreeharsha@totakura.in> 
25  */
26
27 #include "platform.h"
28 #include "gnunet_common.h"
29 #include "gnunet_testbed_service.h"
30 #include "testbed_api_hosts.h"
31
32 /**
33  * Generic loggins shorthand
34  */
35 #define LOG(kind,...)                                           \
36   GNUNET_log_from (kind, "testbed-api-testbed", __VA_ARGS__)
37
38 /**
39  * DLL of operations
40  */
41 struct DLLOperation
42 {
43   /**
44    * The testbed operation handle
45    */
46   struct GNUNET_TESTBED_Operation *op;
47
48   /**
49    * Closure
50    */
51   void *cls;
52
53   /**
54    * The next pointer for DLL
55    */
56   struct DLLOperation *next;
57
58   /**
59    * The prev pointer for DLL
60    */
61   struct DLLOperation *prev;
62 };
63
64
65 /**
66  * Availanle states during profiling
67  */
68 enum State
69 {
70   /**
71    * Initial state
72    */
73   STATE_INIT = 0,
74
75   /**
76    * Starting slaves
77    */
78   STATE_SLAVES_STARTING,
79
80   /**
81    * Creating peers
82    */
83   STATE_PEERS_CREATING
84 };
85
86
87 /**
88  * An array of hosts loaded from the hostkeys file
89  */
90 static struct GNUNET_TESTBED_Host **hosts;
91
92 /**
93  * The array of peers; we fill this as the peers are given to us by the testbed
94  */
95 static struct GNUNET_TESTBED_Peer **peers;
96
97 /* /\** */
98 /*  * Operation handle */
99 /*  *\/ */
100 /* static struct GNUNET_TESTBED_Operation *op; */
101
102 /**
103  * Host registration handle
104  */
105 static struct GNUNET_TESTBED_HostRegistrationHandle *reg_handle;
106
107 /**
108  * Handle to the master controller process
109  */
110 struct GNUNET_TESTBED_ControllerProc *mc_proc;
111
112 /**
113  * Handle to the master controller
114  */
115 struct GNUNET_TESTBED_Controller *mc;
116
117 /**
118  * Handle to global configuration
119  */
120 struct GNUNET_CONFIGURATION_Handle *cfg;
121
122 /**
123  * Head of the operations list
124  */
125 struct DLLOperation *dll_op_head;
126
127 /**
128  * Tail of the operations list
129  */
130 struct DLLOperation *dll_op_tail;
131
132 /**
133  * Abort task identifier
134  */
135 static GNUNET_SCHEDULER_TaskIdentifier abort_task;
136
137 /**
138  * Host registration task identifier
139  */
140 static GNUNET_SCHEDULER_TaskIdentifier register_hosts_task;
141
142 /**
143  * Global event mask for all testbed events
144  */
145 uint64_t event_mask;
146
147 /**
148  * The starting time of a profiling step
149  */
150 struct GNUNET_TIME_Absolute prof_start_time;
151
152 /**
153  * Duration profiling step has taken
154  */
155 struct GNUNET_TIME_Relative prof_time;
156
157 /**
158  * Current peer id
159  */
160 unsigned int peer_id;
161
162 /**
163  * Number of peers to be started by the profiler
164  */
165 static unsigned int num_peers;
166
167 /**
168  * Number of hosts in the hosts array
169  */
170 static unsigned int num_hosts;
171
172 /**
173  * Global testing status
174  */
175 static int result;
176
177 /**
178  * current state of profiling
179  */
180 enum State state;
181
182
183 /**
184  * Shutdown nicely
185  *
186  * @param cls NULL
187  * @param tc the task context
188  */
189 static void
190 do_shutdown (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
191 {
192   struct DLLOperation *dll_op;
193   unsigned int nhost;
194
195   if (GNUNET_SCHEDULER_NO_TASK != abort_task)
196     GNUNET_SCHEDULER_cancel (abort_task);
197   if (GNUNET_SCHEDULER_NO_TASK != register_hosts_task)
198     GNUNET_SCHEDULER_cancel (register_hosts_task);
199   if (NULL != reg_handle)
200     GNUNET_TESTBED_cancel_registration (reg_handle);
201   for (nhost = 0; nhost < num_hosts; nhost++)
202     if (NULL != hosts[nhost])
203       GNUNET_TESTBED_host_destroy (hosts[nhost]);
204   GNUNET_free_non_null (hosts);
205   while (NULL != (dll_op = dll_op_head))
206   {
207     GNUNET_TESTBED_operation_cancel (dll_op->op);
208     GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
209     GNUNET_free (dll_op);
210   }
211   if (NULL != mc)
212     GNUNET_TESTBED_controller_disconnect (mc);
213   if (NULL != mc_proc)
214     GNUNET_TESTBED_controller_stop (mc_proc);
215   if (NULL != cfg)
216     GNUNET_CONFIGURATION_destroy (cfg);
217   GNUNET_SCHEDULER_shutdown (); /* Stop scheduler to shutdown testbed run */  
218 }
219
220
221 /**
222  * abort task to run on test timed out
223  *
224  * @param cls NULL
225  * @param tc the task context
226  */
227 static void
228 do_abort (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
229 {
230   GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Aborting\n");
231   abort_task = GNUNET_SCHEDULER_NO_TASK;
232   result = GNUNET_SYSERR;
233   GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
234 }
235
236
237 /**
238  * Functions of this signature are called when a peer has been successfully
239  * created
240  *
241  * @param cls the closure from GNUNET_TESTBED_peer_create()
242  * @param peer the handle for the created peer; NULL on any error during
243  *          creation
244  * @param emsg NULL if peer is not NULL; else MAY contain the error description
245  */
246 static void 
247 peer_create_cb (void *cls, struct GNUNET_TESTBED_Peer *peer, const char *emsg)
248 {
249   struct DLLOperation *dll_op = cls;
250   struct GNUNET_TESTBED_Peer **peer_ptr;
251   static unsigned int created_peers;
252
253   if (NULL != emsg)
254   {
255     LOG (GNUNET_ERROR_TYPE_WARNING,
256          _("Creating a peer failed. Error: %s\n"), emsg);
257     GNUNET_TESTBED_operation_done (dll_op->op);
258     GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
259     GNUNET_free (dll_op);
260     GNUNET_SCHEDULER_cancel (abort_task);
261     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, NULL);
262     return;
263   }
264   peer_ptr = dll_op->cls;
265   GNUNET_assert (NULL == *peer_ptr);
266   *peer_ptr = peer;
267   GNUNET_TESTBED_operation_done (dll_op->op);
268   GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
269   GNUNET_free (dll_op);
270   if (++created_peers == num_peers)
271   {
272     prof_time = GNUNET_TIME_absolute_get_duration (prof_start_time);    
273     printf ("All peers created successfully in %.2f seconds\n",
274             ((double) prof_time.rel_value) / 1000.00);
275     /* Now peers are to be started */
276   }
277 }
278
279
280 /**
281  * Controller event callback
282  *
283  * @param cls NULL
284  * @param event the controller event
285  */
286 static void
287 controller_event_cb (void *cls,
288                      const struct GNUNET_TESTBED_EventInformation *event)
289 {
290   struct DLLOperation *dll_op;
291   struct GNUNET_TESTBED_Operation *op;
292
293   switch (state)
294   {
295   case STATE_SLAVES_STARTING:
296     switch (event->type)
297     {
298     case GNUNET_TESTBED_ET_OPERATION_FINISHED:
299       {
300         static unsigned int slaves_started;
301         unsigned int peer_cnt;
302             
303         dll_op = event->details.operation_finished.op_cls;
304         GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
305         GNUNET_free (dll_op);
306         op = event->details.operation_finished.operation;
307         if (NULL != event->details.operation_finished.emsg)
308         {
309           LOG (GNUNET_ERROR_TYPE_WARNING,
310                _("An operation has failed while starting slaves\n"));
311           GNUNET_TESTBED_operation_done (op);
312           GNUNET_SCHEDULER_cancel (abort_task);
313           abort_task = GNUNET_SCHEDULER_add_now (&do_abort, NULL);
314           return;
315         }
316         GNUNET_TESTBED_operation_done (op);
317         /* Proceed to start peers */
318         if (++slaves_started == num_hosts - 1)
319         {
320           printf ("All slaves started successfully\n");
321           state = STATE_PEERS_CREATING;
322           prof_start_time = GNUNET_TIME_absolute_get ();
323           peers = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_Peer *)
324                                  * num_peers);
325           for (peer_cnt = 0; peer_cnt < num_peers; peer_cnt++)
326           {
327             dll_op = GNUNET_malloc (sizeof (struct DLLOperation));
328             dll_op->cls = &peers[peer_cnt];
329             dll_op->op = GNUNET_TESTBED_peer_create (mc,
330                                                      hosts
331                                                      [peer_cnt % num_hosts],
332                                                      cfg,
333                                                      &peer_create_cb,
334                                                      dll_op);
335             GNUNET_CONTAINER_DLL_insert_tail (dll_op_head, dll_op_tail, dll_op);
336           }
337         }
338       }
339       break;
340     default:
341       GNUNET_assert (0);
342     }
343     break;
344   default:
345     GNUNET_assert (0);
346   }
347 }
348
349
350 /**
351  * Task to register all hosts available in the global host list
352  *
353  * @param cls NULL
354  * @param tc the scheduler task context
355  */
356 static void
357 register_hosts (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
358
359
360 /**
361  * Callback which will be called to after a host registration succeeded or failed
362  *
363  * @param cls the closure
364  * @param emsg the error message; NULL if host registration is successful
365  */
366 static void
367 host_registration_completion (void *cls, const char *emsg)
368 {
369   reg_handle = NULL;
370   if (NULL != emsg)
371   {
372     LOG (GNUNET_ERROR_TYPE_WARNING,
373          _("Host registration failed for a host. Error: %s\n"), emsg);
374     GNUNET_SCHEDULER_cancel (abort_task);
375     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, NULL);
376     return;
377   }
378   register_hosts_task = GNUNET_SCHEDULER_add_now (&register_hosts, NULL);
379 }
380
381
382 /**
383  * Task to register all hosts available in the global host list
384  *
385  * @param cls NULL
386  * @param tc the scheduler task context
387  */
388 static void
389 register_hosts (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
390 {
391   struct DLLOperation *dll_op;
392   static unsigned int reg_host;
393   unsigned int slave;
394
395   register_hosts_task = GNUNET_SCHEDULER_NO_TASK;  
396   if (reg_host == num_hosts - 1)
397   {
398     LOG (GNUNET_ERROR_TYPE_DEBUG,
399          "All hosts successfully registered\n");
400     /* Start slaves */
401     state = STATE_SLAVES_STARTING;
402     for (slave = 1; slave < num_hosts; slave++)
403     {
404       dll_op = GNUNET_malloc (sizeof (struct DLLOperation));
405       dll_op->op = GNUNET_TESTBED_controller_link (dll_op,
406                                                    mc,
407                                                    hosts[slave],
408                                                    hosts[0],
409                                                    cfg,
410                                                    GNUNET_YES);
411       GNUNET_CONTAINER_DLL_insert_tail (dll_op_head, dll_op_tail, dll_op);
412     }
413     return;
414   }
415   reg_handle = GNUNET_TESTBED_register_host (mc, hosts[++reg_host],
416                                              host_registration_completion,
417                                              NULL);
418 }
419
420
421 /**
422  * Callback to signal successfull startup of the controller process
423  *
424  * @param cls the closure from GNUNET_TESTBED_controller_start()
425  * @param cfg the configuration with which the controller has been started;
426  *          NULL if status is not GNUNET_OK
427  * @param status GNUNET_OK if the startup is successfull; GNUNET_SYSERR if not,
428  *          GNUNET_TESTBED_controller_stop() shouldn't be called in this case
429  */
430 static void
431 status_cb (void *cls, const struct GNUNET_CONFIGURATION_Handle *config, int status)
432 {
433   GNUNET_SCHEDULER_cancel (abort_task);
434   if (GNUNET_OK != status)
435   {
436     mc_proc = NULL;
437     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, NULL);
438     return;
439   }
440   event_mask = 0;
441   event_mask |= (1LL << GNUNET_TESTBED_ET_PEER_START);
442   event_mask |= (1LL << GNUNET_TESTBED_ET_PEER_STOP);
443   event_mask |= (1LL << GNUNET_TESTBED_ET_CONNECT);
444   event_mask |= (1LL << GNUNET_TESTBED_ET_DISCONNECT);
445   event_mask |= (1LL << GNUNET_TESTBED_ET_OPERATION_FINISHED);
446   mc = GNUNET_TESTBED_controller_connect (config, hosts[0], event_mask,
447                                           &controller_event_cb, NULL);
448   if (NULL == mc)
449   {
450     LOG (GNUNET_ERROR_TYPE_WARNING,
451          _("Unable to connect to master controller -- Check config\n"));
452     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, NULL);
453     return;
454   }
455   register_hosts_task = GNUNET_SCHEDULER_add_now (&register_hosts, NULL);
456   abort_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
457                                              &do_abort, NULL);
458 }
459
460
461 /**
462  * Main function that will be run by the scheduler.
463  *
464  * @param cls closure
465  * @param args remaining command-line arguments
466  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
467  * @param cfg configuration
468  */
469 static void
470 run (void *cls, char *const *args, const char *cfgfile,
471      const struct GNUNET_CONFIGURATION_Handle *config)
472 {
473   unsigned int nhost;
474
475   if (NULL == args[0])
476   {
477     fprintf (stderr, _("No hosts-file specified on command line\n"));
478     return;
479   }
480   if (0 == num_peers)
481   {
482     result = GNUNET_OK;
483     return;
484   }
485   num_hosts = GNUNET_TESTBED_hosts_load_from_file (args[0], &hosts);
486   if (0 == num_hosts)
487   {
488     fprintf (stderr, _("No hosts loaded. Need atleast one host\n"));
489     return;
490   }
491   for (nhost = 0; nhost < num_hosts; nhost++)
492   {
493     if (GNUNET_YES != GNUNET_TESTBED_is_host_habitable (hosts[nhost]))
494     {
495       fprintf (stderr, _("Host %s cannot start testbed\n"),
496                          GNUNET_TESTBED_host_get_hostname_ (hosts[nhost]));
497       break;
498     }
499   }
500   if (num_hosts != nhost)
501   {
502     fprintf (stderr, _("Exiting\n"));
503     GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
504     return;
505   }
506   cfg = GNUNET_CONFIGURATION_dup (config);
507   mc_proc = 
508       GNUNET_TESTBED_controller_start (GNUNET_TESTBED_host_get_hostname_ 
509                                        (hosts[0]),
510                                        hosts[0],
511                                        cfg,
512                                        status_cb,
513                                        NULL);
514   abort_task =
515       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
516                                     (GNUNET_TIME_UNIT_SECONDS, 5), &do_abort,
517                                     NULL);
518 }
519
520
521 /**
522  * Main function.
523  *
524  * @return 0 on success
525  */
526 int
527 main (int argc, char *const *argv)
528 {
529   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
530     { 'n', "num-peers", "COUNT",
531       gettext_noop ("create COUNT number of peers"),
532       GNUNET_YES, &GNUNET_GETOPT_set_uint, &num_peers },
533     { 'n', "num-peers", "COUNT",
534       gettext_noop ("create COUNT number of peers"),
535       GNUNET_YES, &GNUNET_GETOPT_set_uint, &num_peers },
536     GNUNET_GETOPT_OPTION_END
537   };
538   int ret;
539
540   if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
541     return 2;
542   
543   result = GNUNET_SYSERR;
544   ret =
545       GNUNET_PROGRAM_run (argc, argv, "gnunet-testbed-profiler [OPTIONS] hosts-file",
546                           _("Profiler for testbed"),
547                           options, &run, NULL);
548   if (GNUNET_OK != ret)
549     return ret;
550   if (GNUNET_OK != result)
551     return 1;
552   return 0;
553 }