indentation
[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 "gnunet_block_plugin.h"
29 #include "block_dns.h"
30 #include "gnunet_signatures.h"
31
32 #define DEBUG_DHT GNUNET_NO
33
34 /**
35  * Function called to validate a reply or a request.  For
36  * request evaluation, simply pass "NULL" for the reply_block.
37  *
38  * @param cls closure
39  * @param type block type
40  * @param query original query (hash)
41  * @param bf pointer to bloom filter associated with query; possibly updated (!)
42  * @param bf_mutator mutation value for bf
43  * @param xquery extended query data (can be NULL, depending on type)
44  * @param xquery_size number of bytes in xquery
45  * @param reply_block response to validate
46  * @param reply_block_size number of bytes in reply block
47  * @return characterization of result
48  */
49 static enum GNUNET_BLOCK_EvaluationResult
50 block_plugin_dns_evaluate (void *cls,
51                            enum GNUNET_BLOCK_Type type,
52                            const GNUNET_HashCode * query,
53                            struct GNUNET_CONTAINER_BloomFilter **bf,
54                            int32_t bf_mutator,
55                            const void *xquery,
56                            size_t xquery_size,
57                            const void *reply_block, 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     {
70       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
71                   "DNS-Block is invalid: reply_block_size=%d != %d\n",
72                   reply_block_size, sizeof (struct GNUNET_DNS_Record));
73       return GNUNET_BLOCK_EVALUATION_RESULT_INVALID;
74     }
75
76     const struct GNUNET_DNS_Record *rec = reply_block;
77
78     if (ntohl (rec->purpose.size) !=
79         sizeof (struct GNUNET_DNS_Record) -
80         sizeof (struct GNUNET_CRYPTO_RsaSignature))
81     {
82       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
83                   "DNS-Block is invalid: rec->purpose.size=%d != %d\n",
84                   ntohl (rec->purpose.size),
85                   sizeof (struct GNUNET_DNS_Record) -
86                   sizeof (struct GNUNET_CRYPTO_RsaSignature));
87       return GNUNET_BLOCK_EVALUATION_RESULT_INVALID;
88     }
89
90     if (GNUNET_TIME_relative_get_zero ().rel_value ==
91         GNUNET_TIME_absolute_get_remaining (rec->expiration_time).rel_value)
92     {
93       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "DNS-Block is invalid: Timeout\n");
94       return GNUNET_BLOCK_EVALUATION_RESULT_INVALID;
95     }
96
97     if (GNUNET_OK !=
98         GNUNET_CRYPTO_rsa_verify (htonl (GNUNET_SIGNATURE_PURPOSE_DNS_RECORD),
99                                   &rec->purpose, &rec->signature, &rec->peer))
100     {
101       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
102                   "DNS-Block is invalid: invalid signature\n");
103       return GNUNET_BLOCK_EVALUATION_RESULT_INVALID;
104     }
105
106     /* How to decide whether there are no more? */
107     return GNUNET_BLOCK_EVALUATION_OK_MORE;
108   default:
109     return GNUNET_BLOCK_EVALUATION_TYPE_NOT_SUPPORTED;
110   }
111 }
112
113
114 /**
115  * Function called to obtain the key for a block.
116  *
117  * @param cls closure
118  * @param type block type
119  * @param block block to get the key for
120  * @param block_size number of bytes in block
121  * @param key set to the key (query) for the given block
122  * @return GNUNET_OK on success, GNUNET_SYSERR if type not supported
123  *         (or if extracting a key from a block of this type does not work)
124  */
125 static int
126 block_plugin_dns_get_key (void *cls,
127                           enum GNUNET_BLOCK_Type type,
128                           const void *block,
129                           size_t block_size, GNUNET_HashCode * key)
130 {
131   if (type != GNUNET_BLOCK_TYPE_DNS)
132     return GNUNET_SYSERR;
133   const struct GNUNET_DNS_Record *rec = block;
134
135   memcpy (key, &rec->service_descriptor, sizeof (GNUNET_HashCode));
136   return GNUNET_OK;
137 }
138
139 /**
140  * Entry point for the plugin.
141  */
142 void *
143 libgnunet_plugin_block_dns_init (void *cls)
144 {
145   static enum GNUNET_BLOCK_Type types[] =
146   {
147     GNUNET_BLOCK_TYPE_DNS,
148     GNUNET_BLOCK_TYPE_ANY       /* end of list */
149   };
150   struct GNUNET_BLOCK_PluginFunctions *api;
151
152   api = GNUNET_malloc (sizeof (struct GNUNET_BLOCK_PluginFunctions));
153   api->evaluate = &block_plugin_dns_evaluate;
154   api->get_key = &block_plugin_dns_get_key;
155   api->types = types;
156   return api;
157 }
158
159
160 /**
161  * Exit point from the plugin.
162  */
163 void *
164 libgnunet_plugin_block_dns_done (void *cls)
165 {
166   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
167
168   GNUNET_free (api);
169   return NULL;
170 }
171
172 /* end of plugin_block_dns.c */