fixing doxygen warnings
[oweals/gnunet.git] / src / transport / plugin_transport.h
1 /*
2      This file is part of GNUnet
3      (C) 2009, 2010 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 2, 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 transport/plugin_transport.h
23  * @brief API for the transport services.  This header
24  *        specifies the struct that is given to the plugin's entry
25  *        method and the other struct that must be returned.
26  *        Note that the destructors of transport plugins will
27  *        be given the value returned by the constructor
28  *        and is expected to return a NULL pointer.
29  *
30  * TODO:
31  * - consider moving DATA message (latency measurement)
32  *   to service; avoids encapsulation overheads and
33  *   would enable latency measurements for non-bidi
34  *   transports.
35  * -
36  *
37  * @author Christian Grothoff
38  */
39 #ifndef PLUGIN_TRANSPORT_H
40 #define PLUGIN_TRANSPORT_H
41
42 #include "gnunet_configuration_lib.h"
43 #include "gnunet_scheduler_lib.h"
44 #include "gnunet_transport_service.h"
45
46
47 /**
48  * Function called by the transport for each received message.
49  * This function should also be called with "NULL" for the
50  * message to signal that the other peer disconnected.
51  *
52  * @param cls closure
53  * @param peer (claimed) identity of the other peer
54  * @param message the message, NULL if peer was disconnected
55  * @param distance in overlay hops; use 1 unless DV
56  * @param sender_address binary address of the sender (if observed)
57  * @param sender_address_len number of bytes in sender_address
58  */
59 typedef void (*GNUNET_TRANSPORT_PluginReceiveCallback) (void *cls,
60                                                         const struct
61                                                         GNUNET_PeerIdentity *
62                                                         peer,
63                                                         const struct
64                                                         GNUNET_MessageHeader *
65                                                         message,
66                                                         uint32_t distance,
67                                                         const char *sender_address,
68                                                         size_t sender_address_len);
69
70
71 /**
72  * Function that will be called for each address the transport
73  * is aware that it might be reachable under.
74  *
75  * @param cls closure
76  * @param name name of the transport that generated the address
77  * @param addr one of the addresses of the host, NULL for the last address
78  *        the specific address format depends on the transport
79  * @param addrlen length of the address
80  * @param expires when should this address automatically expire?
81  */
82 typedef void (*GNUNET_TRANSPORT_AddressNotification) (void *cls,
83                                                       const char *name,
84                                                       const void *addr,
85                                                       size_t addrlen,
86                                                       struct
87                                                       GNUNET_TIME_Relative
88                                                       expires);
89
90
91 /**
92  * The transport service will pass a pointer to a struct
93  * of this type as the first and only argument to the
94  * entry point of each transport plugin.
95  */
96 struct GNUNET_TRANSPORT_PluginEnvironment
97 {
98   /**
99    * Configuration to use.
100    */
101   const struct GNUNET_CONFIGURATION_Handle *cfg;
102
103   /**
104    * Scheduler to use.
105    */
106   struct GNUNET_SCHEDULER_Handle *sched;
107
108   /**
109    * Identity of this peer.
110    */
111   const struct GNUNET_PeerIdentity *my_identity;
112
113   /**
114    * Closure for the various callbacks.
115    */
116   void *cls;
117
118   /**
119    * Function that should be called by the transport plugin
120    * whenever a message is received.
121    */
122   GNUNET_TRANSPORT_PluginReceiveCallback receive;
123
124   /**
125    * Function that must be called by each plugin to notify the
126    * transport service about the addresses under which the transport
127    * provided by the plugin can be reached.
128    */
129   GNUNET_TRANSPORT_AddressNotification notify_address;
130
131   /**
132    * What is the default quota (in terms of incoming bytes per
133    * ms) for new connections?
134    */
135   uint32_t default_quota_in;
136
137   /**
138    * What is the maximum number of connections that this transport
139    * should allow?  Transports that do not have sessions (such as
140    * UDP) can ignore this value.
141    */
142   uint32_t max_connections;
143
144 };
145
146
147 /**
148  * Function called by the GNUNET_TRANSPORT_TransmitFunction
149  * upon "completion".
150  *
151  * @param cls closure
152  * @param target who was the recipient of the message?
153  * @param result GNUNET_OK on success
154  *               GNUNET_SYSERR if the target disconnected;
155  *               disconnect will ALSO be signalled using
156  *               the ReceiveCallback.
157  */
158 typedef void
159   (*GNUNET_TRANSPORT_TransmitContinuation) (void *cls,
160                                             const struct GNUNET_PeerIdentity *
161                                             target, int result);
162
163
164 /**
165  * Function that can be used by the transport service to transmit
166  * a message using the plugin.   Note that in the case of a
167  * peer disconnecting, the continuation MUST be called
168  * prior to the disconnect notification itself.  This function
169  * will be called with this peer's HELLO message to initiate
170  * a fresh connection to another peer.
171  *
172  * @param cls closure
173  * @param target who should receive this message
174  * @param msgbuf the message to transmit
175  * @param msgbuf_size number of bytes in 'msgbuf'
176  * @param priority how important is the message (most plugins will
177  *                 ignore message priority and just FIFO)
178  * @param timeout how long to wait at most for the transmission (does not
179  *                require plugins to discard the message after the timeout,
180  *                just advisory for the desired delay; most plugins will ignore
181  *                this as well)
182  * @param addr the address to use (can be NULL if the plugin
183  *                is "on its own" (i.e. re-use existing TCP connection))
184  * @param addrlen length of the address in bytes
185  * @param force_address GNUNET_YES if the plugin MUST use the given address,
186  *                otherwise the plugin may use other addresses or
187  *                existing connections (if available)
188  * @param cont continuation to call once the message has
189  *        been transmitted (or if the transport is ready
190  *        for the next transmission call; or if the
191  *        peer disconnected...); can be NULL
192  * @param cont_cls closure for cont
193  * @return number of bytes used (on the physical network, with overheads);
194  *         -1 on hard errors (i.e. address invalid); 0 is a legal value
195  *         and does NOT mean that the message was not transmitted (DV)
196  */
197 typedef ssize_t
198   (*GNUNET_TRANSPORT_TransmitFunction) (void *cls,
199                                         const struct GNUNET_PeerIdentity *
200                                         target,
201                                         const char *msgbuf,
202                                         size_t msgbuf_size,
203                                         uint32_t priority,
204                                         struct GNUNET_TIME_Relative timeout,
205                                         const void *addr,
206                                         size_t addrlen,
207                                         int force_address,
208                                         GNUNET_TRANSPORT_TransmitContinuation
209                                         cont, void *cont_cls);
210
211
212 /**
213  * Function that can be called to force a disconnect from the
214  * specified neighbour.  This should also cancel all previously
215  * scheduled transmissions.  Obviously the transmission may have been
216  * partially completed already, which is OK.  The plugin is supposed
217  * to close the connection (if applicable) and no longer call the
218  * transmit continuation(s).
219  *
220  * Finally, plugin MUST NOT call the services's receive function to
221  * notify the service that the connection to the specified target was
222  * closed after a getting this call.
223  *
224  * @param cls closure
225  * @param target peer for which the last transmission is
226  *        to be cancelled
227  */
228 typedef void
229   (*GNUNET_TRANSPORT_DisconnectFunction) (void *cls,
230                                           const struct GNUNET_PeerIdentity *
231                                           target);
232
233
234 /**
235  * Function called by the pretty printer for the resolved address for
236  * each human-readable address obtained.
237  *
238  * @param cls closure
239  * @param hostname one of the names for the host, NULL
240  *        on the last call to the callback
241  */
242 typedef void (*GNUNET_TRANSPORT_AddressStringCallback) (void *cls,
243                                                         const char *address);
244
245
246 /**
247  * Convert the transports address to a nice, human-readable
248  * format.
249  *
250  * @param cls closure
251  * @param name name of the transport that generated the address
252  * @param addr one of the addresses of the host, NULL for the last address
253  *        the specific address format depends on the transport
254  * @param addrlen length of the address
255  * @param numeric should (IP) addresses be displayed in numeric form?
256  * @param timeout after how long should we give up?
257  * @param asc function to call on each string
258  * @param asc_cls closure for asc
259  */
260 typedef void
261   (*GNUNET_TRANSPORT_AddressPrettyPrinter) (void *cls,
262                                             const char *type,
263                                             const void *addr,
264                                             size_t addrlen,
265                                             int numeric,
266                                             struct GNUNET_TIME_Relative
267                                             timeout,
268                                             GNUNET_TRANSPORT_AddressStringCallback
269                                             asc, void *asc_cls);
270
271
272 /**
273  * Set a quota for receiving data from the given peer; this is a
274  * per-transport limit.  The transport should limit its read/select
275  * calls to stay below the quota (in terms of incoming data).
276  *
277  * @param cls closure
278  * @param peer the peer for whom the quota is given
279  * @param quota_in quota for receiving/sending data in bytes per ms
280  */
281 typedef void
282   (*GNUNET_TRANSPORT_SetQuota) (void *cls,
283                                 const struct GNUNET_PeerIdentity * target,
284                                 uint32_t quota_in);
285
286
287 /**
288  * Another peer has suggested an address for this peer and transport
289  * plugin.  Check that this could be a valid address.  This function
290  * is not expected to 'validate' the address in the sense of trying to
291  * connect to it but simply to see if the binary format is technically
292  * legal for establishing a connection.
293  *
294  * @param addr pointer to the address, may be modified (slightly)
295  * @param addrlen length of addr
296  * @return GNUNET_OK if this is a plausible address for this peer
297  *         and transport, GNUNET_SYSERR if not
298  */
299 typedef int
300   (*GNUNET_TRANSPORT_CheckAddress) (void *cls,
301                                     void *addr, size_t addrlen);
302
303 /**
304  * Each plugin is required to return a pointer to a struct of this
305  * type as the return value from its entry point.
306  */
307 struct GNUNET_TRANSPORT_PluginFunctions
308 {
309
310   /**
311    * Closure for all of the callbacks.
312    */
313   void *cls;
314
315   /**
316    * Function that the transport service will use to transmit data to
317    * another peer.  May be null for plugins that only support
318    * receiving data.  After this call, the plugin call the specified
319    * continuation with success or error before notifying us about the
320    * target having disconnected.
321    */
322   GNUNET_TRANSPORT_TransmitFunction send;
323
324   /**
325    * Function that can be used to force the plugin to disconnect from
326    * the given peer and cancel all previous transmissions (and their
327    * continuations).  Note that if the transport does not have
328    * sessions / persistent connections (for example, UDP), this
329    * function may very well do nothing.
330    */
331   GNUNET_TRANSPORT_DisconnectFunction disconnect;
332
333   /**
334    * Function to pretty-print addresses.  NOTE: this function is not
335    * yet used by transport-service, but will be used in the future
336    * once the transport-API has been completed.
337    */
338   GNUNET_TRANSPORT_AddressPrettyPrinter address_pretty_printer;
339
340   /**
341    * Function that the transport service can use to try to enforce a
342    * quota for the number of bytes received via this transport.
343    * Transports that can not refuse incoming data (such as UDP)
344    * are free to ignore these calls.
345    */
346   GNUNET_TRANSPORT_SetQuota set_receive_quota;
347
348   /**
349    * Function that will be called to check if a binary address
350    * for this plugin is well-formed.  If clearly needed, patch
351    * up information such as port numbers.
352    */
353   GNUNET_TRANSPORT_CheckAddress check_address;
354
355
356 };
357
358
359 #endif