guix-env: some update.
[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 *cfg)
206 {
207   return GNUNET_TESTBED_host_create_with_id (id, NULL, NULL, cfg, 0);
208 }
209
210
211 /**
212  * Obtain the host's unique global ID.
213  *
214  * @param host handle to the host, NULL means 'localhost'
215  * @return id global host ID assigned to the host (0 is
216  *         'localhost', but then obviously not globally unique)
217  */
218 uint32_t
219 GNUNET_TESTBED_host_get_id_ (const struct GNUNET_TESTBED_Host * host)
220 {
221   return host->id;
222 }
223
224
225 /**
226  * Obtain the host's hostname.
227  *
228  * @param host handle to the host, NULL means 'localhost'
229  * @return hostname of the host
230  */
231 const char *
232 GNUNET_TESTBED_host_get_hostname (const struct GNUNET_TESTBED_Host *host)
233 {
234   return host->hostname;
235 }
236
237
238 /**
239  * Obtain the host's username
240  *
241  * @param host handle to the host, NULL means 'localhost'
242  * @return username to login to the host
243  */
244 const char *
245 GNUNET_TESTBED_host_get_username_ (const struct GNUNET_TESTBED_Host *host)
246 {
247   return host->username;
248 }
249
250
251 /**
252  * Obtain the host's ssh port
253  *
254  * @param host handle to the host, NULL means 'localhost'
255  * @return username to login to the host
256  */
257 uint16_t
258 GNUNET_TESTBED_host_get_ssh_port_ (const struct GNUNET_TESTBED_Host * host)
259 {
260   return host->port;
261 }
262
263
264 /**
265  * Check whether a controller is already started on the given host
266  *
267  * @param host the handle to the host
268  * @return GNUNET_YES if the controller is already started; GNUNET_NO if not
269  */
270 int
271 GNUNET_TESTBED_host_controller_started (const struct GNUNET_TESTBED_Host *host)
272 {
273   return host->controller_started;
274 }
275
276
277 /**
278  * Obtain the host's configuration template
279  *
280  * @param host handle to the host
281  * @return the host's configuration template
282  */
283 const struct GNUNET_CONFIGURATION_Handle *
284 GNUNET_TESTBED_host_get_cfg_ (const struct GNUNET_TESTBED_Host *host)
285 {
286   return host->cfg;
287 }
288
289
290 /**
291  * Function to replace host's configuration
292  *
293  * @param host the host handle
294  * @param new_cfg the new configuration to replace the old one
295  */
296 void
297 GNUNET_TESTBED_host_replace_cfg_ (struct GNUNET_TESTBED_Host *host,
298                                   const struct GNUNET_CONFIGURATION_Handle *new_cfg)
299 {
300   GNUNET_CONFIGURATION_destroy (host->cfg);
301   host->cfg = GNUNET_CONFIGURATION_dup (new_cfg);
302 }
303
304
305 /**
306  * Create a host to run peers and controllers on.
307  *
308  * @param id global host ID assigned to the host; 0 is
309  *        reserved to always mean 'localhost'
310  * @param hostname name of the host, use "NULL" for localhost
311  * @param username username to use for the login; may be NULL
312  * @param cfg the configuration to use as a template while starting a controller
313  *          on this host.  Operation queue sizes specific to a host are also
314  *          read from this configuration handle
315  * @param port port number to use for ssh; use 0 to let ssh decide
316  * @return handle to the host, NULL on error
317  */
318 struct GNUNET_TESTBED_Host *
319 GNUNET_TESTBED_host_create_with_id (uint32_t id, const char *hostname,
320                                     const char *username,
321                                     const struct GNUNET_CONFIGURATION_Handle
322                                     *cfg,
323                                     uint16_t port)
324 {
325   struct GNUNET_TESTBED_Host *host;
326   unsigned int new_size;
327
328   if ((id < host_list_size) && (NULL != host_list[id]))
329   {
330     LOG (GNUNET_ERROR_TYPE_WARNING, "Host with id: %u already created\n", id);
331     return NULL;
332   }
333   host = GNUNET_new (struct GNUNET_TESTBED_Host);
334   host->hostname = (NULL != hostname) ? GNUNET_strdup (hostname) : NULL;
335   host->username = (NULL != username) ? GNUNET_strdup (username) : NULL;
336   host->id = id;
337   host->port = (0 == port) ? 22 : port;
338   host->cfg = GNUNET_CONFIGURATION_dup (cfg);
339   host->opq_parallel_overlay_connect_operations =
340       GNUNET_TESTBED_operation_queue_create_ (OPERATION_QUEUE_TYPE_ADAPTIVE,
341                                               UINT_MAX);
342   new_size = host_list_size;
343   while (id >= new_size)
344     new_size += HOST_LIST_GROW_STEP;
345   if (new_size != host_list_size)
346     GNUNET_array_grow (host_list, host_list_size, new_size);
347   GNUNET_assert (id < host_list_size);
348   LOG (GNUNET_ERROR_TYPE_DEBUG, "Adding host with id: %u\n", host->id);
349   host_list[id] = host;
350   return host;
351 }
352
353
354 /**
355  * Create a host to run peers and controllers on.
356  *
357  * @param hostname name of the host, use "NULL" for localhost
358  * @param username username to use for the login; may be NULL
359  * @param cfg the configuration to use as a template while starting a controller
360  *          on this host.  Operation queue sizes specific to a host are also
361  *          read from this configuration handle
362  * @param port port number to use for ssh; use 0 to let ssh decide
363  * @return handle to the host, NULL on error
364  */
365 struct GNUNET_TESTBED_Host *
366 GNUNET_TESTBED_host_create (const char *hostname, const char *username,
367                             const struct GNUNET_CONFIGURATION_Handle *cfg,
368                             uint16_t port)
369 {
370   static uint32_t uid_generator;
371
372   if (NULL == hostname)
373     return GNUNET_TESTBED_host_create_with_id (0, hostname, username,
374                                                cfg, port);
375   return GNUNET_TESTBED_host_create_with_id (++uid_generator, hostname,
376                                              username, cfg, port);
377 }
378
379
380 /**
381  * Load a set of hosts from a configuration file.
382  *
383  * @param filename file with the host specification
384  * @param cfg the configuration to use as a template while starting a controller
385  *          on any of the loaded hosts.  Operation queue sizes specific to a host
386  *          are also read from this configuration handle
387  * @param hosts set to the hosts found in the file; caller must free this if
388  *          number of hosts returned is greater than 0
389  * @return number of hosts returned in 'hosts', 0 on error
390  */
391 unsigned int
392 GNUNET_TESTBED_hosts_load_from_file (const char *filename,
393                                      const struct GNUNET_CONFIGURATION_Handle
394                                      *cfg,
395                                      struct GNUNET_TESTBED_Host ***hosts)
396 {
397   struct GNUNET_TESTBED_Host *starting_host;
398   char *data;
399   char *buf;
400   char *username;
401   char *hostname;
402   regex_t rex;
403   regmatch_t pmatch[6];
404   uint64_t fs;
405   short int port;
406   unsigned int offset;
407   unsigned int count;
408
409
410   GNUNET_assert (NULL != filename);
411   if (GNUNET_YES != GNUNET_DISK_file_test (filename))
412   {
413     LOG (GNUNET_ERROR_TYPE_WARNING, _("Hosts file %s not found\n"), filename);
414     return 0;
415   }
416   if (GNUNET_OK !=
417       GNUNET_DISK_file_size (filename, &fs, GNUNET_YES, GNUNET_YES))
418     fs = 0;
419   if (0 == fs)
420   {
421     LOG (GNUNET_ERROR_TYPE_WARNING, _("Hosts file %s has no data\n"), filename);
422     return 0;
423   }
424   data = GNUNET_malloc (fs);
425   if (fs != GNUNET_DISK_fn_read (filename, data, fs))
426   {
427     GNUNET_free (data);
428     LOG (GNUNET_ERROR_TYPE_WARNING, _("Hosts file %s cannot be read\n"),
429          filename);
430     return 0;
431   }
432   buf = data;
433   offset = 0;
434   starting_host = NULL;
435   count = 0;
436   /* refer RFC 952 and RFC 1123 for valid hostnames */
437   GNUNET_assert (0 == regcomp (&rex,
438                                "^(([[:alnum:]]+)@)?" /* username */
439                                "([[:alnum:]]+[-[:alnum:]_\\.]+)" /* hostname */
440                                "(:([[:digit:]]{1,5}))?", /* port */
441                                REG_EXTENDED | REG_ICASE));
442   while (offset < (fs - 1))
443   {
444     offset++;
445     if (((data[offset] == '\n')) && (buf != &data[offset]))
446     {
447       unsigned int size;
448
449       data[offset] = '\0';
450       username = NULL;
451       hostname = NULL;
452       port = 0;
453       if ((REG_NOMATCH == regexec (&rex, buf, 6, pmatch, 0))
454           || (-1 == pmatch[3].rm_so))
455       {
456         GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
457                     "Error reading line `%s' in hostfile\n", buf);
458         buf = &data[offset + 1];
459         continue;
460       }
461       if (-1 != pmatch[2].rm_so)
462       {
463         size = pmatch[2].rm_eo - pmatch[2].rm_so;
464         username = GNUNET_malloc (size + 1);
465         username[size] = '\0';
466         GNUNET_assert (NULL != strncpy (username, buf + pmatch[2].rm_so, size));
467       }
468       if (-1 != pmatch[5].rm_so)
469       {
470         (void) SSCANF (buf + pmatch[5].rm_so, "%5hd", &port);
471       }
472       size = pmatch[3].rm_eo - pmatch[3].rm_so;
473       hostname = GNUNET_malloc (size + 1);
474       hostname[size] = '\0';
475       GNUNET_assert (NULL != strncpy (hostname, buf + pmatch[3].rm_so, size));
476       LOG (GNUNET_ERROR_TYPE_DEBUG,
477            "Successfully read host %s, port %d and user %s from file\n",
478            (NULL == hostname) ? "NULL" : hostname,
479            port,
480            (NULL == username) ? "NULL" : username);
481       /* We store hosts in a static list; hence we only require the starting
482        * host pointer in that list to access the newly created list of hosts */
483       if (NULL == starting_host)
484         starting_host = GNUNET_TESTBED_host_create (hostname, username, cfg,
485                                                     port);
486       else
487         (void) GNUNET_TESTBED_host_create (hostname, username, cfg, port);
488       count++;
489       GNUNET_free_non_null (username);
490       GNUNET_free (hostname);
491       buf = &data[offset + 1];
492     }
493     else if ((data[offset] == '\n') || (data[offset] == '\0'))
494       buf = &data[offset + 1];
495   }
496   regfree (&rex);
497   GNUNET_free (data);
498   if (NULL == starting_host)
499     return 0;
500   *hosts = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_Host *) * count);
501   GNUNET_memcpy (*hosts,
502                  &host_list[GNUNET_TESTBED_host_get_id_ (starting_host)],
503                  sizeof (struct GNUNET_TESTBED_Host *) * count);
504   return count;
505 }
506
507
508 /**
509  * Resolves a hostname using getaddrinfo
510  *
511  * @param host the hostname
512  * @return the string representing the IPv4 address of the given host; NULL upon error
513  */
514 const char *
515 simple_resolve (const char *host)
516 {
517   struct addrinfo *res;
518   const struct sockaddr_in *in_addr;
519   char *hostip;
520   struct addrinfo hint;
521   unsigned int rc;
522
523   hint.ai_family = AF_INET;     /* IPv4 */
524   hint.ai_socktype = 0;
525   hint.ai_protocol = 0;
526   hint.ai_addrlen = 0;
527   hint.ai_addr = NULL;
528   hint.ai_canonname = NULL;
529   hint.ai_next = NULL;
530   hint.ai_flags = AI_NUMERICSERV;
531   res = NULL;
532   LOG_DEBUG ("Resolving [%s]\n", host);
533   if (0 != (rc = getaddrinfo (host, "22", &hint, &res)))
534   {
535     LOG_GAI (GNUNET_ERROR_TYPE_ERROR, "getaddrinfo", rc);
536     return NULL;
537   }
538   GNUNET_assert (NULL != res);
539   GNUNET_assert (NULL != res->ai_addr);
540   GNUNET_assert (sizeof (struct sockaddr_in) == res->ai_addrlen);
541   in_addr = (const struct sockaddr_in *) res->ai_addr;
542   hostip = inet_ntoa (in_addr->sin_addr);
543   GNUNET_assert (NULL != hostip);
544   freeaddrinfo (res);
545   LOG_DEBUG ("Resolved [%s] to [%s]\n", host, hostip);
546   return hostip;
547 }
548
549
550 /**
551  * Loads the set of host allocated by the LoadLeveler Job Scheduler.  This
552  * function is only available when compiled with support for LoadLeveler and is
553  * used for running on the SuperMUC
554  *
555  * @param cfg the configuration to use as a template while starting a controller
556  *          on any of the loaded hosts.  Operation queue sizes specific to a host
557  *          are also read from this configuration handle
558  * @param hosts set to the hosts found in the file; caller must free this if
559  *          number of hosts returned is greater than 0
560  * @return number of hosts returned in 'hosts', 0 on error
561  */
562 unsigned int
563 GNUNET_TESTBED_hosts_load_from_loadleveler (const struct
564                                             GNUNET_CONFIGURATION_Handle *cfg,
565                                             struct GNUNET_TESTBED_Host ***hosts)
566 {
567 #if !ENABLE_SUPERMUC
568   LOG (GNUNET_ERROR_TYPE_ERROR,
569        _("The function %s is only available when compiled with (--with-ll)\n"),
570        __func__);
571   GNUNET_assert (0);
572 #else
573   const char *hostfile;
574
575   if (NULL == (hostfile = getenv ("MP_SAVEHOSTFILE")))
576   {
577     GNUNET_break (0);
578     return 0;
579   }
580   return GNUNET_TESTBED_hosts_load_from_file (hostfile, cfg, hosts);
581 #endif
582 }
583
584
585 /**
586  * Destroy a host handle.  Must only be called once everything
587  * running on that host has been stopped.
588  *
589  * @param host handle to destroy
590  */
591 void
592 GNUNET_TESTBED_host_destroy (struct GNUNET_TESTBED_Host *host)
593 {
594   struct RegisteredController *rc;
595   uint32_t id;
596
597   GNUNET_assert (host->id < host_list_size);
598   GNUNET_assert (host_list[host->id] == host);
599   host_list[host->id] = NULL;
600   /* clear registered controllers list */
601   for (rc = host->rc_head; NULL != rc; rc = host->rc_head)
602   {
603     GNUNET_CONTAINER_DLL_remove (host->rc_head, host->rc_tail, rc);
604     GNUNET_free (rc);
605   }
606   GNUNET_free_non_null ((char *) host->username);
607   GNUNET_free_non_null ((char *) host->hostname);
608   GNUNET_TESTBED_operation_queue_destroy_
609       (host->opq_parallel_overlay_connect_operations);
610   GNUNET_CONFIGURATION_destroy (host->cfg);
611   GNUNET_free (host);
612   while (host_list_size >= HOST_LIST_GROW_STEP)
613   {
614     for (id = host_list_size - 1; id > host_list_size - HOST_LIST_GROW_STEP;
615          id--)
616       if (NULL != host_list[id])
617         break;
618     if (id != host_list_size - HOST_LIST_GROW_STEP)
619       break;
620     if (NULL != host_list[id])
621       break;
622     host_list_size -= HOST_LIST_GROW_STEP;
623   }
624   host_list =
625       GNUNET_realloc (host_list,
626                       sizeof (struct GNUNET_TESTBED_Host *) * host_list_size);
627 }
628
629
630 /**
631  * Marks a host as registered with a controller
632  *
633  * @param host the host to mark
634  * @param controller the controller at which this host is registered
635  */
636 void
637 GNUNET_TESTBED_mark_host_registered_at_ (struct GNUNET_TESTBED_Host *host,
638                                          const struct GNUNET_TESTBED_Controller
639                                          *const controller)
640 {
641   struct RegisteredController *rc;
642
643   for (rc = host->rc_head; NULL != rc; rc = rc->next)
644   {
645     if (controller == rc->controller)   /* already registered at controller */
646     {
647       GNUNET_break (0);
648       return;
649     }
650   }
651   rc = GNUNET_new (struct RegisteredController);
652   rc->controller = controller;
653   GNUNET_CONTAINER_DLL_insert_tail (host->rc_head, host->rc_tail, rc);
654 }
655
656
657 /**
658  * Unmarks a host registered at a controller
659  *
660  * @param host the host to unmark
661  * @param controller the controller at which this host has to be unmarked
662  */
663 void
664 GNUNET_TESTBED_deregister_host_at_ (struct GNUNET_TESTBED_Host *host,
665                                     const struct GNUNET_TESTBED_Controller
666                                     *const controller)
667 {
668   struct RegisteredController *rc;
669
670   for (rc = host->rc_head; NULL != rc; rc=rc->next)
671     if (controller == rc->controller)
672       break;
673   if (NULL == rc)
674   {
675     GNUNET_break (0);
676     return;
677   }
678   GNUNET_CONTAINER_DLL_remove (host->rc_head, host->rc_tail, rc);
679   GNUNET_free (rc);
680 }
681
682
683 /**
684  * Checks whether a host has been registered
685  *
686  * @param host the host to check
687  * @param controller the controller at which host's registration is checked
688  * @return GNUNET_YES if registered; GNUNET_NO if not
689  */
690 int
691 GNUNET_TESTBED_is_host_registered_ (const struct GNUNET_TESTBED_Host *host,
692                                     const struct GNUNET_TESTBED_Controller
693                                     *const controller)
694 {
695   struct RegisteredController *rc;
696
697   for (rc = host->rc_head; NULL != rc; rc = rc->next)
698   {
699     if (controller == rc->controller)   /* already registered at controller */
700     {
701       return GNUNET_YES;
702     }
703   }
704   return GNUNET_NO;
705 }
706
707
708 /**
709  * Handle for controller process
710  */
711 struct GNUNET_TESTBED_ControllerProc
712 {
713   /**
714    * The process handle
715    */
716   struct GNUNET_HELPER_Handle *helper;
717
718   /**
719    * The arguments used to start the helper
720    */
721   char **helper_argv;
722
723   /**
724    * The host where the helper is run
725    */
726   struct GNUNET_TESTBED_Host *host;
727
728   /**
729    * The controller error callback
730    */
731   GNUNET_TESTBED_ControllerStatusCallback cb;
732
733   /**
734    * The closure for the above callback
735    */
736   void *cls;
737
738   /**
739    * The send handle for the helper
740    */
741   struct GNUNET_HELPER_SendHandle *shandle;
742
743   /**
744    * The message corresponding to send handle
745    */
746   struct GNUNET_MessageHeader *msg;
747
748 };
749
750
751 /**
752  * Function to copy NULL terminated list of arguments
753  *
754  * @param argv the NULL terminated list of arguments. Cannot be NULL.
755  * @return the copied NULL terminated arguments
756  */
757 static char **
758 copy_argv (const char *const *argv)
759 {
760   char **argv_dup;
761   unsigned int argp;
762
763   GNUNET_assert (NULL != argv);
764   for (argp = 0; NULL != argv[argp]; argp++) ;
765   argv_dup = GNUNET_malloc (sizeof (char *) * (argp + 1));
766   for (argp = 0; NULL != argv[argp]; argp++)
767     argv_dup[argp] = GNUNET_strdup (argv[argp]);
768   return argv_dup;
769 }
770
771
772 /**
773  * Function to join NULL terminated list of arguments
774  *
775  * @param argv1 the NULL terminated list of arguments. Cannot be NULL.
776  * @param argv2 the NULL terminated list of arguments. Cannot be NULL.
777  * @return the joined NULL terminated arguments
778  */
779 static char **
780 join_argv (const char *const *argv1, const char *const *argv2)
781 {
782   char **argvj;
783   char *argv;
784   unsigned int carg;
785   unsigned int cnt;
786
787   carg = 0;
788   argvj = NULL;
789   for (cnt = 0; NULL != argv1[cnt]; cnt++)
790   {
791     argv = GNUNET_strdup (argv1[cnt]);
792     GNUNET_array_append (argvj, carg, argv);
793   }
794   for (cnt = 0; NULL != argv2[cnt]; cnt++)
795   {
796     argv = GNUNET_strdup (argv2[cnt]);
797     GNUNET_array_append (argvj, carg, argv);
798   }
799   GNUNET_array_append (argvj, carg, NULL);
800   return argvj;
801 }
802
803
804 /**
805  * Frees the given NULL terminated arguments
806  *
807  * @param argv the NULL terminated list of arguments
808  */
809 static void
810 free_argv (char **argv)
811 {
812   unsigned int argp;
813
814   for (argp = 0; NULL != argv[argp]; argp++)
815     GNUNET_free (argv[argp]);
816   GNUNET_free (argv);
817 }
818
819
820 /**
821  * Generates arguments for opening a remote shell. Builds up the arguments
822  * from the environment variable GNUNET_TESTBED_RSH_CMD. The variable
823  * should not mention `-p' (port) option and destination address as these will
824  * be set locally in the function from its parameteres. If the environmental
825  * variable is not found then it defaults to `ssh -o BatchMode=yes -o
826  * NoHostAuthenticationForLocalhost=yes -o StrictHostkeyChecking=no -o
827  * PasswordAuthentication=noc'
828  *
829  * @param port the destination port number
830  * @param hostname the hostname of the target host
831  * @param username the username to use while connecting to target host
832  * @return NULL terminated list of arguments
833  */
834 static char **
835 gen_rsh_args (const char *port, const char *hostname, const char *username)
836 {
837   static const char *default_ssh_args[] = {
838     "ssh",
839     "-o",
840     "BatchMode=yes",
841     "-o",
842     "NoHostAuthenticationForLocalhost=yes",
843     "-o",
844     "StrictHostKeyChecking=no",
845     "-o",
846     "PasswordAuthentication=no",
847     "%h",
848     NULL
849   };
850   char **ssh_args;
851   char *ssh_cmd;
852   char *ssh_cmd_cp;
853   char *arg;
854   const char *new_arg;
855   unsigned int size;
856   unsigned int cnt;
857
858   ssh_args = NULL;
859   if (NULL != (ssh_cmd = getenv ("GNUNET_TESTBED_RSH_CMD")))
860   {
861     ssh_cmd = GNUNET_strdup (ssh_cmd);
862     ssh_cmd_cp = ssh_cmd;
863     for (size = 0; NULL != (arg = strtok (ssh_cmd, " ")); ssh_cmd = NULL)
864       GNUNET_array_append (ssh_args, size, GNUNET_strdup (arg));
865     GNUNET_free (ssh_cmd_cp);
866   }
867   else
868   {
869     ssh_args = copy_argv (default_ssh_args);
870     size = (sizeof (default_ssh_args)) / (sizeof (const char *));
871     GNUNET_array_grow (ssh_args, size, size - 1);
872   }
873   for (cnt = 0; cnt < size; cnt++)
874   {
875     arg = ssh_args[cnt];
876     if ('%' != arg[0])
877       continue;
878     switch (arg[1])
879     {
880     case 'p':
881       new_arg = port;
882       break;
883
884     case 'u':
885       new_arg = username;
886       break;
887
888     case 'h':
889       new_arg = hostname;
890       break;
891
892     default:
893       continue;
894     }
895     if (NULL == new_arg)
896       continue;
897     GNUNET_free (arg);
898     ssh_args[cnt] = GNUNET_strdup (new_arg);
899   }
900   GNUNET_array_append (ssh_args, size, NULL);
901   return ssh_args;
902 }
903
904
905 /**
906  * Generates the arguments needed for executing the given binary in a remote
907  * shell. Builds the arguments from the environmental variable
908  * GNUNET_TETSBED_RSH_CMD_SUFFIX. If the environmental variable is not found,
909  * only the given binary name will be present in the returned arguments
910  *
911  * @param append_args the arguments to append after generating the suffix
912  *          arguments. Can be NULL; if not must be NULL terminated 'char *' array
913  * @return NULL-terminated args
914  */
915 static char **
916 gen_rsh_suffix_args (const char * const *append_args)
917 {
918   char **rshell_args;
919   char *rshell_cmd;
920   char *rshell_cmd_cp;
921   char *arg;
922   unsigned int cnt;
923   unsigned int append_cnt;
924
925   rshell_args = NULL;
926   cnt = 0;
927   if (NULL != (rshell_cmd = getenv ("GNUNET_TESTBED_RSH_CMD_SUFFIX")))
928   {
929     rshell_cmd = GNUNET_strdup (rshell_cmd);
930     rshell_cmd_cp = rshell_cmd;
931     for (; NULL != (arg = strtok (rshell_cmd, " ")); rshell_cmd = NULL)
932       GNUNET_array_append (rshell_args, cnt, GNUNET_strdup (arg));
933     GNUNET_free (rshell_cmd_cp);
934   }
935   if (NULL != append_args)
936   {
937     for (append_cnt = 0; NULL != append_args[append_cnt]; append_cnt++)
938       GNUNET_array_append (rshell_args, cnt, GNUNET_strdup (append_args[append_cnt]));
939   }
940   GNUNET_array_append (rshell_args, cnt, NULL);
941   return rshell_args;
942 }
943
944
945 /**
946  * Functions with this signature are called whenever a
947  * complete message is received by the tokenizer.
948  *
949  * Do not call GNUNET_SERVER_mst_destroy in callback
950  *
951  * @param cls closure
952  * @param client identification of the client
953  * @param message the actual message
954  *
955  * @return #GNUNET_OK on success, #GNUNET_SYSERR to stop further processing
956  */
957 static int
958 helper_mst (void *cls,
959             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  * Register a host with the controller
1391  *
1392  * @param controller the controller handle
1393  * @param host the host to register
1394  * @param cc the completion callback to call to inform the status of
1395  *          registration. After calling this callback the registration handle
1396  *          will be invalid. Cannot be NULL.
1397  * @param cc_cls the closure for the cc
1398  * @return handle to the host registration which can be used to cancel the
1399  *           registration
1400  */
1401 struct GNUNET_TESTBED_HostRegistrationHandle *
1402 GNUNET_TESTBED_register_host (struct GNUNET_TESTBED_Controller *controller,
1403                               struct GNUNET_TESTBED_Host *host,
1404                               GNUNET_TESTBED_HostRegistrationCompletion cc,
1405                               void *cc_cls)
1406 {
1407   struct GNUNET_TESTBED_HostRegistrationHandle *rh;
1408   struct GNUNET_TESTBED_AddHostMessage *msg;
1409   const char *username;
1410   const char *hostname;
1411   char *config;
1412   char *cconfig;
1413   void *ptr;
1414   size_t cc_size;
1415   size_t config_size;
1416   uint16_t msg_size;
1417   uint16_t username_length;
1418   uint16_t hostname_length;
1419
1420   if (NULL != controller->rh)
1421     return NULL;
1422   hostname = GNUNET_TESTBED_host_get_hostname (host);
1423   if (GNUNET_YES == GNUNET_TESTBED_is_host_registered_ (host, controller))
1424   {
1425     LOG (GNUNET_ERROR_TYPE_WARNING, "Host hostname: %s already registered\n",
1426          (NULL == hostname) ? "localhost" : hostname);
1427     return NULL;
1428   }
1429   rh = GNUNET_new (struct GNUNET_TESTBED_HostRegistrationHandle);
1430   rh->host = host;
1431   rh->c = controller;
1432   GNUNET_assert (NULL != cc);
1433   rh->cc = cc;
1434   rh->cc_cls = cc_cls;
1435   controller->rh = rh;
1436   username = GNUNET_TESTBED_host_get_username_ (host);
1437   username_length = 0;
1438   if (NULL != username)
1439     username_length = strlen (username);
1440   GNUNET_assert (NULL != hostname); /* Hostname must be present */
1441   hostname_length = strlen (hostname);
1442   GNUNET_assert (NULL != host->cfg);
1443   config = GNUNET_CONFIGURATION_serialize (host->cfg, &config_size);
1444   cc_size = GNUNET_TESTBED_compress_config_ (config, config_size, &cconfig);
1445   GNUNET_free (config);
1446   msg_size = (sizeof (struct GNUNET_TESTBED_AddHostMessage));
1447   msg_size += username_length;
1448   msg_size += hostname_length;
1449   msg_size += cc_size;
1450   msg = GNUNET_malloc (msg_size);
1451   msg->header.size = htons (msg_size);
1452   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_ADD_HOST);
1453   msg->host_id = htonl (GNUNET_TESTBED_host_get_id_ (host));
1454   msg->ssh_port = htons (GNUNET_TESTBED_host_get_ssh_port_ (host));
1455   ptr = &msg[1];
1456   if (NULL != username)
1457   {
1458     msg->username_length = htons (username_length);
1459     GNUNET_memcpy (ptr, username, username_length);
1460     ptr += username_length;
1461   }
1462   msg->hostname_length = htons (hostname_length);
1463   GNUNET_memcpy (ptr, hostname, hostname_length);
1464   ptr += hostname_length;
1465   msg->config_size = htons (config_size);
1466   GNUNET_memcpy (ptr, cconfig, cc_size);
1467   ptr += cc_size;
1468   GNUNET_assert ((ptr - (void *) msg) == msg_size);
1469   GNUNET_free (cconfig);
1470   GNUNET_TESTBED_queue_message_ (controller,
1471                                  (struct GNUNET_MessageHeader *) msg);
1472   return rh;
1473 }
1474
1475
1476 /**
1477  * Cancel the pending registration. Note that if the registration message is
1478  * already sent to the service the cancellation has only the effect that the
1479  * registration completion callback for the registration is never called.
1480  *
1481  * @param handle the registration handle to cancel
1482  */
1483 void
1484 GNUNET_TESTBED_cancel_registration (struct GNUNET_TESTBED_HostRegistrationHandle
1485                                     *handle)
1486 {
1487   if (handle != handle->c->rh)
1488   {
1489     GNUNET_break (0);
1490     return;
1491   }
1492   handle->c->rh = NULL;
1493   GNUNET_free (handle);
1494 }
1495
1496
1497 /**
1498  * Queues the given operation in the queue for parallel overlay connects of the
1499  * given host
1500  *
1501  * @param h the host handle
1502  * @param op the operation to queue in the given host's parally overlay connect
1503  *          queue
1504  */
1505 void
1506 GNUNET_TESTBED_host_queue_oc_ (struct GNUNET_TESTBED_Host *h,
1507                                struct GNUNET_TESTBED_Operation *op)
1508 {
1509   GNUNET_TESTBED_operation_queue_insert_
1510       (h->opq_parallel_overlay_connect_operations, op);
1511 }
1512
1513
1514 /**
1515  * Resolves the hostname of the host to an ip address
1516  *
1517  * @param host the host whose hostname is to be resolved
1518  */
1519 void
1520 GNUNET_TESTBED_host_resolve_ (struct GNUNET_TESTBED_Host *host)
1521 {
1522   char *hostname;
1523
1524   hostname = (char *) host->hostname;
1525   host->hostname = simple_resolve (hostname);
1526   if (NULL == host->hostname)
1527   {
1528     GNUNET_break (0);
1529     host->hostname = hostname;
1530     return;
1531   }
1532   GNUNET_free (hostname);
1533   host->hostname = GNUNET_strdup (host->hostname);
1534 }
1535
1536 /* end of testbed_api_hosts.c */