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