input checks
[oweals/gnunet.git] / src / include / gnunet_dht_service.h
1 /*
2       This file is part of GNUnet
3       (C) 2004, 2005, 2006, 2008, 2009, 2011 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 include/gnunet_dht_service.h
23  * @brief API to the DHT service
24  * @author Christian Grothoff
25  */
26
27 #ifndef GNUNET_DHT_SERVICE_H
28 #define GNUNET_DHT_SERVICE_H
29
30 #include "gnunet_util_lib.h"
31 #include "gnunet_block_lib.h"
32 #include "gnunet_hello_lib.h"
33
34 #ifdef __cplusplus
35 extern "C"
36 {
37 #if 0                           /* keep Emacsens' auto-indent happy */
38 }
39 #endif
40 #endif
41
42
43 /**
44  * Default republication frequency for stored data in the DHT.
45  */
46 #define GNUNET_DHT_DEFAULT_REPUBLISH_FREQUENCY GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, 60)
47
48
49
50 /**
51  * Connection to the DHT service.
52  */
53 struct GNUNET_DHT_Handle;
54
55 /**
56  * Handle to control a get operation.
57  */
58 struct GNUNET_DHT_GetHandle;
59
60 /**
61  * Handle to control a find peer operation.
62  */
63 struct GNUNET_DHT_FindPeerHandle;
64
65
66 /**
67  * Options for routing.
68  */
69 enum GNUNET_DHT_RouteOption
70 {
71     /**
72      * Default.  Do nothing special.
73      */
74   GNUNET_DHT_RO_NONE = 0,
75
76     /**
77      * Each peer along the way should look at 'enc' (otherwise
78      * only the k-peers closest to the key should look at it).
79      */
80   GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE = 1,
81
82     /**
83      * We should keep track of the route that the message
84      * took in the P2P network.
85      */
86   GNUNET_DHT_RO_RECORD_ROUTE = 2,
87
88   /**
89    * This is a 'FIND-PEER' request, so approximate results are fine.
90    */
91   GNUNET_DHT_RO_FIND_PEER = 4,
92
93     /**
94      * Possible message option for query key randomization.
95      */
96   GNUNET_DHT_RO_BART = 8
97 };
98
99
100 /**
101  * Initialize the connection with the DHT service.
102  *
103  * @param cfg configuration to use
104  * @param ht_len size of the internal hash table to use for
105  *               processing multiple GET/FIND requests in parallel
106  * @return NULL on error
107  */
108 struct GNUNET_DHT_Handle *
109 GNUNET_DHT_connect (const struct GNUNET_CONFIGURATION_Handle *cfg,
110                     unsigned int ht_len);
111
112
113 /**
114  * Shutdown connection with the DHT service.
115  *
116  * @param handle connection to shut down
117  */
118 void
119 GNUNET_DHT_disconnect (struct GNUNET_DHT_Handle *handle);
120
121
122 /* *************** Standard API: get and put ******************* */
123
124
125 /**
126  * Opaque handle to cancel a PUT operation.
127  */
128 struct GNUNET_DHT_PutHandle;
129
130
131 /**
132  * Type of a PUT continuation.  You must not call
133  * "GNUNET_DHT_disconnect" in this continuation.
134  *
135  * @param cls closure
136  * @param success GNUNET_OK if the PUT was transmitted,
137  *                GNUNET_NO on timeout,
138  *                GNUNET_SYSERR on disconnect from service
139  *                after the PUT message was transmitted
140  *                (so we don't know if it was received or not)
141  */
142 typedef void (*GNUNET_DHT_PutContinuation)(void *cls,
143                                            int success);
144
145
146 /**
147  * Perform a PUT operation storing data in the DHT.
148  *
149  * @param handle handle to DHT service
150  * @param key the key to store under
151  * @param desired_replication_level estimate of how many
152  *                nearest peers this request should reach
153  * @param options routing options for this message
154  * @param type type of the value
155  * @param size number of bytes in data; must be less than 64k
156  * @param data the data to store
157  * @param exp desired expiration time for the value
158  * @param timeout how long to wait for transmission of this request
159  * @param cont continuation to call when done (transmitting request to service)
160  *        You must not call "GNUNET_DHT_disconnect" in this continuation
161  * @param cont_cls closure for cont
162  * @return handle to cancel the "PUT" operation, NULL on error
163  *        (size too big)
164  */
165 struct GNUNET_DHT_PutHandle *
166 GNUNET_DHT_put (struct GNUNET_DHT_Handle *handle, const struct GNUNET_HashCode * key,
167                 uint32_t desired_replication_level,
168                 enum GNUNET_DHT_RouteOption options,
169                 enum GNUNET_BLOCK_Type type, size_t size, const char *data,
170                 struct GNUNET_TIME_Absolute exp,
171                 struct GNUNET_TIME_Relative timeout,
172                 GNUNET_DHT_PutContinuation cont,
173                 void *cont_cls);
174
175
176 /**
177  * Cancels a DHT PUT operation.  Note that the PUT request may still
178  * go out over the network (we can't stop that); However, if the PUT
179  * has not yet been sent to the service, cancelling the PUT will stop
180  * this from happening (but there is no way for the user of this API
181  * to tell if that is the case).  The only use for this API is to 
182  * prevent a later call to 'cont' from "GNUNET_DHT_put" (i.e. because
183  * the system is shutting down).
184  *
185  * @param ph put operation to cancel ('cont' will no longer be called)
186  */
187 void
188 GNUNET_DHT_put_cancel (struct GNUNET_DHT_PutHandle *ph);
189
190
191 /**
192  * Iterator called on each result obtained for a DHT
193  * operation that expects a reply
194  *
195  * @param cls closure
196  * @param exp when will this value expire
197  * @param key key of the result
198  * @param get_path peers on reply path (or NULL if not recorded)
199  * @param get_path_length number of entries in get_path
200  * @param put_path peers on the PUT path (or NULL if not recorded)
201  * @param put_path_length number of entries in get_path
202  * @param type type of the result
203  * @param size number of bytes in data
204  * @param data pointer to the result data
205  */
206 typedef void (*GNUNET_DHT_GetIterator) (void *cls,
207                                         struct GNUNET_TIME_Absolute exp,
208                                         const struct GNUNET_HashCode * key,
209                                         const struct GNUNET_PeerIdentity *
210                                         get_path, unsigned int get_path_length,
211                                         const struct GNUNET_PeerIdentity *
212                                         put_path, unsigned int put_path_length,
213                                         enum GNUNET_BLOCK_Type type,
214                                         size_t size, const void *data);
215
216
217
218 /**
219  * Perform an asynchronous GET operation on the DHT identified. See
220  * also "GNUNET_BLOCK_evaluate".
221  *
222  * @param handle handle to the DHT service
223  * @param type expected type of the response object
224  * @param key the key to look up
225  * @param desired_replication_level estimate of how many
226                   nearest peers this request should reach
227  * @param options routing options for this message
228  * @param xquery extended query data (can be NULL, depending on type)
229  * @param xquery_size number of bytes in xquery
230  * @param iter function to call on each result
231  * @param iter_cls closure for iter
232  *
233  * @return handle to stop the async get
234  */
235 struct GNUNET_DHT_GetHandle *
236 GNUNET_DHT_get_start (struct GNUNET_DHT_Handle *handle,
237                       enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode * key,
238                       uint32_t desired_replication_level,
239                       enum GNUNET_DHT_RouteOption options, const void *xquery,
240                       size_t xquery_size, GNUNET_DHT_GetIterator iter,
241                       void *iter_cls);
242
243
244 /**
245  * Stop async DHT-get.  Frees associated resources.
246  *
247  * @param get_handle GET operation to stop.
248  *
249  * On return get_handle will no longer be valid, caller
250  * must not use again!!!
251  */
252 void
253 GNUNET_DHT_get_stop (struct GNUNET_DHT_GetHandle *get_handle);
254
255
256 /* *************** Extended API: monitor ******************* */
257
258 /**
259  * Handle to monitor requests
260  */
261 struct GNUNET_DHT_MonitorHandle;
262
263 /**
264  * Callback called on each GET request going through the DHT.
265  *
266  * @param cls Closure.
267  * @param options Options, for instance RecordRoute, DemultiplexEverywhere.
268  * @param type The type of data in the request.
269  * @param hop_count Hop count so far.
270  * @param path_length number of entries in path (or 0 if not recorded).
271  * @param path peers on the GET path (or NULL if not recorded).
272  * @param desired_replication_level Desired replication level.
273  * @param key Key of the requested data.
274  */
275 typedef void (*GNUNET_DHT_MonitorGetCB) (void *cls,
276                                          enum GNUNET_DHT_RouteOption options,
277                                          enum GNUNET_BLOCK_Type type,
278                                          uint32_t hop_count,
279                                          uint32_t desired_replication_level, 
280                                          unsigned int path_length,
281                                          const struct GNUNET_PeerIdentity *path,
282                                          const struct GNUNET_HashCode * key);
283
284 /**
285  * Callback called on each GET reply going through the DHT.
286  *
287  * @param cls Closure.
288  * @param type The type of data in the result.
289  * @param get_path Peers on GET path (or NULL if not recorded).
290  * @param get_path_length number of entries in get_path.
291  * @param put_path peers on the PUT path (or NULL if not recorded).
292  * @param put_path_length number of entries in get_path.
293  * @param exp Expiration time of the data.
294  * @param key Key of the data.
295  * @param data Pointer to the result data.
296  * @param size Number of bytes in data.
297  */
298 typedef void (*GNUNET_DHT_MonitorGetRespCB) (void *cls,
299                                              enum GNUNET_BLOCK_Type type,
300                                              const struct GNUNET_PeerIdentity
301                                              *get_path,
302                                              unsigned int get_path_length,
303                                              const struct GNUNET_PeerIdentity
304                                              * put_path,
305                                              unsigned int put_path_length,
306                                              struct GNUNET_TIME_Absolute exp,
307                                              const struct GNUNET_HashCode * key,
308                                              const void *data,
309                                              size_t size);
310
311 /**
312  * Callback called on each PUT request going through the DHT.
313  *
314  * @param cls Closure.
315  * @param options Options, for instance RecordRoute, DemultiplexEverywhere.
316  * @param type The type of data in the request.
317  * @param hop_count Hop count so far.
318  * @param path_length number of entries in path (or 0 if not recorded).
319  * @param path peers on the PUT path (or NULL if not recorded).
320  * @param desired_replication_level Desired replication level.
321  * @param exp Expiration time of the data.
322  * @param key Key under which data is to be stored.
323  * @param data Pointer to the data carried.
324  * @param size Number of bytes in data.
325  */
326 typedef void (*GNUNET_DHT_MonitorPutCB) (void *cls,
327                                          enum GNUNET_DHT_RouteOption options,
328                                          enum GNUNET_BLOCK_Type type,
329                                          uint32_t hop_count,
330                                          uint32_t desired_replication_level, 
331                                          unsigned int path_length,
332                                          const struct GNUNET_PeerIdentity *path,
333                                          struct GNUNET_TIME_Absolute exp,
334                                          const struct GNUNET_HashCode * key,
335                                          const void *data,
336                                          size_t size);
337
338 /**
339  * Start monitoring the local DHT service.
340  *
341  * @param handle Handle to the DHT service.
342  * @param type Type of blocks that are of interest.
343  * @param key Key of data of interest, NULL for all.
344  * @param get_cb Callback to process monitored get messages.
345  * @param get_resp_cb Callback to process monitored get response messages.
346  * @param put_cb Callback to process monitored put messages.
347  * @param cb_cls Closure for cb.
348  *
349  * @return Handle to stop monitoring.
350  */
351 struct GNUNET_DHT_MonitorHandle *
352 GNUNET_DHT_monitor_start (struct GNUNET_DHT_Handle *handle,
353                           enum GNUNET_BLOCK_Type type,
354                           const struct GNUNET_HashCode *key,
355                           GNUNET_DHT_MonitorGetCB get_cb,
356                           GNUNET_DHT_MonitorGetRespCB get_resp_cb,
357                           GNUNET_DHT_MonitorPutCB put_cb,
358                           void *cb_cls);
359
360
361 /**
362  * Stop monitoring.
363  *
364  * @param handle The handle to the monitor request returned by monitor_start.
365  *
366  * On return handle will no longer be valid, caller must not use again!!!
367  */
368 void
369 GNUNET_DHT_monitor_stop (struct GNUNET_DHT_MonitorHandle *handle);
370
371
372 #if 0                           /* keep Emacsens' auto-indent happy */
373 {
374 #endif
375 #ifdef __cplusplus
376 }
377 #endif
378
379
380 #endif
381 /* gnunet_dht_service.h */