controller hostname in init
[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_testbed_service.h"
30 #include "gnunet_core_service.h"
31 #include "gnunet_constants.h"
32 #include "gnunet_transport_service.h"
33 #include "gnunet_hello_lib.h"
34 #include "gnunet_container_lib.h"
35
36 #include "testbed_api.h"
37 #include "testbed_api_hosts.h"
38
39 /**
40  * Generic logging shorthand
41  */
42 #define LOG(kind, ...)                          \
43   GNUNET_log_from (kind, "testbed-api-hosts", __VA_ARGS__);
44
45 /**
46  * Number of extra elements we create space for when we grow host list
47  */
48 #define HOST_LIST_GROW_STEP 10
49
50
51 /**
52  * A list entry for registered controllers list
53  */
54 struct RegisteredController
55 {
56   /**
57    * The controller at which this host is registered
58    */
59   const struct GNUNET_TESTBED_Controller *controller;
60   
61   /**
62    * The next ptr for DLL
63    */
64   struct RegisteredController *next;
65
66   /**
67    * The prev ptr for DLL
68    */
69   struct RegisteredController *prev;
70 };
71
72
73 /**
74  * Opaque handle to a host running experiments managed by the testing framework.
75  * The master process must be able to SSH to this host without password (via
76  * ssh-agent).
77  */
78 struct GNUNET_TESTBED_Host
79 {
80
81   /**
82    * The next pointer for DLL
83    */
84   struct GNUNET_TESTBED_Host *next;
85
86   /**
87    * The prev pointer for DLL
88    */
89   struct GNUNET_TESTBED_Host *prev;
90
91   /**
92    * The hostname of the host; NULL for localhost
93    */
94   const char *hostname;
95
96   /**
97    * The username to be used for SSH login
98    */
99   const char *username;
100
101   /**
102    * The head for the list of controllers where this host is registered
103    */
104   struct RegisteredController *rc_head;
105
106   /**
107    * The tail for the list of controllers where this host is registered
108    */
109   struct RegisteredController *rc_tail;
110
111   /**
112    * Global ID we use to refer to a host on the network
113    */
114   uint32_t id;
115
116   /**
117    * The port which is to be used for SSH
118    */
119   uint16_t port;
120
121 };
122
123
124 /**
125  * Array of available hosts
126  */
127 static struct GNUNET_TESTBED_Host **host_list;
128
129 /**
130  * The size of the available hosts list
131  */
132 static uint32_t host_list_size;
133
134
135 /**
136  * Lookup a host by ID.
137  * 
138  * @param id global host ID assigned to the host; 0 is
139  *        reserved to always mean 'localhost'
140  * @return handle to the host, NULL if host not found
141  */
142 struct GNUNET_TESTBED_Host *
143 GNUNET_TESTBED_host_lookup_by_id_ (uint32_t id)
144 {
145   if (host_list_size <= id)
146     return NULL;
147   return host_list[id];
148 }
149
150
151 /**
152  * Create a host by ID; given this host handle, we could not
153  * run peers at the host, but we can talk about the host
154  * internally.
155  * 
156  * @param id global host ID assigned to the host; 0 is
157  *        reserved to always mean 'localhost'
158  * @return handle to the host, NULL on error
159  */
160 struct GNUNET_TESTBED_Host *
161 GNUNET_TESTBED_host_create_by_id_ (uint32_t id)
162 {
163   return GNUNET_TESTBED_host_create_with_id (id, NULL, NULL, 0);
164 }
165
166
167 /**
168  * Obtain the host's unique global ID.
169  * 
170  * @param host handle to the host, NULL means 'localhost'
171  * @return id global host ID assigned to the host (0 is
172  *         'localhost', but then obviously not globally unique)
173  */
174 uint32_t
175 GNUNET_TESTBED_host_get_id_ (const struct GNUNET_TESTBED_Host *host)
176 {
177   return host->id;
178 }
179
180
181 /**
182  * Obtain the host's hostname.
183  * 
184  * @param host handle to the host, NULL means 'localhost'
185  * @return hostname of the host
186  */
187 const char *
188 GNUNET_TESTBED_host_get_hostname_ (const struct GNUNET_TESTBED_Host *host)
189 {
190   return host->hostname;
191 }
192
193
194 /**
195  * Obtain the host's username
196  * 
197  * @param host handle to the host, NULL means 'localhost'
198  * @return username to login to the host
199  */
200 const char *
201 GNUNET_TESTBED_host_get_username_ (const struct GNUNET_TESTBED_Host *host)
202 {
203   return host->username;
204 }
205
206
207 /**
208  * Obtain the host's ssh port
209  * 
210  * @param host handle to the host, NULL means 'localhost'
211  * @return username to login to the host
212  */
213 uint16_t
214 GNUNET_TESTBED_host_get_ssh_port_ (const struct GNUNET_TESTBED_Host *host)
215 {
216   return host->port;
217 }
218
219
220 /**
221  * Create a host to run peers and controllers on.
222  * 
223  * @param id global host ID assigned to the host; 0 is
224  *        reserved to always mean 'localhost'
225  * @param hostname name of the host, use "NULL" for localhost
226  * @param username username to use for the login; may be NULL
227  * @param port port number to use for ssh; use 0 to let ssh decide
228  * @return handle to the host, NULL on error
229  */
230 struct GNUNET_TESTBED_Host *
231 GNUNET_TESTBED_host_create_with_id (uint32_t id,
232                                     const char *hostname,
233                                     const char *username,
234                                     uint16_t port)
235 {
236   struct GNUNET_TESTBED_Host *host;
237   uint32_t new_size;
238
239   if ((id < host_list_size) && (NULL != host_list[id]))
240   {
241     LOG (GNUNET_ERROR_TYPE_WARNING, "Host with id: %u already created\n");
242     return NULL;
243   }
244   host = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_Host));
245   host->hostname = hostname;
246   host->username = username;
247   host->id = id;
248   host->port = (0 == port) ? 22 : port;
249   new_size = host_list_size;
250   while (id >= new_size)
251     new_size += HOST_LIST_GROW_STEP;
252   if (new_size != host_list_size)
253   {
254     host_list = GNUNET_realloc (host_list, sizeof (struct GNUNET_TESTBED_Host *)
255                                 * new_size);
256     (void) memset(&host_list[host_list_size], 0, 
257                   sizeof (struct GNUNET_TESTBED_Host *) *
258                   (new_size - host_list_size));
259     host_list_size = new_size;
260   }
261   LOG (GNUNET_ERROR_TYPE_DEBUG,
262        "Adding host with id: %u\n", host->id);
263   host_list[id] = host;
264   return host;
265 }
266
267
268 /**
269  * Create a host to run peers and controllers on.
270  * 
271  * @param hostname name of the host, use "NULL" for localhost
272  * @param username username to use for the login; may be NULL
273  * @param port port number to use for ssh; use 0 to let ssh decide
274  * @return handle to the host, NULL on error
275  */
276 struct GNUNET_TESTBED_Host *
277 GNUNET_TESTBED_host_create (const char *hostname,
278                             const char *username,
279                             uint16_t port)
280 {
281   static uint32_t uid_generator;
282
283   if (NULL == hostname)
284     return GNUNET_TESTBED_host_create_with_id (0, hostname, username, port);
285   return GNUNET_TESTBED_host_create_with_id (++uid_generator, 
286                                              hostname, username,
287                                              port);
288 }
289
290
291 /**
292  * Load a set of hosts from a configuration file.
293  *
294  * @param filename file with the host specification
295  * @param hosts set to the hosts found in the file
296  * @return number of hosts returned in 'hosts', 0 on error
297  */
298 unsigned int
299 GNUNET_TESTBED_hosts_load_from_file (const char *filename,
300                                      struct GNUNET_TESTBED_Host **hosts)
301 {
302   // see testing_group.c, GNUNET_TESTING_hosts_load
303   GNUNET_break (0);
304   return 0;
305 }
306
307
308 /**
309  * Destroy a host handle.  Must only be called once everything
310  * running on that host has been stopped.
311  *
312  * @param host handle to destroy
313  */
314 void
315 GNUNET_TESTBED_host_destroy (struct GNUNET_TESTBED_Host *host)
316 {  
317   struct RegisteredController *rc;
318   uint32_t id;
319
320   GNUNET_assert (host->id < host_list_size);
321   GNUNET_assert (host_list[host->id] == host);
322   host_list[host->id] = NULL;
323   /* clear registered controllers list */
324   for (rc=host->rc_head; NULL != rc; rc=host->rc_head)
325   {
326     GNUNET_CONTAINER_DLL_remove (host->rc_head, host->rc_tail, rc);
327     GNUNET_free (rc);
328   }
329   GNUNET_free (host);
330   while (host_list_size >= HOST_LIST_GROW_STEP)
331   {
332     for (id = host_list_size - 1;
333          id > host_list_size - HOST_LIST_GROW_STEP; id--)
334       if (NULL != host_list[id])
335         break;
336     if (id != host_list_size - HOST_LIST_GROW_STEP)
337       break;
338     if (NULL != host_list[id])
339       break;
340     host_list_size -= HOST_LIST_GROW_STEP;
341   }
342   host_list = GNUNET_realloc (host_list, sizeof (struct GNUNET_TESTBED_Host) *
343                               host_list_size);  
344 }
345
346
347 /**
348  * Marks a host as registered with a controller
349  *
350  * @param host the host to mark
351  * @param controller the controller at which this host is registered
352  */
353 void
354 GNUNET_TESTBED_mark_host_registered_at_ (struct GNUNET_TESTBED_Host *host,
355                                          const struct GNUNET_TESTBED_Controller
356                                          * const controller)
357 {
358   struct RegisteredController *rc;
359   
360   for (rc=host->rc_head; NULL != rc; rc=rc->next)
361   {
362     if (controller == rc->controller) /* already registered at controller */
363     {
364       GNUNET_break (0);
365       return;
366     }
367   }
368   rc = GNUNET_malloc (sizeof (struct RegisteredController));
369   rc->controller = controller;
370   //host->controller = controller;
371   GNUNET_CONTAINER_DLL_insert_tail (host->rc_head, host->rc_tail, rc);
372 }
373
374
375 /**
376  * Checks whether a host has been registered
377  *
378  * @param host the host to check
379  * @param controller the controller at which host's registration is checked
380  * @return GNUNET_YES if registered; GNUNET_NO if not
381  */
382 int
383 GNUNET_TESTBED_is_host_registered_ (const struct GNUNET_TESTBED_Host *host,
384                                     const struct GNUNET_TESTBED_Controller
385                                     *const controller)
386 {
387   struct RegisteredController *rc;
388   
389   for (rc=host->rc_head; NULL != rc; rc=rc->next)
390   {
391     if (controller == rc->controller) /* already registered at controller */
392     {
393       return GNUNET_YES;
394     }
395   }
396   return GNUNET_NO;
397 }
398
399
400 /* end of testbed_api_hosts.c */