stuff
[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 msg the message to transmit
175  * @param priority how important is the message (most plugins will
176  *                 ignore message priority and just FIFO)
177  * @param timeout how long to wait at most for the transmission (does not
178  *                require plugins to discard the message after the timeout,
179  *                just advisory for the desired delay; most plugins will ignore
180  *                this as well)
181  * @param addr the address to use (can be NULL if the plugin
182  *                is "on its own" (i.e. re-use existing TCP connection))
183  * @param addrlen length of the address in bytes
184  * @param force_address GNUNET_YES if the plugin MUST use the given address,
185  *                otherwise the plugin may use other addresses or
186  *                existing connections (if available)
187  * @param cont continuation to call once the message has
188  *        been transmitted (or if the transport is ready
189  *        for the next transmission call; or if the
190  *        peer disconnected...); can be NULL
191  * @param cont_cls closure for cont
192  * @return number of bytes used (on the physical network, with overheads);
193  *         -1 on hard errors (i.e. address invalid); 0 is a legal value
194  *         and does NOT mean that the message was not transmitted (DV)
195  */
196 typedef ssize_t
197   (*GNUNET_TRANSPORT_TransmitFunction) (void *cls,
198                                         const struct GNUNET_PeerIdentity *
199                                         target,
200                                         const struct GNUNET_MessageHeader *msg,
201                                         uint32_t priority,
202                                         struct GNUNET_TIME_Relative timeout,
203                                         const void *addr,
204                                         size_t addrlen,
205                                         int force_address,
206                                         GNUNET_TRANSPORT_TransmitContinuation
207                                         cont, void *cont_cls);
208
209
210 /**
211  * Function that can be called to force a disconnect from the
212  * specified neighbour.  This should also cancel all previously
213  * scheduled transmissions.  Obviously the transmission may have been
214  * partially completed already, which is OK.  The plugin is supposed
215  * to close the connection (if applicable) and no longer call the
216  * transmit continuation(s).
217  *
218  * Finally, plugin MUST NOT call the services's receive function to
219  * notify the service that the connection to the specified target was
220  * closed after a getting this call.
221  *
222  * @param cls closure
223  * @param target peer for which the last transmission is
224  *        to be cancelled
225  */
226 typedef void
227   (*GNUNET_TRANSPORT_DisconnectFunction) (void *cls,
228                                           const struct GNUNET_PeerIdentity *
229                                           target);
230
231
232 /**
233  * Function called by the pretty printer for the resolved address for
234  * each human-readable address obtained.
235  *
236  * @param cls closure
237  * @param hostname one of the names for the host, NULL
238  *        on the last call to the callback
239  */
240 typedef void (*GNUNET_TRANSPORT_AddressStringCallback) (void *cls,
241                                                         const char *address);
242
243
244 /**
245  * Convert the transports address to a nice, human-readable
246  * format.
247  *
248  * @param cls closure
249  * @param name name of the transport that generated the address
250  * @param addr one of the addresses of the host, NULL for the last address
251  *        the specific address format depends on the transport
252  * @param addrlen length of the address
253  * @param numeric should (IP) addresses be displayed in numeric form?
254  * @param timeout after how long should we give up?
255  * @param asc function to call on each string
256  * @param asc_cls closure for asc
257  */
258 typedef void
259   (*GNUNET_TRANSPORT_AddressPrettyPrinter) (void *cls,
260                                             const char *type,
261                                             const void *addr,
262                                             size_t addrlen,
263                                             int numeric,
264                                             struct GNUNET_TIME_Relative
265                                             timeout,
266                                             GNUNET_TRANSPORT_AddressStringCallback
267                                             asc, void *asc_cls);
268
269
270 /**
271  * Set a quota for receiving data from the given peer; this is a
272  * per-transport limit.  The transport should limit its read/select
273  * calls to stay below the quota (in terms of incoming data).
274  *
275  * @param cls closure
276  * @param peer the peer for whom the quota is given
277  * @param quota_in quota for receiving/sending data in bytes per ms
278  */
279 typedef void
280   (*GNUNET_TRANSPORT_SetQuota) (void *cls,
281                                 const struct GNUNET_PeerIdentity * target,
282                                 uint32_t quota_in);
283
284
285 /**
286  * Another peer has suggested an address for this peer and transport
287  * plugin.  Check that this could be a valid address.  This function
288  * is not expected to 'validate' the address in the sense of trying to
289  * connect to it but simply to see if the binary format is technically
290  * legal for establishing a connection.
291  *
292  * @param addr pointer to the address, may be modified (slightly)
293  * @param addrlen length of addr
294  * @return GNUNET_OK if this is a plausible address for this peer
295  *         and transport, GNUNET_SYSERR if not
296  */
297 typedef int
298   (*GNUNET_TRANSPORT_CheckAddress) (void *cls,
299                                     void *addr, size_t addrlen);
300
301 /**
302  * Each plugin is required to return a pointer to a struct of this
303  * type as the return value from its entry point.
304  */
305 struct GNUNET_TRANSPORT_PluginFunctions
306 {
307
308   /**
309    * Closure for all of the callbacks.
310    */
311   void *cls;
312
313   /**
314    * Function that the transport service will use to transmit data to
315    * another peer.  May be null for plugins that only support
316    * receiving data.  After this call, the plugin call the specified
317    * continuation with success or error before notifying us about the
318    * target having disconnected.
319    */
320   GNUNET_TRANSPORT_TransmitFunction send;
321
322   /**
323    * Function that can be used to force the plugin to disconnect from
324    * the given peer and cancel all previous transmissions (and their
325    * continuations).  Note that if the transport does not have
326    * sessions / persistent connections (for example, UDP), this
327    * function may very well do nothing.
328    */
329   GNUNET_TRANSPORT_DisconnectFunction disconnect;
330
331   /**
332    * Function to pretty-print addresses.  NOTE: this function is not
333    * yet used by transport-service, but will be used in the future
334    * once the transport-API has been completed.
335    */
336   GNUNET_TRANSPORT_AddressPrettyPrinter address_pretty_printer;
337
338   /**
339    * Function that the transport service can use to try to enforce a
340    * quota for the number of bytes received via this transport.
341    * Transports that can not refuse incoming data (such as UDP)
342    * are free to ignore these calls.
343    */
344   GNUNET_TRANSPORT_SetQuota set_receive_quota;
345
346   /**
347    * Function that will be called to check if a binary address
348    * for this plugin is well-formed.  If clearly needed, patch
349    * up information such as port numbers.
350    */
351   GNUNET_TRANSPORT_CheckAddress check_address;
352
353
354 };
355
356
357 #endif