fix related to #4909/12605: force desirability of path if path is in use
[oweals/gnunet.git] / src / testbed / testbed_api.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  * @file testbed/testbed_api.h
23  * @brief Interface for functions internally exported from testbed_api.c
24  * @author Sree Harsha Totakura
25  */
26
27 #ifndef TESTBED_API_H
28 #define TESTBED_API_H
29
30 #include "gnunet_util_lib.h"
31 #include "gnunet_testbed_service.h"
32 #include "testbed.h"
33 #include "testbed_helper.h"
34
35 /**
36  * Testbed Helper binary name
37  */
38 #define HELPER_TESTBED_BINARY "gnunet-helper-testbed"
39
40
41 /**
42  * Enumeration of operations
43  */
44 enum OperationType
45 {
46     /**
47      * Peer create operation
48      */
49   OP_PEER_CREATE,
50
51     /**
52      * Peer start operation
53      */
54   OP_PEER_START,
55
56     /**
57      * Peer stop operation
58      */
59   OP_PEER_STOP,
60
61     /**
62      * Peer destroy operation
63      */
64   OP_PEER_DESTROY,
65
66     /**
67      * Get peer information operation
68      */
69   OP_PEER_INFO,
70
71   /**
72    * Reconfigure a peer
73    */
74   OP_PEER_RECONFIGURE,
75
76     /**
77      * Overlay connection operation
78      */
79   OP_OVERLAY_CONNECT,
80
81     /**
82      * Forwarded operation
83      */
84   OP_FORWARDED,
85
86     /**
87      * Link controllers operation
88      */
89   OP_LINK_CONTROLLERS,
90
91   /**
92    * Get slave config operation
93    */
94   OP_GET_SLAVE_CONFIG,
95
96   /**
97    * Stop and destroy all peers
98    */
99   OP_SHUTDOWN_PEERS,
100
101   /**
102    * Start/stop service at a peer
103    */
104   OP_MANAGE_SERVICE
105 };
106
107
108
109 /**
110  * Enumeration of states of OperationContext
111  */
112 enum OperationContextState
113 {
114   /**
115    * The initial state where the associated operation has just been created
116    * and is waiting in the operation queues to be started
117    */
118   OPC_STATE_INIT = 0,
119
120   /**
121    * The operation has been started. It may occupy some resources which are to
122    * be freed if cancelled.
123    */
124   OPC_STATE_STARTED,
125
126   /**
127    * The operation has finished. The end results of this operation may occupy
128    * some resources which are to be freed by operation_done
129    */
130   OPC_STATE_FINISHED
131 };
132
133
134 /**
135  * Context information for GNUNET_TESTBED_Operation
136  */
137 struct OperationContext
138 {
139   /**
140    * The controller to which this operation context belongs to
141    */
142   struct GNUNET_TESTBED_Controller *c;
143
144   /**
145    * The operation
146    */
147   struct GNUNET_TESTBED_Operation *op;
148
149   /**
150    * The operation closure
151    */
152   void *op_cls;
153
154   /**
155    * Data relevant to the operation
156    */
157   void *data;
158
159   /**
160    * The id of the opearation
161    */
162   uint64_t id;
163
164   /**
165    * The type of operation
166    */
167   enum OperationType type;
168
169   /**
170    * The state of the operation
171    */
172   enum OperationContextState state;
173 };
174
175
176 /**
177  * Operation empty callback
178  *
179  * @param cls closure
180  */
181 typedef void
182 (*TESTBED_opcq_empty_cb) (void *cls);
183
184
185 /**
186  * Handle to interact with a GNUnet testbed controller.  Each
187  * controller has at least one master handle which is created when the
188  * controller is created; this master handle interacts with the
189  * controller process, destroying it destroys the controller (by
190  * closing stdin of the controller process).  Additionally,
191  * controllers can interact with each other (in a P2P fashion); those
192  * links are established via TCP/IP on the controller's service port.
193  */
194 struct GNUNET_TESTBED_Controller
195 {
196   /**
197    * The host where the controller is running
198    */
199   struct GNUNET_TESTBED_Host *host;
200
201   /**
202    * The controller callback
203    */
204   GNUNET_TESTBED_ControllerCallback cc;
205
206   /**
207    * The closure for controller callback
208    */
209   void *cc_cls;
210
211   /**
212    * The configuration to use while connecting to controller
213    */
214   struct GNUNET_CONFIGURATION_Handle *cfg;
215
216   /**
217    * The message queue to the controller service
218    */
219   struct GNUNET_MQ_Handle *mq;
220
221   /**
222    * The host registration handle; NULL if no current registration requests are
223    * present
224    */
225   struct GNUNET_TESTBED_HostRegistrationHandle *rh;
226
227   /**
228    * The map of active operation contexts
229    */
230   struct GNUNET_CONTAINER_MultiHashMap32 *opc_map;
231
232   /**
233    * If this callback is not NULL, schedule it as a task when opc_map gets empty
234    */
235   TESTBED_opcq_empty_cb opcq_empty_cb;
236
237   /**
238    * Closure for the above task
239    */
240   void *opcq_empty_cls;
241
242   /**
243    * Operation queue for simultaneous operations
244    */
245   struct OperationQueue *opq_parallel_operations;
246
247   /**
248    * Operation queue for simultaneous service connections
249    */
250   struct OperationQueue *opq_parallel_service_connections;
251
252   /**
253    * Operation queue for simultaneous topology configuration operations
254    */
255   struct OperationQueue *opq_parallel_topology_config_operations;
256
257   /**
258    * handle for hashtable of barrier handles, values are
259    * of type `struct GNUNET_TESTBED_Barrier`.
260    */
261   struct GNUNET_CONTAINER_MultiHashMap *barrier_map;
262
263   /**
264    * The controller event mask
265    */
266   uint64_t event_mask;
267
268   /**
269    * The operation id counter. use current value and increment
270    */
271   uint32_t operation_counter;
272
273 };
274
275
276 /**
277  * Handle for barrier
278  */
279 struct GNUNET_TESTBED_Barrier
280 {
281   /**
282    * hashcode identifying this barrier in the hashmap
283    */
284   struct GNUNET_HashCode key;
285
286   /**
287    * The controller handle given while initiliasing this barrier
288    */
289   struct GNUNET_TESTBED_Controller *c;
290
291   /**
292    * The name of the barrier
293    */
294   char *name;
295
296   /**
297    * The continuation callback to call when we have a status update on this
298    */
299   GNUNET_TESTBED_barrier_status_cb cb;
300
301   /**
302    * the closure for the above callback
303    */
304   void *cls;
305
306   /**
307    * Should the barrier crossed status message be echoed back to the controller?
308    */
309   int echo;
310 };
311
312
313
314 /**
315  * Queues a message in send queue for sending to the service
316  *
317  * @param controller the handle to the controller
318  * @param msg the message to queue
319  * @deprecated
320  */
321 void
322 GNUNET_TESTBED_queue_message_ (struct GNUNET_TESTBED_Controller *controller,
323                                struct GNUNET_MessageHeader *msg);
324
325
326 /**
327  * Inserts the given operation context into the operation context map of the
328  * given controller.  Creates the operation context map if one does not exist
329  * for the controller
330  *
331  * @param c the controller
332  * @param opc the operation context to be inserted
333  */
334 void
335 GNUNET_TESTBED_insert_opc_ (struct GNUNET_TESTBED_Controller *c,
336                             struct OperationContext *opc);
337
338
339 /**
340  * Removes the given operation context from the operation context map of the
341  * given controller
342  *
343  * @param c the controller
344  * @param opc the operation context to remove
345  */
346 void
347 GNUNET_TESTBED_remove_opc_ (const struct GNUNET_TESTBED_Controller *c,
348                             struct OperationContext *opc);
349
350
351 /**
352  * Compresses given configuration using zlib compress
353  *
354  * @param config the serialized configuration
355  * @param size the size of config
356  * @param xconfig will be set to the compressed configuration (memory is fresly
357  *          allocated)
358  * @return the size of the xconfig
359  */
360 size_t
361 GNUNET_TESTBED_compress_config_ (const char *config,
362                                  size_t size,
363                                  char **xconfig);
364
365
366 /**
367  * Function to serialize and compress using zlib a configuration through a
368  * configuration handle
369  *
370  * @param cfg the configuration
371  * @param size the size of configuration when serialize.  Will be set on success.
372  * @param xsize the sizeo of the compressed configuration.  Will be set on success.
373  * @return the serialized and compressed configuration
374  */
375 char *
376 GNUNET_TESTBED_compress_cfg_ (const struct GNUNET_CONFIGURATION_Handle *cfg,
377                               size_t *size,
378                               size_t *xsize);
379
380
381 /**
382  * Creates a helper initialization message. This function is here because we
383  * want to use this in testing
384  *
385  * @param trusted_ip the ip address of the controller which will be set as TRUSTED
386  *          HOST(all connections form this ip are permitted by the testbed) when
387  *          starting testbed controller at host. This can either be a single ip
388  *          address or a network address in CIDR notation.
389  * @param hostname the hostname of the destination this message is intended for
390  * @param cfg the configuration that has to used to start the testbed service
391  *          thru helper
392  * @return the initialization message
393  */
394 struct GNUNET_TESTBED_HelperInit *
395 GNUNET_TESTBED_create_helper_init_msg_ (const char *cname,
396                                         const char *hostname,
397                                         const struct GNUNET_CONFIGURATION_Handle *cfg);
398
399
400 /**
401  * Sends the given message as an operation. The given callback is called when a
402  * reply for the operation is available.  Call
403  * GNUNET_TESTBED_forward_operation_msg_cancel_() to cleanup the returned
404  * operation context if the cc hasn't been called
405  *
406  * @param controller the controller to which the message has to be sent
407  * @param operation_id the operation id of the message
408  * @param msg the message to send
409  * @param cc the callback to call when reply is available
410  * @param cc_cls the closure for the above callback
411  * @return the operation context which can be used to cancel the forwarded
412  *           operation
413  */
414 struct OperationContext *
415 GNUNET_TESTBED_forward_operation_msg_ (struct GNUNET_TESTBED_Controller *controller,
416                                        uint64_t operation_id,
417                                        const struct GNUNET_MessageHeader *msg,
418                                        GNUNET_MQ_MessageCallback cc,
419                                        void *cc_cls);
420
421 /**
422  * Function to cancel an operation created by simply forwarding an operation
423  * message.
424  *
425  * @param opc the operation context from GNUNET_TESTBED_forward_operation_msg_()
426  */
427 void
428 GNUNET_TESTBED_forward_operation_msg_cancel_ (struct OperationContext *opc);
429
430
431 /**
432  * Generates configuration by uncompressing configuration in given message. The
433  * given message should be of the following types:
434  * #GNUNET_MESSAGE_TYPE_TESTBED_PEERCONFIG,
435  * #GNUNET_MESSAGE_TYPE_TESTBED_SLAVECONFIG
436  *
437  * @param msg the message containing compressed configuration
438  * @return handle to the parsed configuration
439  */
440 struct GNUNET_CONFIGURATION_Handle *
441 GNUNET_TESTBED_extract_config_ (const struct GNUNET_MessageHeader *msg);
442
443
444 /**
445  * Checks the integrity of the OpeationFailureEventMessage and if good returns
446  * the error message it contains.
447  *
448  * @param msg the OperationFailureEventMessage
449  * @return the error message
450  */
451 const char *
452 GNUNET_TESTBED_parse_error_string_ (const struct GNUNET_TESTBED_OperationFailureEventMessage *msg);
453
454
455 /**
456  * Function to return the operation id for a controller. The operation id is
457  * created from the controllers host id and its internal operation counter.
458  *
459  * @param controller the handle to the controller whose operation id has to be incremented
460  * @return the incremented operation id.
461  */
462 uint64_t
463 GNUNET_TESTBED_get_next_op_id (struct GNUNET_TESTBED_Controller *controller);
464
465
466 /**
467  * Like GNUNET_TESTBED_get_slave_config(), however without the host registration
468  * check. Another difference is that this function takes the id of the slave
469  * host.
470  *
471  * @param op_cls the closure for the operation
472  * @param master the handle to master controller
473  * @param slave_host_id id of the host where the slave controller is running to
474  *          the slave_host should remain valid until this operation is cancelled
475  *          or marked as finished
476  * @return the operation handle;
477  */
478 struct GNUNET_TESTBED_Operation *
479 GNUNET_TESTBED_get_slave_config_ (void *op_cls,
480                                   struct GNUNET_TESTBED_Controller *master,
481                                   uint32_t slave_host_id);
482
483
484
485 /**
486  * Initialise a barrier and call the given callback when the required percentage
487  * of peers (quorum) reach the barrier OR upon error.
488  *
489  * @param controller the handle to the controller
490  * @param name identification name of the barrier
491  * @param quorum the percentage of peers that is required to reach the barrier.
492  *   Peers signal reaching a barrier by calling
493  *   GNUNET_TESTBED_barrier_reached().
494  * @param cb the callback to call when the barrier is reached or upon error.
495  *   Cannot be NULL.
496  * @param cls closure for the above callback
497  * @param echo #GNUNET_YES to echo the barrier crossed status message back to the
498  *   controller
499  * @return barrier handle; NULL upon error
500  */
501 struct GNUNET_TESTBED_Barrier *
502 GNUNET_TESTBED_barrier_init_ (struct GNUNET_TESTBED_Controller *controller,
503                               const char *name,
504                               unsigned int quorum,
505                               GNUNET_TESTBED_barrier_status_cb cb,
506                               void *cls,
507                               int echo);
508
509
510 /**
511  * Remove a barrier and it was the last one in the barrier hash map, destroy the
512  * hash map
513  *
514  * @param barrier the barrier to remove
515  */
516 void
517 GNUNET_TESTBED_barrier_remove_ (struct GNUNET_TESTBED_Barrier *barrier);
518
519
520
521 #endif
522 /* end of testbed_api.h */