- distribute peers equally among island nodes on SuperMUC
[oweals/gnunet.git] / src / include / gnunet_testbed_service.h
1 /*
2       This file is part of GNUnet
3       (C) 2008--2013 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 include/gnunet_testbed_service.h
23  * @brief API for writing tests and creating large-scale
24  *        emulation testbeds for GNUnet.
25  * @author Christian Grothoff
26  */
27
28 #ifndef GNUNET_TESTBED_SERVICE_H
29 #define GNUNET_TESTBED_SERVICE_H
30
31 #include "gnunet_util_lib.h"
32 #include "gnunet_testing_lib.h"
33
34 #ifdef __cplusplus
35 extern "C"
36 {
37 #if 0                           /* keep Emacsens' auto-indent happy */
38 }
39 #endif
40 #endif
41
42
43 /**
44  * Opaque handle to a host running experiments managed by the testbed framework.
45  * The master process must be able to SSH to this host without password (via
46  * ssh-agent).
47  */
48 struct GNUNET_TESTBED_Host;
49
50 /**
51  * Opaque handle to a peer controlled by the testbed framework.  A peer runs
52  * at a particular host.
53  */
54 struct GNUNET_TESTBED_Peer;
55
56 /**
57  * Opaque handle to an abstract operation to be executed by the testbed framework.
58  */
59 struct GNUNET_TESTBED_Operation;
60
61 /**
62  * Handle to interact with a GNUnet testbed controller.  Each
63  * controller has at least one master handle which is created when the
64  * controller is created; this master handle interacts with the
65  * controller process, destroying it destroys the controller (by
66  * closing stdin of the controller process).  Additionally,
67  * controllers can interact with each other (in a P2P fashion); those
68  * links are established via TCP/IP on the controller's service port.
69  */
70 struct GNUNET_TESTBED_Controller;
71
72
73 /**
74  * Create a host to run peers and controllers on.
75  *
76  * @param hostname name of the host, use "NULL" for localhost
77  * @param username username to use for the login; may be NULL
78  * @param cfg the configuration to use as a template while starting a controller
79  *          on this host.  Operation queue sizes specific to a host are also
80  *          read from this configuration handle
81  * @param port port number to use for ssh; use 0 to let ssh decide
82  * @return handle to the host, NULL on error
83  */
84 struct GNUNET_TESTBED_Host *
85 GNUNET_TESTBED_host_create (const char *hostname,
86                             const char *username,
87                             const struct GNUNET_CONFIGURATION_Handle *cfg,
88                             uint16_t port);
89
90
91
92 /**
93  * Create a host to run peers and controllers on.  This function is used
94  * if a peer learns about a host via IPC between controllers (and thus
95  * some higher-level controller has already determined the unique IDs).
96  *
97  * @param id global host ID assigned to the host; 0 is
98  *        reserved to always mean 'localhost'
99  * @param hostname name of the host, use "NULL" for localhost
100  * @param username username to use for the login; may be NULL
101  * @param cfg the configuration to use as a template while starting a controller
102  *          on this host.  Operation queue sizes specific to a host are also
103  *          read from this configuration handle
104  * @param port port number to use for ssh; use 0 to let ssh decide
105  * @return handle to the host, NULL on error
106  */
107 struct GNUNET_TESTBED_Host *
108 GNUNET_TESTBED_host_create_with_id (uint32_t id,
109                                     const char *hostname,
110                                     const char *username,
111                                     const struct GNUNET_CONFIGURATION_Handle
112                                     *cfg,
113                                     uint16_t port);
114
115
116 /**
117  * Load a set of hosts from a configuration file.
118  *
119  * @param filename file with the host specification
120  * @param cfg the configuration to use as a template while starting a controller
121  *          on any of the loaded hosts.  Operation queue sizes specific to a host
122  *          are also read from this configuration handle
123  * @param hosts set to the hosts found in the file; caller must free this if
124  *          number of hosts returned is greater than 0
125  * @return number of hosts returned in 'hosts', 0 on error
126  */
127 unsigned int
128 GNUNET_TESTBED_hosts_load_from_file (const char *filename,
129                                      const struct GNUNET_CONFIGURATION_Handle
130                                      *cfg,
131                                      struct GNUNET_TESTBED_Host ***hosts);
132
133
134 /**
135  * Loads the set of host allocated by the LoadLeveler Job Scheduler.  This
136  * function is only available when compiled with support for LoadLeveler and is
137  * used for running on the SuperMUC
138  *
139  * @param cfg the configuration to use as a template while starting a controller
140  *          on any of the loaded hosts.  Operation queue sizes specific to a host
141  *          are also read from this configuration handle
142  * @param hosts set to the hosts found in the file; caller must free this if
143  *          number of hosts returned is greater than 0
144  * @return number of hosts returned in 'hosts', 0 on error
145  */
146 unsigned int
147 GNUNET_TESTBED_hosts_load_from_loadleveler (const struct
148                                             GNUNET_CONFIGURATION_Handle *cfg,
149                                             struct GNUNET_TESTBED_Host
150                                             ***hosts);
151
152 /**
153  * Destroy a host handle.  Must only be called once everything
154  * running on that host has been stopped.
155  *
156  * @param host handle to destroy
157  */
158 void
159 GNUNET_TESTBED_host_destroy (struct GNUNET_TESTBED_Host *host);
160
161
162 /**
163  * The handle for whether a host is habitable or not
164  */
165 struct GNUNET_TESTBED_HostHabitableCheckHandle;
166
167
168 /**
169  * Callbacks of this type are called by GNUNET_TESTBED_is_host_habitable to
170  * inform whether the given host is habitable or not. The Handle returned by
171  * GNUNET_TESTBED_is_host_habitable() is invalid after this callback is called
172  *
173  * @param cls the closure given to GNUNET_TESTBED_is_host_habitable()
174  * @param host the host whose status is being reported; will be NULL if the host
175  *          given to GNUNET_TESTBED_is_host_habitable() is NULL
176  * @param status GNUNET_YES if it is habitable; GNUNET_NO if not
177  */
178 typedef void (*GNUNET_TESTBED_HostHabitableCallback) (void *cls,
179                                                       const struct
180                                                       GNUNET_TESTBED_Host
181                                                       *host,
182                                                       int status);
183
184
185 /**
186  * Checks whether a host can be used to start testbed service
187  *
188  * @param host the host to check
189  * @param config the configuration handle to lookup the path of the testbed
190  *          helper
191  * @param cb the callback to call to inform about habitability of the given host
192  * @param cb_cls the closure for the callback
193  * @return NULL upon any error or a handle which can be passed to
194  *           GNUNET_TESTBED_is_host_habitable_cancel()
195  */
196 struct GNUNET_TESTBED_HostHabitableCheckHandle *
197 GNUNET_TESTBED_is_host_habitable (const struct GNUNET_TESTBED_Host *host,
198                                   const struct GNUNET_CONFIGURATION_Handle
199                                   *config,
200                                   GNUNET_TESTBED_HostHabitableCallback cb,
201                                   void *cb_cls);
202
203
204 /**
205  * Function to cancel a request started using GNUNET_TESTBED_is_host_habitable()
206  *
207  * @param handle the habitability check handle
208  */
209 void
210 GNUNET_TESTBED_is_host_habitable_cancel (struct
211                                          GNUNET_TESTBED_HostHabitableCheckHandle
212                                          *handle);
213
214 /**
215  * Obtain the host's hostname.
216  *
217  * @param host handle to the host, NULL means 'localhost'
218  * @return hostname of the host
219  */
220 const char *
221 GNUNET_TESTBED_host_get_hostname (const struct GNUNET_TESTBED_Host *host);
222
223
224 /**
225  * Enumeration with (at most 64) possible event types that
226  * can be monitored using the testbed framework.
227  */
228 enum GNUNET_TESTBED_EventType
229 {
230   /**
231    * A peer has been started.
232    */
233   GNUNET_TESTBED_ET_PEER_START = 0,
234
235   /**
236    * A peer has been stopped.
237    */
238   GNUNET_TESTBED_ET_PEER_STOP = 1,
239
240   /**
241    * A connection between two peers was established.
242    */
243   GNUNET_TESTBED_ET_CONNECT = 2,
244
245   /**
246    * A connection between two peers was torn down.
247    */
248   GNUNET_TESTBED_ET_DISCONNECT = 3,
249
250   /**
251    * A requested testbed operation has been completed.
252    */
253   GNUNET_TESTBED_ET_OPERATION_FINISHED = 4,
254
255 };
256
257
258 /**
259  * Types of information that can be requested about a peer.
260  */
261 enum GNUNET_TESTBED_PeerInformationType
262 {
263
264   /**
265    * Special value (not valid for requesting information)
266    * that is used in the event struct if a 'generic' pointer
267    * is returned (for other operations not related to this
268    * enumeration).
269    */
270   GNUNET_TESTBED_PIT_GENERIC = 0,
271
272   /**
273    * What configuration is the peer using?  Returns a 'const struct
274    * GNUNET_CONFIGURATION_Handle *'.  Valid until
275    * 'GNUNET_TESTNIG_operation_done' is called.  However, the
276    * values may be inaccurate if the peer is reconfigured in
277    * the meantime.
278    */
279   GNUNET_TESTBED_PIT_CONFIGURATION,
280
281   /**
282    * What is the identity of the peer?  Returns a
283    * 'const struct GNUNET_PeerIdentity *'.  Valid until
284    * 'GNUNET_TESTNIG_operation_done' is called.
285    */
286   GNUNET_TESTBED_PIT_IDENTITY
287
288 };
289
290
291 /**
292  * Argument to GNUNET_TESTBED_ControllerCallback with details about
293  * the event.
294  */
295 struct GNUNET_TESTBED_EventInformation
296 {
297
298   /**
299    * Type of the event.
300    */
301   enum GNUNET_TESTBED_EventType type;
302
303   /**
304    * Handle for the corresponding operation that generated this event
305    */
306   struct GNUNET_TESTBED_Operation *op;
307
308   /**
309    * Closure given while creating the above operation
310    */
311   void *op_cls;
312
313   /**
314    * Details about the event.
315    */
316   union
317   {
318
319     /**
320      * Details about peer start event.
321      */
322     struct
323     {
324       /**
325        * Handle for the host where the peer
326        * was started.
327        */
328       struct GNUNET_TESTBED_Host *host;
329
330       /**
331        * Handle for the peer that was started.
332        */
333       struct GNUNET_TESTBED_Peer *peer;
334
335     } peer_start;
336
337     /**
338      * Details about peer stop event.
339      */
340     struct
341     {
342
343       /**
344        * Handle for the peer that was started.
345        */
346       struct GNUNET_TESTBED_Peer *peer;
347
348     } peer_stop;
349
350     /**
351      * Details about connect event.
352      */
353     struct
354     {
355       /**
356        * Handle for one of the connected peers.
357        */
358       struct GNUNET_TESTBED_Peer *peer1;
359
360       /**
361        * Handle for one of the connected peers.
362        */
363       struct GNUNET_TESTBED_Peer *peer2;
364
365     } peer_connect;
366
367     /**
368      * Details about disconnect event.
369      */
370     struct
371     {
372       /**
373        * Handle for one of the disconnected peers.
374        */
375       struct GNUNET_TESTBED_Peer *peer1;
376
377       /**
378        * Handle for one of the disconnected peers.
379        */
380       struct GNUNET_TESTBED_Peer *peer2;
381
382     } peer_disconnect;
383
384     /**
385      * Details about an operation finished event.
386      */
387     struct
388     {
389       /**
390        * Error message for the operation, NULL on success.
391        */
392       const char *emsg;
393
394       /**
395        * No result (NULL pointer) or generic result
396        * (whatever the GNUNET_TESTBED_ConnectAdapter returned).
397        */
398       void *generic;
399
400     } operation_finished;
401
402   } details;
403
404 };
405
406
407 /**
408  * Signature of the event handler function called by the
409  * respective event controller.
410  *
411  * @param cls closure
412  * @param event information about the event
413  */
414 typedef void (*GNUNET_TESTBED_ControllerCallback)(void *cls,
415                                                   const struct GNUNET_TESTBED_EventInformation *event);
416
417
418 /**
419  * Opaque Handle for Controller process
420  */
421 struct GNUNET_TESTBED_ControllerProc;
422
423
424 /**
425  * Callback to signal successfull startup of the controller process
426  *
427  * @param cls the closure from GNUNET_TESTBED_controller_start()
428  * @param cfg the configuration with which the controller has been started;
429  *          NULL if status is not GNUNET_OK
430  * @param status GNUNET_OK if the startup is successfull; GNUNET_SYSERR if not,
431  *          GNUNET_TESTBED_controller_stop() shouldn't be called in this case
432  */
433 typedef void (*GNUNET_TESTBED_ControllerStatusCallback) (void *cls,
434                                                         const struct GNUNET_CONFIGURATION_Handle *cfg,
435                                                         int status);
436
437
438 /**
439  * Starts a controller process at the given host.  The given host's configration
440  * is used as a Template configuration to use for the remote controller; the
441  * remote controller will be started with a slightly modified configuration
442  * (port numbers, unix domain sockets and service home values are changed as per
443  * TESTING library on the remote host).  The modified configuration replaces the
444  * host's existing configuration before signalling success through the
445  * GNUNET_TESTBED_ControllerStatusCallback()
446  *
447  * @param trusted_ip the ip address of the controller which will be set as TRUSTED
448  *          HOST(all connections form this ip are permitted by the testbed) when
449  *          starting testbed controller at host. This can either be a single ip
450  *          address or a network address in CIDR notation.
451  * @param host the host where the controller has to be started.  CANNOT be NULL.
452  * @param cb function called when the controller is successfully started or
453  *          dies unexpectedly; GNUNET_TESTBED_controller_stop shouldn't be
454  *          called if cb is called with GNUNET_SYSERR as status. Will never be
455  *          called in the same task as 'GNUNET_TESTBED_controller_start'
456  *          (synchronous errors will be signalled by returning NULL). This
457  *          parameter cannot be NULL.
458  * @param cls closure for above callbacks
459  * @return the controller process handle, NULL on errors
460  */
461 struct GNUNET_TESTBED_ControllerProc *
462 GNUNET_TESTBED_controller_start (const char *trusted_ip,
463                                  struct GNUNET_TESTBED_Host *host,
464                                  GNUNET_TESTBED_ControllerStatusCallback cb,
465                                  void *cls);
466
467
468 /**
469  * Stop the controller process (also will terminate all peers and controllers
470  * dependent on this controller).  This function blocks until the testbed has
471  * been fully terminated (!). The controller status cb from
472  * GNUNET_TESTBED_controller_start() will not be called.
473  *
474  * @param cproc the controller process handle
475  */
476 void
477 GNUNET_TESTBED_controller_stop (struct GNUNET_TESTBED_ControllerProc *cproc);
478
479
480 /**
481  * Connect to a controller process.  The configuration to use for the connection
482  * is retreived from the given host where a controller is started using
483  * GNUNET_TESTBED_controller_start().
484  *
485  * @param host host to run the controller on; This should be the same host if
486  *          the controller was previously started with
487  *          GNUNET_TESTBED_controller_start()
488  * @param event_mask bit mask with set of events to call 'cc' for;
489  *                   or-ed values of "1LL" shifted by the
490  *                   respective 'enum GNUNET_TESTBED_EventType'
491  *                   (i.e.  "(1LL << GNUNET_TESTBED_ET_CONNECT) | ...")
492  * @param cc controller callback to invoke on events
493  * @param cc_cls closure for cc
494  * @return handle to the controller
495  */
496 struct GNUNET_TESTBED_Controller *
497 GNUNET_TESTBED_controller_connect (struct GNUNET_TESTBED_Host *host,
498                                    uint64_t event_mask,
499                                    GNUNET_TESTBED_ControllerCallback cc,
500                                    void *cc_cls);
501
502
503 /**
504  * Stop the given controller (also will terminate all peers and
505  * controllers dependent on this controller).  This function
506  * blocks until the testbed has been fully terminated (!).
507  *
508  * @param c handle to controller to stop
509  */
510 void
511 GNUNET_TESTBED_controller_disconnect (struct GNUNET_TESTBED_Controller *c);
512
513
514 /**
515  * Opaque handle for host registration
516  */
517 struct GNUNET_TESTBED_HostRegistrationHandle;
518
519
520 /**
521  * Callback which will be called to after a host registration succeeded or failed
522  *
523  * @param cls the closure
524  * @param emsg the error message; NULL if host registration is successful
525  */
526 typedef void (* GNUNET_TESTBED_HostRegistrationCompletion) (void *cls,
527                                                             const char *emsg);
528
529
530 /**
531  * Register a host with the controller. This makes the controller aware of the
532  * host. A host should be registered at the controller before starting a
533  * sub-controller on that host using GNUNET_TESTBED_controller_link().
534  *
535  * @param controller the controller handle
536  * @param host the host to register
537  * @param cc the completion callback to call to inform the status of
538  *          registration. After calling this callback the registration handle
539  *          will be invalid. Cannot be NULL
540  * @param cc_cls the closure for the cc
541  * @return handle to the host registration which can be used to cancel the
542  *           registration; NULL if another registration handle is present and
543  *           is not cancelled
544  */
545 struct GNUNET_TESTBED_HostRegistrationHandle *
546 GNUNET_TESTBED_register_host (struct GNUNET_TESTBED_Controller *controller,
547                               struct GNUNET_TESTBED_Host *host,
548                               GNUNET_TESTBED_HostRegistrationCompletion cc,
549                               void *cc_cls);
550
551
552 /**
553  * Cancel the pending registration. Note that the registration message will
554  * already be queued to be sent to the service, cancellation has only the
555  * effect that the registration completion callback for the registration is
556  * never called and from our perspective the host is not registered until the
557  * completion callback is called.
558  *
559  * @param handle the registration handle to cancel
560  */
561 void
562 GNUNET_TESTBED_cancel_registration (struct GNUNET_TESTBED_HostRegistrationHandle
563                                     *handle);
564
565
566 /**
567  * Callback to be called when an operation is completed
568  *
569  * @param cls the callback closure from functions generating an operation
570  * @param op the operation that has been finished
571  * @param emsg error message in case the operation has failed; will be NULL if
572  *          operation has executed successfully.
573  */
574 typedef void (*GNUNET_TESTBED_OperationCompletionCallback) (void *cls,
575                                                             struct
576                                                             GNUNET_TESTBED_Operation
577                                                             *op,
578                                                             const char *emsg);
579
580
581 /**
582  * Create a link from slave controller to delegated controller. Whenever the
583  * master controller is asked to start a peer at the delegated controller the
584  * request will be routed towards slave controller (if a route exists). The
585  * slave controller will then route it to the delegated controller. The
586  * configuration of the delegated controller is given and is used to either
587  * create the delegated controller or to connect to an existing controller. Note
588  * that while starting the delegated controller the configuration will be
589  * modified to accommodate available free ports.  the 'is_subordinate' specifies
590  * if the given delegated controller should be started and managed by the slave
591  * controller, or if the delegated controller already has a master and the slave
592  * controller connects to it as a non master controller. The success or failure
593  * of this operation will be signalled through the
594  * GNUNET_TESTBED_ControllerCallback() with an event of type
595  * GNUNET_TESTBED_ET_OPERATION_FINISHED
596  *
597  * @param op_cls the operation closure for the event which is generated to
598  *          signal success or failure of this operation
599  * @param master handle to the master controller who creates the association
600  * @param delegated_host requests to which host should be delegated; cannot be NULL
601  * @param slave_host which host is used to run the slave controller; use NULL to
602  *          make the master controller connect to the delegated host
603  * @param is_subordinate GNUNET_YES if the controller at delegated_host should
604  *          be started by the slave controller; GNUNET_NO if the slave
605  *          controller has to connect to the already started delegated
606  *          controller via TCP/IP
607  * @return the operation handle
608  */
609 struct GNUNET_TESTBED_Operation *
610 GNUNET_TESTBED_controller_link (void *op_cls,
611                                 struct GNUNET_TESTBED_Controller *master,
612                                 struct GNUNET_TESTBED_Host *delegated_host,
613                                 struct GNUNET_TESTBED_Host *slave_host,
614                                 int is_subordinate);
615
616
617 /**
618  * Same as the GNUNET_TESTBED_controller_link, however expects configuration in
619  * serialized and compressed
620  *
621  * @param op_cls the operation closure for the event which is generated to
622  *          signal success or failure of this operation
623  * @param master handle to the master controller who creates the association
624  * @param delegated_host requests to which host should be delegated; cannot be NULL
625  * @param slave_host which host is used to run the slave controller; use NULL to
626  *          make the master controller connect to the delegated host
627  * @param sxcfg serialized and compressed configuration
628  * @param sxcfg_size the size sxcfg
629  * @param scfg_size the size of uncompressed serialized configuration
630  * @param is_subordinate GNUNET_YES if the controller at delegated_host should
631  *          be started by the slave controller; GNUNET_NO if the slave
632  *          controller has to connect to the already started delegated
633  *          controller via TCP/IP
634  * @return the operation handle
635  */
636 struct GNUNET_TESTBED_Operation *
637 GNUNET_TESTBED_controller_link_2 (void *op_cls,
638                                   struct GNUNET_TESTBED_Controller *master,
639                                   struct GNUNET_TESTBED_Host *delegated_host,
640                                   struct GNUNET_TESTBED_Host *slave_host,
641                                   const char *sxcfg,
642                                   size_t sxcfg_size,
643                                   size_t scfg_size,
644                                   int is_subordinate);
645
646
647 /**
648  * Function to acquire the configuration of a running slave controller. The
649  * completion of the operation is signalled through the controller_cb from
650  * GNUNET_TESTBED_controller_connect(). If the operation is successful the
651  * handle to the configuration is available in the generic pointer of
652  * operation_finished field of struct GNUNET_TESTBED_EventInformation.
653  *
654  * @param op_cls the closure for the operation
655  * @param master the handle to master controller
656  * @param slave_host the host where the slave controller is running; the handle
657  *          to the slave_host should remain valid until this operation is
658  *          cancelled or marked as finished
659  * @return the operation handle; NULL if the slave_host is not registered at
660  *           master
661  */
662 struct GNUNET_TESTBED_Operation *
663 GNUNET_TESTBED_get_slave_config (void *op_cls,
664                                  struct GNUNET_TESTBED_Controller *master,
665                                  struct GNUNET_TESTBED_Host *slave_host);
666
667
668 /**
669  * Functions of this signature are called when a peer has been successfully
670  * created
671  *
672  * @param cls the closure from GNUNET_TESTBED_peer_create()
673  * @param peer the handle for the created peer; NULL on any error during
674  *          creation
675  * @param emsg NULL if peer is not NULL; else MAY contain the error description
676  */
677 typedef void (*GNUNET_TESTBED_PeerCreateCallback) (void *cls,
678                                                    struct GNUNET_TESTBED_Peer *peer,
679                                                    const char *emsg);
680
681
682 /**
683  * Create the given peer at the specified host using the given
684  * controller.  If the given controller is not running on the target
685  * host, it should find or create a controller at the target host and
686  * delegate creating the peer.  Explicit delegation paths can be setup
687  * using 'GNUNET_TESTBED_controller_link'.  If no explicit delegation
688  * path exists, a direct link with a subordinate controller is setup
689  * for the first delegated peer to a particular host; the subordinate
690  * controller is then destroyed once the last peer that was delegated
691  * to the remote host is stopped.
692  *
693  * Creating the peer only creates the handle to manipulate and further
694  * configure the peer; use "GNUNET_TESTBED_peer_start" and
695  * "GNUNET_TESTBED_peer_stop" to actually start/stop the peer's
696  * processes.
697  *
698  * Note that the given configuration will be adjusted by the
699  * controller to avoid port/path conflicts with other peers.
700  * The "final" configuration can be obtained using
701  * 'GNUNET_TESTBED_peer_get_information'.
702  *
703  * @param controller controller process to use
704  * @param host host to run the peer on; cannot be NULL
705  * @param cfg Template configuration to use for the peer. Should exist until
706  *          operation is cancelled or GNUNET_TESTBED_operation_done() is called
707  * @param cb the callback to call when the peer has been created
708  * @param cls the closure to the above callback
709  * @return the operation handle
710  */
711 struct GNUNET_TESTBED_Operation *
712 GNUNET_TESTBED_peer_create (struct GNUNET_TESTBED_Controller *controller,
713                             struct GNUNET_TESTBED_Host *host,
714                             const struct GNUNET_CONFIGURATION_Handle *cfg,
715                             GNUNET_TESTBED_PeerCreateCallback cb,
716                             void *cls);
717
718
719 /**
720  * Functions of this signature are called when a peer has been successfully
721  * started or stopped.
722  *
723  * @param cls the closure from GNUNET_TESTBED_peer_start/stop()
724  * @param emsg NULL on success; otherwise an error description
725  */
726 typedef void (*GNUNET_TESTBED_PeerChurnCallback) (void *cls,
727                                                   const char *emsg);
728
729
730 /**
731  * Start the given peer.
732  *
733  * @param op_cls the closure for this operation; will be set in the event
734  *          information
735  * @param peer peer to start
736  * @param pcc function to call upon completion
737  * @param pcc_cls closure for 'pcc'
738  * @return handle to the operation
739  */
740 struct GNUNET_TESTBED_Operation *
741 GNUNET_TESTBED_peer_start (void *op_cls,
742                            struct GNUNET_TESTBED_Peer *peer,
743                            GNUNET_TESTBED_PeerChurnCallback pcc,
744                            void *pcc_cls);
745
746
747 /**
748  * Stop the given peer.  The handle remains valid (use
749  * "GNUNET_TESTBED_peer_destroy" to fully clean up the
750  * state of the peer).
751  *
752  * @param op_cls the closure for this operation; will be set in the event
753  *          information
754  * @param peer peer to stop
755  * @param pcc function to call upon completion
756  * @param pcc_cls closure for 'pcc'
757  * @return handle to the operation
758  */
759 struct GNUNET_TESTBED_Operation *
760 GNUNET_TESTBED_peer_stop (void *op_cls,
761                           struct GNUNET_TESTBED_Peer *peer,
762                           GNUNET_TESTBED_PeerChurnCallback pcc,
763                           void *pcc_cls);
764
765
766 /**
767  * Data returned from GNUNET_TESTBED_peer_get_information
768  */
769 struct GNUNET_TESTBED_PeerInformation
770 {
771   /**
772    * Peer information type; captures which of the types
773    * in the 'op_result' is actually in use.
774    */
775   enum GNUNET_TESTBED_PeerInformationType pit;
776
777   /**
778    * The result of the get information operation; Choose according to the pit
779    */
780   union
781   {
782     /**
783      * The configuration of the peer
784      */
785     struct GNUNET_CONFIGURATION_Handle *cfg;
786
787     /**
788      * The identity of the peer
789      */
790     struct GNUNET_PeerIdentity *id;
791   } result;
792 };
793
794
795 /**
796  * Callback to be called when the requested peer information is available
797  *
798  * @param cb_cls the closure from GNUNET_TETSBED_peer_get_information()
799  * @param op the operation this callback corresponds to
800  * @param pinfo the result; will be NULL if the operation has failed
801  * @param emsg error message if the operation has failed; will be NULL if the
802  *          operation is successfull
803  */
804 typedef void (*GNUNET_TESTBED_PeerInfoCallback) (void *cb_cls,
805                                                  struct GNUNET_TESTBED_Operation
806                                                  *op,
807                                                  const struct
808                                                  GNUNET_TESTBED_PeerInformation
809                                                  *pinfo,
810                                                  const char *emsg);
811
812
813 /**
814  * Request information about a peer. The controller callback will not be called
815  * with event type GNUNET_TESTBED_ET_OPERATION_FINISHED when result for this
816  * operation is available. Instead, the GNUNET_TESTBED_PeerInfoCallback() will
817  * be called.
818  *
819  * @param peer peer to request information about
820  * @param pit desired information
821  * @param cb the convenience callback to be called when results for this
822  *          operation are available
823  * @param cb_cls the closure for the above callback
824  * @return handle to the operation
825  */
826 struct GNUNET_TESTBED_Operation *
827 GNUNET_TESTBED_peer_get_information (struct GNUNET_TESTBED_Peer *peer,
828                                      enum GNUNET_TESTBED_PeerInformationType
829                                      pit,
830                                      GNUNET_TESTBED_PeerInfoCallback cb,
831                                      void *cb_cls);
832
833
834 /**
835  * Change peer configuration.  Must only be called while the
836  * peer is stopped.  Ports and paths cannot be changed this
837  * way.
838  *
839  * @param peer peer to change configuration for
840  * @param cfg new configuration (differences to existing
841  *            configuration only)
842  * @return handle to the operation
843  */
844 struct GNUNET_TESTBED_Operation *
845 GNUNET_TESTBED_peer_update_configuration (struct GNUNET_TESTBED_Peer *peer,
846                                           const struct GNUNET_CONFIGURATION_Handle *cfg);
847
848
849 /**
850  * Destroy the given peer; the peer should have been
851  * stopped first (if it was started).
852  *
853  * @param peer peer to stop
854  * @return handle to the operation
855  */
856 struct GNUNET_TESTBED_Operation *
857 GNUNET_TESTBED_peer_destroy (struct GNUNET_TESTBED_Peer *peer);
858
859
860 /**
861  * Start or stop given service at a peer.  This should not be called to
862  * start/stop the peer's ARM service.  Use GNUNET_TESTBED_peer_start(),
863  * GNUNET_TESTBED_peer_stop() for starting/stopping peer's ARM service.  Success
864  * or failure of the generated operation is signalled through the controller
865  * event callback and/or operation completion callback.
866  *
867  * @param op_cls the closure for the operation
868  * @param peer the peer whose service is to be started/stopped
869  * @param service_name the name of the service
870  * @param cb the operation completion callback
871  * @param cb_cls the closure for the operation completion callback
872  * @param start 1 to start the service; 0 to stop the service
873  * @return an operation handle; NULL upon error (peer not running)
874  */
875 struct GNUNET_TESTBED_Operation *
876 GNUNET_TESTBED_peer_manage_service (void *op_cls,
877                                     struct GNUNET_TESTBED_Peer *peer,
878                                     const char *service_name,
879                                     GNUNET_TESTBED_OperationCompletionCallback cb,
880                                     void *cb_cls,
881                                     unsigned int start);
882
883
884 /**
885  * Stops and destroys all peers.  Is equivalent of calling
886  * GNUNET_TESTBED_peer_stop() and GNUNET_TESTBED_peer_destroy() on all peers,
887  * except that the peer stop event and operation finished event corresponding to
888  * the respective functions are not generated.  This function should be called
889  * when there are no other pending operations.  If there are pending operations,
890  * it will return NULL
891  *
892  * @param c the controller to send this message to
893  * @param op_cls closure for the operation
894  * @param cb the callback to call when all peers are stopped and destroyed
895  * @param cb_cls the closure for the callback
896  * @return operation handle on success; NULL if any pending operations are
897  *           present
898  */
899 struct GNUNET_TESTBED_Operation *
900 GNUNET_TESTBED_shutdown_peers (struct GNUNET_TESTBED_Controller *c,
901                                void *op_cls,
902                                GNUNET_TESTBED_OperationCompletionCallback cb,
903                                void *cb_cls);
904
905
906
907 /**
908  * Options for peer connections.
909  */
910 enum GNUNET_TESTBED_ConnectOption
911 {
912   /**
913    * No option (not valid as an argument).
914    */
915   GNUNET_TESTBED_CO_NONE = 0,
916
917   /**
918    * Allow or disallow a connection between the specified peers.
919    * Followed by GNUNET_NO (int) if a connection is disallowed
920    * or GNUNET_YES if a connection is allowed.  Note that the
921    * default (all connections allowed or disallowed) is
922    * specified in the configuration of the controller.
923    */
924   GNUNET_TESTBED_CO_ALLOW = 1,
925
926   /**
927    * FIXME: add (and implement) options to limit connection to
928    * particular transports, force simulation of particular latencies
929    * or message loss rates, or set bandwidth limitations.
930    */
931
932 };
933
934
935 /**
936  * Manipulate the P2P underlay topology by configuring a link
937  * between two peers.
938  *
939  * @param op_cls closure argument to give with the operation event
940  * @param p1 first peer
941  * @param p2 second peer
942  * @param co option to change
943  * @param ap option-specific values
944  * @return handle to the operation, NULL if configuring the link at this
945  *         time is not allowed
946  */
947 struct GNUNET_TESTBED_Operation *
948 GNUNET_TESTBED_underlay_configure_link_va (void *op_cls,
949                                            struct GNUNET_TESTBED_Peer *p1,
950                                            struct GNUNET_TESTBED_Peer *p2,
951                                            enum GNUNET_TESTBED_ConnectOption co,
952                                            va_list ap);
953
954
955 /**
956  * Manipulate the P2P underlay topology by configuring a link
957  * between two peers.
958  *
959  * @param op_cls closure argument to give with the operation event
960  * @param p1 first peer
961  * @param p2 second peer
962  * @param co option to change
963  * @param ... option-specific values
964  * @return handle to the operation, NULL if configuring the link at this
965  *         time is not allowed
966  */
967 struct GNUNET_TESTBED_Operation *
968 GNUNET_TESTBED_underlay_configure_link (void *op_cls,
969                                         struct GNUNET_TESTBED_Peer *p1,
970                                         struct GNUNET_TESTBED_Peer *p2,
971                                         enum GNUNET_TESTBED_ConnectOption co, ...);
972
973
974
975 /**
976  * Topologies and topology options supported for testbeds. Options should always
977  * end with GNUNET_TESTBED_TOPOLOGY_OPTION_END
978  */
979 enum GNUNET_TESTBED_TopologyOption
980 {
981   /**
982    * A clique (everyone connected to everyone else).  No options. If there are N
983    * peers this topology results in (N * (N -1)) connections.
984    */
985   GNUNET_TESTBED_TOPOLOGY_CLIQUE,
986
987   /**
988    * Small-world network (2d torus plus random links).  Followed
989    * by the number of random links to add (unsigned int).
990    */
991   GNUNET_TESTBED_TOPOLOGY_SMALL_WORLD,
992
993   /**
994    * Small-world network (ring plus random links).  Followed
995    * by the number of random links to add (unsigned int).
996    */
997   GNUNET_TESTBED_TOPOLOGY_SMALL_WORLD_RING,
998
999   /**
1000    * Ring topology.  No options.
1001    */
1002   GNUNET_TESTBED_TOPOLOGY_RING,
1003
1004   /**
1005    * 2-d torus.  No options.
1006    */
1007   GNUNET_TESTBED_TOPOLOGY_2D_TORUS,
1008
1009   /**
1010    * Random graph.  Followed by the number of random links to be established
1011    * (unsigned int)
1012    */
1013   GNUNET_TESTBED_TOPOLOGY_ERDOS_RENYI,
1014
1015   /**
1016    * Certain percentage of peers are unable to communicate directly
1017    * replicating NAT conditions.  Followed by the fraction of
1018    * NAT'ed peers (float).
1019    */
1020   GNUNET_TESTBED_TOPOLOGY_INTERNAT,
1021
1022   /**
1023    * Scale free topology. No options.
1024    */
1025   GNUNET_TESTBED_TOPOLOGY_SCALE_FREE,
1026
1027   /**
1028    * Straight line topology.  No options.
1029    */
1030   GNUNET_TESTBED_TOPOLOGY_LINE,
1031
1032   /**
1033    * Read a topology from a given file.  Followed by the name of the file (const char *).
1034    */
1035   GNUNET_TESTBED_TOPOLOGY_FROM_FILE,
1036
1037   /**
1038    * All peers are disconnected.  No options.
1039    */
1040   GNUNET_TESTBED_TOPOLOGY_NONE,
1041
1042   /**
1043    * The options should always end with this
1044    */
1045   GNUNET_TESTBED_TOPOLOGY_OPTION_END,
1046
1047   /* The following are not topologies but influence how the topology has to be
1048      setup. These options should follow the topology specific options (if
1049      required by the chosen topology). Note that these should be given before
1050      GNUNET_TESTBED_TOPOLOGY_OPTION_END */
1051
1052   /**
1053    * How many times should the failed overlay connect operations be retried
1054    * before giving up.  The default if this option is not specified is to retry
1055    * 3 times.  This option takes and unsigned integer as a parameter.  Use this
1056    * option with parameter 0 to disable retrying of failed overlay connect
1057    * operations.
1058    */
1059   GNUNET_TESTBED_TOPOLOGY_RETRY_CNT
1060 };
1061
1062
1063 /**
1064  * Configure overall network topology to have a particular shape.
1065  *
1066  * @param op_cls closure argument to give with the operation event
1067  * @param num_peers number of peers in 'peers'
1068  * @param peers array of 'num_peers' with the peers to configure
1069  * @param topo desired underlay topology to use
1070  * @param ap topology-specific options
1071  * @return handle to the operation, NULL if configuring the topology
1072  *         is not allowed at this time
1073  */
1074 struct GNUNET_TESTBED_Operation *
1075 GNUNET_TESTBED_underlay_configure_topology_va (void *op_cls,
1076                                                unsigned int num_peers,
1077                                                struct GNUNET_TESTBED_Peer **peers,
1078                                                enum GNUNET_TESTBED_TopologyOption topo,
1079                                                va_list ap);
1080
1081
1082 /**
1083  * Configure overall network topology to have a particular shape.
1084  *
1085  * @param op_cls closure argument to give with the operation event
1086  * @param num_peers number of peers in 'peers'
1087  * @param peers array of 'num_peers' with the peers to configure
1088  * @param topo desired underlay topology to use
1089  * @param ... topology-specific options
1090  * @return handle to the operation, NULL if configuring the topology
1091  *         is not allowed at this time
1092  */
1093 struct GNUNET_TESTBED_Operation *
1094 GNUNET_TESTBED_underlay_configure_topology (void *op_cls,
1095                                             unsigned int num_peers,
1096                                             struct GNUNET_TESTBED_Peer **peers,
1097                                             enum GNUNET_TESTBED_TopologyOption topo,
1098                                             ...);
1099
1100
1101 /**
1102  * Both peers must have been started before calling this function.
1103  * This function then obtains a HELLO from 'p1', gives it to 'p2'
1104  * and asks 'p2' to connect to 'p1'.
1105  *
1106  * @param op_cls closure argument to give with the operation event
1107  * @param cb the callback to call when this operation has finished
1108  * @param cb_cls the closure for the above callback
1109  * @param p1 first peer
1110  * @param p2 second peer
1111  * @return handle to the operation, NULL if connecting these two
1112  *         peers is fundamentally not possible at this time (peers
1113  *         not running or underlay disallows)
1114  */
1115 struct GNUNET_TESTBED_Operation *
1116 GNUNET_TESTBED_overlay_connect (void *op_cls,
1117                                 GNUNET_TESTBED_OperationCompletionCallback cb,
1118                                 void *cb_cls,
1119                                 struct GNUNET_TESTBED_Peer *p1,
1120                                 struct GNUNET_TESTBED_Peer *p2);
1121
1122
1123 /**
1124  * Callbacks of this type are called when topology configuration is completed
1125  *
1126  * @param cls the operation closure given to
1127  *          GNUNET_TESTBED_overlay_configure_topology_va() and
1128  *          GNUNET_TESTBED_overlay_configure() calls
1129  * @param nsuccess the number of successful overlay connects
1130  * @param nfailures the number of overlay connects which failed
1131  */
1132 typedef void (*GNUNET_TESTBED_TopologyCompletionCallback) (void *cls, 
1133                                                           unsigned int nsuccess,
1134                                                           unsigned int nfailures);
1135
1136
1137 /**
1138  * All peers must have been started before calling this function.
1139  * This function then connects the given peers in the P2P overlay
1140  * using the given topology.
1141  *
1142  * @param op_cls closure argument to give with the peer connect operation events
1143  *          generated through this function
1144  * @param num_peers number of peers in 'peers'
1145  * @param peers array of 'num_peers' with the peers to configure
1146  * @param max_connections the maximums number of overlay connections that will
1147  *          be made to achieve the given topology
1148  * @param comp_cb the completion callback to call when the topology generation
1149  *          is completed
1150  * @param comp_cb_cls closure for the above completion callback
1151  * @param topo desired underlay topology to use
1152  * @param va topology-specific options
1153  * @return handle to the operation, NULL if connecting these
1154  *         peers is fundamentally not possible at this time (peers
1155  *         not running or underlay disallows) or if num_peers is less than 2
1156  */
1157 struct GNUNET_TESTBED_Operation *
1158 GNUNET_TESTBED_overlay_configure_topology_va (void *op_cls,
1159                                               unsigned int num_peers,
1160                                               struct GNUNET_TESTBED_Peer **peers,
1161                                               unsigned int *max_connections,
1162                                               GNUNET_TESTBED_TopologyCompletionCallback
1163                                               comp_cb,
1164                                               void *comp_cb_cls,
1165                                               enum GNUNET_TESTBED_TopologyOption topo,
1166                                               va_list va);
1167
1168
1169 /**
1170  * All peers must have been started before calling this function.
1171  * This function then connects the given peers in the P2P overlay
1172  * using the given topology.
1173  *
1174  * @param op_cls closure argument to give with the peer connect operation events
1175  *          generated through this function
1176  * @param num_peers number of peers in 'peers'
1177  * @param peers array of 'num_peers' with the peers to configure
1178  * @param max_connections the maximums number of overlay connections that will
1179  *          be made to achieve the given topology
1180  * @param comp_cb the completion callback to call when the topology generation
1181  *          is completed
1182  * @param comp_cb_cls closure for the above completion callback
1183  * @param topo desired underlay topology to use
1184  * @param ... topology-specific options
1185  * @return handle to the operation, NULL if connecting these
1186  *         peers is fundamentally not possible at this time (peers
1187  *         not running or underlay disallows) or if num_peers is less than 2
1188  */
1189 struct GNUNET_TESTBED_Operation *
1190 GNUNET_TESTBED_overlay_configure_topology (void *op_cls,
1191                                            unsigned int num_peers,
1192                                            struct GNUNET_TESTBED_Peer **peers,
1193                                            unsigned int *max_connections,
1194                                            GNUNET_TESTBED_TopologyCompletionCallback
1195                                            comp_cb,
1196                                            void *comp_cb_cls,
1197                                            enum GNUNET_TESTBED_TopologyOption topo,
1198                                            ...);
1199
1200
1201 /**
1202  * Ask the testbed controller to write the current overlay topology to
1203  * a file.  Naturally, the file will only contain a snapshot as the
1204  * topology may evolve all the time.
1205  * FIXME: needs continuation!?
1206  *
1207  * @param controller overlay controller to inspect
1208  * @param filename name of the file the topology should
1209  *        be written to.
1210  */
1211 void
1212 GNUNET_TESTBED_overlay_write_topology_to_file (struct GNUNET_TESTBED_Controller *controller,
1213                                                const char *filename);
1214
1215
1216 /**
1217  * Adapter function called to establish a connection to
1218  * a service.
1219  *
1220  * @param cls closure
1221  * @param cfg configuration of the peer to connect to; will be available until
1222  *          GNUNET_TESTBED_operation_done() is called on the operation returned
1223  *          from GNUNET_TESTBED_service_connect()
1224  * @return service handle to return in 'op_result', NULL on error
1225  */
1226 typedef void * (*GNUNET_TESTBED_ConnectAdapter)(void *cls,
1227                                                 const struct GNUNET_CONFIGURATION_Handle *cfg);
1228
1229
1230 /**
1231  * Adapter function called to destroy a connection to
1232  * a service.
1233  *
1234  * @param cls closure
1235  * @param op_result service handle returned from the connect adapter
1236  */
1237 typedef void (*GNUNET_TESTBED_DisconnectAdapter)(void *cls,
1238                                                  void *op_result);
1239
1240
1241 /**
1242  * Callback to be called when a service connect operation is completed
1243  *
1244  * @param cls the callback closure from functions generating an operation
1245  * @param op the operation that has been finished
1246  * @param ca_result the service handle returned from GNUNET_TESTBED_ConnectAdapter()
1247  * @param emsg error message in case the operation has failed; will be NULL if
1248  *          operation has executed successfully.
1249  */
1250 typedef void (*GNUNET_TESTBED_ServiceConnectCompletionCallback) (void *cls,
1251                                                                  struct
1252                                                                  GNUNET_TESTBED_Operation
1253                                                                  *op,
1254                                                                  void
1255                                                                  *ca_result,
1256                                                                  const char
1257                                                                  *emsg );
1258
1259
1260 /**
1261  * Connect to a service offered by the given peer.  Will ensure that
1262  * the request is queued to not overwhelm our ability to create and
1263  * maintain connections with other systems.  The actual service
1264  * handle is then returned via the 'op_result' member in the event
1265  * callback.  The 'ca' callback is used to create the connection
1266  * when the time is right; the 'da' callback will be used to
1267  * destroy the connection (upon 'GNUNET_TESTBED_operation_done').
1268  * 'GNUNET_TESTBED_operation_cancel' can be used to abort this
1269  * operation until the event callback has been called.
1270  *
1271  * @param op_cls closure to pass in operation event // FIXME: didn't we say we'd no longer use the global callback for these? -CG
1272  * @param peer peer that runs the service
1273  * @param service_name name of the service to connect to
1274  * @param cb the callback to call when this operation finishes
1275  * @param cb_cls closure for the above callback
1276  * @param ca helper function to establish the connection
1277  * @param da helper function to close the connection
1278  * @param cada_cls closure for ca and da
1279  * @return handle for the operation
1280  */
1281 struct GNUNET_TESTBED_Operation *
1282 GNUNET_TESTBED_service_connect (void *op_cls,
1283                                 struct GNUNET_TESTBED_Peer *peer,
1284                                 const char *service_name,
1285                                 GNUNET_TESTBED_ServiceConnectCompletionCallback cb,
1286                                 void *cb_cls,
1287                                 GNUNET_TESTBED_ConnectAdapter ca,
1288                                 GNUNET_TESTBED_DisconnectAdapter da,
1289                                 void *cada_cls);
1290
1291
1292 /**
1293  * This function is used to signal that the event information (struct
1294  * GNUNET_TESTBED_EventInformation) from an operation has been fully processed
1295  * i.e. if the event callback is ever called for this operation. If the event
1296  * callback for this operation has not yet been called, calling this function
1297  * cancels the operation, frees its resources and ensures the no event is
1298  * generated with respect to this operation. Note that however cancelling an
1299  * operation does NOT guarantee that the operation will be fully undone (or that
1300  * nothing ever happened). 
1301  *
1302  * This function MUST be called for every operation to fully remove the
1303  * operation from the operation queue.  After calling this function, if
1304  * operation is completed and its event information is of type
1305  * GNUNET_TESTBED_ET_OPERATION_FINISHED, the 'op_result' becomes invalid (!).
1306
1307  * If the operation is generated from GNUNET_TESTBED_service_connect() then
1308  * calling this function on such as operation calls the disconnect adapter if
1309  * the connect adapter was ever called.
1310  *
1311  * @param operation operation to signal completion or cancellation
1312  */
1313 void
1314 GNUNET_TESTBED_operation_done (struct GNUNET_TESTBED_Operation *operation);
1315
1316
1317 /**
1318  * Callback function to process statistic values from all peers.
1319  *
1320  * @param cls closure
1321  * @param peer the peer the statistic belong to
1322  * @param subsystem name of subsystem that created the statistic
1323  * @param name the name of the datum
1324  * @param value the current value
1325  * @param is_persistent GNUNET_YES if the value is persistent, GNUNET_NO if not
1326  * @return GNUNET_OK to continue, GNUNET_SYSERR to abort iteration
1327  */
1328 typedef int (*GNUNET_TESTBED_StatisticsIterator) (void *cls,
1329                                                   const struct GNUNET_TESTBED_Peer *peer,
1330                                                   const char *subsystem,
1331                                                   const char *name,
1332                                                   uint64_t value,
1333                                                   int is_persistent);
1334
1335
1336 /**
1337  * Convenience method that iterates over all (running) peers
1338  * and retrieves all statistics from each peer.
1339  *
1340  * @param num_peers number of peers to iterate over
1341  * @param peers array of peers to iterate over
1342  * @param subsystem limit to the specified subsystem, NULL for all subsystems
1343  * @param name name of the statistic value, NULL for all values
1344  * @param proc processing function for each statistic retrieved
1345  * @param cont continuation to call once call is completed.  The completion of this
1346  *          operation is *ONLY* signalled through this callback -- no
1347  *          GNUNET_TESTBED_ET_OPERATION_FINISHED is generated
1348  * @param cls closure to pass to proc and cont
1349  * @return operation handle to cancel the operation
1350  */
1351 struct GNUNET_TESTBED_Operation *
1352 GNUNET_TESTBED_get_statistics (unsigned int num_peers,
1353                                struct GNUNET_TESTBED_Peer **peers,
1354                                const char *subsystem, const char *name,
1355                                GNUNET_TESTBED_StatisticsIterator proc,
1356                                GNUNET_TESTBED_OperationCompletionCallback cont,
1357                                void *cls);
1358
1359
1360 /**
1361  * Signature of a main function for a testcase.
1362  *
1363  * @param cls closure
1364  * @param num_peers number of peers in 'peers'
1365  * @param peers handle to peers run in the testbed.  NULL upon timeout (see
1366  *          GNUNET_TESTBED_test_run()).
1367  * @param links_succeeded the number of overlay link connection attempts that
1368  *          succeeded
1369  * @param links_failed the number of overlay link connection attempts that
1370  *          failed
1371  */
1372 typedef void (*GNUNET_TESTBED_TestMaster)(void *cls,
1373                                           unsigned int num_peers,
1374                                           struct GNUNET_TESTBED_Peer **peers,
1375                                           unsigned int links_succeeded,
1376                                           unsigned int links_failed);
1377
1378
1379 /**
1380  * Convenience method for running a testbed with
1381  * a single call.  Underlay and overlay topology
1382  * are configured using the "UNDERLAY" and "OVERLAY"
1383  * options in the "[testbed]" section of the configuration\
1384  * (with possible options given in "UNDERLAY_XXX" and/or
1385  * "OVERLAY_XXX").
1386  *
1387  * The test_master callback will be called once the testbed setup is finished or
1388  * upon a timeout.  This timeout is given through the configuration file by
1389  * setting the option "SETUP_TIMEOUT" in "[TESTBED]" section.
1390  *
1391  * The testbed is to be terminated using a call to
1392  * "GNUNET_SCHEDULER_shutdown".
1393  *
1394  * @param host_filename name of the file with the 'hosts', NULL
1395  *        to run everything on 'localhost'
1396  * @param cfg configuration to use (for testbed, controller and peers)
1397  * @param num_peers number of peers to start; FIXME: maybe put that ALSO into
1398  *        cfg?; should be greater than 0
1399  * @param event_mask bit mask with set of events to call 'cc' for;
1400  *                   or-ed values of "1LL" shifted by the
1401  *                   respective 'enum GNUNET_TESTBED_EventType'
1402  *                   (i.e.  "(1LL << GNUNET_TESTBED_ET_CONNECT) || ...")
1403  * @param cc controller callback to invoke on events; This callback is called
1404  *        for all peer start events even if GNUNET_TESTBED_ET_PEER_START isn't
1405  *        set in the event_mask as this is the only way get access to the
1406  *        handle of each peer
1407  * @param cc_cls closure for cc
1408  * @param test_master this callback will be called once the test is ready or
1409  *          upon timeout
1410  * @param test_master_cls closure for 'test_master'.
1411  */
1412 void
1413 GNUNET_TESTBED_run (const char *host_filename,
1414                     const struct GNUNET_CONFIGURATION_Handle *cfg,
1415                     unsigned int num_peers,
1416                     uint64_t event_mask,
1417                     GNUNET_TESTBED_ControllerCallback cc,
1418                     void *cc_cls,
1419                     GNUNET_TESTBED_TestMaster test_master,
1420                     void *test_master_cls);
1421
1422
1423 /**
1424  * Convenience method for running a "simple" test on the local system
1425  * with a single call from 'main'.  Underlay and overlay topology are
1426  * configured using the "UNDERLAY" and "OVERLAY" options in the
1427  * "[TESTBED]" section of the configuration (with possible options
1428  * given in "UNDERLAY_XXX" and/or "OVERLAY_XXX").
1429  *
1430  * The test_master callback will be called once the testbed setup is finished or
1431  * upon a timeout.  This timeout is given through the configuration file by
1432  * setting the option "SETUP_TIMEOUT" in "[TESTBED]" section.
1433  *
1434  * The test is to be terminated using a call to
1435  * "GNUNET_SCHEDULER_shutdown".  If starting the test fails,
1436  * the program is stopped without 'master' ever being run.
1437  *
1438  * NOTE: this function should be called from 'main', NOT from
1439  * within a GNUNET_SCHEDULER-loop.  This function will initialze
1440  * the scheduler loop, the testbed and then pass control to
1441  * 'master'.
1442  *
1443  * @param testname name of the testcase (to configure logging, etc.)
1444  * @param cfg_filename configuration filename to use
1445  *              (for testbed, controller and peers)
1446  * @param num_peers number of peers to start; should be greter than 0
1447  * @param event_mask bit mask with set of events to call 'cc' for;
1448  *                   or-ed values of "1LL" shifted by the
1449  *                   respective 'enum GNUNET_TESTBED_EventType'
1450  *                   (i.e.  "(1LL << GNUNET_TESTBED_ET_CONNECT) || ...")
1451  * @param cc controller callback to invoke on events; This callback is called
1452  *        for all peer start events even if GNUNET_TESTBED_ET_PEER_START isn't
1453  *        set in the event_mask as this is the only way get access to the
1454  *        handle of each peer
1455  * @param cc_cls closure for cc
1456  * @param test_master this callback will be called once the test is ready or
1457  *          upon timeout
1458  * @param test_master_cls closure for 'test_master'.
1459  * @return GNUNET_SYSERR on error, GNUNET_OK on success
1460  */
1461 int
1462 GNUNET_TESTBED_test_run (const char *testname,
1463                          const char *cfg_filename,
1464                          unsigned int num_peers,
1465                          uint64_t event_mask,
1466                          GNUNET_TESTBED_ControllerCallback cc,
1467                          void *cc_cls,
1468                          GNUNET_TESTBED_TestMaster test_master,
1469                          void *test_master_cls);
1470
1471
1472 #if 0                           /* keep Emacsens' auto-indent happy */
1473 {
1474 #endif
1475
1476
1477 #ifdef __cplusplus
1478 }
1479 #endif
1480
1481 #endif