check
[oweals/gnunet.git] / src / include / gnunet_transport_plugin.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 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 include/gnunet_transport_plugin.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  * @author Christian Grothoff
30  */
31 #ifndef PLUGIN_TRANSPORT_H
32 #define PLUGIN_TRANSPORT_H
33
34 #include "gnunet_configuration_lib.h"
35 #include "gnunet_scheduler_lib.h"
36 #include "gnunet_statistics_service.h"
37 #include "gnunet_transport_service.h"
38
39 /**
40  * Opaque pointer that plugins can use to distinguish specific
41  * connections to a given peer.  Typically used by stateful plugins to
42  * allow the service to refer to specific streams instead of a more
43  * general notion of "some connection" to the given peer.  This is
44  * useful since sometimes (i.e. for inbound TCP connections) a
45  * connection may not have an address that can be used for meaningful
46  * distinction between sessions to the same peer.
47  */
48 struct Session;
49
50 /**
51  * Every 'struct Session' must begin with this header.
52  */
53 struct SessionHeader
54 {
55
56   /**
57    * Cached signature for PONG generation for the session.  Do not use
58    * in the plugin!
59    */
60   struct GNUNET_CRYPTO_RsaSignature pong_signature;
61
62   /**
63    * Expiration time for signature.  Do not use in the plugin!
64    */
65   struct GNUNET_TIME_Absolute pong_sig_expires;
66   
67 };
68
69 /**
70  * Function that will be called whenever the plugin internally
71  * cleans up a session pointer and hence the service needs to
72  * discard all of those sessions as well.  Plugins that do not
73  * use sessions can simply omit calling this function and always
74  * use NULL wherever a session pointer is needed.
75  * 
76  * @param cls closure
77  * @param peer which peer was the session for 
78  * @param session which session is being destoyed
79  */
80 typedef void (*GNUNET_TRANSPORT_SessionEnd) (void *cls,
81                                              const struct GNUNET_PeerIdentity *peer,
82                                              struct Session *session);
83
84
85 /**
86  * Function called by the transport for each received message.
87  * This function should also be called with "NULL" for the
88  * message to signal that the other peer disconnected.
89  *
90  * @param cls closure
91  * @param peer (claimed) identity of the other peer
92  * @param message the message, NULL if we only care about
93  *                learning about the delay until we should receive again -- FIXME!
94  * @param distance in overlay hops; use 1 unless DV (or 0 if message == NULL)
95  * @param session identifier used for this session (NULL for plugins
96  *                that do not offer bi-directional communication to the sender
97  *                using the same "connection")
98  * @param sender_address binary address of the sender (if we established the
99  *                connection or are otherwise sure of it; should be NULL
100  *                for inbound TCP/UDP connections since it it not clear
101  *                that we could establish ourselves a connection to that
102  *                IP address and get the same system)
103  * @param sender_address_len number of bytes in sender_address
104  * @return how long the plugin should wait until receiving more data
105  *         (plugins that do not support this, can ignore the return value)
106  */
107 typedef struct GNUNET_TIME_Relative (*GNUNET_TRANSPORT_PluginReceiveCallback) (void *cls,
108                                                                                const struct
109                                                                                GNUNET_PeerIdentity *
110                                                                                peer,
111                                                                                const struct
112                                                                                GNUNET_MessageHeader *
113                                                                                message,
114                                                                                const struct GNUNET_TRANSPORT_ATS_Information *ats,
115                                                                                uint32_t ats_count,
116                                                                                struct Session *session,
117                                                                                const char *sender_address,
118                                                                                uint16_t sender_address_len);
119
120
121 /**
122  * Function that will be called for each address the transport
123  * is aware that it might be reachable under.
124  *
125  * @param cls closure
126  * @param name name of the transport that generated the address
127  * @param addr one of the addresses of the host, NULL for the last address
128  *        the specific address format depends on the transport
129  * @param addrlen length of the address
130  * @param expires when should this address automatically expire?
131  */
132 typedef void (*GNUNET_TRANSPORT_AddressNotification) (void *cls,
133                                                       const char *name,
134                                                       const void *addr,
135                                                       uint16_t addrlen,
136                                                       struct
137                                                       GNUNET_TIME_Relative
138                                                       expires);
139
140 /**
141  * Function that will be called whenever the plugin receives data over
142  * the network and wants to determine how long it should wait until
143  * the next time it reads from the given peer.  Note that some plugins
144  * (such as UDP) may not be able to wait (for a particular peer), so
145  * the waiting part is optional.  Plugins that can wait should call
146  * this function, sleep the given amount of time, and call it again
147  * (with zero bytes read) UNTIL it returns zero and only then read.
148  *
149  * @param cls closure
150  * @param peer which peer did we read data from
151  * @param amount_recved number of bytes read (can be zero)
152  * @return how long to wait until reading more from this peer
153  *         (to enforce inbound quotas)
154  */
155 typedef struct GNUNET_TIME_Relative (*GNUNET_TRANSPORT_TrafficReport) (void *cls,
156                                                                       const struct
157                                                                       GNUNET_PeerIdentity *peer,
158                                                                       size_t amount_recved);
159
160 /**
161  * Function called whenever the plugin has to notify ATS about costs for using this transport
162  *
163  * The cost will be passed as struct GNUNET_TRANSPORT_ATS_Cost_Information[]
164  * This array is 0-terminated, so the last element will be a pair:
165  * ((cost->cost_type==GNUNET_TRANSPORT_ATS_ARRAY_TERMINATOR) && cost->cost_value==0))
166  *
167  * @param cls closure
168  * @param peer peer
169  * @param addr peer address
170  * @param addrlen address length
171  * @param cost pointer to the first element of struct GNUNET_TRANSPORT_ATS_Cost_Information[]
172  */
173 typedef void (*GNUNET_TRANSPORT_CostReport) (void *cls,
174                                              const struct GNUNET_PeerIdentity *peer,
175                                              const void *addr,
176                                              uint16_t addrlen,
177                                              struct GNUNET_TRANSPORT_ATS_Information * cost);
178
179 /**
180  * The transport service will pass a pointer to a struct
181  * of this type as the first and only argument to the
182  * entry point of each transport plugin.
183  */
184 struct GNUNET_TRANSPORT_PluginEnvironment
185 {
186   /**
187    * Configuration to use.
188    */
189   const struct GNUNET_CONFIGURATION_Handle *cfg;
190
191   /**
192    * Identity of this peer.
193    */
194   const struct GNUNET_PeerIdentity *my_identity;
195
196   /**
197    * Pointer (!) to our HELLO message.  Note that the address
198    * referred to "*our_hello" might change over time.
199    */
200   struct GNUNET_HELLO_Message *const*our_hello;
201
202   /**
203    * Closure for the various callbacks.
204    */
205   void *cls;
206
207   /**
208    * Handle for reporting statistics.
209    */
210   struct GNUNET_STATISTICS_Handle *stats;
211
212   /**
213    * Function that should be called by the transport plugin
214    * whenever a message is received.
215    */
216   GNUNET_TRANSPORT_PluginReceiveCallback receive;
217
218   /**
219    * Function that must be called by each plugin to notify the
220    * transport service about the addresses under which the transport
221    * provided by the plugin can be reached.
222    */
223   GNUNET_TRANSPORT_AddressNotification notify_address;
224
225   /**
226    * Inform service about traffic received, get information
227    * about when we might be willing to receive more.
228    */
229   GNUNET_TRANSPORT_TrafficReport traffic_report;
230
231   /**
232    * Function that must be called by the plugin when a non-NULL
233    * session handle stops being valid (is destroyed).
234    */
235   GNUNET_TRANSPORT_SessionEnd session_end;
236
237   /**
238    * Inform service about costs for using this transport plugin
239    */
240   GNUNET_TRANSPORT_CostReport cost_report;
241
242   /**
243    * What is the maximum number of connections that this transport
244    * should allow?  Transports that do not have sessions (such as
245    * UDP) can ignore this value.
246    */
247   uint32_t max_connections;
248
249 };
250
251
252 /**
253  * Function called by the GNUNET_TRANSPORT_TransmitFunction
254  * upon "completion".  In the case that a peer disconnects,
255  * this function must be called for each pending request
256  * (with a 'failure' indication) AFTER notifying the service
257  * about the disconnect event (so that the service won't try
258  * to transmit more messages, believing the connection still
259  * exists...).
260  *
261  * @param cls closure
262  * @param target who was the recipient of the message?
263  * @param result GNUNET_OK on success
264  *               GNUNET_SYSERR if the target disconnected;
265  *               disconnect will ALSO be signalled using
266  *               the ReceiveCallback.
267  */
268 typedef void
269   (*GNUNET_TRANSPORT_TransmitContinuation) (void *cls,
270                                             const struct GNUNET_PeerIdentity *
271                                             target, int result);
272
273
274 /**
275  * Function that can be used by the transport service to transmit
276  * a message using the plugin.   Note that in the case of a
277  * peer disconnecting, the continuation MUST be called
278  * prior to the disconnect notification itself.  This function
279  * will be called with this peer's HELLO message to initiate
280  * a fresh connection to another peer.
281  *
282  * @param cls closure
283  * @param target who should receive this message
284  * @param msgbuf the message to transmit
285  * @param msgbuf_size number of bytes in 'msgbuf'
286  * @param priority how important is the message (most plugins will
287  *                 ignore message priority and just FIFO)
288  * @param timeout how long to wait at most for the transmission (does not
289  *                require plugins to discard the message after the timeout,
290  *                just advisory for the desired delay; most plugins will ignore
291  *                this as well)
292  * @param session which session must be used (or NULL for "any")
293  * @param addr the address to use (can be NULL if the plugin
294  *                is "on its own" (i.e. re-use existing TCP connection))
295  * @param addrlen length of the address in bytes
296  * @param force_address GNUNET_YES if the plugin MUST use the given address,
297  *                GNUNET_NO means the plugin may use any other address and
298  *                GNUNET_SYSERR means that only reliable existing
299  *                bi-directional connections should be used (regardless
300  *                of address)
301  * @param cont continuation to call once the message has
302  *        been transmitted (or if the transport is ready
303  *        for the next transmission call; or if the
304  *        peer disconnected...); can be NULL
305  * @param cont_cls closure for cont
306  * @return number of bytes used (on the physical network, with overheads);
307  *         -1 on hard errors (i.e. address invalid); 0 is a legal value
308  *         and does NOT mean that the message was not transmitted (DV)
309  */
310 typedef ssize_t
311   (*GNUNET_TRANSPORT_TransmitFunction) (void *cls,
312                                         const struct GNUNET_PeerIdentity *
313                                         target,
314                                         const char *msgbuf,
315                                         size_t msgbuf_size,
316                                         uint32_t priority,
317                                         struct GNUNET_TIME_Relative timeout,
318                                         struct Session *session,
319                                         const void *addr,
320                                         size_t addrlen,
321                                         int force_address,
322                                         GNUNET_TRANSPORT_TransmitContinuation
323                                         cont, void *cont_cls);
324
325
326 /**
327  * Function that can be called to force a disconnect from the
328  * specified neighbour.  This should also cancel all previously
329  * scheduled transmissions.  Obviously the transmission may have been
330  * partially completed already, which is OK.  The plugin is supposed
331  * to close the connection (if applicable) and no longer call the
332  * transmit continuation(s).
333  *
334  * Finally, plugin MUST NOT call the services's receive function to
335  * notify the service that the connection to the specified target was
336  * closed after a getting this call.
337  *
338  * @param cls closure
339  * @param target peer for which the last transmission is
340  *        to be cancelled
341  */
342 typedef void
343   (*GNUNET_TRANSPORT_DisconnectFunction) (void *cls,
344                                           const struct GNUNET_PeerIdentity *
345                                           target);
346
347
348 /**
349  * Function called by the pretty printer for the resolved address for
350  * each human-readable address obtained.
351  *
352  * @param cls closure
353  * @param hostname one of the names for the host, NULL
354  *        on the last call to the callback
355  */
356 typedef void (*GNUNET_TRANSPORT_AddressStringCallback) (void *cls,
357                                                         const char *address);
358
359
360 /**
361  * Convert the transports address to a nice, human-readable
362  * format.
363  *
364  * @param cls closure
365  * @param name name of the transport that generated the address
366  * @param addr one of the addresses of the host, NULL for the last address
367  *        the specific address format depends on the transport
368  * @param addrlen length of the address
369  * @param numeric should (IP) addresses be displayed in numeric form?
370  * @param timeout after how long should we give up?
371  * @param asc function to call on each string
372  * @param asc_cls closure for asc
373  */
374 typedef void
375   (*GNUNET_TRANSPORT_AddressPrettyPrinter) (void *cls,
376                                             const char *type,
377                                             const void *addr,
378                                             size_t addrlen,
379                                             int numeric,
380                                             struct GNUNET_TIME_Relative
381                                             timeout,
382                                             GNUNET_TRANSPORT_AddressStringCallback
383                                             asc, void *asc_cls);
384
385
386 /**
387  * Another peer has suggested an address for this peer and transport
388  * plugin.  Check that this could be a valid address.  This function
389  * is not expected to 'validate' the address in the sense of trying to
390  * connect to it but simply to see if the binary format is technically
391  * legal for establishing a connection to this peer (and make sure that
392  * the address really corresponds to our network connection/settings
393  * and not some potential man-in-the-middle).
394  *
395  * @param addr pointer to the address
396  * @param addrlen length of addr
397  * @return GNUNET_OK if this is a plausible address for this peer
398  *         and transport, GNUNET_SYSERR if not
399  */
400 typedef int
401 (*GNUNET_TRANSPORT_CheckAddress) (void *cls,
402                                   const void *addr, size_t addrlen);
403
404
405 /**
406  * Function called for a quick conversion of the binary address to
407  * a numeric address.  Note that the caller must not free the 
408  * address and that the next call to this function is allowed
409  * to override the address again.
410  *
411  * @param cls closure
412  * @param addr binary address
413  * @param addr_len length of the address
414  * @return string representing the same address 
415  */
416 typedef const char* (*GNUNET_TRANSPORT_AddressToString) (void *cls,
417                                                          const void *addr,
418                                                          size_t addrlen);
419
420
421 /**
422  * Each plugin is required to return a pointer to a struct of this
423  * type as the return value from its entry point.
424  */
425 struct GNUNET_TRANSPORT_PluginFunctions
426 {
427
428   /**
429    * Closure for all of the callbacks.
430    */
431   void *cls;
432
433   /**
434    * Function that the transport service will use to transmit data to
435    * another peer.  May be NULL for plugins that only support
436    * receiving data.  After this call, the plugin call the specified
437    * continuation with success or error before notifying us about the
438    * target having disconnected.
439    */
440   GNUNET_TRANSPORT_TransmitFunction send;
441
442   /**
443    * Function that can be used to force the plugin to disconnect from
444    * the given peer and cancel all previous transmissions (and their
445    * continuations).  Note that if the transport does not have
446    * sessions / persistent connections (for example, UDP), this
447    * function may very well do nothing.
448    */
449   GNUNET_TRANSPORT_DisconnectFunction disconnect;
450
451   /**
452    * Function to pretty-print addresses.  NOTE: this function is not
453    * yet used by transport-service, but will be used in the future
454    * once the transport-API has been completed.
455    */
456   GNUNET_TRANSPORT_AddressPrettyPrinter address_pretty_printer;
457
458   /**
459    * Function that will be called to check if a binary address
460    * for this plugin is well-formed and corresponds to an
461    * address for THIS peer (as per our configuration).  Naturally,
462    * if absolutely necessary, plugins can be a bit conservative in
463    * their answer, but in general plugins should make sure that the
464    * address does not redirect traffic to a 3rd party that might
465    * try to man-in-the-middle our traffic.
466    */
467   GNUNET_TRANSPORT_CheckAddress check_address;
468
469   /**
470    * Function that will be called to convert a binary address
471    * to a string (numeric conversion only).
472    */
473   GNUNET_TRANSPORT_AddressToString address_to_string;
474
475 };
476
477
478 #endif