- clean up API
[oweals/gnunet.git] / src / mesh / gnunet-service-mesh_tunnel.h
1 /*
2      This file is part of GNUnet.
3      (C) 2013 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file mesh/gnunet-service-mesh_tunnel.h
23  * @brief mesh service; dealing with tunnels and crypto
24  * @author Bartlomiej Polot
25  *
26  * All functions in this file should use the prefix GMT (Gnunet Mesh Tunnel)
27  */
28
29 #ifndef GNUNET_SERVICE_MESH_TUNNEL_H
30 #define GNUNET_SERVICE_MESH_TUNNEL_H
31
32 #ifdef __cplusplus
33 extern "C"
34 {
35 #if 0                           /* keep Emacsens' auto-indent happy */
36 }
37 #endif
38 #endif
39
40 #include "platform.h"
41 #include "gnunet_util_lib.h"
42
43 /**
44  * All the states a tunnel can be in.
45  */
46 enum MeshTunnel3State
47 {
48     /**
49      * Uninitialized status, should never appear in operation.
50      */
51   MESH_TUNNEL3_NEW,
52
53     /**
54      * Path to the peer not known yet.
55      */
56   MESH_TUNNEL3_SEARCHING,
57
58     /**
59      * Request sent, not yet answered.
60      */
61   MESH_TUNNEL3_WAITING,
62
63     /**
64      * Ephemeral key sent, waiting for peer's key.
65      */
66   MESH_TUNNEL3_KEY_SENT,
67
68     /**
69      * Have peer's key, sent ping, waiting for pong.
70      */
71   MESH_TUNNEL3_PING_SENT,
72
73     /**
74      * Peer connected and ready to accept data.
75      */
76   MESH_TUNNEL3_READY,
77
78     /**
79      * Peer connected previosly but not responding.
80      */
81   MESH_TUNNEL3_RECONNECTING,
82
83     /**
84      * New ephemeral key and ping sent, waiting for pong.
85      */
86   MESH_TUNNEL3_REKEY,
87 };
88
89 /**
90  * Struct containing all information regarding a given peer
91  */
92 struct MeshTunnel3;
93
94
95 #include "gnunet-service-mesh_channel.h"
96 #include "gnunet-service-mesh_connection.h"
97 #include "gnunet-service-mesh_peer.h"
98
99
100 /******************************************************************************/
101 /********************************    API    ***********************************/
102 /******************************************************************************/
103
104 /**
105  * Initialize tunnel subsystem.
106  *
107  * @param c Configuration handle.
108  * @param key ECC private key, to derive all other keys and do crypto.
109  */
110 void
111 GMT_init (const struct GNUNET_CONFIGURATION_Handle *c,
112           const struct GNUNET_CRYPTO_EddsaPrivateKey *key);
113
114 /**
115  * Shut down the tunnel subsystem.
116  */
117 void
118 GMT_shutdown (void);
119
120 /**
121  * Create a tunnel.
122  *
123  * @param destination Peer this tunnel is towards.
124  */
125 struct MeshTunnel3 *
126 GMT_new (struct MeshPeer *destination);
127
128 /**
129  * Tunnel is empty: destroy it.
130  *
131  * Notifies all connections about the destruction.
132  *
133  * @param t Tunnel to destroy.
134  */
135 void
136 GMT_destroy_empty (struct MeshTunnel3 *t);
137
138 /**
139  * Destroy tunnel if empty (no more channels).
140  *
141  * @param t Tunnel to destroy if empty.
142  */
143 void
144 GMT_destroy_if_empty (struct MeshTunnel3 *t);
145
146 /**
147  * Destroy the tunnel.
148  *
149  * This function does not generate any warning traffic to clients or peers.
150  *
151  * Tasks:
152  * Cancel messages belonging to this tunnel queued to neighbors.
153  * Free any allocated resources linked to the tunnel.
154  *
155  * @param t The tunnel to destroy.
156  */
157 void
158 GMT_destroy (struct MeshTunnel3 *t);
159
160 /**
161  * Change the tunnel state.
162  *
163  * @param t Tunnel whose state to change.
164  * @param state New state.
165  */
166 void
167 GMT_change_state (struct MeshTunnel3* t, enum MeshTunnel3State state);
168
169 /**
170  * Add a connection to a tunnel.
171  *
172  * @param t Tunnel.
173  * @param c Connection.
174  */
175 void
176 GMT_add_connection (struct MeshTunnel3 *t, struct MeshConnection *c);
177
178 /**
179  * Remove a connection from a tunnel.
180  *
181  * @param t Tunnel.
182  * @param c Connection.
183  */
184 void
185 GMT_remove_connection (struct MeshTunnel3 *t, struct MeshConnection *c);
186
187 /**
188  * Add a channel to a tunnel.
189  *
190  * @param t Tunnel.
191  * @param ch Channel.
192  */
193 void
194 GMT_add_channel (struct MeshTunnel3 *t, struct MeshChannel *ch);
195
196 /**
197  * Remove a channel from a tunnel.
198  *
199  * @param t Tunnel.
200  * @param ch Channel.
201  */
202 void
203 GMT_remove_channel (struct MeshTunnel3 *t, struct MeshChannel *ch);
204
205 /**
206  * Search for a channel by global ID.
207  *
208  * @param t Tunnel containing the channel.
209  * @param chid Public channel number.
210  *
211  * @return channel handler, NULL if doesn't exist
212  */
213 struct MeshChannel *
214 GMT_get_channel (struct MeshTunnel3 *t, MESH_ChannelNumber chid);
215
216 /**
217  * Decrypt and demultiplex by message type. Call appropriate handler
218  * for a message
219  * towards a channel of a local tunnel.
220  *
221  * @param t Tunnel this message came on.
222  * @param msg Message header.
223  * @param fwd Is this message fwd?
224  */
225 void
226 GMT_handle_encrypted (struct MeshTunnel3 *t,
227                       const struct GNUNET_MESH_Encrypted *msg,
228                       int fwd);
229
230 /**
231  * Demultiplex an encapsulated KX message by message type.
232  *
233  * @param t Tunnel on which the message came.
234  * @param message KX message itself.
235  */
236 void
237 GMT_handle_kx (struct MeshTunnel3 *t,
238                const struct GNUNET_MessageHeader *message);
239
240 /**
241  * @brief Use the given path for the tunnel.
242  * Update the next and prev hops (and RCs).
243  * (Re)start the path refresh in case the tunnel is locally owned.
244  *
245  * @param t Tunnel to update.
246  * @param p Path to use.
247  *
248  * @return Connection created.
249  */
250 struct MeshConnection *
251 GMT_use_path (struct MeshTunnel3 *t, struct MeshPeerPath *p);
252
253 /**
254  * Count established (ready) connections of a tunnel.
255  *
256  * @param t Tunnel on which to count.
257  *
258  * @return Number of connections.
259  */
260 unsigned int
261 GMT_count_connections (struct MeshTunnel3 *t);
262
263 /**
264  * Count channels of a tunnel.
265  *
266  * @param t Tunnel on which to count.
267  *
268  * @return Number of channels.
269  */
270 unsigned int
271 GMT_count_channels (struct MeshTunnel3 *t);
272
273 /**
274  * Get the state of a tunnel.
275  *
276  * @param t Tunnel.
277  *
278  * @return Tunnel's state.
279  */
280 enum MeshTunnel3State
281 GMT_get_state (struct MeshTunnel3 *t);
282
283 /**
284  * Get the total buffer space for a tunnel.
285  * 
286  * FIXME get a ch parameter in case of loopback tunnels
287  *
288  * @param t Tunnel.
289  * @param fwd Is this for FWD traffic?
290  *
291  * @return Buffer space offered by all connections in the tunnel.
292  */
293 unsigned int
294 GMT_get_buffer (struct MeshTunnel3 *t, int fwd);
295
296 /**
297  * Get the tunnel's destination.
298  *
299  * @param t Tunnel.
300  *
301  * @return ID of the destination peer.
302  */
303 const struct GNUNET_PeerIdentity *
304 GMT_get_destination (struct MeshTunnel3 *t);
305
306 /**
307  * Get the tunnel's next free Channel ID.
308  *
309  * @param t Tunnel.
310  *
311  * @return ID of a channel free to use.
312  */
313 MESH_ChannelNumber
314 GMT_get_next_chid (struct MeshTunnel3 *t);
315
316 /**
317  * Send ACK on one or more channels due to buffer in connections.
318  *
319  * @param t Channel which has some free buffer space.
320  * @param fwd Is this for FWD traffic? (ACK goes to root)
321  */
322 void
323 GMT_unchoke_channels (struct MeshTunnel3 *t, int fwd);
324
325 /**
326  * Send ACK on one or more connections due to buffer space to the client.
327  *
328  * Iterates all connections of the tunnel and sends ACKs appropriately.
329  *
330  * @param t Tunnel which has some free buffer space.
331  * @param fwd Is this in for FWD traffic? (ACK goes dest->root)
332  */
333 void
334 GMT_send_acks (struct MeshTunnel3 *t, int fwd);
335
336 /**
337  * Sends an already built message on a tunnel, encrypting it and
338  * choosing the best connection.
339  *
340  * @param message Message to send. Function modifies it.
341  * @param t Tunnel on which this message is transmitted.
342  * @param ch Channel on which this message is transmitted.
343  * @param fwd Is this a fwd message on @c ch?
344  */
345 void
346 GMT_send_prebuilt_message (const struct GNUNET_MessageHeader *message,
347                            struct MeshTunnel3 *t,
348                            struct MeshChannel *ch,
349                            int fwd);
350
351 /**
352  * Is the tunnel directed towards the local peer?
353  *
354  * @param t Tunnel.
355  *
356  * @return #GNUNET_YES if it is loopback.
357  */
358 int
359 GMT_is_loopback (const struct MeshTunnel3 *t);
360
361 /**
362  * Is the tunnel using this path already?
363  *
364  * @param t Tunnel.
365  * @param p Path.
366  *
367  * @return #GNUNET_YES a connection uses this path.
368  */
369 int
370 GMT_is_path_used (const struct MeshTunnel3 *t, const struct MeshPeerPath *p);
371
372 /**
373  * Get a cost of a path for a tunnel considering existing connections.
374  *
375  * @param t Tunnel.
376  * @param path Candidate path.
377  *
378  * @return Cost of the path (path length + number of overlapping nodes)
379  */
380 unsigned int
381 GMT_get_path_cost (const struct MeshTunnel3 *t,
382                    const struct MeshPeerPath *path);
383
384 /**
385  * Get the static string for the peer this tunnel is directed.
386  *
387  * @param t Tunnel.
388  *
389  * @return Static string the destination peer's ID.
390  */
391 const char *
392 GMT_2s (const struct MeshTunnel3 *t);
393
394 #if 0                           /* keep Emacsens' auto-indent happy */
395 {
396 #endif
397 #ifdef __cplusplus
398 }
399 #endif
400
401 /* ifndef GNUNET_MESH_SERVICE_TUNNEL_H */
402 #endif
403 /* end of gnunet-mesh-service_tunnel.h */