make weakness more explicit
[oweals/gnunet.git] / src / dv / plugin_transport_dv.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 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 dv/plugin_transport_dv.c
23  * @brief DV transport service, takes incoming DV requests and deals with
24  * the DV service
25  * @author Christian Grothoff
26  */
27
28 /**
29  * TODO:
30  *
31  * As a start, the dv plugin needs to listen for information from the dv
32  * service.  The plugin (?) will be notified by core (?) when a tcp/udp/whatever
33  * message comes in that should be for dv.  The plugin will then hand off the message
34  * to the dv service which will decrypt/validate the message (?) and then send the
35  * result back to us (the transport) which will then send the message to the transport
36  * service (yikes).
37  *
38  * Or, core will notify the dv service directly which will validate,
39  * etc. and then just send a message to us.
40  *
41  * For starters, this plugin needs to have a client which will listen for messages from
42  * the dv service that need to be sent up to the gnunet-transport-service.
43  *
44  * Messages sent from the dv transport get passed to the dv service which deals
45  * with the actual sending (how much state does this transport need? should it know
46  * which peers it is currently connected to and their distances, or just assume that
47  * anything should be passed along to the dv service?).
48  */
49 #include "platform.h"
50 #include "gnunet_protocols.h"
51 #include "gnunet_connection_lib.h"
52 #include "gnunet_server_lib.h"
53 #include "gnunet_service_lib.h"
54 #include "gnunet_statistics_service.h"
55 #include "gnunet_dv_service.h"
56 #include "gnunet_transport_service.h"
57 #include "../transport/plugin_transport.h"
58 #include "dv.h"
59
60 #define DEBUG_TEMPLATE GNUNET_NO
61
62 /**
63  * Encapsulation of all of the state of the plugin.
64  */
65 struct Plugin;
66
67
68 /**
69  * Session handle for connections.
70  */
71 struct Session
72 {
73
74   /**
75    * Stored in a linked list.
76    */
77   struct Session *next;
78
79   /**
80    * Pointer to the global plugin struct.
81    */
82   struct Plugin *plugin;
83
84   /**
85    * The client (used to identify this connection)
86    */
87   /* void *client; */
88
89   /**
90    * Continuation function to call once the transmission buffer
91    * has again space available.  NULL if there is no
92    * continuation to call.
93    */
94   GNUNET_TRANSPORT_TransmitContinuation transmit_cont;
95
96   /**
97    * Closure for transmit_cont.
98    */
99   void *transmit_cont_cls;
100
101   /**
102    * To whom are we talking to (set to our identity
103    * if we are still waiting for the welcome message)
104    */
105   struct GNUNET_PeerIdentity sender;
106
107   /**
108    * At what time did we reset last_received last?
109    */
110   struct GNUNET_TIME_Absolute last_quota_update;
111
112   /**
113    * How many bytes have we received since the "last_quota_update"
114    * timestamp?
115    */
116   uint64_t last_received;
117
118   /**
119    * Number of bytes per ms that this peer is allowed
120    * to send to us.
121    */
122   uint32_t quota;
123
124 };
125
126 /**
127  * Encapsulation of all of the state of the plugin.
128  */
129 struct Plugin
130 {
131   /**
132    * Our environment.
133    */
134   struct GNUNET_TRANSPORT_PluginEnvironment *env;
135
136   /**
137    * List of open sessions.
138    */
139   struct Session *sessions;
140
141   /**
142    * Handle for the statistics service.
143    */
144   struct GNUNET_STATISTICS_Handle *statistics;
145
146   /**
147    * Our server.
148    */
149   //struct GNUNET_SERVER_Handle *server;
150
151   /*
152    * Handle to the running service.
153    */
154   //struct GNUNET_SERVICE_Context *service;
155
156   /**
157    * Copy of the handler array where the closures are
158    * set to this struct's instance.
159    */
160   struct GNUNET_SERVER_MessageHandler *handlers;
161
162   /**
163    * Handle to the DV service
164    */
165   struct GNUNET_DV_Handle *dv_handle;
166
167 };
168
169 /**
170  * Handler for messages received from the DV service.
171  */
172 void handle_dv_message_received (void *cls,
173                                  struct GNUNET_PeerIdentity *sender,
174                                  char *msg,
175                                  size_t msg_len,
176                                  unsigned int distance,
177                                  char *sender_address,
178                                  size_t sender_address_len)
179 {
180   struct Plugin *plugin = cls;
181
182   GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
183                    "plugin_transport_dv",
184                    _("Received message from %s of type %d!\n"),
185                    "DV SERVICE", ntohs(((struct GNUNET_MessageHeader *)msg)->type));
186   plugin->env->receive(plugin->env->cls,
187                        sender,
188                        (struct GNUNET_MessageHeader *)msg,
189                        distance,
190                        NULL, /* FIXME: pass session! */
191                        sender_address,
192                        sender_address_len);
193
194 }
195
196
197 /* Question: how does the transport service learn of a newly connected (gossipped about)
198  * DV peer?  Should the plugin (here) create a HELLO for that peer and send it along,
199  * or should the DV service create a HELLO and send it to us via the other part?
200  */
201
202 /**
203  * Function that can be used by the transport service to transmit
204  * a message using the plugin.
205  *
206  * @param cls closure
207  * @param target who should receive this message
208  * @param priority how important is the message
209  * @param msgbuf the message to transmit
210  * @param msgbuf_size number of bytes in 'msgbuf'
211  * @param timeout when should we time out
212  * @param session the session used
213  * @param addr the address to use (can be NULL if the plugin
214  *                is "on its own" (i.e. re-use existing TCP connection))
215  * @param addrlen length of the address in bytes
216  * @param force_address GNUNET_YES if the plugin MUST use the given address,
217  *                otherwise the plugin may use other addresses or
218  *                existing connections (if available)
219  * @param cont continuation to call once the message has
220  *        been transmitted (or if the transport is ready
221  *        for the next transmission call; or if the
222  *        peer disconnected...)
223  * @param cont_cls closure for cont
224  * @return number of bytes used (on the physical network, with overheads);
225  *         -1 on hard errors (i.e. address invalid); 0 is a legal value
226  *         and does NOT mean that the message was not transmitted (DV)
227  */
228 static ssize_t
229 dv_plugin_send (void *cls,
230                 const struct GNUNET_PeerIdentity *target,
231                 const char *msgbuf,
232                 size_t msgbuf_size,
233                 unsigned int priority,
234                 struct GNUNET_TIME_Relative timeout,
235                 struct Session *session,
236                 const void *addr,
237                 size_t addrlen,
238                 int force_address,
239                 GNUNET_TRANSPORT_TransmitContinuation
240                 cont, void *cont_cls)
241 {
242   int ret = 0;
243   struct Plugin *plugin = cls;
244
245   /* FIXME: do we want the dv plugin to remember sent messages to call continuation once message actually goes out?
246    * Or do we just call the continuation once we've notified the plugin?
247    */
248   // FIXME: does it make sense for us to use sessions?
249 #if DEBUG_DV
250   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "DV API: Received send request from transport, calling GNUNET_DV_send\n");
251 #endif
252   ret = GNUNET_DV_send(plugin->dv_handle,
253                        target,
254                        msgbuf,
255                        msgbuf_size,
256                        priority,
257                        timeout,
258                        addr,
259                        addrlen);
260
261   if (cont != NULL)
262     {
263       if (ret == 0)
264         cont(cont_cls, target, GNUNET_OK);
265       else
266         cont(cont_cls, target, GNUNET_SYSERR);
267     }
268   return ret;
269 }
270
271
272
273 /**
274  * Function that can be used to force the plugin to disconnect
275  * from the given peer and cancel all previous transmissions
276  * (and their continuations).
277  *
278  * @param cls closure
279  * @param target peer from which to disconnect
280  */
281 static void
282 dv_plugin_disconnect (void *cls,
283                             const struct GNUNET_PeerIdentity *target)
284 {
285   // struct Plugin *plugin = cls;
286   // TODO: Add message type to send to dv service to "disconnect" a peer
287 }
288
289
290 /**
291  * Convert the transports address to a nice, human-readable
292  * format.
293  *
294  * @param cls closure
295  * @param type name of the transport that generated the address
296  * @param addr one of the addresses of the host, NULL for the last address
297  *        the specific address format depends on the transport
298  * @param addrlen length of the address
299  * @param numeric should (IP) addresses be displayed in numeric form?
300  * @param timeout after how long should we give up?
301  * @param asc function to call on each string
302  * @param asc_cls closure for asc
303  */
304 static void
305 dv_plugin_address_pretty_printer (void *cls,
306                                   const char *type,
307                                   const void *addr,
308                                   size_t addrlen,
309                                   int numeric,
310                                   struct GNUNET_TIME_Relative timeout,
311                                   GNUNET_TRANSPORT_AddressStringCallback
312                                   asc, void *asc_cls)
313 {
314   asc (asc_cls, NULL);
315 }
316
317
318
319 /**
320  * Another peer has suggested an address for this
321  * peer and transport plugin.  Check that this could be a valid
322  * address.  If so, consider adding it to the list
323  * of addresses.
324  *
325  * @param cls closure
326  * @param addr pointer to the address
327  * @param addrlen length of addr
328  * @return GNUNET_OK if this is a plausible address for this peer
329  *         and transport
330  *
331  * FIXME: does this mean anything for the DV plugin?
332  */
333 static int
334 dv_plugin_address_suggested (void *cls,
335                                   void *addr, size_t addrlen)
336 {
337   /* struct Plugin *plugin = cls; */
338
339   /* check if the address is plausible; if so,
340      add it to our list! */
341   return GNUNET_NO;
342 }
343
344
345 /**
346  * Entry point for the plugin.
347  */
348 void *
349 libgnunet_plugin_transport_dv_init (void *cls)
350 {
351   struct GNUNET_TRANSPORT_PluginEnvironment *env = cls;
352   struct GNUNET_TRANSPORT_PluginFunctions *api;
353   struct Plugin *plugin;
354
355   plugin = GNUNET_malloc (sizeof (struct Plugin));
356   plugin->env = env;
357   plugin->statistics = NULL;
358   //plugin->service = service;
359   //plugin->server = GNUNET_SERVICE_get_server (service);
360
361   plugin->dv_handle = GNUNET_DV_connect(env->sched, env->cfg, &handle_dv_message_received, plugin);
362
363   if (plugin->dv_handle == NULL)
364   {
365     GNUNET_free(plugin);
366     return NULL;
367   }
368
369   api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
370   api->cls = plugin;
371   api->send = &dv_plugin_send;
372   api->disconnect = &dv_plugin_disconnect;
373   api->address_pretty_printer = &dv_plugin_address_pretty_printer;
374   api->check_address = &dv_plugin_address_suggested;
375   return api;
376 }
377
378
379 /**
380  * Exit point from the plugin.
381  */
382 void *
383 libgnunet_plugin_transport_dv_done (void *cls)
384 {
385   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
386   struct Plugin *plugin = api->cls;
387
388   GNUNET_free (plugin);
389   GNUNET_free (api);
390   return NULL;
391 }
392
393 /* end of plugin_transport_template.c */