- Act malicious API complete
[oweals/gnunet.git] / src / dht / gnunet-service-xdht_datacache.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010, 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 dht/gnunet-service-dht_datacache.c
23  * @brief GNUnet DHT service's datacache integration
24  * @author Christian Grothoff
25  * @author Nathan Evans
26  */
27 #include "platform.h"
28 #include "gnunet_datacache_lib.h"
29 #include "gnunet-service-xdht_clients.h"
30 #include "gnunet-service-xdht_datacache.h"
31 #include "gnunet-service-xdht_routing.h"
32 #include "gnunet-service-xdht_neighbours.h"
33 #include "gnunet-service-dht.h"
34
35 #define LOG(kind,...) GNUNET_log_from (kind, "dht-dtcache",__VA_ARGS__)
36
37 #define DEBUG(...)                                           \
38   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, __VA_ARGS__)
39
40 /**
41  * Handle to the datacache service (for inserting/retrieving data)
42  */
43 static struct GNUNET_DATACACHE_Handle *datacache;
44
45
46 /**
47  * Handle a datum we've received from another peer.  Cache if
48  * possible.
49  *
50  * @param expiration when will the reply expire
51  * @param key the query this reply is for
52  * @param put_path_length number of peers in 'put_path'
53  * @param put_path path the reply took on put
54  * @param type type of the reply
55  * @param data_size number of bytes in 'data'
56  * @param data application payload data
57  */
58 void
59 GDS_DATACACHE_handle_put (struct GNUNET_TIME_Absolute expiration,
60                           const struct GNUNET_HashCode * key,
61                           unsigned int put_path_length,
62                           const struct GNUNET_PeerIdentity *put_path,
63                           enum GNUNET_BLOCK_Type type, size_t data_size,
64                           const void *data)
65 {
66   int r;
67   
68   if (NULL == datacache)
69   {
70     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
71                 _("%s request received, but have no datacache!\n"), "PUT");
72     return;
73   }
74   if (data_size >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
75   {
76     GNUNET_break (0);
77     return;
78   }
79   
80   /* Put size is actual data size plus struct overhead plus path length (if any) */
81   GNUNET_STATISTICS_update (GDS_stats,
82                             gettext_noop ("# ITEMS stored in datacache"), 1,
83                             GNUNET_NO);
84   
85   struct GNUNET_PeerIdentity peer = GDS_NEIGHBOURS_get_my_id();
86   DEBUG("DATACACHE_PUT KEY = %s, peer = %s\n",GNUNET_h2s(key),GNUNET_i2s(&peer));
87   r = GNUNET_DATACACHE_put (datacache, key, data_size, data, type, expiration,
88                             put_path_length, put_path);
89   LOG (GNUNET_ERROR_TYPE_DEBUG,
90        "DATACACHE PUT for key %s [%u] completed (%d) after %u hops\n",
91        GNUNET_h2s (key), data_size, r, put_path_length);
92 }
93
94 /**
95  * List of peers in the get path.
96  */
97 struct GetPath
98 {
99   /**
100    * Pointer to next item in the list
101    */
102   struct GetPath *next;
103
104   /**
105    * Pointer to previous item in the list
106    */
107   struct GetPath *prev;
108
109   /**
110    *  An element in the get path.
111    */
112   struct GNUNET_PeerIdentity peer;
113 };
114
115
116 /**
117  * Context containing information about a GET request.
118  */
119 struct GetRequestContext
120 {
121   /**
122    * extended query (see gnunet_block_lib.h).
123    */
124   const void *xquery;
125
126   /**
127    * Bloomfilter to filter out duplicate replies (updated)
128    */
129   struct GNUNET_CONTAINER_BloomFilter **reply_bf;
130
131   /**
132    * The key this request was about
133    */
134   struct GNUNET_HashCode key;
135
136   /**
137    * Number of bytes in xquery.
138    */
139   size_t xquery_size;
140
141   /**
142    * Mutator value for the reply_bf, see gnunet_block_lib.h
143    */
144   uint32_t reply_bf_mutator;
145
146   /**
147    * Total number of peers in get path.
148    */
149   unsigned int get_path_length;
150
151   /**
152    * Return value to give back.
153    */
154   enum GNUNET_BLOCK_EvaluationResult eval;
155
156   /**
157    * Peeer which has the data for the key.
158    */
159   struct GNUNET_PeerIdentity source_peer;
160
161   /**
162    * Next hop to forward the get result to.
163    */
164   struct GNUNET_PeerIdentity next_hop;
165
166   /**
167    * Head of get path.
168    */
169   struct GetPath *head;
170
171   /**
172    * Tail of get path.
173    */
174   struct GetPath *tail;
175
176   /* get_path */
177 };
178
179
180 /**
181  * Iterator for local get request results,
182  *
183  * @param cls closure for iterator, a DatacacheGetContext
184  * @param exp when does this value expire?
185  * @param key the key this data is stored under
186  * @param size the size of the data identified by key
187  * @param data the actual data
188  * @param type the type of the data
189  * @param put_path_length number of peers in 'put_path'
190  * @param put_path path the reply took on put
191  * @return GNUNET_OK to continue iteration, anything else
192  * to stop iteration.
193  */
194 static int
195 datacache_get_iterator (void *cls,
196                         const struct GNUNET_HashCode * key, size_t size,
197                         const char *data, enum GNUNET_BLOCK_Type type,
198                                           struct GNUNET_TIME_Absolute exp,
199                                           unsigned int put_path_length,
200                                           const struct GNUNET_PeerIdentity *put_path)
201 {
202   struct GetRequestContext *ctx = cls;
203   enum GNUNET_BLOCK_EvaluationResult eval;
204
205   eval =
206       GNUNET_BLOCK_evaluate (GDS_block_context, type, key, ctx->reply_bf,
207                              ctx->reply_bf_mutator, ctx->xquery,
208                              ctx->xquery_size, data, size);
209   LOG (GNUNET_ERROR_TYPE_DEBUG,
210        "Found reply for query %s in datacache, evaluation result is %d\n",
211        GNUNET_h2s (key), (int) eval);
212   ctx->eval = eval;
213
214   switch (eval)
215   {
216   case GNUNET_BLOCK_EVALUATION_OK_MORE:
217   case GNUNET_BLOCK_EVALUATION_OK_LAST:
218     /* forward to local clients */
219     GNUNET_STATISTICS_update (GDS_stats,
220                               gettext_noop
221                               ("# Good RESULTS found in datacache"), 1,
222                               GNUNET_NO);
223     struct GNUNET_PeerIdentity *get_path;
224     get_path = GNUNET_malloc (sizeof (struct GNUNET_PeerIdentity) * 
225                               ctx->get_path_length);
226     struct GetPath *iterator;
227     iterator = ctx->head;
228     int i = 0;
229     while (i < ctx->get_path_length)
230     {
231       get_path[i] = iterator->peer;
232       i++;
233       iterator = iterator->next;
234     }
235     GDS_NEIGHBOURS_send_get_result (key,type, &(ctx->next_hop),&(ctx->source_peer),
236                                     put_path_length, put_path, ctx->get_path_length,
237                                     get_path, exp, data, size );
238     GNUNET_free_non_null (get_path);
239
240     break;
241   case GNUNET_BLOCK_EVALUATION_OK_DUPLICATE:
242     GNUNET_STATISTICS_update (GDS_stats,
243                               gettext_noop
244                               ("# Duplicate RESULTS found in datacache"), 1,
245                               GNUNET_NO);
246     break;
247   case GNUNET_BLOCK_EVALUATION_RESULT_INVALID:
248     GNUNET_STATISTICS_update (GDS_stats,
249                               gettext_noop
250                               ("# Invalid RESULTS found in datacache"), 1,
251                               GNUNET_NO);
252     break;
253   case GNUNET_BLOCK_EVALUATION_RESULT_IRRELEVANT:
254     GNUNET_STATISTICS_update (GDS_stats,
255                               gettext_noop
256                               ("# Irrelevant RESULTS found in datacache"), 1,
257                               GNUNET_NO);
258     break;
259   case GNUNET_BLOCK_EVALUATION_REQUEST_VALID:
260     GNUNET_break (0);
261     break;
262   case GNUNET_BLOCK_EVALUATION_REQUEST_INVALID:
263     GNUNET_break_op (0);
264     return GNUNET_SYSERR;
265   case GNUNET_BLOCK_EVALUATION_TYPE_NOT_SUPPORTED:
266     GNUNET_STATISTICS_update (GDS_stats,
267                               gettext_noop
268                               ("# Unsupported RESULTS found in datacache"), 1,
269                               GNUNET_NO);
270     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
271                 _("Unsupported block type (%u) in local response!\n"), type);
272     break;
273   }
274   
275   return (eval == GNUNET_BLOCK_EVALUATION_OK_LAST) ? GNUNET_NO : GNUNET_OK;
276 }
277
278
279 /**
280  * Handle a GET request we've received from another peer.
281  *
282  * @param key the query
283  * @param type requested data type
284  * @param xquery extended query
285  * @param xquery_size number of bytes in xquery
286  * @param reply_bf where the reply bf is (to be) stored, possibly updated, can be NULL
287  * @param reply_bf_mutator mutation value for reply_bf
288  * @return evaluation result for the local replies
289  * @get_path_length Total number of peers in get path
290  * @get_path Peers in get path.
291  */
292 enum GNUNET_BLOCK_EvaluationResult
293 GDS_DATACACHE_handle_get (const struct GNUNET_HashCode * key,
294                           enum GNUNET_BLOCK_Type type, const void *xquery,
295                           size_t xquery_size,
296                           struct GNUNET_CONTAINER_BloomFilter **reply_bf,
297                           uint32_t reply_bf_mutator,
298                           uint32_t get_path_length,
299                           struct GNUNET_PeerIdentity *get_path,
300                           struct GNUNET_PeerIdentity *next_hop,
301                           struct GNUNET_PeerIdentity *source_peer)
302 {
303   struct GetRequestContext ctx;
304   unsigned int r;
305
306   if (datacache == NULL)
307     return GNUNET_BLOCK_EVALUATION_REQUEST_VALID;
308   GNUNET_STATISTICS_update (GDS_stats,
309                             gettext_noop ("# GET requests given to datacache"),
310                             1, GNUNET_NO);
311   ctx.eval = GNUNET_BLOCK_EVALUATION_REQUEST_VALID;
312   ctx.key = *key;
313   ctx.xquery = xquery;
314   ctx.xquery_size = xquery_size;
315   ctx.reply_bf = reply_bf;
316   ctx.reply_bf_mutator = reply_bf_mutator;
317   ctx.get_path_length = get_path_length;
318   
319   if (next_hop != NULL)
320   {
321     memcpy (&(ctx.next_hop), next_hop, sizeof (struct GNUNET_PeerIdentity));
322   }
323   unsigned int i = 0;
324   
325   ctx.head = NULL;
326   ctx.tail = NULL;
327   if (get_path != NULL)
328   {
329     while (i < get_path_length)
330     {
331       struct GetPath *element;
332       element = GNUNET_new (struct GetPath);
333       element->next = NULL;
334       element->prev = NULL;
335       element->peer = get_path[i];
336       GNUNET_CONTAINER_DLL_insert_tail (ctx.head, ctx.tail, element);
337       i++;
338     }
339   }
340   
341   r = GNUNET_DATACACHE_get (datacache, key, type, &datacache_get_iterator,
342                             &ctx);
343   DEBUG ("DATACACHE_GET for key %s completed (%d). %u results found.\n",GNUNET_h2s (key), ctx.eval, r);
344   return ctx.eval;
345 }
346
347
348 /**
349  * Initialize datacache subsystem.
350  */
351 void
352 GDS_DATACACHE_init ()
353 {
354   datacache = GNUNET_DATACACHE_create (GDS_cfg, "dhtcache");
355 }
356
357
358 /**
359  * Shutdown datacache subsystem.
360  */
361 void
362 GDS_DATACACHE_done ()
363 {
364   if (datacache != NULL)
365   {
366     GNUNET_DATACACHE_destroy (datacache);
367     datacache = NULL;
368   }
369 }
370
371
372 /* end of gnunet-service-dht_datacache.c */