- verboser log, faster start
[oweals/gnunet.git] / src / testbed / gnunet-service-testbed.c
1 /*
2   This file is part of GNUnet.
3   (C) 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 2, 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/gnunet-service-testbed.c
23  * @brief implementation of the TESTBED service
24  * @author Sree Harsha Totakura
25  */
26
27 #include "gnunet-service-testbed.h"
28
29 #include <zlib.h>
30
31
32 /***********/
33 /* Globals */
34 /***********/
35
36 /**
37  * Our configuration
38  */
39 struct GNUNET_CONFIGURATION_Handle *our_config;
40
41 /**
42  * The master context; generated with the first INIT message
43  */
44 struct Context *GST_context;
45
46 /**
47  * A list of directly linked neighbours
48  */
49 struct Slave **GST_slave_list;
50
51 /**
52  * A list of peers we know about
53  */
54 struct Peer **GST_peer_list;
55
56 /**
57  * Array of hosts
58  */
59 struct GNUNET_TESTBED_Host **GST_host_list;
60
61 /**
62  * DLL head for forwarded operation contexts
63  */
64 struct ForwardedOperationContext *fopcq_head;
65
66 /**
67  * DLL tail for forwarded operation contexts
68  */
69 struct ForwardedOperationContext *fopcq_tail;
70
71 /**
72  * Operation queue for open file descriptors
73  */
74 struct OperationQueue *GST_opq_openfds;
75
76 /**
77  * Timeout for operations which may take some time
78  */
79 const struct GNUNET_TIME_Relative GST_timeout;
80
81 /**
82  * The size of the host list
83  */
84 unsigned int GST_host_list_size;
85
86 /**
87  * The size of directly linked neighbours list
88  */
89 unsigned int GST_slave_list_size;
90
91 /**
92  * The size of the peer list
93  */
94 unsigned int GST_peer_list_size;
95
96
97 /***********************************/
98 /* Local definitions and variables */
99 /***********************************/
100
101 /**
102  * The message queue for sending messages to clients
103  */
104 struct MessageQueue
105 {
106   /**
107    * The message to be sent
108    */
109   struct GNUNET_MessageHeader *msg;
110
111   /**
112    * The client to send the message to
113    */
114   struct GNUNET_SERVER_Client *client;
115
116   /**
117    * next pointer for DLL
118    */
119   struct MessageQueue *next;
120
121   /**
122    * prev pointer for DLL
123    */
124   struct MessageQueue *prev;
125 };
126
127 /**
128  * Our hostname; we give this to all the peers we start
129  */
130 static char *hostname;
131
132 /**
133  * Current Transmit Handle; NULL if no notify transmit exists currently
134  */
135 static struct GNUNET_SERVER_TransmitHandle *transmit_handle;
136
137 /**
138  * The head for the LCF queue
139  */
140 static struct LCFContextQueue *lcfq_head;
141
142 /**
143  * The tail for the LCF queue
144  */
145 static struct LCFContextQueue *lcfq_tail;
146
147 /**
148  * The message queue head
149  */
150 static struct MessageQueue *mq_head;
151
152 /**
153  * The message queue tail
154  */
155 static struct MessageQueue *mq_tail;
156
157 /**
158  * The hashmap of shared services
159  */
160 static struct GNUNET_CONTAINER_MultiHashMap *ss_map;
161
162 /**
163  * A list of routes
164  */
165 static struct Route **route_list;
166
167 /**
168  * The event mask for the events we listen from sub-controllers
169  */
170 static uint64_t event_mask;
171
172 /**
173  * The size of the route list
174  */
175 static unsigned int route_list_size;
176
177 /**
178  * The lcf_task handle
179  */
180 static GNUNET_SCHEDULER_TaskIdentifier lcf_proc_task_id;
181
182 /**
183  * The shutdown task handle
184  */
185 static GNUNET_SCHEDULER_TaskIdentifier shutdown_task_id;
186
187
188 /**
189  * Function called to notify a client about the connection begin ready to queue
190  * more data.  "buf" will be NULL and "size" zero if the connection was closed
191  * for writing in the meantime.
192  *
193  * @param cls NULL
194  * @param size number of bytes available in buf
195  * @param buf where the callee should write the message
196  * @return number of bytes written to buf
197  */
198 static size_t
199 transmit_ready_notify (void *cls, size_t size, void *buf)
200 {
201   struct MessageQueue *mq_entry;
202
203   transmit_handle = NULL;
204   mq_entry = mq_head;
205   GNUNET_assert (NULL != mq_entry);
206   if (0 == size)
207     return 0;
208   GNUNET_assert (ntohs (mq_entry->msg->size) <= size);
209   size = ntohs (mq_entry->msg->size);
210   memcpy (buf, mq_entry->msg, size);
211   GNUNET_free (mq_entry->msg);
212   GNUNET_SERVER_client_drop (mq_entry->client);
213   GNUNET_CONTAINER_DLL_remove (mq_head, mq_tail, mq_entry);
214   GNUNET_free (mq_entry);
215   mq_entry = mq_head;
216   if (NULL != mq_entry)
217     transmit_handle =
218         GNUNET_SERVER_notify_transmit_ready (mq_entry->client,
219                                              ntohs (mq_entry->msg->size),
220                                              GNUNET_TIME_UNIT_FOREVER_REL,
221                                              &transmit_ready_notify, NULL);
222   return size;
223 }
224
225
226 /**
227  * Queues a message in send queue for sending to the service
228  *
229  * @param client the client to whom the queued message has to be sent
230  * @param msg the message to queue
231  */
232 void
233 GST_queue_message (struct GNUNET_SERVER_Client *client,
234                    struct GNUNET_MessageHeader *msg)
235 {
236   struct MessageQueue *mq_entry;
237   uint16_t type;
238   uint16_t size;
239
240   type = ntohs (msg->type);
241   size = ntohs (msg->size);
242   GNUNET_assert ((GNUNET_MESSAGE_TYPE_TESTBED_INIT <= type) &&
243                  (GNUNET_MESSAGE_TYPE_TESTBED_MAX > type));
244   mq_entry = GNUNET_malloc (sizeof (struct MessageQueue));
245   mq_entry->msg = msg;
246   mq_entry->client = client;
247   GNUNET_SERVER_client_keep (client);
248   LOG_DEBUG ("Queueing message of type %u, size %u for sending\n", type,
249              ntohs (msg->size));
250   GNUNET_CONTAINER_DLL_insert_tail (mq_head, mq_tail, mq_entry);
251   if (NULL == transmit_handle)
252     transmit_handle =
253         GNUNET_SERVER_notify_transmit_ready (client, size,
254                                              GNUNET_TIME_UNIT_FOREVER_REL,
255                                              &transmit_ready_notify, NULL);
256 }
257
258
259 /**
260  * Similar to GNUNET_array_grow(); however instead of calling GNUNET_array_grow()
261  * several times we call it only once. The array is also made to grow in steps
262  * of LIST_GROW_STEP.
263  *
264  * @param ptr the array pointer to grow
265  * @param size the size of array
266  * @param accommodate_size the size which the array has to accommdate; after
267  *          this call the array will be big enough to accommdate sizes upto
268  *          accommodate_size
269  */
270 #define array_grow_large_enough(ptr, size, accommodate_size) \
271   do                                                                    \
272   {                                                                     \
273     unsigned int growth_size;                                           \
274     GNUNET_assert (size <= accommodate_size);                            \
275     growth_size = size;                                                 \
276     while (growth_size <= accommodate_size)                             \
277       growth_size += LIST_GROW_STEP;                                    \
278     GNUNET_array_grow (ptr, size, growth_size);                         \
279     GNUNET_assert (size > accommodate_size);                            \
280   } while (0)
281
282
283 /**
284  * Function to add a host to the current list of known hosts
285  *
286  * @param host the host to add
287  * @return GNUNET_OK on success; GNUNET_SYSERR on failure due to host-id
288  *           already in use
289  */
290 static int
291 host_list_add (struct GNUNET_TESTBED_Host *host)
292 {
293   uint32_t host_id;
294
295   host_id = GNUNET_TESTBED_host_get_id_ (host);
296   if (GST_host_list_size <= host_id)
297     array_grow_large_enough (GST_host_list, GST_host_list_size, host_id);
298   if (NULL != GST_host_list[host_id])
299   {
300     LOG_DEBUG ("A host with id: %u already exists\n", host_id);
301     return GNUNET_SYSERR;
302   }
303   GST_host_list[host_id] = host;
304   return GNUNET_OK;
305 }
306
307
308 /**
309  * Adds a route to the route list
310  *
311  * @param route the route to add
312  */
313 static void
314 route_list_add (struct Route *route)
315 {
316   if (route->dest >= route_list_size)
317     array_grow_large_enough (route_list, route_list_size, route->dest);
318   GNUNET_assert (NULL == route_list[route->dest]);
319   route_list[route->dest] = route;
320 }
321
322
323 /**
324  * Adds a slave to the slave array
325  *
326  * @param slave the slave controller to add
327  */
328 static void
329 slave_list_add (struct Slave *slave)
330 {
331   if (slave->host_id >= GST_slave_list_size)
332     array_grow_large_enough (GST_slave_list, GST_slave_list_size,
333                              slave->host_id);
334   GNUNET_assert (NULL == GST_slave_list[slave->host_id]);
335   GST_slave_list[slave->host_id] = slave;
336 }
337
338
339 /**
340  * Adds a peer to the peer array
341  *
342  * @param peer the peer to add
343  */
344 static void
345 peer_list_add (struct Peer *peer)
346 {
347   if (peer->id >= GST_peer_list_size)
348     array_grow_large_enough (GST_peer_list, GST_peer_list_size, peer->id);
349   GNUNET_assert (NULL == GST_peer_list[peer->id]);
350   GST_peer_list[peer->id] = peer;
351 }
352
353
354 /**
355  * Removes a the give peer from the peer array
356  *
357  * @param peer the peer to be removed
358  */
359 static void
360 peer_list_remove (struct Peer *peer)
361 {
362   unsigned int orig_size;
363   uint32_t id;
364
365   GST_peer_list[peer->id] = NULL;
366   orig_size = GST_peer_list_size;
367   while (GST_peer_list_size >= LIST_GROW_STEP)
368   {
369     for (id = GST_peer_list_size - 1;
370          (id >= GST_peer_list_size - LIST_GROW_STEP) && (id != UINT32_MAX);
371          id--)
372       if (NULL != GST_peer_list[id])
373         break;
374     if (id != ((GST_peer_list_size - LIST_GROW_STEP) - 1))
375       break;
376     GST_peer_list_size -= LIST_GROW_STEP;
377   }
378   if (orig_size == GST_peer_list_size)
379     return;
380   GST_peer_list =
381       GNUNET_realloc (GST_peer_list,
382                       sizeof (struct Peer *) * GST_peer_list_size);
383 }
384
385
386 /**
387  * Finds the route with directly connected host as destination through which
388  * the destination host can be reached
389  *
390  * @param host_id the id of the destination host
391  * @return the route with directly connected destination host; NULL if no route
392  *           is found
393  */
394 struct Route *
395 GST_find_dest_route (uint32_t host_id)
396 {
397   struct Route *route;
398
399   if (route_list_size <= host_id)
400     return NULL;
401   while (NULL != (route = route_list[host_id]))
402   {
403     if (route->thru == GST_context->host_id)
404       break;
405     host_id = route->thru;
406   }
407   return route;
408 }
409
410
411 /**
412  * Routes message to a host given its host_id
413  *
414  * @param host_id the id of the destination host
415  * @param msg the message to be routed
416  */
417 static void
418 route_message (uint32_t host_id, const struct GNUNET_MessageHeader *msg)
419 {
420   GNUNET_break (0);
421 }
422
423
424 /**
425  * Send operation failure message to client
426  *
427  * @param client the client to which the failure message has to be sent to
428  * @param operation_id the id of the failed operation
429  * @param emsg the error message; can be NULL
430  */
431 void
432 GST_send_operation_fail_msg (struct GNUNET_SERVER_Client *client,
433                              uint64_t operation_id, const char *emsg)
434 {
435   struct GNUNET_TESTBED_OperationFailureEventMessage *msg;
436   uint16_t msize;
437   uint16_t emsg_len;
438
439   msize = sizeof (struct GNUNET_TESTBED_OperationFailureEventMessage);
440   emsg_len = (NULL == emsg) ? 0 : strlen (emsg) + 1;
441   msize += emsg_len;
442   msg = GNUNET_malloc (msize);
443   msg->header.size = htons (msize);
444   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_OPERATION_FAIL_EVENT);
445   msg->event_type = htonl (GNUNET_TESTBED_ET_OPERATION_FINISHED);
446   msg->operation_id = GNUNET_htonll (operation_id);
447   if (0 != emsg_len)
448     memcpy (&msg[1], emsg, emsg_len);
449   GST_queue_message (client, &msg->header);
450 }
451
452
453 /**
454  * Function to send generic operation success message to given client
455  *
456  * @param client the client to send the message to
457  * @param operation_id the id of the operation which was successful
458  */
459 static void
460 send_operation_success_msg (struct GNUNET_SERVER_Client *client,
461                             uint64_t operation_id)
462 {
463   struct GNUNET_TESTBED_GenericOperationSuccessEventMessage *msg;
464   uint16_t msize;
465
466   msize = sizeof (struct GNUNET_TESTBED_GenericOperationSuccessEventMessage);
467   msg = GNUNET_malloc (msize);
468   msg->header.size = htons (msize);
469   msg->header.type =
470       htons (GNUNET_MESSAGE_TYPE_TESTBED_GENERIC_OPERATION_SUCCESS);
471   msg->operation_id = GNUNET_htonll (operation_id);
472   msg->event_type = htonl (GNUNET_TESTBED_ET_OPERATION_FINISHED);
473   GST_queue_message (client, &msg->header);
474 }
475
476
477 /**
478  * Callback which will be called to after a host registration succeeded or failed
479  *
480  * @param cls the handle to the slave at which the registration is completed
481  * @param emsg the error message; NULL if host registration is successful
482  */
483 static void
484 hr_completion (void *cls, const char *emsg);
485
486
487 /**
488  * Attempts to register the next host in the host registration queue
489  *
490  * @param slave the slave controller whose host registration queue is checked
491  *          for host registrations
492  */
493 static void
494 register_next_host (struct Slave *slave)
495 {
496   struct HostRegistration *hr;
497
498   hr = slave->hr_dll_head;
499   GNUNET_assert (NULL != hr);
500   GNUNET_assert (NULL == slave->rhandle);
501   LOG (GNUNET_ERROR_TYPE_DEBUG, "Registering host %u at %u\n",
502        GNUNET_TESTBED_host_get_id_ (hr->host),
503        GNUNET_TESTBED_host_get_id_ (GST_host_list[slave->host_id]));
504   slave->rhandle =
505       GNUNET_TESTBED_register_host (slave->controller, hr->host, hr_completion,
506                                     slave);
507 }
508
509
510 /**
511  * Callback which will be called to after a host registration succeeded or failed
512  *
513  * @param cls the handle to the slave at which the registration is completed
514  * @param emsg the error message; NULL if host registration is successful
515  */
516 static void
517 hr_completion (void *cls, const char *emsg)
518 {
519   struct Slave *slave = cls;
520   struct HostRegistration *hr;
521
522   slave->rhandle = NULL;
523   hr = slave->hr_dll_head;
524   GNUNET_assert (NULL != hr);
525   LOG (GNUNET_ERROR_TYPE_DEBUG, "Registering host %u at %u successful\n",
526        GNUNET_TESTBED_host_get_id_ (hr->host),
527        GNUNET_TESTBED_host_get_id_ (GST_host_list[slave->host_id]));
528   GNUNET_CONTAINER_DLL_remove (slave->hr_dll_head, slave->hr_dll_tail, hr);
529   if (NULL != hr->cb)
530     hr->cb (hr->cb_cls, emsg);
531   GNUNET_free (hr);
532   if (NULL != slave->hr_dll_head)
533     register_next_host (slave);
534 }
535
536
537 /**
538  * Adds a host registration's request to a slave's registration queue
539  *
540  * @param slave the slave controller at which the given host has to be
541  *          registered
542  * @param cb the host registration completion callback
543  * @param cb_cls the closure for the host registration completion callback
544  * @param host the host which has to be registered
545  */
546 void
547 GST_queue_host_registration (struct Slave *slave,
548                              GNUNET_TESTBED_HostRegistrationCompletion cb,
549                              void *cb_cls, struct GNUNET_TESTBED_Host *host)
550 {
551   struct HostRegistration *hr;
552   int call_register;
553
554   LOG (GNUNET_ERROR_TYPE_DEBUG,
555        "Queueing host registration for host %u at %u\n",
556        GNUNET_TESTBED_host_get_id_ (host),
557        GNUNET_TESTBED_host_get_id_ (GST_host_list[slave->host_id]));
558   hr = GNUNET_malloc (sizeof (struct HostRegistration));
559   hr->cb = cb;
560   hr->cb_cls = cb_cls;
561   hr->host = host;
562   call_register = (NULL == slave->hr_dll_head) ? GNUNET_YES : GNUNET_NO;
563   GNUNET_CONTAINER_DLL_insert_tail (slave->hr_dll_head, slave->hr_dll_tail, hr);
564   if (GNUNET_YES == call_register)
565     register_next_host (slave);
566 }
567
568
569 /**
570  * The  Link Controller forwarding task
571  *
572  * @param cls the LCFContext
573  * @param tc the Task context from scheduler
574  */
575 static void
576 lcf_proc_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
577
578
579 /**
580  * Completion callback for host registrations while forwarding Link Controller messages
581  *
582  * @param cls the LCFContext
583  * @param emsg the error message; NULL if host registration is successful
584  */
585 static void
586 lcf_proc_cc (void *cls, const char *emsg)
587 {
588   struct LCFContext *lcf = cls;
589
590   GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == lcf_proc_task_id);
591   switch (lcf->state)
592   {
593   case INIT:
594     if (NULL != emsg)
595       goto registration_error;
596     lcf->state = DELEGATED_HOST_REGISTERED;
597     lcf_proc_task_id = GNUNET_SCHEDULER_add_now (&lcf_proc_task, lcf);
598     break;
599   case DELEGATED_HOST_REGISTERED:
600     if (NULL != emsg)
601       goto registration_error;
602     lcf->state = SLAVE_HOST_REGISTERED;
603     lcf_proc_task_id = GNUNET_SCHEDULER_add_now (&lcf_proc_task, lcf);
604     break;
605   default:
606     GNUNET_assert (0);          /* Shouldn't reach here */
607   }
608   return;
609
610 registration_error:
611   LOG (GNUNET_ERROR_TYPE_WARNING, "Host registration failed with message: %s\n",
612        emsg);
613   lcf->state = FINISHED;
614   lcf_proc_task_id = GNUNET_SCHEDULER_add_now (&lcf_proc_task, lcf);
615 }
616
617
618 /**
619  * Callback to relay the reply msg of a forwarded operation back to the client
620  *
621  * @param cls ForwardedOperationContext
622  * @param msg the message to relay
623  */
624 void
625 GST_forwarded_operation_reply_relay (void *cls,
626                                      const struct GNUNET_MessageHeader *msg)
627 {
628   struct ForwardedOperationContext *fopc = cls;
629   struct GNUNET_MessageHeader *dup_msg;
630   uint16_t msize;
631
632   msize = ntohs (msg->size);
633   LOG_DEBUG ("Relaying message with type: %u, size: %u\n", ntohs (msg->type),
634              msize);
635   dup_msg = GNUNET_copy_message (msg);
636   GST_queue_message (fopc->client, dup_msg);
637   GNUNET_SERVER_client_drop (fopc->client);
638   GNUNET_SCHEDULER_cancel (fopc->timeout_task);
639   GNUNET_CONTAINER_DLL_remove (fopcq_head, fopcq_tail, fopc);
640   GNUNET_free (fopc);
641 }
642
643
644 /**
645  * Task to free resources when forwarded operation has been timedout
646  *
647  * @param cls the ForwardedOperationContext
648  * @param tc the task context from scheduler
649  */
650 void
651 GST_forwarded_operation_timeout (void *cls,
652                                  const struct GNUNET_SCHEDULER_TaskContext *tc)
653 {
654   struct ForwardedOperationContext *fopc = cls;
655
656   GNUNET_TESTBED_forward_operation_msg_cancel_ (fopc->opc);
657   LOG (GNUNET_ERROR_TYPE_WARNING, "A forwarded operation has timed out\n");
658   GST_send_operation_fail_msg (fopc->client, fopc->operation_id, "Timeout");
659   GNUNET_SERVER_client_drop (fopc->client);
660   GNUNET_CONTAINER_DLL_remove (fopcq_head, fopcq_tail, fopc);
661   GNUNET_free (fopc);
662 }
663
664
665 /**
666  * The  Link Controller forwarding task
667  *
668  * @param cls the LCFContext
669  * @param tc the Task context from scheduler
670  */
671 static void
672 lcf_proc_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
673
674
675 /**
676  * Callback to be called when forwarded link controllers operation is
677  * successfull. We have to relay the reply msg back to the client
678  *
679  * @param cls the LCFContext
680  * @param msg the message to relay
681  */
682 static void
683 lcf_forwarded_operation_reply_relay (void *cls,
684                                      const struct GNUNET_MessageHeader *msg)
685 {
686   struct LCFContext *lcf = cls;
687
688   GNUNET_assert (NULL != lcf->fopc);
689   GST_forwarded_operation_reply_relay (lcf->fopc, msg);
690   lcf->fopc = NULL;
691   GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == lcf_proc_task_id);
692   lcf_proc_task_id = GNUNET_SCHEDULER_add_now (&lcf_proc_task, lcf);
693 }
694
695
696 /**
697  * Task to free resources when forwarded link controllers has been timedout
698  *
699  * @param cls the LCFContext
700  * @param tc the task context from scheduler
701  */
702 static void
703 lcf_forwarded_operation_timeout (void *cls,
704                                  const struct GNUNET_SCHEDULER_TaskContext *tc)
705 {
706   struct LCFContext *lcf = cls;
707
708   GNUNET_assert (NULL != lcf->fopc);
709   lcf->fopc->timeout_task = GNUNET_SCHEDULER_NO_TASK;
710   GST_forwarded_operation_timeout (lcf->fopc, tc);
711   lcf->fopc = NULL;
712   GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == lcf_proc_task_id);
713   lcf_proc_task_id = GNUNET_SCHEDULER_add_now (&lcf_proc_task, lcf);
714 }
715
716
717 /**
718  * The  Link Controller forwarding task
719  *
720  * @param cls the LCFContext
721  * @param tc the Task context from scheduler
722  */
723 static void
724 lcf_proc_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
725 {
726   struct LCFContext *lcf = cls;
727   struct LCFContextQueue *lcfq;
728
729   lcf_proc_task_id = GNUNET_SCHEDULER_NO_TASK;
730   switch (lcf->state)
731   {
732   case INIT:
733     if (GNUNET_NO ==
734         GNUNET_TESTBED_is_host_registered_ (GST_host_list
735                                             [lcf->delegated_host_id],
736                                             lcf->gateway->controller))
737     {
738       GST_queue_host_registration (lcf->gateway, lcf_proc_cc, lcf,
739                                    GST_host_list[lcf->delegated_host_id]);
740     }
741     else
742     {
743       lcf->state = DELEGATED_HOST_REGISTERED;
744       lcf_proc_task_id = GNUNET_SCHEDULER_add_now (&lcf_proc_task, lcf);
745     }
746     break;
747   case DELEGATED_HOST_REGISTERED:
748     if (GNUNET_NO ==
749         GNUNET_TESTBED_is_host_registered_ (GST_host_list[lcf->slave_host_id],
750                                             lcf->gateway->controller))
751     {
752       GST_queue_host_registration (lcf->gateway, lcf_proc_cc, lcf,
753                                    GST_host_list[lcf->slave_host_id]);
754     }
755     else
756     {
757       lcf->state = SLAVE_HOST_REGISTERED;
758       lcf_proc_task_id = GNUNET_SCHEDULER_add_now (&lcf_proc_task, lcf);
759     }
760     break;
761   case SLAVE_HOST_REGISTERED:
762     lcf->fopc = GNUNET_malloc (sizeof (struct ForwardedOperationContext));
763     lcf->fopc->client = lcf->client;
764     lcf->fopc->operation_id = lcf->operation_id;
765     lcf->fopc->type = OP_LINK_CONTROLLERS;
766     lcf->fopc->opc =
767         GNUNET_TESTBED_forward_operation_msg_ (lcf->gateway->controller,
768                                                lcf->operation_id,
769                                                &lcf->msg->header,
770                                                &lcf_forwarded_operation_reply_relay,
771                                                lcf);
772     lcf->fopc->timeout_task =
773         GNUNET_SCHEDULER_add_delayed (GST_timeout, &lcf_forwarded_operation_timeout,
774                                       lcf);
775     GNUNET_CONTAINER_DLL_insert_tail (fopcq_head, fopcq_tail, lcf->fopc);
776     lcf->state = FINISHED;
777     break;
778   case FINISHED:
779     lcfq = lcfq_head;
780     GNUNET_assert (lcfq->lcf == lcf);
781     GNUNET_free (lcf->msg);
782     GNUNET_free (lcf);
783     GNUNET_CONTAINER_DLL_remove (lcfq_head, lcfq_tail, lcfq);
784     GNUNET_free (lcfq);
785     if (NULL != lcfq_head)
786       lcf_proc_task_id =
787           GNUNET_SCHEDULER_add_now (&lcf_proc_task, lcfq_head->lcf);
788   }
789 }
790
791
792 /**
793  * Callback for event from slave controllers
794  *
795  * @param cls struct Slave *
796  * @param event information about the event
797  */
798 static void
799 slave_event_callback (void *cls,
800                       const struct GNUNET_TESTBED_EventInformation *event)
801 {
802   struct RegisteredHostContext *rhc;
803   struct GNUNET_CONFIGURATION_Handle *cfg;
804   struct GNUNET_TESTBED_Operation *old_op;
805
806   /* We currently only get here when working on RegisteredHostContexts */
807   GNUNET_assert (GNUNET_TESTBED_ET_OPERATION_FINISHED == event->type);
808   rhc = event->details.operation_finished.op_cls;
809   GNUNET_assert (rhc->sub_op == event->details.operation_finished.operation);
810   switch (rhc->state)
811   {
812   case RHC_GET_CFG:
813     cfg = event->details.operation_finished.generic;
814     old_op = rhc->sub_op;
815     rhc->state = RHC_LINK;
816     rhc->sub_op =
817         GNUNET_TESTBED_controller_link (rhc, rhc->gateway->controller,
818                                         rhc->reg_host, rhc->host, cfg,
819                                         GNUNET_NO);
820     GNUNET_TESTBED_operation_done (old_op);
821     break;
822   case RHC_LINK:
823     LOG_DEBUG ("OL: Linking controllers successfull\n");
824     GNUNET_TESTBED_operation_done (rhc->sub_op);
825     rhc->sub_op = NULL;
826     rhc->state = RHC_OL_CONNECT;
827     GST_process_next_focc (rhc);
828     break;
829   default:
830     GNUNET_assert (0);
831   }
832 }
833
834
835 /**
836  * Callback to signal successfull startup of the controller process
837  *
838  * @param cls the handle to the slave whose status is to be found here
839  * @param cfg the configuration with which the controller has been started;
840  *          NULL if status is not GNUNET_OK
841  * @param status GNUNET_OK if the startup is successfull; GNUNET_SYSERR if not,
842  *          GNUNET_TESTBED_controller_stop() shouldn't be called in this case
843  */
844 static void
845 slave_status_callback (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg,
846                        int status)
847 {
848   struct Slave *slave = cls;
849   struct LinkControllersContext *lcc;
850
851   lcc = slave->lcc;
852   if (GNUNET_SYSERR == status)
853   {
854     slave->controller_proc = NULL;
855     GST_slave_list[slave->host_id] = NULL;
856     if (NULL != slave->cfg)
857       GNUNET_CONFIGURATION_destroy (slave->cfg);
858     GNUNET_free (slave);
859     slave = NULL;
860     LOG (GNUNET_ERROR_TYPE_WARNING, "Unexpected slave shutdown\n");
861     GNUNET_SCHEDULER_shutdown ();       /* We too shutdown */
862     goto clean_lcc;
863   }
864   slave->controller =
865       GNUNET_TESTBED_controller_connect (cfg, GST_host_list[slave->host_id],
866                                          event_mask, &slave_event_callback,
867                                          slave);
868   if (NULL != slave->controller)
869   {
870     send_operation_success_msg (lcc->client, lcc->operation_id);
871     slave->cfg = GNUNET_CONFIGURATION_dup (cfg);
872   }
873   else
874   {
875     GST_send_operation_fail_msg (lcc->client, lcc->operation_id,
876                                  "Could not connect to delegated controller");
877     GNUNET_TESTBED_controller_stop (slave->controller_proc);
878     GST_slave_list[slave->host_id] = NULL;
879     GNUNET_free (slave);
880     slave = NULL;
881   }
882
883 clean_lcc:
884   if (NULL != lcc)
885   {
886     if (NULL != lcc->client)
887     {
888       GNUNET_SERVER_receive_done (lcc->client, GNUNET_OK);
889       GNUNET_SERVER_client_drop (lcc->client);
890       lcc->client = NULL;
891     }
892     GNUNET_free (lcc);
893   }
894   if (NULL != slave)
895     slave->lcc = NULL;
896 }
897
898
899 /**
900  * Message handler for GNUNET_MESSAGE_TYPE_TESTBED_INIT messages
901  *
902  * @param cls NULL
903  * @param client identification of the client
904  * @param message the actual message
905  */
906 static void
907 handle_init (void *cls, struct GNUNET_SERVER_Client *client,
908              const struct GNUNET_MessageHeader *message)
909 {
910   const struct GNUNET_TESTBED_InitMessage *msg;
911   struct GNUNET_TESTBED_Host *host;
912   const char *controller_hostname;
913   uint16_t msize;
914
915   if (NULL != GST_context)
916   {
917     LOG_DEBUG ("We are being connected to laterally\n");
918     GNUNET_SERVER_receive_done (client, GNUNET_OK);
919     return;
920   }
921   msg = (const struct GNUNET_TESTBED_InitMessage *) message;
922   msize = ntohs (message->size);
923   if (msize <= sizeof (struct GNUNET_TESTBED_InitMessage))
924   {
925     GNUNET_break (0);
926     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
927     return;
928   }
929   msize -= sizeof (struct GNUNET_TESTBED_InitMessage);
930   controller_hostname = (const char *) &msg[1];
931   if ('\0' != controller_hostname[msize - 1])
932   {
933     GNUNET_break (0);
934     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
935     return;
936   }
937   GST_context = GNUNET_malloc (sizeof (struct Context));
938   GNUNET_SERVER_client_keep (client);
939   GST_context->client = client;
940   GST_context->host_id = ntohl (msg->host_id);
941   GST_context->master_ip = GNUNET_strdup (controller_hostname);
942   LOG_DEBUG ("Our IP: %s\n", GST_context->master_ip);
943   GST_context->system =
944       GNUNET_TESTING_system_create ("testbed", GST_context->master_ip,
945                                     hostname);
946   host =
947       GNUNET_TESTBED_host_create_with_id (GST_context->host_id,
948                                           GST_context->master_ip, NULL, 0);
949   host_list_add (host);
950   LOG_DEBUG ("Created master context with host ID: %u\n", GST_context->host_id);
951   GNUNET_SERVER_receive_done (client, GNUNET_OK);
952 }
953
954
955 /**
956  * Message handler for GNUNET_MESSAGE_TYPE_TESTBED_ADDHOST messages
957  *
958  * @param cls NULL
959  * @param client identification of the client
960  * @param message the actual message
961  */
962 static void
963 handle_add_host (void *cls, struct GNUNET_SERVER_Client *client,
964                  const struct GNUNET_MessageHeader *message)
965 {
966   struct GNUNET_TESTBED_Host *host;
967   const struct GNUNET_TESTBED_AddHostMessage *msg;
968   struct GNUNET_TESTBED_HostConfirmedMessage *reply;
969   char *username;
970   char *hostname;
971   char *emsg;
972   uint32_t host_id;
973   uint16_t username_length;
974   uint16_t hostname_length;
975   uint16_t reply_size;
976   uint16_t msize;
977
978   msg = (const struct GNUNET_TESTBED_AddHostMessage *) message;
979   msize = ntohs (msg->header.size);
980   username = (char *) &msg[1];
981   username_length = ntohs (msg->user_name_length);
982   if (0 != username_length)
983     username_length++;
984   /* msg must contain hostname */
985   GNUNET_assert (msize >
986                  (sizeof (struct GNUNET_TESTBED_AddHostMessage) +
987                   username_length + 1));
988   if (0 != username_length)
989     GNUNET_assert ('\0' == username[username_length - 1]);
990   hostname = username + username_length;
991   hostname_length =
992       msize - (sizeof (struct GNUNET_TESTBED_AddHostMessage) + username_length);
993   GNUNET_assert ('\0' == hostname[hostname_length - 1]);
994   GNUNET_assert (strlen (hostname) == hostname_length - 1);
995   host_id = ntohl (msg->host_id);
996   LOG_DEBUG ("Received ADDHOST %u message\n", host_id);
997   LOG_DEBUG ("-------host id: %u\n", host_id);
998   LOG_DEBUG ("-------hostname: %s\n", hostname);
999   if (0 != username_length)
1000     LOG_DEBUG ("-------username: %s\n", username);
1001   else
1002   {
1003     LOG_DEBUG ("-------username: NULL\n");
1004     username = NULL;
1005   }
1006   LOG_DEBUG ("-------ssh port: %u\n", ntohs (msg->ssh_port));
1007   host =
1008       GNUNET_TESTBED_host_create_with_id (host_id, hostname, username,
1009                                           ntohs (msg->ssh_port));
1010   GNUNET_assert (NULL != host);
1011   reply_size = sizeof (struct GNUNET_TESTBED_HostConfirmedMessage);
1012   if (GNUNET_OK != host_list_add (host))
1013   {
1014     /* We are unable to add a host */
1015     emsg = "A host exists with given host-id";
1016     LOG_DEBUG ("%s: %u", emsg, host_id);
1017     GNUNET_TESTBED_host_destroy (host);
1018     reply_size += strlen (emsg) + 1;
1019     reply = GNUNET_malloc (reply_size);
1020     memcpy (&reply[1], emsg, strlen (emsg) + 1);
1021   }
1022   else
1023   {
1024     LOG_DEBUG ("Added host %u at %u\n", host_id, GST_context->host_id);
1025     reply = GNUNET_malloc (reply_size);
1026   }
1027   reply->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_ADD_HOST_SUCCESS);
1028   reply->header.size = htons (reply_size);
1029   reply->host_id = htonl (host_id);
1030   GST_queue_message (client, &reply->header);
1031   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1032 }
1033
1034
1035 /**
1036  * Iterator over hash map entries.
1037  *
1038  * @param cls closure
1039  * @param key current key code
1040  * @param value value in the hash map
1041  * @return GNUNET_YES if we should continue to
1042  *         iterate,
1043  *         GNUNET_NO if not.
1044  */
1045 int
1046 ss_exists_iterator (void *cls, const struct GNUNET_HashCode *key, void *value)
1047 {
1048   struct SharedService *queried_ss = cls;
1049   struct SharedService *ss = value;
1050
1051   if (0 == strcmp (ss->name, queried_ss->name))
1052     return GNUNET_NO;
1053   else
1054     return GNUNET_YES;
1055 }
1056
1057
1058 /**
1059  * Message handler for GNUNET_MESSAGE_TYPE_TESTBED_ADDHOST messages
1060  *
1061  * @param cls NULL
1062  * @param client identification of the client
1063  * @param message the actual message
1064  */
1065 static void
1066 handle_configure_shared_service (void *cls, struct GNUNET_SERVER_Client *client,
1067                                  const struct GNUNET_MessageHeader *message)
1068 {
1069   const struct GNUNET_TESTBED_ConfigureSharedServiceMessage *msg;
1070   struct SharedService *ss;
1071   char *service_name;
1072   struct GNUNET_HashCode hash;
1073   uint16_t msg_size;
1074   uint16_t service_name_size;
1075
1076   msg = (const struct GNUNET_TESTBED_ConfigureSharedServiceMessage *) message;
1077   msg_size = ntohs (message->size);
1078   if (msg_size <= sizeof (struct GNUNET_TESTBED_ConfigureSharedServiceMessage))
1079   {
1080     GNUNET_break (0);
1081     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1082     return;
1083   }
1084   service_name_size =
1085       msg_size - sizeof (struct GNUNET_TESTBED_ConfigureSharedServiceMessage);
1086   service_name = (char *) &msg[1];
1087   if ('\0' != service_name[service_name_size - 1])
1088   {
1089     GNUNET_break (0);
1090     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1091     return;
1092   }
1093   LOG_DEBUG ("Received service sharing request for %s, with %d peers\n",
1094              service_name, ntohl (msg->num_peers));
1095   if (ntohl (msg->host_id) != GST_context->host_id)
1096   {
1097     route_message (ntohl (msg->host_id), message);
1098     GNUNET_SERVER_receive_done (client, GNUNET_OK);
1099     return;
1100   }
1101   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1102   ss = GNUNET_malloc (sizeof (struct SharedService));
1103   ss->name = strdup (service_name);
1104   ss->num_shared = ntohl (msg->num_peers);
1105   GNUNET_CRYPTO_hash (ss->name, service_name_size, &hash);
1106   if (GNUNET_SYSERR ==
1107       GNUNET_CONTAINER_multihashmap_get_multiple (ss_map, &hash,
1108                                                   &ss_exists_iterator, ss))
1109   {
1110     LOG (GNUNET_ERROR_TYPE_WARNING,
1111          "Service %s already configured as a shared service. "
1112          "Ignoring service sharing request \n", ss->name);
1113     GNUNET_free (ss->name);
1114     GNUNET_free (ss);
1115     return;
1116   }
1117   GNUNET_CONTAINER_multihashmap_put (ss_map, &hash, ss,
1118                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
1119 }
1120
1121
1122 /**
1123  * Message handler for GNUNET_MESSAGE_TYPE_TESTBED_LCONTROLLERS message
1124  *
1125  * @param cls NULL
1126  * @param client identification of the client
1127  * @param message the actual message
1128  */
1129 static void
1130 handle_link_controllers (void *cls, struct GNUNET_SERVER_Client *client,
1131                          const struct GNUNET_MessageHeader *message)
1132 {
1133   const struct GNUNET_TESTBED_ControllerLinkMessage *msg;
1134   struct GNUNET_CONFIGURATION_Handle *cfg;
1135   struct LCFContextQueue *lcfq;
1136   struct Route *route;
1137   struct Route *new_route;
1138   char *config;
1139   uLongf dest_size;
1140   size_t config_size;
1141   uint32_t delegated_host_id;
1142   uint32_t slave_host_id;
1143   uint16_t msize;
1144
1145   if (NULL == GST_context)
1146   {
1147     GNUNET_break (0);
1148     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1149     return;
1150   }
1151   msize = ntohs (message->size);
1152   if (sizeof (struct GNUNET_TESTBED_ControllerLinkMessage) >= msize)
1153   {
1154     GNUNET_break (0);
1155     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1156     return;
1157   }
1158   msg = (const struct GNUNET_TESTBED_ControllerLinkMessage *) message;
1159   delegated_host_id = ntohl (msg->delegated_host_id);
1160   if (delegated_host_id == GST_context->host_id)
1161   {
1162     GNUNET_break (0);
1163     LOG (GNUNET_ERROR_TYPE_WARNING, "Trying to link ourselves\n");
1164     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1165     return;
1166   }
1167   if ((delegated_host_id >= GST_host_list_size) ||
1168       (NULL == GST_host_list[delegated_host_id]))
1169   {
1170     LOG (GNUNET_ERROR_TYPE_WARNING,
1171          "Delegated host %u not registered with us\n", delegated_host_id);
1172     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1173     return;
1174   }
1175   slave_host_id = ntohl (msg->slave_host_id);
1176   if ((slave_host_id >= GST_host_list_size) ||
1177       (NULL == GST_host_list[slave_host_id]))
1178   {
1179     LOG (GNUNET_ERROR_TYPE_WARNING, "Slave host %u not registered with us\n",
1180          slave_host_id);
1181     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1182     return;
1183   }
1184   if (slave_host_id == delegated_host_id)
1185   {
1186     LOG (GNUNET_ERROR_TYPE_WARNING, "Slave and delegated host are same\n");
1187     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1188     return;
1189   }
1190
1191   if (slave_host_id == GST_context->host_id)    /* Link from us */
1192   {
1193     struct Slave *slave;
1194     struct LinkControllersContext *lcc;
1195
1196     msize -= sizeof (struct GNUNET_TESTBED_ControllerLinkMessage);
1197     config_size = ntohs (msg->config_size);
1198     if ((delegated_host_id < GST_slave_list_size) && (NULL != GST_slave_list[delegated_host_id]))       /* We have already added */
1199     {
1200       LOG (GNUNET_ERROR_TYPE_WARNING, "Host %u already connected\n",
1201            delegated_host_id);
1202       GNUNET_SERVER_receive_done (client, GNUNET_OK);
1203       return;
1204     }
1205     config = GNUNET_malloc (config_size);
1206     dest_size = (uLongf) config_size;
1207     if (Z_OK !=
1208         uncompress ((Bytef *) config, &dest_size, (const Bytef *) &msg[1],
1209                     (uLong) msize))
1210     {
1211       GNUNET_break (0);         /* Compression error */
1212       GNUNET_free (config);
1213       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1214       return;
1215     }
1216     if (config_size != dest_size)
1217     {
1218       LOG (GNUNET_ERROR_TYPE_WARNING, "Uncompressed config size mismatch\n");
1219       GNUNET_free (config);
1220       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1221       return;
1222     }
1223     cfg = GNUNET_CONFIGURATION_create ();       /* Free here or in lcfcontext */
1224     if (GNUNET_OK !=
1225         GNUNET_CONFIGURATION_deserialize (cfg, config, config_size, GNUNET_NO))
1226     {
1227       GNUNET_break (0);         /* Configuration parsing error */
1228       GNUNET_free (config);
1229       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1230       return;
1231     }
1232     GNUNET_free (config);
1233     if ((delegated_host_id < GST_slave_list_size) &&
1234         (NULL != GST_slave_list[delegated_host_id]))
1235     {
1236       GNUNET_break (0);         /* Configuration parsing error */
1237       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1238       return;
1239     }
1240     slave = GNUNET_malloc (sizeof (struct Slave));
1241     slave->host_id = delegated_host_id;
1242     slave->reghost_map = GNUNET_CONTAINER_multihashmap_create (100, GNUNET_NO);
1243     slave_list_add (slave);
1244     if (1 != msg->is_subordinate)
1245     {
1246       slave->controller =
1247           GNUNET_TESTBED_controller_connect (cfg, GST_host_list[slave->host_id],
1248                                              event_mask, &slave_event_callback,
1249                                              slave);
1250       slave->cfg = cfg;
1251       if (NULL != slave->controller)
1252         send_operation_success_msg (client, GNUNET_ntohll (msg->operation_id));
1253       else
1254         GST_send_operation_fail_msg (client, GNUNET_ntohll (msg->operation_id),
1255                                      "Could not connect to delegated controller");
1256       GNUNET_SERVER_receive_done (client, GNUNET_OK);
1257       return;
1258     }
1259     lcc = GNUNET_malloc (sizeof (struct LinkControllersContext));
1260     lcc->operation_id = GNUNET_ntohll (msg->operation_id);
1261     GNUNET_SERVER_client_keep (client);
1262     lcc->client = client;
1263     slave->lcc = lcc;
1264     slave->controller_proc =
1265         GNUNET_TESTBED_controller_start (GST_context->master_ip,
1266                                          GST_host_list[slave->host_id], cfg,
1267                                          &slave_status_callback, slave);
1268     GNUNET_CONFIGURATION_destroy (cfg);
1269     new_route = GNUNET_malloc (sizeof (struct Route));
1270     new_route->dest = delegated_host_id;
1271     new_route->thru = GST_context->host_id;
1272     route_list_add (new_route);
1273     return;
1274   }
1275
1276   /* Route the request */
1277   if (slave_host_id >= route_list_size)
1278   {
1279     LOG (GNUNET_ERROR_TYPE_WARNING, "No route towards slave host");
1280     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1281     return;
1282   }
1283   lcfq = GNUNET_malloc (sizeof (struct LCFContextQueue));
1284   lcfq->lcf = GNUNET_malloc (sizeof (struct LCFContext));
1285   lcfq->lcf->delegated_host_id = delegated_host_id;
1286   lcfq->lcf->slave_host_id = slave_host_id;
1287   route = GST_find_dest_route (slave_host_id);
1288   GNUNET_assert (NULL != route);        /* because we add routes carefully */
1289   GNUNET_assert (route->dest < GST_slave_list_size);
1290   GNUNET_assert (NULL != GST_slave_list[route->dest]);
1291   lcfq->lcf->state = INIT;
1292   lcfq->lcf->operation_id = GNUNET_ntohll (msg->operation_id);
1293   lcfq->lcf->gateway = GST_slave_list[route->dest];
1294   lcfq->lcf->msg = GNUNET_malloc (msize);
1295   (void) memcpy (lcfq->lcf->msg, msg, msize);
1296   GNUNET_SERVER_client_keep (client);
1297   lcfq->lcf->client = client;
1298   if (NULL == lcfq_head)
1299   {
1300     GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == lcf_proc_task_id);
1301     GNUNET_CONTAINER_DLL_insert_tail (lcfq_head, lcfq_tail, lcfq);
1302     lcf_proc_task_id = GNUNET_SCHEDULER_add_now (&lcf_proc_task, lcfq->lcf);
1303   }
1304   else
1305     GNUNET_CONTAINER_DLL_insert_tail (lcfq_head, lcfq_tail, lcfq);
1306   /* FIXME: Adding a new route should happen after the controllers are linked
1307    * successfully */
1308   if (1 != msg->is_subordinate)
1309   {
1310     GNUNET_SERVER_receive_done (client, GNUNET_OK);
1311     return;
1312   }
1313   if ((delegated_host_id < route_list_size) &&
1314       (NULL != route_list[delegated_host_id]))
1315   {
1316     GNUNET_break_op (0);        /* Are you trying to link delegated host twice
1317                                  * with is subordinate flag set to GNUNET_YES? */
1318     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1319     return;
1320   }
1321   new_route = GNUNET_malloc (sizeof (struct Route));
1322   new_route->dest = delegated_host_id;
1323   new_route->thru = route->dest;
1324   route_list_add (new_route);
1325   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1326 }
1327
1328
1329 /**
1330  * The task to be executed if the forwarded peer create operation has been
1331  * timed out
1332  *
1333  * @param cls the FowardedOperationContext
1334  * @param tc the TaskContext from the scheduler
1335  */
1336 static void
1337 peer_create_forward_timeout (void *cls,
1338                              const struct GNUNET_SCHEDULER_TaskContext *tc)
1339 {
1340   struct ForwardedOperationContext *fopc = cls;
1341
1342   GNUNET_free (fopc->cls);
1343   GST_forwarded_operation_timeout (fopc, tc);
1344 }
1345
1346
1347 /**
1348  * Callback to be called when forwarded peer create operation is successfull. We
1349  * have to relay the reply msg back to the client
1350  *
1351  * @param cls ForwardedOperationContext
1352  * @param msg the peer create success message
1353  */
1354 static void
1355 peer_create_success_cb (void *cls, const struct GNUNET_MessageHeader *msg)
1356 {
1357   struct ForwardedOperationContext *fopc = cls;
1358   struct Peer *remote_peer;
1359
1360   if (ntohs (msg->type) == GNUNET_MESSAGE_TYPE_TESTBED_CREATE_PEER_SUCCESS)
1361   {
1362     GNUNET_assert (NULL != fopc->cls);
1363     remote_peer = fopc->cls;
1364     peer_list_add (remote_peer);
1365   }
1366   GST_forwarded_operation_reply_relay (fopc, msg);
1367 }
1368
1369
1370 /**
1371  * Function to destroy a peer
1372  *
1373  * @param peer the peer structure to destroy
1374  */
1375 void
1376 GST_destroy_peer (struct Peer *peer)
1377 {
1378   GNUNET_break (0 == peer->reference_cnt);
1379   if (GNUNET_YES == peer->is_remote)
1380   {
1381     peer_list_remove (peer);
1382     GNUNET_free (peer);
1383     return;
1384   }
1385   if (GNUNET_YES == peer->details.local.is_running)
1386   {
1387     GNUNET_TESTING_peer_stop (peer->details.local.peer);
1388     peer->details.local.is_running = GNUNET_NO;
1389   }
1390   GNUNET_TESTING_peer_destroy (peer->details.local.peer);
1391   GNUNET_CONFIGURATION_destroy (peer->details.local.cfg);
1392   peer_list_remove (peer);
1393   GNUNET_free (peer);
1394 }
1395
1396
1397 /**
1398  * Callback to be called when forwarded peer destroy operation is successfull. We
1399  * have to relay the reply msg back to the client
1400  *
1401  * @param cls ForwardedOperationContext
1402  * @param msg the peer create success message
1403  */
1404 static void
1405 peer_destroy_success_cb (void *cls, const struct GNUNET_MessageHeader *msg)
1406 {
1407   struct ForwardedOperationContext *fopc = cls;
1408   struct Peer *remote_peer;
1409
1410   if (GNUNET_MESSAGE_TYPE_TESTBED_GENERIC_OPERATION_SUCCESS ==
1411       ntohs (msg->type))
1412   {
1413     remote_peer = fopc->cls;
1414     GNUNET_assert (NULL != remote_peer);
1415     remote_peer->destroy_flag = GNUNET_YES;
1416     if (0 == remote_peer->reference_cnt)
1417       GST_destroy_peer (remote_peer);
1418   }
1419   GST_forwarded_operation_reply_relay (fopc, msg);
1420 }
1421
1422
1423
1424 /**
1425  * Handler for GNUNET_MESSAGE_TYPE_TESTBED_CREATEPEER messages
1426  *
1427  * @param cls NULL
1428  * @param client identification of the client
1429  * @param message the actual message
1430  */
1431 static void
1432 handle_peer_create (void *cls, struct GNUNET_SERVER_Client *client,
1433                     const struct GNUNET_MessageHeader *message)
1434 {
1435   const struct GNUNET_TESTBED_PeerCreateMessage *msg;
1436   struct GNUNET_TESTBED_PeerCreateSuccessEventMessage *reply;
1437   struct GNUNET_CONFIGURATION_Handle *cfg;
1438   struct ForwardedOperationContext *fo_ctxt;
1439   struct Route *route;
1440   struct Peer *peer;
1441   char *config;
1442   size_t dest_size;
1443   int ret;
1444   uint32_t config_size;
1445   uint32_t host_id;
1446   uint32_t peer_id;
1447   uint16_t msize;
1448
1449
1450   msize = ntohs (message->size);
1451   if (msize <= sizeof (struct GNUNET_TESTBED_PeerCreateMessage))
1452   {
1453     GNUNET_break (0);           /* We need configuration */
1454     GNUNET_SERVER_receive_done (client, GNUNET_OK);
1455     return;
1456   }
1457   msg = (const struct GNUNET_TESTBED_PeerCreateMessage *) message;
1458   host_id = ntohl (msg->host_id);
1459   peer_id = ntohl (msg->peer_id);
1460   if (UINT32_MAX == peer_id)
1461   {
1462     GST_send_operation_fail_msg (client, GNUNET_ntohll (msg->operation_id),
1463                                  "Cannot create peer with given ID");
1464     GNUNET_SERVER_receive_done (client, GNUNET_OK);
1465     return;
1466   }
1467   if (host_id == GST_context->host_id)
1468   {
1469     char *emsg;
1470
1471     /* We are responsible for this peer */
1472     msize -= sizeof (struct GNUNET_TESTBED_PeerCreateMessage);
1473     config_size = ntohl (msg->config_size);
1474     config = GNUNET_malloc (config_size);
1475     dest_size = config_size;
1476     if (Z_OK !=
1477         (ret =
1478          uncompress ((Bytef *) config, (uLongf *) & dest_size,
1479                      (const Bytef *) &msg[1], (uLong) msize)))
1480     {
1481       GNUNET_break (0);         /* uncompression error */
1482       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1483       return;
1484     }
1485     if (config_size != dest_size)
1486     {
1487       GNUNET_break (0);         /* Uncompressed config size mismatch */
1488       GNUNET_free (config);
1489       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1490       return;
1491     }
1492     cfg = GNUNET_CONFIGURATION_create ();
1493     if (GNUNET_OK !=
1494         GNUNET_CONFIGURATION_deserialize (cfg, config, config_size, GNUNET_NO))
1495     {
1496       GNUNET_break (0);         /* Configuration parsing error */
1497       GNUNET_free (config);
1498       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1499       return;
1500     }
1501     GNUNET_free (config);
1502     GNUNET_CONFIGURATION_set_value_number (cfg, "TESTBED", "PEERID",
1503                                            (unsigned long long) peer_id);
1504     peer = GNUNET_malloc (sizeof (struct Peer));
1505     peer->is_remote = GNUNET_NO;
1506     peer->details.local.cfg = cfg;
1507     peer->id = peer_id;
1508     LOG_DEBUG ("Creating peer with id: %u\n", (unsigned int) peer->id);
1509     peer->details.local.peer =
1510         GNUNET_TESTING_peer_configure (GST_context->system,
1511                                        peer->details.local.cfg, peer->id,
1512                                        NULL /* Peer id */ ,
1513                                        &emsg);
1514     if (NULL == peer->details.local.peer)
1515     {
1516       LOG (GNUNET_ERROR_TYPE_WARNING, "Configuring peer failed: %s\n", emsg);
1517       GNUNET_free (emsg);
1518       GNUNET_free (peer);
1519       GNUNET_break (0);
1520       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1521       return;
1522     }
1523     peer->details.local.is_running = GNUNET_NO;
1524     peer_list_add (peer);
1525     reply =
1526         GNUNET_malloc (sizeof
1527                        (struct GNUNET_TESTBED_PeerCreateSuccessEventMessage));
1528     reply->header.size =
1529         htons (sizeof (struct GNUNET_TESTBED_PeerCreateSuccessEventMessage));
1530     reply->header.type =
1531         htons (GNUNET_MESSAGE_TYPE_TESTBED_CREATE_PEER_SUCCESS);
1532     reply->peer_id = msg->peer_id;
1533     reply->operation_id = msg->operation_id;
1534     GST_queue_message (client, &reply->header);
1535     GNUNET_SERVER_receive_done (client, GNUNET_OK);
1536     return;
1537   }
1538
1539   /* Forward peer create request */
1540   route = GST_find_dest_route (host_id);
1541   if (NULL == route)
1542   {
1543     GNUNET_break (0);
1544     GNUNET_SERVER_receive_done (client, GNUNET_OK);
1545     return;
1546   }
1547
1548   peer = GNUNET_malloc (sizeof (struct Peer));
1549   peer->is_remote = GNUNET_YES;
1550   peer->id = peer_id;
1551   peer->details.remote.slave = GST_slave_list[route->dest];
1552   peer->details.remote.remote_host_id = host_id;
1553   fo_ctxt = GNUNET_malloc (sizeof (struct ForwardedOperationContext));
1554   GNUNET_SERVER_client_keep (client);
1555   fo_ctxt->client = client;
1556   fo_ctxt->operation_id = GNUNET_ntohll (msg->operation_id);
1557   fo_ctxt->cls = peer;          //GST_slave_list[route->dest]->controller;
1558   fo_ctxt->type = OP_PEER_CREATE;
1559   fo_ctxt->opc =
1560       GNUNET_TESTBED_forward_operation_msg_ (GST_slave_list
1561                                              [route->dest]->controller,
1562                                              fo_ctxt->operation_id,
1563                                              &msg->header,
1564                                              peer_create_success_cb, fo_ctxt);
1565   fo_ctxt->timeout_task =
1566       GNUNET_SCHEDULER_add_delayed (GST_timeout, &peer_create_forward_timeout,
1567                                     fo_ctxt);
1568   GNUNET_CONTAINER_DLL_insert_tail (fopcq_head, fopcq_tail, fo_ctxt);
1569   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1570 }
1571
1572
1573 /**
1574  * Message handler for GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER messages
1575  *
1576  * @param cls NULL
1577  * @param client identification of the client
1578  * @param message the actual message
1579  */
1580 static void
1581 handle_peer_destroy (void *cls, struct GNUNET_SERVER_Client *client,
1582                      const struct GNUNET_MessageHeader *message)
1583 {
1584   const struct GNUNET_TESTBED_PeerDestroyMessage *msg;
1585   struct ForwardedOperationContext *fopc;
1586   struct Peer *peer;
1587   uint32_t peer_id;
1588
1589   msg = (const struct GNUNET_TESTBED_PeerDestroyMessage *) message;
1590   peer_id = ntohl (msg->peer_id);
1591   LOG_DEBUG ("Received peer destory on peer: %u and operation id: %ul\n",
1592              peer_id, GNUNET_ntohll (msg->operation_id));
1593   if ((GST_peer_list_size <= peer_id) || (NULL == GST_peer_list[peer_id]))
1594   {
1595     LOG (GNUNET_ERROR_TYPE_ERROR,
1596          "Asked to destroy a non existent peer with id: %u\n", peer_id);
1597     GST_send_operation_fail_msg (client, GNUNET_ntohll (msg->operation_id),
1598                                  "Peer doesn't exist");
1599     GNUNET_SERVER_receive_done (client, GNUNET_OK);
1600     return;
1601   }
1602   peer = GST_peer_list[peer_id];
1603   if (GNUNET_YES == peer->is_remote)
1604   {
1605     /* Forward the destory message to sub controller */
1606     fopc = GNUNET_malloc (sizeof (struct ForwardedOperationContext));
1607     GNUNET_SERVER_client_keep (client);
1608     fopc->client = client;
1609     fopc->cls = peer;
1610     fopc->type = OP_PEER_DESTROY;
1611     fopc->operation_id = GNUNET_ntohll (msg->operation_id);
1612     fopc->opc =
1613         GNUNET_TESTBED_forward_operation_msg_ (peer->details.remote.
1614                                                slave->controller,
1615                                                fopc->operation_id, &msg->header,
1616                                                &peer_destroy_success_cb, fopc);
1617     fopc->timeout_task =
1618         GNUNET_SCHEDULER_add_delayed (GST_timeout, &GST_forwarded_operation_timeout,
1619                                       fopc);
1620     GNUNET_CONTAINER_DLL_insert_tail (fopcq_head, fopcq_tail, fopc);
1621     GNUNET_SERVER_receive_done (client, GNUNET_OK);
1622     return;
1623   }
1624   peer->destroy_flag = GNUNET_YES;
1625   if (0 == peer->reference_cnt)
1626     GST_destroy_peer (peer);
1627   else
1628     LOG (GNUNET_ERROR_TYPE_DEBUG,
1629          "Delaying peer destroy as peer is currently in use\n");
1630   send_operation_success_msg (client, GNUNET_ntohll (msg->operation_id));
1631   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1632 }
1633
1634
1635 /**
1636  * Message handler for GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER messages
1637  *
1638  * @param cls NULL
1639  * @param client identification of the client
1640  * @param message the actual message
1641  */
1642 static void
1643 handle_peer_start (void *cls, struct GNUNET_SERVER_Client *client,
1644                    const struct GNUNET_MessageHeader *message)
1645 {
1646   const struct GNUNET_TESTBED_PeerStartMessage *msg;
1647   struct GNUNET_TESTBED_PeerEventMessage *reply;
1648   struct ForwardedOperationContext *fopc;
1649   struct Peer *peer;
1650   uint32_t peer_id;
1651
1652   msg = (const struct GNUNET_TESTBED_PeerStartMessage *) message;
1653   peer_id = ntohl (msg->peer_id);
1654   if ((peer_id >= GST_peer_list_size) || (NULL == GST_peer_list[peer_id]))
1655   {
1656     GNUNET_break (0);
1657     LOG (GNUNET_ERROR_TYPE_ERROR,
1658          "Asked to start a non existent peer with id: %u\n", peer_id);
1659     GNUNET_SERVER_receive_done (client, GNUNET_OK);
1660     return;
1661   }
1662   peer = GST_peer_list[peer_id];
1663   if (GNUNET_YES == peer->is_remote)
1664   {
1665     fopc = GNUNET_malloc (sizeof (struct ForwardedOperationContext));
1666     GNUNET_SERVER_client_keep (client);
1667     fopc->client = client;
1668     fopc->operation_id = GNUNET_ntohll (msg->operation_id);
1669     fopc->type = OP_PEER_START;
1670     fopc->opc =
1671         GNUNET_TESTBED_forward_operation_msg_ (peer->details.remote.
1672                                                slave->controller,
1673                                                fopc->operation_id, &msg->header,
1674                                                &GST_forwarded_operation_reply_relay,
1675                                                fopc);
1676     fopc->timeout_task =
1677         GNUNET_SCHEDULER_add_delayed (GST_timeout, &GST_forwarded_operation_timeout,
1678                                       fopc);
1679     GNUNET_CONTAINER_DLL_insert_tail (fopcq_head, fopcq_tail, fopc);
1680     GNUNET_SERVER_receive_done (client, GNUNET_OK);
1681     return;
1682   }
1683   if (GNUNET_OK != GNUNET_TESTING_peer_start (peer->details.local.peer))
1684   {
1685     GST_send_operation_fail_msg (client, GNUNET_ntohll (msg->operation_id),
1686                                  "Failed to start");
1687     GNUNET_SERVER_receive_done (client, GNUNET_OK);
1688     return;
1689   }
1690   peer->details.local.is_running = GNUNET_YES;
1691   reply = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_PeerEventMessage));
1692   reply->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_PEER_EVENT);
1693   reply->header.size = htons (sizeof (struct GNUNET_TESTBED_PeerEventMessage));
1694   reply->event_type = htonl (GNUNET_TESTBED_ET_PEER_START);
1695   reply->host_id = htonl (GST_context->host_id);
1696   reply->peer_id = msg->peer_id;
1697   reply->operation_id = msg->operation_id;
1698   GST_queue_message (client, &reply->header);
1699   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1700 }
1701
1702
1703 /**
1704  * Message handler for GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER messages
1705  *
1706  * @param cls NULL
1707  * @param client identification of the client
1708  * @param message the actual message
1709  */
1710 static void
1711 handle_peer_stop (void *cls, struct GNUNET_SERVER_Client *client,
1712                   const struct GNUNET_MessageHeader *message)
1713 {
1714   const struct GNUNET_TESTBED_PeerStopMessage *msg;
1715   struct GNUNET_TESTBED_PeerEventMessage *reply;
1716   struct ForwardedOperationContext *fopc;
1717   struct Peer *peer;
1718   uint32_t peer_id;
1719
1720   msg = (const struct GNUNET_TESTBED_PeerStopMessage *) message;
1721   peer_id = ntohl (msg->peer_id);
1722   LOG (GNUNET_ERROR_TYPE_DEBUG, "Received PEER_STOP for peer %u\n", peer_id);
1723   if ((peer_id >= GST_peer_list_size) || (NULL == GST_peer_list[peer_id]))
1724   {
1725     GST_send_operation_fail_msg (client, GNUNET_ntohll (msg->operation_id),
1726                                  "Peer not found");
1727     GNUNET_SERVER_receive_done (client, GNUNET_OK);
1728     return;
1729   }
1730   peer = GST_peer_list[peer_id];
1731   if (GNUNET_YES == peer->is_remote)
1732   {
1733     LOG (GNUNET_ERROR_TYPE_DEBUG, "Forwarding PEER_STOP for peer %u\n",
1734          peer_id);
1735     fopc = GNUNET_malloc (sizeof (struct ForwardedOperationContext));
1736     GNUNET_SERVER_client_keep (client);
1737     fopc->client = client;
1738     fopc->operation_id = GNUNET_ntohll (msg->operation_id);
1739     fopc->type = OP_PEER_STOP;
1740     fopc->opc =
1741         GNUNET_TESTBED_forward_operation_msg_ (peer->details.remote.
1742                                                slave->controller,
1743                                                fopc->operation_id, &msg->header,
1744                                                &GST_forwarded_operation_reply_relay,
1745                                                fopc);
1746     fopc->timeout_task =
1747         GNUNET_SCHEDULER_add_delayed (GST_timeout, &GST_forwarded_operation_timeout,
1748                                       fopc);
1749     GNUNET_CONTAINER_DLL_insert_tail (fopcq_head, fopcq_tail, fopc);
1750     GNUNET_SERVER_receive_done (client, GNUNET_OK);
1751     return;
1752   }
1753   if (GNUNET_OK != GNUNET_TESTING_peer_stop (peer->details.local.peer))
1754   {
1755     LOG (GNUNET_ERROR_TYPE_WARNING, "Stopping peer %u failed\n", peer_id);
1756     GST_send_operation_fail_msg (client, GNUNET_ntohll (msg->operation_id),
1757                                  "Peer not running");
1758     GNUNET_SERVER_receive_done (client, GNUNET_OK);
1759     return;
1760   }
1761   LOG (GNUNET_ERROR_TYPE_DEBUG, "Peer %u successfully stopped\n", peer_id);
1762   peer->details.local.is_running = GNUNET_NO;
1763   reply = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_PeerEventMessage));
1764   reply->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_PEER_EVENT);
1765   reply->header.size = htons (sizeof (struct GNUNET_TESTBED_PeerEventMessage));
1766   reply->event_type = htonl (GNUNET_TESTBED_ET_PEER_STOP);
1767   reply->host_id = htonl (GST_context->host_id);
1768   reply->peer_id = msg->peer_id;
1769   reply->operation_id = msg->operation_id;
1770   GST_queue_message (client, &reply->header);
1771   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1772 }
1773
1774
1775 /**
1776  * Handler for GNUNET_MESSAGE_TYPE_TESTBED_GETPEERCONFIG messages
1777  *
1778  * @param cls NULL
1779  * @param client identification of the client
1780  * @param message the actual message
1781  */
1782 static void
1783 handle_peer_get_config (void *cls, struct GNUNET_SERVER_Client *client,
1784                         const struct GNUNET_MessageHeader *message)
1785 {
1786   const struct GNUNET_TESTBED_PeerGetConfigurationMessage *msg;
1787   struct GNUNET_TESTBED_PeerConfigurationInformationMessage *reply;
1788   struct Peer *peer;
1789   char *config;
1790   char *xconfig;
1791   size_t c_size;
1792   size_t xc_size;
1793   uint32_t peer_id;
1794   uint16_t msize;
1795
1796   msg = (const struct GNUNET_TESTBED_PeerGetConfigurationMessage *) message;
1797   peer_id = ntohl (msg->peer_id);
1798   if ((peer_id >= GST_peer_list_size) || (NULL == GST_peer_list[peer_id]))
1799   {
1800     GST_send_operation_fail_msg (client, GNUNET_ntohll (msg->operation_id),
1801                                  "Peer not found");
1802     GNUNET_SERVER_receive_done (client, GNUNET_OK);
1803     return;
1804   }
1805   peer = GST_peer_list[peer_id];
1806   if (GNUNET_YES == peer->is_remote)
1807   {
1808     struct ForwardedOperationContext *fopc;
1809
1810     LOG_DEBUG ("Forwarding PEER_GET_CONFIG for peer: %u\n", peer_id);
1811     fopc = GNUNET_malloc (sizeof (struct ForwardedOperationContext));
1812     GNUNET_SERVER_client_keep (client);
1813     fopc->client = client;
1814     fopc->operation_id = GNUNET_ntohll (msg->operation_id);
1815     fopc->type = OP_PEER_INFO;
1816     fopc->opc =
1817         GNUNET_TESTBED_forward_operation_msg_ (peer->details.remote.
1818                                                slave->controller,
1819                                                fopc->operation_id, &msg->header,
1820                                                &GST_forwarded_operation_reply_relay,
1821                                                fopc);
1822     fopc->timeout_task =
1823         GNUNET_SCHEDULER_add_delayed (GST_timeout, &GST_forwarded_operation_timeout,
1824                                       fopc);
1825     GNUNET_CONTAINER_DLL_insert_tail (fopcq_head, fopcq_tail, fopc);
1826     GNUNET_SERVER_receive_done (client, GNUNET_OK);
1827     return;
1828   }
1829   LOG_DEBUG ("Received PEER_GET_CONFIG for peer: %u\n", peer_id);
1830   config =
1831       GNUNET_CONFIGURATION_serialize (GST_peer_list[peer_id]->details.local.cfg,
1832                                       &c_size);
1833   xc_size = GNUNET_TESTBED_compress_config_ (config, c_size, &xconfig);
1834   GNUNET_free (config);
1835   msize =
1836       xc_size +
1837       sizeof (struct GNUNET_TESTBED_PeerConfigurationInformationMessage);
1838   reply = GNUNET_realloc (xconfig, msize);
1839   (void) memmove (&reply[1], reply, xc_size);
1840   reply->header.size = htons (msize);
1841   reply->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_PEER_CONFIGURATION);
1842   reply->peer_id = msg->peer_id;
1843   reply->operation_id = msg->operation_id;
1844   GNUNET_TESTING_peer_get_identity (GST_peer_list[peer_id]->details.local.peer,
1845                                     &reply->peer_identity);
1846   reply->config_size = htons ((uint16_t) c_size);
1847   GST_queue_message (client, &reply->header);
1848   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1849 }
1850
1851
1852 /**
1853  * Handler for GNUNET_MESSAGE_TYPE_TESTBED_GETSLAVECONFIG messages
1854  *
1855  * @param cls NULL
1856  * @param client identification of the client
1857  * @param message the actual message
1858  */
1859 static void
1860 handle_slave_get_config (void *cls, struct GNUNET_SERVER_Client *client,
1861                          const struct GNUNET_MessageHeader *message)
1862 {
1863   struct GNUNET_TESTBED_SlaveGetConfigurationMessage *msg;
1864   struct Slave *slave;
1865   struct GNUNET_TESTBED_SlaveConfiguration *reply;
1866   char *config;
1867   char *xconfig;
1868   size_t config_size;
1869   size_t xconfig_size;
1870   size_t reply_size;
1871   uint64_t op_id;
1872   uint32_t slave_id;
1873
1874   msg = (struct GNUNET_TESTBED_SlaveGetConfigurationMessage *) message;
1875   slave_id = ntohl (msg->slave_id);
1876   op_id = GNUNET_ntohll (msg->operation_id);
1877   if ((GST_slave_list_size <= slave_id) || (NULL == GST_slave_list[slave_id]))
1878   {
1879     /* FIXME: Add forwardings for this type of message here.. */
1880     GST_send_operation_fail_msg (client, op_id, "Slave not found");
1881     GNUNET_SERVER_receive_done (client, GNUNET_OK);
1882     return;
1883   }
1884   slave = GST_slave_list[slave_id];
1885   if (NULL == slave->cfg)
1886   {
1887     GST_send_operation_fail_msg (client, op_id,
1888                                  "Configuration not found (slave not started by me)");
1889     GNUNET_SERVER_receive_done (client, GNUNET_OK);
1890     return;
1891   }
1892   config = GNUNET_CONFIGURATION_serialize (slave->cfg, &config_size);
1893   xconfig_size =
1894       GNUNET_TESTBED_compress_config_ (config, config_size, &xconfig);
1895   GNUNET_free (config);
1896   reply_size = xconfig_size + sizeof (struct GNUNET_TESTBED_SlaveConfiguration);
1897   GNUNET_break (reply_size <= UINT16_MAX);
1898   GNUNET_break (config_size <= UINT16_MAX);
1899   reply = GNUNET_realloc (xconfig, reply_size);
1900   (void) memmove (&reply[1], reply, xconfig_size);
1901   reply->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_SLAVE_CONFIGURATION);
1902   reply->header.size = htons ((uint16_t) reply_size);
1903   reply->slave_id = msg->slave_id;
1904   reply->operation_id = msg->operation_id;
1905   reply->config_size = htons ((uint16_t) config_size);
1906   GST_queue_message (client, &reply->header);
1907   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1908 }
1909
1910
1911 /**
1912  * Iterator over hash map entries.
1913  *
1914  * @param cls closure
1915  * @param key current key code
1916  * @param value value in the hash map
1917  * @return GNUNET_YES if we should continue to
1918  *         iterate,
1919  *         GNUNET_NO if not.
1920  */
1921 static int
1922 ss_map_free_iterator (void *cls, const struct GNUNET_HashCode *key, void *value)
1923 {
1924   struct SharedService *ss = value;
1925
1926   GNUNET_assert (GNUNET_YES ==
1927                  GNUNET_CONTAINER_multihashmap_remove (ss_map, key, value));
1928   GNUNET_free (ss->name);
1929   GNUNET_free (ss);
1930   return GNUNET_YES;
1931 }
1932
1933
1934 /**
1935  * Iterator for freeing hash map entries in a slave's reghost_map
1936  *
1937  * @param cls handle to the slave
1938  * @param key current key code
1939  * @param value value in the hash map
1940  * @return GNUNET_YES if we should continue to
1941  *         iterate,
1942  *         GNUNET_NO if not.
1943  */
1944 static int
1945 reghost_free_iterator (void *cls, const struct GNUNET_HashCode *key,
1946                        void *value)
1947 {
1948   struct Slave *slave = cls;
1949   struct RegisteredHostContext *rhc = value;
1950   struct ForwardedOverlayConnectContext *focc;
1951
1952   GNUNET_assert (GNUNET_YES ==
1953                  GNUNET_CONTAINER_multihashmap_remove (slave->reghost_map, key,
1954                                                        value));
1955   while (NULL != (focc = rhc->focc_dll_head))
1956   {
1957     GNUNET_CONTAINER_DLL_remove (rhc->focc_dll_head, rhc->focc_dll_tail, focc);
1958     GST_cleanup_focc (focc);
1959   }
1960   if (NULL != rhc->sub_op)
1961     GNUNET_TESTBED_operation_done (rhc->sub_op);
1962   if (NULL != rhc->client)
1963     GNUNET_SERVER_client_drop (rhc->client);
1964   GNUNET_free (value);
1965   return GNUNET_YES;
1966 }
1967
1968
1969 /**
1970  * Task to clean up and shutdown nicely
1971  *
1972  * @param cls NULL
1973  * @param tc the TaskContext from scheduler
1974  */
1975 static void
1976 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1977 {
1978   struct LCFContextQueue *lcfq;
1979   struct ForwardedOperationContext *fopc;
1980   struct MessageQueue *mq_entry;
1981   uint32_t id;
1982
1983   shutdown_task_id = GNUNET_SCHEDULER_NO_TASK;
1984   LOG (GNUNET_ERROR_TYPE_DEBUG, "Shutting down testbed service\n");
1985   (void) GNUNET_CONTAINER_multihashmap_iterate (ss_map, &ss_map_free_iterator,
1986                                                 NULL);
1987   GNUNET_CONTAINER_multihashmap_destroy (ss_map);
1988   /* cleanup any remaining forwarded operations */
1989   while (NULL != (fopc = fopcq_head))
1990   {
1991     GNUNET_CONTAINER_DLL_remove (fopcq_head, fopcq_tail, fopc);
1992     GNUNET_TESTBED_forward_operation_msg_cancel_ (fopc->opc);
1993     if (GNUNET_SCHEDULER_NO_TASK != fopc->timeout_task)
1994       GNUNET_SCHEDULER_cancel (fopc->timeout_task);
1995     GNUNET_SERVER_client_drop (fopc->client);
1996     switch (fopc->type)
1997     {
1998     case OP_PEER_CREATE:
1999       GNUNET_free (fopc->cls);
2000       break;
2001     case OP_PEER_START:
2002     case OP_PEER_STOP:
2003     case OP_PEER_DESTROY:
2004     case OP_PEER_INFO:
2005     case OP_OVERLAY_CONNECT:
2006     case OP_LINK_CONTROLLERS:
2007     case OP_GET_SLAVE_CONFIG:
2008       break;
2009     case OP_FORWARDED:
2010       GNUNET_assert (0);
2011     };
2012     GNUNET_free (fopc);
2013   }
2014   if (NULL != lcfq_head)
2015   {
2016     if (GNUNET_SCHEDULER_NO_TASK != lcf_proc_task_id)
2017     {
2018       GNUNET_SCHEDULER_cancel (lcf_proc_task_id);
2019       lcf_proc_task_id = GNUNET_SCHEDULER_NO_TASK;
2020     }
2021   }
2022   GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == lcf_proc_task_id);
2023   for (lcfq = lcfq_head; NULL != lcfq; lcfq = lcfq_head)
2024   {
2025     GNUNET_free (lcfq->lcf->msg);
2026     GNUNET_free (lcfq->lcf);
2027     GNUNET_CONTAINER_DLL_remove (lcfq_head, lcfq_tail, lcfq);
2028     GNUNET_free (lcfq);
2029   }
2030   GST_free_occq ();
2031   GST_free_roccq ();
2032   /* Clear peer list */
2033   for (id = 0; id < GST_peer_list_size; id++)
2034     if (NULL != GST_peer_list[id])
2035     {
2036       /* If destroy flag is set it means that this peer should have been
2037        * destroyed by a context which we destroy before */
2038       GNUNET_break (GNUNET_NO == GST_peer_list[id]->destroy_flag);
2039       /* counter should be zero as we free all contexts before */
2040       GNUNET_break (0 == GST_peer_list[id]->reference_cnt);
2041       if ((GNUNET_NO == GST_peer_list[id]->is_remote) &&
2042           (GNUNET_YES == GST_peer_list[id]->details.local.is_running))
2043         GNUNET_TESTING_peer_kill (GST_peer_list[id]->details.local.peer);
2044     }
2045   for (id = 0; id < GST_peer_list_size; id++)
2046     if (NULL != GST_peer_list[id])
2047     {
2048       if (GNUNET_NO == GST_peer_list[id]->is_remote)
2049       {
2050         if (GNUNET_YES == GST_peer_list[id]->details.local.is_running)
2051           GNUNET_TESTING_peer_wait (GST_peer_list[id]->details.local.peer);
2052         GNUNET_TESTING_peer_destroy (GST_peer_list[id]->details.local.peer);
2053         GNUNET_CONFIGURATION_destroy (GST_peer_list[id]->details.local.cfg);
2054       }
2055       GNUNET_free (GST_peer_list[id]);
2056     }
2057   GNUNET_free_non_null (GST_peer_list);
2058   /* Clear host list */
2059   for (id = 0; id < GST_host_list_size; id++)
2060     if (NULL != GST_host_list[id])
2061       GNUNET_TESTBED_host_destroy (GST_host_list[id]);
2062   GNUNET_free_non_null (GST_host_list);
2063   /* Clear route list */
2064   for (id = 0; id < route_list_size; id++)
2065     if (NULL != route_list[id])
2066       GNUNET_free (route_list[id]);
2067   GNUNET_free_non_null (route_list);
2068   /* Clear GST_slave_list */
2069   for (id = 0; id < GST_slave_list_size; id++)
2070     if (NULL != GST_slave_list[id])
2071     {
2072       struct HostRegistration *hr_entry;
2073
2074       while (NULL != (hr_entry = GST_slave_list[id]->hr_dll_head))
2075       {
2076         GNUNET_CONTAINER_DLL_remove (GST_slave_list[id]->hr_dll_head,
2077                                      GST_slave_list[id]->hr_dll_tail, hr_entry);
2078         GNUNET_free (hr_entry);
2079       }
2080       if (NULL != GST_slave_list[id]->rhandle)
2081         GNUNET_TESTBED_cancel_registration (GST_slave_list[id]->rhandle);
2082       (void)
2083           GNUNET_CONTAINER_multihashmap_iterate (GST_slave_list
2084                                                  [id]->reghost_map,
2085                                                  reghost_free_iterator,
2086                                                  GST_slave_list[id]);
2087       GNUNET_CONTAINER_multihashmap_destroy (GST_slave_list[id]->reghost_map);
2088       if (NULL != GST_slave_list[id]->cfg)
2089         GNUNET_CONFIGURATION_destroy (GST_slave_list[id]->cfg);
2090       if (NULL != GST_slave_list[id]->controller)
2091         GNUNET_TESTBED_controller_disconnect (GST_slave_list[id]->controller);
2092       if (NULL != GST_slave_list[id]->controller_proc)
2093         GNUNET_TESTBED_controller_stop (GST_slave_list[id]->controller_proc);
2094       GNUNET_free (GST_slave_list[id]);
2095     }
2096   GNUNET_free_non_null (GST_slave_list);
2097   if (NULL != GST_context)
2098   {
2099     GNUNET_free_non_null (GST_context->master_ip);
2100     if (NULL != GST_context->system)
2101       GNUNET_TESTING_system_destroy (GST_context->system, GNUNET_YES);
2102     GNUNET_SERVER_client_drop (GST_context->client);
2103     GNUNET_free (GST_context);
2104     GST_context = NULL;
2105   }
2106   if (NULL != transmit_handle)
2107     GNUNET_SERVER_notify_transmit_ready_cancel (transmit_handle);
2108   while (NULL != (mq_entry = mq_head))
2109   {
2110     GNUNET_free (mq_entry->msg);
2111     GNUNET_SERVER_client_drop (mq_entry->client);
2112     GNUNET_CONTAINER_DLL_remove (mq_head, mq_tail, mq_entry);
2113     GNUNET_free (mq_entry);
2114   }
2115   GNUNET_free_non_null (hostname);
2116   GNUNET_CONFIGURATION_destroy (our_config);
2117   /* Free hello cache */
2118   GST_cache_clear ();
2119   GNUNET_TESTBED_operation_queue_destroy_ (GST_opq_openfds);
2120   GST_opq_openfds = NULL;
2121 }
2122
2123
2124 /**
2125  * Callback for client disconnect
2126  *
2127  * @param cls NULL
2128  * @param client the client which has disconnected
2129  */
2130 static void
2131 client_disconnect_cb (void *cls, struct GNUNET_SERVER_Client *client)
2132 {
2133   if (NULL == GST_context)
2134     return;
2135   if (client == GST_context->client)
2136   {
2137     LOG (GNUNET_ERROR_TYPE_DEBUG, "Master client disconnected\n");
2138     /* should not be needed as we're terminated by failure to read
2139      * from stdin, but if stdin fails for some reason, this shouldn't
2140      * hurt for now --- might need to revise this later if we ever
2141      * decide that master connections might be temporarily down
2142      * for some reason */
2143     //GNUNET_SCHEDULER_shutdown ();
2144   }
2145 }
2146
2147
2148 /**
2149  * Testbed setup
2150  *
2151  * @param cls closure
2152  * @param server the initialized server
2153  * @param cfg configuration to use
2154  */
2155 static void
2156 testbed_run (void *cls, struct GNUNET_SERVER_Handle *server,
2157              const struct GNUNET_CONFIGURATION_Handle *cfg)
2158 {
2159   static const struct GNUNET_SERVER_MessageHandler message_handlers[] = {
2160     {&handle_init, NULL, GNUNET_MESSAGE_TYPE_TESTBED_INIT, 0},
2161     {&handle_add_host, NULL, GNUNET_MESSAGE_TYPE_TESTBED_ADD_HOST, 0},
2162     {&handle_configure_shared_service, NULL,
2163      GNUNET_MESSAGE_TYPE_TESTBED_SHARE_SERVICE, 0},
2164     {&handle_link_controllers, NULL,
2165      GNUNET_MESSAGE_TYPE_TESTBED_LINK_CONTROLLERS, 0},
2166     {&handle_peer_create, NULL, GNUNET_MESSAGE_TYPE_TESTBED_CREATE_PEER, 0},
2167     {&handle_peer_destroy, NULL, GNUNET_MESSAGE_TYPE_TESTBED_DESTROY_PEER,
2168      sizeof (struct GNUNET_TESTBED_PeerDestroyMessage)},
2169     {&handle_peer_start, NULL, GNUNET_MESSAGE_TYPE_TESTBED_START_PEER,
2170      sizeof (struct GNUNET_TESTBED_PeerStartMessage)},
2171     {&handle_peer_stop, NULL, GNUNET_MESSAGE_TYPE_TESTBED_STOP_PEER,
2172      sizeof (struct GNUNET_TESTBED_PeerStopMessage)},
2173     {&handle_peer_get_config, NULL,
2174      GNUNET_MESSAGE_TYPE_TESTBED_GET_PEER_CONFIGURATION,
2175      sizeof (struct GNUNET_TESTBED_PeerGetConfigurationMessage)},
2176     {&GST_handle_overlay_connect, NULL,
2177      GNUNET_MESSAGE_TYPE_TESTBED_OVERLAY_CONNECT,
2178      sizeof (struct GNUNET_TESTBED_OverlayConnectMessage)},
2179     {&GST_handle_remote_overlay_connect, NULL,
2180      GNUNET_MESSAGE_TYPE_TESTBED_REMOTE_OVERLAY_CONNECT, 0},
2181     {handle_slave_get_config, NULL,
2182      GNUNET_MESSAGE_TYPE_TESTBED_GET_SLAVE_CONFIGURATION,
2183      sizeof (struct GNUNET_TESTBED_SlaveGetConfigurationMessage)},
2184     {NULL}
2185   };
2186   char *logfile;
2187   unsigned long long num;
2188
2189   if (GNUNET_OK ==
2190       GNUNET_CONFIGURATION_get_value_filename (cfg, "TESTBED", "LOG_FILE",
2191                                                &logfile))
2192   {
2193     GNUNET_break (GNUNET_OK == GNUNET_log_setup ("testbed", "DEBUG", logfile));
2194     GNUNET_free (logfile);
2195   }
2196   GNUNET_assert (GNUNET_OK ==
2197                  GNUNET_CONFIGURATION_get_value_number (cfg, "TESTBED",
2198                                                         "CACHE_SIZE", &num));
2199   GST_cache_init ((unsigned int) num);
2200   GNUNET_assert (GNUNET_OK ==
2201                  GNUNET_CONFIGURATION_get_value_number (cfg, "TESTBED",
2202                                                         "MAX_OPEN_FDS", &num));
2203   GST_opq_openfds = GNUNET_TESTBED_operation_queue_create_ ((unsigned int) num);
2204   GNUNET_assert (GNUNET_OK ==
2205                  GNUNET_CONFIGURATION_get_value_time (cfg, "TESTBED",
2206                                                       "OPERATION_TIMEOUT",
2207                                                       (struct
2208                                                        GNUNET_TIME_Relative *)
2209                                                       &GST_timeout));
2210   GNUNET_assert (GNUNET_OK ==
2211                  GNUNET_CONFIGURATION_get_value_string (cfg, "testbed",
2212                                                         "HOSTNAME", &hostname));  
2213   our_config = GNUNET_CONFIGURATION_dup (cfg);
2214   GNUNET_SERVER_add_handlers (server, message_handlers);
2215   GNUNET_SERVER_disconnect_notify (server, &client_disconnect_cb, NULL);
2216   ss_map = GNUNET_CONTAINER_multihashmap_create (5, GNUNET_NO);
2217   shutdown_task_id =
2218       GNUNET_SCHEDULER_add_delayed_with_priority (GNUNET_TIME_UNIT_FOREVER_REL,
2219                                                   GNUNET_SCHEDULER_PRIORITY_IDLE,
2220                                                   &shutdown_task, NULL);
2221   LOG_DEBUG ("Testbed startup complete\n");
2222   event_mask = 1LL << GNUNET_TESTBED_ET_OPERATION_FINISHED;
2223 }
2224
2225
2226 /**
2227  * The starting point of execution
2228  */
2229 int
2230 main (int argc, char *const *argv)
2231 {
2232   //sleep (15);                 /* Debugging */
2233   return (GNUNET_OK ==
2234           GNUNET_SERVICE_run (argc, argv, "testbed", GNUNET_SERVICE_OPTION_NONE,
2235                               &testbed_run, NULL)) ? 0 : 1;
2236 }
2237
2238 /* end of gnunet-service-testbed.c */