configure option --disable-autostart to disable auto-startup of services by ARM
[oweals/gnunet.git] / src / dns / plugin_block_dns.c
1 /*
2      This file is part of GNUnet
3      (C) 2013 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 dns/plugin_block_dns.c
23  * @brief block plugin for advertising a DNS exit service
24  * @author Christian Grothoff
25  *
26  * Note that this plugin might more belong with EXIT and PT
27  * as those two are using this type of block.  Still, this
28  * might be a natural enough place for people to find the code...
29  */
30 #include "platform.h"
31 #include "gnunet_block_plugin.h"
32 #include "block_dns.h"
33 #include "gnunet_signatures.h"
34
35
36 /**
37  * Function called to validate a reply or a request.  For
38  * request evaluation, simply pass "NULL" for the reply_block.
39  *
40  * @param cls closure
41  * @param type block type
42  * @param query original query (hash)
43  * @param bf pointer to bloom filter associated with query; possibly updated (!)
44  * @param bf_mutator mutation value for bf
45  * @param xquery extended query data (can be NULL, depending on type)
46  * @param xquery_size number of bytes in @a xquery
47  * @param reply_block response to validate
48  * @param reply_block_size number of bytes in @a reply_block
49  * @return characterization of result
50  */
51 static enum GNUNET_BLOCK_EvaluationResult
52 block_plugin_dns_evaluate (void *cls, enum GNUNET_BLOCK_Type type,
53                            const struct GNUNET_HashCode * query,
54                            struct GNUNET_CONTAINER_BloomFilter **bf,
55                            int32_t bf_mutator, const void *xquery,
56                            size_t xquery_size, const void *reply_block,
57                            size_t reply_block_size)
58 {
59   const struct GNUNET_DNS_Advertisement *ad;
60
61   switch (type)
62   {
63   case GNUNET_BLOCK_TYPE_DNS:
64     if (0 != xquery_size)
65       return GNUNET_BLOCK_EVALUATION_REQUEST_INVALID;
66
67     if (0 == reply_block_size)
68       return GNUNET_BLOCK_EVALUATION_REQUEST_VALID;
69
70     if (sizeof (struct GNUNET_DNS_Advertisement) != reply_block_size)
71     {
72       GNUNET_break_op (0);
73       return GNUNET_BLOCK_EVALUATION_RESULT_INVALID;
74     }
75     ad = reply_block;
76
77     if (ntohl (ad->purpose.size) !=
78         sizeof (struct GNUNET_DNS_Advertisement) -
79         sizeof (struct GNUNET_CRYPTO_EddsaSignature))
80     {
81       GNUNET_break_op (0);
82       return GNUNET_BLOCK_EVALUATION_RESULT_INVALID;
83     }
84     if (0 ==
85         GNUNET_TIME_absolute_get_remaining (GNUNET_TIME_absolute_ntoh
86                                             (ad->expiration_time)).rel_value_us)
87     {
88       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
89                   "DNS advertisement has expired\n");
90       return GNUNET_BLOCK_EVALUATION_RESULT_INVALID;
91     }
92     if (GNUNET_OK !=
93         GNUNET_CRYPTO_eddsa_verify (GNUNET_SIGNATURE_PURPOSE_DNS_RECORD,
94                                   &ad->purpose,
95                                   &ad->signature,
96                                   &ad->peer.public_key))
97     {
98       GNUNET_break_op (0);
99       return GNUNET_BLOCK_EVALUATION_RESULT_INVALID;
100     }
101     return GNUNET_BLOCK_EVALUATION_OK_MORE;
102   default:
103     return GNUNET_BLOCK_EVALUATION_TYPE_NOT_SUPPORTED;
104   }
105 }
106
107
108 /**
109  * Function called to obtain the key for a block.
110  *
111  * @param cls closure
112  * @param type block type
113  * @param block block to get the key for
114  * @param block_size number of bytes in @a block
115  * @param key set to the key (query) for the given block
116  * @return #GNUNET_OK on success, #GNUNET_SYSERR if type not supported
117  *         (or if extracting a key from a block of this type does not work)
118  */
119 static int
120 block_plugin_dns_get_key (void *cls,
121                           enum GNUNET_BLOCK_Type type,
122                           const void *block,
123                           size_t block_size,
124                           struct GNUNET_HashCode *key)
125 {
126   /* we cannot extract a key from a block of this type */
127   return GNUNET_SYSERR;
128 }
129
130
131 /**
132  * Entry point for the plugin.
133  */
134 void *
135 libgnunet_plugin_block_dns_init (void *cls)
136 {
137   static enum GNUNET_BLOCK_Type types[] =
138   {
139     GNUNET_BLOCK_TYPE_DNS,
140     GNUNET_BLOCK_TYPE_ANY       /* end of list */
141   };
142   struct GNUNET_BLOCK_PluginFunctions *api;
143
144   api = GNUNET_new (struct GNUNET_BLOCK_PluginFunctions);
145   api->evaluate = &block_plugin_dns_evaluate;
146   api->get_key = &block_plugin_dns_get_key;
147   api->types = types;
148   return api;
149 }
150
151
152 /**
153  * Exit point from the plugin.
154  */
155 void *
156 libgnunet_plugin_block_dns_done (void *cls)
157 {
158   struct GNUNET_BLOCK_PluginFunctions *api = cls;
159
160   GNUNET_free (api);
161   return NULL;
162 }
163
164 /* end of plugin_block_dns.c */