If I hashed the whole block I could not retrieve it without knowing it...
[oweals/gnunet.git] / src / block / plugin_block_dns.c
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/plugin_block_dns.c
23  * @brief block plugin for storing .gnunet-bindings
24  * @author Philipp Tölke
25  */
26
27 #include "platform.h"
28 #include "plugin_block.h"
29 #include "gnunet_block_dns.h"
30
31 #define DEBUG_DHT GNUNET_NO
32
33 /**
34  * Function called to validate a reply or a request.  For
35  * request evaluation, simply pass "NULL" for the reply_block.
36  *
37  * @param cls closure
38  * @param type block type
39  * @param query original query (hash)
40  * @param bf pointer to bloom filter associated with query; possibly updated (!)
41  * @param bf_mutator mutation value for bf
42  * @param xquery extended query data (can be NULL, depending on type)
43  * @param xquery_size number of bytes in xquery
44  * @param reply_block response to validate
45  * @param reply_block_size number of bytes in reply block
46  * @return characterization of result
47  */
48 static enum GNUNET_BLOCK_EvaluationResult
49 block_plugin_dht_evaluate (void *cls,
50                            enum GNUNET_BLOCK_Type type,
51                            const GNUNET_HashCode *query,
52                            struct GNUNET_CONTAINER_BloomFilter **bf,
53                            int32_t bf_mutator,
54                            const void *xquery,
55                            size_t xquery_size,
56                            const void *reply_block,
57                            size_t reply_block_size)
58 {
59   switch (type)
60   {
61   case GNUNET_BLOCK_TYPE_DNS:
62     if (xquery_size != 0)
63       return GNUNET_BLOCK_EVALUATION_REQUEST_INVALID;
64
65     if (reply_block_size == 0)
66       return GNUNET_BLOCK_EVALUATION_REQUEST_VALID;
67
68     if (reply_block_size < sizeof(struct GNUNET_DNS_Record))
69       return GNUNET_BLOCK_EVALUATION_RESULT_INVALID;
70
71     const struct GNUNET_DNS_Record* rec = reply_block;
72     if(reply_block_size != (sizeof(struct GNUNET_DNS_Record) + rec->namelen - 1))
73       return GNUNET_BLOCK_EVALUATION_RESULT_INVALID;
74
75     /* How to decide whether there are no more? */
76     return GNUNET_BLOCK_EVALUATION_OK_MORE;
77   default:
78     return GNUNET_BLOCK_EVALUATION_TYPE_NOT_SUPPORTED;
79   }
80 }
81
82
83 /**
84  * Function called to obtain the key for a block.
85  *
86  * @param cls closure
87  * @param type block type
88  * @param block block to get the key for
89  * @param block_size number of bytes in block
90  * @param key set to the key (query) for the given block
91  * @return GNUNET_OK on success, GNUNET_SYSERR if type not supported
92  *         (or if extracting a key from a block of this type does not work)
93  */
94 static int
95 block_plugin_dht_get_key (void *cls,
96                           enum GNUNET_BLOCK_Type type,
97                           const void *block,
98                           size_t block_size,
99                           GNUNET_HashCode *key)
100 {
101   if (type != GNUNET_BLOCK_TYPE_DNS)
102     return GNUNET_SYSERR;
103   const struct GNUNET_DNS_Record* rec = block;
104   GNUNET_CRYPTO_hash(rec->name, rec->namelen, key);
105   return GNUNET_OK;
106 }
107
108 /**
109  * Entry point for the plugin.
110  */
111 void *
112 libgnunet_plugin_block_dht_init (void *cls)
113 {
114   static enum GNUNET_BLOCK_Type types[] = 
115     {
116       GNUNET_BLOCK_TYPE_DNS,
117       GNUNET_BLOCK_TYPE_ANY /* end of list */
118     };
119   struct GNUNET_BLOCK_PluginFunctions *api;
120
121   api = GNUNET_malloc (sizeof (struct GNUNET_BLOCK_PluginFunctions));
122   api->evaluate = &block_plugin_dht_evaluate;
123   api->get_key = &block_plugin_dht_get_key;
124   api->types = types;
125   return api;
126 }
127
128
129 /**
130  * Exit point from the plugin.
131  */
132 void *
133 libgnunet_plugin_block_dht_done (void *cls)
134 {
135   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
136
137   GNUNET_free (api);
138   return NULL;
139 }
140
141 /* end of plugin_block_dns.c */