another special case for loopback
[oweals/gnunet.git] / src / dht / plugin_block_dht.c
1 /*
2      This file is part of GNUnet
3      Copyright (C) 2010 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20
21 /**
22  * @file dht/plugin_block_dht.c
23  * @brief block plugin for DHT internals (right now, find-peer requests only);
24  *        other plugins should be used to store "useful" data in the
25  *        DHT (see fs block plugin)
26  * @author Christian Grothoff
27  */
28
29 #include "platform.h"
30 #include "gnunet_constants.h"
31 #include "gnunet_hello_lib.h"
32 #include "gnunet_block_plugin.h"
33
34 #define DEBUG_DHT GNUNET_EXTRA_LOGGING
35
36
37 /**
38  * Function called to validate a reply or a request.  For
39  * request evaluation, simply pass "NULL" for the @a reply_block.
40  *
41  * @param cls closure
42  * @param type block type
43  * @param eo control flags
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 @a bf
47  * @param xquery extended query data (can be NULL, depending on type)
48  * @param xquery_size number of bytes in @a xquery
49  * @param reply_block response to validate
50  * @param reply_block_size number of bytes in @a reply_block
51  * @return characterization of result
52  */
53 static enum GNUNET_BLOCK_EvaluationResult
54 block_plugin_dht_evaluate (void *cls,
55                            enum GNUNET_BLOCK_Type type,
56                            enum GNUNET_BLOCK_EvaluationOptions eo,
57                            const struct GNUNET_HashCode *query,
58                            struct GNUNET_CONTAINER_BloomFilter **bf,
59                            int32_t bf_mutator,
60                            const void *xquery,
61                            size_t xquery_size,
62                            const void *reply_block,
63                            size_t reply_block_size)
64 {
65   struct GNUNET_HashCode mhash;
66   const struct GNUNET_HELLO_Message *hello;
67   struct GNUNET_PeerIdentity pid;
68   const struct GNUNET_MessageHeader *msg;
69   struct GNUNET_HashCode phash;
70
71   if (type != GNUNET_BLOCK_TYPE_DHT_HELLO)
72     return GNUNET_BLOCK_EVALUATION_TYPE_NOT_SUPPORTED;
73   if (0 != xquery_size)
74   {
75     GNUNET_break_op (0);
76     return GNUNET_BLOCK_EVALUATION_REQUEST_INVALID;
77   }
78   if ( (NULL == reply_block) ||
79        (0 == reply_block_size) )
80     return GNUNET_BLOCK_EVALUATION_REQUEST_VALID;
81   if (reply_block_size < sizeof (struct GNUNET_MessageHeader))
82   {
83     GNUNET_break_op (0);
84     return GNUNET_BLOCK_EVALUATION_RESULT_INVALID;
85   }
86   msg = reply_block;
87   if (reply_block_size != ntohs (msg->size))
88   {
89     GNUNET_break_op (0);
90     return GNUNET_BLOCK_EVALUATION_RESULT_INVALID;
91   }
92   hello = reply_block;
93   if (GNUNET_OK != GNUNET_HELLO_get_id (hello, &pid))
94   {
95     GNUNET_break_op (0);
96     return GNUNET_BLOCK_EVALUATION_RESULT_INVALID;
97   }
98   if (NULL != bf)
99   {
100     GNUNET_CRYPTO_hash (&pid, sizeof (pid), &phash);
101     GNUNET_BLOCK_mingle_hash (&phash, bf_mutator, &mhash);
102     if (NULL != *bf)
103     {
104       if (GNUNET_YES == GNUNET_CONTAINER_bloomfilter_test (*bf, &mhash))
105         return GNUNET_BLOCK_EVALUATION_OK_DUPLICATE;
106     }
107     else
108     {
109       *bf = GNUNET_CONTAINER_bloomfilter_init (NULL, 8,
110                                                GNUNET_CONSTANTS_BLOOMFILTER_K);
111     }
112     GNUNET_CONTAINER_bloomfilter_add (*bf, &mhash);
113   }
114   return GNUNET_BLOCK_EVALUATION_OK_MORE;
115 }
116
117
118 /**
119  * Function called to obtain the key for a block.
120  *
121  * @param cls closure
122  * @param type block type
123  * @param block block to get the key for
124  * @param block_size number of bytes @a block
125  * @param[out] key set to the key (query) for the given block
126  * @return #GNUNET_OK on success, #GNUNET_SYSERR if type not supported
127  *         (or if extracting a key from a block of this type does not work)
128  */
129 static int
130 block_plugin_dht_get_key (void *cls,
131                           enum GNUNET_BLOCK_Type type,
132                           const void *block,
133                           size_t block_size,
134                           struct GNUNET_HashCode *key)
135 {
136   const struct GNUNET_MessageHeader *msg;
137   const struct GNUNET_HELLO_Message *hello;
138   struct GNUNET_PeerIdentity *pid;
139
140   if (type != GNUNET_BLOCK_TYPE_DHT_HELLO)
141     return GNUNET_SYSERR;
142   if (block_size < sizeof (struct GNUNET_MessageHeader))
143   {
144     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, "block-dht",
145                      _("Block not of type %u\n"), GNUNET_BLOCK_TYPE_DHT_HELLO);
146     return GNUNET_NO;
147   }
148   msg = block;
149   if (block_size != ntohs (msg->size))
150   {
151     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, "block-dht",
152                      _("Size mismatch for block\n"),
153                      GNUNET_BLOCK_TYPE_DHT_HELLO);
154     return GNUNET_NO;
155   }
156   hello = block;
157   memset (key, 0, sizeof (*key));
158   pid = (struct GNUNET_PeerIdentity *) key;
159   if (GNUNET_OK != GNUNET_HELLO_get_id (hello, pid))
160   {
161     GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, "block-dht",
162                      _("Block of type %u is malformed\n"),
163                      GNUNET_BLOCK_TYPE_DHT_HELLO);
164     return GNUNET_NO;
165   }
166   return GNUNET_OK;
167 }
168
169
170 /**
171  * Entry point for the plugin.
172  */
173 void *
174 libgnunet_plugin_block_dht_init (void *cls)
175 {
176   static enum GNUNET_BLOCK_Type types[] =
177   {
178     GNUNET_BLOCK_TYPE_DHT_HELLO,
179     GNUNET_BLOCK_TYPE_ANY       /* end of list */
180   };
181   struct GNUNET_BLOCK_PluginFunctions *api;
182
183   api = GNUNET_new (struct GNUNET_BLOCK_PluginFunctions);
184   api->evaluate = &block_plugin_dht_evaluate;
185   api->get_key = &block_plugin_dht_get_key;
186   api->types = types;
187   return api;
188 }
189
190
191 /**
192  * Exit point from the plugin.
193  */
194 void *
195 libgnunet_plugin_block_dht_done (void *cls)
196 {
197   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
198
199   GNUNET_free (api);
200   return NULL;
201 }
202
203 /* end of plugin_block_dht.c */