- more feedback: count and show connection errors
[oweals/gnunet.git] / src / regex / gnunet-regex-profiler.c
1 /*
2      This file is part of GNUnet.
3      (C) 2011 - 2013 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 regex/gnunet-regex-profiler.c
23  * @brief Regex profiler for testing distributed regex use.
24  * @author Bartlomiej Polot
25  * @author Maximilian Szengel
26  *
27  */
28
29 #include <string.h>
30
31 #include "platform.h"
32 #include "gnunet_applications.h"
33 #include "gnunet_util_lib.h"
34 #include "gnunet_regex_lib.h"
35 #include "gnunet_dht_service.h"
36 #include "gnunet_testbed_service.h"
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  * Available 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    * Starting peers
87    */
88   STATE_PEERS_STARTING,
89
90   /**
91    * Linking peers
92    */
93   STATE_PEERS_LINKING,
94
95   /**
96    * Matching strings against announced regexes
97    */
98   STATE_SEARCH_REGEX,
99
100   /**
101    * Destroying peers; we can do this as the controller takes care of stopping a
102    * peer if it is running
103    */
104   STATE_PEERS_DESTROYING
105 };
106
107
108 /**
109  * Peer handles.
110  */
111 struct RegexPeer
112 {
113   /**
114    * Peer id.
115    */
116   unsigned int id;
117
118   /**
119    * Peer configuration handle.
120    */
121   struct GNUNET_CONFIGURATION_Handle *cfg;
122
123   /**
124    * The actual testbed peer handle.
125    */
126   struct GNUNET_TESTBED_Peer *peer_handle;
127
128   /**
129    * Host on which the peer is running.
130    */
131   struct GNUNET_TESTBED_Host *host_handle;
132
133   /**
134    * Filename of the peer's policy file.
135    */
136   char *policy_file;
137
138   /**
139    * Peers search string.
140    */
141   const char *search_str;
142
143   /**
144    * Set to GNUNET_YES if the peer successfully matched the above
145    * search string. GNUNET_NO if the string could not be matched
146    * during the profiler run. GNUNET_SYSERR if the string matching
147    * timed out. Undefined if search_str is NULL
148    */
149   int search_str_matched;
150
151   /**
152    * Peer's dht handle.
153    */
154   struct GNUNET_DHT_Handle *dht_handle;
155
156   /**
157    * Handle to a running regex search.
158    */
159    struct GNUNET_REGEX_search_handle *search_handle;
160
161   /**
162    * Testbed operation handle for the dht service.
163    */
164   struct GNUNET_TESTBED_Operation *dht_op_handle;
165
166   /**
167    * Peers's statistics handle.
168    */
169   struct GNUNET_STATISTICS_Handle *stats_handle;
170
171   /**
172    * Testbed operation handle for the statistics service.
173    */
174   struct GNUNET_TESTBED_Operation *stats_op_handle;
175
176   /**
177    * The starting time of a profiling step.
178    */
179   struct GNUNET_TIME_Absolute prof_start_time;
180 };
181
182
183 /**
184  * An array of hosts loaded from the hostkeys file
185  */
186 static struct GNUNET_TESTBED_Host **hosts;
187
188 /**
189  * Array of peer handles used to pass to
190  * GNUNET_TESTBED_overlay_configure_topology
191  */
192 static struct GNUNET_TESTBED_Peer **peer_handles;
193
194 /**
195  * The array of peers; we fill this as the peers are given to us by the testbed
196  */
197 static struct RegexPeer *peers;
198
199 /**
200  * Host registration handle
201  */
202 static struct GNUNET_TESTBED_HostRegistrationHandle *reg_handle;
203
204 /**
205  * Handle to the master controller process
206  */
207 static struct GNUNET_TESTBED_ControllerProc *mc_proc;
208
209 /**
210  * Handle to the master controller
211  */
212 static struct GNUNET_TESTBED_Controller *mc;
213
214 /**
215  * Handle to global configuration
216  */
217 static struct GNUNET_CONFIGURATION_Handle *cfg;
218
219 /**
220  * Head of the operations list
221  */
222 static struct DLLOperation *dll_op_head;
223
224 /**
225  * Tail of the operations list
226  */
227 static struct DLLOperation *dll_op_tail;
228
229 /**
230  * Peer linking - topology operation
231  */
232 static struct GNUNET_TESTBED_Operation *topology_op;
233
234 /**
235  * The handle for whether a host is habitable or not
236  */
237 struct GNUNET_TESTBED_HostHabitableCheckHandle **hc_handles;
238
239 /**
240  * Abort task identifier
241  */
242 static GNUNET_SCHEDULER_TaskIdentifier abort_task;
243
244 /**
245  * Shutdown task identifier
246  */
247 static GNUNET_SCHEDULER_TaskIdentifier shutdown_task;
248
249 /**
250  * Host registration task identifier
251  */
252 static GNUNET_SCHEDULER_TaskIdentifier register_hosts_task;
253
254 /**
255  * Global event mask for all testbed events
256  */
257 static uint64_t event_mask;
258
259 /**
260  * The starting time of a profiling step
261  */
262 static struct GNUNET_TIME_Absolute prof_start_time;
263
264 /**
265  * Duration profiling step has taken
266  */
267 static struct GNUNET_TIME_Relative prof_time;
268
269 /**
270  * Number of peers to be started by the profiler
271  */
272 static unsigned int num_peers;
273
274 /**
275  * Number of hosts in the hosts array
276  */
277 static unsigned int num_hosts;
278
279 /**
280  * Factor of number of links. num_links = num_peers * linking_factor.
281  */
282 static unsigned int linking_factor;
283
284 /**
285  * Number of random links to be established between peers
286  */
287 static unsigned int num_links;
288
289 /**
290  * Number of times we try overlay connect operations
291  */
292 static unsigned int retry_links;
293
294 /**
295  * Continuous failures during overlay connect operations
296  */
297 static unsigned int cont_fails;
298
299 /**
300  * Global testing status
301  */
302 static int result;
303
304 /**
305  * current state of profiling
306  */
307 enum State state;
308
309 /**
310  * Folder where policy files are stored.
311  */
312 static char * policy_dir;
313
314 /**
315  * Search strings.
316  */
317 static char **search_strings;
318
319 /**
320  * Number of search strings.
321  */
322 static int num_search_strings;
323
324 /**
325  * Number of peers found with search strings.
326  */
327 static unsigned int peers_found;
328
329 /**
330  * Search task identifier
331  */
332 static GNUNET_SCHEDULER_TaskIdentifier search_task;
333
334 /**
335  * Search timeout task identifier.
336  */
337 static GNUNET_SCHEDULER_TaskIdentifier search_timeout_task;
338
339 /**
340  * Search timeout in seconds.
341  */
342 static struct GNUNET_TIME_Relative search_timeout = { 60000 };
343
344 /**
345  * How long do we wait before starting the search?
346  * Default: 1 m.
347  */
348 static struct GNUNET_TIME_Relative search_delay = { 60000 };
349
350 /**
351  * File to log statistics to.
352  */
353 static struct GNUNET_DISK_FileHandle *data_file;
354
355 /**
356  * Filename to log statistics to.
357  */
358 static char *data_filename;
359
360 /**
361  * Maximal path compression length.
362  */
363 static unsigned int max_path_compression;
364
365 /**
366  * If we should distribute the search evenly throught all peers (each
367  * peer searches for a string) or if only one peer should search for
368  * all strings.
369  */
370 static int no_distributed_search;
371
372 /**
373  * Prefix used for regex announcing. We need to prefix the search
374  * strings with it, in order to find something.
375  */
376 static char * regex_prefix;
377
378
379 /******************************************************************************/
380 /******************************  DECLARATIONS  ********************************/
381 /******************************************************************************/
382
383
384 /**
385  * Search callback function.
386  *
387  * @param cls Closure provided in GNUNET_REGEX_search.
388  * @param id Peer providing a regex that matches the string.
389  * @param get_path Path of the get request.
390  * @param get_path_length Lenght of get_path.
391  * @param put_path Path of the put request.
392  * @param put_path_length Length of the put_path.
393  */
394 static void
395 regex_found_handler (void *cls,
396                      const struct GNUNET_PeerIdentity *id,
397                      const struct GNUNET_PeerIdentity *get_path,
398                      unsigned int get_path_length,
399                      const struct GNUNET_PeerIdentity *put_path,
400                      unsigned int put_path_length);
401
402
403 /**
404  * DHT connect callback.
405  *
406  * @param cls internal peer id.
407  * @param op operation handle.
408  * @param ca_result connect adapter result.
409  * @param emsg error message.
410  */
411 static void
412 dht_connect_cb (void *cls, struct GNUNET_TESTBED_Operation *op,
413                 void *ca_result, const char *emsg);
414
415 /**
416  * DHT connect adapter.
417  *
418  * @param cls not used.
419  * @param cfg configuration handle.
420  *
421  * @return
422  */
423 static void *
424 dht_ca (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg);
425
426
427 /**
428  * Adapter function called to destroy a connection to
429  * the DHT service
430  *
431  * @param cls closure
432  * @param op_result service handle returned from the connect adapter
433  */
434 static void
435 dht_da (void *cls, void *op_result);
436
437
438 /**
439  * Function called by testbed once we are connected to stats
440  * service. Get the statistics for the services of interest.
441  *
442  * @param cls the 'struct RegexPeer' for which we connected to stats
443  * @param op connect operation handle
444  * @param ca_result handle to stats service
445  * @param emsg error message on failure
446  */
447 static void
448 stats_connect_cb (void *cls,
449                   struct GNUNET_TESTBED_Operation *op,
450                   void *ca_result,
451                   const char *emsg);
452
453
454 /**
455  * Task to collect all statistics from all peers, will shutdown the
456  * profiler, when done.
457  *
458  * @param cls NULL
459  * @param tc the task context
460  */
461 static void
462 do_collect_stats (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
463
464
465 /******************************************************************************/
466 /********************************  SHUTDOWN  **********************************/
467 /******************************************************************************/
468
469
470 /**
471  * Shutdown nicely
472  *
473  * @param cls NULL
474  * @param tc the task context
475  */
476 static void
477 do_shutdown (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
478 {
479   struct DLLOperation *dll_op;
480   struct RegexPeer *peer;
481   unsigned int nhost;
482   unsigned int peer_cnt;
483   unsigned int search_str_cnt;
484   char output_buffer[512];
485   size_t size;
486
487   shutdown_task = GNUNET_SCHEDULER_NO_TASK;
488   if (GNUNET_SCHEDULER_NO_TASK != abort_task)
489     GNUNET_SCHEDULER_cancel (abort_task);
490   if (NULL != hc_handles)
491   {
492     for (nhost = 0; nhost < num_hosts; nhost++)
493       if (NULL != hc_handles[nhost])
494         GNUNET_TESTBED_is_host_habitable_cancel (hc_handles[nhost]);
495     GNUNET_free (hc_handles);
496     hc_handles = NULL;
497   }
498   if (GNUNET_SCHEDULER_NO_TASK != register_hosts_task)
499     GNUNET_SCHEDULER_cancel (register_hosts_task);
500
501   for (peer_cnt = 0; peer_cnt < num_peers; peer_cnt++)
502   {
503     peer = &peers[peer_cnt];
504
505     if (GNUNET_YES != peer->search_str_matched && NULL != data_file)
506     {
507       prof_time = GNUNET_TIME_absolute_get_duration (peer->prof_start_time);
508       size =
509         GNUNET_snprintf (output_buffer,
510                          sizeof (output_buffer),
511                          "%p Search string not found: %s (%d)\n%p On peer: %u (%p)\n%p With policy file: %s\n%p After: %s\n",
512                          peer, peer->search_str, peer->search_str_matched,
513                          peer, peer->id, peer,
514                          peer, peer->policy_file,
515                          peer,
516                          GNUNET_STRINGS_relative_time_to_string (prof_time,
517                                                                  GNUNET_NO));
518       if (size != GNUNET_DISK_file_write (data_file, output_buffer, size))
519         GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Unable to write to file!\n");
520     }
521
522     if (NULL != peers[peer_cnt].dht_op_handle)
523       GNUNET_TESTBED_operation_done (peers[peer_cnt].dht_op_handle);
524     if (NULL != peers[peer_cnt].stats_op_handle)
525       GNUNET_TESTBED_operation_done (peers[peer_cnt].stats_op_handle);
526   }
527
528   if (NULL != data_file)
529     GNUNET_DISK_file_close (data_file);
530
531   for (search_str_cnt = 0;
532        search_str_cnt < num_search_strings && NULL != search_strings;
533        search_str_cnt++)
534   {
535     GNUNET_free_non_null (search_strings[search_str_cnt]);
536   }
537   GNUNET_free_non_null (search_strings);
538
539   if (NULL != reg_handle)
540     GNUNET_TESTBED_cancel_registration (reg_handle);
541   if (NULL != topology_op)
542     GNUNET_TESTBED_operation_done (topology_op);
543   for (nhost = 0; nhost < num_hosts; nhost++)
544     if (NULL != hosts[nhost])
545       GNUNET_TESTBED_host_destroy (hosts[nhost]);
546   GNUNET_free_non_null (hosts);
547
548   while (NULL != (dll_op = dll_op_head))
549   {
550     GNUNET_TESTBED_operation_done (dll_op->op);
551     GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
552     GNUNET_free (dll_op);
553   }
554   if (NULL != mc)
555     GNUNET_TESTBED_controller_disconnect (mc);
556   if (NULL != mc_proc)
557     GNUNET_TESTBED_controller_stop (mc_proc);
558   if (NULL != cfg)
559     GNUNET_CONFIGURATION_destroy (cfg);
560
561   GNUNET_SCHEDULER_shutdown (); /* Stop scheduler to shutdown testbed run */
562 }
563
564
565 /**
566  * abort task to run on test timed out
567  *
568  * @param cls NULL
569  * @param tc the task context
570  */
571 static void
572 do_abort (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
573 {
574   unsigned long i = (unsigned long) cls;
575
576   GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Aborting %lu...\n", i);
577   abort_task = GNUNET_SCHEDULER_NO_TASK;
578   result = GNUNET_SYSERR;
579   if (GNUNET_SCHEDULER_NO_TASK != shutdown_task)
580     GNUNET_SCHEDULER_cancel (shutdown_task);
581   shutdown_task = GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
582 }
583
584
585 /******************************************************************************/
586 /*********************  STATISTICS SERVICE CONNECTIONS  ***********************/
587 /******************************************************************************/
588
589 /**
590  * Adapter function called to establish a connection to
591  * statistics service.
592  *
593  * @param cls closure
594  * @param cfg configuration of the peer to connect to; will be available until
595  *          GNUNET_TESTBED_operation_done() is called on the operation returned
596  *          from GNUNET_TESTBED_service_connect()
597  * @return service handle to return in 'op_result', NULL on error
598  */
599 static void *
600 stats_ca (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg)
601 {
602   return GNUNET_STATISTICS_create ("<driver>", cfg);
603 }
604
605
606 /**
607  * Adapter function called to destroy a connection to
608  * statistics service.
609  *
610  * @param cls closure
611  * @param op_result service handle returned from the connect adapter
612  */
613 static void
614 stats_da (void *cls, void *op_result)
615 {
616   struct RegexPeer *peer = cls;
617
618   GNUNET_assert (op_result == peer->stats_handle);
619
620   GNUNET_STATISTICS_destroy (peer->stats_handle, GNUNET_NO);
621   peer->stats_handle = NULL;
622 }
623
624
625 /**
626  * Process statistic values. Write all values to global 'data_file', if present.
627  *
628  * @param cls closure
629  * @param subsystem name of subsystem that created the statistic
630  * @param name the name of the datum
631  * @param value the current value
632  * @param is_persistent GNUNET_YES if the value is persistent, GNUNET_NO if not
633  * @return GNUNET_OK to continue, GNUNET_SYSERR to abort iteration
634  */
635 static int
636 stats_iterator (void *cls, const char *subsystem, const char *name,
637                 uint64_t value, int is_persistent)
638 {
639   struct RegexPeer *peer = cls;
640   char output_buffer[512];
641   size_t size;
642
643   if (NULL == data_file)
644   {
645     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
646                 "%p -> %s [%s]: %llu\n",
647                 peer, subsystem, name, value);
648     return GNUNET_OK;
649   }
650   size =
651     GNUNET_snprintf (output_buffer,
652                      sizeof (output_buffer),
653                      "%p [%s] %llu %s\n",
654                      peer,
655                      subsystem, value, name);
656   if (size != GNUNET_DISK_file_write (data_file, output_buffer, size))
657     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Unable to write to file!\n");
658
659   return GNUNET_OK;
660 }
661
662
663 /**
664  * Stats callback. Finish the stats testbed operation and when all stats have
665  * been iterated, shutdown the profiler.
666  *
667  * @param cls closure
668  * @param success GNUNET_OK if statistics were
669  *        successfully obtained, GNUNET_SYSERR if not.
670  */
671 static void
672 stats_cb (void *cls,
673           int success)
674 {
675   static unsigned int peer_cnt;
676   struct RegexPeer *peer = cls;
677
678   if (GNUNET_OK != success)
679   {
680     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
681                 "Getting statistics for peer %u failed!\n",
682                 peer->id);
683     return;
684   }
685
686   GNUNET_assert (NULL != peer->stats_op_handle);
687
688   GNUNET_TESTBED_operation_done (peer->stats_op_handle);
689   peer->stats_op_handle = NULL;
690
691   peer_cnt++;
692   peer = &peers[peer_cnt];
693
694   if (peer_cnt == num_peers)
695   {
696     struct GNUNET_TIME_Relative delay = { 100 };
697     shutdown_task = GNUNET_SCHEDULER_add_delayed (delay, &do_shutdown, NULL);
698   }
699   else
700   {
701     peer->stats_op_handle =
702       GNUNET_TESTBED_service_connect (NULL,
703                                       peer->peer_handle,
704                                       "statistics",
705                                       &stats_connect_cb,
706                                       peer,
707                                       &stats_ca,
708                                       &stats_da,
709                                       peer);
710   }
711 }
712
713
714 /**
715  * Function called by testbed once we are connected to stats
716  * service. Get the statistics for the services of interest.
717  *
718  * @param cls the 'struct RegexPeer' for which we connected to stats
719  * @param op connect operation handle
720  * @param ca_result handle to stats service
721  * @param emsg error message on failure
722  */
723 static void
724 stats_connect_cb (void *cls,
725                   struct GNUNET_TESTBED_Operation *op,
726                   void *ca_result,
727                   const char *emsg)
728 {
729   struct RegexPeer *peer = cls;
730
731   if (NULL == ca_result || NULL != emsg)
732   {
733     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
734                 "Failed to connect to statistics service on peer %u: %s\n",
735                 peer->id, emsg);
736
737     peer->stats_handle = NULL;
738     return;
739   }
740
741   peer->stats_handle = ca_result;
742
743   if (NULL == GNUNET_STATISTICS_get (peer->stats_handle, NULL, NULL,
744                                      GNUNET_TIME_UNIT_FOREVER_REL,
745                                      &stats_cb,
746                                      &stats_iterator, peer))
747   {
748     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
749                 "Could not get statistics of peer %u!\n", peer->id);
750   }
751 }
752
753
754 /**
755  * Task to collect all statistics from all peers, will shutdown the
756  * profiler, when done.
757  *
758  * @param cls NULL
759  * @param tc the task context
760  */
761 static void
762 do_collect_stats (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
763 {
764   struct RegexPeer *peer = &peers[0];
765
766   GNUNET_assert (NULL != peer->peer_handle);
767
768   peer->stats_op_handle =
769     GNUNET_TESTBED_service_connect (NULL,
770                                     peer->peer_handle,
771                                     "statistics",
772                                     &stats_connect_cb,
773                                     peer,
774                                     &stats_ca,
775                                     &stats_da,
776                                     peer);
777 }
778
779
780 /******************************************************************************/
781 /************************  MESH SERVICE CONNECTIONS  **************************/
782 /******************************************************************************/
783
784 /**
785  * Method called when we've found a peer that announced a regex
786  * that matches our search string. Now get the statistics.
787  *
788  * @param cls Closure provided in GNUNET_REGEX_search.
789  * @param id Peer providing a regex that matches the string.
790  * @param get_path Path of the get request.
791  * @param get_path_length Lenght of get_path.
792  * @param put_path Path of the put request.
793  * @param put_path_length Length of the put_path.
794  */
795 static void
796 regex_found_handler (void *cls,
797                      const struct GNUNET_PeerIdentity *id,
798                      const struct GNUNET_PeerIdentity *get_path,
799                      unsigned int get_path_length,
800                      const struct GNUNET_PeerIdentity *put_path,
801                      unsigned int put_path_length)
802 {
803   struct RegexPeer *peer = cls;
804   char output_buffer[512];
805   size_t size;
806
807   if (GNUNET_YES == peer->search_str_matched)
808   {
809     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
810                 "String %s on peer %u already matched!\n",
811                 peer->search_str, peer->id);
812     return;
813   }
814
815   peers_found++;
816
817   if (NULL == id)
818   {
819     // FIXME not possible right now
820     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
821                 "String matching timed out for string %s on peer %u (%i/%i)\n",
822                 peer->search_str, peer->id, peers_found, num_search_strings);
823
824     printf ("String matching timed out for string %s on peer %u (%i/%i)\n",
825             peer->search_str, peer->id, peers_found, num_search_strings);
826
827     peer->search_str_matched = GNUNET_SYSERR;
828   }
829   else
830   {
831     prof_time = GNUNET_TIME_absolute_get_duration (peer->prof_start_time);
832     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
833                 "String %s successfully matched on peer %u after %s (%i/%i)\n",
834                 peer->search_str, peer->id, GNUNET_STRINGS_relative_time_to_string (prof_time, GNUNET_NO),
835                 peers_found, num_search_strings);
836
837     printf ("String %s successfully matched on peer %u after %s (%i/%i)\n",
838             peer->search_str, peer->id, GNUNET_STRINGS_relative_time_to_string (prof_time, GNUNET_NO),
839             peers_found, num_search_strings);
840     fflush (stdout);
841
842     peer->search_str_matched = GNUNET_YES;
843
844     if (NULL != data_file)
845     {
846       size =
847         GNUNET_snprintf (output_buffer,
848                          sizeof (output_buffer),
849                          "%p Peer: %u\n%p Host: %s\n%p Policy file: %s\n"
850                          "%p Search string: %s\n%p Search duration: %s\n\n",
851                          peer, peer->id,
852                          peer,
853                          GNUNET_TESTBED_host_get_hostname (peer->host_handle),
854                          peer, peer->policy_file,
855                          peer, peer->search_str,
856                          peer,
857                          GNUNET_STRINGS_relative_time_to_string (prof_time,
858                                                                  GNUNET_NO));
859
860       if (size != GNUNET_DISK_file_write (data_file, output_buffer, size))
861         GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Unable to write to file!\n");
862     }
863   }
864
865   GNUNET_TESTBED_operation_done (peer->dht_op_handle);
866   peer->dht_op_handle = NULL;
867
868   if (peers_found == num_search_strings)
869   {
870     prof_time = GNUNET_TIME_absolute_get_duration (prof_start_time);
871     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
872                 "All strings successfully matched in %s\n",
873                 GNUNET_STRINGS_relative_time_to_string (prof_time, GNUNET_NO));
874     printf ("All strings successfully matched.\n");
875     fflush (stdout);
876
877     if (GNUNET_SCHEDULER_NO_TASK != search_timeout_task)
878       GNUNET_SCHEDULER_cancel (search_timeout_task);
879
880     printf ("Collecting stats and shutting down.\n");
881     GNUNET_SCHEDULER_add_now (&do_collect_stats, NULL);
882   }
883 }
884
885
886 /**
887  * Connect by string timeout task. This will cancel the profiler after the
888  * specified timeout 'search_timeout'.
889  *
890  * @param cls NULL
891  * @param tc the task context
892  */
893 static void
894 do_connect_by_string_timeout (void *cls,
895                               const struct GNUNET_SCHEDULER_TaskContext * tc)
896 {
897   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
898               "Finding matches to all strings did not succeed after %s.\n",
899               GNUNET_STRINGS_relative_time_to_string (search_timeout, GNUNET_NO));
900   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
901               "Found %i of %i strings\n", peers_found, num_search_strings);
902
903   printf ("Search timed out after %s. Collecting stats and shutting down.\n", 
904           GNUNET_STRINGS_relative_time_to_string (search_timeout, GNUNET_NO));
905   fflush (stdout);
906
907   GNUNET_SCHEDULER_add_now (&do_collect_stats, NULL);
908 }
909
910
911 /**
912  * Connect by string task that is run to search for a string in the
913  * NFA. It first connects to the mesh service and when a connection is
914  * established it starts to search for the string.
915  *
916  * @param cls NULL
917  * @param tc the task context
918  */
919 static void
920 do_connect_by_string (void *cls,
921                       const struct GNUNET_SCHEDULER_TaskContext * tc)
922 {
923   printf ("Starting string search.\n");
924   fflush (stdout);
925
926   peers[0].search_str = search_strings[0];
927   peers[0].search_str_matched = GNUNET_NO;
928
929   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
930               "Searching for string \"%s\" on peer %d with file %s\n",
931               peers[0].search_str, 0, peers[0].policy_file);
932
933     /* First connect to mesh service, then search for string. Next
934        connect will be in mesh_connect_cb */
935     peers[0].dht_op_handle =
936       GNUNET_TESTBED_service_connect (NULL,
937                                       peers[0].peer_handle,
938                                       "dht",
939                                       &dht_connect_cb,
940                                       &peers[0],
941                                       &dht_ca,
942                                       &dht_da,
943                                       &peers[0]);
944
945   search_timeout_task = GNUNET_SCHEDULER_add_delayed (search_timeout,
946                                                       &do_connect_by_string_timeout, NULL);
947 }
948
949 /**
950  * Start searching for the next string in the DHT.
951  *
952  * @param cls Index of the next peer in the peers array.
953  * @param tc TaskContext.
954  */
955 void
956 find_next_string (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
957 {
958   long next_p = (long) cls;
959
960   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
961     return;
962
963   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
964               "Searching for string \"%s\" on peer %d with file %s\n",
965               peers[next_p].search_str, next_p, peers[next_p].policy_file);
966
967   /* FIXME
968     * dont connect to a new dht for each peer, we might want to seach for n
969     * strings on m peers where n > m
970     */
971   peers[next_p].dht_op_handle =
972     GNUNET_TESTBED_service_connect (NULL,
973                                     peers[next_p].peer_handle,
974                                     "dht",
975                                     &dht_connect_cb,
976                                     &peers[next_p],
977                                     &dht_ca,
978                                     &dht_da,
979                                     &peers[next_p]);
980 }
981
982 /**
983  * DHT connect callback. Called when we are connected to the dht service for
984  * the peer in 'cls'. If successfull we connect to the stats service of this
985  * peer and then try to match the search string of this peer.
986  *
987  * @param cls internal peer id.
988  * @param op operation handle.
989  * @param ca_result connect adapter result.
990  * @param emsg error message.
991  */
992 static void
993 dht_connect_cb (void *cls, struct GNUNET_TESTBED_Operation *op,
994                 void *ca_result, const char *emsg)
995 {
996   struct RegexPeer *peer = (struct RegexPeer *) cls;
997   static unsigned int peer_cnt;
998   unsigned int next_p;
999
1000   if (NULL != emsg || NULL == op || NULL == ca_result)
1001   {
1002     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "DHT connect failed: %s\n", emsg);
1003     GNUNET_abort ();
1004   }
1005
1006   GNUNET_assert (NULL != peer->dht_handle);
1007   GNUNET_assert (peer->dht_op_handle == op);
1008   GNUNET_assert (peer->dht_handle == ca_result);
1009
1010   peer->search_str_matched = GNUNET_NO;
1011   peer->search_handle = GNUNET_REGEX_search (peer->dht_handle,
1012                                              peer->search_str,
1013                                              &regex_found_handler, peer,
1014                                              NULL);
1015   peer->prof_start_time = GNUNET_TIME_absolute_get ();
1016
1017   if (peer_cnt < (num_search_strings - 1))
1018   {
1019     if (GNUNET_YES == no_distributed_search)
1020       next_p = 0;
1021     else
1022       next_p = (++peer_cnt % num_peers);
1023
1024     peers[next_p].search_str = search_strings[next_p];
1025     peers[next_p].search_str_matched = GNUNET_NO;
1026
1027     /* Don't start all searches at once */
1028     /* TODO add some intelligence to the timeout */
1029     GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS,
1030                                   &find_next_string,
1031                                   (void *) (long) next_p);
1032   }
1033 }
1034
1035
1036 /**
1037  * DHT connect adapter. Opens a connection to the dht service.
1038  *
1039  * @param cls Closure (peer).
1040  * @param cfg Configuration handle.
1041  *
1042  * @return
1043  */
1044 static void *
1045 dht_ca (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg)
1046 {
1047   struct RegexPeer *peer = cls;
1048
1049   peer->dht_handle = GNUNET_DHT_connect (cfg, 32);
1050
1051   return peer->dht_handle;
1052 }
1053
1054
1055 /**
1056  * Adapter function called to destroy a connection to the dht service.
1057  *
1058  * @param cls Closure (peer).
1059  * @param op_result Service handle returned from the connect adapter.
1060  */
1061 static void
1062 dht_da (void *cls, void *op_result)
1063 {
1064   struct RegexPeer *peer = (struct RegexPeer *) cls;
1065
1066   GNUNET_assert (peer->dht_handle == op_result);
1067
1068   if (NULL != peer->search_handle)
1069   {
1070     GNUNET_REGEX_search_cancel (peer->search_handle);
1071     peer->search_handle = NULL;
1072   }
1073
1074   if (NULL != peer->dht_handle)
1075   {
1076     GNUNET_DHT_disconnect (peer->dht_handle);
1077     peer->dht_handle = NULL;
1078   }
1079 }
1080
1081
1082 /******************************************************************************/
1083 /***************************  TESTBED PEER SETUP  *****************************/
1084 /******************************************************************************/
1085
1086
1087 /**
1088  * Configure the peer overlay topology.
1089  *
1090  * @param cls NULL
1091  * @param tc the task context
1092  */
1093 static void
1094 do_configure_topology (void *cls,
1095                        const struct GNUNET_SCHEDULER_TaskContext * tc)
1096 {
1097   /*
1098     if (0 == linking_factor)
1099     linking_factor = 1;
1100     num_links = linking_factor * num_peers;
1101   */
1102   /* num_links = num_peers - 1; */
1103   num_links = linking_factor;
1104
1105   /* Do overlay connect */
1106   prof_start_time = GNUNET_TIME_absolute_get ();
1107   topology_op =
1108     GNUNET_TESTBED_overlay_configure_topology (NULL, num_peers, peer_handles,
1109                                                NULL,
1110                                                NULL,
1111                                                NULL,
1112                                                GNUNET_TESTBED_TOPOLOGY_ERDOS_RENYI,
1113                                                num_links,
1114                                                GNUNET_TESTBED_TOPOLOGY_RETRY_CNT,
1115                                                (unsigned int) 0,
1116                                                GNUNET_TESTBED_TOPOLOGY_OPTION_END);
1117   if (NULL == topology_op)
1118   {
1119     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1120                 "Cannot create topology, op handle was NULL\n");
1121     GNUNET_assert (0);
1122   }
1123 }
1124
1125
1126 /**
1127  * Functions of this signature are called when a peer has been successfully
1128  * started or stopped.
1129  *
1130  * @param cls the closure from GNUNET_TESTBED_peer_start/stop()
1131  * @param emsg NULL on success; otherwise an error description
1132  */
1133 static void
1134 peer_churn_cb (void *cls, const char *emsg)
1135 {
1136   struct DLLOperation *dll_op = cls;
1137   struct GNUNET_TESTBED_Operation *op;
1138   static unsigned int started_peers;
1139   unsigned int peer_cnt;
1140
1141   op = dll_op->op;
1142   GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
1143   GNUNET_free (dll_op);
1144   if (NULL != emsg)
1145   {
1146     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1147          _("An operation has failed while starting peers\n"));
1148     GNUNET_TESTBED_operation_done (op);
1149     if (GNUNET_SCHEDULER_NO_TASK != abort_task)
1150       GNUNET_SCHEDULER_cancel (abort_task);
1151     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, (void*) __LINE__);
1152     return;
1153   }
1154   GNUNET_TESTBED_operation_done (op);
1155   if (++started_peers == num_peers)
1156   {
1157     prof_time = GNUNET_TIME_absolute_get_duration (prof_start_time);
1158     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1159                 "All peers started successfully in %s\n",
1160                 GNUNET_STRINGS_relative_time_to_string (prof_time, GNUNET_NO));
1161     result = GNUNET_OK;
1162
1163     peer_handles = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_Peer *) * num_peers);
1164     for (peer_cnt = 0; peer_cnt < num_peers; peer_cnt++)
1165       peer_handles[peer_cnt] = peers[peer_cnt].peer_handle;
1166
1167     state = STATE_PEERS_LINKING;
1168     GNUNET_SCHEDULER_add_now (&do_configure_topology, NULL);
1169   }
1170 }
1171
1172
1173 /**
1174  * Functions of this signature are called when a peer has been successfully
1175  * created
1176  *
1177  * @param cls the closure from GNUNET_TESTBED_peer_create()
1178  * @param peer the handle for the created peer; NULL on any error during
1179  *          creation
1180  * @param emsg NULL if peer is not NULL; else MAY contain the error description
1181  */
1182 static void
1183 peer_create_cb (void *cls, struct GNUNET_TESTBED_Peer *peer, const char *emsg)
1184 {
1185   struct DLLOperation *dll_op = cls;
1186   struct RegexPeer *peer_ptr;
1187   static unsigned int created_peers;
1188   unsigned int peer_cnt;
1189
1190   if (NULL != emsg)
1191   {
1192     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1193          _("Creating a peer failed. Error: %s\n"), emsg);
1194     GNUNET_TESTBED_operation_done (dll_op->op);
1195     GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
1196     GNUNET_free (dll_op);
1197     if (GNUNET_SCHEDULER_NO_TASK != abort_task)
1198       GNUNET_SCHEDULER_cancel (abort_task);
1199     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, (void*) __LINE__);
1200     return;
1201   }
1202
1203   peer_ptr = dll_op->cls;
1204   GNUNET_assert (NULL == peer_ptr->peer_handle);
1205   GNUNET_CONFIGURATION_destroy (peer_ptr->cfg);
1206   peer_ptr->cfg = NULL;
1207   peer_ptr->peer_handle = peer;
1208   GNUNET_TESTBED_operation_done (dll_op->op);
1209   GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
1210   GNUNET_free (dll_op);
1211
1212   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %i created on host %s\n",
1213               peer_ptr->id,
1214               GNUNET_TESTBED_host_get_hostname (peer_ptr->host_handle));
1215
1216   if (++created_peers == num_peers)
1217   {
1218     prof_time = GNUNET_TIME_absolute_get_duration (prof_start_time);
1219     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1220                 "All peers created successfully in %s\n",
1221                 GNUNET_STRINGS_relative_time_to_string (prof_time, GNUNET_NO));
1222     /* Now peers are to be started */
1223     state = STATE_PEERS_STARTING;
1224     prof_start_time = GNUNET_TIME_absolute_get ();
1225     for (peer_cnt = 0; peer_cnt < num_peers; peer_cnt++)
1226     {
1227       dll_op = GNUNET_malloc (sizeof (struct DLLOperation));
1228       dll_op->op = GNUNET_TESTBED_peer_start (dll_op, peers[peer_cnt].peer_handle,
1229                                               &peer_churn_cb, dll_op);
1230       GNUNET_CONTAINER_DLL_insert_tail (dll_op_head, dll_op_tail, dll_op);
1231     }
1232   }
1233 }
1234
1235
1236 /**
1237  * Function called with a filename for each file in the policy directory. Create
1238  * a peer for each filename and update the peer's configuration to include the
1239  * max_path_compression specified as a command line argument as well as the
1240  * policy_file for this peer. The gnunet-service-regexprofiler service is
1241  * automatically started on this peer. The service reads the configurration and
1242  * announces the regexes stored in the policy file 'filename'.
1243  *
1244  * @param cls closure
1245  * @param filename complete filename (absolute path)
1246  * @return GNUNET_OK to continue to iterate,
1247  *  GNUNET_SYSERR to abort iteration with error!
1248  */
1249 static int
1250 policy_filename_cb (void *cls, const char *filename)
1251 {
1252   static unsigned int peer_cnt;
1253   struct DLLOperation *dll_op;
1254   struct RegexPeer *peer = &peers[peer_cnt];
1255
1256   GNUNET_assert (NULL != peer);
1257
1258   peer->policy_file = GNUNET_strdup (filename);
1259
1260   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Creating peer %i on host %s for policy file %s\n",
1261               peer->id,
1262               GNUNET_TESTBED_host_get_hostname (peer->host_handle),
1263               filename);
1264
1265   /* Set configuration options specific for this peer
1266      (max_path_compression and policy_file */
1267   peer->cfg = GNUNET_CONFIGURATION_dup (cfg);
1268   GNUNET_CONFIGURATION_set_value_number (peer->cfg, "REGEXPROFILER",
1269                                          "MAX_PATH_COMPRESSION",
1270                                          (unsigned long long)max_path_compression);
1271   GNUNET_CONFIGURATION_set_value_string (peer->cfg, "REGEXPROFILER",
1272                                          "POLICY_FILE", filename);
1273
1274   dll_op = GNUNET_malloc (sizeof (struct DLLOperation));
1275   dll_op->cls = &peers[peer_cnt];
1276   dll_op->op = GNUNET_TESTBED_peer_create (mc,
1277                                            peer->host_handle,
1278                                            peer->cfg,
1279                                            &peer_create_cb,
1280                                            dll_op);
1281   GNUNET_CONTAINER_DLL_insert_tail (dll_op_head, dll_op_tail, dll_op);
1282
1283   peer_cnt++;
1284
1285   return GNUNET_OK;
1286 }
1287
1288
1289 /**
1290  * Controller event callback.
1291  *
1292  * @param cls NULL
1293  * @param event the controller event
1294  */
1295 static void
1296 controller_event_cb (void *cls,
1297                      const struct GNUNET_TESTBED_EventInformation *event)
1298 {
1299   struct DLLOperation *dll_op;
1300   struct GNUNET_TESTBED_Operation *op;
1301   int ret;
1302
1303   switch (state)
1304   {
1305   case STATE_SLAVES_STARTING:
1306     switch (event->type)
1307     {
1308     case GNUNET_TESTBED_ET_OPERATION_FINISHED:
1309       {
1310         static unsigned int slaves_started;
1311         unsigned int peer_cnt;
1312
1313         dll_op = event->details.operation_finished.op_cls;
1314         GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
1315         GNUNET_free (dll_op);
1316         op = event->details.operation_finished.operation;
1317         if (NULL != event->details.operation_finished.emsg)
1318         {
1319           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1320                _("An operation has failed while starting slaves\n"));
1321           GNUNET_TESTBED_operation_done (op);
1322           if (GNUNET_SCHEDULER_NO_TASK != abort_task)
1323             GNUNET_SCHEDULER_cancel (abort_task);
1324           abort_task = GNUNET_SCHEDULER_add_now (&do_abort, (void*) __LINE__);
1325           return;
1326         }
1327         GNUNET_TESTBED_operation_done (op);
1328         /* Proceed to start peers */
1329         if (++slaves_started == num_hosts - 1)
1330         {
1331           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1332                       "All slaves started successfully\n");
1333
1334           state = STATE_PEERS_CREATING;
1335           prof_start_time = GNUNET_TIME_absolute_get ();
1336
1337           if (-1 == (ret = GNUNET_DISK_directory_scan (policy_dir,
1338                                                        NULL,
1339                                                        NULL)))
1340           {
1341             GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1342                         _("No files found in `%s'\n"),
1343                         policy_dir);
1344             GNUNET_SCHEDULER_shutdown ();
1345             return;
1346           }
1347           num_peers = (unsigned int) ret;
1348           peers = GNUNET_malloc (sizeof (struct RegexPeer) * num_peers);
1349
1350           /* Initialize peers */
1351           for (peer_cnt = 0; peer_cnt < num_peers; peer_cnt++)
1352           {
1353             struct RegexPeer *peer = &peers[peer_cnt];
1354             peer->id = peer_cnt;
1355             peer->policy_file = NULL;
1356             /* Do not start peers on hosts[0] (master controller) */
1357             peer->host_handle = hosts[1 + (peer_cnt % (num_hosts -1))];
1358             peer->dht_handle = NULL;
1359             peer->search_handle = NULL;
1360             peer->stats_handle = NULL;
1361             peer->stats_op_handle = NULL;
1362             peer->search_str = NULL;
1363             peer->search_str_matched = GNUNET_NO;
1364           }
1365
1366           GNUNET_DISK_directory_scan (policy_dir,
1367                                       &policy_filename_cb,
1368                                       NULL);
1369         }
1370       }
1371       break;
1372     default:
1373       GNUNET_assert (0);
1374     }
1375     break;
1376   case STATE_PEERS_STARTING:
1377     switch (event->type)
1378     {
1379     case GNUNET_TESTBED_ET_OPERATION_FINISHED:
1380       /* Control reaches here when peer start fails */
1381     case GNUNET_TESTBED_ET_PEER_START:
1382       /* we handle peer starts in peer_churn_cb */
1383       break;
1384     default:
1385       GNUNET_assert (0);
1386     }
1387     break;
1388   case STATE_PEERS_LINKING:
1389    switch (event->type)
1390    {
1391      static unsigned int established_links;
1392    case GNUNET_TESTBED_ET_OPERATION_FINISHED:
1393      /* Control reaches here when a peer linking operation fails */
1394      if (NULL != event->details.operation_finished.emsg)
1395      {
1396        GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1397                    _("An operation has failed while linking\n"));
1398        printf ("F%u ", retry_links);
1399        fflush (stdout);
1400        retry_links++;
1401      }
1402      /* We do no retries, consider this link as established */
1403      /* break; */
1404    case GNUNET_TESTBED_ET_CONNECT:
1405    {
1406      char output_buffer[512];
1407      size_t size;
1408
1409      if (0 == established_links)
1410        printf ("Establishing links .");
1411      else
1412      {
1413        printf (".");
1414        fflush (stdout);
1415      }
1416      if (++established_links == num_links)
1417      {
1418        fflush (stdout);
1419        prof_time = GNUNET_TIME_absolute_get_duration (prof_start_time);
1420        GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1421                    "%u links established in %s\n",
1422                    num_links,
1423                    GNUNET_STRINGS_relative_time_to_string (prof_time, GNUNET_NO));
1424        result = GNUNET_OK;
1425        GNUNET_free (peer_handles);
1426
1427        if (NULL != data_file)
1428        {
1429          size =
1430            GNUNET_snprintf (output_buffer,
1431                             sizeof (output_buffer),
1432                             "# of peers: %u\n# of links established: %u\n"
1433                             "Time to establish links: %s\nLinking failures: %u\n"
1434                             "path compression length: %u\n# of search strings: %u\n",
1435                             num_peers,
1436                             (established_links - cont_fails),
1437                             GNUNET_STRINGS_relative_time_to_string (prof_time, GNUNET_NO),
1438                             cont_fails,
1439                             max_path_compression,
1440                             num_search_strings);
1441
1442          if (size != GNUNET_DISK_file_write (data_file, output_buffer, size))
1443            GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Unable to write to file!\n");
1444        }
1445
1446        printf ("\nWaiting %s before starting to search.\n",
1447                GNUNET_STRINGS_relative_time_to_string (search_delay, GNUNET_YES));
1448        fflush (stdout);
1449
1450        GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1451                    "Waiting %s before starting to search.\n",
1452                    GNUNET_STRINGS_relative_time_to_string (search_delay, GNUNET_NO));
1453
1454        state = STATE_SEARCH_REGEX;
1455
1456        search_task = GNUNET_SCHEDULER_add_delayed (search_delay,
1457                                                    &do_connect_by_string, NULL);
1458      }
1459    }
1460    break;
1461    default:
1462      GNUNET_assert (0);
1463    }
1464    break;
1465   case STATE_SEARCH_REGEX:
1466   {
1467     /* Handled in service connect callback */
1468     break;
1469   }
1470   default:
1471     switch (state)
1472     {
1473     case STATE_PEERS_CREATING:
1474       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to create peer\n");
1475       break;
1476     default:
1477       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1478                   "Unexpected controller_cb with state %i!\n", state);
1479     }
1480     GNUNET_assert (0);
1481   }
1482 }
1483
1484
1485 /**
1486  * Task to register all hosts available in the global host list.
1487  *
1488  * @param cls NULL
1489  * @param tc the scheduler task context
1490  */
1491 static void
1492 register_hosts (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
1493
1494
1495 /**
1496  * Callback which will be called to after a host registration succeeded or failed
1497  *
1498  * @param cls the closure
1499  * @param emsg the error message; NULL if host registration is successful
1500  */
1501 static void
1502 host_registration_completion (void *cls, const char *emsg)
1503 {
1504   reg_handle = NULL;
1505   if (NULL != emsg)
1506   {
1507     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1508                 _("Host registration failed for a host. Error: %s\n"), emsg);
1509     if (GNUNET_SCHEDULER_NO_TASK != abort_task)
1510       GNUNET_SCHEDULER_cancel (abort_task);
1511     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, (void*) __LINE__);
1512     return;
1513   }
1514   register_hosts_task = GNUNET_SCHEDULER_add_now (&register_hosts, NULL);
1515 }
1516
1517
1518 /**
1519  * Task to register all hosts available in the global host list.
1520  *
1521  * @param cls NULL
1522  * @param tc the scheduler task context
1523  */
1524 static void
1525 register_hosts (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1526 {
1527   struct DLLOperation *dll_op;
1528   static unsigned int reg_host;
1529   unsigned int slave;
1530
1531   register_hosts_task = GNUNET_SCHEDULER_NO_TASK;
1532   if (reg_host == num_hosts - 1)
1533   {
1534     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1535                 "All hosts successfully registered\n");
1536     /* Start slaves */
1537     state = STATE_SLAVES_STARTING;
1538     for (slave = 1; slave < num_hosts; slave++)
1539     {
1540       dll_op = GNUNET_malloc (sizeof (struct DLLOperation));
1541       dll_op->op = GNUNET_TESTBED_controller_link (dll_op,
1542                                                    mc,
1543                                                    hosts[slave],
1544                                                    hosts[0],
1545                                                    cfg,
1546                                                    GNUNET_YES);
1547       GNUNET_CONTAINER_DLL_insert_tail (dll_op_head, dll_op_tail, dll_op);
1548     }
1549     return;
1550   }
1551   reg_handle = GNUNET_TESTBED_register_host (mc, hosts[++reg_host],
1552                                              host_registration_completion,
1553                                              NULL);
1554 }
1555
1556
1557 /**
1558  * Callback to signal successfull startup of the controller process.
1559  *
1560  * @param cls the closure from GNUNET_TESTBED_controller_start()
1561  * @param config the configuration with which the controller has been started;
1562  *          NULL if status is not GNUNET_OK
1563  * @param status GNUNET_OK if the startup is successfull; GNUNET_SYSERR if not,
1564  *          GNUNET_TESTBED_controller_stop() shouldn't be called in this case
1565  */
1566 static void
1567 status_cb (void *cls, const struct GNUNET_CONFIGURATION_Handle *config, int status)
1568 {
1569   if (GNUNET_SCHEDULER_NO_TASK != abort_task)
1570     GNUNET_SCHEDULER_cancel (abort_task);
1571   if (GNUNET_OK != status)
1572   {
1573     mc_proc = NULL;
1574     printf("CRAPPP\n");
1575     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, (void*) __LINE__);
1576     return;
1577   }
1578   event_mask = 0;
1579   event_mask |= (1LL << GNUNET_TESTBED_ET_PEER_START);
1580   event_mask |= (1LL << GNUNET_TESTBED_ET_PEER_STOP);
1581   event_mask |= (1LL << GNUNET_TESTBED_ET_CONNECT);
1582   event_mask |= (1LL << GNUNET_TESTBED_ET_DISCONNECT);
1583   event_mask |= (1LL << GNUNET_TESTBED_ET_OPERATION_FINISHED);
1584   mc = GNUNET_TESTBED_controller_connect (config, hosts[0], event_mask,
1585                                           &controller_event_cb, NULL);
1586   if (NULL == mc)
1587   {
1588     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1589                 _("Unable to connect to master controller -- Check config\n"));
1590     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, (void*) __LINE__);
1591     return;
1592   }
1593   register_hosts_task = GNUNET_SCHEDULER_add_now (&register_hosts, NULL);
1594   abort_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
1595                                              &do_abort, (void*) __LINE__);
1596 }
1597
1598
1599 /**
1600  * Load search strings from given filename. One search string per line.
1601  *
1602  * @param filename filename of the file containing the search strings.
1603  * @param strings set of strings loaded from file. Caller needs to free this
1604  *                if number returned is greater than zero.
1605  * @param limit upper limit on the number of strings read from the file
1606  * @return number of strings found in the file. GNUNET_SYSERR on error.
1607  */
1608 static int
1609 load_search_strings (const char *filename, char ***strings, unsigned int limit)
1610 {
1611   char *data;
1612   char *buf;
1613   uint64_t filesize;
1614   unsigned int offset;
1615   int str_cnt;
1616   unsigned int i;
1617
1618   if (NULL == filename)
1619   {
1620     return GNUNET_SYSERR;
1621   }
1622
1623   if (GNUNET_YES != GNUNET_DISK_file_test (filename))
1624   {
1625     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1626                 "Could not find search strings file %s\n", filename);
1627     return GNUNET_SYSERR;
1628   }
1629   if (GNUNET_OK != GNUNET_DISK_file_size (filename, &filesize, GNUNET_YES, GNUNET_YES))
1630     filesize = 0;
1631   if (0 == filesize)
1632   {
1633     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Search strings file %s is empty.\n", filename);
1634     return GNUNET_SYSERR;
1635   }
1636   data = GNUNET_malloc (filesize);
1637   if (filesize != GNUNET_DISK_fn_read (filename, data, filesize))
1638   {
1639     GNUNET_free (data);
1640     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Could not read search strings file %s.\n",
1641          filename);
1642     return GNUNET_SYSERR;
1643   }
1644   buf = data;
1645   offset = 0;
1646   str_cnt = 0;
1647   while (offset < (filesize - 1) && str_cnt < limit)
1648   {
1649     offset++;
1650     if (((data[offset] == '\n')) && (buf != &data[offset]))
1651     {
1652       data[offset] = '\0';
1653       str_cnt++;
1654       buf = &data[offset + 1];
1655     }
1656     else if ((data[offset] == '\n') || (data[offset] == '\0'))
1657       buf = &data[offset + 1];
1658   }
1659   *strings = GNUNET_malloc (sizeof (char *) * str_cnt);
1660   offset = 0;
1661   for (i = 0; i < str_cnt; i++)
1662   {
1663     GNUNET_asprintf (&(*strings)[i], "%s%s", regex_prefix, &data[offset]);
1664     offset += strlen (&data[offset]) + 1;
1665   }
1666   GNUNET_free (data);
1667   return str_cnt;
1668 }
1669
1670
1671 /**
1672  * Callbacks of this type are called by GNUNET_TESTBED_is_host_habitable to
1673  * inform whether the given host is habitable or not. The Handle returned by
1674  * GNUNET_TESTBED_is_host_habitable() is invalid after this callback is called
1675  *
1676  * @param cls NULL
1677  * @param host the host whose status is being reported; will be NULL if the host
1678  *          given to GNUNET_TESTBED_is_host_habitable() is NULL
1679  * @param status GNUNET_YES if it is habitable; GNUNET_NO if not
1680  */
1681 static void 
1682 host_habitable_cb (void *cls, const struct GNUNET_TESTBED_Host *host, int status)
1683 {
1684   struct GNUNET_TESTBED_HostHabitableCheckHandle **hc_handle = cls;
1685   static unsigned int hosts_checked;
1686
1687   *hc_handle = NULL;
1688   if (GNUNET_NO == status)
1689   {
1690     if ((NULL != host) && (NULL != GNUNET_TESTBED_host_get_hostname (host)))
1691       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Host %s cannot start testbed\n"),
1692                   GNUNET_TESTBED_host_get_hostname (host));
1693     else
1694       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Testbed cannot be started on localhost\n"));
1695     GNUNET_SCHEDULER_cancel (abort_task);
1696     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, (void*) __LINE__);
1697     return;
1698   }
1699   hosts_checked++;
1700   /* printf (_("\rChecked %u hosts"), hosts_checked); */
1701   /* fflush (stdout); */
1702   if (hosts_checked < num_hosts)
1703     return;
1704   /* printf (_("\nAll hosts can start testbed. Creating peers\n")); */
1705   GNUNET_free (hc_handles);
1706   hc_handles = NULL;
1707   mc_proc = 
1708       GNUNET_TESTBED_controller_start (GNUNET_TESTBED_host_get_hostname
1709                                        (hosts[0]),
1710                                        hosts[0],
1711                                        cfg,
1712                                        status_cb,
1713                                        NULL);
1714 }
1715
1716
1717 /**
1718  * Main function that will be run by the scheduler.
1719  *
1720  * @param cls closure
1721  * @param args remaining command-line arguments
1722  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
1723  * @param config configuration
1724  */
1725 static void
1726 run (void *cls, char *const *args, const char *cfgfile,
1727      const struct GNUNET_CONFIGURATION_Handle *config)
1728 {
1729   unsigned int nhost;
1730   unsigned int nsearchstrs;
1731
1732   if (NULL == args[0])
1733   {
1734     fprintf (stderr, _("No hosts-file specified on command line. Exiting.\n"));
1735     return;
1736   }
1737   if (NULL == args[1])
1738   {
1739     fprintf (stderr, _("No policy directory specified on command line. Exiting.\n"));
1740     return;
1741   }
1742   num_hosts = GNUNET_TESTBED_hosts_load_from_file (args[0], &hosts);
1743   if (0 == num_hosts)
1744   {
1745     fprintf (stderr, _("No hosts loaded. Need at least one host\n"));
1746     return;
1747   }
1748   printf (_("Checking whether given hosts can start testbed. Please wait\n"));
1749   hc_handles = GNUNET_malloc (sizeof (struct
1750                                       GNUNET_TESTBED_HostHabitableCheckHandle *) 
1751                               * num_hosts);
1752   for (nhost = 0; nhost < num_hosts; nhost++)
1753   {    
1754     if (NULL == (hc_handles[nhost] = GNUNET_TESTBED_is_host_habitable (hosts[nhost], config,
1755                                                                        &host_habitable_cb,
1756                                                                        &hc_handles[nhost])))
1757     {
1758       GNUNET_break (0);
1759       for (nhost = 0; nhost < num_hosts; nhost++)
1760         if (NULL != hc_handles[nhost])
1761           GNUNET_TESTBED_is_host_habitable_cancel (hc_handles[nhost]);
1762       GNUNET_free (hc_handles);
1763       hc_handles = NULL;
1764       break;
1765     }
1766   }
1767   if (num_hosts != nhost)
1768   {
1769     fprintf (stderr, _("Exiting\n"));
1770     shutdown_task = GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
1771     return;
1772   }
1773   if (NULL == config)
1774   {
1775     fprintf (stderr, _("No configuration file given. Exiting\n"));
1776     shutdown_task = GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
1777     return;
1778   }
1779
1780   if (GNUNET_OK !=
1781       GNUNET_CONFIGURATION_get_value_string (config, "REGEXPROFILER", "REGEX_PREFIX",
1782                                              &regex_prefix))
1783   {
1784     fprintf (stderr, _("Configuration option (regex_prefix) missing. Exiting\n"));
1785     shutdown_task = GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
1786     return;
1787   }
1788
1789   if ( (NULL != data_filename) &&
1790        (NULL == (data_file =
1791                  GNUNET_DISK_file_open (data_filename,
1792                                         GNUNET_DISK_OPEN_READWRITE |
1793                                         GNUNET_DISK_OPEN_TRUNCATE |
1794                                         GNUNET_DISK_OPEN_CREATE,
1795                                         GNUNET_DISK_PERM_USER_READ |
1796                                         GNUNET_DISK_PERM_USER_WRITE))) )
1797     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR,
1798                               "open",
1799                               data_filename);
1800   if (GNUNET_YES != GNUNET_DISK_directory_test (args[1], GNUNET_YES))
1801   {
1802     fprintf (stderr, _("Specified policies directory does not exist. Exiting.\n"));
1803     shutdown_task = GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
1804     return;
1805   }
1806   policy_dir = args[1];
1807   if (GNUNET_YES != GNUNET_DISK_file_test (args[2]))
1808   {
1809     fprintf (stderr, _("No search strings file given. Exiting.\n"));
1810     shutdown_task = GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
1811     return;
1812   }
1813   nsearchstrs = load_search_strings (args[2], &search_strings, num_search_strings);
1814   if (num_search_strings != nsearchstrs)
1815   {
1816     num_search_strings = nsearchstrs;
1817     fprintf (stderr, _("Error loading search strings. Given file does not contain enough strings. Exiting.\n"));
1818     shutdown_task = GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
1819     return;
1820   }
1821   if (0 >= num_search_strings || NULL == search_strings)
1822   {
1823     fprintf (stderr, _("Error loading search strings. Exiting.\n"));
1824     shutdown_task = GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
1825     return;
1826   }
1827   unsigned int i;
1828   for (i = 0; i < num_search_strings; i++)
1829     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "search string: %s\n", search_strings[i]);
1830   cfg = GNUNET_CONFIGURATION_dup (config);
1831   abort_task =
1832       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
1833                                     (GNUNET_TIME_UNIT_SECONDS, 5), &do_abort,
1834                                     (void*) __LINE__);
1835 }
1836
1837
1838 /**
1839  * Main function.
1840  *
1841  * @param argc argument count
1842  * @param argv argument values
1843  * @return 0 on success
1844  */
1845 int
1846 main (int argc, char *const *argv)
1847 {
1848   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
1849     {'d', "details", "FILENAME",
1850      gettext_noop ("name of the file for writing statistics"),
1851      1, &GNUNET_GETOPT_set_string, &data_filename},
1852     {'n', "num-links", "COUNT",
1853       gettext_noop ("create COUNT number of random links between peers"),
1854       GNUNET_YES, &GNUNET_GETOPT_set_uint, &linking_factor },
1855     {'t', "matching-timeout", "TIMEOUT",
1856       gettext_noop ("wait TIMEOUT before considering a string match as failed"),
1857       GNUNET_YES, &GNUNET_GETOPT_set_relative_time, &search_timeout },
1858     {'s', "search-delay", "DELAY",
1859       gettext_noop ("wait DELAY before starting string search"),
1860       GNUNET_YES, &GNUNET_GETOPT_set_relative_time, &search_delay },
1861     {'a', "num-search-strings", "COUNT",
1862       gettext_noop ("number of search strings to read from search strings file"),
1863       GNUNET_YES, &GNUNET_GETOPT_set_uint, &num_search_strings },
1864     {'p', "max-path-compression", "MAX_PATH_COMPRESSION",
1865      gettext_noop ("maximum path compression length"),
1866      1, &GNUNET_GETOPT_set_uint, &max_path_compression},
1867     {'i', "no-distributed-search", "",
1868      gettext_noop ("if this option is set, only one peer is responsible for searching all strings"),
1869      0, &GNUNET_GETOPT_set_one, &no_distributed_search},
1870     GNUNET_GETOPT_OPTION_END
1871   };
1872   int ret;
1873
1874   if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
1875     return 2;
1876
1877   result = GNUNET_SYSERR;
1878   ret =
1879       GNUNET_PROGRAM_run (argc, argv,
1880                           "gnunet-regex-profiler [OPTIONS] hosts-file policy-dir search-strings-file",
1881                           _("Profiler for regex"),
1882                           options, &run, NULL);
1883
1884   if (GNUNET_OK != ret)
1885     return ret;
1886   if (GNUNET_OK != result)
1887     return 1;
1888   return 0;
1889 }