clean handling of slave
[oweals/gnunet.git] / src / testbed / testbed_api.h
1 /*
2       This file is part of GNUnet
3       (C) 2012 Christian Grothoff (and other contributing authors)
4
5       GNUnet is free software; you can redistribute it and/or modify
6       it under the terms of the GNU General Public License as published
7       by the Free Software Foundation; either version 3, or (at your
8       option) any later version.
9
10       GNUnet is distributed in the hope that it will be useful, but
11       WITHOUT ANY WARRANTY; without even the implied warranty of
12       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13       General Public License for more details.
14
15       You should have received a copy of the GNU General Public License
16       along with GNUnet; see the file COPYING.  If not, write to the
17       Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18       Boston, MA 02111-1307, USA.
19  */
20
21 /**
22  * @file testbed/testbed_api.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_testbed_service.h"
31 #include "testbed.h"
32
33 /**
34  * Enumeration of operations
35  */
36 enum OperationType
37 {
38     /**
39      * Peer create operation
40      */
41   OP_PEER_CREATE,
42
43     /**
44      * Peer start operation
45      */
46   OP_PEER_START,
47
48     /**
49      * Peer stop operation
50      */
51   OP_PEER_STOP,
52
53     /**
54      * Peer destroy operation
55      */
56   OP_PEER_DESTROY,
57
58     /**
59      * Get peer information operation
60      */
61   OP_PEER_INFO,
62
63     /**
64      * Overlay connection operation
65      */
66   OP_OVERLAY_CONNECT,
67
68     /**
69      * Forwarded operation
70      */
71   OP_FORWARDED,
72
73     /**
74      * Link controllers operation
75      */
76   OP_LINK_CONTROLLERS,
77
78   /**
79    * Get slave config operation
80    */
81   OP_GET_SLAVE_CONFIG
82
83 };
84
85
86 /**
87  * Testbed operation structure
88  */
89 struct GNUNET_TESTBED_Operation
90 {
91   /**
92    * next pointer for DLL
93    */
94   struct GNUNET_TESTBED_Operation *next;
95
96   /**
97    * prev pointer for DLL
98    */
99   struct GNUNET_TESTBED_Operation *prev;
100
101   /**
102    * The controller on which this operation operates
103    */
104   struct GNUNET_TESTBED_Controller *controller;
105
106   /**
107    * The ID for the operation;
108    */
109   uint64_t operation_id;
110
111   /**
112    * The type of operation
113    */
114   enum OperationType type;
115
116   /**
117    * Data specific to OperationType
118    */
119   void *data;
120 };
121
122
123 /**
124  * The message queue for sending messages to the controller service
125  */
126 struct MessageQueue;
127
128 /**
129  * Structure for a controller link
130  */
131 struct ControllerLink;
132
133
134 /**
135  * Enumeration of states of OperationContext
136  */
137 enum OperationContextState
138 {
139     /**
140      * The initial state where the associated operation has just been created
141      * and is waiting in the operation queues to be started
142      */
143   OPC_STATE_INIT = 0,
144
145     /**
146      * The operation has been started. It may occupy some resources which are to
147      * be freed if cancelled.
148      */
149   OPC_STATE_STARTED,
150
151     /**
152      * The operation has finished. The end results of this operation may occupy
153      * some resources which are to be freed by operation_done
154      */
155   OPC_STATE_FINISHED
156 };
157
158
159 /**
160  * Context information for GNUNET_TESTBED_Operation
161  */
162 struct OperationContext
163 {
164   /**
165    * next ptr for DLL
166    */
167   struct OperationContext *next;
168
169   /**
170    * prev ptr for DLL
171    */
172   struct OperationContext *prev;
173
174   /**
175    * The controller to which this operation context belongs to
176    */
177   struct GNUNET_TESTBED_Controller *c;
178
179   /**
180    * The operation
181    */
182   struct GNUNET_TESTBED_Operation *op;
183
184   /**
185    * Data relevant to the operation
186    */
187   void *data;
188
189   /**
190    * The id of the opearation
191    */
192   uint64_t id;
193
194   /**
195    * The type of operation
196    */
197   enum OperationType type;
198
199   /**
200    * The state of the operation
201    */
202   enum OperationContextState state;
203 };
204
205
206 /**
207  * Handle to interact with a GNUnet testbed controller.  Each
208  * controller has at least one master handle which is created when the
209  * controller is created; this master handle interacts with the
210  * controller process, destroying it destroys the controller (by
211  * closing stdin of the controller process).  Additionally,
212  * controllers can interact with each other (in a P2P fashion); those
213  * links are established via TCP/IP on the controller's service port.
214  */
215 struct GNUNET_TESTBED_Controller
216 {
217
218   /**
219    * The host where the controller is running
220    */
221   struct GNUNET_TESTBED_Host *host;
222
223   /**
224    * The controller callback
225    */
226   GNUNET_TESTBED_ControllerCallback cc;
227
228   /**
229    * The closure for controller callback
230    */
231   void *cc_cls;
232
233   /**
234    * The configuration to use while connecting to controller
235    */
236   struct GNUNET_CONFIGURATION_Handle *cfg;
237
238   /**
239    * The client connection handle to the controller service
240    */
241   struct GNUNET_CLIENT_Connection *client;
242
243   /**
244    * The head of the message queue
245    */
246   struct MessageQueue *mq_head;
247
248   /**
249    * The tail of the message queue
250    */
251   struct MessageQueue *mq_tail;
252
253   /**
254    * The head of the ControllerLink list
255    */
256   struct ControllerLink *cl_head;
257
258   /**
259    * The tail of the ControllerLink list
260    */
261   struct ControllerLink *cl_tail;
262
263   /**
264    * The client transmit handle
265    */
266   struct GNUNET_CLIENT_TransmitHandle *th;
267
268   /**
269    * The host registration handle; NULL if no current registration requests are
270    * present
271    */
272   struct GNUNET_TESTBED_HostRegistrationHandle *rh;
273
274   /**
275    * The head of the opeartion context queue
276    */
277   struct OperationContext *ocq_head;
278
279   /**
280    * The tail of the operation context queue
281    */
282   struct OperationContext *ocq_tail;
283
284   /**
285    * Operation queue for simultaneous operations
286    */
287   struct OperationQueue *opq_parallel_operations;
288
289   /**
290    * Operation queue for simultaneous service connections
291    */
292   struct OperationQueue *opq_parallel_service_connections;
293
294   /**
295    * Operation queue for simultaneous topology configuration operations
296    */
297   struct OperationQueue *opq_parallel_topology_config_operations;
298
299   /**
300    * The operation id counter. use current value and increment
301    */
302   uint64_t operation_counter;
303
304   /**
305    * The controller event mask
306    */
307   uint64_t event_mask;
308
309   /**
310    * Did we start the receive loop yet?
311    */
312   int in_receive;
313
314   /**
315    * Did we create the host for this?
316    */
317   int aux_host;
318 };
319
320
321 /**
322  * Queues a message in send queue for sending to the service
323  *
324  * @param controller the handle to the controller
325  * @param msg the message to queue
326  */
327 void
328 GNUNET_TESTBED_queue_message_ (struct GNUNET_TESTBED_Controller *controller,
329                                struct GNUNET_MessageHeader *msg);
330
331
332 /**
333  * Compresses given configuration using zlib compress
334  *
335  * @param config the serialized configuration
336  * @param size the size of config
337  * @param xconfig will be set to the compressed configuration (memory is fresly
338  *          allocated)
339  * @return the size of the xconfig
340  */
341 size_t
342 GNUNET_TESTBED_compress_config_ (const char *config, size_t size,
343                                  char **xconfig);
344
345
346 /**
347  * Adds an operation to the queue of operations
348  *
349  * @param op the operation to add
350  */
351 void
352 GNUNET_TESTBED_operation_add_ (struct GNUNET_TESTBED_Operation *op);
353
354
355 /**
356  * Creates a helper initialization message. Only for testing.
357  *
358  * @param cname the ip address of the controlling host
359  * @param cfg the configuration that has to used to start the testbed service
360  *          thru helper
361  * @return the initialization message
362  */
363 struct GNUNET_TESTBED_HelperInit *
364 GNUNET_TESTBED_create_helper_init_msg_ (const char *cname,
365                                         const struct GNUNET_CONFIGURATION_Handle
366                                         *cfg);
367
368
369 /**
370  * Sends the given message as an operation. The given callback is called when a
371  * reply for the operation is available.  Call
372  * GNUNET_TESTBED_forward_operation_msg_cancel_() to cleanup the returned
373  * operation context if the cc hasn't been called
374  *
375  * @param controller the controller to which the message has to be sent
376  * @param operation_id the operation id of the message
377  * @param msg the message to send
378  * @param cc the callback to call when reply is available
379  * @param cc_cls the closure for the above callback
380  * @return the operation context which can be used to cancel the forwarded
381  *           operation
382  */
383 struct OperationContext *
384 GNUNET_TESTBED_forward_operation_msg_ (struct GNUNET_TESTBED_Controller
385                                        *controller, uint64_t operation_id,
386                                        const struct GNUNET_MessageHeader *msg,
387                                        GNUNET_CLIENT_MessageHandler cc,
388                                        void *cc_cls);
389
390 /**
391  * Function to cancel an operation created by simply forwarding an operation
392  * message.
393  *
394  * @param opc the operation context from GNUNET_TESTBED_forward_operation_msg_()
395  */
396 void
397 GNUNET_TESTBED_forward_operation_msg_cancel_ (struct OperationContext *opc);
398
399
400 /**
401  * Generates configuration by uncompressing configuration in given message. The
402  * given message should be of the following types:
403  * GNUNET_MESSAGE_TYPE_TESTBED_PEERCONFIG,
404  * GNUNET_MESSAGE_TYPE_TESTBED_SLAVECONFIG
405  *
406  * @param msg the message containing compressed configuration
407  * @return handle to the parsed configuration
408  */
409 struct GNUNET_CONFIGURATION_Handle *
410 GNUNET_TESTBED_extract_config_ (const struct GNUNET_MessageHeader *msg);
411
412
413 /**
414  * Checks the integrity of the OpeationFailureEventMessage and if good returns
415  * the error message it contains.
416  *
417  * @param msg the OperationFailureEventMessage
418  * @return the error message
419  */
420 const char *
421 GNUNET_TESTBED_parse_error_string_ (const struct
422                                     GNUNET_TESTBED_OperationFailureEventMessage
423                                     *msg);
424
425 #endif
426 /* end of testbed_api.h */