summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-11-05 21:54:44 +0000
committerChristian Grothoff <christian@grothoff.org>2010-11-05 21:54:44 +0000
commitbdc3b54372a92874c2ecb58069eac5bdfe6fcddc (patch)
tree575c606a8f81c1f0baabad43bf34789023513ee7 /src/include
parentf0963cfb7a694f9a7c7ff28471660242529f00a8 (diff)
downloadgnunet-bdc3b54372a92874c2ecb58069eac5bdfe6fcddc.tar.gz
gnunet-bdc3b54372a92874c2ecb58069eac5bdfe6fcddc.zip
moving plugin headers
Diffstat (limited to 'src/include')
-rw-r--r--src/include/Makefile.am4
-rw-r--r--src/include/gnunet_block_plugin.h118
-rw-r--r--src/include/gnunet_datacache_plugin.h158
-rw-r--r--src/include/gnunet_datastore_plugin.h342
-rw-r--r--src/include/gnunet_dv_service.h2
-rw-r--r--src/include/gnunet_transport_plugin.h474
6 files changed, 1097 insertions, 1 deletions
diff --git a/src/include/Makefile.am b/src/include/Makefile.am
index 70fd97bd0..a01c9268c 100644
--- a/src/include/Makefile.am
+++ b/src/include/Makefile.am
@@ -19,6 +19,7 @@ gnunetinclude_HEADERS = \
19 gnunet_bandwidth_lib.h \ 19 gnunet_bandwidth_lib.h \
20 gnunet_bio_lib.h \ 20 gnunet_bio_lib.h \
21 gnunet_block_lib.h \ 21 gnunet_block_lib.h \
22 gnunet_block_plugin.h \
22 gnunet_client_lib.h \ 23 gnunet_client_lib.h \
23 gnunet_common.h \ 24 gnunet_common.h \
24 gnunet_constants.h \ 25 gnunet_constants.h \
@@ -28,7 +29,9 @@ gnunetinclude_HEADERS = \
28 gnunet_core_service.h \ 29 gnunet_core_service.h \
29 gnunet_crypto_lib.h \ 30 gnunet_crypto_lib.h \
30 gnunet_datacache_lib.h \ 31 gnunet_datacache_lib.h \
32 gnunet_datacache_plugin.h \
31 gnunet_datastore_service.h \ 33 gnunet_datastore_service.h \
34 gnunet_datastore_plugin.h \
32 gnunet_dht_service.h \ 35 gnunet_dht_service.h \
33 gnunet_disk_lib.h \ 36 gnunet_disk_lib.h \
34 gnunet_dv_service.h \ 37 gnunet_dv_service.h \
@@ -57,5 +60,6 @@ gnunetinclude_HEADERS = \
57 gnunet_testing_lib.h \ 60 gnunet_testing_lib.h \
58 gnunet_time_lib.h \ 61 gnunet_time_lib.h \
59 gnunet_transport_service.h \ 62 gnunet_transport_service.h \
63 gnunet_transport_plugin.h \
60 gnunet_upnp_service.h \ 64 gnunet_upnp_service.h \
61 gnunet_util_lib.h 65 gnunet_util_lib.h
diff --git a/src/include/gnunet_block_plugin.h b/src/include/gnunet_block_plugin.h
new file mode 100644
index 000000000..2a3e9e2ed
--- /dev/null
+++ b/src/include/gnunet_block_plugin.h
@@ -0,0 +1,118 @@
1/*
2 This file is part of GNUnet
3 (C) 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 block/gnunet_block_plugin.h
23 * @brief API for block plugins. Each block plugin must conform to
24 * the API specified by this header.
25 * @author Christian Grothoff
26 */
27#ifndef PLUGIN_BLOCK_H
28#define PLUGIN_BLOCK_H
29
30#include "gnunet_util_lib.h"
31#include "gnunet_container_lib.h"
32#include "gnunet_block_lib.h"
33
34
35/**
36 * Function called to validate a reply or a request. For
37 * request evaluation, simply pass "NULL" for the reply_block.
38 * Note that it is assumed that the reply has already been
39 * matched to the key (and signatures checked) as it would
40 * be done with the "get_key" function.
41 *
42 * @param cls closure
43 * @param type block type
44 * @param query original query (hash)
45 * @param bf pointer to bloom filter associated with query; possibly updated (!)
46 * @param bf_mutator mutation value for bf
47 * @param xquery extrended query data (can be NULL, depending on type)
48 * @param xquery_size number of bytes in xquery
49 * @param reply_block response to validate
50 * @param reply_block_size number of bytes in reply block
51 * @return characterization of result
52 */
53typedef enum GNUNET_BLOCK_EvaluationResult
54 (*GNUNET_BLOCK_EvaluationFunction) (void *cls,
55 enum GNUNET_BLOCK_Type type,
56 const GNUNET_HashCode *query,
57 struct GNUNET_CONTAINER_BloomFilter **bf,
58 int32_t bf_mutator,
59 const void *xquery,
60 size_t xquery_size,
61 const void *reply_block,
62 size_t reply_block_size);
63
64
65/**
66 * Function called to obtain the key for a block.
67 *
68 * @param cls closure
69 * @param type block type
70 * @param block block to get the key for
71 * @param block_size number of bytes in block
72 * @param key set to the key (query) for the given block
73 * @return GNUNET_YES on success,
74 * GNUNET_NO if the block is malformed
75 * GNUNET_SYSERR if type not supported
76 * (or if extracting a key from a block of this type does not work)
77 */
78typedef int
79 (*GNUNET_BLOCK_GetKeyFunction) (void *cls,
80 enum GNUNET_BLOCK_Type type,
81 const void *block,
82 size_t block_size,
83 GNUNET_HashCode *key);
84
85
86
87/**
88 * Each plugin is required to return a pointer to a struct of this
89 * type as the return value from its entry point.
90 */
91struct GNUNET_BLOCK_PluginFunctions
92{
93
94 /**
95 * Closure for all of the callbacks.
96 */
97 void *cls;
98
99 /**
100 * 0-terminated array of block types supported by this plugin.
101 */
102 const enum GNUNET_BLOCK_Type *types;
103
104 /**
105 * Main function of a block plugin. Allows us to check if a
106 * block matches a query.
107 */
108 GNUNET_BLOCK_EvaluationFunction evaluate;
109
110 /**
111 * Obtain the key for a given block (if possible).
112 */
113 GNUNET_BLOCK_GetKeyFunction get_key;
114
115};
116
117
118#endif
diff --git a/src/include/gnunet_datacache_plugin.h b/src/include/gnunet_datacache_plugin.h
new file mode 100644
index 000000000..6aa9b1d06
--- /dev/null
+++ b/src/include/gnunet_datacache_plugin.h
@@ -0,0 +1,158 @@
1/*
2 This file is part of GNUnet
3 (C) 2006, 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 datacache/gnunet_datacache_plugin.h
23 * @brief API for database backends for the datacache
24 * @author Christian Grothoff
25 */
26#ifndef PLUGIN_DATACACHE_H
27#define PLUGIN_DATACACHE_H
28
29#include "gnunet_datacache_lib.h"
30
31#ifdef __cplusplus
32extern "C"
33{
34#if 0 /* keep Emacsens' auto-indent happy */
35}
36#endif
37#endif
38
39
40/**
41 * Function called by plugins to notify the datacache
42 * about content deletions.
43 *
44 * @param cls closure
45 * @param key key of the content that was deleted
46 * @param size number of bytes that were made available
47 */
48typedef void (*GNUNET_DATACACHE_DeleteNotifyCallback)(void *cls,
49 const GNUNET_HashCode *key,
50 size_t size);
51
52
53/**
54 * The datastore service will pass a pointer to a struct
55 * of this type as the first and only argument to the
56 * entry point of each datastore plugin.
57 */
58struct GNUNET_DATACACHE_PluginEnvironment
59{
60
61
62 /**
63 * Configuration to use.
64 */
65 const struct GNUNET_CONFIGURATION_Handle *cfg;
66
67 /**
68 * Configuration section to use.
69 */
70 const char *section;
71
72 /**
73 * Closure to use for callbacks.
74 */
75 void *cls;
76
77 /**
78 * Function to call whenever the plugin needs to
79 * discard content that it was asked to store.
80 */
81 GNUNET_DATACACHE_DeleteNotifyCallback delete_notify;
82
83 /**
84 * How much space are we allowed to use?
85 */
86 unsigned long long quota;
87
88};
89
90
91/**
92 * @brief struct returned by the initialization function of the plugin
93 */
94struct GNUNET_DATACACHE_PluginFunctions {
95
96 /**
97 * Closure to pass to all plugin functions.
98 */
99 void *cls;
100
101 /**
102 * Store an item in the datastore.
103 *
104 * @param cls closure (internal context for the plugin)
105 * @param size number of bytes in data
106 * @param data data to store
107 * @param type type of the value
108 * @param discard_time when to discard the value in any case
109 * @return 0 on error, number of bytes used otherwise
110 */
111 size_t (*put) (void *cls,
112 const GNUNET_HashCode * key,
113 size_t size,
114 const char *data,
115 enum GNUNET_BLOCK_Type type,
116 struct GNUNET_TIME_Absolute discard_time);
117
118
119 /**
120 * Iterate over the results for a particular key
121 * in the datastore.
122 *
123 * @param cls closure (internal context for the plugin)
124 * @param key
125 * @param type entries of which type are relevant?
126 * @param iter maybe NULL (to just count)
127 * @param iter_cls closure for iter
128 * @return the number of results found
129 */
130 unsigned int (*get) (void *cls,
131 const GNUNET_HashCode * key,
132 enum GNUNET_BLOCK_Type type,
133 GNUNET_DATACACHE_Iterator iter,
134 void *iter_cls);
135
136
137 /**
138 * Delete the entry with the lowest expiration value
139 * from the datacache right now.
140 *
141 * @param cls closure (internal context for the plugin)
142 * @return GNUNET_OK on success, GNUNET_SYSERR on error
143 */
144 int (*del) (void *cls);
145
146
147};
148
149
150#if 0 /* keep Emacsens' auto-indent happy */
151{
152#endif
153#ifdef __cplusplus
154}
155#endif
156
157/* end of gnunet_datacache_plugin.h */
158#endif
diff --git a/src/include/gnunet_datastore_plugin.h b/src/include/gnunet_datastore_plugin.h
new file mode 100644
index 000000000..832d53a68
--- /dev/null
+++ b/src/include/gnunet_datastore_plugin.h
@@ -0,0 +1,342 @@
1/*
2 This file is part of GNUnet
3 (C) 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 datastore/gnunet_datastore_plugin.h
23 * @brief API for the database backend plugins.
24 * @author Christian Grothoff
25 */
26#ifndef PLUGIN_DATASTORE_H
27#define PLUGIN_DATASTORE_H
28
29#include "gnunet_block_lib.h"
30#include "gnunet_configuration_lib.h"
31#include "gnunet_datastore_service.h"
32#include "gnunet_statistics_service.h"
33#include "gnunet_scheduler_lib.h"
34
35
36/**
37 * How many bytes of overhead will we assume per entry
38 * in any DB (for reservations)?
39 */
40#define GNUNET_DATASTORE_ENTRY_OVERHEAD 256
41
42
43/**
44 * Function invoked to notify service of disk utilization
45 * changes.
46 *
47 * @param cls closure
48 * @param delta change in disk utilization,
49 * 0 for "reset to empty"
50 */
51typedef void (*DiskUtilizationChange)(void *cls,
52 int delta);
53
54
55/**
56 * The datastore service will pass a pointer to a struct
57 * of this type as the first and only argument to the
58 * entry point of each datastore plugin.
59 */
60struct GNUNET_DATASTORE_PluginEnvironment
61{
62 /**
63 * Configuration to use.
64 */
65 const struct GNUNET_CONFIGURATION_Handle *cfg;
66
67 /**
68 * Function to call on disk utilization change.
69 */
70 DiskUtilizationChange duc;
71
72 /**
73 * Closure.
74 */
75 void *cls;
76
77};
78
79
80/**
81 * Function invoked on behalf of a "PluginIterator"
82 * asking the database plugin to call the iterator
83 * with the next item.
84 *
85 * @param next_cls whatever argument was given
86 * to the PluginIterator as "next_cls".
87 * @param end_it set to GNUNET_YES if we
88 * should terminate the iteration early
89 * (iterator should be still called once more
90 * to signal the end of the iteration).
91 */
92typedef void (*PluginNextRequest)(void *next_cls,
93 int end_it);
94
95
96/**
97 * An iterator over a set of items stored in the datastore.
98 *
99 * @param cls closure
100 * @param next_cls closure to pass to the "next" function.
101 * @param key key for the content
102 * @param size number of bytes in data
103 * @param data content stored
104 * @param type type of the content
105 * @param priority priority of the content
106 * @param anonymity anonymity-level for the content
107 * @param expiration expiration time for the content
108 * @param uid unique identifier for the datum;
109 * maybe 0 if no unique identifier is available
110 *
111 * @return GNUNET_SYSERR to abort the iteration, GNUNET_OK to continue
112 * (continue on call to "next", of course),
113 * GNUNET_NO to delete the item and continue (if supported)
114 */
115typedef int (*PluginIterator) (void *cls,
116 void *next_cls,
117 const GNUNET_HashCode * key,
118 uint32_t size,
119 const void *data,
120 enum GNUNET_BLOCK_Type type,
121 uint32_t priority,
122 uint32_t anonymity,
123 struct GNUNET_TIME_Absolute
124 expiration,
125 uint64_t uid);
126
127/**
128 * Get an estimate of how much space the database is
129 * currently using.
130 *
131 * @param cls closure
132 * @return number of bytes used on disk
133 */
134typedef unsigned long long (*PluginGetSize) (void *cls);
135
136
137/**
138 * Store an item in the datastore. If the item is already present,
139 * the priorities are summed up and the higher expiration time and
140 * lower anonymity level is used.
141 *
142 * @param cls closure
143 * @param key key for the item
144 * @param size number of bytes in data
145 * @param data content stored
146 * @param type type of the content
147 * @param priority priority of the content
148 * @param anonymity anonymity-level for the content
149 * @param expiration expiration time for the content
150 * @param msg set to an error message (on failure)
151 * @return GNUNET_OK on success, GNUNET_NO if the content
152 * was already present (and may have been updated);
153 * GNUNET_SYSERR on failure
154 */
155typedef int (*PluginPut) (void *cls,
156 const GNUNET_HashCode * key,
157 uint32_t size,
158 const void *data,
159 enum GNUNET_BLOCK_Type type,
160 uint32_t priority,
161 uint32_t anonymity,
162 struct GNUNET_TIME_Absolute expiration,
163 char **msg);
164
165
166/**
167 * Iterate over the results for a particular key
168 * in the datastore.
169 *
170 * @param cls closure
171 * @param key maybe NULL (to match all entries)
172 * @param vhash hash of the value, maybe NULL (to
173 * match all values that have the right key).
174 * Note that for DBlocks there is no difference
175 * betwen key and vhash, but for other blocks
176 * there may be!
177 * @param type entries of which type are relevant?
178 * Use 0 for any type.
179 * @param iter function to call on each matching value; however,
180 * after the first call to "iter", the plugin must wait
181 * until "NextRequest" was called before giving the iterator
182 * the next item; finally, the "iter" should be called once
183 * once with a NULL value at the end ("next_cls" should be NULL
184 * for that last call)
185 * @param iter_cls closure for iter
186 */
187typedef void (*PluginGet) (void *cls,
188 const GNUNET_HashCode * key,
189 const GNUNET_HashCode * vhash,
190 enum GNUNET_BLOCK_Type type,
191 PluginIterator iter, void *iter_cls);
192
193
194/**
195 * Update the priority for a particular key in the datastore. If
196 * the expiration time in value is different than the time found in
197 * the datastore, the higher value should be kept. For the
198 * anonymity level, the lower value is to be used. The specified
199 * priority should be added to the existing priority, ignoring the
200 * priority in value.
201 *
202 * Note that it is possible for multiple values to match this put.
203 * In that case, all of the respective values are updated.
204 *
205 * @param cls closure
206 * @param uid unique identifier of the datum
207 * @param delta by how much should the priority
208 * change? If priority + delta < 0 the
209 * priority should be set to 0 (never go
210 * negative).
211 * @param expire new expiration time should be the
212 * MAX of any existing expiration time and
213 * this value
214 * @param msg set to an error message (on error)
215 * @return GNUNET_OK on success
216 */
217typedef int (*PluginUpdate) (void *cls,
218 uint64_t uid,
219 int delta, struct GNUNET_TIME_Absolute expire,
220 char **msg);
221
222
223/**
224 * Select a subset of the items in the datastore and call
225 * the given iterator for each of them.
226 *
227 * @param cls closure
228 * @param type entries of which type should be considered?
229 * Use 0 for any type.
230 * @param iter function to call on each matching value; however,
231 * after the first call to "iter", the plugin must wait
232 * until "NextRequest" was called before giving the iterator
233 * the next item; finally, the "iter" should be called once
234 * once with a NULL value at the end ("next_cls" should be NULL
235 * for that last call)
236 * @param iter_cls closure for iter
237 */
238typedef void (*PluginSelector) (void *cls,
239 enum GNUNET_BLOCK_Type type,
240 PluginIterator iter,
241 void *iter_cls);
242
243/**
244 * Drop database.
245 *
246 * @param cls closure
247 */
248typedef void (*PluginDrop) (void *cls);
249
250
251
252/**
253 * Each plugin is required to return a pointer to a struct of this
254 * type as the return value from its entry point.
255 */
256struct GNUNET_DATASTORE_PluginFunctions
257{
258
259 /**
260 * Closure to use for all of the following callbacks
261 * (except "next_request").
262 */
263 void *cls;
264
265 /**
266 * Get the current on-disk size of the SQ store. Estimates are
267 * fine, if that's the only thing available.
268 */
269 PluginGetSize get_size;
270
271 /**
272 * Function to store an item in the datastore.
273 */
274 PluginPut put;
275
276 /**
277 * Function called by iterators whenever they want the next value;
278 * note that unlike all of the other callbacks, this one does get a
279 * the "next_cls" closure which is usually different from the "cls"
280 * member of this struct!
281 */
282 PluginNextRequest next_request;
283
284 /**
285 * Function to iterate over the results for a particular key
286 * in the datastore.
287 */
288 PluginGet get;
289
290 /**
291 * Update the priority for a particular key in the datastore. If
292 * the expiration time in value is different than the time found in
293 * the datastore, the higher value should be kept. For the
294 * anonymity level, the lower value is to be used. The specified
295 * priority should be added to the existing priority, ignoring the
296 * priority in value.
297 */
298 PluginUpdate update;
299
300 /**
301 * Iterate over the items in the datastore in ascending
302 * order of priority.
303 */
304 PluginSelector iter_low_priority;
305
306 /**
307 * Iterate over content with anonymity zero.
308 */
309 PluginSelector iter_zero_anonymity;
310
311 /**
312 * Iterate over the items in the datastore in ascending order of
313 * expiration time.
314 */
315 PluginSelector iter_ascending_expiration;
316
317 /**
318 * Iterate over the items in the datastore in migration
319 * order. Call the given function on the next item only
320 * (and then signal 'end' with a second call). This is
321 * a significant difference from all the other iterators!
322 */
323 PluginSelector iter_migration_order;
324
325 /**
326 * Iterate over all the items in the datastore
327 * as fast as possible in a single transaction
328 * (can lock datastore while this happens, focus
329 * is on doing it fast).
330 */
331 PluginSelector iter_all_now;
332
333 /**
334 * Delete the database. The next operation is
335 * guaranteed to be unloading of the module.
336 */
337 PluginDrop drop;
338
339};
340
341
342#endif
diff --git a/src/include/gnunet_dv_service.h b/src/include/gnunet_dv_service.h
index 2bc77fefc..6915fb065 100644
--- a/src/include/gnunet_dv_service.h
+++ b/src/include/gnunet_dv_service.h
@@ -40,7 +40,7 @@ extern "C"
40#include "gnunet_common.h" 40#include "gnunet_common.h"
41#include "gnunet_configuration_lib.h" 41#include "gnunet_configuration_lib.h"
42#include "gnunet_scheduler_lib.h" 42#include "gnunet_scheduler_lib.h"
43#include "../transport/plugin_transport.h" 43#include "../transport/gnunet_transport_plugin.h"
44 44
45/** 45/**
46 * Version of the dv API. 46 * Version of the dv API.
diff --git a/src/include/gnunet_transport_plugin.h b/src/include/gnunet_transport_plugin.h
new file mode 100644
index 000000000..38c79f07f
--- /dev/null
+++ b/src/include/gnunet_transport_plugin.h
@@ -0,0 +1,474 @@
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 transport/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#include "transport_selection.h"
39
40
41/**
42 * Opaque pointer that plugins can use to distinguish specific
43 * connections to a given peer. Typically used by stateful plugins to
44 * allow the service to refer to specific streams instead of a more
45 * general notion of "some connection" to the given peer. This is
46 * useful since sometimes (i.e. for inbound TCP connections) a
47 * connection may not have an address that can be used for meaningful
48 * distinction between sessions to the same peer.
49 */
50struct Session;
51
52/**
53 * Every 'struct Session' must begin with this header.
54 */
55struct SessionHeader
56{
57
58 /**
59 * Cached signature for PONG generation for the session. Do not use
60 * in the plugin!
61 */
62 struct GNUNET_CRYPTO_RsaSignature pong_signature;
63
64 /**
65 * Expiration time for signature. Do not use in the plugin!
66 */
67 struct GNUNET_TIME_Absolute pong_sig_expires;
68
69};
70
71/**
72 * Function that will be called whenever the plugin internally
73 * cleans up a session pointer and hence the service needs to
74 * discard all of those sessions as well. Plugins that do not
75 * use sessions can simply omit calling this function and always
76 * use NULL wherever a session pointer is needed.
77 *
78 * @param cls closure
79 * @param peer which peer was the session for
80 * @param session which session is being destoyed
81 */
82typedef void (*GNUNET_TRANSPORT_SessionEnd) (void *cls,
83 const struct GNUNET_PeerIdentity *peer,
84 struct Session *session);
85
86
87/**
88 * Function called by the transport for each received message.
89 * This function should also be called with "NULL" for the
90 * message to signal that the other peer disconnected.
91 *
92 * @param cls closure
93 * @param peer (claimed) identity of the other peer
94 * @param message the message, NULL if we only care about
95 * learning about the delay until we should receive again -- FIXME!
96 * @param distance in overlay hops; use 1 unless DV (or 0 if message == NULL)
97 * @param session identifier used for this session (NULL for plugins
98 * that do not offer bi-directional communication to the sender
99 * using the same "connection")
100 * @param sender_address binary address of the sender (if we established the
101 * connection or are otherwise sure of it; should be NULL
102 * for inbound TCP/UDP connections since it it not clear
103 * that we could establish ourselves a connection to that
104 * IP address and get the same system)
105 * @param sender_address_len number of bytes in sender_address
106 * @return how long the plugin should wait until receiving more data
107 * (plugins that do not support this, can ignore the return value)
108 */
109typedef struct GNUNET_TIME_Relative (*GNUNET_TRANSPORT_PluginReceiveCallback) (void *cls,
110 const struct
111 GNUNET_PeerIdentity *
112 peer,
113 const struct
114 GNUNET_MessageHeader *
115 message,
116 uint32_t distance,
117 struct Session *session,
118 const char *sender_address,
119 uint16_t sender_address_len);
120
121
122/**
123 * Function that will be called for each address the transport
124 * is aware that it might be reachable under.
125 *
126 * @param cls closure
127 * @param name name of the transport that generated the address
128 * @param addr one of the addresses of the host, NULL for the last address
129 * the specific address format depends on the transport
130 * @param addrlen length of the address
131 * @param expires when should this address automatically expire?
132 */
133typedef void (*GNUNET_TRANSPORT_AddressNotification) (void *cls,
134 const char *name,
135 const void *addr,
136 uint16_t addrlen,
137 struct
138 GNUNET_TIME_Relative
139 expires);
140
141/**
142 * Function that will be called whenever the plugin receives data over
143 * the network and wants to determine how long it should wait until
144 * the next time it reads from the given peer. Note that some plugins
145 * (such as UDP) may not be able to wait (for a particular peer), so
146 * the waiting part is optional. Plugins that can wait should call
147 * this function, sleep the given amount of time, and call it again
148 * (with zero bytes read) UNTIL it returns zero and only then read.
149 *
150 * @param cls closure
151 * @param peer which peer did we read data from
152 * @param amount_recved number of bytes read (can be zero)
153 * @return how long to wait until reading more from this peer
154 * (to enforce inbound quotas)
155 */
156typedef struct GNUNET_TIME_Relative (*GNUNET_TRANSPORT_TrafficReport) (void *cls,
157 const struct
158 GNUNET_PeerIdentity *peer,
159 size_t amount_recved);
160
161/**
162 * Function called whenever the plugin has to notify ATS about costs for using this transport
163 *
164 * The cost will be passed as struct GNUNET_ATS_Cost_Information[]
165 * This array is 0-terminated, so the last element will be a pair:
166 * ((cost->cost_type==GNUNET_ATS_ARRAY_TERMINATOR) && cost->cost_value==0))
167 *
168 * @param cls closure
169 * @param peer peer
170 * @param addr peer address
171 * @param addrlen address length
172 * @param cost pointer to the first element of struct GNUNET_ATS_Cost_Information[]
173 */
174typedef void (*GNUNET_TRANSPORT_CostReport) (void *cls,
175 const struct GNUNET_PeerIdentity *peer,
176 const void *addr,
177 uint16_t addrlen,
178 struct GNUNET_ATS_Information * cost);
179
180/**
181 * The transport service will pass a pointer to a struct
182 * of this type as the first and only argument to the
183 * entry point of each transport plugin.
184 */
185struct GNUNET_TRANSPORT_PluginEnvironment
186{
187 /**
188 * Configuration to use.
189 */
190 const struct GNUNET_CONFIGURATION_Handle *cfg;
191
192 /**
193 * Identity of this peer.
194 */
195 const struct GNUNET_PeerIdentity *my_identity;
196
197 /**
198 * Pointer (!) to our HELLO message. Note that the address
199 * referred to "*our_hello" might change over time.
200 */
201 struct GNUNET_HELLO_Message *const*our_hello;
202
203 /**
204 * Closure for the various callbacks.
205 */
206 void *cls;
207
208 /**
209 * Handle for reporting statistics.
210 */
211 struct GNUNET_STATISTICS_Handle *stats;
212
213 /**
214 * Function that should be called by the transport plugin
215 * whenever a message is received.
216 */
217 GNUNET_TRANSPORT_PluginReceiveCallback receive;
218
219 /**
220 * Function that must be called by each plugin to notify the
221 * transport service about the addresses under which the transport
222 * provided by the plugin can be reached.
223 */
224 GNUNET_TRANSPORT_AddressNotification notify_address;
225
226 /**
227 * Inform service about traffic received, get information
228 * about when we might be willing to receive more.
229 */
230 GNUNET_TRANSPORT_TrafficReport traffic_report;
231
232 /**
233 * Function that must be called by the plugin when a non-NULL
234 * session handle stops being valid (is destroyed).
235 */
236 GNUNET_TRANSPORT_SessionEnd session_end;
237
238 /**
239 * Inform service about costs for using this transport plugin
240 */
241 GNUNET_TRANSPORT_CostReport cost_report;
242
243 /**
244 * What is the maximum number of connections that this transport
245 * should allow? Transports that do not have sessions (such as
246 * UDP) can ignore this value.
247 */
248 uint32_t max_connections;
249
250};
251
252
253/**
254 * Function called by the GNUNET_TRANSPORT_TransmitFunction
255 * upon "completion".
256 *
257 * @param cls closure
258 * @param target who was the recipient of the message?
259 * @param result GNUNET_OK on success
260 * GNUNET_SYSERR if the target disconnected;
261 * disconnect will ALSO be signalled using
262 * the ReceiveCallback.
263 */
264typedef void
265 (*GNUNET_TRANSPORT_TransmitContinuation) (void *cls,
266 const struct GNUNET_PeerIdentity *
267 target, int result);
268
269
270/**
271 * Function that can be used by the transport service to transmit
272 * a message using the plugin. Note that in the case of a
273 * peer disconnecting, the continuation MUST be called
274 * prior to the disconnect notification itself. This function
275 * will be called with this peer's HELLO message to initiate
276 * a fresh connection to another peer.
277 *
278 * @param cls closure
279 * @param target who should receive this message
280 * @param msgbuf the message to transmit
281 * @param msgbuf_size number of bytes in 'msgbuf'
282 * @param priority how important is the message (most plugins will
283 * ignore message priority and just FIFO)
284 * @param timeout how long to wait at most for the transmission (does not
285 * require plugins to discard the message after the timeout,
286 * just advisory for the desired delay; most plugins will ignore
287 * this as well)
288 * @param session which session must be used (or NULL for "any")
289 * @param addr the address to use (can be NULL if the plugin
290 * is "on its own" (i.e. re-use existing TCP connection))
291 * @param addrlen length of the address in bytes
292 * @param force_address GNUNET_YES if the plugin MUST use the given address,
293 * GNUNET_NO means the plugin may use any other address and
294 * GNUNET_SYSERR means that only reliable existing
295 * bi-directional connections should be used (regardless
296 * of address)
297 * @param cont continuation to call once the message has
298 * been transmitted (or if the transport is ready
299 * for the next transmission call; or if the
300 * peer disconnected...); can be NULL
301 * @param cont_cls closure for cont
302 * @return number of bytes used (on the physical network, with overheads);
303 * -1 on hard errors (i.e. address invalid); 0 is a legal value
304 * and does NOT mean that the message was not transmitted (DV)
305 */
306typedef ssize_t
307 (*GNUNET_TRANSPORT_TransmitFunction) (void *cls,
308 const struct GNUNET_PeerIdentity *
309 target,
310 const char *msgbuf,
311 size_t msgbuf_size,
312 uint32_t priority,
313 struct GNUNET_TIME_Relative timeout,
314 struct Session *session,
315 const void *addr,
316 size_t addrlen,
317 int force_address,
318 GNUNET_TRANSPORT_TransmitContinuation
319 cont, void *cont_cls);
320
321
322/**
323 * Function that can be called to force a disconnect from the
324 * specified neighbour. This should also cancel all previously
325 * scheduled transmissions. Obviously the transmission may have been
326 * partially completed already, which is OK. The plugin is supposed
327 * to close the connection (if applicable) and no longer call the
328 * transmit continuation(s).
329 *
330 * Finally, plugin MUST NOT call the services's receive function to
331 * notify the service that the connection to the specified target was
332 * closed after a getting this call.
333 *
334 * @param cls closure
335 * @param target peer for which the last transmission is
336 * to be cancelled
337 */
338typedef void
339 (*GNUNET_TRANSPORT_DisconnectFunction) (void *cls,
340 const struct GNUNET_PeerIdentity *
341 target);
342
343
344/**
345 * Function called by the pretty printer for the resolved address for
346 * each human-readable address obtained.
347 *
348 * @param cls closure
349 * @param hostname one of the names for the host, NULL
350 * on the last call to the callback
351 */
352typedef void (*GNUNET_TRANSPORT_AddressStringCallback) (void *cls,
353 const char *address);
354
355
356/**
357 * Convert the transports address to a nice, human-readable
358 * format.
359 *
360 * @param cls closure
361 * @param name name of the transport that generated the address
362 * @param addr one of the addresses of the host, NULL for the last address
363 * the specific address format depends on the transport
364 * @param addrlen length of the address
365 * @param numeric should (IP) addresses be displayed in numeric form?
366 * @param timeout after how long should we give up?
367 * @param asc function to call on each string
368 * @param asc_cls closure for asc
369 */
370typedef void
371 (*GNUNET_TRANSPORT_AddressPrettyPrinter) (void *cls,
372 const char *type,
373 const void *addr,
374 size_t addrlen,
375 int numeric,
376 struct GNUNET_TIME_Relative
377 timeout,
378 GNUNET_TRANSPORT_AddressStringCallback
379 asc, void *asc_cls);
380
381
382/**
383 * Another peer has suggested an address for this peer and transport
384 * plugin. Check that this could be a valid address. This function
385 * is not expected to 'validate' the address in the sense of trying to
386 * connect to it but simply to see if the binary format is technically
387 * legal for establishing a connection to this peer (and make sure that
388 * the address really corresponds to our network connection/settings
389 * and not some potential man-in-the-middle).
390 *
391 * @param addr pointer to the address
392 * @param addrlen length of addr
393 * @return GNUNET_OK if this is a plausible address for this peer
394 * and transport, GNUNET_SYSERR if not
395 */
396typedef int
397(*GNUNET_TRANSPORT_CheckAddress) (void *cls,
398 const void *addr, size_t addrlen);
399
400
401/**
402 * Function called for a quick conversion of the binary address to
403 * a numeric address. Note that the caller must not free the
404 * address and that the next call to this function is allowed
405 * to override the address again.
406 *
407 * @param cls closure
408 * @param addr binary address
409 * @param addr_len length of the address
410 * @return string representing the same address
411 */
412typedef const char* (*GNUNET_TRANSPORT_AddressToString) (void *cls,
413 const void *addr,
414 size_t addrlen);
415
416
417/**
418 * Each plugin is required to return a pointer to a struct of this
419 * type as the return value from its entry point.
420 */
421struct GNUNET_TRANSPORT_PluginFunctions
422{
423
424 /**
425 * Closure for all of the callbacks.
426 */
427 void *cls;
428
429 /**
430 * Function that the transport service will use to transmit data to
431 * another peer. May be NULL for plugins that only support
432 * receiving data. After this call, the plugin call the specified
433 * continuation with success or error before notifying us about the
434 * target having disconnected.
435 */
436 GNUNET_TRANSPORT_TransmitFunction send;
437
438 /**
439 * Function that can be used to force the plugin to disconnect from
440 * the given peer and cancel all previous transmissions (and their
441 * continuations). Note that if the transport does not have
442 * sessions / persistent connections (for example, UDP), this
443 * function may very well do nothing.
444 */
445 GNUNET_TRANSPORT_DisconnectFunction disconnect;
446
447 /**
448 * Function to pretty-print addresses. NOTE: this function is not
449 * yet used by transport-service, but will be used in the future
450 * once the transport-API has been completed.
451 */
452 GNUNET_TRANSPORT_AddressPrettyPrinter address_pretty_printer;
453
454 /**
455 * Function that will be called to check if a binary address
456 * for this plugin is well-formed and corresponds to an
457 * address for THIS peer (as per our configuration). Naturally,
458 * if absolutely necessary, plugins can be a bit conservative in
459 * their answer, but in general plugins should make sure that the
460 * address does not redirect traffic to a 3rd party that might
461 * try to man-in-the-middle our traffic.
462 */
463 GNUNET_TRANSPORT_CheckAddress check_address;
464
465 /**
466 * Function that will be called to convert a binary address
467 * to a string (numeric conversion only).
468 */
469 GNUNET_TRANSPORT_AddressToString address_to_string;
470
471};
472
473
474#endif