- pass local ID to announce
[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 mesh/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 /**
951  * DHT connect callback. Called when we are connected to the dht service for
952  * the peer in 'cls'. If successfull we connect to the stats service of this
953  * peer and then try to match the search string of this peer.
954  *
955  * @param cls internal peer id.
956  * @param op operation handle.
957  * @param ca_result connect adapter result.
958  * @param emsg error message.
959  */
960 static void
961 dht_connect_cb (void *cls, struct GNUNET_TESTBED_Operation *op,
962                 void *ca_result, const char *emsg)
963 {
964   struct RegexPeer *peer = (struct RegexPeer *) cls;
965   static unsigned int peer_cnt;
966   unsigned int next_p;
967
968   if (NULL != emsg || NULL == op || NULL == ca_result)
969   {
970     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "DHT connect failed: %s\n", emsg);
971     GNUNET_abort ();
972   }
973
974   GNUNET_assert (NULL != peer->dht_handle);
975   GNUNET_assert (peer->dht_op_handle == op);
976   GNUNET_assert (peer->dht_handle == ca_result);
977
978   peer->search_str_matched = GNUNET_NO;
979   peer->search_handle = GNUNET_REGEX_search (peer->dht_handle,
980                                              peer->search_str,
981                                              &regex_found_handler, NULL,
982                                              NULL);
983   peer->prof_start_time = GNUNET_TIME_absolute_get ();
984
985   if (peer_cnt < (num_search_strings - 1))
986   {
987     if (GNUNET_YES == no_distributed_search)
988       next_p = 0;
989     else
990       next_p = (++peer_cnt % num_peers);
991
992     peers[next_p].search_str = search_strings[next_p];
993     peers[next_p].search_str_matched = GNUNET_NO;
994
995     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
996                 "Searching for string \"%s\" on peer %d with file %s\n",
997                 peers[next_p].search_str, next_p, peers[next_p].policy_file);
998
999     /* FIXME
1000      * dont connect to a new dht for each peer, we might want to seach for n
1001      * strings on m peers where n > m
1002      */
1003     peers[next_p].dht_op_handle =
1004       GNUNET_TESTBED_service_connect (NULL,
1005                                       peers[next_p].peer_handle,
1006                                       "dht",
1007                                       &dht_connect_cb,
1008                                       &peers[next_p],
1009                                       &dht_ca,
1010                                       &dht_da,
1011                                       &peers[next_p]);
1012   }
1013 }
1014
1015
1016 /**
1017  * DHT connect adapter. Opens a connection to the dht service.
1018  *
1019  * @param cls Closure (peer).
1020  * @param cfg Configuration handle.
1021  *
1022  * @return
1023  */
1024 static void *
1025 dht_ca (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg)
1026 {
1027   struct RegexPeer *peer = cls;
1028
1029   peer->dht_handle = GNUNET_DHT_connect (cfg, 32);
1030
1031   return peer->dht_handle;
1032 }
1033
1034
1035 /**
1036  * Adapter function called to destroy a connection to the dht service.
1037  *
1038  * @param cls Closure (peer).
1039  * @param op_result Service handle returned from the connect adapter.
1040  */
1041 static void
1042 dht_da (void *cls, void *op_result)
1043 {
1044   struct RegexPeer *peer = (struct RegexPeer *) cls;
1045
1046   GNUNET_assert (peer->dht_handle == op_result);
1047
1048   if (NULL != peer->search_handle)
1049   {
1050     GNUNET_REGEX_search_cancel (peer->search_handle);
1051     peer->search_handle = NULL;
1052   }
1053
1054   if (NULL != peer->dht_handle)
1055   {
1056     GNUNET_DHT_disconnect (peer->dht_handle);
1057     peer->dht_handle = NULL;
1058   }
1059 }
1060
1061
1062 /******************************************************************************/
1063 /***************************  TESTBED PEER SETUP  *****************************/
1064 /******************************************************************************/
1065
1066
1067 /**
1068  * Configure the peer overlay topology.
1069  *
1070  * @param cls NULL
1071  * @param tc the task context
1072  */
1073 static void
1074 do_configure_topology (void *cls,
1075                        const struct GNUNET_SCHEDULER_TaskContext * tc)
1076 {
1077   /*
1078     if (0 == linking_factor)
1079     linking_factor = 1;
1080     num_links = linking_factor * num_peers;
1081   */
1082   /* num_links = num_peers - 1; */
1083   num_links = linking_factor;
1084
1085   /* Do overlay connect */
1086   prof_start_time = GNUNET_TIME_absolute_get ();
1087   topology_op =
1088     GNUNET_TESTBED_overlay_configure_topology (NULL, num_peers, peer_handles,
1089                                                NULL,
1090                                                GNUNET_TESTBED_TOPOLOGY_ERDOS_RENYI,
1091                                                num_links,
1092                                                GNUNET_TESTBED_TOPOLOGY_DISABLE_AUTO_RETRY,
1093                                                GNUNET_TESTBED_TOPOLOGY_OPTION_END);
1094   if (NULL == topology_op)
1095   {
1096     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1097                 "Cannot create topology, op handle was NULL\n");
1098     GNUNET_assert (0);
1099   }
1100 }
1101
1102
1103 /**
1104  * Functions of this signature are called when a peer has been successfully
1105  * started or stopped.
1106  *
1107  * @param cls the closure from GNUNET_TESTBED_peer_start/stop()
1108  * @param emsg NULL on success; otherwise an error description
1109  */
1110 static void
1111 peer_churn_cb (void *cls, const char *emsg)
1112 {
1113   struct DLLOperation *dll_op = cls;
1114   struct GNUNET_TESTBED_Operation *op;
1115   static unsigned int started_peers;
1116   unsigned int peer_cnt;
1117
1118   op = dll_op->op;
1119   GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
1120   GNUNET_free (dll_op);
1121   if (NULL != emsg)
1122   {
1123     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1124          _("An operation has failed while starting peers\n"));
1125     GNUNET_TESTBED_operation_done (op);
1126     if (GNUNET_SCHEDULER_NO_TASK != abort_task)
1127       GNUNET_SCHEDULER_cancel (abort_task);
1128     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, (void*) __LINE__);
1129     return;
1130   }
1131   GNUNET_TESTBED_operation_done (op);
1132   if (++started_peers == num_peers)
1133   {
1134     prof_time = GNUNET_TIME_absolute_get_duration (prof_start_time);
1135     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1136                 "All peers started successfully in %s\n",
1137                 GNUNET_STRINGS_relative_time_to_string (prof_time, GNUNET_NO));
1138     result = GNUNET_OK;
1139
1140     peer_handles = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_Peer *) * num_peers);
1141     for (peer_cnt = 0; peer_cnt < num_peers; peer_cnt++)
1142       peer_handles[peer_cnt] = peers[peer_cnt].peer_handle;
1143
1144     state = STATE_PEERS_LINKING;
1145     GNUNET_SCHEDULER_add_now (&do_configure_topology, NULL);
1146   }
1147 }
1148
1149
1150 /**
1151  * Functions of this signature are called when a peer has been successfully
1152  * created
1153  *
1154  * @param cls the closure from GNUNET_TESTBED_peer_create()
1155  * @param peer the handle for the created peer; NULL on any error during
1156  *          creation
1157  * @param emsg NULL if peer is not NULL; else MAY contain the error description
1158  */
1159 static void
1160 peer_create_cb (void *cls, struct GNUNET_TESTBED_Peer *peer, const char *emsg)
1161 {
1162   struct DLLOperation *dll_op = cls;
1163   struct RegexPeer *peer_ptr;
1164   static unsigned int created_peers;
1165   unsigned int peer_cnt;
1166
1167   if (NULL != emsg)
1168   {
1169     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1170          _("Creating a peer failed. Error: %s\n"), emsg);
1171     GNUNET_TESTBED_operation_done (dll_op->op);
1172     GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
1173     GNUNET_free (dll_op);
1174     if (GNUNET_SCHEDULER_NO_TASK != abort_task)
1175       GNUNET_SCHEDULER_cancel (abort_task);
1176     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, (void*) __LINE__);
1177     return;
1178   }
1179
1180   peer_ptr = dll_op->cls;
1181   GNUNET_assert (NULL == peer_ptr->peer_handle);
1182   GNUNET_CONFIGURATION_destroy (peer_ptr->cfg);
1183   peer_ptr->cfg = NULL;
1184   peer_ptr->peer_handle = peer;
1185   GNUNET_TESTBED_operation_done (dll_op->op);
1186   GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
1187   GNUNET_free (dll_op);
1188
1189   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %i created on host %s\n",
1190               peer_ptr->id,
1191               GNUNET_TESTBED_host_get_hostname (peer_ptr->host_handle));
1192
1193   if (++created_peers == num_peers)
1194   {
1195     prof_time = GNUNET_TIME_absolute_get_duration (prof_start_time);
1196     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1197                 "All peers created successfully in %s\n",
1198                 GNUNET_STRINGS_relative_time_to_string (prof_time, GNUNET_NO));
1199     /* Now peers are to be started */
1200     state = STATE_PEERS_STARTING;
1201     prof_start_time = GNUNET_TIME_absolute_get ();
1202     for (peer_cnt = 0; peer_cnt < num_peers; peer_cnt++)
1203     {
1204       dll_op = GNUNET_malloc (sizeof (struct DLLOperation));
1205       dll_op->op = GNUNET_TESTBED_peer_start (dll_op, peers[peer_cnt].peer_handle,
1206                                               &peer_churn_cb, dll_op);
1207       GNUNET_CONTAINER_DLL_insert_tail (dll_op_head, dll_op_tail, dll_op);
1208     }
1209   }
1210 }
1211
1212
1213 /**
1214  * Function called with a filename for each file in the policy directory. Create
1215  * a peer for each filename and update the peer's configuration to include the
1216  * max_path_compression specified as a command line argument as well as the
1217  * policy_file for this peer. The gnunet-service-regexprofiler service is
1218  * automatically started on this peer. The service reads the configurration and
1219  * announces the regexes stored in the policy file 'filename'.
1220  *
1221  * @param cls closure
1222  * @param filename complete filename (absolute path)
1223  * @return GNUNET_OK to continue to iterate,
1224  *  GNUNET_SYSERR to abort iteration with error!
1225  */
1226 static int
1227 policy_filename_cb (void *cls, const char *filename)
1228 {
1229   static unsigned int peer_cnt;
1230   struct DLLOperation *dll_op;
1231   struct RegexPeer *peer = &peers[peer_cnt];
1232
1233   GNUNET_assert (NULL != peer);
1234
1235   peer->policy_file = GNUNET_strdup (filename);
1236
1237   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Creating peer %i on host %s for policy file %s\n",
1238               peer->id,
1239               GNUNET_TESTBED_host_get_hostname (peer->host_handle),
1240               filename);
1241
1242   /* Set configuration options specific for this peer
1243      (max_path_compression and policy_file */
1244   peer->cfg = GNUNET_CONFIGURATION_dup (cfg);
1245   GNUNET_CONFIGURATION_set_value_number (peer->cfg, "REGEXPROFILER",
1246                                          "MAX_PATH_COMPRESSION",
1247                                          (unsigned long long)max_path_compression);
1248   GNUNET_CONFIGURATION_set_value_string (peer->cfg, "REGEXPROFILER",
1249                                          "POLICY_FILE", filename);
1250
1251   dll_op = GNUNET_malloc (sizeof (struct DLLOperation));
1252   dll_op->cls = &peers[peer_cnt];
1253   dll_op->op = GNUNET_TESTBED_peer_create (mc,
1254                                            peer->host_handle,
1255                                            peer->cfg,
1256                                            &peer_create_cb,
1257                                            dll_op);
1258   GNUNET_CONTAINER_DLL_insert_tail (dll_op_head, dll_op_tail, dll_op);
1259
1260   peer_cnt++;
1261
1262   return GNUNET_OK;
1263 }
1264
1265
1266 /**
1267  * Controller event callback.
1268  *
1269  * @param cls NULL
1270  * @param event the controller event
1271  */
1272 static void
1273 controller_event_cb (void *cls,
1274                      const struct GNUNET_TESTBED_EventInformation *event)
1275 {
1276   struct DLLOperation *dll_op;
1277   struct GNUNET_TESTBED_Operation *op;
1278   int ret;
1279
1280   switch (state)
1281   {
1282   case STATE_SLAVES_STARTING:
1283     switch (event->type)
1284     {
1285     case GNUNET_TESTBED_ET_OPERATION_FINISHED:
1286       {
1287         static unsigned int slaves_started;
1288         unsigned int peer_cnt;
1289
1290         dll_op = event->details.operation_finished.op_cls;
1291         GNUNET_CONTAINER_DLL_remove (dll_op_head, dll_op_tail, dll_op);
1292         GNUNET_free (dll_op);
1293         op = event->details.operation_finished.operation;
1294         if (NULL != event->details.operation_finished.emsg)
1295         {
1296           GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1297                _("An operation has failed while starting slaves\n"));
1298           GNUNET_TESTBED_operation_done (op);
1299           if (GNUNET_SCHEDULER_NO_TASK != abort_task)
1300             GNUNET_SCHEDULER_cancel (abort_task);
1301           abort_task = GNUNET_SCHEDULER_add_now (&do_abort, (void*) __LINE__);
1302           return;
1303         }
1304         GNUNET_TESTBED_operation_done (op);
1305         /* Proceed to start peers */
1306         if (++slaves_started == num_hosts - 1)
1307         {
1308           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1309                       "All slaves started successfully\n");
1310
1311           state = STATE_PEERS_CREATING;
1312           prof_start_time = GNUNET_TIME_absolute_get ();
1313
1314           if (-1 == (ret = GNUNET_DISK_directory_scan (policy_dir,
1315                                                        NULL,
1316                                                        NULL)))
1317           {
1318             GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1319                         _("No files found in `%s'\n"),
1320                         policy_dir);
1321             GNUNET_SCHEDULER_shutdown ();
1322             return;
1323           }
1324           num_peers = (unsigned int) ret;
1325           peers = GNUNET_malloc (sizeof (struct RegexPeer) * num_peers);
1326
1327           /* Initialize peers */
1328           for (peer_cnt = 0; peer_cnt < num_peers; peer_cnt++)
1329           {
1330             struct RegexPeer *peer = &peers[peer_cnt];
1331             peer->id = peer_cnt;
1332             peer->policy_file = NULL;
1333             /* Do not start peers on hosts[0] (master controller) */
1334             peer->host_handle = hosts[1 + (peer_cnt % (num_hosts -1))];
1335             peer->dht_handle = NULL;
1336             peer->search_handle = NULL;
1337             peer->stats_handle = NULL;
1338             peer->stats_op_handle = NULL;
1339             peer->search_str = NULL;
1340             peer->search_str_matched = GNUNET_NO;
1341           }
1342
1343           GNUNET_DISK_directory_scan (policy_dir,
1344                                       &policy_filename_cb,
1345                                       NULL);
1346         }
1347       }
1348       break;
1349     default:
1350       GNUNET_assert (0);
1351     }
1352     break;
1353   case STATE_PEERS_STARTING:
1354     switch (event->type)
1355     {
1356     case GNUNET_TESTBED_ET_OPERATION_FINISHED:
1357       /* Control reaches here when peer start fails */
1358     case GNUNET_TESTBED_ET_PEER_START:
1359       /* we handle peer starts in peer_churn_cb */
1360       break;
1361     default:
1362       GNUNET_assert (0);
1363     }
1364     break;
1365   case STATE_PEERS_LINKING:
1366    switch (event->type)
1367    {
1368      static unsigned int established_links;
1369    case GNUNET_TESTBED_ET_OPERATION_FINISHED:
1370      /* Control reaches here when a peer linking operation fails */
1371      if (NULL != event->details.operation_finished.emsg)
1372      {
1373        GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1374                    _("An operation has failed while linking\n"));
1375        printf ("F");
1376        fflush (stdout);
1377        retry_links++;
1378      }
1379      /* We do no retries, consider this link as established */
1380      /* break; */
1381    case GNUNET_TESTBED_ET_CONNECT:
1382    {
1383      char output_buffer[512];
1384      size_t size;
1385
1386      if (0 == established_links)
1387        printf ("Establishing links .");
1388      else
1389      {
1390        printf (".");
1391        fflush (stdout);
1392      }
1393      if (++established_links == num_links)
1394      {
1395        fflush (stdout);
1396        prof_time = GNUNET_TIME_absolute_get_duration (prof_start_time);
1397        GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1398                    "%u links established in %s\n",
1399                    num_links,
1400                    GNUNET_STRINGS_relative_time_to_string (prof_time, GNUNET_NO));
1401        result = GNUNET_OK;
1402        GNUNET_free (peer_handles);
1403
1404        if (NULL != data_file)
1405        {
1406          size =
1407            GNUNET_snprintf (output_buffer,
1408                             sizeof (output_buffer),
1409                             "# of peers: %u\n# of links established: %u\n"
1410                             "Time to establish links: %s\nLinking failures: %u\n"
1411                             "path compression length: %u\n# of search strings: %u\n",
1412                             num_peers,
1413                             (established_links - cont_fails),
1414                             GNUNET_STRINGS_relative_time_to_string (prof_time, GNUNET_NO),
1415                             cont_fails,
1416                             max_path_compression,
1417                             num_search_strings);
1418
1419          if (size != GNUNET_DISK_file_write (data_file, output_buffer, size))
1420            GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Unable to write to file!\n");
1421        }
1422
1423        printf ("\nWaiting %s before starting to search.\n",
1424                GNUNET_STRINGS_relative_time_to_string (search_delay, GNUNET_YES));
1425        fflush (stdout);
1426
1427        GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1428                    "Waiting %s before starting to search.\n",
1429                    GNUNET_STRINGS_relative_time_to_string (search_delay, GNUNET_NO));
1430
1431        state = STATE_SEARCH_REGEX;
1432
1433        search_task = GNUNET_SCHEDULER_add_delayed (search_delay,
1434                                                    &do_connect_by_string, NULL);
1435      }
1436    }
1437    break;
1438    default:
1439      GNUNET_assert (0);
1440    }
1441    break;
1442   case STATE_SEARCH_REGEX:
1443   {
1444     /* Handled in service connect callback */
1445     break;
1446   }
1447   default:
1448     switch (state)
1449     {
1450     case STATE_PEERS_CREATING:
1451       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to create peer\n");
1452       break;
1453     default:
1454       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1455                   "Unexpected controller_cb with state %i!\n", state);
1456     }
1457     GNUNET_assert (0);
1458   }
1459 }
1460
1461
1462 /**
1463  * Task to register all hosts available in the global host list.
1464  *
1465  * @param cls NULL
1466  * @param tc the scheduler task context
1467  */
1468 static void
1469 register_hosts (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
1470
1471
1472 /**
1473  * Callback which will be called to after a host registration succeeded or failed
1474  *
1475  * @param cls the closure
1476  * @param emsg the error message; NULL if host registration is successful
1477  */
1478 static void
1479 host_registration_completion (void *cls, const char *emsg)
1480 {
1481   reg_handle = NULL;
1482   if (NULL != emsg)
1483   {
1484     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1485                 _("Host registration failed for a host. Error: %s\n"), emsg);
1486     if (GNUNET_SCHEDULER_NO_TASK != abort_task)
1487       GNUNET_SCHEDULER_cancel (abort_task);
1488     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, (void*) __LINE__);
1489     return;
1490   }
1491   register_hosts_task = GNUNET_SCHEDULER_add_now (&register_hosts, NULL);
1492 }
1493
1494
1495 /**
1496  * Task to register all hosts available in the global host list.
1497  *
1498  * @param cls NULL
1499  * @param tc the scheduler task context
1500  */
1501 static void
1502 register_hosts (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1503 {
1504   struct DLLOperation *dll_op;
1505   static unsigned int reg_host;
1506   unsigned int slave;
1507
1508   register_hosts_task = GNUNET_SCHEDULER_NO_TASK;
1509   if (reg_host == num_hosts - 1)
1510   {
1511     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1512                 "All hosts successfully registered\n");
1513     /* Start slaves */
1514     state = STATE_SLAVES_STARTING;
1515     for (slave = 1; slave < num_hosts; slave++)
1516     {
1517       dll_op = GNUNET_malloc (sizeof (struct DLLOperation));
1518       dll_op->op = GNUNET_TESTBED_controller_link (dll_op,
1519                                                    mc,
1520                                                    hosts[slave],
1521                                                    hosts[0],
1522                                                    cfg,
1523                                                    GNUNET_YES);
1524       GNUNET_CONTAINER_DLL_insert_tail (dll_op_head, dll_op_tail, dll_op);
1525     }
1526     return;
1527   }
1528   reg_handle = GNUNET_TESTBED_register_host (mc, hosts[++reg_host],
1529                                              host_registration_completion,
1530                                              NULL);
1531 }
1532
1533
1534 /**
1535  * Callback to signal successfull startup of the controller process.
1536  *
1537  * @param cls the closure from GNUNET_TESTBED_controller_start()
1538  * @param config the configuration with which the controller has been started;
1539  *          NULL if status is not GNUNET_OK
1540  * @param status GNUNET_OK if the startup is successfull; GNUNET_SYSERR if not,
1541  *          GNUNET_TESTBED_controller_stop() shouldn't be called in this case
1542  */
1543 static void
1544 status_cb (void *cls, const struct GNUNET_CONFIGURATION_Handle *config, int status)
1545 {
1546   if (GNUNET_SCHEDULER_NO_TASK != abort_task)
1547     GNUNET_SCHEDULER_cancel (abort_task);
1548   if (GNUNET_OK != status)
1549   {
1550     mc_proc = NULL;
1551     printf("CRAPPP\n");
1552     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, (void*) __LINE__);
1553     return;
1554   }
1555   event_mask = 0;
1556   event_mask |= (1LL << GNUNET_TESTBED_ET_PEER_START);
1557   event_mask |= (1LL << GNUNET_TESTBED_ET_PEER_STOP);
1558   event_mask |= (1LL << GNUNET_TESTBED_ET_CONNECT);
1559   event_mask |= (1LL << GNUNET_TESTBED_ET_DISCONNECT);
1560   event_mask |= (1LL << GNUNET_TESTBED_ET_OPERATION_FINISHED);
1561   mc = GNUNET_TESTBED_controller_connect (config, hosts[0], event_mask,
1562                                           &controller_event_cb, NULL);
1563   if (NULL == mc)
1564   {
1565     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1566                 _("Unable to connect to master controller -- Check config\n"));
1567     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, (void*) __LINE__);
1568     return;
1569   }
1570   register_hosts_task = GNUNET_SCHEDULER_add_now (&register_hosts, NULL);
1571   abort_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
1572                                              &do_abort, (void*) __LINE__);
1573 }
1574
1575
1576 /**
1577  * Load search strings from given filename. One search string per line.
1578  *
1579  * @param filename filename of the file containing the search strings.
1580  * @param strings set of strings loaded from file. Caller needs to free this
1581  *                if number returned is greater than zero.
1582  * @param limit upper limit on the number of strings read from the file
1583  * @return number of strings found in the file. GNUNET_SYSERR on error.
1584  */
1585 static int
1586 load_search_strings (const char *filename, char ***strings, unsigned int limit)
1587 {
1588   char *data;
1589   char *buf;
1590   uint64_t filesize;
1591   unsigned int offset;
1592   int str_cnt;
1593   unsigned int i;
1594
1595   if (NULL == filename)
1596   {
1597     return GNUNET_SYSERR;
1598   }
1599
1600   if (GNUNET_YES != GNUNET_DISK_file_test (filename))
1601   {
1602     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1603                 "Could not find search strings file %s\n", filename);
1604     return GNUNET_SYSERR;
1605   }
1606   if (GNUNET_OK != GNUNET_DISK_file_size (filename, &filesize, GNUNET_YES, GNUNET_YES))
1607     filesize = 0;
1608   if (0 == filesize)
1609   {
1610     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Search strings file %s is empty.\n", filename);
1611     return GNUNET_SYSERR;
1612   }
1613   data = GNUNET_malloc (filesize);
1614   if (filesize != GNUNET_DISK_fn_read (filename, data, filesize))
1615   {
1616     GNUNET_free (data);
1617     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Could not read search strings file %s.\n",
1618          filename);
1619     return GNUNET_SYSERR;
1620   }
1621   buf = data;
1622   offset = 0;
1623   str_cnt = 0;
1624   while (offset < (filesize - 1) && str_cnt < limit)
1625   {
1626     offset++;
1627     if (((data[offset] == '\n')) && (buf != &data[offset]))
1628     {
1629       data[offset] = '\0';
1630       str_cnt++;
1631       buf = &data[offset + 1];
1632     }
1633     else if ((data[offset] == '\n') || (data[offset] == '\0'))
1634       buf = &data[offset + 1];
1635   }
1636   *strings = GNUNET_malloc (sizeof (char *) * str_cnt);
1637   offset = 0;
1638   for (i = 0; i < str_cnt; i++)
1639   {
1640     GNUNET_asprintf (&(*strings)[i], "%s%s", regex_prefix, &data[offset]);
1641     offset += strlen (&data[offset]) + 1;
1642   }
1643   GNUNET_free (data);
1644   return str_cnt;
1645 }
1646
1647
1648 /**
1649  * Callbacks of this type are called by GNUNET_TESTBED_is_host_habitable to
1650  * inform whether the given host is habitable or not. The Handle returned by
1651  * GNUNET_TESTBED_is_host_habitable() is invalid after this callback is called
1652  *
1653  * @param cls NULL
1654  * @param host the host whose status is being reported; will be NULL if the host
1655  *          given to GNUNET_TESTBED_is_host_habitable() is NULL
1656  * @param status GNUNET_YES if it is habitable; GNUNET_NO if not
1657  */
1658 static void 
1659 host_habitable_cb (void *cls, const struct GNUNET_TESTBED_Host *host, int status)
1660 {
1661   struct GNUNET_TESTBED_HostHabitableCheckHandle **hc_handle = cls;
1662   static unsigned int hosts_checked;
1663
1664   *hc_handle = NULL;
1665   if (GNUNET_NO == status)
1666   {
1667     if ((NULL != host) && (NULL != GNUNET_TESTBED_host_get_hostname (host)))
1668       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Host %s cannot start testbed\n"),
1669                   GNUNET_TESTBED_host_get_hostname (host));
1670     else
1671       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _("Testbed cannot be started on localhost\n"));
1672     GNUNET_SCHEDULER_cancel (abort_task);
1673     abort_task = GNUNET_SCHEDULER_add_now (&do_abort, (void*) __LINE__);
1674     return;
1675   }
1676   hosts_checked++;
1677   /* printf (_("\rChecked %u hosts"), hosts_checked); */
1678   /* fflush (stdout); */
1679   if (hosts_checked < num_hosts)
1680     return;
1681   /* printf (_("\nAll hosts can start testbed. Creating peers\n")); */
1682   GNUNET_free (hc_handles);
1683   hc_handles = NULL;
1684   mc_proc = 
1685       GNUNET_TESTBED_controller_start (GNUNET_TESTBED_host_get_hostname
1686                                        (hosts[0]),
1687                                        hosts[0],
1688                                        cfg,
1689                                        status_cb,
1690                                        NULL);
1691 }
1692
1693
1694 /**
1695  * Main function that will be run by the scheduler.
1696  *
1697  * @param cls closure
1698  * @param args remaining command-line arguments
1699  * @param cfgfile name of the configuration file used (for saving, can be NULL!)
1700  * @param config configuration
1701  */
1702 static void
1703 run (void *cls, char *const *args, const char *cfgfile,
1704      const struct GNUNET_CONFIGURATION_Handle *config)
1705 {
1706   unsigned int nhost;
1707   unsigned int nsearchstrs;
1708
1709   if (NULL == args[0])
1710   {
1711     fprintf (stderr, _("No hosts-file specified on command line. Exiting.\n"));
1712     return;
1713   }
1714   if (NULL == args[1])
1715   {
1716     fprintf (stderr, _("No policy directory specified on command line. Exiting.\n"));
1717     return;
1718   }
1719   num_hosts = GNUNET_TESTBED_hosts_load_from_file (args[0], &hosts);
1720   if (0 == num_hosts)
1721   {
1722     fprintf (stderr, _("No hosts loaded. Need at least one host\n"));
1723     return;
1724   }
1725   printf (_("Checking whether given hosts can start testbed. Please wait\n"));
1726   hc_handles = GNUNET_malloc (sizeof (struct
1727                                       GNUNET_TESTBED_HostHabitableCheckHandle *) 
1728                               * num_hosts);
1729   for (nhost = 0; nhost < num_hosts; nhost++)
1730   {    
1731     if (NULL == (hc_handles[nhost] = GNUNET_TESTBED_is_host_habitable (hosts[nhost], config,
1732                                                                        &host_habitable_cb,
1733                                                                        &hc_handles[nhost])))
1734     {
1735       GNUNET_break (0);
1736       for (nhost = 0; nhost < num_hosts; nhost++)
1737         if (NULL != hc_handles[nhost])
1738           GNUNET_TESTBED_is_host_habitable_cancel (hc_handles[nhost]);
1739       GNUNET_free (hc_handles);
1740       hc_handles = NULL;
1741       break;
1742     }
1743   }
1744   if (num_hosts != nhost)
1745   {
1746     fprintf (stderr, _("Exiting\n"));
1747     shutdown_task = GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
1748     return;
1749   }
1750   if (NULL == config)
1751   {
1752     fprintf (stderr, _("No configuration file given. Exiting\n"));
1753     shutdown_task = GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
1754     return;
1755   }
1756
1757   if (GNUNET_OK !=
1758       GNUNET_CONFIGURATION_get_value_string (config, "REGEXPROFILER", "REGEX_PREFIX",
1759                                              &regex_prefix))
1760   {
1761     fprintf (stderr, _("Configuration option (regex_prefix) missing. Exiting\n"));
1762     shutdown_task = GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
1763     return;
1764   }
1765
1766   if ( (NULL != data_filename) &&
1767        (NULL == (data_file =
1768                  GNUNET_DISK_file_open (data_filename,
1769                                         GNUNET_DISK_OPEN_READWRITE |
1770                                         GNUNET_DISK_OPEN_TRUNCATE |
1771                                         GNUNET_DISK_OPEN_CREATE,
1772                                         GNUNET_DISK_PERM_USER_READ |
1773                                         GNUNET_DISK_PERM_USER_WRITE))) )
1774     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR,
1775                               "open",
1776                               data_filename);
1777   if (GNUNET_YES != GNUNET_DISK_directory_test (args[1], GNUNET_YES))
1778   {
1779     fprintf (stderr, _("Specified policies directory does not exist. Exiting.\n"));
1780     shutdown_task = GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
1781     return;
1782   }
1783   policy_dir = args[1];
1784   if (GNUNET_YES != GNUNET_DISK_file_test (args[2]))
1785   {
1786     fprintf (stderr, _("No search strings file given. Exiting.\n"));
1787     shutdown_task = GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
1788     return;
1789   }
1790   nsearchstrs = load_search_strings (args[2], &search_strings, num_search_strings);
1791   if (num_search_strings != nsearchstrs)
1792   {
1793     num_search_strings = nsearchstrs;
1794     fprintf (stderr, _("Error loading search strings. Given file does not contain enough strings. Exiting.\n"));
1795     shutdown_task = GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
1796     return;
1797   }
1798   if (0 >= num_search_strings || NULL == search_strings)
1799   {
1800     fprintf (stderr, _("Error loading search strings. Exiting.\n"));
1801     shutdown_task = GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
1802     return;
1803   }
1804   unsigned int i;
1805   for (i = 0; i < num_search_strings; i++)
1806     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "search string: %s\n", search_strings[i]);
1807   cfg = GNUNET_CONFIGURATION_dup (config);
1808   abort_task =
1809       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
1810                                     (GNUNET_TIME_UNIT_SECONDS, 5), &do_abort,
1811                                     (void*) __LINE__);
1812 }
1813
1814
1815 /**
1816  * Main function.
1817  *
1818  * @param argc argument count
1819  * @param argv argument values
1820  * @return 0 on success
1821  */
1822 int
1823 main (int argc, char *const *argv)
1824 {
1825   static const struct GNUNET_GETOPT_CommandLineOption options[] = {
1826     {'d', "details", "FILENAME",
1827      gettext_noop ("name of the file for writing statistics"),
1828      1, &GNUNET_GETOPT_set_string, &data_filename},
1829     {'n', "num-links", "COUNT",
1830       gettext_noop ("create COUNT number of random links between peers"),
1831       GNUNET_YES, &GNUNET_GETOPT_set_uint, &linking_factor },
1832     {'t', "matching-timeout", "TIMEOUT",
1833       gettext_noop ("wait TIMEOUT before considering a string match as failed"),
1834       GNUNET_YES, &GNUNET_GETOPT_set_relative_time, &search_timeout },
1835     {'s', "search-delay", "DELAY",
1836       gettext_noop ("wait DELAY before starting string search"),
1837       GNUNET_YES, &GNUNET_GETOPT_set_relative_time, &search_delay },
1838     {'a', "num-search-strings", "COUNT",
1839       gettext_noop ("number of search strings to read from search strings file"),
1840       GNUNET_YES, &GNUNET_GETOPT_set_uint, &num_search_strings },
1841     {'p', "max-path-compression", "MAX_PATH_COMPRESSION",
1842      gettext_noop ("maximum path compression length"),
1843      1, &GNUNET_GETOPT_set_uint, &max_path_compression},
1844     {'i', "no-distributed-search", "",
1845      gettext_noop ("if this option is set, only one peer is responsible for searching all strings"),
1846      0, &GNUNET_GETOPT_set_one, &no_distributed_search},
1847     GNUNET_GETOPT_OPTION_END
1848   };
1849   int ret;
1850
1851   if (GNUNET_OK != GNUNET_STRINGS_get_utf8_args (argc, argv, &argc, &argv))
1852     return 2;
1853
1854   result = GNUNET_SYSERR;
1855   ret =
1856       GNUNET_PROGRAM_run (argc, argv, "gnunet-regex-profiler [OPTIONS] hosts-file policy-dir search-strings-file",
1857                           _("Profiler for regex/mesh"),
1858                           options, &run, NULL);
1859
1860   if (GNUNET_OK != ret)
1861     return ret;
1862   if (GNUNET_OK != result)
1863     return 1;
1864   return 0;
1865 }