-rps: open channel when inserting peer in view
[oweals/gnunet.git] / src / testbed / testbed_api_hosts.c
1 /*
2       This file is part of GNUnet
3       Copyright (C) 2008--2013 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18       Boston, MA 02110-1301, USA.
19  */
20
21 /**
22  * @file testbed/testbed_api_hosts.c
23  * @brief API for manipulating 'hosts' controlled by the GNUnet testing service;
24  *        allows parsing hosts files, starting, stopping and communicating (via
25  *        SSH/stdin/stdout) with the remote (or local) processes
26  * @author Christian Grothoff
27  */
28 #include "platform.h"
29 #include "gnunet_util_lib.h"
30 #include "gnunet_testbed_service.h"
31 #include "gnunet_core_service.h"
32 #include "gnunet_transport_service.h"
33
34 #include "testbed_api.h"
35 #include "testbed_api_hosts.h"
36 #include "testbed_helper.h"
37 #include "testbed_api_operations.h"
38
39 #include <zlib.h>
40 #include <regex.h>
41
42 /**
43  * Generic logging shorthand
44  */
45 #define LOG(kind, ...)                          \
46   GNUNET_log_from (kind, "testbed-api-hosts", __VA_ARGS__);
47
48 /**
49  * Debug logging shorthand
50  */
51 #define LOG_DEBUG(...)                          \
52   LOG (GNUNET_ERROR_TYPE_DEBUG, __VA_ARGS__);
53
54 /**
55  * Prints API violation message
56  */
57 #define API_VIOLATION(cond,errstr)              \
58   do {                                          \
59     if (cond)                                   \
60       break;                                    \
61     LOG (GNUNET_ERROR_TYPE_ERROR, "API violation detected: %s\n", errstr); \
62     GNUNET_assert (0);                                                  \
63   } while (0)
64
65 /**
66  * Log an error message at log-level 'level' that indicates a failure of the
67  * command 'cmd' with the message given by gai_strerror(rc).
68  */
69 #define LOG_GAI(level, cmd, rc) do { LOG(level, _("`%s' failed at %s:%d with error: %s\n"), cmd, __FILE__, __LINE__, gai_strerror(rc)); } while(0)
70
71 /**
72  * Number of extra elements we create space for when we grow host list
73  */
74 #define HOST_LIST_GROW_STEP 10
75
76
77 /**
78  * A list entry for registered controllers list
79  */
80 struct RegisteredController
81 {
82   /**
83    * The controller at which this host is registered
84    */
85   const struct GNUNET_TESTBED_Controller *controller;
86
87   /**
88    * The next ptr for DLL
89    */
90   struct RegisteredController *next;
91
92   /**
93    * The prev ptr for DLL
94    */
95   struct RegisteredController *prev;
96 };
97
98
99 /**
100  * Opaque handle to a host running experiments managed by the testing framework.
101  * The master process must be able to SSH to this host without password (via
102  * ssh-agent).
103  */
104 struct GNUNET_TESTBED_Host
105 {
106
107   /**
108    * The hostname of the host; NULL for localhost
109    */
110   const char *hostname;
111
112   /**
113    * The username to be used for SSH login
114    */
115   const char *username;
116
117   /**
118    * the configuration to use as a template while starting a controller on this
119    * host.  Operation queue size specific to a host are also read from this
120    * configuration handle.  After starting the controller, it points to the actual
121    * configuration with which the controller is running
122    */
123   struct GNUNET_CONFIGURATION_Handle *cfg;
124
125   /**
126    * The head for the list of controllers where this host is registered
127    */
128   struct RegisteredController *rc_head;
129
130   /**
131    * The tail for the list of controllers where this host is registered
132    */
133   struct RegisteredController *rc_tail;
134
135   /**
136    * Operation queue for simultaneous overlay connect operations target at this
137    * host
138    */
139   struct OperationQueue *opq_parallel_overlay_connect_operations;
140
141   /**
142    * Is a controller started on this host? FIXME: Is this needed?
143    */
144   int controller_started;
145
146   /**
147    * Is this host locked by GNUNET_TESTBED_controller_start()?
148    */
149   int locked;
150
151   /**
152    * Global ID we use to refer to a host on the network
153    */
154   uint32_t id;
155
156   /**
157    * The port which is to be used for SSH
158    */
159   uint16_t port;
160
161 };
162
163
164 /**
165  * Array of available hosts
166  */
167 static struct GNUNET_TESTBED_Host **host_list;
168
169 /**
170  * The size of the available hosts list
171  */
172 static unsigned int host_list_size;
173
174
175 /**
176  * Lookup a host by ID.
177  *
178  * @param id global host ID assigned to the host; 0 is
179  *        reserved to always mean 'localhost'
180  * @return handle to the host, NULL if host not found
181  */
182 struct GNUNET_TESTBED_Host *
183 GNUNET_TESTBED_host_lookup_by_id_ (uint32_t id)
184 {
185   if (host_list_size <= id)
186     return NULL;
187   return host_list[id];
188 }
189
190
191 /**
192  * Create a host by ID; given this host handle, we could not
193  * run peers at the host, but we can talk about the host
194  * internally.
195  *
196  * @param id global host ID assigned to the host; 0 is
197  *        reserved to always mean 'localhost'
198  * @param cfg the configuration to use as a template while starting a controller
199  *          on this host.  Operation queue sizes specific to a host are also
200  *          read from this configuration handle
201  * @return handle to the host, NULL on error
202  */
203 struct GNUNET_TESTBED_Host *
204 GNUNET_TESTBED_host_create_by_id_ (uint32_t id,
205                                    const struct GNUNET_CONFIGURATION_Handle
206                                    *cfg)
207 {
208   return GNUNET_TESTBED_host_create_with_id (id, NULL, NULL, cfg, 0);
209 }
210
211
212 /**
213  * Obtain the host's unique global ID.
214  *
215  * @param host handle to the host, NULL means 'localhost'
216  * @return id global host ID assigned to the host (0 is
217  *         'localhost', but then obviously not globally unique)
218  */
219 uint32_t
220 GNUNET_TESTBED_host_get_id_ (const struct GNUNET_TESTBED_Host * host)
221 {
222   return host->id;
223 }
224
225
226 /**
227  * Obtain the host's hostname.
228  *
229  * @param host handle to the host, NULL means 'localhost'
230  * @return hostname of the host
231  */
232 const char *
233 GNUNET_TESTBED_host_get_hostname (const struct GNUNET_TESTBED_Host *host)
234 {
235   return host->hostname;
236 }
237
238
239 /**
240  * Obtain the host's username
241  *
242  * @param host handle to the host, NULL means 'localhost'
243  * @return username to login to the host
244  */
245 const char *
246 GNUNET_TESTBED_host_get_username_ (const struct GNUNET_TESTBED_Host *host)
247 {
248   return host->username;
249 }
250
251
252 /**
253  * Obtain the host's ssh port
254  *
255  * @param host handle to the host, NULL means 'localhost'
256  * @return username to login to the host
257  */
258 uint16_t
259 GNUNET_TESTBED_host_get_ssh_port_ (const struct GNUNET_TESTBED_Host * host)
260 {
261   return host->port;
262 }
263
264
265 /**
266  * Check whether a controller is already started on the given host
267  *
268  * @param host the handle to the host
269  * @return GNUNET_YES if the controller is already started; GNUNET_NO if not
270  */
271 int
272 GNUNET_TESTBED_host_controller_started (const struct GNUNET_TESTBED_Host *host)
273 {
274   return host->controller_started;
275 }
276
277
278 /**
279  * Obtain the host's configuration template
280  *
281  * @param host handle to the host
282  * @return the host's configuration template
283  */
284 const struct GNUNET_CONFIGURATION_Handle *
285 GNUNET_TESTBED_host_get_cfg_ (const struct GNUNET_TESTBED_Host *host)
286 {
287   return host->cfg;
288 }
289
290
291 /**
292  * Function to replace host's configuration
293  *
294  * @param host the host handle
295  * @param new_cfg the new configuration to replace the old one
296  */
297 void
298 GNUNET_TESTBED_host_replace_cfg_ (struct GNUNET_TESTBED_Host *host,
299                                   const struct GNUNET_CONFIGURATION_Handle *new_cfg)
300 {
301   GNUNET_CONFIGURATION_destroy (host->cfg);
302   host->cfg = GNUNET_CONFIGURATION_dup (new_cfg);
303 }
304
305
306 /**
307  * Create a host to run peers and controllers on.
308  *
309  * @param id global host ID assigned to the host; 0 is
310  *        reserved to always mean 'localhost'
311  * @param hostname name of the host, use "NULL" for localhost
312  * @param username username to use for the login; may be NULL
313  * @param cfg the configuration to use as a template while starting a controller
314  *          on this host.  Operation queue sizes specific to a host are also
315  *          read from this configuration handle
316  * @param port port number to use for ssh; use 0 to let ssh decide
317  * @return handle to the host, NULL on error
318  */
319 struct GNUNET_TESTBED_Host *
320 GNUNET_TESTBED_host_create_with_id (uint32_t id, const char *hostname,
321                                     const char *username,
322                                     const struct GNUNET_CONFIGURATION_Handle
323                                     *cfg,
324                                     uint16_t port)
325 {
326   struct GNUNET_TESTBED_Host *host;
327   unsigned int new_size;
328
329   if ((id < host_list_size) && (NULL != host_list[id]))
330   {
331     LOG (GNUNET_ERROR_TYPE_WARNING, "Host with id: %u already created\n", id);
332     return NULL;
333   }
334   host = GNUNET_new (struct GNUNET_TESTBED_Host);
335   host->hostname = (NULL != hostname) ? GNUNET_strdup (hostname) : NULL;
336   host->username = (NULL != username) ? GNUNET_strdup (username) : NULL;
337   host->id = id;
338   host->port = (0 == port) ? 22 : port;
339   host->cfg = GNUNET_CONFIGURATION_dup (cfg);
340   host->opq_parallel_overlay_connect_operations =
341       GNUNET_TESTBED_operation_queue_create_ (OPERATION_QUEUE_TYPE_ADAPTIVE,
342                                               UINT_MAX);
343   new_size = host_list_size;
344   while (id >= new_size)
345     new_size += HOST_LIST_GROW_STEP;
346   if (new_size != host_list_size)
347     GNUNET_array_grow (host_list, host_list_size, new_size);
348   GNUNET_assert (id < host_list_size);
349   LOG (GNUNET_ERROR_TYPE_DEBUG, "Adding host with id: %u\n", host->id);
350   host_list[id] = host;
351   return host;
352 }
353
354
355 /**
356  * Create a host to run peers and controllers on.
357  *
358  * @param hostname name of the host, use "NULL" for localhost
359  * @param username username to use for the login; may be NULL
360  * @param cfg the configuration to use as a template while starting a controller
361  *          on this host.  Operation queue sizes specific to a host are also
362  *          read from this configuration handle
363  * @param port port number to use for ssh; use 0 to let ssh decide
364  * @return handle to the host, NULL on error
365  */
366 struct GNUNET_TESTBED_Host *
367 GNUNET_TESTBED_host_create (const char *hostname, const char *username,
368                             const struct GNUNET_CONFIGURATION_Handle *cfg,
369                             uint16_t port)
370 {
371   static uint32_t uid_generator;
372
373   if (NULL == hostname)
374     return GNUNET_TESTBED_host_create_with_id (0, hostname, username,
375                                                cfg, port);
376   return GNUNET_TESTBED_host_create_with_id (++uid_generator, hostname,
377                                              username, cfg, port);
378 }
379
380
381 /**
382  * Load a set of hosts from a configuration file.
383  *
384  * @param filename file with the host specification
385  * @param cfg the configuration to use as a template while starting a controller
386  *          on any of the loaded hosts.  Operation queue sizes specific to a host
387  *          are also read from this configuration handle
388  * @param hosts set to the hosts found in the file; caller must free this if
389  *          number of hosts returned is greater than 0
390  * @return number of hosts returned in 'hosts', 0 on error
391  */
392 unsigned int
393 GNUNET_TESTBED_hosts_load_from_file (const char *filename,
394                                      const struct GNUNET_CONFIGURATION_Handle
395                                      *cfg,
396                                      struct GNUNET_TESTBED_Host ***hosts)
397 {
398   //struct GNUNET_TESTBED_Host **host_array;
399   struct GNUNET_TESTBED_Host *starting_host;
400   char *data;
401   char *buf;
402   char *username;
403   char *hostname;
404   regex_t rex;
405   regmatch_t pmatch[6];
406   uint64_t fs;
407   short int port;
408   unsigned int offset;
409   unsigned int count;
410
411
412   GNUNET_assert (NULL != filename);
413   if (GNUNET_YES != GNUNET_DISK_file_test (filename))
414   {
415     LOG (GNUNET_ERROR_TYPE_WARNING, _("Hosts file %s not found\n"), filename);
416     return 0;
417   }
418   if (GNUNET_OK !=
419       GNUNET_DISK_file_size (filename, &fs, GNUNET_YES, GNUNET_YES))
420     fs = 0;
421   if (0 == fs)
422   {
423     LOG (GNUNET_ERROR_TYPE_WARNING, _("Hosts file %s has no data\n"), filename);
424     return 0;
425   }
426   data = GNUNET_malloc (fs);
427   if (fs != GNUNET_DISK_fn_read (filename, data, fs))
428   {
429     GNUNET_free (data);
430     LOG (GNUNET_ERROR_TYPE_WARNING, _("Hosts file %s cannot be read\n"),
431          filename);
432     return 0;
433   }
434   buf = data;
435   offset = 0;
436   starting_host = NULL;
437   count = 0;
438   /* refer RFC 952 and RFC 1123 for valid hostnames */
439   GNUNET_assert (0 == regcomp (&rex,
440                                "^(([[:alnum:]]+)@)?" /* username */
441                                "([[:alnum:]]+[-[:alnum:]_\\.]+)" /* hostname */
442                                "(:([[:digit:]]{1,5}))?", /* port */
443                                REG_EXTENDED | REG_ICASE));
444   while (offset < (fs - 1))
445   {
446     offset++;
447     if (((data[offset] == '\n')) && (buf != &data[offset]))
448     {
449       unsigned int size;
450
451       data[offset] = '\0';
452       username = NULL;
453       hostname = NULL;
454       port = 0;
455       if ((REG_NOMATCH == regexec (&rex, buf, 6, pmatch, 0))
456           || (-1 == pmatch[3].rm_so))
457       {
458         GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
459                     "Error reading line `%s' in hostfile\n", buf);
460         buf = &data[offset + 1];
461         continue;
462       }
463       if (-1 != pmatch[2].rm_so)
464       {
465         size = pmatch[2].rm_eo - pmatch[2].rm_so;
466         username = GNUNET_malloc (size + 1);
467         username[size] = '\0';
468         GNUNET_assert (NULL != strncpy (username, buf + pmatch[2].rm_so, size));
469       }
470       if (-1 != pmatch[5].rm_so)
471       {
472         (void) SSCANF (buf + pmatch[5].rm_so, "%5hd", &port);
473       }
474       size = pmatch[3].rm_eo - pmatch[3].rm_so;
475       hostname = GNUNET_malloc (size + 1);
476       hostname[size] = '\0';
477       GNUNET_assert (NULL != strncpy (hostname, buf + pmatch[3].rm_so, size));
478       LOG (GNUNET_ERROR_TYPE_DEBUG,
479            "Successfully read host %s, port %d and user %s from file\n",
480            (NULL == hostname) ? "NULL" : hostname,
481            port,
482            (NULL == username) ? "NULL" : username);
483       /* We store hosts in a static list; hence we only require the starting
484        * host pointer in that list to access the newly created list of hosts */
485       if (NULL == starting_host)
486         starting_host = GNUNET_TESTBED_host_create (hostname, username, cfg,
487                                                     port);
488       else
489         (void) GNUNET_TESTBED_host_create (hostname, username, cfg, port);
490       count++;
491       GNUNET_free_non_null (username);
492       GNUNET_free (hostname);
493       buf = &data[offset + 1];
494     }
495     else if ((data[offset] == '\n') || (data[offset] == '\0'))
496       buf = &data[offset + 1];
497   }
498   regfree (&rex);
499   GNUNET_free (data);
500   if (NULL == starting_host)
501     return 0;
502   *hosts = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_Host *) * count);
503   memcpy (*hosts, &host_list[GNUNET_TESTBED_host_get_id_ (starting_host)],
504           sizeof (struct GNUNET_TESTBED_Host *) * count);
505   return count;
506 }
507
508
509 /**
510  * Resolves a hostname using getaddrinfo
511  *
512  * @param host the hostname
513  * @return the string representing the IPv4 address of the given host; NULL upon error
514  */
515 const char *
516 simple_resolve (const char *host)
517 {
518   struct addrinfo *res;
519   const struct sockaddr_in *in_addr;
520   char *hostip;
521   struct addrinfo hint;
522   unsigned int rc;
523
524   hint.ai_family = AF_INET;     /* IPv4 */
525   hint.ai_socktype = 0;
526   hint.ai_protocol = 0;
527   hint.ai_addrlen = 0;
528   hint.ai_addr = NULL;
529   hint.ai_canonname = NULL;
530   hint.ai_next = NULL;
531   hint.ai_flags = AI_NUMERICSERV;
532   res = NULL;
533   LOG_DEBUG ("Resolving [%s]\n", host);
534   if (0 != (rc = getaddrinfo (host, "22", &hint, &res)))
535   {
536     LOG_GAI (GNUNET_ERROR_TYPE_ERROR, "getaddrinfo", rc);
537     return NULL;
538   }
539   GNUNET_assert (NULL != res);
540   GNUNET_assert (NULL != res->ai_addr);
541   GNUNET_assert (sizeof (struct sockaddr_in) == res->ai_addrlen);
542   in_addr = (const struct sockaddr_in *) res->ai_addr;
543   hostip = inet_ntoa (in_addr->sin_addr);
544   GNUNET_assert (NULL != hostip);
545   freeaddrinfo (res);
546   LOG_DEBUG ("Resolved [%s] to [%s]\n", host, hostip);
547   return hostip;
548 }
549
550
551 /**
552  * Loads the set of host allocated by the LoadLeveler Job Scheduler.  This
553  * function is only available when compiled with support for LoadLeveler and is
554  * used for running on the SuperMUC
555  *
556  * @param cfg the configuration to use as a template while starting a controller
557  *          on any of the loaded hosts.  Operation queue sizes specific to a host
558  *          are also read from this configuration handle
559  * @param hosts set to the hosts found in the file; caller must free this if
560  *          number of hosts returned is greater than 0
561  * @return number of hosts returned in 'hosts', 0 on error
562  */
563 unsigned int
564 GNUNET_TESTBED_hosts_load_from_loadleveler (const struct
565                                             GNUNET_CONFIGURATION_Handle *cfg,
566                                             struct GNUNET_TESTBED_Host ***hosts)
567 {
568 #if !ENABLE_SUPERMUC
569   LOG (GNUNET_ERROR_TYPE_ERROR,
570        _("The function %s is only available when compiled with (--with-ll)\n"),
571        __func__);
572   GNUNET_assert (0);
573 #else
574   const char *hostfile;
575
576   if (NULL == (hostfile = getenv ("MP_SAVEHOSTFILE")))
577   {
578     GNUNET_break (0);
579     return 0;
580   }
581   return GNUNET_TESTBED_hosts_load_from_file (hostfile, cfg, hosts);
582 #endif
583 }
584
585
586 /**
587  * Destroy a host handle.  Must only be called once everything
588  * running on that host has been stopped.
589  *
590  * @param host handle to destroy
591  */
592 void
593 GNUNET_TESTBED_host_destroy (struct GNUNET_TESTBED_Host *host)
594 {
595   struct RegisteredController *rc;
596   uint32_t id;
597
598   GNUNET_assert (host->id < host_list_size);
599   GNUNET_assert (host_list[host->id] == host);
600   host_list[host->id] = NULL;
601   /* clear registered controllers list */
602   for (rc = host->rc_head; NULL != rc; rc = host->rc_head)
603   {
604     GNUNET_CONTAINER_DLL_remove (host->rc_head, host->rc_tail, rc);
605     GNUNET_free (rc);
606   }
607   GNUNET_free_non_null ((char *) host->username);
608   GNUNET_free_non_null ((char *) host->hostname);
609   GNUNET_TESTBED_operation_queue_destroy_
610       (host->opq_parallel_overlay_connect_operations);
611   GNUNET_CONFIGURATION_destroy (host->cfg);
612   GNUNET_free (host);
613   while (host_list_size >= HOST_LIST_GROW_STEP)
614   {
615     for (id = host_list_size - 1; id > host_list_size - HOST_LIST_GROW_STEP;
616          id--)
617       if (NULL != host_list[id])
618         break;
619     if (id != host_list_size - HOST_LIST_GROW_STEP)
620       break;
621     if (NULL != host_list[id])
622       break;
623     host_list_size -= HOST_LIST_GROW_STEP;
624   }
625   host_list =
626       GNUNET_realloc (host_list,
627                       sizeof (struct GNUNET_TESTBED_Host *) * host_list_size);
628 }
629
630
631 /**
632  * Marks a host as registered with a controller
633  *
634  * @param host the host to mark
635  * @param controller the controller at which this host is registered
636  */
637 void
638 GNUNET_TESTBED_mark_host_registered_at_ (struct GNUNET_TESTBED_Host *host,
639                                          const struct GNUNET_TESTBED_Controller
640                                          *const controller)
641 {
642   struct RegisteredController *rc;
643
644   for (rc = host->rc_head; NULL != rc; rc = rc->next)
645   {
646     if (controller == rc->controller)   /* already registered at controller */
647     {
648       GNUNET_break (0);
649       return;
650     }
651   }
652   rc = GNUNET_new (struct RegisteredController);
653   rc->controller = controller;
654   GNUNET_CONTAINER_DLL_insert_tail (host->rc_head, host->rc_tail, rc);
655 }
656
657
658 /**
659  * Unmarks a host registered at a controller
660  *
661  * @param host the host to unmark
662  * @param controller the controller at which this host has to be unmarked
663  */
664 void
665 GNUNET_TESTBED_deregister_host_at_ (struct GNUNET_TESTBED_Host *host,
666                                     const struct GNUNET_TESTBED_Controller
667                                     *const controller)
668 {
669   struct RegisteredController *rc;
670
671   for (rc = host->rc_head; NULL != rc; rc=rc->next)
672     if (controller == rc->controller)
673       break;
674   if (NULL == rc)
675   {
676     GNUNET_break (0);
677     return;
678   }
679   GNUNET_CONTAINER_DLL_remove (host->rc_head, host->rc_tail, rc);
680   GNUNET_free (rc);
681 }
682
683
684 /**
685  * Checks whether a host has been registered
686  *
687  * @param host the host to check
688  * @param controller the controller at which host's registration is checked
689  * @return GNUNET_YES if registered; GNUNET_NO if not
690  */
691 int
692 GNUNET_TESTBED_is_host_registered_ (const struct GNUNET_TESTBED_Host *host,
693                                     const struct GNUNET_TESTBED_Controller
694                                     *const controller)
695 {
696   struct RegisteredController *rc;
697
698   for (rc = host->rc_head; NULL != rc; rc = rc->next)
699   {
700     if (controller == rc->controller)   /* already registered at controller */
701     {
702       return GNUNET_YES;
703     }
704   }
705   return GNUNET_NO;
706 }
707
708
709 /**
710  * Handle for controller process
711  */
712 struct GNUNET_TESTBED_ControllerProc
713 {
714   /**
715    * The process handle
716    */
717   struct GNUNET_HELPER_Handle *helper;
718
719   /**
720    * The arguments used to start the helper
721    */
722   char **helper_argv;
723
724   /**
725    * The host where the helper is run
726    */
727   struct GNUNET_TESTBED_Host *host;
728
729   /**
730    * The controller error callback
731    */
732   GNUNET_TESTBED_ControllerStatusCallback cb;
733
734   /**
735    * The closure for the above callback
736    */
737   void *cls;
738
739   /**
740    * The send handle for the helper
741    */
742   struct GNUNET_HELPER_SendHandle *shandle;
743
744   /**
745    * The message corresponding to send handle
746    */
747   struct GNUNET_MessageHeader *msg;
748
749 };
750
751
752 /**
753  * Function to copy NULL terminated list of arguments
754  *
755  * @param argv the NULL terminated list of arguments. Cannot be NULL.
756  * @return the copied NULL terminated arguments
757  */
758 static char **
759 copy_argv (const char *const *argv)
760 {
761   char **argv_dup;
762   unsigned int argp;
763
764   GNUNET_assert (NULL != argv);
765   for (argp = 0; NULL != argv[argp]; argp++) ;
766   argv_dup = GNUNET_malloc (sizeof (char *) * (argp + 1));
767   for (argp = 0; NULL != argv[argp]; argp++)
768     argv_dup[argp] = GNUNET_strdup (argv[argp]);
769   return argv_dup;
770 }
771
772
773 /**
774  * Function to join NULL terminated list of arguments
775  *
776  * @param argv1 the NULL terminated list of arguments. Cannot be NULL.
777  * @param argv2 the NULL terminated list of arguments. Cannot be NULL.
778  * @return the joined NULL terminated arguments
779  */
780 static char **
781 join_argv (const char *const *argv1, const char *const *argv2)
782 {
783   char **argvj;
784   char *argv;
785   unsigned int carg;
786   unsigned int cnt;
787
788   carg = 0;
789   argvj = NULL;
790   for (cnt = 0; NULL != argv1[cnt]; cnt++)
791   {
792     argv = GNUNET_strdup (argv1[cnt]);
793     GNUNET_array_append (argvj, carg, argv);
794   }
795   for (cnt = 0; NULL != argv2[cnt]; cnt++)
796   {
797     argv = GNUNET_strdup (argv2[cnt]);
798     GNUNET_array_append (argvj, carg, argv);
799   }
800   GNUNET_array_append (argvj, carg, NULL);
801   return argvj;
802 }
803
804
805 /**
806  * Frees the given NULL terminated arguments
807  *
808  * @param argv the NULL terminated list of arguments
809  */
810 static void
811 free_argv (char **argv)
812 {
813   unsigned int argp;
814
815   for (argp = 0; NULL != argv[argp]; argp++)
816     GNUNET_free (argv[argp]);
817   GNUNET_free (argv);
818 }
819
820
821 /**
822  * Generates arguments for opening a remote shell. Builds up the arguments
823  * from the environment variable GNUNET_TESTBED_RSH_CMD. The variable
824  * should not mention `-p' (port) option and destination address as these will
825  * be set locally in the function from its parameteres. If the environmental
826  * variable is not found then it defaults to `ssh -o BatchMode=yes -o
827  * NoHostAuthenticationForLocalhost=yes -o StrictHostkeyChecking=no -o
828  * PasswordAuthentication=noc'
829  *
830  * @param port the destination port number
831  * @param hostname the hostname of the target host
832  * @param username the username to use while connecting to target host
833  * @return NULL terminated list of arguments
834  */
835 static char **
836 gen_rsh_args (const char *port, const char *hostname, const char *username)
837 {
838   static const char *default_ssh_args[] = {
839     "ssh",
840     "-o",
841     "BatchMode=yes",
842     "-o",
843     "NoHostAuthenticationForLocalhost=yes",
844     "-o",
845     "StrictHostKeyChecking=no",
846     "-o",
847     "PasswordAuthentication=no",
848     "%h",
849     NULL
850   };
851   char **ssh_args;
852   char *ssh_cmd;
853   char *ssh_cmd_cp;
854   char *arg;
855   const char *new_arg;
856   unsigned int size;
857   unsigned int cnt;
858
859   ssh_args = NULL;
860   if (NULL != (ssh_cmd = getenv ("GNUNET_TESTBED_RSH_CMD")))
861   {
862     ssh_cmd = GNUNET_strdup (ssh_cmd);
863     ssh_cmd_cp = ssh_cmd;
864     for (size = 0; NULL != (arg = strtok (ssh_cmd, " ")); ssh_cmd = NULL)
865       GNUNET_array_append (ssh_args, size, GNUNET_strdup (arg));
866     GNUNET_free (ssh_cmd_cp);
867   }
868   else
869   {
870     ssh_args = copy_argv (default_ssh_args);
871     size = (sizeof (default_ssh_args)) / (sizeof (const char *));
872     GNUNET_array_grow (ssh_args, size, size - 1);
873   }
874   for (cnt = 0; cnt < size; cnt++)
875   {
876     arg = ssh_args[cnt];
877     if ('%' != arg[0])
878       continue;
879     switch (arg[1])
880     {
881     case 'p':
882       new_arg = port;
883       break;
884
885     case 'u':
886       new_arg = username;
887       break;
888
889     case 'h':
890       new_arg = hostname;
891       break;
892
893     default:
894       continue;
895     }
896     if (NULL == new_arg)
897       continue;
898     GNUNET_free (arg);
899     ssh_args[cnt] = GNUNET_strdup (new_arg);
900   }
901   GNUNET_array_append (ssh_args, size, NULL);
902   return ssh_args;
903 }
904
905
906 /**
907  * Generates the arguments needed for executing the given binary in a remote
908  * shell. Builds the arguments from the environmental variable
909  * GNUNET_TETSBED_RSH_CMD_SUFFIX. If the environmental variable is not found,
910  * only the given binary name will be present in the returned arguments
911  *
912  * @param append_args the arguments to append after generating the suffix
913  *          arguments. Can be NULL; if not must be NULL terminated 'char *' array
914  * @return NULL-terminated args
915  */
916 static char **
917 gen_rsh_suffix_args (const char * const *append_args)
918 {
919   char **rshell_args;
920   char *rshell_cmd;
921   char *rshell_cmd_cp;
922   char *arg;
923   unsigned int cnt;
924   unsigned int append_cnt;
925
926   rshell_args = NULL;
927   cnt = 0;
928   if (NULL != (rshell_cmd = getenv ("GNUNET_TESTBED_RSH_CMD_SUFFIX")))
929   {
930     rshell_cmd = GNUNET_strdup (rshell_cmd);
931     rshell_cmd_cp = rshell_cmd;
932     for (; NULL != (arg = strtok (rshell_cmd, " ")); rshell_cmd = NULL)
933       GNUNET_array_append (rshell_args, cnt, GNUNET_strdup (arg));
934     GNUNET_free (rshell_cmd_cp);
935   }
936   if (NULL != append_args)
937   {
938     for (append_cnt = 0; NULL != append_args[append_cnt]; append_cnt++)
939       GNUNET_array_append (rshell_args, cnt, GNUNET_strdup (append_args[append_cnt]));
940   }
941   GNUNET_array_append (rshell_args, cnt, NULL);
942   return rshell_args;
943 }
944
945
946 /**
947  * Functions with this signature are called whenever a
948  * complete message is received by the tokenizer.
949  *
950  * Do not call GNUNET_SERVER_mst_destroy in callback
951  *
952  * @param cls closure
953  * @param client identification of the client
954  * @param message the actual message
955  *
956  * @return GNUNET_OK on success, GNUNET_SYSERR to stop further processing
957  */
958 static int
959 helper_mst (void *cls, void *client, const struct GNUNET_MessageHeader *message)
960 {
961   struct GNUNET_TESTBED_ControllerProc *cp = cls;
962   const struct GNUNET_TESTBED_HelperReply *msg;
963   const char *hostname;
964   char *config;
965   uLongf config_size;
966   uLongf xconfig_size;
967
968   msg = (const struct GNUNET_TESTBED_HelperReply *) message;
969   GNUNET_assert (sizeof (struct GNUNET_TESTBED_HelperReply) <
970                  ntohs (msg->header.size));
971   GNUNET_assert (GNUNET_MESSAGE_TYPE_TESTBED_HELPER_REPLY ==
972                  ntohs (msg->header.type));
973   config_size = (uLongf) ntohs (msg->config_size);
974   xconfig_size =
975       (uLongf) (ntohs (msg->header.size) -
976                 sizeof (struct GNUNET_TESTBED_HelperReply));
977   config = GNUNET_malloc (config_size);
978   GNUNET_assert (Z_OK ==
979                  uncompress ((Bytef *) config, &config_size,
980                              (const Bytef *) &msg[1], xconfig_size));
981   /* Replace the configuration template present in the host with the
982      controller's running configuration */
983   GNUNET_CONFIGURATION_destroy (cp->host->cfg);
984   cp->host->cfg = GNUNET_CONFIGURATION_create ();
985   GNUNET_assert (GNUNET_CONFIGURATION_deserialize
986                  (cp->host->cfg, config, config_size, GNUNET_NO));
987   GNUNET_free (config);
988   if (NULL == (hostname = GNUNET_TESTBED_host_get_hostname (cp->host)))
989     hostname = "localhost";
990   /* Change the hostname so that we can connect to it */
991   GNUNET_CONFIGURATION_set_value_string (cp->host->cfg, "testbed", "hostname",
992                                          hostname);
993   cp->host->locked = GNUNET_NO;
994   cp->host->controller_started = GNUNET_YES;
995   cp->cb (cp->cls, cp->host->cfg, GNUNET_OK);
996   return GNUNET_OK;
997 }
998
999
1000 /**
1001  * Continuation function from GNUNET_HELPER_send()
1002  *
1003  * @param cls closure
1004  * @param result GNUNET_OK on success,
1005  *               GNUNET_NO if helper process died
1006  *               GNUNET_SYSERR during GNUNET_HELPER_stop
1007  */
1008 static void
1009 clear_msg (void *cls, int result)
1010 {
1011   struct GNUNET_TESTBED_ControllerProc *cp = cls;
1012
1013   GNUNET_assert (NULL != cp->shandle);
1014   cp->shandle = NULL;
1015   GNUNET_free (cp->msg);
1016   cp->msg = NULL;
1017 }
1018
1019
1020 /**
1021  * Callback that will be called when the helper process dies. This is not called
1022  * when the helper process is stoped using GNUNET_HELPER_stop()
1023  *
1024  * @param cls the closure from GNUNET_HELPER_start()
1025  */
1026 static void
1027 helper_exp_cb (void *cls)
1028 {
1029   struct GNUNET_TESTBED_ControllerProc *cp = cls;
1030   GNUNET_TESTBED_ControllerStatusCallback cb;
1031   void *cb_cls;
1032
1033   cb = cp->cb;
1034   cb_cls = cp->cls;
1035   cp->helper = NULL;
1036   GNUNET_TESTBED_controller_stop (cp);
1037   if (NULL != cb)
1038     cb (cb_cls, NULL, GNUNET_SYSERR);
1039 }
1040
1041
1042 /**
1043  * Starts a controller process at the given host.  The given host's configration
1044  * is used as a Template configuration to use for the remote controller; the
1045  * remote controller will be started with a slightly modified configuration
1046  * (port numbers, unix domain sockets and service home values are changed as per
1047  * TESTING library on the remote host).  The modified configuration replaces the
1048  * host's existing configuration before signalling success through the
1049  * GNUNET_TESTBED_ControllerStatusCallback()
1050  *
1051  * @param trusted_ip the ip address of the controller which will be set as TRUSTED
1052  *          HOST(all connections form this ip are permitted by the testbed) when
1053  *          starting testbed controller at host. This can either be a single ip
1054  *          address or a network address in CIDR notation.
1055  * @param host the host where the controller has to be started.  CANNOT be NULL.
1056  * @param cb function called when the controller is successfully started or
1057  *          dies unexpectedly; GNUNET_TESTBED_controller_stop shouldn't be
1058  *          called if cb is called with GNUNET_SYSERR as status. Will never be
1059  *          called in the same task as 'GNUNET_TESTBED_controller_start'
1060  *          (synchronous errors will be signalled by returning NULL). This
1061  *          parameter cannot be NULL.
1062  * @param cls closure for above callbacks
1063  * @return the controller process handle, NULL on errors
1064  */
1065 struct GNUNET_TESTBED_ControllerProc *
1066 GNUNET_TESTBED_controller_start (const char *trusted_ip,
1067                                  struct GNUNET_TESTBED_Host *host,
1068                                  GNUNET_TESTBED_ControllerStatusCallback cb,
1069                                  void *cls)
1070 {
1071   struct GNUNET_TESTBED_ControllerProc *cp;
1072   struct GNUNET_TESTBED_HelperInit *msg;
1073   const struct GNUNET_CONFIGURATION_Handle *cfg;
1074   const char *hostname;
1075   static char *const binary_argv[] = {
1076     HELPER_TESTBED_BINARY, NULL
1077   };
1078
1079   GNUNET_assert (NULL != host);
1080   GNUNET_assert (NULL != (cfg = GNUNET_TESTBED_host_get_cfg_ (host)));
1081   hostname = NULL;
1082   API_VIOLATION (GNUNET_NO == host->locked,
1083                  "Host is already locked by a previous call to GNUNET_TESTBED_controller_start()");
1084   host->locked = GNUNET_YES;
1085   API_VIOLATION (GNUNET_NO == host->controller_started,
1086                  "Attempting to start a controller on a host which is already started a controller");
1087   cp = GNUNET_new (struct GNUNET_TESTBED_ControllerProc);
1088   if (0 == GNUNET_TESTBED_host_get_id_ (host))
1089   {
1090     cp->helper =
1091         GNUNET_HELPER_start (GNUNET_YES, HELPER_TESTBED_BINARY, binary_argv,
1092                              &helper_mst, &helper_exp_cb, cp);
1093   }
1094   else
1095   {
1096     char *helper_binary_path_args[2];
1097     char **rsh_args;
1098     char **rsh_suffix_args;
1099     const char *username;
1100     char *port;
1101     char *argstr;
1102     char *aux;
1103     unsigned int cnt;
1104
1105     username = host->username;
1106     hostname = host->hostname;
1107     GNUNET_asprintf (&port, "%u", host->port);
1108     LOG_DEBUG ("Starting remote connection to destination %s\n", hostname);
1109     if (GNUNET_OK !=
1110         GNUNET_CONFIGURATION_get_value_filename (cfg, "testbed",
1111                                                "HELPER_BINARY_PATH",
1112                                                &helper_binary_path_args[0]))
1113       helper_binary_path_args[0] =
1114           GNUNET_OS_get_libexec_binary_path (HELPER_TESTBED_BINARY);
1115     helper_binary_path_args[1] = NULL;
1116     rsh_args = gen_rsh_args (port, hostname, username);
1117     rsh_suffix_args = gen_rsh_suffix_args ((const char **) helper_binary_path_args);
1118     cp->helper_argv =
1119         join_argv ((const char **) rsh_args, (const char **) rsh_suffix_args);
1120     free_argv (rsh_args);
1121     free_argv (rsh_suffix_args);
1122     GNUNET_free (port);
1123     argstr = GNUNET_strdup ("");
1124     for (cnt = 0; NULL != cp->helper_argv[cnt]; cnt++)
1125     {
1126       aux = argstr;
1127       GNUNET_assert (0 < GNUNET_asprintf (&argstr, "%s %s", aux, cp->helper_argv[cnt]));
1128       GNUNET_free (aux);
1129     }
1130     LOG_DEBUG ("Helper cmd str: %s\n", argstr);
1131     GNUNET_free (argstr);
1132     cp->helper =
1133         GNUNET_HELPER_start (GNUNET_NO, cp->helper_argv[0], cp->helper_argv, &helper_mst,
1134                              &helper_exp_cb, cp);
1135     GNUNET_free (helper_binary_path_args[0]);
1136   }
1137   if (NULL == cp->helper)
1138   {
1139     if (NULL != cp->helper_argv)
1140       free_argv (cp->helper_argv);
1141     GNUNET_free (cp);
1142     return NULL;
1143   }
1144   cp->host = host;
1145   cp->cb = cb;
1146   cp->cls = cls;
1147   msg = GNUNET_TESTBED_create_helper_init_msg_ (trusted_ip, hostname, cfg);
1148   cp->msg = &msg->header;
1149   cp->shandle =
1150       GNUNET_HELPER_send (cp->helper, &msg->header, GNUNET_NO, &clear_msg, cp);
1151   if (NULL == cp->shandle)
1152   {
1153     GNUNET_free (msg);
1154     GNUNET_TESTBED_controller_stop (cp);
1155     return NULL;
1156   }
1157   return cp;
1158 }
1159
1160
1161 /**
1162  * Sends termination signal to the controller's helper process
1163  *
1164  * @param cproc the handle to the controller's helper process
1165  */
1166 void
1167 GNUNET_TESTBED_controller_kill_ (struct GNUNET_TESTBED_ControllerProc *cproc)
1168 {
1169   if (NULL != cproc->shandle)
1170     GNUNET_HELPER_send_cancel (cproc->shandle);
1171   if (NULL != cproc->helper)
1172     GNUNET_HELPER_kill (cproc->helper, GNUNET_YES);
1173 }
1174
1175
1176 /**
1177  * Cleans-up the controller's helper process handle
1178  *
1179  * @param cproc the handle to the controller's helper process
1180  */
1181 void
1182 GNUNET_TESTBED_controller_destroy_ (struct GNUNET_TESTBED_ControllerProc *cproc)
1183 {
1184   if (NULL != cproc->helper)
1185   {
1186     GNUNET_break (GNUNET_OK == GNUNET_HELPER_wait (cproc->helper));
1187     GNUNET_HELPER_destroy (cproc->helper);
1188   }
1189   if (NULL != cproc->helper_argv)
1190     free_argv (cproc->helper_argv);
1191   cproc->host->controller_started = GNUNET_NO;
1192   cproc->host->locked = GNUNET_NO;
1193   GNUNET_free_non_null (cproc->msg);
1194   GNUNET_free (cproc);
1195 }
1196
1197
1198 /**
1199  * Stop the controller process (also will terminate all peers and controllers
1200  * dependent on this controller).  This function blocks until the testbed has
1201  * been fully terminated (!). The controller status cb from
1202  * GNUNET_TESTBED_controller_start() will not be called.
1203  *
1204  * @param cproc the controller process handle
1205  */
1206 void
1207 GNUNET_TESTBED_controller_stop (struct GNUNET_TESTBED_ControllerProc *cproc)
1208 {
1209   GNUNET_TESTBED_controller_kill_ (cproc);
1210   GNUNET_TESTBED_controller_destroy_ (cproc);
1211 }
1212
1213
1214 /**
1215  * The handle for whether a host is habitable or not
1216  */
1217 struct GNUNET_TESTBED_HostHabitableCheckHandle
1218 {
1219   /**
1220    * The host to check
1221    */
1222   const struct GNUNET_TESTBED_Host *host;
1223
1224   /**
1225    * The callback to call once we have the status
1226    */
1227   GNUNET_TESTBED_HostHabitableCallback cb;
1228
1229   /**
1230    * The callback closure
1231    */
1232   void *cb_cls;
1233
1234   /**
1235    * The process handle for the SSH process
1236    */
1237   struct GNUNET_OS_Process *auxp;
1238
1239   /**
1240    * The arguments used to start the helper
1241    */
1242   char **helper_argv;
1243
1244   /**
1245    * Task id for the habitability check task
1246    */
1247   struct GNUNET_SCHEDULER_Task * habitability_check_task;
1248
1249   /**
1250    * How long we wait before checking the process status. Should grow
1251    * exponentially
1252    */
1253   struct GNUNET_TIME_Relative wait_time;
1254
1255 };
1256
1257
1258 /**
1259  * Task for checking whether a host is habitable or not
1260  *
1261  * @param cls GNUNET_TESTBED_HostHabitableCheckHandle
1262  */
1263 static void
1264 habitability_check (void *cls)
1265 {
1266   struct GNUNET_TESTBED_HostHabitableCheckHandle *h = cls;
1267   void *cb_cls;
1268   GNUNET_TESTBED_HostHabitableCallback cb;
1269   const struct GNUNET_TESTBED_Host *host;
1270   unsigned long code;
1271   enum GNUNET_OS_ProcessStatusType type;
1272   int ret;
1273
1274   h->habitability_check_task = NULL;
1275   ret = GNUNET_OS_process_status (h->auxp, &type, &code);
1276   if (GNUNET_SYSERR == ret)
1277   {
1278     GNUNET_break (0);
1279     ret = GNUNET_NO;
1280     goto call_cb;
1281   }
1282   if (GNUNET_NO == ret)
1283   {
1284     h->wait_time = GNUNET_TIME_STD_BACKOFF (h->wait_time);
1285     h->habitability_check_task =
1286         GNUNET_SCHEDULER_add_delayed (h->wait_time, &habitability_check, h);
1287     return;
1288   }
1289   GNUNET_OS_process_destroy (h->auxp);
1290   h->auxp = NULL;
1291   ret = (0 != code) ? GNUNET_NO : GNUNET_YES;
1292
1293 call_cb:
1294   if (NULL != h->auxp)
1295     GNUNET_OS_process_destroy (h->auxp);
1296   cb = h->cb;
1297   cb_cls = h->cb_cls;
1298   host = h->host;
1299   free_argv (h->helper_argv);
1300   GNUNET_free (h);
1301   if (NULL != cb)
1302     cb (cb_cls, host, ret);
1303 }
1304
1305
1306 /**
1307  * Checks whether a host can be used to start testbed service
1308  *
1309  * @param host the host to check
1310  * @param config the configuration handle to lookup the path of the testbed
1311  *          helper
1312  * @param cb the callback to call to inform about habitability of the given host
1313  * @param cb_cls the closure for the callback
1314  * @return NULL upon any error or a handle which can be passed to
1315  *           GNUNET_TESTBED_is_host_habitable_cancel()
1316  */
1317 struct GNUNET_TESTBED_HostHabitableCheckHandle *
1318 GNUNET_TESTBED_is_host_habitable (const struct GNUNET_TESTBED_Host *host,
1319                                   const struct GNUNET_CONFIGURATION_Handle
1320                                   *config,
1321                                   GNUNET_TESTBED_HostHabitableCallback cb,
1322                                   void *cb_cls)
1323 {
1324   struct GNUNET_TESTBED_HostHabitableCheckHandle *h;
1325   char **rsh_args;
1326   char **rsh_suffix_args;
1327   char *stat_args[3];
1328   const char *hostname;
1329   char *port;
1330
1331   h = GNUNET_new (struct GNUNET_TESTBED_HostHabitableCheckHandle);
1332   h->cb = cb;
1333   h->cb_cls = cb_cls;
1334   h->host = host;
1335   hostname = (NULL == host->hostname) ? "127.0.0.1" : host->hostname;
1336   if (GNUNET_OK !=
1337       GNUNET_CONFIGURATION_get_value_filename (config, "testbed",
1338                                              "HELPER_BINARY_PATH",
1339                                              &stat_args[1]))
1340     stat_args[1] =
1341         GNUNET_OS_get_libexec_binary_path (HELPER_TESTBED_BINARY);
1342   GNUNET_asprintf (&port, "%u", host->port);
1343   rsh_args = gen_rsh_args (port, hostname, host->username);
1344   GNUNET_free (port);
1345   port = NULL;
1346   stat_args[0] = "stat";
1347   stat_args[2] = NULL;
1348   rsh_suffix_args = gen_rsh_suffix_args ((const char **) stat_args);
1349   GNUNET_free (stat_args[1]);
1350   h->helper_argv = join_argv ((const char **) rsh_args,
1351                               (const char **) rsh_suffix_args);
1352   free_argv (rsh_suffix_args);
1353   free_argv (rsh_args);
1354   h->auxp =
1355       GNUNET_OS_start_process_vap (GNUNET_NO, GNUNET_OS_INHERIT_STD_ERR, NULL,
1356                                    NULL, NULL, h->helper_argv[0], h->helper_argv);
1357   if (NULL == h->auxp)
1358   {
1359     GNUNET_break (0);           /* Cannot exec SSH? */
1360     GNUNET_free (h);
1361     return NULL;
1362   }
1363   h->wait_time = GNUNET_TIME_STD_BACKOFF (h->wait_time);
1364   h->habitability_check_task =
1365       GNUNET_SCHEDULER_add_delayed (h->wait_time, &habitability_check, h);
1366   return h;
1367 }
1368
1369
1370 /**
1371  * Function to cancel a request started using GNUNET_TESTBED_is_host_habitable()
1372  *
1373  * @param handle the habitability check handle
1374  */
1375 void
1376 GNUNET_TESTBED_is_host_habitable_cancel (struct
1377                                          GNUNET_TESTBED_HostHabitableCheckHandle
1378                                          *handle)
1379 {
1380   GNUNET_SCHEDULER_cancel (handle->habitability_check_task);
1381   (void) GNUNET_OS_process_kill (handle->auxp, GNUNET_TERM_SIG);
1382   (void) GNUNET_OS_process_wait (handle->auxp);
1383   GNUNET_OS_process_destroy (handle->auxp);
1384   free_argv (handle->helper_argv);
1385   GNUNET_free (handle);
1386 }
1387
1388
1389 /**
1390  * handle for host registration
1391  */
1392 struct GNUNET_TESTBED_HostRegistrationHandle
1393 {
1394   /**
1395    * The host being registered
1396    */
1397   struct GNUNET_TESTBED_Host *host;
1398
1399   /**
1400    * The controller at which this host is being registered
1401    */
1402   struct GNUNET_TESTBED_Controller *c;
1403
1404   /**
1405    * The Registartion completion callback
1406    */
1407   GNUNET_TESTBED_HostRegistrationCompletion cc;
1408
1409   /**
1410    * The closure for above callback
1411    */
1412   void *cc_cls;
1413 };
1414
1415
1416 /**
1417  * Register a host with the controller
1418  *
1419  * @param controller the controller handle
1420  * @param host the host to register
1421  * @param cc the completion callback to call to inform the status of
1422  *          registration. After calling this callback the registration handle
1423  *          will be invalid. Cannot be NULL.
1424  * @param cc_cls the closure for the cc
1425  * @return handle to the host registration which can be used to cancel the
1426  *           registration
1427  */
1428 struct GNUNET_TESTBED_HostRegistrationHandle *
1429 GNUNET_TESTBED_register_host (struct GNUNET_TESTBED_Controller *controller,
1430                               struct GNUNET_TESTBED_Host *host,
1431                               GNUNET_TESTBED_HostRegistrationCompletion cc,
1432                               void *cc_cls)
1433 {
1434   struct GNUNET_TESTBED_HostRegistrationHandle *rh;
1435   struct GNUNET_TESTBED_AddHostMessage *msg;
1436   const char *username;
1437   const char *hostname;
1438   char *config;
1439   char *cconfig;
1440   void *ptr;
1441   size_t cc_size;
1442   size_t config_size;
1443   uint16_t msg_size;
1444   uint16_t username_length;
1445   uint16_t hostname_length;
1446
1447   if (NULL != controller->rh)
1448     return NULL;
1449   hostname = GNUNET_TESTBED_host_get_hostname (host);
1450   if (GNUNET_YES == GNUNET_TESTBED_is_host_registered_ (host, controller))
1451   {
1452     LOG (GNUNET_ERROR_TYPE_WARNING, "Host hostname: %s already registered\n",
1453          (NULL == hostname) ? "localhost" : hostname);
1454     return NULL;
1455   }
1456   rh = GNUNET_new (struct GNUNET_TESTBED_HostRegistrationHandle);
1457   rh->host = host;
1458   rh->c = controller;
1459   GNUNET_assert (NULL != cc);
1460   rh->cc = cc;
1461   rh->cc_cls = cc_cls;
1462   controller->rh = rh;
1463   username = GNUNET_TESTBED_host_get_username_ (host);
1464   username_length = 0;
1465   if (NULL != username)
1466     username_length = strlen (username);
1467   GNUNET_assert (NULL != hostname); /* Hostname must be present */
1468   hostname_length = strlen (hostname);
1469   GNUNET_assert (NULL != host->cfg);
1470   config = GNUNET_CONFIGURATION_serialize (host->cfg, &config_size);
1471   cc_size = GNUNET_TESTBED_compress_config_ (config, config_size, &cconfig);
1472   GNUNET_free (config);
1473   msg_size = (sizeof (struct GNUNET_TESTBED_AddHostMessage));
1474   msg_size += username_length;
1475   msg_size += hostname_length;
1476   msg_size += cc_size;
1477   msg = GNUNET_malloc (msg_size);
1478   msg->header.size = htons (msg_size);
1479   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_ADD_HOST);
1480   msg->host_id = htonl (GNUNET_TESTBED_host_get_id_ (host));
1481   msg->ssh_port = htons (GNUNET_TESTBED_host_get_ssh_port_ (host));
1482   ptr = &msg[1];
1483   if (NULL != username)
1484   {
1485     msg->username_length = htons (username_length);
1486     ptr = memcpy (ptr, username, username_length);
1487     ptr += username_length;
1488   }
1489   msg->hostname_length = htons (hostname_length);
1490   ptr = memcpy (ptr, hostname, hostname_length);
1491   ptr += hostname_length;
1492   msg->config_size = htons (config_size);
1493   ptr = memcpy (ptr, cconfig, cc_size);
1494   ptr += cc_size;
1495   GNUNET_assert ((ptr - (void *) msg) == msg_size);
1496   GNUNET_free (cconfig);
1497   GNUNET_TESTBED_queue_message_ (controller,
1498                                  (struct GNUNET_MessageHeader *) msg);
1499   return rh;
1500 }
1501
1502
1503 /**
1504  * Cancel the pending registration. Note that if the registration message is
1505  * already sent to the service the cancellation has only the effect that the
1506  * registration completion callback for the registration is never called.
1507  *
1508  * @param handle the registration handle to cancel
1509  */
1510 void
1511 GNUNET_TESTBED_cancel_registration (struct GNUNET_TESTBED_HostRegistrationHandle
1512                                     *handle)
1513 {
1514   if (handle != handle->c->rh)
1515   {
1516     GNUNET_break (0);
1517     return;
1518   }
1519   handle->c->rh = NULL;
1520   GNUNET_free (handle);
1521 }
1522
1523
1524 /**
1525  * Queues the given operation in the queue for parallel overlay connects of the
1526  * given host
1527  *
1528  * @param h the host handle
1529  * @param op the operation to queue in the given host's parally overlay connect
1530  *          queue
1531  */
1532 void
1533 GNUNET_TESTBED_host_queue_oc_ (struct GNUNET_TESTBED_Host *h,
1534                                struct GNUNET_TESTBED_Operation *op)
1535 {
1536   GNUNET_TESTBED_operation_queue_insert_
1537       (h->opq_parallel_overlay_connect_operations, op);
1538 }
1539
1540
1541 /**
1542  * Handler for GNUNET_MESSAGE_TYPE_TESTBED_ADDHOSTCONFIRM message from
1543  * controller (testbed service)
1544  *
1545  * @param c the controller handler
1546  * @param msg message received
1547  * @return GNUNET_YES if we can continue receiving from service; GNUNET_NO if
1548  *           not
1549  */
1550 int
1551 GNUNET_TESTBED_host_handle_addhostconfirm_ (struct GNUNET_TESTBED_Controller *c,
1552                                             const struct
1553                                             GNUNET_TESTBED_HostConfirmedMessage
1554                                             *msg)
1555 {
1556   struct GNUNET_TESTBED_HostRegistrationHandle *rh;
1557   char *emsg;
1558   uint16_t msg_size;
1559
1560   rh = c->rh;
1561   if (NULL == rh)
1562   {
1563     return GNUNET_OK;
1564   }
1565   if (GNUNET_TESTBED_host_get_id_ (rh->host) != ntohl (msg->host_id))
1566   {
1567     LOG_DEBUG ("Mismatch in host id's %u, %u of host confirm msg\n",
1568                GNUNET_TESTBED_host_get_id_ (rh->host), ntohl (msg->host_id));
1569     return GNUNET_OK;
1570   }
1571   c->rh = NULL;
1572   msg_size = ntohs (msg->header.size);
1573   if (sizeof (struct GNUNET_TESTBED_HostConfirmedMessage) == msg_size)
1574   {
1575     LOG_DEBUG ("Host %u successfully registered\n", ntohl (msg->host_id));
1576     GNUNET_TESTBED_mark_host_registered_at_ (rh->host, c);
1577     rh->cc (rh->cc_cls, NULL);
1578     GNUNET_free (rh);
1579     return GNUNET_OK;
1580   }
1581   /* We have an error message */
1582   emsg = (char *) &msg[1];
1583   if ('\0' !=
1584       emsg[msg_size - sizeof (struct GNUNET_TESTBED_HostConfirmedMessage)])
1585   {
1586     GNUNET_break (0);
1587     GNUNET_free (rh);
1588     return GNUNET_NO;
1589   }
1590   LOG (GNUNET_ERROR_TYPE_ERROR, _("Adding host %u failed with error: %s\n"),
1591        ntohl (msg->host_id), emsg);
1592   rh->cc (rh->cc_cls, emsg);
1593   GNUNET_free (rh);
1594   return GNUNET_OK;
1595 }
1596
1597
1598 /**
1599  * Resolves the hostname of the host to an ip address
1600  *
1601  * @param host the host whose hostname is to be resolved
1602  */
1603 void
1604 GNUNET_TESTBED_host_resolve_ (struct GNUNET_TESTBED_Host *host)
1605 {
1606   char *hostname;
1607
1608   hostname = (char *) host->hostname;
1609   host->hostname = simple_resolve (hostname);
1610   if (NULL == host->hostname)
1611   {
1612     GNUNET_break (0);
1613     host->hostname = hostname;
1614     return;
1615   }
1616   GNUNET_free (hostname);
1617   host->hostname = GNUNET_strdup (host->hostname);
1618 }
1619
1620 /* end of testbed_api_hosts.c */