bac9bcd82a6fe2c2a469a4e5d959d788c57dc03c
[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  * Function that can be used by the transport service to transmit
134  * a message using the plugin.
135  *
136  * @param cls closure
137  * @param target who should receive this message
138  * @param priority how important is the message
139  * @param msg the message to transmit
140  * @param timeout when should we time out 
141  * @param cont continuation to call once the message has
142  *        been transmitted (or if the transport is ready
143  *        for the next transmission call; or if the
144  *        peer disconnected...)
145  * @param cont_cls closure for cont
146  */
147 static ssize_t
148 template_plugin_send (void *cls,
149                       const struct GNUNET_PeerIdentity *
150                       target,
151                       const char *msgbuf,
152                       size_t msgbuf_size,
153                       unsigned int priority,
154                       struct GNUNET_TIME_Relative timeout,
155                       const void *addr,
156                       size_t addrlen,
157                       int force_address,
158                       GNUNET_TRANSPORT_TransmitContinuation
159                       cont, void *cont_cls)
160 {
161   int bytes_sent = 0;
162   /*  struct Plugin *plugin = cls; */
163   return bytes_sent;
164 }
165
166
167
168 /**
169  * Function that can be used to force the plugin to disconnect
170  * from the given peer and cancel all previous transmissions
171  * (and their continuationc).
172  *
173  * @param cls closure
174  * @param target peer from which to disconnect
175  */
176 static void
177 template_plugin_disconnect (void *cls,
178                             const struct GNUNET_PeerIdentity *target)
179 {
180   // struct Plugin *plugin = cls;
181   // FIXME
182 }
183
184
185 /**
186  * Convert the transports address to a nice, human-readable
187  * format.
188  *
189  * @param cls closure
190  * @param type name of the transport that generated the address
191  * @param addr one of the addresses of the host, NULL for the last address
192  *        the specific address format depends on the transport
193  * @param addrlen length of the address
194  * @param numeric should (IP) addresses be displayed in numeric form?
195  * @param timeout after how long should we give up?
196  * @param asc function to call on each string
197  * @param asc_cls closure for asc
198  */
199 static void
200 template_plugin_address_pretty_printer (void *cls,
201                                         const char *type,
202                                         const void *addr,
203                                         size_t addrlen,
204                                         int numeric,
205                                         struct GNUNET_TIME_Relative timeout,
206                                         GNUNET_TRANSPORT_AddressStringCallback
207                                         asc, void *asc_cls)
208 {
209   asc (asc_cls, NULL);
210 }
211
212 /**
213  * Set a quota for receiving data from the given peer; this is a
214  * per-transport limit.  The transport should limit its read/select
215  * calls to stay below the quota (in terms of incoming data).
216  *
217  * @param cls closure
218  * @param target the peer for whom the quota is given
219  * @param quota_in quota for receiving/sending data in bytes per ms
220  */
221 static void
222 template_plugin_set_receive_quota (void *cls,
223                                    const struct GNUNET_PeerIdentity *target,
224                                    uint32_t quota_in)
225 {
226   // struct Plugin *plugin = cls;
227   // FIXME!
228 }
229
230
231 /**
232  * Another peer has suggested an address for this
233  * peer and transport plugin.  Check that this could be a valid
234  * address.  If so, consider adding it to the list
235  * of addresses.
236  *
237  * @param cls closure
238  * @param addr pointer to the address
239  * @param addrlen length of addr
240  * @return GNUNET_OK if this is a plausible address for this peer
241  *         and transport
242  */
243 static int
244 template_plugin_address_suggested (void *cls,
245                                   void *addr, size_t addrlen)
246 {
247   /* struct Plugin *plugin = cls; */
248
249   /* check if the address is plausible; if so,
250      add it to our list! */
251   return GNUNET_OK;
252 }
253
254
255 /**
256  * Entry point for the plugin.
257  */
258 void *
259 gnunet_plugin_transport_template_init (void *cls)
260 {
261   struct GNUNET_TRANSPORT_PluginEnvironment *env = cls;
262   struct GNUNET_TRANSPORT_PluginFunctions *api;
263   struct Plugin *plugin;
264
265   plugin = GNUNET_malloc (sizeof (struct Plugin));
266   plugin->env = env;
267   plugin->statistics = NULL;
268   api = GNUNET_malloc (sizeof (struct GNUNET_TRANSPORT_PluginFunctions));
269   api->cls = plugin;
270   api->send = &template_plugin_send;
271   api->disconnect = &template_plugin_disconnect;
272   api->address_pretty_printer = &template_plugin_address_pretty_printer;
273   api->set_receive_quota = &template_plugin_set_receive_quota;
274   api->check_address = &template_plugin_address_suggested;
275   return api;
276 }
277
278
279 /**
280  * Exit point from the plugin.
281  */
282 void *
283 gnunet_plugin_transport_template_done (void *cls)
284 {
285   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
286   struct Plugin *plugin = api->cls;
287
288   GNUNET_free (plugin);
289   GNUNET_free (api);
290   return NULL;
291 }
292
293 /* end of plugin_transport_template.c */