36cd5c14ef2d413cb6edb65d51d89de7ef7b8c70
[oweals/gnunet.git] / src / testbed / testbed_api_hosts.c
1 /*
2       This file is part of GNUnet
3       (C) 2008--2012 Christian Grothoff (and other contributing authors)
4
5       GNUnet is free software; you can redistribute it and/or modify
6       it under the terms of the GNU General Public License as published
7       by the Free Software Foundation; either version 3, or (at your
8       option) any later version.
9
10       GNUnet is distributed in the hope that it will be useful, but
11       WITHOUT ANY WARRANTY; without even the implied warranty of
12       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13       General Public License for more details.
14
15       You should have received a copy of the GNU General Public License
16       along with GNUnet; see the file COPYING.  If not, write to the
17       Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18       Boston, MA 02111-1307, USA.
19  */
20
21 /**
22  * @file 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
37 /**
38  * Generic logging shorthand
39  */
40 #define LOG(kind, ...)                          \
41   GNUNET_log_from (kind, "testbed-api-hosts", __VA_ARGS__);
42
43 /**
44  * Number of extra elements we create space for when we grow host list
45  */
46 #define HOST_LIST_GROW_STEP 10
47
48
49 /**
50  * A list entry for registered controllers list
51  */
52 struct RegisteredController
53 {
54   /**
55    * The controller at which this host is registered
56    */
57   const struct GNUNET_TESTBED_Controller *controller;
58
59   /**
60    * The next ptr for DLL
61    */
62   struct RegisteredController *next;
63
64   /**
65    * The prev ptr for DLL
66    */
67   struct RegisteredController *prev;
68 };
69
70
71 /**
72  * Opaque handle to a host running experiments managed by the testing framework.
73  * The master process must be able to SSH to this host without password (via
74  * ssh-agent).
75  */
76 struct GNUNET_TESTBED_Host
77 {
78
79   /**
80    * The next pointer for DLL
81    */
82   struct GNUNET_TESTBED_Host *next;
83
84   /**
85    * The prev pointer for DLL
86    */
87   struct GNUNET_TESTBED_Host *prev;
88
89   /**
90    * The hostname of the host; NULL for localhost
91    */
92   const char *hostname;
93
94   /**
95    * The username to be used for SSH login
96    */
97   const char *username;
98
99   /**
100    * The head for the list of controllers where this host is registered
101    */
102   struct RegisteredController *rc_head;
103
104   /**
105    * The tail for the list of controllers where this host is registered
106    */
107   struct RegisteredController *rc_tail;
108
109   /**
110    * Global ID we use to refer to a host on the network
111    */
112   uint32_t id;
113
114   /**
115    * The port which is to be used for SSH
116    */
117   uint16_t port;
118
119 };
120
121
122 /**
123  * Array of available hosts
124  */
125 static struct GNUNET_TESTBED_Host **host_list;
126
127 /**
128  * The size of the available hosts list
129  */
130 static uint32_t host_list_size;
131
132
133 /**
134  * Lookup a host by ID.
135  *
136  * @param id global host ID assigned to the host; 0 is
137  *        reserved to always mean 'localhost'
138  * @return handle to the host, NULL if host not found
139  */
140 struct GNUNET_TESTBED_Host *
141 GNUNET_TESTBED_host_lookup_by_id_ (uint32_t id)
142 {
143   if (host_list_size <= id)
144     return NULL;
145   return host_list[id];
146 }
147
148
149 /**
150  * Create a host by ID; given this host handle, we could not
151  * run peers at the host, but we can talk about the host
152  * internally.
153  *
154  * @param id global host ID assigned to the host; 0 is
155  *        reserved to always mean 'localhost'
156  * @return handle to the host, NULL on error
157  */
158 struct GNUNET_TESTBED_Host *
159 GNUNET_TESTBED_host_create_by_id_ (uint32_t id)
160 {
161   return GNUNET_TESTBED_host_create_with_id (id, NULL, NULL, 0);
162 }
163
164
165 /**
166  * Obtain the host's unique global ID.
167  *
168  * @param host handle to the host, NULL means 'localhost'
169  * @return id global host ID assigned to the host (0 is
170  *         'localhost', but then obviously not globally unique)
171  */
172 uint32_t
173 GNUNET_TESTBED_host_get_id_ (const struct GNUNET_TESTBED_Host * host)
174 {
175   return host->id;
176 }
177
178
179 /**
180  * Obtain the host's hostname.
181  *
182  * @param host handle to the host, NULL means 'localhost'
183  * @return hostname of the host
184  */
185 const char *
186 GNUNET_TESTBED_host_get_hostname_ (const struct GNUNET_TESTBED_Host *host)
187 {
188   return host->hostname;
189 }
190
191
192 /**
193  * Obtain the host's username
194  *
195  * @param host handle to the host, NULL means 'localhost'
196  * @return username to login to the host
197  */
198 const char *
199 GNUNET_TESTBED_host_get_username_ (const struct GNUNET_TESTBED_Host *host)
200 {
201   return host->username;
202 }
203
204
205 /**
206  * Obtain the host's ssh port
207  *
208  * @param host handle to the host, NULL means 'localhost'
209  * @return username to login to the host
210  */
211 uint16_t
212 GNUNET_TESTBED_host_get_ssh_port_ (const struct GNUNET_TESTBED_Host * host)
213 {
214   return host->port;
215 }
216
217
218 /**
219  * Create a host to run peers and controllers on.
220  *
221  * @param id global host ID assigned to the host; 0 is
222  *        reserved to always mean 'localhost'
223  * @param hostname name of the host, use "NULL" for localhost
224  * @param username username to use for the login; may be NULL
225  * @param port port number to use for ssh; use 0 to let ssh decide
226  * @return handle to the host, NULL on error
227  */
228 struct GNUNET_TESTBED_Host *
229 GNUNET_TESTBED_host_create_with_id (uint32_t id, const char *hostname,
230                                     const char *username, uint16_t port)
231 {
232   struct GNUNET_TESTBED_Host *host;
233   uint32_t new_size;
234
235   if ((id < host_list_size) && (NULL != host_list[id]))
236   {
237     LOG (GNUNET_ERROR_TYPE_WARNING, "Host with id: %u already created\n", id);
238     return NULL;
239   }
240   host = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_Host));
241   host->hostname = (NULL != hostname) ? GNUNET_strdup (hostname) : NULL;
242   host->username = (NULL != username) ? GNUNET_strdup (username) : NULL;
243   host->id = id;
244   host->port = (0 == port) ? 22 : port;
245   new_size = host_list_size;
246   while (id >= new_size)
247     new_size += HOST_LIST_GROW_STEP;
248   if (new_size != host_list_size)
249   {
250     host_list =
251         GNUNET_realloc (host_list,
252                         sizeof (struct GNUNET_TESTBED_Host *) * new_size);
253     (void) memset (&host_list[host_list_size], 0,
254                    sizeof (struct GNUNET_TESTBED_Host *) * (new_size -
255                                                             host_list_size));
256     host_list_size = new_size;
257   }
258   LOG (GNUNET_ERROR_TYPE_DEBUG, "Adding host with id: %u\n", host->id);
259   host_list[id] = host;
260   return host;
261 }
262
263
264 /**
265  * Create a host to run peers and controllers on.
266  *
267  * @param hostname name of the host, use "NULL" for localhost
268  * @param username username to use for the login; may be NULL
269  * @param port port number to use for ssh; use 0 to let ssh decide
270  * @return handle to the host, NULL on error
271  */
272 struct GNUNET_TESTBED_Host *
273 GNUNET_TESTBED_host_create (const char *hostname, const char *username,
274                             uint16_t port)
275 {
276   static uint32_t uid_generator;
277
278   if (NULL == hostname)
279     return GNUNET_TESTBED_host_create_with_id (0, hostname, username, port);
280   return GNUNET_TESTBED_host_create_with_id (++uid_generator, hostname,
281                                              username, port);
282 }
283
284
285 /**
286  * Load a set of hosts from a configuration file.
287  *
288  * @param filename file with the host specification
289  * @param hosts set to the hosts found in the file; caller must free this if
290  *          number of hosts returned is greater than 0
291  * @return number of hosts returned in 'hosts', 0 on error
292  */
293 unsigned int
294 GNUNET_TESTBED_hosts_load_from_file (const char *filename,
295                                      struct GNUNET_TESTBED_Host ***hosts)
296 {
297   //struct GNUNET_TESTBED_Host **host_array;
298   struct GNUNET_TESTBED_Host *starting_host;
299   char *data;
300   char *buf;
301   char *username;
302   char *hostname;
303   uint64_t fs;
304   short int port;
305   int ret;
306   unsigned int offset;
307   unsigned int count;
308   
309
310   GNUNET_assert (NULL != filename);
311   if (GNUNET_YES != GNUNET_DISK_file_test (filename))
312   {
313     LOG (GNUNET_ERROR_TYPE_WARNING, _("Hosts file %s not found\n"), filename);
314     return 0;
315   }
316   if (GNUNET_OK != 
317       GNUNET_DISK_file_size (filename, &fs, GNUNET_YES, GNUNET_YES))
318     fs = 0;
319   if (0 == fs)
320   {
321     LOG (GNUNET_ERROR_TYPE_WARNING, _("Hosts file %s has no data\n"), filename);
322     return 0;
323   }
324   data = GNUNET_malloc (fs);  
325   if (fs != GNUNET_DISK_fn_read (filename, data, fs))
326   {
327     GNUNET_free (data);
328     LOG (GNUNET_ERROR_TYPE_WARNING, _("Hosts file %s cannot be read\n"),
329          filename);
330     return 0;
331   }
332   buf = data;
333   offset = 0;
334   starting_host = NULL;
335   count = 0;
336   while (offset < (fs - 1))
337   {
338     offset++;
339     if (((data[offset] == '\n')) && (buf != &data[offset]))
340     {
341       data[offset] = '\0';
342       username = NULL;
343       hostname = NULL;
344       ret = SSCANF (buf, "%m[a-zA-Z0-9_]@%m[a-zA-Z0-9.]:%hd",
345                     &username, &hostname, &port);
346       if  (3 == ret)
347       {
348         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
349                     "Successfully read host %s, port %d and user %s from file\n",
350                     hostname, port, username);
351         /* We store hosts in a static list; hence we only require the starting
352            host pointer in that list to access the newly created list of hosts */
353         if (NULL == starting_host)
354           starting_host = GNUNET_TESTBED_host_create (hostname, username,
355                                                       port);
356         else
357           (void) GNUNET_TESTBED_host_create (hostname, username, port);
358         count++;
359       }
360       else
361         GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
362                     "Error reading line `%s' in hostfile\n", buf);
363       GNUNET_free_non_null (hostname);
364       GNUNET_free_non_null (username);
365       buf = &data[offset + 1];
366     }
367     else if ((data[offset] == '\n') || (data[offset] == '\0'))
368       buf = &data[offset + 1];        
369   }
370   GNUNET_free (data);
371   if (NULL == starting_host)
372     return 0;  
373   *hosts = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_Host *) * count);
374   memcpy (*hosts,
375           &host_list[GNUNET_TESTBED_host_get_id_ (starting_host)],
376           sizeof (struct GNUNET_TESTBED_Host *) * count);
377   return count;
378 }
379
380
381 /**
382  * Destroy a host handle.  Must only be called once everything
383  * running on that host has been stopped.
384  *
385  * @param host handle to destroy
386  */
387 void
388 GNUNET_TESTBED_host_destroy (struct GNUNET_TESTBED_Host *host)
389 {
390   struct RegisteredController *rc;
391   uint32_t id;
392
393   GNUNET_assert (host->id < host_list_size);
394   GNUNET_assert (host_list[host->id] == host);
395   host_list[host->id] = NULL;
396   /* clear registered controllers list */
397   for (rc = host->rc_head; NULL != rc; rc = host->rc_head)
398   {
399     GNUNET_CONTAINER_DLL_remove (host->rc_head, host->rc_tail, rc);
400     GNUNET_free (rc);
401   }
402   GNUNET_free_non_null ((char *) host->username);
403   GNUNET_free_non_null ((char *) host->hostname);
404   GNUNET_free (host);
405   while (host_list_size >= HOST_LIST_GROW_STEP)
406   {
407     for (id = host_list_size - 1; id > host_list_size - HOST_LIST_GROW_STEP;
408          id--)
409       if (NULL != host_list[id])
410         break;
411     if (id != host_list_size - HOST_LIST_GROW_STEP)
412       break;
413     if (NULL != host_list[id])
414       break;
415     host_list_size -= HOST_LIST_GROW_STEP;
416   }
417   host_list =
418       GNUNET_realloc (host_list,
419                       sizeof (struct GNUNET_TESTBED_Host *) * host_list_size);
420 }
421
422
423 /**
424  * Marks a host as registered with a controller
425  *
426  * @param host the host to mark
427  * @param controller the controller at which this host is registered
428  */
429 void
430 GNUNET_TESTBED_mark_host_registered_at_ (struct GNUNET_TESTBED_Host *host,
431                                          const struct GNUNET_TESTBED_Controller
432                                          *const controller)
433 {
434   struct RegisteredController *rc;
435
436   for (rc = host->rc_head; NULL != rc; rc = rc->next)
437   {
438     if (controller == rc->controller)   /* already registered at controller */
439     {
440       GNUNET_break (0);
441       return;
442     }
443   }
444   rc = GNUNET_malloc (sizeof (struct RegisteredController));
445   rc->controller = controller;
446   //host->controller = controller;
447   GNUNET_CONTAINER_DLL_insert_tail (host->rc_head, host->rc_tail, rc);
448 }
449
450
451 /**
452  * Checks whether a host has been registered
453  *
454  * @param host the host to check
455  * @param controller the controller at which host's registration is checked
456  * @return GNUNET_YES if registered; GNUNET_NO if not
457  */
458 int
459 GNUNET_TESTBED_is_host_registered_ (const struct GNUNET_TESTBED_Host *host,
460                                     const struct GNUNET_TESTBED_Controller
461                                     *const controller)
462 {
463   struct RegisteredController *rc;
464
465   for (rc = host->rc_head; NULL != rc; rc = rc->next)
466   {
467     if (controller == rc->controller)   /* already registered at controller */
468     {
469       return GNUNET_YES;
470     }
471   }
472   return GNUNET_NO;
473 }
474
475
476 /**
477  * Checks whether a host can be used to start testbed service
478  *
479  * @param host the host to check
480  * @return GNUNET_YES if testbed service can be started on the given host
481  *           remotely; GNUNET_NO if not
482  */
483 int
484 GNUNET_TESTBED_is_host_habitable (const struct GNUNET_TESTBED_Host *host)
485 {
486   char *remote_args[11];
487   char *portstr;
488   char *ssh_addr;
489   const char *hostname;
490   struct GNUNET_OS_Process *auxp;
491   unsigned long code;
492   enum GNUNET_OS_ProcessStatusType type;
493   int ret;
494   unsigned int argp;
495
496   portstr = NULL;
497   ssh_addr = NULL;
498   hostname = (NULL == host->hostname) ? "127.0.0.1" : host->hostname;
499   if (NULL == host->username)
500     ssh_addr = GNUNET_strdup (hostname);
501   else
502     GNUNET_asprintf (&ssh_addr, "%s@%s", host->username, hostname);
503   argp = 0;
504   remote_args[argp++] = "ssh";
505   GNUNET_asprintf (&portstr, "%u", host->port);
506   remote_args[argp++] = "-p";
507   remote_args[argp++] = portstr;
508   remote_args[argp++] = "-o";
509   remote_args[argp++] = "BatchMode=yes";
510   remote_args[argp++] = "-o";
511   remote_args[argp++] = "NoHostAuthenticationForLocalhost=yes";
512   remote_args[argp++] = ssh_addr;
513   remote_args[argp++] = "which";
514   remote_args[argp++] = "gnunet-helper-testbed";  
515   remote_args[argp++] = NULL;
516   GNUNET_assert (argp == 11);
517   auxp =
518       GNUNET_OS_start_process_vap (GNUNET_NO, GNUNET_OS_INHERIT_STD_ALL, NULL,
519                                    NULL, "ssh", remote_args);
520   if (NULL == auxp)
521   {
522     GNUNET_free (ssh_addr);
523     GNUNET_free (portstr);
524     return GNUNET_NO;
525   }
526   do
527   {
528     ret = GNUNET_OS_process_status (auxp, &type, &code);
529     GNUNET_assert (GNUNET_SYSERR != ret);
530     (void) usleep (300);
531   }
532   while (GNUNET_NO == ret);
533   //(void) GNUNET_OS_process_wait (auxp);
534   GNUNET_OS_process_destroy (auxp);
535   GNUNET_free (ssh_addr);
536   GNUNET_free (portstr);
537   return (0 != code) ? GNUNET_NO : GNUNET_YES;
538 }
539
540 /* end of testbed_api_hosts.c */