fixme
[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 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_template.c
23  * @brief template for a new transport service
24  * @author Christian Grothoff
25  */
26
27 #include "platform.h"
28 #include "gnunet_protocols.h"
29 #include "gnunet_connection_lib.h"
30 #include "gnunet_server_lib.h"
31 #include "gnunet_service_lib.h"
32 #include "gnunet_statistics_service.h"
33 #include "gnunet_transport_service.h"
34 #include "plugin_transport.h"
35
36 #define DEBUG_TEMPLATE GNUNET_NO
37
38 /**
39  * After how long do we expire an address that we
40  * learned from another peer if it is not reconfirmed
41  * by anyone?
42  */
43 #define LEARNED_ADDRESS_EXPIRATION GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 6)
44
45
46 /**
47  * Encapsulation of all of the state of the plugin.
48  */
49 struct Plugin;
50
51
52 /**
53  * Session handle for connections.
54  */
55 struct Session
56 {
57
58   /**
59    * Stored in a linked list.
60    */
61   struct Session *next;
62
63   /**
64    * Pointer to the global plugin struct.
65    */
66   struct Plugin *plugin;
67
68   /**
69    * The client (used to identify this connection)
70    */
71   /* void *client; */
72
73   /**
74    * Continuation function to call once the transmission buffer
75    * has again space available.  NULL if there is no
76    * continuation to call.
77    */
78   GNUNET_TRANSPORT_TransmitContinuation transmit_cont;
79
80   /**
81    * Closure for transmit_cont.
82    */
83   void *transmit_cont_cls;
84
85   /**
86    * To whom are we talking to (set to our identity
87    * if we are still waiting for the welcome message)
88    */
89   struct GNUNET_PeerIdentity sender;
90
91   /**
92    * At what time did we reset last_received last?
93    */
94   struct GNUNET_TIME_Absolute last_quota_update;
95
96   /**
97    * How many bytes have we received since the "last_quota_update"
98    * timestamp?
99    */
100   uint64_t last_received;
101
102   /**
103    * Number of bytes per ms that this peer is allowed
104    * to send to us.
105    */
106   uint32_t quota;
107
108 };
109
110 /**
111  * Encapsulation of all of the state of the plugin.
112  */
113 struct Plugin
114 {
115   /**
116    * Our environment.
117    */
118   struct GNUNET_TRANSPORT_PluginEnvironment *env;
119
120   /**
121    * List of open sessions.
122    */
123   struct Session *sessions;
124
125   /**
126    * Handle for the statistics service.
127    */
128   struct GNUNET_STATISTICS_Handle *statistics;
129
130 };
131
132
133
134 /**
135  * Function that can be used by the transport service to validate that
136  * another peer is reachable at a particular address (even if we
137  * already have a connection to this peer, this function is required
138  * to establish a new one).
139  *
140  * @param cls closure
141  * @param target who should receive this message
142  * @param challenge challenge code to use
143  * @param addrlen length of the address
144  * @param addr the address
145  * @param timeout how long should we try to transmit these?
146  * @return GNUNET_OK if the transmission has been scheduled
147  */
148 static int
149 template_plugin_validate (void *cls,
150                           const struct GNUNET_PeerIdentity *target,
151                           uint32_t challenge,
152                           struct GNUNET_TIME_Relative timeout,
153                           const void *addr,
154                           size_t addrlen)
155 {
156   // FIXME
157   return GNUNET_SYSERR;
158 }
159
160
161 /**
162  * Function that can be used by the transport service to transmit
163  * a message using the plugin.
164  *
165  * @param cls closure
166  * @param plugin_context value we were asked to pass to this plugin
167  *        to respond to the given peer (use is optional,
168  *        but may speed up processing), can be NULL
169  * @param service_context value passed to the transport-service
170  *        to identify the neighbour
171  * @param target who should receive this message
172  * @param priority how important is the message
173  * @param msg the message to transmit
174  * @param timeout when should we time out 
175  * @param cont continuation to call once the message has
176  *        been transmitted (or if the transport is ready
177  *        for the next transmission call; or if the
178  *        peer disconnected...)
179  * @param cont_cls closure for cont
180  * @return plugin_context that should be used next time for
181  *         sending messages to the specified peer
182  */
183 static void *
184 template_plugin_send (void *cls,
185                       void *plugin_context,
186                       struct ReadyList *service_context,
187                       const struct GNUNET_PeerIdentity *target,
188                       unsigned int priority,
189                       const struct GNUNET_MessageHeader *msg,
190                       struct GNUNET_TIME_Relative timeout,
191                       GNUNET_TRANSPORT_TransmitContinuation cont,
192                       void *cont_cls)
193 {
194   //  struct Plugin *plugin = cls;
195   return NULL;
196 }
197
198
199
200 /**
201  *
202  * @param cls closure
203  * @param plugin_context value we were asked to pass to this plugin
204  *        to respond to the given peer (use is optional,
205  *        but may speed up processing), can be NULL (if
206  *        NULL was returned from the transmit function)
207  * @param service_context must correspond to the service context
208  *        of the corresponding Transmit call; the plugin should
209  *        not cancel a send call made with a different service
210  *        context pointer!  Never NULL.
211  * @param target peer for which the last transmission is
212  *        to be cancelled
213  */
214 static void
215 template_plugin_cancel (void *cls,
216                         void *plugin_context,
217                         struct ReadyList *service_context,
218                         const struct GNUNET_PeerIdentity *target)
219 {
220   // struct Plugin *plugin = cls;
221   // FIXME
222 }
223
224
225 /**
226  * Convert the transports address to a nice, human-readable
227  * format.
228  *
229  * @param cls closure
230  * @param type name of the transport that generated the address
231  * @param addr one of the addresses of the host, NULL for the last address
232  *        the specific address format depends on the transport
233  * @param addrlen length of the address
234  * @param numeric should (IP) addresses be displayed in numeric form?
235  * @param timeout after how long should we give up?
236  * @param asc function to call on each string
237  * @param asc_cls closure for asc
238  */
239 static void
240 template_plugin_address_pretty_printer (void *cls,
241                                         const char *type,
242                                         const void *addr,
243                                         size_t addrlen,
244                                         int numeric,
245                                         struct GNUNET_TIME_Relative timeout,
246                                         GNUNET_TRANSPORT_AddressStringCallback
247                                         asc, void *asc_cls)
248 {
249   asc (asc_cls, NULL);
250 }
251
252 /**
253  * Set a quota for receiving data from the given peer; this is a
254  * per-transport limit.  The transport should limit its read/select
255  * calls to stay below the quota (in terms of incoming data).
256  *
257  * @param cls closure
258  * @param target the peer for whom the quota is given
259  * @param quota_in quota for receiving/sending data in bytes per ms
260  */
261 static void
262 template_plugin_set_receive_quota (void *cls,
263                                    const struct GNUNET_PeerIdentity *target,
264                                    uint32_t quota_in)
265 {
266   // struct Plugin *plugin = cls;
267   // FIXME!
268 }
269
270
271 /**
272  * Another peer has suggested an address for this
273  * peer and transport plugin.  Check that this could be a valid
274  * address.  If so, consider adding it to the list
275  * of addresses.
276  *
277  * @param cls closure
278  * @param addr pointer to the address
279  * @param addrlen length of addr
280  * @return GNUNET_OK if this is a plausible address for this peer
281  *         and transport
282  */
283 static int
284 template_plugin_address_suggested (void *cls,
285                                    const void *addr, size_t addrlen)
286 {
287   // struct Plugin *plugin = cls;
288
289   /* check if the address is plausible; if so,
290      add it to our list! */
291   // FIXME!
292   return GNUNET_OK;
293 }
294
295
296 /**
297  * Entry point for the plugin.
298  */
299 void *
300 gnunet_plugin_transport_template_init (void *cls)
301 {
302   struct GNUNET_TRANSPORT_PluginEnvironment *env = cls;
303   struct GNUNET_TRANSPORT_PluginFunctions *api;
304   struct Plugin *plugin;
305
306   plugin = GNUNET_malloc (sizeof (struct Plugin));
307   plugin->env = env;
308   plugin->statistics = NULL;
309   api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
310   api->cls = plugin;
311   api->validate = &template_plugin_validate;
312   api->send = &template_plugin_send;
313   api->cancel = &template_plugin_cancel;
314   api->address_pretty_printer = &template_plugin_address_pretty_printer;
315   api->set_receive_quota = &template_plugin_set_receive_quota;
316   api->address_suggested = &template_plugin_address_suggested;
317   api->cost_estimate = 42;      // FIXME
318   return api;
319 }
320
321
322 /**
323  * Exit point from the plugin.
324  */
325 void *
326 gnunet_plugin_transport_template_done (void *cls)
327 {
328   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
329   struct Plugin *plugin = api->cls;
330
331   GNUNET_free (plugin);
332   GNUNET_free (api);
333   return NULL;
334 }
335
336 /* end of plugin_transport_template.c */