- log output
[oweals/gnunet.git] / src / mesh / gnunet-service-mesh_peer.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_peer.h
23  * @brief mesh service; dealing with remote peers
24  * @author Bartlomiej Polot
25  *
26  * All functions in this file should use the prefix GMP (Gnunet Mesh Peer)
27  */
28
29 #ifndef GNUNET_SERVICE_MESH_PEER_H
30 #define GNUNET_SERVICE_MESH_PEER_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  * Struct containing all information regarding a given peer
45  */
46 struct MeshPeer;
47
48 /**
49  * Struct containing info about a queued transmission to this peer
50  */
51 struct MeshPeerQueue;
52
53 #include "gnunet-service-mesh_connection.h"
54
55 /**
56  * Callback called when a queued message is sent.
57  *
58  * @param cls Closure.
59  * @param c Connection this message was on.
60  * @param type Type of message sent.
61  * @param fwd Was this a FWD going message?
62  * @param size Size of the message.
63  * @param wait Time spent waiting for core (only the time for THIS message)
64  */
65 typedef void (*GMP_sent) (void *cls,
66                           struct MeshConnection *c, uint16_t type,
67                           int fwd, size_t size,
68                           struct GNUNET_TIME_Relative wait);
69
70 /******************************************************************************/
71 /********************************    API    ***********************************/
72 /******************************************************************************/
73
74 /**
75  * Initialize peer subsystem.
76  *
77  * @param c Configuration.
78  */
79 void
80 GMP_init (const struct GNUNET_CONFIGURATION_Handle *c);
81
82 /**
83  * Shut down the peer subsystem.
84  */
85 void
86 GMP_shutdown (void);
87
88
89 /**
90  * Retrieve the MeshPeer stucture associated with the peer, create one
91  * and insert it in the appropriate structures if the peer is not known yet.
92  *
93  * @param peer_id Full identity of the peer.
94  *
95  * @return Existing or newly created peer structure.
96  */
97 struct MeshPeer *
98 GMP_get (const struct GNUNET_PeerIdentity *peer_id);
99
100
101 /**
102  * Retrieve the MeshPeer stucture associated with the peer, create one
103  * and insert it in the appropriate structures if the peer is not known yet.
104  *
105  * @param peer Short identity of the peer.
106  *
107  * @return Existing or newly created peer structure.
108  */
109 struct MeshPeer *
110 GMP_get_short (const GNUNET_PEER_Id peer);
111
112 /**
113  * Try to establish a new connection to this peer (in its tunnel).
114  * If the peer doesn't have any path to it yet, try to get one.
115  * If the peer already has some path, send a CREATE CONNECTION towards it.
116  *
117  * @param peer Peer to connect to.
118  */
119 void
120 GMP_connect (struct MeshPeer *peer);
121
122 /**
123  * Free a transmission that was already queued with all resources
124  * associated to the request.
125  *
126  * @param queue Queue handler to cancel.
127  * @param clear_cls Is it necessary to free associated cls?
128  */
129 void
130 GMP_queue_destroy (struct MeshPeerQueue *queue, int clear_cls);
131
132 /**
133  * @brief Queue and pass message to core when possible.
134  *
135  * @param peer Peer towards which to queue the message.
136  * @param cls Closure (@c type dependant). It will be used by queue_send to
137  *            build the message to be sent if not already prebuilt.
138  * @param type Type of the message, 0 for a raw message.
139  * @param size Size of the message.
140  * @param c Connection this message belongs to (cannot be NULL).
141  * @param fwd Is this a message going root->dest? (FWD ACK are NOT FWD!)
142  * @param cont Continuation to be called once CORE has taken the message.
143  * @param cont_cls Closure for @c cont.
144  *
145  * @return Handle to cancel the message before it is sent. Once cont is called
146  *         message has been sent and therefore the handle is no longer valid.
147  */
148 struct MeshPeerQueue *
149 GMP_queue_add (struct MeshPeer *peer, void *cls, uint16_t type, size_t size,
150                struct MeshConnection *c, int fwd,
151                GMP_sent cont, void *cont_cls);
152
153 /**
154  * Cancel all queued messages to a peer that belong to a certain connection.
155  *
156  * @param peer Peer towards whom to cancel.
157  * @param c Connection whose queued messages to cancel. Might be destroyed by
158  *          the sent continuation call.
159  */
160 void
161 GMP_queue_cancel (struct MeshPeer *peer, struct MeshConnection *c);
162
163 /**
164  * Get the first message for a connection and unqueue it.
165  *
166  * @param peer Neighboring peer.
167  * @param c Connection.
168  *
169  * @return First message for this connection.
170  */
171 struct GNUNET_MessageHeader *
172 GMP_connection_pop (struct MeshPeer *peer, struct MeshConnection *c);
173
174 void
175 GMP_queue_unlock (struct MeshPeer *peer, struct MeshConnection *c);
176
177 /**
178  * Set tunnel.
179  *
180  * @param peer Peer.
181  * @param t Tunnel.
182  */
183 void
184 GMP_set_tunnel (struct MeshPeer *peer, struct MeshTunnel3 *t);
185
186 /**
187  * Check whether there is a direct (core level)  connection to peer.
188  *
189  * @param peer Peer to check.
190  *
191  * @return #GNUNET_YES if there is a direct connection.
192  */
193 int
194 GMP_is_neighbor (const struct MeshPeer *peer);
195
196 /**
197  * Create and initialize a new tunnel towards a peer, in case it has none.
198  *
199  * Does not generate any traffic, just creates the local data structures.
200  *
201  * @param peer Peer towards which to create the tunnel.
202  */
203 void
204 GMP_add_tunnel (struct MeshPeer *peer);
205
206 /**
207  * Add a connection to a neighboring peer.
208  *
209  * Store that the peer is the first hop of the connection in one
210  * direction and that on peer disconnect the connection must be
211  * notified and destroyed, for it will no longer be valid.
212  *
213  * @param peer Peer to add connection to.
214  * @param c Connection to add.
215  *
216  * @return GNUNET_OK on success.
217  */
218 int
219 GMP_add_connection (struct MeshPeer *peer, struct MeshConnection *c);
220
221 /**
222  * Add the path to the peer and update the path used to reach it in case this
223  * is the shortest.
224  *
225  * @param peer Destination peer to add the path to.
226  * @param path New path to add. Last peer must be the peer in arg 1.
227  *             Path will be either used of freed if already known.
228  * @param trusted Do we trust that this path is real?
229  *
230  * @return path if path was taken, pointer to existing duplicate if exists
231  *         NULL on error.
232  */
233 struct MeshPeerPath *
234 GMP_add_path (struct MeshPeer *peer, struct MeshPeerPath *p, int trusted);
235
236 /**
237  * Add the path to the origin peer and update the path used to reach it in case
238  * this is the shortest.
239  * The path is given in peer_info -> destination, therefore we turn the path
240  * upside down first.
241  *
242  * @param peer Peer to add the path to, being the origin of the path.
243  * @param path New path to add after being inversed.
244  *             Path will be either used or freed.
245  * @param trusted Do we trust that this path is real?
246  *
247  * @return path if path was taken, pointer to existing duplicate if exists
248  *         NULL on error.
249  */
250 struct MeshPeerPath *
251 GMP_add_path_to_origin (struct MeshPeer *peer,
252                         struct MeshPeerPath *path,
253                         int trusted);
254
255 /**
256  * Adds a path to the info of all the peers in the path
257  *
258  * @param p Path to process.
259  * @param confirmed Whether we know if the path works or not.
260  */
261 void
262 GMP_add_path_to_all (const struct MeshPeerPath *p, int confirmed);
263
264 /**
265  * Remove any path to the peer that has the extact same peers as the one given.
266  *
267  * @param peer Peer to remove the path from.
268  * @param path Path to remove. Is always destroyed .
269  */
270 void
271 GMP_remove_path (struct MeshPeer *peer, struct MeshPeerPath *path);
272
273 /**
274  * Remove a connection from a neighboring peer.
275  *
276  * @param peer Peer to remove connection from.
277  * @param c Connection to remove.
278  *
279  * @return GNUNET_OK on success.
280  */
281 int
282 GMP_remove_connection (struct MeshPeer *peer, const struct MeshConnection *c);
283
284 /**
285  * Start the DHT search for new paths towards the peer: we don't have
286  * enough good connections.
287  *
288  * @param peer Destination peer.
289  */
290 void
291 GMP_start_search (struct MeshPeer *peer);
292
293 /**
294  * Stop the DHT search for new paths towards the peer: we already have
295  * enough good connections.
296  *
297  * @param peer Destination peer.
298  */
299 void
300 GMP_stop_search (struct MeshPeer *peer);
301
302 /**
303  * Get the Full ID of a peer.
304  *
305  * @param peer Peer to get from.
306  *
307  * @return Full ID of peer.
308  */
309 const struct GNUNET_PeerIdentity *
310 GMP_get_id (const struct MeshPeer *peer);
311
312 /**
313  * Get the Short ID of a peer.
314  *
315  * @param peer Peer to get from.
316  *
317  * @return Short ID of peer.
318  */
319 GNUNET_PEER_Id
320 GMP_get_short_id (const struct MeshPeer *peer);
321
322 /**
323  * Get the tunnel towards a peer.
324  *
325  * @param peer Peer to get from.
326  *
327  * @return Tunnel towards peer.
328  */
329 struct MeshTunnel3 *
330 GMP_get_tunnel (const struct MeshPeer *peer);
331
332 /**
333  * Set the hello message.
334  *
335  * @param peer Peer whose message to set.
336  * @param hello Hello message.
337  */
338 void
339 GMP_set_hello (struct MeshPeer *peer, const struct GNUNET_HELLO_Message *hello);
340
341 /**
342  * Get the hello message.
343  *
344  * @param peer Peer whose message to get.
345  *
346  * @return Hello message.
347  */
348 struct GNUNET_HELLO_Message *
349 GMP_get_hello (struct MeshPeer *peer);
350
351
352 /**
353  * Try to connect to a peer on TRANSPORT level.
354  *
355  * @param peer Peer to whom to connect.
356  */
357 void
358 GMP_try_connect (struct MeshPeer *peer);
359
360 /**
361  * Count the number of known paths toward the peer.
362  *
363  * @param peer Peer to get path info.
364  *
365  * @return Number of known paths.
366  */
367 unsigned int
368 GMP_count_paths (const struct MeshPeer *peer);
369
370 /**
371  * Iterate all known peers.
372  *
373  * @param iter Iterator.
374  * @param cls Closure for @c iter.
375  */
376 void
377 GMP_iterate_all (GNUNET_CONTAINER_PeerMapIterator iter, void *cls);
378
379 /**
380  * Get the static string for a peer ID.
381  *
382  * @param peer Peer.
383  *
384  * @return Static string for it's ID.
385  */
386 const char *
387 GMP_2s (const struct MeshPeer *peer);
388
389
390 #if 0                           /* keep Emacsens' auto-indent happy */
391 {
392 #endif
393 #ifdef __cplusplus
394 }
395 #endif
396
397 /* ifndef GNUNET_MESH_SERVICE_PEER_H */
398 #endif
399 /* end of gnunet-mesh-service_peer.h */