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