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