-switching (again) to named sockets, see #2887
[oweals/gnunet.git] / src / transport / plugin_transport_template.c
1 /*
2      This file is part of GNUnet
3      (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 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 transport/plugin_transport_template.c
23  * @brief template for a new transport service
24  * @author Christian Grothoff
25  */
26
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_protocols.h"
30 #include "gnunet_statistics_service.h"
31 #include "gnunet_transport_service.h"
32 #include "gnunet_transport_plugin.h"
33
34 #define LOG(kind,...) GNUNET_log_from (kind, "transport-template",__VA_ARGS__)
35
36 /**
37  * After how long do we expire an address that we
38  * learned from another peer if it is not reconfirmed
39  * by anyone?
40  */
41 #define LEARNED_ADDRESS_EXPIRATION GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 6)
42
43 #define PLUGIN_NAME "template"
44
45 /**
46  * Encapsulation of all of the state of the plugin.
47  */
48 struct Plugin;
49
50
51 /**
52  * Session handle for connections.
53  */
54 struct Session
55 {
56   /**
57    * To whom are we talking to (set to our identity
58    * if we are still waiting for the welcome message)
59    */
60   struct GNUNET_PeerIdentity sender;
61
62   /**
63    * Stored in a linked list.
64    */
65   struct Session *next;
66
67   /**
68    * Pointer to the global plugin struct.
69    */
70   struct Plugin *plugin;
71
72   /**
73    * The client (used to identify this connection)
74    */
75   /* void *client; */
76
77   /**
78    * Continuation function to call once the transmission buffer
79    * has again space available.  NULL if there is no
80    * continuation to call.
81    */
82   GNUNET_TRANSPORT_TransmitContinuation transmit_cont;
83
84   /**
85    * Closure for transmit_cont.
86    */
87   void *transmit_cont_cls;
88
89   /**
90    * At what time did we reset last_received last?
91    */
92   struct GNUNET_TIME_Absolute last_quota_update;
93
94   /**
95    * How many bytes have we received since the "last_quota_update"
96    * timestamp?
97    */
98   uint64_t last_received;
99
100   /**
101    * Number of bytes per ms that this peer is allowed
102    * to send to us.
103    */
104   uint32_t quota;
105
106 };
107
108 GNUNET_NETWORK_STRUCT_BEGIN
109
110 struct TemplateAddress
111 {
112         /**
113          * Address options in NBO
114          */
115         uint32_t options GNUNET_PACKED;
116
117         /* Add address here */
118 };
119
120 GNUNET_NETWORK_STRUCT_END
121
122 /**
123  * Encapsulation of all of the state of the plugin.
124  */
125 struct Plugin
126 {
127   /**
128    * Our environment.
129    */
130   struct GNUNET_TRANSPORT_PluginEnvironment *env;
131
132   /**
133    * List of open sessions.
134    */
135   struct Session *sessions;
136
137   /**
138    * Options in HBO to be used with addresses
139    */
140
141 };
142
143
144 /**
145  * Function that can be used by the transport service to transmit
146  * a message using the plugin.   Note that in the case of a
147  * peer disconnecting, the continuation MUST be called
148  * prior to the disconnect notification itself.  This function
149  * will be called with this peer's HELLO message to initiate
150  * a fresh connection to another peer.
151  *
152  * @param cls closure
153  * @param session which session must be used
154  * @param msgbuf the message to transmit
155  * @param msgbuf_size number of bytes in 'msgbuf'
156  * @param priority how important is the message (most plugins will
157  *                 ignore message priority and just FIFO)
158  * @param to how long to wait at most for the transmission (does not
159  *                require plugins to discard the message after the timeout,
160  *                just advisory for the desired delay; most plugins will ignore
161  *                this as well)
162  * @param cont continuation to call once the message has
163  *        been transmitted (or if the transport is ready
164  *        for the next transmission call; or if the
165  *        peer disconnected...); can be NULL
166  * @param cont_cls closure for cont
167  * @return number of bytes used (on the physical network, with overheads);
168  *         -1 on hard errors (i.e. address invalid); 0 is a legal value
169  *         and does NOT mean that the message was not transmitted (DV)
170  */
171 static ssize_t
172 template_plugin_send (void *cls,
173                   struct Session *session,
174                   const char *msgbuf, size_t msgbuf_size,
175                   unsigned int priority,
176                   struct GNUNET_TIME_Relative to,
177                   GNUNET_TRANSPORT_TransmitContinuation cont, void *cont_cls)
178 {
179   struct Plugin *plugin = cls;
180   int bytes_sent = 0;
181
182   GNUNET_assert (plugin != NULL);
183   GNUNET_assert (session != NULL);
184
185   /*  struct Plugin *plugin = cls; */
186   return bytes_sent;
187 }
188
189
190
191 /**
192  * Function that can be used to force the plugin to disconnect
193  * from the given peer and cancel all previous transmissions
194  * (and their continuationc).
195  *
196  * @param cls closure
197  * @param target peer from which to disconnect
198  */
199 static void
200 template_plugin_disconnect (void *cls, const struct GNUNET_PeerIdentity *target)
201 {
202   // struct Plugin *plugin = cls;
203   // FIXME
204 }
205
206
207 /**
208  * Function obtain the network type for a session
209  *
210  * @param cls closure ('struct Plugin*')
211  * @param session the session
212  * @return the network type in HBO or GNUNET_SYSERR
213  */
214 static enum GNUNET_ATS_Network_Type
215 template_plugin_get_network (void *cls,
216                              struct Session *session)
217 {
218   GNUNET_assert (NULL != session);
219   return GNUNET_ATS_NET_UNSPECIFIED; /* Change to correct network type */
220 }
221
222
223 /**
224  * Convert the transports address to a nice, human-readable
225  * format.
226  *
227  * @param cls closure
228  * @param type name of the transport that generated the address
229  * @param addr one of the addresses of the host, NULL for the last address
230  *        the specific address format depends on the transport
231  * @param addrlen length of the address
232  * @param numeric should (IP) addresses be displayed in numeric form?
233  * @param timeout after how long should we give up?
234  * @param asc function to call on each string
235  * @param asc_cls closure for asc
236  */
237 static void
238 template_plugin_address_pretty_printer (void *cls, const char *type,
239                                         const void *addr, size_t addrlen,
240                                         int numeric,
241                                         struct GNUNET_TIME_Relative timeout,
242                                         GNUNET_TRANSPORT_AddressStringCallback
243                                         asc, void *asc_cls)
244 {
245         if (0 == addrlen)
246         {
247                 asc (asc_cls, TRANSPORT_SESSION_INBOUND_STRING);
248         }
249
250   asc (asc_cls, NULL);
251 }
252
253
254
255 /**
256  * Another peer has suggested an address for this
257  * peer and transport plugin.  Check that this could be a valid
258  * address.  If so, consider adding it to the list
259  * of addresses.
260  *
261  * @param cls closure
262  * @param addr pointer to the address
263  * @param addrlen length of addr
264  * @return GNUNET_OK if this is a plausible address for this peer
265  *         and transport
266  */
267 static int
268 template_plugin_address_suggested (void *cls, const void *addr, size_t addrlen)
269 {
270   /* struct Plugin *plugin = cls; */
271
272   /* check if the address is belonging to the plugin*/
273   return GNUNET_OK;
274 }
275
276
277 /**
278  * Function called for a quick conversion of the binary address to
279  * a numeric address.  Note that the caller must not free the
280  * address and that the next call to this function is allowed
281  * to override the address again.
282  *
283  * @param cls closure
284  * @param addr binary address
285  * @param addrlen length of the address
286  * @return string representing the same address
287  */
288 static const char *
289 template_plugin_address_to_string (void *cls, const void *addr, size_t addrlen)
290 {
291         /*
292          * Print address in format template.options.address
293          */
294
295         if (0 == addrlen)
296         {
297                 return TRANSPORT_SESSION_INBOUND_STRING;
298         }
299
300   GNUNET_break (0);
301   return NULL;
302 }
303
304
305 /**
306  * Function called to convert a string address to
307  * a binary address.
308  *
309  * @param cls closure ('struct Plugin*')
310  * @param addr string address
311  * @param addrlen length of the address
312  * @param buf location to store the buffer
313  * @param added location to store the number of bytes in the buffer.
314  *        If the function returns GNUNET_SYSERR, its contents are undefined.
315  * @return GNUNET_OK on success, GNUNET_SYSERR on failure
316  */
317 static int
318 template_plugin_string_to_address (void *cls, const char *addr, uint16_t addrlen,
319     void **buf, size_t *added)
320 {
321
322         /*
323          * Parse string in format template.options.address
324          */
325
326
327   GNUNET_break (0);
328   return GNUNET_SYSERR;
329 }
330
331
332 /**
333  * Create a new session to transmit data to the target
334  * This session will used to send data to this peer and the plugin will
335  * notify us by calling the env->session_end function
336  *
337  * @param cls closure
338  * @param address pointer to the GNUNET_HELLO_Address
339  * @return the session if the address is valid, NULL otherwise
340  */
341 static struct Session *
342 template_plugin_get_session (void *cls,
343                         const struct GNUNET_HELLO_Address *address)
344 {
345   GNUNET_break (0);
346   return NULL;
347 }
348
349 /**
350  * Entry point for the plugin.
351  */
352 void *
353 libgnunet_plugin_transport_template_init (void *cls)
354 {
355   struct GNUNET_TRANSPORT_PluginEnvironment *env = cls;
356   struct GNUNET_TRANSPORT_PluginFunctions *api;
357   struct Plugin *plugin;
358
359   if (NULL == env->receive)
360   {
361     /* run in 'stub' mode (i.e. as part of gnunet-peerinfo), don't fully
362        initialze the plugin or the API */
363     api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
364     api->cls = NULL;
365     api->address_to_string = &template_plugin_address_to_string;
366     api->string_to_address = &template_plugin_string_to_address;
367     api->address_pretty_printer = &template_plugin_address_pretty_printer;
368     return api;
369   }
370
371   plugin = GNUNET_malloc (sizeof (struct Plugin));
372   plugin->env = env;
373   api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
374   api->cls = plugin;
375   api->send = &template_plugin_send;
376   api->disconnect = &template_plugin_disconnect;
377   api->address_pretty_printer = &template_plugin_address_pretty_printer;
378   api->check_address = &template_plugin_address_suggested;
379   api->address_to_string = &template_plugin_address_to_string;
380   api->string_to_address = &template_plugin_string_to_address;
381   api->get_session = &template_plugin_get_session;
382   api->get_network = &template_plugin_get_network;
383   LOG (GNUNET_ERROR_TYPE_INFO, "Template plugin successfully loaded\n");
384   return api;
385 }
386
387
388 /**
389  * Exit point from the plugin.
390  */
391 void *
392 libgnunet_plugin_transport_template_done (void *cls)
393 {
394   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
395   struct Plugin *plugin = api->cls;
396
397   GNUNET_free (plugin);
398   GNUNET_free (api);
399   return NULL;
400 }
401
402 /* end of plugin_transport_template.c */