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