- indent
[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  * @author Sree Harsha Totakura
27  */
28
29 #include "platform.h"
30 #include "testbed_api_peers.h"
31 #include "testbed_api.h"
32 #include "testbed.h"
33 #include "testbed_api_hosts.h"
34 #include "testbed_api_operations.h"
35
36 /**
37  * Function to call to start a peer_create type operation once all
38  * queues the operation is part of declare that the
39  * operation can be activated.
40  *
41  * @param cls the closure from GNUNET_TESTBED_operation_create_()
42  */
43 static void
44 opstart_peer_create (void *cls)
45 {
46   struct OperationContext *opc = cls;
47   struct PeerCreateData *data;
48   struct GNUNET_TESTBED_PeerCreateMessage *msg;
49   char *config;
50   char *xconfig;
51   size_t c_size;
52   size_t xc_size;
53   uint16_t msize;
54
55   GNUNET_assert (OP_PEER_CREATE == opc->type);
56   data = opc->data;
57   GNUNET_assert (NULL != data);
58   GNUNET_assert (NULL != data->peer);
59   opc->state = OPC_STATE_STARTED;
60   config = GNUNET_CONFIGURATION_serialize (data->cfg, &c_size);
61   xc_size = GNUNET_TESTBED_compress_config_ (config, c_size, &xconfig);
62   GNUNET_free (config);
63   msize = xc_size + sizeof (struct GNUNET_TESTBED_PeerCreateMessage);
64   msg = GNUNET_realloc (xconfig, msize);
65   memmove (&msg[1], msg, xc_size);
66   msg->header.size = htons (msize);
67   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_CREATEPEER);
68   msg->operation_id = GNUNET_htonll (opc->id);
69   msg->host_id = htonl (GNUNET_TESTBED_host_get_id_ (data->peer->host));
70   msg->peer_id = htonl (data->peer->unique_id);
71   msg->config_size = htonl (c_size);
72   GNUNET_CONTAINER_DLL_insert_tail (opc->c->ocq_head, opc->c->ocq_tail, opc);
73   GNUNET_TESTBED_queue_message_ (opc->c, &msg->header);
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   switch (opc->state)
88   {
89   case OPC_STATE_STARTED:
90     GNUNET_CONTAINER_DLL_remove (opc->c->ocq_head, opc->c->ocq_tail, opc);
91     /* No break we continue flow */
92   case OPC_STATE_INIT:
93     GNUNET_free (((struct PeerCreateData *) opc->data)->peer);
94     GNUNET_free (opc->data);
95     break;
96   case OPC_STATE_FINISHED:
97     break;
98   }
99   GNUNET_free (opc);
100 }
101
102
103 /**
104  * Function called when a peer destroy operation is ready
105  *
106  * @param cls the closure from GNUNET_TESTBED_operation_create_()
107  */
108 static void
109 opstart_peer_destroy (void *cls)
110 {
111   struct OperationContext *opc = cls;
112   struct GNUNET_TESTBED_Peer *peer;
113   struct GNUNET_TESTBED_PeerDestroyMessage *msg;
114
115   GNUNET_assert (OP_PEER_DESTROY == opc->type);
116   peer = opc->data;
117   GNUNET_assert (NULL != peer);
118   opc->state = OPC_STATE_STARTED;
119   msg = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_PeerDestroyMessage));
120   msg->header.size = htons (sizeof (struct GNUNET_TESTBED_PeerDestroyMessage));
121   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_DESTROYPEER);
122   msg->peer_id = htonl (peer->unique_id);
123   msg->operation_id = GNUNET_htonll (opc->id);
124   GNUNET_CONTAINER_DLL_insert_tail (opc->c->ocq_head, opc->c->ocq_tail, opc);
125   GNUNET_TESTBED_queue_message_ (peer->controller, &msg->header);
126 }
127
128
129 /**
130  * Callback which will be called when peer_create type operation is released
131  *
132  * @param cls the closure from GNUNET_TESTBED_operation_create_()
133  */
134 static void
135 oprelease_peer_destroy (void *cls)
136 {
137   struct OperationContext *opc = cls;
138
139   if (OPC_STATE_FINISHED != opc->state)
140     GNUNET_CONTAINER_DLL_remove (opc->c->ocq_head, opc->c->ocq_tail, opc);
141   GNUNET_free (opc);
142 }
143
144
145 /**
146  * Function called when a peer start operation is ready
147  *
148  * @param cls the closure from GNUNET_TESTBED_operation_create_()
149  */
150 static void
151 opstart_peer_start (void *cls)
152 {
153   struct OperationContext *opc = cls;
154   struct GNUNET_TESTBED_PeerStartMessage *msg;
155   struct PeerEventData *data;
156   struct GNUNET_TESTBED_Peer *peer;
157
158   GNUNET_assert (OP_PEER_START == opc->type);
159   GNUNET_assert (NULL != opc->data);
160   data = opc->data;
161   GNUNET_assert (NULL != data->peer);
162   peer = data->peer;
163   GNUNET_assert ((PS_CREATED == peer->state) || (PS_STOPPED == peer->state));
164   opc->state = OPC_STATE_STARTED;
165   msg = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_PeerStartMessage));
166   msg->header.size = htons (sizeof (struct GNUNET_TESTBED_PeerStartMessage));
167   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_STARTPEER);
168   msg->peer_id = htonl (peer->unique_id);
169   msg->operation_id = GNUNET_htonll (opc->id);
170   GNUNET_CONTAINER_DLL_insert_tail (opc->c->ocq_head, opc->c->ocq_tail, opc);
171   GNUNET_TESTBED_queue_message_ (peer->controller, &msg->header);
172 }
173
174
175 /**
176  * Callback which will be called when peer start type operation is released
177  *
178  * @param cls the closure from GNUNET_TESTBED_operation_create_()
179  */
180 static void
181 oprelease_peer_start (void *cls)
182 {
183   struct OperationContext *opc = cls;
184
185   if (OPC_STATE_FINISHED != opc->state)
186   {
187     GNUNET_free (opc->data);
188     GNUNET_CONTAINER_DLL_remove (opc->c->ocq_head, opc->c->ocq_tail, opc);
189   }
190   GNUNET_free (opc);
191 }
192
193
194 /**
195  * Function called when a peer stop operation is ready
196  *
197  * @param cls the closure from GNUNET_TESTBED_operation_create_()
198  */
199 static void
200 opstart_peer_stop (void *cls)
201 {
202   struct OperationContext *opc = cls;
203   struct GNUNET_TESTBED_PeerStopMessage *msg;
204   struct PeerEventData *data;
205   struct GNUNET_TESTBED_Peer *peer;
206
207   GNUNET_assert (NULL != opc->data);
208   data = opc->data;
209   GNUNET_assert (NULL != data->peer);
210   peer = data->peer;
211   GNUNET_assert (PS_STARTED == peer->state);
212   opc->state = OPC_STATE_STARTED;
213   msg = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_PeerStopMessage));
214   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_STOPPEER);
215   msg->header.size = htons (sizeof (struct GNUNET_TESTBED_PeerStopMessage));
216   msg->peer_id = htonl (peer->unique_id);
217   msg->operation_id = GNUNET_htonll (opc->id);
218   GNUNET_CONTAINER_DLL_insert_tail (opc->c->ocq_head, opc->c->ocq_tail, opc);
219   GNUNET_TESTBED_queue_message_ (peer->controller, &msg->header);
220 }
221
222
223 /**
224  * Callback which will be called when peer stop type operation is released
225  *
226  * @param cls the closure from GNUNET_TESTBED_operation_create_()
227  */
228 static void
229 oprelease_peer_stop (void *cls)
230 {
231   struct OperationContext *opc = cls;
232
233   if (OPC_STATE_FINISHED != opc->state)
234   {
235     GNUNET_free (opc->data);
236     GNUNET_CONTAINER_DLL_remove (opc->c->ocq_head, opc->c->ocq_tail, opc);
237   }
238   GNUNET_free (opc);
239 }
240
241
242 /**
243  * Generate PeerGetConfigurationMessage
244  *
245  * @param peer_id the id of the peer whose information we have to get
246  * @param operation_id the ip of the operation that should be represented in the
247  *          message
248  * @return the PeerGetConfigurationMessage
249  */
250 struct GNUNET_TESTBED_PeerGetConfigurationMessage *
251 GNUNET_TESTBED_generate_peergetconfig_msg_ (uint32_t peer_id,
252                                             uint64_t operation_id)
253 {
254   struct GNUNET_TESTBED_PeerGetConfigurationMessage *msg;
255
256   msg =
257       GNUNET_malloc (sizeof
258                      (struct GNUNET_TESTBED_PeerGetConfigurationMessage));
259   msg->header.size =
260       htons (sizeof (struct GNUNET_TESTBED_PeerGetConfigurationMessage));
261   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_GETPEERCONFIG);
262   msg->peer_id = htonl (peer_id);
263   msg->operation_id = GNUNET_htonll (operation_id);
264   return msg;
265 }
266
267
268 /**
269  * Function called when a peer get information operation is ready
270  *
271  * @param cls the closure from GNUNET_TESTBED_operation_create_()
272  */
273 static void
274 opstart_peer_getinfo (void *cls)
275 {
276   struct OperationContext *opc = cls;
277   struct PeerInfoData *data;
278   struct GNUNET_TESTBED_PeerGetConfigurationMessage *msg;
279
280   data = opc->data;
281   GNUNET_assert (NULL != data);
282   opc->state = OPC_STATE_STARTED;
283   msg =
284       GNUNET_TESTBED_generate_peergetconfig_msg_ (data->peer->unique_id,
285                                                   opc->id);
286   GNUNET_CONTAINER_DLL_insert_tail (opc->c->ocq_head, opc->c->ocq_tail, opc);
287   GNUNET_TESTBED_queue_message_ (opc->c, &msg->header);
288 }
289
290
291 /**
292  * Callback which will be called when peer stop type operation is released
293  *
294  * @param cls the closure from GNUNET_TESTBED_operation_create_()
295  */
296 static void
297 oprelease_peer_getinfo (void *cls)
298 {
299   struct OperationContext *opc = cls;
300   struct GNUNET_TESTBED_PeerInformation *data;
301
302   if (OPC_STATE_FINISHED != opc->state)
303   {
304     GNUNET_free_non_null (opc->data);
305     GNUNET_CONTAINER_DLL_remove (opc->c->ocq_head, opc->c->ocq_tail, opc);
306   }
307   else
308   {
309     data = opc->data;
310     GNUNET_assert (NULL != data);
311     switch (data->pit)
312     {
313     case GNUNET_TESTBED_PIT_CONFIGURATION:
314       GNUNET_CONFIGURATION_destroy (data->result.cfg);
315       break;
316     case GNUNET_TESTBED_PIT_IDENTITY:
317       GNUNET_free (data->result.id);
318       break;
319     default:
320       GNUNET_assert (0);        /* We should never reach here */
321     }
322     GNUNET_free (data);
323   }
324   GNUNET_free (opc);
325 }
326
327
328 /**
329  * Function called when a overlay connect operation is ready
330  *
331  * @param cls the closure from GNUNET_TESTBED_operation_create_()
332  */
333 static void
334 opstart_overlay_connect (void *cls)
335 {
336   struct OperationContext *opc = cls;
337   struct GNUNET_TESTBED_OverlayConnectMessage *msg;
338   struct OverlayConnectData *data;
339
340   opc->state = OPC_STATE_STARTED;
341   data = opc->data;
342   GNUNET_assert (NULL != data);
343   data->tslot_index = GNUNET_TESTBED_get_tslot_ (opc->c, data);
344   data->tstart = GNUNET_TIME_absolute_get ();
345   msg = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_OverlayConnectMessage));
346   msg->header.size =
347       htons (sizeof (struct GNUNET_TESTBED_OverlayConnectMessage));
348   msg->header.type = htons (GNUNET_MESSAGE_TYPE_TESTBED_OLCONNECT);
349   msg->peer1 = htonl (data->p1->unique_id);
350   msg->peer2 = htonl (data->p2->unique_id);
351   msg->operation_id = GNUNET_htonll (opc->id);
352   msg->peer2_host_id = htonl (GNUNET_TESTBED_host_get_id_ (data->p2->host));
353   GNUNET_CONTAINER_DLL_insert_tail (opc->c->ocq_head, opc->c->ocq_tail, opc);
354   GNUNET_TESTBED_queue_message_ (opc->c, &msg->header);
355 }
356
357
358 /**
359  * Callback which will be called when overlay connect operation is released
360  *
361  * @param cls the closure from GNUNET_TESTBED_operation_create_()
362  */
363 static void
364 oprelease_overlay_connect (void *cls)
365 {
366   struct OperationContext *opc = cls;
367   struct GNUNET_TIME_Relative duration;
368   struct OverlayConnectData *data;
369
370   data = opc->data;
371   switch (opc->state)
372   {
373   case OPC_STATE_INIT:
374     break;
375   case OPC_STATE_STARTED:
376     (void) GNUNET_TESTBED_release_time_slot_ (opc->c, data->tslot_index, data);
377     GNUNET_CONTAINER_DLL_remove (opc->c->ocq_head, opc->c->ocq_tail, opc);
378     break;
379   case OPC_STATE_FINISHED:
380     duration = GNUNET_TIME_absolute_get_duration (data->tstart);
381     GNUNET_TESTBED_update_time_slot_ (opc->c, data->tslot_index, data, duration,
382                                       data->failed);
383   }
384   GNUNET_free (data);
385   GNUNET_free (opc);
386 }
387
388
389 /**
390  * Lookup a peer by ID.
391  *
392  * @param id global peer ID assigned to the peer
393  * @return handle to the host, NULL on error
394  */
395 struct GNUNET_TESTBED_Peer *
396 GNUNET_TESTBED_peer_lookup_by_id_ (uint32_t id)
397 {
398   GNUNET_break (0);
399   return NULL;
400 }
401
402
403 /**
404  * Create the given peer at the specified host using the given
405  * controller.  If the given controller is not running on the target
406  * host, it should find or create a controller at the target host and
407  * delegate creating the peer.  Explicit delegation paths can be setup
408  * using 'GNUNET_TESTBED_controller_link'.  If no explicit delegation
409  * path exists, a direct link with a subordinate controller is setup
410  * for the first delegated peer to a particular host; the subordinate
411  * controller is then destroyed once the last peer that was delegated
412  * to the remote host is stopped.
413  *
414  * Creating the peer only creates the handle to manipulate and further
415  * configure the peer; use "GNUNET_TESTBED_peer_start" and
416  * "GNUNET_TESTBED_peer_stop" to actually start/stop the peer's
417  * processes.
418  *
419  * Note that the given configuration will be adjusted by the
420  * controller to avoid port/path conflicts with other peers.
421  * The "final" configuration can be obtained using
422  * 'GNUNET_TESTBED_peer_get_information'.
423  *
424  * @param controller controller process to use
425  * @param host host to run the peer on; cannot be NULL
426  * @param cfg Template configuration to use for the peer. Should exist until
427  *          operation is cancelled or GNUNET_TESTBED_operation_done() is called
428  * @param cb the callback to call when the peer has been created
429  * @param cls the closure to the above callback
430  * @return the operation handle
431  */
432 struct GNUNET_TESTBED_Operation *
433 GNUNET_TESTBED_peer_create (struct GNUNET_TESTBED_Controller *controller,
434                             struct GNUNET_TESTBED_Host *host,
435                             const struct GNUNET_CONFIGURATION_Handle *cfg,
436                             GNUNET_TESTBED_PeerCreateCallback cb, void *cls)
437 {
438
439   struct GNUNET_TESTBED_Peer *peer;
440   struct PeerCreateData *data;
441   struct OperationContext *opc;
442   static uint32_t id_gen;
443
444   peer = GNUNET_malloc (sizeof (struct GNUNET_TESTBED_Peer));
445   peer->controller = controller;
446   peer->host = host;
447   peer->unique_id = id_gen++;
448   peer->state = PS_INVALID;
449   data = GNUNET_malloc (sizeof (struct PeerCreateData));
450   data->host = host;
451   data->cfg = cfg;
452   data->cb = cb;
453   data->cls = cls;
454   data->peer = peer;
455   opc = GNUNET_malloc (sizeof (struct OperationContext));
456   opc->c = controller;
457   opc->data = data;
458   opc->id = GNUNET_TESTBED_get_next_op_id (controller);
459   opc->type = OP_PEER_CREATE;
460   opc->op =
461       GNUNET_TESTBED_operation_create_ (opc, &opstart_peer_create,
462                                         &oprelease_peer_create);
463   GNUNET_TESTBED_operation_queue_insert_ (controller->opq_parallel_operations,
464                                           opc->op);
465   GNUNET_TESTBED_operation_begin_wait_ (opc->op);
466   return opc->op;
467 }
468
469
470 /**
471  * Start the given peer.
472  *
473  * @param op_cls the closure for this operation; will be set in
474  *          event->details.operation_finished.op_cls when this operation fails.
475  * @param peer peer to start
476  * @param pcc function to call upon completion
477  * @param pcc_cls closure for 'pcc'
478  * @return handle to the operation
479  */
480 struct GNUNET_TESTBED_Operation *
481 GNUNET_TESTBED_peer_start (void *op_cls, struct GNUNET_TESTBED_Peer *peer,
482                            GNUNET_TESTBED_PeerChurnCallback pcc, void *pcc_cls)
483 {
484   struct OperationContext *opc;
485   struct PeerEventData *data;
486
487   data = GNUNET_malloc (sizeof (struct PeerEventData));
488   data->peer = peer;
489   data->pcc = pcc;
490   data->pcc_cls = pcc_cls;
491   opc = GNUNET_malloc (sizeof (struct OperationContext));
492   opc->c = peer->controller;
493   opc->data = data;
494   opc->op_cls = op_cls;
495   opc->id = GNUNET_TESTBED_get_next_op_id (opc->c);
496   opc->type = OP_PEER_START;
497   opc->op =
498       GNUNET_TESTBED_operation_create_ (opc, &opstart_peer_start,
499                                         &oprelease_peer_start);
500   GNUNET_TESTBED_operation_queue_insert_ (opc->c->opq_parallel_operations,
501                                           opc->op);
502   GNUNET_TESTBED_operation_begin_wait_ (opc->op);
503   return opc->op;
504 }
505
506
507 /**
508  * Stop the given peer.  The handle remains valid (use
509  * "GNUNET_TESTBED_peer_destroy" to fully clean up the
510  * state of the peer).
511  *
512  * @param peer peer to stop
513  * @param pcc function to call upon completion
514  * @param pcc_cls closure for 'pcc'
515  * @return handle to the operation
516  */
517 struct GNUNET_TESTBED_Operation *
518 GNUNET_TESTBED_peer_stop (struct GNUNET_TESTBED_Peer *peer,
519                           GNUNET_TESTBED_PeerChurnCallback pcc, void *pcc_cls)
520 {
521   struct OperationContext *opc;
522   struct PeerEventData *data;
523
524   data = GNUNET_malloc (sizeof (struct PeerEventData));
525   data->peer = peer;
526   data->pcc = pcc;
527   data->pcc_cls = pcc_cls;
528   opc = GNUNET_malloc (sizeof (struct OperationContext));
529   opc->c = peer->controller;
530   opc->data = data;
531   opc->id = GNUNET_TESTBED_get_next_op_id (opc->c);
532   opc->type = OP_PEER_STOP;
533   opc->op =
534       GNUNET_TESTBED_operation_create_ (opc, &opstart_peer_stop,
535                                         &oprelease_peer_stop);
536   GNUNET_TESTBED_operation_queue_insert_ (opc->c->opq_parallel_operations,
537                                           opc->op);
538   GNUNET_TESTBED_operation_begin_wait_ (opc->op);
539   return opc->op;
540 }
541
542
543 /**
544  * Request information about a peer. The controller callback will not be called
545  * with event type GNUNET_TESTBED_ET_OPERATION_FINISHED when result for this
546  * operation is available. Instead, the GNUNET_TESTBED_PeerInfoCallback() will
547  * be called.
548  *
549  * @param peer peer to request information about
550  * @param pit desired information
551  * @param cb the convenience callback to be called when results for this
552  *          operation are available
553  * @param cb_cls the closure for the above callback
554  * @return handle to the operation
555  */
556 struct GNUNET_TESTBED_Operation *
557 GNUNET_TESTBED_peer_get_information (struct GNUNET_TESTBED_Peer *peer,
558                                      enum GNUNET_TESTBED_PeerInformationType
559                                      pit, GNUNET_TESTBED_PeerInfoCallback cb,
560                                      void *cb_cls)
561 {
562   struct OperationContext *opc;
563   struct PeerInfoData *data;
564
565   GNUNET_assert (GNUNET_TESTBED_PIT_GENERIC != pit);
566   data = GNUNET_malloc (sizeof (struct PeerInfoData));
567   data->peer = peer;
568   data->pit = pit;
569   data->cb = cb;
570   data->cb_cls = cb_cls;
571   opc = GNUNET_malloc (sizeof (struct OperationContext));
572   opc->c = peer->controller;
573   opc->data = data;
574   opc->type = OP_PEER_INFO;
575   opc->id = GNUNET_TESTBED_get_next_op_id (opc->c);
576   opc->op =
577       GNUNET_TESTBED_operation_create_ (opc, &opstart_peer_getinfo,
578                                         &oprelease_peer_getinfo);
579   GNUNET_TESTBED_operation_queue_insert_ (opc->c->opq_parallel_operations,
580                                           opc->op);
581   GNUNET_TESTBED_operation_begin_wait_ (opc->op);
582   return opc->op;
583 }
584
585
586 /**
587  * Change peer configuration.  Must only be called while the
588  * peer is stopped.  Ports and paths cannot be changed this
589  * way.
590  *
591  * @param peer peer to change configuration for
592  * @param cfg new configuration (differences to existing
593  *            configuration only)
594  * @return handle to the operation
595  */
596 struct GNUNET_TESTBED_Operation *
597 GNUNET_TESTBED_peer_update_configuration (struct GNUNET_TESTBED_Peer *peer,
598                                           const struct
599                                           GNUNET_CONFIGURATION_Handle *cfg)
600 {
601   // FIXME: handle locally or delegate...
602   GNUNET_break (0);
603   return NULL;
604 }
605
606
607 /**
608  * Destroy the given peer; the peer should have been
609  * stopped first (if it was started).
610  *
611  * @param peer peer to stop
612  * @return handle to the operation
613  */
614 struct GNUNET_TESTBED_Operation *
615 GNUNET_TESTBED_peer_destroy (struct GNUNET_TESTBED_Peer *peer)
616 {
617   struct OperationContext *opc;
618
619   opc = GNUNET_malloc (sizeof (struct OperationContext));
620   opc->data = peer;
621   opc->c = peer->controller;
622   opc->id = GNUNET_TESTBED_get_next_op_id (peer->controller);
623   opc->type = OP_PEER_DESTROY;
624   opc->op =
625       GNUNET_TESTBED_operation_create_ (opc, &opstart_peer_destroy,
626                                         &oprelease_peer_destroy);
627   GNUNET_TESTBED_operation_queue_insert_ (opc->c->opq_parallel_operations,
628                                           opc->op);
629   GNUNET_TESTBED_operation_begin_wait_ (opc->op);
630   return opc->op;
631 }
632
633
634 /**
635  * Manipulate the P2P underlay topology by configuring a link
636  * between two peers.
637  *
638  * @param op_cls closure argument to give with the operation event
639  * @param p1 first peer
640  * @param p2 second peer
641  * @param co option to change
642  * @param ... option-specific values
643  * @return handle to the operation, NULL if configuring the link at this
644  *         time is not allowed
645  */
646 struct GNUNET_TESTBED_Operation *
647 GNUNET_TESTBED_underlay_configure_link (void *op_cls,
648                                         struct GNUNET_TESTBED_Peer *p1,
649                                         struct GNUNET_TESTBED_Peer *p2,
650                                         enum GNUNET_TESTBED_ConnectOption co,
651                                         ...)
652 {
653   GNUNET_break (0);
654   return NULL;
655 }
656
657
658 /**
659  * Both peers must have been started before calling this function.
660  * This function then obtains a HELLO from 'p1', gives it to 'p2'
661  * and asks 'p2' to connect to 'p1'.
662  *
663  * @param op_cls closure argument to give with the operation event
664  * @param cb the callback to call when this operation has finished
665  * @param cb_cls the closure for the above callback
666  * @param p1 first peer
667  * @param p2 second peer
668  * @return handle to the operation, NULL if connecting these two
669  *         peers is fundamentally not possible at this time (peers
670  *         not running or underlay disallows)
671  */
672 struct GNUNET_TESTBED_Operation *
673 GNUNET_TESTBED_overlay_connect (void *op_cls,
674                                 GNUNET_TESTBED_OperationCompletionCallback cb,
675                                 void *cb_cls, struct GNUNET_TESTBED_Peer *p1,
676                                 struct GNUNET_TESTBED_Peer *p2)
677 {
678   struct OperationContext *opc;
679   struct OverlayConnectData *data;
680
681   GNUNET_assert ((PS_STARTED == p1->state) && (PS_STARTED == p2->state));
682   data = GNUNET_malloc (sizeof (struct OverlayConnectData));
683   data->p1 = p1;
684   data->p2 = p2;
685   data->cb = cb;
686   data->cb_cls = cb_cls;
687   opc = GNUNET_malloc (sizeof (struct OperationContext));
688   opc->data = data;
689   opc->c = p1->controller;
690   opc->id = GNUNET_TESTBED_get_next_op_id (opc->c);
691   opc->type = OP_OVERLAY_CONNECT;
692   opc->op_cls = op_cls;
693   opc->op =
694       GNUNET_TESTBED_operation_create_ (opc, &opstart_overlay_connect,
695                                         &oprelease_overlay_connect);
696   GNUNET_TESTBED_operation_queue_insert_ (opc->
697                                           c->opq_parallel_overlay_connect_operations,
698                                           opc->op);
699   GNUNET_TESTBED_operation_begin_wait_ (opc->op);
700   return opc->op;
701 }
702
703
704
705 /* end of testbed_api_peers.c */