mesh connections in regex profiler
[oweals/gnunet.git] / src / mesh / gnunet-regex-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 mesh/gnunet-regex-profiler.c
23  * @brief Regex profiler for testing distributed regex use.
24  * @author Bart Polot
25  * @author Max Szengel
26  */
27
28 #include <string.h>
29
30 #include "platform.h"
31 #include "gnunet_applications.h"
32 #include "gnunet_util_lib.h"
33 #include "gnunet_mesh_service.h"
34 #include "gnunet_stream_lib.h"
35 #include "gnunet_testbed_service.h"
36
37 /**
38  * DLL of operations
39  */
40 struct DLLOperation
41 {
42   /**
43    * The testbed operation handle
44    */
45   struct GNUNET_TESTBED_Operation *op;
46
47   /**
48    * Closure
49    */
50   void *cls;
51
52   /**
53    * The next pointer for DLL
54    */
55   struct DLLOperation *next;
56
57   /**
58    * The prev pointer for DLL
59    */
60   struct DLLOperation *prev;
61 };
62
63
64 /**
65  * Available states during profiling
66  */
67 enum State
68 {
69   /**
70    * Initial state
71    */
72   STATE_INIT = 0,
73
74   /**
75    * Starting slaves
76    */
77   STATE_SLAVES_STARTING,
78
79   /**
80    * Creating peers
81    */
82   STATE_PEERS_CREATING,
83
84   /**
85    * Starting peers
86    */
87   STATE_PEERS_STARTING,
88
89   /**
90    * Linking peers
91    */
92   STATE_PEERS_LINKING,
93
94   /**
95    * Destroying peers; we can do this as the controller takes care of stopping a
96    * peer if it is running
97    */
98   STATE_PEERS_DESTROYING
99 };
100
101
102 /**
103  * An array of hosts loaded from the hostkeys file
104  */
105 static struct GNUNET_TESTBED_Host **hosts;
106
107 /**
108  * Peer handles.
109  */
110 struct Peer
111 {
112   /**
113    * The actual testbed peer handle.
114    */
115   struct GNUNET_TESTBED_Peer *peer_handle;
116
117   /**
118    * Peer's mesh handle.
119    */
120   struct GNUNET_MESH_Handle *mesh_handle;
121
122   /**
123    * Host on which the peer is running.
124    */
125   struct GNUNET_TESTBED_Host *host_handle;
126
127   /**
128    * Testbed operation handle.
129    */
130   struct GNUNET_TESTBED_Operation *op_handle;
131 };
132
133 /**
134  * Array of peer handles used to pass to
135  * GNUNET_TESTBED_overlay_configure_topology
136  */
137 struct GNUNET_TESTBED_Peer **peer_handles;
138
139 /**
140  * The array of peers; we fill this as the peers are given to us by the testbed
141  */
142 static struct Peer *peers;
143
144 /**
145  * Host registration handle
146  */
147 static struct GNUNET_TESTBED_HostRegistrationHandle *reg_handle;
148
149 /**
150  * Handle to the master controller process
151  */
152 struct GNUNET_TESTBED_ControllerProc *mc_proc;
153
154 /**
155  * Handle to the master controller
156  */
157 struct GNUNET_TESTBED_Controller *mc;
158
159 /**
160  * Handle to global configuration
161  */
162 struct GNUNET_CONFIGURATION_Handle *cfg;
163
164 /**
165  * Head of the operations list
166  */
167 struct DLLOperation *dll_op_head;
168
169 /**
170  * Tail of the operations list
171  */
172 struct DLLOperation *dll_op_tail;
173
174 /**
175  * Peer linking - topology operation
176  */
177 struct GNUNET_TESTBED_Operation *topology_op;
178
179 /**
180  * Abort task identifier
181  */
182 static GNUNET_SCHEDULER_TaskIdentifier abort_task;
183
184 /**
185  * Host registration task identifier
186  */
187 static GNUNET_SCHEDULER_TaskIdentifier register_hosts_task;
188
189 /**
190  * Global event mask for all testbed events
191  */
192 uint64_t event_mask;
193
194 /**
195  * The starting time of a profiling step
196  */
197 struct GNUNET_TIME_Absolute prof_start_time;
198
199 /**
200  * Duration profiling step has taken
201  */
202 struct GNUNET_TIME_Relative prof_time;
203
204 /**
205  * Current peer id
206  */
207 unsigned int peer_id;
208
209 /**
210  * Number of peers to be started by the profiler
211  */
212 static unsigned int num_peers;
213
214 /**
215  * Number of hosts in the hosts array
216  */
217 static unsigned int num_hosts;
218
219 /**
220  * Number of random links to be established between peers
221  */
222 static unsigned int num_links;
223
224 /**
225  * Global testing status
226  */
227 static int result;
228
229 /**
230  * current state of profiling
231  */
232 enum State state;
233
234
235 /**
236  * Shutdown nicely
237  *
238  * @param cls NULL
239  * @param tc the task context
240  */
241 static void
242 do_shutdown (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
243 {
244   struct DLLOperation *dll_op;
245   unsigned int nhost;
246
247   if (GNUNET_SCHEDULER_NO_TASK != abort_task)
248     GNUNET_SCHEDULER_cancel (abort_task);
249   if (GNUNET_SCHEDULER_NO_TASK != register_hosts_task)
250     GNUNET_SCHEDULER_cancel (register_hosts_task);
251   if (NULL != reg_handle)
252     GNUNET_TESTBED_cancel_registration (reg_handle);
253   if (NULL != topology_op)
254     GNUNET_TESTBED_operation_cancel (topology_op);
255   for (nhost = 0; nhost < num_hosts; nhost++)
256     if (NULL != hosts[nhost])
257       GNUNET_TESTBED_host_destroy (hosts[nhost]);
258   GNUNET_free_non_null (hosts);
259   while (NULL != (dll_op = dll_op_head))
260   {
261     GNUNET_TESTBED_operation_cancel (dll_op->op);
262     GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
263     GNUNET_free (dll_op);
264   }
265   if (NULL != mc)
266     GNUNET_TESTBED_controller_disconnect (mc);
267   if (NULL != mc_proc)
268     GNUNET_TESTBED_controller_stop (mc_proc);
269   if (NULL != cfg)
270     GNUNET_CONFIGURATION_destroy (cfg);
271
272   //FIXME       GNUNET_MESH_disconnect (peers[i].mesh_handle);
273
274   GNUNET_SCHEDULER_shutdown (); /* Stop scheduler to shutdown testbed run */
275 }
276
277
278 /**
279  * abort task to run on test timed out
280  *
281  * @param cls NULL
282  * @param tc the task context
283  */
284 static void
285 do_abort (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
286 {
287   GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Aborting\n");
288   abort_task = GNUNET_SCHEDULER_NO_TASK;
289   result = GNUNET_SYSERR;
290   GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
291 }
292
293
294 /**
295  * Method called whenever another peer has added us to a tunnel
296  * the other peer initiated.
297  * Only called (once) upon reception of data with a message type which was
298  * subscribed to in GNUNET_MESH_connect. A call to GNUNET_MESH_tunnel_destroy
299  * causes te tunnel to be ignored and no further notifications are sent about
300  * the same tunnel.
301  *
302  * @param cls closure
303  * @param tunnel new handle to the tunnel
304  * @param initiator peer that started the tunnel
305  * @param atsi performance information for the tunnel
306  * @return initial tunnel context for the tunnel
307  *         (can be NULL -- that's not an error)
308  */
309 void *
310 mesh_inbound_tunnel_handler (void *cls, struct GNUNET_MESH_Tunnel *tunnel,
311                              const struct GNUNET_PeerIdentity *initiator,
312                              const struct GNUNET_ATS_Information *atsi)
313 {
314   return NULL;
315 }
316
317
318 /**
319  * Function called whenever an inbound tunnel is destroyed.  Should clean up
320  * any associated state.  This function is NOT called if the client has
321  * explicitly asked for the tunnel to be destroyed using
322  * GNUNET_MESH_tunnel_destroy. It must NOT call GNUNET_MESH_tunnel_destroy on
323  * the tunnel.
324  *
325  * @param cls closure (set from GNUNET_MESH_connect)
326  * @param tunnel connection to the other end (henceforth invalid)
327  * @param tunnel_ctx place where local state associated
328  *                   with the tunnel is stored
329  */
330 void
331 mesh_tunnel_end_handler (void *cls, const struct GNUNET_MESH_Tunnel *tunnel,
332                          void *tunnel_ctx)
333 {
334
335 }
336
337
338 /**
339  * Mesh connect callback.
340  *
341  * @param cls internal peer id.
342  * @param op operation handle.
343  * @param ca_result connect adapter result.
344  * @param emsg error message.
345  */
346 void
347 mesh_connect_cb (void *cls, struct GNUNET_TESTBED_Operation *op,
348                  void *ca_result, const char *emsg)
349 {
350   static unsigned int connected_mesh_handles;
351   struct Peer *peer = (struct Peer *) cls;
352   unsigned int peer_cnt;
353
354   if (NULL != emsg)
355   {
356     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Mesh connect failed: %s\n", emsg);
357     GNUNET_assert (0);
358   }
359
360   GNUNET_assert (peer->op_handle == op);
361   GNUNET_assert (peer->mesh_handle == ca_result);
362
363   printf (".");
364   fflush (stdout);
365
366   if (++connected_mesh_handles == num_peers)
367   {
368     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "All mesh handles connected\n");
369
370     // TODO announce regexes...
371
372     for (peer_cnt = 0; peer_cnt < num_peers; peer_cnt++)
373     {
374       GNUNET_TESTBED_operation_done (peers[peer_cnt].op_handle);
375     }
376   }
377   
378 }
379
380
381 /**
382  * Mesh connect adapter.
383  *
384  * @param cls not used.
385  * @param cfg configuration handle.
386  *
387  * @return
388  */
389 void *
390 mesh_ca (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg)
391 {
392   struct Peer *peer = (struct Peer *) cls;
393
394   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "mesh connect adapter\n");
395
396   static struct GNUNET_MESH_MessageHandler handlers[] = {
397     {NULL, 0, 0}
398   };
399
400   static GNUNET_MESH_ApplicationType apptypes[] = {
401     GNUNET_APPLICATION_TYPE_END
402   };
403
404   peer->mesh_handle =
405       GNUNET_MESH_connect (cfg, cls, &mesh_inbound_tunnel_handler,
406                            &mesh_tunnel_end_handler, handlers, apptypes);
407
408   return peer->mesh_handle;
409 }
410
411
412 /**
413  * Adapter function called to destroy a connection to
414  * the mesh service
415  *
416  * @param cls closure
417  * @param op_result service handle returned from the connect adapter
418  */
419 void
420 mesh_da (void *cls, void *op_result)
421 {
422   static unsigned int disconnected_mesh_handles;
423   struct Peer *peer = (struct Peer *) cls;
424
425   GNUNET_assert (peer->mesh_handle == op_result);
426
427   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "mesh disconnect adapter\n");
428
429   GNUNET_MESH_disconnect (peer->mesh_handle);
430   peer->mesh_handle = NULL;
431
432   if (++disconnected_mesh_handles == num_peers)
433   {
434     GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
435   }
436 }
437
438
439 /**
440  * Functions of this signature are called when a peer has been successfully
441  * started or stopped.
442  *
443  * @param cls the closure from GNUNET_TESTBED_peer_start/stop()
444  * @param emsg NULL on success; otherwise an error description
445  */
446 static void
447 peer_churn_cb (void *cls, const char *emsg)
448 {
449   struct DLLOperation *dll_op = cls;
450   struct GNUNET_TESTBED_Operation *op;
451   static unsigned int started_peers;
452   unsigned int peer_cnt;
453
454   op = dll_op->op;
455   GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
456   GNUNET_free (dll_op);
457   if (NULL != emsg)
458   {
459     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
460          _("An operation has failed while starting peers\n"));
461     GNUNET_TESTBED_operation_done (op);
462     GNUNET_SCHEDULER_cancel (abort_task);
463     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, NULL);
464     return;
465   }
466   GNUNET_TESTBED_operation_done (op);
467   if (++started_peers == num_peers)
468   {
469     prof_time = GNUNET_TIME_absolute_get_duration (prof_start_time);
470     printf ("All peers started successfully in %.2f seconds\n",
471             ((double) prof_time.rel_value) / 1000.00);
472     result = GNUNET_OK;
473     if (0 == num_links)
474     {
475       GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
476       return;
477     }
478
479     peer_handles = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_Peer *) * num_peers);
480     for (peer_cnt = 0; peer_cnt < num_peers; peer_cnt++)
481       peer_handles[peer_cnt] = peers[peer_cnt].peer_handle;
482
483     state = STATE_PEERS_LINKING;
484     /* Do overlay connect */
485     prof_start_time = GNUNET_TIME_absolute_get ();
486     topology_op =
487         GNUNET_TESTBED_overlay_configure_topology (NULL, num_peers, peer_handles,
488                                                    GNUNET_TESTBED_TOPOLOGY_ERDOS_RENYI,
489                                                    num_links);
490     if (NULL == topology_op)
491     {
492       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
493                   "Cannot create topology, op handle was NULL\n");
494       GNUNET_assert (0);
495     }
496   }
497 }
498
499
500 /**
501  * Functions of this signature are called when a peer has been successfully
502  * created
503  *
504  * @param cls the closure from GNUNET_TESTBED_peer_create()
505  * @param peer the handle for the created peer; NULL on any error during
506  *          creation
507  * @param emsg NULL if peer is not NULL; else MAY contain the error description
508  */
509 static void
510 peer_create_cb (void *cls, struct GNUNET_TESTBED_Peer *peer, const char *emsg)
511 {
512   struct DLLOperation *dll_op = cls;
513   struct Peer *peer_ptr;
514   static unsigned int created_peers;
515   unsigned int peer_cnt;
516
517   if (NULL != emsg)
518   {
519     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
520          _("Creating a peer failed. Error: %s\n"), emsg);
521     GNUNET_TESTBED_operation_done (dll_op->op);
522     GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
523     GNUNET_free (dll_op);
524     GNUNET_SCHEDULER_cancel (abort_task);
525     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, NULL);
526     return;
527   }
528
529   peer_ptr = dll_op->cls;
530   GNUNET_assert (NULL == peer_ptr->peer_handle);
531   peer_ptr->peer_handle = peer;
532   GNUNET_TESTBED_operation_done (dll_op->op);
533   GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
534   GNUNET_free (dll_op);
535
536   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %i created on host %s\n",
537               created_peers,
538               GNUNET_TESTBED_host_get_hostname (peer_ptr->host_handle));
539
540   if (++created_peers == num_peers)
541   {
542     prof_time = GNUNET_TIME_absolute_get_duration (prof_start_time);
543     printf ("All peers created successfully in %.2f seconds\n",
544             ((double) prof_time.rel_value) / 1000.00);
545     /* Now peers are to be started */
546     state = STATE_PEERS_STARTING;
547     prof_start_time = GNUNET_TIME_absolute_get ();
548     for (peer_cnt = 0; peer_cnt < num_peers; peer_cnt++)
549     {
550       dll_op = GNUNET_malloc (sizeof (struct DLLOperation));
551       dll_op->op = GNUNET_TESTBED_peer_start (dll_op, peers[peer_cnt].peer_handle,
552                                               &peer_churn_cb, dll_op);
553       GNUNET_CONTAINER_DLL_insert_tail (dll_op_head, dll_op_tail, dll_op);
554     }
555   }
556 }
557
558
559 /**
560  * Controller event callback
561  *
562  * @param cls NULL
563  * @param event the controller event
564  */
565 static void
566 controller_event_cb (void *cls,
567                      const struct GNUNET_TESTBED_EventInformation *event)
568 {
569   struct DLLOperation *dll_op;
570   struct GNUNET_TESTBED_Operation *op;
571
572   switch (state)
573   {
574   case STATE_SLAVES_STARTING:
575     switch (event->type)
576     {
577     case GNUNET_TESTBED_ET_OPERATION_FINISHED:
578       {
579         static unsigned int slaves_started;
580         unsigned int peer_cnt;
581
582         dll_op = event->details.operation_finished.op_cls;
583         GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
584         GNUNET_free (dll_op);
585         op = event->details.operation_finished.operation;
586         if (NULL != event->details.operation_finished.emsg)
587         {
588           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
589                _("An operation has failed while starting slaves\n"));
590           GNUNET_TESTBED_operation_done (op);
591           GNUNET_SCHEDULER_cancel (abort_task);
592           abort_task = GNUNET_SCHEDULER_add_now (&do_abort, NULL);
593           return;
594         }
595         GNUNET_TESTBED_operation_done (op);
596         /* Proceed to start peers */
597         if (++slaves_started == num_hosts - 1)
598         {
599           printf ("All slaves started successfully\n");
600           state = STATE_PEERS_CREATING;
601           prof_start_time = GNUNET_TIME_absolute_get ();
602           peers = GNUNET_malloc (sizeof (struct Peer) * num_peers);
603           for (peer_cnt = 0; peer_cnt < num_peers; peer_cnt++)
604           {
605             GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Creating peer %i on host %s\n",
606                         peer_cnt,
607                         GNUNET_TESTBED_host_get_hostname (hosts[peer_cnt % num_hosts]));
608
609             peers[peer_cnt].host_handle = hosts[peer_cnt % num_hosts];
610
611             dll_op = GNUNET_malloc (sizeof (struct DLLOperation));
612             dll_op->cls = &peers[peer_cnt];
613             dll_op->op = GNUNET_TESTBED_peer_create (mc,
614                                                      hosts[peer_cnt % num_hosts],
615                                                      cfg,
616                                                      &peer_create_cb,
617                                                      dll_op);
618             GNUNET_CONTAINER_DLL_insert_tail (dll_op_head, dll_op_tail, dll_op);
619           }
620         }
621       }
622       break;
623     default:
624       GNUNET_assert (0);
625     }
626     break;
627   case STATE_PEERS_STARTING:
628     switch (event->type)
629     {
630     case GNUNET_TESTBED_ET_OPERATION_FINISHED:
631       /* Control reaches here when peer start fails */
632     case GNUNET_TESTBED_ET_PEER_START:
633       /* we handle peer starts in peer_churn_cb */
634       break;
635     default:
636       GNUNET_assert (0);
637     }
638     break;
639   case STATE_PEERS_LINKING:
640    switch (event->type)
641     {
642     case GNUNET_TESTBED_ET_OPERATION_FINISHED:
643       /* Control reaches here when a peer linking operation fails */
644       if (NULL != event->details.operation_finished.emsg)
645       {
646         GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
647              _("An operation has failed while linking\n"));
648         GNUNET_SCHEDULER_cancel (abort_task);
649         abort_task = GNUNET_SCHEDULER_add_now (&do_abort, NULL);
650       }
651       break;
652     case GNUNET_TESTBED_ET_CONNECT:
653       {
654         static unsigned int established_links;
655         unsigned int peer_cnt;
656
657         if (0 == established_links)
658           printf ("Establishing links\n .");
659         else
660         {
661           printf (".");
662           fflush (stdout);
663         }
664         if (++established_links == num_links)
665         {
666           prof_time = GNUNET_TIME_absolute_get_duration (prof_start_time);
667           printf ("\n%u links established in %.2f seconds\n",
668                   num_links, ((double) prof_time.rel_value) / 1000.00);
669           result = GNUNET_OK;
670           GNUNET_free (peer_handles);
671           printf ("\nConnecting to mesh service...\n");
672           for (peer_cnt = 0; peer_cnt < num_peers; peer_cnt++)
673           {
674             peers[peer_cnt].op_handle = GNUNET_TESTBED_service_connect (NULL,
675                                                                         peers[peer_cnt].peer_handle,
676                                                                         "mesh",
677                                                                         &mesh_connect_cb,
678                                                                         &peers[peer_cnt],
679                                                                         &mesh_ca,
680                                                                         &mesh_da,
681                                                                         &peers[peer_cnt]);
682           }
683         }
684       }
685       break;
686     default:
687       GNUNET_assert (0);
688     }
689     break;
690   default:
691     GNUNET_assert (0);
692   }
693 }
694
695
696 /**
697  * Task to register all hosts available in the global host list
698  *
699  * @param cls NULL
700  * @param tc the scheduler task context
701  */
702 static void
703 register_hosts (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
704
705
706 /**
707  * Callback which will be called to after a host registration succeeded or failed
708  *
709  * @param cls the closure
710  * @param emsg the error message; NULL if host registration is successful
711  */
712 static void
713 host_registration_completion (void *cls, const char *emsg)
714 {
715   reg_handle = NULL;
716   if (NULL != emsg)
717   {
718     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
719                 _("Host registration failed for a host. Error: %s\n"), emsg);
720     GNUNET_SCHEDULER_cancel (abort_task);
721     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, NULL);
722     return;
723   }
724   register_hosts_task = GNUNET_SCHEDULER_add_now (&register_hosts, NULL);
725 }
726
727
728 /**
729  * Task to register all hosts available in the global host list
730  *
731  * @param cls NULL
732  * @param tc the scheduler task context
733  */
734 static void
735 register_hosts (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
736 {
737   struct DLLOperation *dll_op;
738   static unsigned int reg_host;
739   unsigned int slave;
740
741   register_hosts_task = GNUNET_SCHEDULER_NO_TASK;
742   if (reg_host == num_hosts - 1)
743   {
744     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
745                 "All hosts successfully registered\n");
746     /* Start slaves */
747     state = STATE_SLAVES_STARTING;
748     for (slave = 1; slave < num_hosts; slave++)
749     {
750       dll_op = GNUNET_malloc (sizeof (struct DLLOperation));
751       dll_op->op = GNUNET_TESTBED_controller_link (dll_op,
752                                                    mc,
753                                                    hosts[slave],
754                                                    hosts[0],
755                                                    cfg,
756                                                    GNUNET_YES);
757       GNUNET_CONTAINER_DLL_insert_tail (dll_op_head, dll_op_tail, dll_op);
758     }
759     return;
760   }
761   reg_handle = GNUNET_TESTBED_register_host (mc, hosts[++reg_host],
762                                              host_registration_completion,
763                                              NULL);
764 }
765
766
767 /**
768  * Callback to signal successfull startup of the controller process
769  *
770  * @param cls the closure from GNUNET_TESTBED_controller_start()
771  * @param cfg the configuration with which the controller has been started;
772  *          NULL if status is not GNUNET_OK
773  * @param status GNUNET_OK if the startup is successfull; GNUNET_SYSERR if not,
774  *          GNUNET_TESTBED_controller_stop() shouldn't be called in this case
775  */
776 static void
777 status_cb (void *cls, const struct GNUNET_CONFIGURATION_Handle *config, int status)
778 {
779   GNUNET_SCHEDULER_cancel (abort_task);
780   if (GNUNET_OK != status)
781   {
782     mc_proc = NULL;
783     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, NULL);
784     return;
785   }
786   event_mask = 0;
787   event_mask |= (1LL << GNUNET_TESTBED_ET_PEER_START);
788   event_mask |= (1LL << GNUNET_TESTBED_ET_PEER_STOP);
789   event_mask |= (1LL << GNUNET_TESTBED_ET_CONNECT);
790   event_mask |= (1LL << GNUNET_TESTBED_ET_DISCONNECT);
791   event_mask |= (1LL << GNUNET_TESTBED_ET_OPERATION_FINISHED);
792   mc = GNUNET_TESTBED_controller_connect (config, hosts[0], event_mask,
793                                           &controller_event_cb, NULL);
794   if (NULL == mc)
795   {
796     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
797                 _("Unable to connect to master controller -- Check config\n"));
798     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, NULL);
799     return;
800   }
801   register_hosts_task = GNUNET_SCHEDULER_add_now (&register_hosts, NULL);
802   abort_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
803                                              &do_abort, NULL);
804 }
805
806
807 /**
808  * Main function that will be run by the scheduler.
809  *
810  * @param cls closure
811  * @param args remaining command-line arguments
812  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
813  * @param config configuration
814  */
815 static void
816 run (void *cls, char *const *args, const char *cfgfile,
817      const struct GNUNET_CONFIGURATION_Handle *config)
818 {
819   unsigned int nhost;
820
821   if (NULL == args[0])
822   {
823     fprintf (stderr, _("No hosts-file specified on command line\n"));
824     return;
825   }
826   if (0 == num_peers)
827   {
828     result = GNUNET_OK;
829     return;
830   }
831   num_hosts = GNUNET_TESTBED_hosts_load_from_file (args[0], &hosts);
832   if (0 == num_hosts)
833   {
834     fprintf (stderr, _("No hosts loaded. Need at least one host\n"));
835     return;
836   }
837   for (nhost = 0; nhost < num_hosts; nhost++)
838   {
839     if (GNUNET_YES != GNUNET_TESTBED_is_host_habitable (hosts[nhost]))
840     {
841       fprintf (stderr, _("Host %s cannot start testbed\n"),
842                          GNUNET_TESTBED_host_get_hostname (hosts[nhost]));
843       break;
844     }
845   }
846   if (num_hosts != nhost)
847   {
848     fprintf (stderr, _("Exiting\n"));
849     GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
850     return;
851   }
852   if (NULL == config)
853   {
854     fprintf (stderr, _("No configuration file given. Exiting\n"));
855     GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
856     return;
857   }
858
859   cfg = GNUNET_CONFIGURATION_dup (config);
860   mc_proc =
861       GNUNET_TESTBED_controller_start (GNUNET_TESTBED_host_get_hostname
862                                        (hosts[0]),
863                                        hosts[0],
864                                        cfg,
865                                        status_cb,
866                                        NULL);
867   abort_task =
868       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
869                                     (GNUNET_TIME_UNIT_SECONDS, 5), &do_abort,
870                                     NULL);
871 }
872
873
874 /**
875  * Main function.
876  *
877  * @return 0 on success
878  */
879 int
880 main (int argc, char *const *argv)
881 {
882   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
883     { 'p', "num-peers", "COUNT",
884       gettext_noop ("create COUNT number of peers"),
885       GNUNET_YES, &GNUNET_GETOPT_set_uint, &num_peers },
886     { 'n', "num-links", "COUNT",
887       gettext_noop ("create COUNT number of random links"),
888       GNUNET_YES, &GNUNET_GETOPT_set_uint, &num_links },
889     GNUNET_GETOPT_OPTION_END
890   };
891   int ret;
892
893   if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
894     return 2;
895
896   result = GNUNET_SYSERR;
897   ret =
898       GNUNET_PROGRAM_run (argc, argv, "gnunet-regex-profiler [OPTIONS] hosts-file",
899                           _("Profiler for regex/mesh"),
900                           options, &run, NULL);
901   if (GNUNET_OK != ret)
902     return ret;
903   if (GNUNET_OK != result)
904     return 1;
905   return 0;
906 }