improved overlay connect handling
[oweals/gnunet.git] / src / testbed / testbed_api_peers.c
1 /*
2       This file is part of GNUnet
3       (C) 2008--2012 Christian Grothoff (and other contributing authors)
4
5       GNUnet is free software; you can redistribute it and/or modify
6       it under the terms of the GNU General Public License as published
7       by the Free Software Foundation; either version 3, or (at your
8       option) any later version.
9
10       GNUnet is distributed in the hope that it will be useful, but
11       WITHOUT ANY WARRANTY; without even the implied warranty of
12       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13       General Public License for more details.
14
15       You should have received a copy of the GNU General Public License
16       along with GNUnet; see the file COPYING.  If not, write to the
17       Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18       Boston, MA 02111-1307, USA.
19  */
20
21 /**
22  * @file testbed/testbed_api_peers.c
23  * @brief management of the knowledge about peers in this library
24  *        (we know the peer ID, its host, pending operations, etc.)
25  * @author Christian Grothoff
26  */
27 #include "platform.h"
28 #include "testbed_api_peers.h"
29 #include "testbed_api.h"
30 #include "testbed.h"
31 #include "testbed_api_hosts.h"
32 #include "testbed_api_operations.h"
33
34 /**
35  * Function to call to start a peer_create type operation once all
36  * queues the operation is part of declare that the
37  * operation can be activated.
38  *
39  * @param cls the closure from GNUNET_TESTBED_operation_create_()
40  */
41 static void 
42 opstart_peer_create (void *cls)
43 {
44   struct OperationContext *opc = cls;
45   struct PeerCreateData *data;
46   struct GNUNET_TESTBED_PeerCreateMessage *msg;
47   char *config;
48   char *xconfig;
49   size_t c_size;
50   size_t xc_size;
51   uint16_t msize;
52
53   GNUNET_assert (OP_PEER_CREATE == opc->type);  
54   data = opc->data;
55   GNUNET_assert (NULL != data);
56   GNUNET_assert (NULL != data->peer);
57   opc->state = OPC_STATE_STARTED;
58   config = GNUNET_CONFIGURATION_serialize (data->cfg, &c_size);
59   xc_size = GNUNET_TESTBED_compress_config_ (config, c_size, &xconfig);
60   GNUNET_free (config);
61   msize = xc_size + sizeof (struct GNUNET_TESTBED_PeerCreateMessage);
62   msg = GNUNET_realloc (xconfig, msize);
63   memmove (&msg[1], msg, xc_size);
64   msg->header.size = htons (msize);
65   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_CREATEPEER);
66   msg->operation_id = GNUNET_htonll (opc->id);
67   msg->host_id = htonl (GNUNET_TESTBED_host_get_id_ (data->peer->host));
68   msg->peer_id = htonl (data->peer->unique_id);
69   msg->config_size = htonl (c_size);
70   GNUNET_CONTAINER_DLL_insert_tail (opc->c->ocq_head,
71                                     opc->c->ocq_tail, opc);
72   GNUNET_TESTBED_queue_message_ (opc->c,
73                                  (struct GNUNET_MessageHeader *) msg);
74 };
75
76
77 /**
78  * Callback which will be called when peer_create type operation is released
79  *
80  * @param cls the closure from GNUNET_TESTBED_operation_create_()
81  */
82 static void 
83 oprelease_peer_create (void *cls)
84 {
85   struct OperationContext *opc = cls;  
86
87   if (OPC_STATE_FINISHED != opc->state)
88   {
89     GNUNET_free (((struct PeerCreateData *) opc->data)->peer);
90     GNUNET_free (opc->data);
91     GNUNET_CONTAINER_DLL_remove (opc->c->ocq_head, opc->c->ocq_tail, opc);
92   }
93   GNUNET_free (opc);
94 }
95
96
97 /**
98  * Function called when a peer destroy operation is ready
99  *
100  * @param cls the closure from GNUNET_TESTBED_operation_create_()
101  */
102 static void 
103 opstart_peer_destroy (void *cls)
104 {
105   struct OperationContext *opc = cls;
106   struct GNUNET_TESTBED_Peer *peer;
107   struct GNUNET_TESTBED_PeerDestroyMessage *msg;
108
109   GNUNET_assert (OP_PEER_DESTROY == opc->type);
110   peer = opc->data;
111   GNUNET_assert (NULL != peer);
112   opc->state = OPC_STATE_STARTED;
113   msg = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_PeerDestroyMessage));
114   msg->header.size = htons (sizeof (struct GNUNET_TESTBED_PeerDestroyMessage));
115   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER);
116   msg->peer_id = htonl (peer->unique_id);
117   msg->operation_id = GNUNET_htonll (opc->id);
118   GNUNET_CONTAINER_DLL_insert_tail (opc->c->ocq_head,
119                                     opc->c->ocq_tail, opc);
120   GNUNET_TESTBED_queue_message_ (peer->controller, &msg->header);
121 }
122
123
124 /**
125  * Callback which will be called when peer_create type operation is released
126  *
127  * @param cls the closure from GNUNET_TESTBED_operation_create_()
128  */
129 static void 
130 oprelease_peer_destroy (void *cls)
131 {
132   struct OperationContext *opc = cls;
133   
134   if (OPC_STATE_FINISHED != opc->state)
135     GNUNET_CONTAINER_DLL_remove (opc->c->ocq_head, opc->c->ocq_tail, opc);
136   GNUNET_free (opc);
137 }
138
139
140 /**
141  * Function called when a peer start operation is ready
142  *
143  * @param cls the closure from GNUNET_TESTBED_operation_create_()
144  */
145 static void 
146 opstart_peer_start (void *cls)
147 {
148   struct OperationContext *opc = cls;
149   struct GNUNET_TESTBED_PeerStartMessage *msg;
150   struct GNUNET_TESTBED_Peer *peer;
151
152   GNUNET_assert (OP_PEER_START == opc->type);
153   GNUNET_assert (NULL != opc->data);
154   peer = opc->data;
155   GNUNET_assert ((PS_CREATED == peer->state) || (PS_STOPPED == peer->state));
156   opc->state = OPC_STATE_STARTED;
157   msg = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_PeerStartMessage));
158   msg->header.size = htons (sizeof (struct GNUNET_TESTBED_PeerStartMessage));
159   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_STARTPEER);
160   msg->peer_id = htonl (peer->unique_id);
161   msg->operation_id = GNUNET_htonll (opc->id);
162   GNUNET_CONTAINER_DLL_insert_tail (opc->c->ocq_head, opc->c->ocq_tail, opc);
163   GNUNET_TESTBED_queue_message_ (peer->controller, &msg->header);
164 }
165
166
167 /**
168  * Callback which will be called when peer start type operation is released
169  *
170  * @param cls the closure from GNUNET_TESTBED_operation_create_()
171  */
172 static void 
173 oprelease_peer_start (void *cls)
174 {
175   struct OperationContext *opc = cls;
176   
177   if (OPC_STATE_FINISHED != opc->state)
178     GNUNET_CONTAINER_DLL_remove (opc->c->ocq_head, opc->c->ocq_tail, opc);
179   GNUNET_free (opc);
180 }
181
182
183 /**
184  * Function called when a peer stop operation is ready
185  *
186  * @param cls the closure from GNUNET_TESTBED_operation_create_()
187  */
188 static void 
189 opstart_peer_stop (void *cls)
190 {
191   struct OperationContext *opc = cls;
192   struct GNUNET_TESTBED_PeerStopMessage *msg;
193   struct GNUNET_TESTBED_Peer *peer;
194
195   GNUNET_assert (NULL != opc->data);
196   peer = opc->data;
197   GNUNET_assert (PS_STARTED == peer->state); 
198   opc->state = OPC_STATE_STARTED;  
199   msg = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_PeerStopMessage));
200   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_STOPPEER);
201   msg->header.size = htons (sizeof (struct GNUNET_TESTBED_PeerStopMessage));
202   msg->peer_id = htonl (peer->unique_id);
203   msg->operation_id = GNUNET_htonll (opc->id);
204   GNUNET_CONTAINER_DLL_insert_tail (opc->c->ocq_head, opc->c->ocq_tail, opc);
205   GNUNET_TESTBED_queue_message_ (peer->controller, &msg->header);
206 }
207
208
209 /**
210  * Callback which will be called when peer stop type operation is released
211  *
212  * @param cls the closure from GNUNET_TESTBED_operation_create_()
213  */
214 static void 
215 oprelease_peer_stop (void *cls)
216 {
217   struct OperationContext *opc = cls;
218   
219   if (OPC_STATE_FINISHED != opc->state)
220     GNUNET_CONTAINER_DLL_remove (opc->c->ocq_head, opc->c->ocq_tail, opc);
221   GNUNET_free (opc);
222 }
223
224
225 /**
226  * Function called when a peer get information operation is ready
227  *
228  * @param cls the closure from GNUNET_TESTBED_operation_create_()
229  */
230 static void 
231 opstart_peer_getinfo (void *cls)
232 {
233   struct OperationContext *opc = cls;
234   struct PeerInfoData *data;  
235   struct GNUNET_TESTBED_PeerGetConfigurationMessage *msg;
236
237   data = opc->data;
238   GNUNET_assert (NULL != data);
239   opc->state = OPC_STATE_STARTED;
240   msg = GNUNET_malloc (sizeof (struct
241                                GNUNET_TESTBED_PeerGetConfigurationMessage));
242   msg->header.size = htons
243     (sizeof (struct GNUNET_TESTBED_PeerGetConfigurationMessage));
244   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_GETPEERCONFIG);
245   msg->peer_id = htonl (data->peer->unique_id);
246   msg->operation_id = GNUNET_htonll (opc->id);
247   GNUNET_CONTAINER_DLL_insert_tail (opc->c->ocq_head, opc->c->ocq_tail, opc);
248   GNUNET_TESTBED_queue_message_ (opc->c, &msg->header);
249 }
250
251
252 /**
253  * Callback which will be called when peer stop type operation is released
254  *
255  * @param cls the closure from GNUNET_TESTBED_operation_create_()
256  */
257 static void 
258 oprelease_peer_getinfo (void *cls)
259 {
260   struct OperationContext *opc = cls;
261   struct PeerInfoData2 *data;
262   
263   if (OPC_STATE_FINISHED != opc->state)
264   {
265     GNUNET_free_non_null (opc->data);
266     GNUNET_CONTAINER_DLL_remove (opc->c->ocq_head, opc->c->ocq_tail, opc);  
267   }
268   else
269   {
270     data = opc->data;
271     GNUNET_assert (NULL != data);
272     switch (data->pit)
273     {
274     case GNUNET_TESTBED_PIT_CONFIGURATION:
275       GNUNET_CONFIGURATION_destroy (data->details.cfg);
276       break;
277     case GNUNET_TESTBED_PIT_IDENTITY:
278       GNUNET_free (data->details.peer_identity);
279       break;
280     default:
281       GNUNET_assert (0);        /* We should never reach here */
282     }
283     GNUNET_free (data);
284   }
285   GNUNET_free (opc);
286 }
287
288
289 /**
290  * Function called when a overlay connect operation is ready
291  *
292  * @param cls the closure from GNUNET_TESTBED_operation_create_()
293  */
294 static void 
295 opstart_overlay_connect (void *cls)
296 {
297   struct OperationContext *opc = cls;
298   struct GNUNET_TESTBED_OverlayConnectMessage *msg;
299   struct OverlayConnectData *data;
300     
301   opc->state = OPC_STATE_STARTED;
302   data = opc->data;
303   GNUNET_assert (NULL != data);
304   msg = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_OverlayConnectMessage));
305   msg->header.size = htons (sizeof 
306                             (struct GNUNET_TESTBED_OverlayConnectMessage));
307   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_OLCONNECT);
308   msg->peer1 = htonl (data->p1->unique_id);
309   msg->peer2 = htonl (data->p2->unique_id);
310   msg->operation_id = GNUNET_htonll (opc->id);
311   GNUNET_CONTAINER_DLL_insert_tail (opc->c->ocq_head, opc->c->ocq_tail, opc);
312   GNUNET_TESTBED_queue_message_ (opc->c, &msg->header);
313 }
314
315
316 /**
317  * Callback which will be called when overlay connect operation is released
318  *
319  * @param cls the closure from GNUNET_TESTBED_operation_create_()
320  */
321 static void 
322 oprelease_overlay_connect (void *cls)
323 {
324   GNUNET_break (0);
325 }
326
327
328 /**
329  * Lookup a peer by ID.
330  * 
331  * @param id global peer ID assigned to the peer
332  * @return handle to the host, NULL on error
333  */
334 struct GNUNET_TESTBED_Peer *
335 GNUNET_TESTBED_peer_lookup_by_id_ (uint32_t id)
336 {
337   GNUNET_break (0);
338   return NULL;
339 }
340
341
342 /**
343  * Create the given peer at the specified host using the given
344  * controller.  If the given controller is not running on the target
345  * host, it should find or create a controller at the target host and
346  * delegate creating the peer.  Explicit delegation paths can be setup
347  * using 'GNUNET_TESTBED_controller_link'.  If no explicit delegation
348  * path exists, a direct link with a subordinate controller is setup
349  * for the first delegated peer to a particular host; the subordinate
350  * controller is then destroyed once the last peer that was delegated
351  * to the remote host is stopped.  This function is used in particular
352  * if some other controller has already assigned a unique ID to the
353  * peer.
354  *
355  * Creating the peer only creates the handle to manipulate and further
356  * configure the peer; use "GNUNET_TESTBED_peer_start" and
357  * "GNUNET_TESTBED_peer_stop" to actually start/stop the peer's
358  * processes.
359  *
360  * Note that the given configuration will be adjusted by the
361  * controller to avoid port/path conflicts with other peers.
362  * The "final" configuration can be obtained using
363  * 'GNUNET_TESTBED_peer_get_information'.
364  *
365  * @param unique_id unique ID for this peer
366  * @param controller controller process to use
367  * @param host host to run the peer on
368  * @param cfg Template configuration to use for the peer. Should exist until
369  *          operation is cancelled or GNUNET_TESTBED_operation_done() is called
370  * @param cb the callback to call when the peer has been created
371  * @param cls the closure to the above callback
372  * @return the operation handle
373  */
374 struct GNUNET_TESTBED_Operation *
375 GNUNET_TESTBED_peer_create_with_id_ (uint32_t unique_id,
376                                      struct GNUNET_TESTBED_Controller *controller,
377                                      struct GNUNET_TESTBED_Host *host,
378                                      const struct GNUNET_CONFIGURATION_Handle *cfg,
379                                      GNUNET_TESTBED_PeerCreateCallback cb,
380                                      void *cls)
381 {
382   struct GNUNET_TESTBED_Peer *peer;
383   struct PeerCreateData *data;
384   struct OperationContext *opc;
385
386   peer = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_Peer));
387   peer->controller = controller;
388   peer->host = host;
389   peer->unique_id = unique_id;
390   peer->state = PS_INVALID;
391   data = GNUNET_malloc (sizeof (struct PeerCreateData));
392   data->host = host;
393   data->cfg = cfg;
394   data->cb = cb;
395   data->cls = cls;
396   data->peer = peer;
397   opc = GNUNET_malloc (sizeof (struct OperationContext));
398   opc->c = controller;
399   opc->data = data;
400   opc->id = controller->operation_counter++;
401   opc->type = OP_PEER_CREATE;
402   opc->op = GNUNET_TESTBED_operation_create_ (opc, &opstart_peer_create,
403                                               &oprelease_peer_create);
404   GNUNET_TESTBED_operation_queue_insert_ (controller->opq_peer_create, opc->op);
405   return opc->op;
406 }
407
408
409 /**
410  * Create the given peer at the specified host using the given
411  * controller.  If the given controller is not running on the target
412  * host, it should find or create a controller at the target host and
413  * delegate creating the peer.  Explicit delegation paths can be setup
414  * using 'GNUNET_TESTBED_controller_link'.  If no explicit delegation
415  * path exists, a direct link with a subordinate controller is setup
416  * for the first delegated peer to a particular host; the subordinate
417  * controller is then destroyed once the last peer that was delegated
418  * to the remote host is stopped.
419  *
420  * Creating the peer only creates the handle to manipulate and further
421  * configure the peer; use "GNUNET_TESTBED_peer_start" and
422  * "GNUNET_TESTBED_peer_stop" to actually start/stop the peer's
423  * processes.
424  *
425  * Note that the given configuration will be adjusted by the
426  * controller to avoid port/path conflicts with other peers.
427  * The "final" configuration can be obtained using
428  * 'GNUNET_TESTBED_peer_get_information'.
429  *
430  * @param controller controller process to use
431  * @param host host to run the peer on
432  * @param cfg Template configuration to use for the peer. Should exist until
433  *          operation is cancelled or GNUNET_TESTBED_operation_done() is called
434  * @param cb the callback to call when the peer has been created
435  * @param cls the closure to the above callback
436  * @return the operation handle
437  */
438 struct GNUNET_TESTBED_Operation *
439 GNUNET_TESTBED_peer_create (struct GNUNET_TESTBED_Controller *controller,
440                             struct GNUNET_TESTBED_Host *host,
441                             const struct GNUNET_CONFIGURATION_Handle *cfg,
442                             GNUNET_TESTBED_PeerCreateCallback cb,
443                             void *cls)
444 {
445   static uint32_t id_gen;
446
447   return GNUNET_TESTBED_peer_create_with_id_ (++id_gen,
448                                               controller,
449                                               host,
450                                               cfg,
451                                               cb, cls);
452 }
453
454
455 /**
456  * Start the given peer.
457  *
458  * @param peer peer to start
459  * @return handle to the operation
460  */
461 struct GNUNET_TESTBED_Operation *
462 GNUNET_TESTBED_peer_start (struct GNUNET_TESTBED_Peer *peer)
463 {
464   struct OperationContext *opc;
465
466   opc = GNUNET_malloc (sizeof (struct OperationContext));
467   opc->c = peer->controller;
468   opc->data = peer;
469   opc->id = opc->c->operation_counter++;
470   opc->type = OP_PEER_START;
471   opc->op = GNUNET_TESTBED_operation_create_ (opc, &opstart_peer_start,
472                                              &oprelease_peer_start);
473   GNUNET_TESTBED_operation_queue_insert_ (opc->c->opq_peer_create, opc->op);
474   return opc->op;  
475 }
476
477
478 /**
479  * Stop the given peer.  The handle remains valid (use
480  * "GNUNET_TESTBED_peer_destroy" to fully clean up the 
481  * state of the peer).
482  *
483  * @param peer peer to stop
484  * @return handle to the operation
485  */
486 struct GNUNET_TESTBED_Operation *
487 GNUNET_TESTBED_peer_stop (struct GNUNET_TESTBED_Peer *peer)
488 {
489   struct OperationContext *opc;
490
491   opc = GNUNET_malloc (sizeof (struct OperationContext));
492   opc->c = peer->controller;
493   opc->data = peer;
494   opc->id = opc->c->operation_counter++;
495   opc->type = OP_PEER_STOP;
496   opc->op = GNUNET_TESTBED_operation_create_ (opc, &opstart_peer_stop,
497                                               &oprelease_peer_stop);
498   GNUNET_TESTBED_operation_queue_insert_ (opc->c->opq_peer_create, opc->op);
499   return opc->op;
500 }
501
502
503 /**
504  * Request information about a peer.
505  *
506  * @param peer peer to request information about
507  * @param pit desired information
508  * @return handle to the operation
509  */
510 struct GNUNET_TESTBED_Operation *
511 GNUNET_TESTBED_peer_get_information (struct GNUNET_TESTBED_Peer *peer,
512                                      enum GNUNET_TESTBED_PeerInformationType pit)
513 {
514   struct OperationContext *opc;
515   struct PeerInfoData *data;
516
517   GNUNET_assert (GNUNET_TESTBED_PIT_GENERIC != pit);
518   data = GNUNET_malloc (sizeof (struct PeerInfoData));
519   data->peer = peer;
520   data->pit = pit;
521   opc = GNUNET_malloc (sizeof (struct OperationContext));
522   opc->c = peer->controller;
523   opc->data = data;
524   opc->type = OP_PEER_INFO;
525   opc->id = opc->c->operation_counter++;
526   opc->op = GNUNET_TESTBED_operation_create_ (opc, &opstart_peer_getinfo,
527                                              &oprelease_peer_getinfo);
528   GNUNET_TESTBED_operation_queue_insert_ (opc->c->opq_peer_create, opc->op);
529   return opc->op;
530 }
531
532
533 /**
534  * Change peer configuration.  Must only be called while the
535  * peer is stopped.  Ports and paths cannot be changed this
536  * way.
537  *
538  * @param peer peer to change configuration for
539  * @param cfg new configuration (differences to existing
540  *            configuration only)
541  * @return handle to the operation
542  */
543 struct GNUNET_TESTBED_Operation *
544 GNUNET_TESTBED_peer_update_configuration (struct GNUNET_TESTBED_Peer *peer,
545                                           const struct GNUNET_CONFIGURATION_Handle *cfg)
546 {
547   // FIXME: handle locally or delegate...
548   GNUNET_break (0);
549   return NULL;
550 }
551
552
553 /**
554  * Destroy the given peer; the peer should have been
555  * stopped first (if it was started).
556  *
557  * @param peer peer to stop
558  * @return handle to the operation
559  */
560 struct GNUNET_TESTBED_Operation *
561 GNUNET_TESTBED_peer_destroy (struct GNUNET_TESTBED_Peer *peer)
562 {
563   struct OperationContext *opc;
564
565   opc = GNUNET_malloc (sizeof (struct OperationContext));
566   opc->data = peer;
567   opc->c = peer->controller;
568   opc->id = peer->controller->operation_counter++;
569   opc->type = OP_PEER_DESTROY;
570   opc->op = GNUNET_TESTBED_operation_create_ (opc, &opstart_peer_destroy,
571                                               &oprelease_peer_destroy);
572   GNUNET_TESTBED_operation_queue_insert_ (opc->c->opq_peer_create,
573                                           opc->op);
574   return opc->op;
575 }
576
577
578 /**
579  * Manipulate the P2P underlay topology by configuring a link
580  * between two peers.  
581  *
582  * @param op_cls closure argument to give with the operation event
583  * @param p1 first peer
584  * @param p2 second peer
585  * @param co option to change
586  * @param ... option-specific values
587  * @return handle to the operation, NULL if configuring the link at this
588  *         time is not allowed
589  */
590 struct GNUNET_TESTBED_Operation *
591 GNUNET_TESTBED_underlay_configure_link (void *op_cls,
592                                         struct GNUNET_TESTBED_Peer *p1,
593                                         struct GNUNET_TESTBED_Peer *p2,
594                                         enum GNUNET_TESTBED_ConnectOption co, ...)
595 {
596   GNUNET_break (0);
597   return NULL;
598 }
599
600
601
602 /**
603  * Both peers must have been started before calling this function.
604  * This function then obtains a HELLO from 'p1', gives it to 'p2'
605  * and asks 'p2' to connect to 'p1'.
606  *
607  * @param op_cls closure argument to give with the operation event
608  * @param p1 first peer
609  * @param p2 second peer
610  * @return handle to the operation, NULL if connecting these two
611  *         peers is fundamentally not possible at this time (peers
612  *         not running or underlay disallows)
613  */
614 struct GNUNET_TESTBED_Operation *
615 GNUNET_TESTBED_overlay_connect (void *op_cls,
616                                 struct GNUNET_TESTBED_Peer *p1,
617                                 struct GNUNET_TESTBED_Peer *p2)
618 {
619   struct OperationContext *opc;
620   struct OverlayConnectData *data;
621
622   GNUNET_assert ((PS_STARTED == p1->state) && (PS_STARTED == p2->state));
623   GNUNET_assert (p1->controller == p2->controller);
624   data = GNUNET_malloc (sizeof (struct OverlayConnectData));
625   data->p1 = p1;
626   data->p2 = p2;
627   opc = GNUNET_malloc (sizeof (struct OperationContext));
628   opc->data = data;
629   opc->c = p1->controller;
630   opc->id = opc->c->operation_counter++;
631   opc->type = OP_OVERLAY_CONNECT;
632   opc->op = GNUNET_TESTBED_operation_create_ (opc, &opstart_overlay_connect,
633                                               &oprelease_overlay_connect);
634   return opc->op;
635 }
636
637
638
639 /* end of testbed_api_peers.c */