fixed memory leak with HELLO
[oweals/gnunet.git] / src / testbed / testbed_api.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.c
23  * @brief API for accessing the GNUnet testing service.
24  *        This library is supposed to make it easier to write
25  *        testcases and script large-scale benchmarks.
26  * @author Christian Grothoff
27  * @author Sree Harsha Totakura
28  */
29
30
31 #include "platform.h"
32 #include "gnunet_testbed_service.h"
33 #include "gnunet_core_service.h"
34 #include "gnunet_constants.h"
35 #include "gnunet_transport_service.h"
36 #include "gnunet_hello_lib.h"
37 #include <zlib.h>
38
39 #include "testbed.h"
40 #include "testbed_api.h"
41 #include "testbed_api_hosts.h"
42 #include "testbed_api_peers.h"
43 #include "testbed_api_operations.h"
44
45 /**
46  * Generic logging shorthand
47  */
48 #define LOG(kind, ...)                          \
49   GNUNET_log_from (kind, "testbed-api", __VA_ARGS__);
50
51 /**
52  * Debug logging
53  */
54 #define LOG_DEBUG(...)                          \
55   LOG (GNUNET_ERROR_TYPE_DEBUG, __VA_ARGS__);
56
57 /**
58  * Relative time seconds shorthand
59  */
60 #define TIME_REL_SECS(sec) \
61   GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, sec)
62
63
64 /**
65  * Default server message sending retry timeout
66  */
67 #define TIMEOUT_REL TIME_REL_SECS(1)
68
69
70 /**
71  * The message queue for sending messages to the controller service
72  */
73 struct MessageQueue
74 {
75   /**
76    * The message to be sent
77    */
78   struct GNUNET_MessageHeader *msg;
79
80   /**
81    * next pointer for DLL
82    */
83   struct MessageQueue *next;
84   
85   /**
86    * prev pointer for DLL
87    */
88   struct MessageQueue *prev;
89 };
90
91
92 /**
93  * Structure for a controller link
94  */
95 struct ControllerLink
96 {
97   /**
98    * The next ptr for DLL
99    */
100   struct ControllerLink *next;
101
102   /**
103    * The prev ptr for DLL
104    */
105   struct ControllerLink *prev;
106
107   /**
108    * The host which will be referred in the peer start request. This is the
109    * host where the peer should be started
110    */
111   struct GNUNET_TESTBED_Host *delegated_host;
112
113   /**
114    * The host which will contacted to delegate the peer start request
115    */
116   struct GNUNET_TESTBED_Host *slave_host;
117
118   /**
119    * The configuration to be used to connect to slave host
120    */
121   const struct GNUNET_CONFIGURATION_Handle *slave_cfg;
122
123   /**
124    * GNUNET_YES if the slave should be started (and stopped) by us; GNUNET_NO
125    * if we are just allowed to use the slave via TCP/IP
126    */
127   int is_subordinate;
128 };
129
130
131 /**
132  * handle for host registration
133  */
134 struct GNUNET_TESTBED_HostRegistrationHandle
135 {
136   /**
137    * The host being registered
138    */
139   struct GNUNET_TESTBED_Host *host;
140
141   /**
142    * The controller at which this host is being registered
143    */
144   struct GNUNET_TESTBED_Controller *c;
145
146   /**
147    * The Registartion completion callback
148    */
149   GNUNET_TESTBED_HostRegistrationCompletion cc;
150
151   /**
152    * The closure for above callback
153    */
154   void *cc_cls;
155 };
156
157
158 /**
159  * Returns the operation context with the given id if found in the Operation
160  * context queues of the controller
161  *
162  * @param c the controller whose queues are searched
163  * @param id the id which has to be checked
164  * @return the matching operation context; NULL if no match found
165  */
166 static struct OperationContext *
167 find_opc (const struct GNUNET_TESTBED_Controller *c, const uint64_t id)
168 {
169   struct OperationContext *opc;
170
171   for (opc = c->ocq_head; NULL != opc; opc = opc->next)
172   {
173     if (id == opc->id)
174       return opc;
175   }
176   return NULL;
177 }
178
179
180 /**
181  * Handler for GNUNET_MESSAGE_TYPE_TESTBED_ADDHOSTCONFIRM message from
182  * controller (testbed service)
183  *
184  * @param c the controller handler
185  * @param msg message received
186  * @return GNUNET_YES if we can continue receiving from service; GNUNET_NO if
187  *           not
188  */
189 static int
190 handle_addhostconfirm (struct GNUNET_TESTBED_Controller *c,
191                        const struct GNUNET_TESTBED_HostConfirmedMessage *msg)
192 {
193   struct GNUNET_TESTBED_HostRegistrationHandle *rh;
194   char *emsg;
195   uint16_t msg_size;
196
197   rh = c->rh;
198   if (NULL == rh)
199   {  
200     return GNUNET_OK;    
201   }
202   if (GNUNET_TESTBED_host_get_id_ (rh->host) != ntohl (msg->host_id))
203   {
204     LOG_DEBUG ("Mismatch in host id's %u, %u of host confirm msg\n",
205                GNUNET_TESTBED_host_get_id_ (rh->host), ntohl (msg->host_id));
206     return GNUNET_OK;
207   }
208   c->rh = NULL;
209   msg_size = ntohs (msg->header.size);
210   if (sizeof (struct GNUNET_TESTBED_HostConfirmedMessage) == msg_size)
211   {
212     LOG_DEBUG ("Host %u successfully registered\n", ntohl (msg->host_id));
213     GNUNET_TESTBED_mark_host_registered_at_  (rh->host, c);
214     rh->cc (rh->cc_cls, NULL);
215     GNUNET_free (rh);
216     return GNUNET_OK;
217   } 
218   /* We have an error message */
219   emsg = (char *) &msg[1];
220   if ('\0' != emsg[msg_size - 
221                    sizeof (struct GNUNET_TESTBED_HostConfirmedMessage)])
222   {
223     GNUNET_break (0);
224     GNUNET_free (rh);
225     return GNUNET_NO;
226   }  
227   LOG (GNUNET_ERROR_TYPE_ERROR, _("Adding host %u failed with error: %s\n"),
228        ntohl (msg->host_id), emsg);
229   rh->cc (rh->cc_cls, emsg);
230   GNUNET_free (rh);
231   return GNUNET_OK;
232 }
233
234
235 /**
236  * Handler for GNUNET_MESSAGE_TYPE_TESTBED_ADDHOSTCONFIRM message from
237  * controller (testbed service)
238  *
239  * @param c the controller handler
240  * @param msg message received
241  * @return GNUNET_YES if we can continue receiving from service; GNUNET_NO if
242  *           not
243  */
244 static int
245 handle_opsuccess (struct GNUNET_TESTBED_Controller *c,
246                   const struct
247                   GNUNET_TESTBED_GenericOperationSuccessEventMessage *msg)
248 {
249   struct OperationContext *opc;
250   struct GNUNET_TESTBED_EventInformation *event;
251   uint64_t op_id;
252   
253   op_id = GNUNET_ntohll (msg->operation_id);
254   LOG_DEBUG ("Operation %ul successful\n", op_id);
255   if (NULL == (opc = find_opc (c, op_id)))
256   {
257     LOG_DEBUG ("Operation not found\n");
258     return GNUNET_YES;
259   }
260   event = NULL;
261   if (0 != (c->event_mask & (1L << GNUNET_TESTBED_ET_OPERATION_FINISHED)))
262     event = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_EventInformation));
263   if (NULL != event)
264     event->type = GNUNET_TESTBED_ET_OPERATION_FINISHED;
265   switch (opc->type)
266   {
267   case OP_PEER_DESTROY:
268     {
269       struct GNUNET_TESTBED_Peer *peer;
270       
271       if (NULL != event)
272       {
273         event->details.operation_finished.operation = opc->op;
274         event->details.operation_finished.op_cls = NULL;
275         event->details.operation_finished.emsg = NULL;
276         event->details.operation_finished.pit = GNUNET_TESTBED_PIT_GENERIC;
277         event->details.operation_finished.op_result.generic = NULL;
278       }
279       peer = opc->data;
280       GNUNET_free (peer);
281       opc->data = NULL;
282       //PEERDESTROYDATA
283     }
284     break;
285   default:
286     GNUNET_assert (0);
287   }
288   GNUNET_CONTAINER_DLL_remove (opc->c->ocq_head, opc->c->ocq_tail, opc);
289   opc->state = OPC_STATE_FINISHED;
290   if (NULL != event)
291   {
292     if (NULL != c->cc)
293       c->cc (c->cc_cls, event);
294     GNUNET_free (event);
295   }  
296   return GNUNET_YES;  
297 }
298
299
300 /**
301  * Handler for GNUNET_MESSAGE_TYPE_TESTBED_PEERCREATESUCCESS message from
302  * controller (testbed service)
303  *
304  * @param c the controller handler
305  * @param msg message received
306  * @return GNUNET_YES if we can continue receiving from service; GNUNET_NO if
307  *           not
308  */
309 static int
310 handle_peer_create_success (struct GNUNET_TESTBED_Controller *c,
311                             const struct
312                             GNUNET_TESTBED_PeerCreateSuccessEventMessage *msg)
313 {
314   struct OperationContext *opc;
315   struct PeerCreateData *data;
316   struct GNUNET_TESTBED_Peer *peer;
317   GNUNET_TESTBED_PeerCreateCallback cb;
318   void *cls;
319   uint64_t op_id;
320
321   GNUNET_assert (sizeof (struct GNUNET_TESTBED_PeerCreateSuccessEventMessage)
322                  == ntohs (msg->header.size));
323   op_id = GNUNET_ntohll (msg->operation_id);
324   if (NULL == (opc = find_opc (c, op_id)))
325   {
326     LOG_DEBUG ("Operation context for PeerCreateSuccessEvent not found\n");
327     return GNUNET_YES;
328   }
329   GNUNET_assert (OP_PEER_CREATE == opc->type);
330   GNUNET_assert (NULL != opc->data);
331   data = opc->data;
332   GNUNET_assert (NULL != data->peer);
333   peer = data->peer;
334   GNUNET_assert (peer->unique_id == ntohl (msg->peer_id));
335   peer->state = PS_CREATED;
336   cb = data->cb;
337   cls = data->cls;
338   GNUNET_free (opc->data);  
339   GNUNET_CONTAINER_DLL_remove (opc->c->ocq_head, opc->c->ocq_tail, opc);
340   opc->state = OPC_STATE_FINISHED;
341   if (NULL != cb)
342     cb (cls, peer, NULL);
343   return GNUNET_YES;
344 }
345
346
347 /**
348  * Handler for GNUNET_MESSAGE_TYPE_TESTBED_PEEREVENT message from
349  * controller (testbed service)
350  *
351  * @param c the controller handler
352  * @param msg message received
353  * @return GNUNET_YES if we can continue receiving from service; GNUNET_NO if
354  *           not
355  */
356 static int
357 handle_peer_event (struct GNUNET_TESTBED_Controller *c,
358                    const struct GNUNET_TESTBED_PeerEventMessage *msg)
359 {
360   struct OperationContext *opc;
361   struct GNUNET_TESTBED_Peer *peer;
362   struct GNUNET_TESTBED_EventInformation event;
363   uint64_t op_id;
364
365   GNUNET_assert (sizeof (struct GNUNET_TESTBED_PeerEventMessage)
366                  == ntohs (msg->header.size));
367   op_id = GNUNET_ntohll (msg->operation_id);
368   if (NULL == (opc = find_opc (c, op_id)))
369   {
370     LOG_DEBUG ("Operation not found\n");
371     return GNUNET_YES;
372   }
373   GNUNET_assert ((OP_PEER_START == opc->type) || (OP_PEER_STOP == opc->type));
374   peer = opc->data;
375   GNUNET_assert (NULL != peer);
376   event.type = (enum GNUNET_TESTBED_EventType) ntohl (msg->event_type);
377   switch (event.type)
378   {
379   case GNUNET_TESTBED_ET_PEER_START:
380     peer->state = PS_STARTED;
381     event.details.peer_start.host = peer->host;
382     event.details.peer_start.peer = peer;
383     break;
384   case GNUNET_TESTBED_ET_PEER_STOP:
385     peer->state = PS_STOPPED;    
386     event.details.peer_stop.peer = peer;  
387     break;
388   default:
389     GNUNET_assert (0);          /* We should never reach this state */
390   }
391   GNUNET_CONTAINER_DLL_remove (opc->c->ocq_head, opc->c->ocq_tail, opc);
392   opc->state = OPC_STATE_FINISHED;
393   if (0 != ((GNUNET_TESTBED_ET_PEER_START | GNUNET_TESTBED_ET_PEER_STOP)
394             & c->event_mask))
395   {
396     if (NULL != c->cc)
397       c->cc (c->cc_cls, &event);
398   }    
399   return GNUNET_YES;
400 }
401
402
403 /**
404  * Handler for GNUNET_MESSAGE_TYPE_TESTBED_PEERCONEVENT message from
405  * controller (testbed service)
406  *
407  * @param c the controller handler
408  * @param msg message received
409  * @return GNUNET_YES if we can continue receiving from service; GNUNET_NO if
410  *           not
411  */
412 static int
413 handle_peer_conevent (struct GNUNET_TESTBED_Controller *c,
414                       const struct GNUNET_TESTBED_ConnectionEventMessage *msg)
415 {
416   struct OperationContext *opc;
417   struct OverlayConnectData *data;
418   struct GNUNET_TESTBED_EventInformation event;
419   uint64_t op_id;
420
421   op_id = GNUNET_ntohll (msg->operation_id);
422   if (NULL == (opc = find_opc (c, op_id)))
423   {
424     LOG_DEBUG ("Operation not found\n");
425     return GNUNET_YES;
426   }
427   data = opc->data;
428   GNUNET_assert (NULL != data);
429   GNUNET_assert ((ntohl (msg->peer1) == data->p1->unique_id)
430                   && (ntohl (msg->peer2) == data->p2->unique_id));
431   event.type = (enum GNUNET_TESTBED_EventType) ntohl (msg->event_type);
432   switch (event.type)
433   {
434   case GNUNET_TESTBED_ET_CONNECT:
435     event.details.peer_connect.peer1 = data->p1;
436     event.details.peer_connect.peer2 = data->p2;
437     break;
438   case GNUNET_TESTBED_ET_DISCONNECT:
439     GNUNET_assert (0);          /* FIXME: implement */
440     break;
441   default:
442     GNUNET_assert (0);          /* Should never reach here */
443     break;
444   }
445   GNUNET_CONTAINER_DLL_remove (opc->c->ocq_head, opc->c->ocq_tail, opc);
446   opc->state = OPC_STATE_FINISHED;
447   GNUNET_free (data);
448   if (0 != ((GNUNET_TESTBED_ET_CONNECT | GNUNET_TESTBED_ET_DISCONNECT)
449             & c->event_mask))
450   {
451     if (NULL != c->cc)
452       c->cc (c->cc_cls, &event);
453   }
454   return GNUNET_YES;
455 }
456
457
458 /**
459  * Handler for GNUNET_MESSAGE_TYPE_TESTBED_PEERCONFIG message from
460  * controller (testbed service)
461  *
462  * @param c the controller handler
463  * @param msg message received
464  * @return GNUNET_YES if we can continue receiving from service; GNUNET_NO if
465  *           not
466  */
467 static int
468 handle_peer_config (struct GNUNET_TESTBED_Controller *c,
469                     const struct GNUNET_TESTBED_PeerConfigurationInformationMessage *msg)
470 {
471   struct OperationContext *opc;
472   struct GNUNET_TESTBED_Peer *peer;
473   struct PeerInfoData *data;
474   struct PeerInfoData2 *response_data;
475   struct GNUNET_TESTBED_EventInformation info;
476   uint64_t op_id;
477   
478   op_id = GNUNET_ntohll (msg->operation_id);
479   if (NULL == (opc = find_opc (c, op_id)))
480   {
481     LOG_DEBUG ("Operation not found\n");
482     return GNUNET_YES;
483   }
484   data = opc->data;
485   GNUNET_assert (NULL != data);
486   peer = data->peer;
487   GNUNET_assert (NULL != peer);
488   GNUNET_assert (ntohl (msg->peer_id) == peer->unique_id);
489   if (0 == (c->event_mask & (1L << GNUNET_TESTBED_ET_OPERATION_FINISHED)))
490   {
491     LOG_DEBUG ("Skipping operation callback as flag not set\n");
492     return GNUNET_YES;
493   }
494   response_data = GNUNET_malloc (sizeof (struct PeerInfoData2));
495   response_data->pit = data->pit;
496   GNUNET_free (data);
497   opc->data = NULL;
498   info.type = GNUNET_TESTBED_ET_OPERATION_FINISHED;
499   info.details.operation_finished.operation = opc->op;
500   info.details.operation_finished.op_cls = NULL;
501   info.details.operation_finished.emsg = NULL;
502   info.details.operation_finished.pit = response_data->pit;
503   switch (response_data->pit)
504   {
505   case GNUNET_TESTBED_PIT_IDENTITY:
506     {
507       struct GNUNET_PeerIdentity *peer_identity;
508
509       peer_identity = GNUNET_malloc (sizeof (struct GNUNET_PeerIdentity));
510       (void) memcpy (peer_identity, &msg->peer_identity, 
511                      sizeof (struct GNUNET_PeerIdentity));
512       response_data->details.peer_identity = peer_identity;      
513       info.details.operation_finished.op_result.pid = peer_identity;
514     }
515     break;
516   case GNUNET_TESTBED_PIT_CONFIGURATION:
517     {
518       struct GNUNET_CONFIGURATION_Handle *cfg;
519       char *config;
520       uLong config_size;
521       int ret;
522       uint16_t msize;
523       
524       config_size = (uLong) ntohs (msg->config_size);
525       config = GNUNET_malloc (config_size);
526       msize = ntohs (msg->header.size);
527       msize -= sizeof (struct GNUNET_TESTBED_PeerConfigurationInformationMessage);
528       if (Z_OK != (ret = uncompress ((Bytef *) config, &config_size,
529                                      (const Bytef *) &msg[1], (uLong) msize)))
530         GNUNET_assert (0);
531       cfg = GNUNET_CONFIGURATION_create (); /* Freed in oprelease_peer_getinfo */
532       GNUNET_assert (GNUNET_OK == 
533                      GNUNET_CONFIGURATION_deserialize (cfg, config,
534                                                        (size_t) config_size,
535                                                        GNUNET_NO));
536       GNUNET_free (config);
537       response_data->details.cfg = cfg;
538       info.details.operation_finished.op_result.cfg = cfg;
539     }
540     break;
541   case GNUNET_TESTBED_PIT_GENERIC:
542     GNUNET_assert (0);          /* never reach here */
543     break;
544   }
545   opc->data = response_data;
546   GNUNET_CONTAINER_DLL_remove (opc->c->ocq_head, opc->c->ocq_tail, opc);
547   opc->state = OPC_STATE_FINISHED;
548   c->cc (c->cc_cls, &info);  
549   return GNUNET_YES;
550 }
551
552
553 /**
554  * Handler for messages from controller (testbed service)
555  *
556  * @param cls the controller handler
557  * @param msg message received, NULL on timeout or fatal error
558  */
559 static void 
560 message_handler (void *cls, const struct GNUNET_MessageHeader *msg)
561 {
562   struct GNUNET_TESTBED_Controller *c = cls;
563   int status;
564   uint16_t msize;
565
566   c->in_receive = GNUNET_NO;
567   /* FIXME: Add checks for message integrity */
568   if (NULL == msg)
569   {
570     LOG_DEBUG ("Receive timed out or connection to service dropped\n");
571     return;
572   }
573   status = GNUNET_OK;
574   msize = ntohs (msg->size);
575   switch (ntohs (msg->type))
576   {
577   case GNUNET_MESSAGE_TYPE_TESTBED_ADDHOSTCONFIRM:
578     GNUNET_assert (msize >= sizeof (struct
579                                     GNUNET_TESTBED_HostConfirmedMessage));
580     status =
581       handle_addhostconfirm (c, (const struct GNUNET_TESTBED_HostConfirmedMessage *) msg);
582     break;
583   case GNUNET_MESSAGE_TYPE_TESTBED_GENERICOPSUCCESS:
584     GNUNET_assert 
585       (msize == sizeof (struct GNUNET_TESTBED_GenericOperationSuccessEventMessage));
586     status =
587       handle_opsuccess (c, (const struct
588                             GNUNET_TESTBED_GenericOperationSuccessEventMessage
589                             *) msg);
590     break;
591   case GNUNET_MESSAGE_TYPE_TESTBED_PEERCREATESUCCESS:
592     GNUNET_assert (msize == 
593                    sizeof (struct GNUNET_TESTBED_PeerCreateSuccessEventMessage));
594     status =
595       handle_peer_create_success 
596       (c, (const struct GNUNET_TESTBED_PeerCreateSuccessEventMessage *)msg);
597     break;
598   case GNUNET_MESSAGE_TYPE_TESTBED_PEEREVENT:
599     GNUNET_assert (msize == sizeof (struct GNUNET_TESTBED_PeerEventMessage));
600     status =
601       handle_peer_event (c, (const struct GNUNET_TESTBED_PeerEventMessage *) msg);
602     
603     break;
604   case GNUNET_MESSAGE_TYPE_TESTBED_PEERCONFIG:
605     GNUNET_assert (msize >= 
606                    sizeof (struct GNUNET_TESTBED_PeerConfigurationInformationMessage));
607     status = 
608       handle_peer_config 
609       (c, (const struct GNUNET_TESTBED_PeerConfigurationInformationMessage *)
610   msg);
611     break;
612   case GNUNET_MESSAGE_TYPE_TESTBED_PEERCONEVENT:
613     GNUNET_assert (msize ==
614                    sizeof (struct GNUNET_TESTBED_ConnectionEventMessage));
615     status = 
616       handle_peer_conevent (c, (const struct
617                                 GNUNET_TESTBED_ConnectionEventMessage *) msg);
618     break;
619   default:
620     GNUNET_break (0);
621   }
622   if ((GNUNET_OK == status) && (GNUNET_NO == c->in_receive))
623   {
624     c->in_receive = GNUNET_YES;
625     GNUNET_CLIENT_receive (c->client, &message_handler, c,
626                            GNUNET_TIME_UNIT_FOREVER_REL);    
627   }
628 }
629
630
631 /**
632  * Function called to notify a client about the connection begin ready to queue
633  * more data.  "buf" will be NULL and "size" zero if the connection was closed
634  * for writing in the meantime.
635  *
636  * @param cls closure
637  * @param size number of bytes available in buf
638  * @param buf where the callee should write the message
639  * @return number of bytes written to buf
640  */
641 static size_t
642 transmit_ready_notify (void *cls, size_t size, void *buf)
643 {
644   struct GNUNET_TESTBED_Controller *c = cls;
645   struct MessageQueue *mq_entry;
646
647   c->th = NULL;
648   mq_entry = c->mq_head;
649   GNUNET_assert (NULL != mq_entry);
650   if ((0 == size) && (NULL == buf)) /* Timeout */
651   {
652     LOG_DEBUG ("Message sending timed out -- retrying\n");
653     c->th =
654       GNUNET_CLIENT_notify_transmit_ready (c->client,
655                                            ntohs (mq_entry->msg->size),
656                                            TIMEOUT_REL,
657                                            GNUNET_YES, &transmit_ready_notify,
658                                            c);
659     return 0;
660   }
661   GNUNET_assert (ntohs (mq_entry->msg->size) <= size);
662   size = ntohs (mq_entry->msg->size);  
663   memcpy (buf, mq_entry->msg, size);
664   LOG_DEBUG ("Message of type: %u and size: %u sent\n",
665              ntohs (mq_entry->msg->type), size);
666   GNUNET_free (mq_entry->msg);
667   GNUNET_CONTAINER_DLL_remove (c->mq_head, c->mq_tail, mq_entry);
668   GNUNET_free (mq_entry);
669   mq_entry = c->mq_head;
670   if (NULL != mq_entry)
671     c->th = 
672       GNUNET_CLIENT_notify_transmit_ready (c->client,
673                                            ntohs (mq_entry->msg->size),
674                                            TIMEOUT_REL,
675                                            GNUNET_YES, &transmit_ready_notify,
676                                            c);
677   if (GNUNET_NO == c->in_receive)
678   {
679     c->in_receive = GNUNET_YES;
680     GNUNET_CLIENT_receive (c->client, &message_handler, c,
681                            GNUNET_TIME_UNIT_FOREVER_REL);
682   }
683   return size;
684 }
685
686
687 /**
688  * Queues a message in send queue for sending to the service
689  *
690  * @param controller the handle to the controller
691  * @param msg the message to queue
692  */
693 void
694 GNUNET_TESTBED_queue_message_ (struct GNUNET_TESTBED_Controller *controller,
695                                struct GNUNET_MessageHeader *msg)
696 {
697   struct MessageQueue *mq_entry;
698   uint16_t type;
699   uint16_t size;
700
701   type = ntohs (msg->type);
702   size = ntohs (msg->size);
703   GNUNET_assert ((GNUNET_MESSAGE_TYPE_TESTBED_INIT <= type) &&
704                  (GNUNET_MESSAGE_TYPE_TESTBED_MAX > type));                 
705   mq_entry = GNUNET_malloc (sizeof (struct MessageQueue));
706   mq_entry->msg = msg;
707   LOG (GNUNET_ERROR_TYPE_DEBUG,
708        "Queueing message of type %u, size %u for sending\n", type,
709        ntohs (msg->size));
710   GNUNET_CONTAINER_DLL_insert_tail (controller->mq_head, controller->mq_tail,
711                                     mq_entry);
712   if (NULL == controller->th)
713     controller->th = 
714       GNUNET_CLIENT_notify_transmit_ready (controller->client, size,
715                                            TIMEOUT_REL,
716                                            GNUNET_YES, &transmit_ready_notify,
717                                            controller);
718 }
719
720
721 /**
722  * Handle for controller process
723  */
724 struct GNUNET_TESTBED_ControllerProc
725 {
726   /**
727    * The process handle
728    */
729   struct GNUNET_HELPER_Handle *helper;
730
731   /**
732    * The host where the helper is run
733    */
734   struct GNUNET_TESTBED_Host *host;
735
736   /**
737    * The controller error callback
738    */
739   GNUNET_TESTBED_ControllerStatusCallback cb;
740
741   /**
742    * The closure for the above callback
743    */
744   void *cls;
745
746   /**
747    * The send handle for the helper
748    */
749   struct GNUNET_HELPER_SendHandle *shandle;
750
751   /**
752    * The message corresponding to send handle
753    */
754   struct GNUNET_MessageHeader *msg;
755
756   /**
757    * The port number for ssh; used for helpers starting ssh
758    */
759   char *port;
760
761   /**
762    * The ssh destination string; used for helpers starting ssh
763    */
764   char *dst;
765
766   /**
767    * The configuration of the running testbed service
768    */
769   struct GNUNET_CONFIGURATION_Handle *cfg;
770
771 };
772
773
774 /**
775  * Functions with this signature are called whenever a
776  * complete message is received by the tokenizer.
777  *
778  * Do not call GNUNET_SERVER_mst_destroy in callback
779  *
780  * @param cls closure
781  * @param client identification of the client
782  * @param message the actual message
783  *
784  * @return GNUNET_OK on success, GNUNET_SYSERR to stop further processing
785  */
786 static int helper_mst (void *cls, void *client,
787                        const struct GNUNET_MessageHeader *message)
788 {
789   struct GNUNET_TESTBED_ControllerProc *cp = cls;
790   const struct GNUNET_TESTBED_HelperReply *msg;
791   const char *hostname;
792   char *config;
793   uLongf config_size;
794   uLongf xconfig_size;
795     
796   msg = (const struct GNUNET_TESTBED_HelperReply *) message;
797   GNUNET_assert (sizeof (struct GNUNET_TESTBED_HelperReply) 
798                  < ntohs (msg->header.size));
799   GNUNET_assert (GNUNET_MESSAGE_TYPE_TESTBED_HELPER_REPLY 
800                  == ntohs (msg->header.type));
801   config_size = (uLongf) ntohs (msg->config_size);
802   xconfig_size = (uLongf) (ntohs (msg->header.size)
803                            - sizeof (struct GNUNET_TESTBED_HelperReply));
804   config = GNUNET_malloc (config_size);
805   GNUNET_assert (Z_OK == uncompress ((Bytef *) config, &config_size,
806                                      (const Bytef *) &msg[1], xconfig_size));
807   GNUNET_assert (NULL == cp->cfg);
808   cp->cfg = GNUNET_CONFIGURATION_create ();
809   GNUNET_assert (GNUNET_CONFIGURATION_deserialize (cp->cfg, config, 
810                                                    config_size, GNUNET_NO));
811   GNUNET_free (config);
812   if ((NULL == cp->host) || 
813       (NULL == (hostname = GNUNET_TESTBED_host_get_hostname_ (cp->host))))
814     hostname = "localhost";
815   /* Change the hostname so that we can connect to it */
816   GNUNET_CONFIGURATION_set_value_string (cp->cfg, "testbed", "hostname", 
817                                          hostname);
818   cp->cb (cp->cls, cp->cfg, GNUNET_OK);
819   return GNUNET_OK;
820 }
821
822
823 /**
824  * Continuation function from GNUNET_HELPER_send()
825  * 
826  * @param cls closure
827  * @param result GNUNET_OK on success,
828  *               GNUNET_NO if helper process died
829  *               GNUNET_SYSERR during GNUNET_HELPER_stop
830  */
831 static void 
832 clear_msg (void *cls, int result)
833 {
834   struct GNUNET_TESTBED_ControllerProc *cp = cls;
835   
836   GNUNET_assert (NULL != cp->shandle);
837   cp->shandle = NULL;
838   GNUNET_free (cp->msg);
839 }
840
841
842 /**
843  * Callback that will be called when the helper process dies. This is not called
844  * when the helper process is stoped using GNUNET_HELPER_stop()
845  *
846  * @param cls the closure from GNUNET_HELPER_start()
847  */
848 static void 
849 helper_exp_cb (void *cls)
850 {
851   struct GNUNET_TESTBED_ControllerProc *cp = cls;
852   GNUNET_TESTBED_ControllerStatusCallback cb;
853   void *cb_cls;
854
855   cb = cp->cb;
856   cb_cls = cp->cls;
857   GNUNET_TESTBED_controller_stop (cp);
858   if (NULL != cb)
859     cb (cb_cls, NULL, GNUNET_SYSERR);
860 }
861
862
863 /**
864  * Starts a controller process at the host. FIXME: add controller start callback
865  * with the configuration with which the controller is started
866  *
867  * @param controller_ip the ip address of the controller. Will be set as TRUSTED
868  *          host when starting testbed controller at host
869  * @param host the host where the controller has to be started; NULL for
870  *          localhost
871  * @param cfg template configuration to use for the remote controller; the
872  *          remote controller will be started with a slightly modified
873  *          configuration (port numbers, unix domain sockets and service home
874  *          values are changed as per TESTING library on the remote host)
875  * @param cb function called when the controller is successfully started or
876  *          dies unexpectedly; GNUNET_TESTBED_controller_stop shouldn't be
877  *          called if cb is called with GNUNET_SYSERR as status. Will never be
878  *          called in the same task as 'GNUNET_TESTBED_controller_start'
879  *          (synchronous errors will be signalled by returning NULL). This
880  *          parameter cannot be NULL.
881  * @param cls closure for above callbacks
882  * @return the controller process handle, NULL on errors
883  */
884 struct GNUNET_TESTBED_ControllerProc *
885 GNUNET_TESTBED_controller_start (const char *controller_ip,
886                                  struct GNUNET_TESTBED_Host *host,
887                                  const struct GNUNET_CONFIGURATION_Handle *cfg,
888                                  GNUNET_TESTBED_ControllerStatusCallback cb,
889                                  void *cls)
890 {
891   struct GNUNET_TESTBED_ControllerProc *cp;
892   struct GNUNET_TESTBED_HelperInit *msg;
893   
894   cp = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_ControllerProc));
895   if ((NULL == host) || (0 == GNUNET_TESTBED_host_get_id_ (host)))
896   {
897     char * const binary_argv[] = {
898       "gnunet-testbed-helper", NULL
899     };
900
901     cp->helper = GNUNET_HELPER_start ("gnunet-testbed-helper", binary_argv, 
902                                       &helper_mst, &helper_exp_cb, cp);
903   }
904   else
905   {
906     char *remote_args[6 + 1];
907     unsigned int argp;
908     const char *username;
909     const char *hostname;
910
911     username = GNUNET_TESTBED_host_get_username_ (host);
912     hostname = GNUNET_TESTBED_host_get_hostname_ (host);
913     GNUNET_asprintf (&cp->port, "%u", GNUNET_TESTBED_host_get_ssh_port_ (host));
914     if (NULL == username)
915       GNUNET_asprintf (&cp->dst, "%s", hostname);
916     else 
917       GNUNET_asprintf (&cp->dst, "%s@%s", hostname, username);
918     argp = 0;
919     remote_args[argp++] = "ssh";
920     remote_args[argp++] = "-p";
921     remote_args[argp++] = cp->port;
922     remote_args[argp++] = "-q";
923     remote_args[argp++] = cp->dst;
924     remote_args[argp++] = "gnunet-testbed-helper";
925     remote_args[argp++] = NULL;
926     GNUNET_assert (argp == 6 + 1);
927     cp->helper = GNUNET_HELPER_start ("ssh", remote_args,
928                                       &helper_mst, &helper_exp_cb, cp);
929   }
930   if (NULL == cp->helper)
931   {
932     GNUNET_free_non_null (cp->port);
933     GNUNET_free_non_null (cp->dst);
934     GNUNET_free (cp);
935     return NULL;
936   }
937   cp->host = host;
938   cp->cb = cb;
939   cp->cls = cls;
940   msg = GNUNET_TESTBED_create_helper_init_msg_ (controller_ip, cfg);
941   cp->msg = &msg->header;
942   cp->shandle = GNUNET_HELPER_send (cp->helper, &msg->header, GNUNET_NO,
943                                     &clear_msg, cp);
944   if (NULL == cp->shandle)
945   {
946     GNUNET_free (msg);
947     GNUNET_TESTBED_controller_stop (cp);
948     return NULL;
949   }
950   return cp;
951 }
952
953
954 /**
955  * Stop the controller process (also will terminate all peers and controllers
956  * dependent on this controller).  This function blocks until the testbed has
957  * been fully terminated (!).
958  *
959  * @param cproc the controller process handle
960  */
961 void
962 GNUNET_TESTBED_controller_stop (struct GNUNET_TESTBED_ControllerProc *cproc)
963 {
964   if (NULL != cproc->shandle)
965     GNUNET_HELPER_send_cancel (cproc->shandle);
966   GNUNET_HELPER_stop (cproc->helper);
967   if (NULL != cproc->cfg)
968     GNUNET_CONFIGURATION_destroy (cproc->cfg);
969   GNUNET_free_non_null (cproc->port);
970   GNUNET_free_non_null (cproc->dst);
971   GNUNET_free (cproc);
972 }
973
974
975 /**
976  * Start a controller process using the given configuration at the
977  * given host.
978  *
979  * @param cfg configuration to use
980  * @param host host to run the controller on; This should be the same host if
981  *          the controller was previously started with
982  *          GNUNET_TESTBED_controller_start; NULL for localhost
983  * @param event_mask bit mask with set of events to call 'cc' for;
984  *                   or-ed values of "1LL" shifted by the
985  *                   respective 'enum GNUNET_TESTBED_EventType'
986  *                   (i.e.  "(1LL << GNUNET_TESTBED_ET_CONNECT) | ...")
987  * @param cc controller callback to invoke on events
988  * @param cc_cls closure for cc
989  * @return handle to the controller
990  */
991 struct GNUNET_TESTBED_Controller *
992 GNUNET_TESTBED_controller_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
993                                    struct GNUNET_TESTBED_Host *host,
994                                    uint64_t event_mask,
995                                    GNUNET_TESTBED_ControllerCallback cc,
996                                    void *cc_cls)
997 {
998   struct GNUNET_TESTBED_Controller *controller;
999   struct GNUNET_TESTBED_InitMessage *msg;
1000   unsigned long long max_parallel_peer_create;
1001
1002   if (GNUNET_OK !=
1003       GNUNET_CONFIGURATION_get_value_number (cfg, "testbed",
1004                                              "MAX_PARALLEL_PEER_CREATE",
1005                                              &max_parallel_peer_create))
1006   {
1007     GNUNET_break (0);
1008     return NULL;
1009   }                                                          
1010   controller = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_Controller));
1011   controller->cc = cc;
1012   controller->cc_cls = cc_cls;
1013   controller->event_mask = event_mask;
1014   controller->cfg = GNUNET_CONFIGURATION_dup (cfg);
1015   controller->client = GNUNET_CLIENT_connect ("testbed", controller->cfg);  
1016   if (NULL == controller->client)
1017   {
1018     GNUNET_TESTBED_controller_disconnect (controller);
1019     return NULL;
1020   }
1021   if (NULL == host)
1022   {
1023     host = GNUNET_TESTBED_host_create_by_id_ (0);
1024     if (NULL == host)
1025     {
1026       LOG (GNUNET_ERROR_TYPE_WARNING,
1027            "Treating NULL host as localhost. Multiple references to localhost "
1028            "may break when localhost freed before calling disconnect \n");
1029       host = GNUNET_TESTBED_host_lookup_by_id_ (0);
1030     }
1031     else
1032     {
1033       controller->aux_host = GNUNET_YES;
1034     }
1035   }
1036   GNUNET_assert (NULL != host);
1037   controller->opq_peer_create =
1038     GNUNET_TESTBED_operation_queue_create_ ((unsigned int)
1039                                             max_parallel_peer_create);
1040   msg = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_InitMessage));
1041   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_INIT);
1042   msg->header.size = htons (sizeof (struct GNUNET_TESTBED_InitMessage));
1043   msg->host_id = htonl (GNUNET_TESTBED_host_get_id_ (host));
1044   msg->event_mask = GNUNET_htonll (controller->event_mask);
1045   GNUNET_TESTBED_queue_message_ (controller, (struct GNUNET_MessageHeader *)
1046                                  msg);
1047   
1048   return controller;
1049 }
1050
1051
1052 /**
1053  * Configure shared services at a controller.  Using this function,
1054  * you can specify that certain services (such as "resolver")
1055  * should not be run for each peer but instead be shared
1056  * across N peers on the specified host.  This function
1057  * must be called before any peers are created at the host.
1058  * 
1059  * @param controller controller to configure
1060  * @param service_name name of the service to share
1061  * @param num_peers number of peers that should share one instance
1062  *        of the specified service (1 for no sharing is the default),
1063  *        use 0 to disable the service
1064  */
1065 void
1066 GNUNET_TESTBED_controller_configure_sharing (struct GNUNET_TESTBED_Controller *controller,
1067                                              const char *service_name,
1068                                              uint32_t num_peers)
1069 {
1070   struct GNUNET_TESTBED_ConfigureSharedServiceMessage *msg;
1071   uint16_t service_name_size;
1072   uint16_t msg_size;
1073   
1074   service_name_size = strlen (service_name) + 1;
1075   msg_size = sizeof (struct GNUNET_TESTBED_ConfigureSharedServiceMessage)
1076     + service_name_size;
1077   msg = GNUNET_malloc (msg_size);
1078   msg->header.size = htons (msg_size);
1079   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_SERVICESHARE);
1080   msg->host_id = htonl (GNUNET_TESTBED_host_get_id_ (controller->host));
1081   msg->num_peers = htonl (num_peers);
1082   memcpy (&msg[1], service_name, service_name_size);
1083   GNUNET_TESTBED_queue_message_ (controller, (struct GNUNET_MessageHeader *) msg);
1084 }
1085
1086
1087 /**
1088  * disconnects from the controller.
1089  *
1090  * @param controller handle to controller to stop
1091  */
1092 void
1093 GNUNET_TESTBED_controller_disconnect (struct GNUNET_TESTBED_Controller *controller)
1094 {
1095   struct MessageQueue *mq_entry;
1096
1097   if (NULL != controller->th)
1098     GNUNET_CLIENT_notify_transmit_ready_cancel (controller->th);
1099  /* Clear the message queue */
1100   while (NULL != (mq_entry = controller->mq_head))
1101   {
1102     GNUNET_CONTAINER_DLL_remove (controller->mq_head,
1103                                  controller->mq_tail,
1104                                  mq_entry);
1105     GNUNET_free (mq_entry->msg);
1106     GNUNET_free (mq_entry);
1107   }
1108   if (NULL != controller->client)
1109     GNUNET_CLIENT_disconnect (controller->client);
1110   GNUNET_CONFIGURATION_destroy (controller->cfg);
1111   if (GNUNET_YES == controller->aux_host)
1112     GNUNET_TESTBED_host_destroy (controller->host);
1113   GNUNET_TESTBED_operation_queue_destroy_ (controller->opq_peer_create);
1114   GNUNET_free (controller);
1115 }
1116
1117
1118 /**
1119  * Register a host with the controller
1120  *
1121  * @param controller the controller handle
1122  * @param host the host to register
1123  * @param cc the completion callback to call to inform the status of
1124  *          registration. After calling this callback the registration handle
1125  *          will be invalid. Cannot be NULL.
1126  * @param cc_cls the closure for the cc
1127  * @return handle to the host registration which can be used to cancel the
1128  *           registration 
1129  */
1130 struct GNUNET_TESTBED_HostRegistrationHandle *
1131 GNUNET_TESTBED_register_host (struct GNUNET_TESTBED_Controller *controller,
1132                               struct GNUNET_TESTBED_Host *host,
1133                               GNUNET_TESTBED_HostRegistrationCompletion cc,
1134                               void *cc_cls)
1135 {
1136   struct GNUNET_TESTBED_HostRegistrationHandle *rh;
1137   struct GNUNET_TESTBED_AddHostMessage *msg;
1138   const char *username;
1139   const char *hostname;
1140   uint16_t msg_size;
1141   uint16_t user_name_length;
1142
1143   if (NULL != controller->rh)
1144     return NULL;
1145   hostname = GNUNET_TESTBED_host_get_hostname_ (host);
1146   if (GNUNET_YES == GNUNET_TESTBED_is_host_registered_ (host, controller))
1147   {
1148     LOG (GNUNET_ERROR_TYPE_WARNING,
1149          "Host hostname: %s already registered\n",
1150          (NULL == hostname) ? "localhost" : hostname);
1151     return NULL;
1152   }  
1153   rh = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_HostRegistrationHandle));
1154   rh->host = host;
1155   rh->c = controller;
1156   GNUNET_assert (NULL != cc);
1157   rh->cc = cc;
1158   rh->cc_cls = cc_cls;
1159   controller->rh = rh;
1160   username = GNUNET_TESTBED_host_get_username_ (host);
1161   msg_size = (sizeof (struct GNUNET_TESTBED_AddHostMessage));
1162   user_name_length = 0;
1163   if (NULL != username)
1164   {
1165     user_name_length = strlen (username) + 1;
1166     msg_size += user_name_length;
1167   }
1168   /* FIXME: what happens when hostname is NULL? localhost */
1169   GNUNET_assert (NULL != hostname);
1170   msg_size += strlen (hostname) + 1;
1171   msg = GNUNET_malloc (msg_size);
1172   msg->header.size = htons (msg_size);
1173   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_ADDHOST);
1174   msg->host_id = htonl (GNUNET_TESTBED_host_get_id_ (host));
1175   msg->ssh_port = htons (GNUNET_TESTBED_host_get_ssh_port_ (host));
1176   msg->user_name_length = htons (user_name_length);
1177   if (NULL != username)
1178     memcpy (&msg[1], username, user_name_length);
1179   strcpy (((void *) &msg[1]) + user_name_length, hostname);
1180   GNUNET_TESTBED_queue_message_ (controller, (struct GNUNET_MessageHeader *) msg);
1181   return rh;
1182 }
1183
1184
1185 /**
1186  * Cancel the pending registration. Note that if the registration message is
1187  * already sent to the service the cancellation has only the effect that the
1188  * registration completion callback for the registration is never called.
1189  *
1190  * @param handle the registration handle to cancel
1191  */
1192 void
1193 GNUNET_TESTBED_cancel_registration (struct GNUNET_TESTBED_HostRegistrationHandle
1194                                     *handle)
1195 {
1196   if (handle != handle->c->rh)
1197   {
1198     GNUNET_break (0);
1199     return;
1200   }
1201   handle->c->rh = NULL;
1202   GNUNET_free (handle);  
1203 }
1204
1205
1206 /**
1207  * Same as the GNUNET_TESTBED_controller_link, however expects configuration in
1208  * serialized and compressed
1209  *
1210  * @param master handle to the master controller who creates the association
1211  * @param delegated_host requests to which host should be delegated; cannot be NULL
1212  * @param slave_host which host is used to run the slave controller; use NULL to
1213  *          make the master controller connect to the delegated host
1214  * @param sxcfg serialized and compressed configuration
1215  * @param sxcfg_size the size scfg
1216  * @param scfg_size the size of uncompressed serialized configuration
1217  * @param is_subordinate GNUNET_YES if the controller at delegated_host should
1218  *          be started by the master controller; GNUNET_NO if we are just
1219  *          allowed to use the slave via TCP/IP
1220  */
1221 void
1222 GNUNET_TESTBED_controller_link_2 (struct GNUNET_TESTBED_Controller *master,
1223                                   struct GNUNET_TESTBED_Host *delegated_host,
1224                                   struct GNUNET_TESTBED_Host *slave_host,
1225                                   const char *sxcfg,
1226                                   size_t sxcfg_size,
1227                                   size_t scfg_size,
1228                                   int is_subordinate)
1229 {
1230   struct GNUNET_TESTBED_ControllerLinkMessage *msg;
1231   uint16_t msg_size;
1232
1233   GNUNET_assert (GNUNET_YES == 
1234                  GNUNET_TESTBED_is_host_registered_ (delegated_host, master));
1235   if ((NULL != slave_host) && (0 != GNUNET_TESTBED_host_get_id_ (slave_host)))
1236     GNUNET_assert (GNUNET_YES == 
1237                    GNUNET_TESTBED_is_host_registered_ (slave_host, master));
1238   msg_size = sxcfg_size + sizeof (struct GNUNET_TESTBED_ControllerLinkMessage);
1239   msg = GNUNET_malloc (msg_size);
1240   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_LCONTROLLERS);  
1241   msg->header.size = htons (msg_size);
1242   msg->delegated_host_id = htonl (GNUNET_TESTBED_host_get_id_ (delegated_host));
1243   msg->slave_host_id = htonl (GNUNET_TESTBED_host_get_id_ 
1244                               ((NULL != slave_host) ? slave_host : master->host));
1245   msg->config_size = htons ((uint16_t) scfg_size);
1246   msg->is_subordinate = (GNUNET_YES == is_subordinate) ? 1 : 0;
1247   memcpy (&msg[1], sxcfg, sxcfg_size);
1248   GNUNET_TESTBED_queue_message_ (master, (struct GNUNET_MessageHeader *) msg);
1249 }
1250
1251
1252 /**
1253  * Compresses given configuration using zlib compress
1254  *
1255  * @param config the serialized configuration
1256  * @param size the size of config
1257  * @param xconfig will be set to the compressed configuration (memory is fresly
1258  *          allocated) 
1259  * @return the size of the xconfig
1260  */
1261 size_t
1262 GNUNET_TESTBED_compress_config_ (const char *config, size_t size,
1263                                  char **xconfig)
1264 {
1265   size_t xsize;
1266   
1267   xsize = compressBound ((uLong) size);
1268   *xconfig = GNUNET_malloc (xsize);
1269   GNUNET_assert (Z_OK ==
1270                  compress2 ((Bytef *)* xconfig, (uLongf *) &xsize,
1271                             (const Bytef *) config, (uLongf) size, 
1272                             Z_BEST_SPEED));
1273   return xsize;
1274 }
1275                                 
1276
1277 /**
1278  * Create a link from slave controller to delegated controller. Whenever the
1279  * master controller is asked to start a peer at the delegated controller the
1280  * request will be routed towards slave controller (if a route exists). The
1281  * slave controller will then route it to the delegated controller. The
1282  * configuration of the slave controller is given and to be used to either
1283  * create the slave controller or to connect to an existing slave controller
1284  * process.  'is_subordinate' specifies if the given slave controller should be
1285  * started and managed by the master controller, or if the slave already has a
1286  * master and this is just a secondary master that is also allowed to use the
1287  * existing slave.
1288  *
1289  * @param master handle to the master controller who creates the association
1290  * @param delegated_host requests to which host should be delegated
1291  * @param slave_host which host is used to run the slave controller 
1292  * @param slave_cfg configuration to use for the slave controller
1293  * @param is_subordinate GNUNET_YES if the slave should be started (and stopped)
1294  *                       by the master controller; GNUNET_NO if we are just
1295  *                       allowed to use the slave via TCP/IP
1296  */
1297 void
1298 GNUNET_TESTBED_controller_link (struct GNUNET_TESTBED_Controller *master,
1299                                 struct GNUNET_TESTBED_Host *delegated_host,
1300                                 struct GNUNET_TESTBED_Host *slave_host,
1301                                 const struct GNUNET_CONFIGURATION_Handle *slave_cfg,
1302                                 int is_subordinate)
1303 {
1304   char *config;
1305   char *cconfig;
1306   size_t cc_size;
1307   size_t config_size;  
1308   
1309   GNUNET_assert (GNUNET_YES == 
1310                  GNUNET_TESTBED_is_host_registered_ (delegated_host, master));
1311   if ((NULL != slave_host) && (0 != GNUNET_TESTBED_host_get_id_ (slave_host)))
1312     GNUNET_assert (GNUNET_YES == 
1313                    GNUNET_TESTBED_is_host_registered_ (slave_host, master));
1314   config = GNUNET_CONFIGURATION_serialize (slave_cfg, &config_size);
1315   cc_size = GNUNET_TESTBED_compress_config_ (config, config_size, &cconfig);
1316   GNUNET_free (config);
1317   GNUNET_assert ((UINT16_MAX -
1318                   sizeof (struct GNUNET_TESTBED_ControllerLinkMessage))
1319                   >= cc_size); /* Configuration doesn't fit in 1 message */
1320   GNUNET_TESTBED_controller_link_2 (master, delegated_host, slave_host,
1321                                     (const char *) cconfig,
1322                                     cc_size, config_size, is_subordinate);
1323   GNUNET_free (cconfig);
1324 }
1325
1326
1327 /**
1328  * Ask the testbed controller to write the current overlay topology to
1329  * a file.  Naturally, the file will only contain a snapshot as the
1330  * topology may evolve all the time.
1331  *
1332  * @param controller overlay controller to inspect
1333  * @param filename name of the file the topology should
1334  *        be written to.
1335  */
1336 void
1337 GNUNET_TESTBED_overlay_write_topology_to_file (struct GNUNET_TESTBED_Controller *controller,
1338                                                const char *filename)
1339 {
1340   GNUNET_break (0);
1341 }
1342
1343
1344 /**
1345  * Creates a helper initialization message. Only for testing.
1346  *
1347  * @param cname the ip address of the controlling host
1348  * @param cfg the configuration that has to used to start the testbed service
1349  *          thru helper
1350  * @return the initialization message
1351  */
1352 struct GNUNET_TESTBED_HelperInit *
1353 GNUNET_TESTBED_create_helper_init_msg_ (const char *cname,
1354                                          const struct GNUNET_CONFIGURATION_Handle *cfg)
1355 {
1356   struct GNUNET_TESTBED_HelperInit *msg;
1357   char *config;
1358   char *xconfig;
1359   size_t config_size;
1360   size_t xconfig_size;
1361   uint16_t cname_len;
1362   uint16_t msg_size;
1363
1364   config = GNUNET_CONFIGURATION_serialize (cfg, &config_size);
1365   GNUNET_assert (NULL != config);
1366   xconfig_size =
1367     GNUNET_TESTBED_compress_config_ (config, config_size, &xconfig);
1368   GNUNET_free (config);
1369   cname_len = strlen (cname);
1370   msg_size = xconfig_size + cname_len + 1 + 
1371     sizeof (struct GNUNET_TESTBED_HelperInit);
1372   msg = GNUNET_realloc (xconfig, msg_size);
1373   (void) memmove ( ((void *) &msg[1]) + cname_len + 1, msg, xconfig_size);
1374   msg->header.size = htons (msg_size);
1375   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_HELPER_INIT);
1376   msg->cname_size = htons (cname_len);
1377   msg->config_size = htons (config_size);
1378   (void) strcpy ((char *) &msg[1], cname);
1379   return msg;
1380 }
1381
1382
1383 /**
1384  * Cancel a pending operation.  Releases all resources
1385  * of the operation and will ensure that no event
1386  * is generated for the operation.  Does NOT guarantee
1387  * that the operation will be fully undone (or that
1388  * nothing ever happened).  
1389  * 
1390  * @param operation operation to cancel
1391  */
1392 void
1393 GNUNET_TESTBED_operation_cancel (struct GNUNET_TESTBED_Operation *operation)
1394 {
1395   GNUNET_CONTAINER_DLL_remove (operation->controller->op_head,
1396                                operation->controller->op_tail,
1397                                operation);
1398   GNUNET_TESTBED_operation_done (operation);
1399 }
1400
1401
1402 /**
1403  * Signal that the information from an operation has been fully
1404  * processed.  This function MUST be called for each event
1405  * of type 'operation_finished' to fully remove the operation
1406  * from the operation queue.  After calling this function, the
1407  * 'op_result' becomes invalid (!).
1408  * 
1409  * @param operation operation to signal completion for
1410  */
1411 void
1412 GNUNET_TESTBED_operation_done (struct GNUNET_TESTBED_Operation *operation)
1413 {
1414   switch (operation->type)
1415   {
1416   case OP_PEER_CREATE:
1417   case OP_PEER_DESTROY:
1418   case OP_PEER_START:
1419   case OP_PEER_STOP:
1420   case OP_PEER_INFO:
1421   case OP_OVERLAY_CONNECT:
1422     GNUNET_TESTBED_operation_release_ (operation);
1423     return;
1424   default:
1425     GNUNET_assert (0);
1426     break;
1427   }
1428 }
1429
1430
1431 /* end of testbed_api.c */