- use variables to cound ch, conns
[oweals/gnunet.git] / src / mesh / plugin_block_mesh.c
1 /*
2      This file is part of GNUnet
3      (C) 2012,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 mesh/plugin_block_mesh.c
23  * @brief blocks used for mesh peer discovery
24  * @author Bartlomiej Polot
25  */
26
27 #include "platform.h"
28 #include "gnunet_block_plugin.h"
29 #include "block_mesh.h"
30
31 /**
32  * Number of bits we set per entry in the bloomfilter.
33  * Do not change!
34  */
35 #define BLOOMFILTER_K 16
36
37
38 /**
39  * Function called to validate a reply or a request.  For
40  * request evaluation, simply pass "NULL" for the reply_block.
41  * Note that it is assumed that the reply has already been
42  * matched to the key (and signatures checked) as it would
43  * be done with the "get_key" function.
44  *
45  * @param cls closure
46  * @param type block type
47  * @param query original query (hash)
48  * @param bf pointer to bloom filter associated with query; possibly updated (!)
49  * @param bf_mutator mutation value for bf
50  * @param xquery extrended query data (can be NULL, depending on type)
51  * @param xquery_size number of bytes in xquery
52  * @param reply_block response to validate
53  * @param reply_block_size number of bytes in reply block
54  * @return characterization of result
55  */
56 static enum GNUNET_BLOCK_EvaluationResult
57 block_plugin_mesh_evaluate (void *cls, enum GNUNET_BLOCK_Type type,
58                             const struct GNUNET_HashCode * query,
59                             struct GNUNET_CONTAINER_BloomFilter **bf,
60                             int32_t bf_mutator, const void *xquery,
61                             size_t xquery_size, const void *reply_block,
62                             size_t reply_block_size)
63 {
64   struct GNUNET_HashCode chash;
65   struct GNUNET_HashCode mhash;
66
67   switch (type)
68   {
69     case GNUNET_BLOCK_TYPE_MESH_PEER:
70       if (0 != xquery_size)
71       {
72         GNUNET_break_op (0);
73         return GNUNET_BLOCK_EVALUATION_REQUEST_INVALID;
74       }
75       if (NULL == reply_block)
76         return GNUNET_BLOCK_EVALUATION_REQUEST_VALID;
77       if (sizeof (struct PBlock) != reply_block_size)
78         return GNUNET_BLOCK_EVALUATION_RESULT_INVALID;
79       if (NULL != bf)
80       {
81         GNUNET_CRYPTO_hash (reply_block, reply_block_size, &chash);
82         GNUNET_BLOCK_mingle_hash (&chash, bf_mutator, &mhash);
83         if (NULL != *bf)
84         {
85           if (GNUNET_YES == GNUNET_CONTAINER_bloomfilter_test (*bf, &mhash))
86             return GNUNET_BLOCK_EVALUATION_OK_DUPLICATE;
87         }
88         else
89         {
90           *bf = GNUNET_CONTAINER_bloomfilter_init (NULL, 8, BLOOMFILTER_K);
91         }
92         GNUNET_CONTAINER_bloomfilter_add (*bf, &mhash);
93       }
94       return GNUNET_BLOCK_EVALUATION_OK_LAST;
95
96     default:
97       GNUNET_break(0);
98       return GNUNET_BLOCK_EVALUATION_TYPE_NOT_SUPPORTED;
99   }
100 }
101
102
103 /**
104  * Function called to obtain the key for a block.
105  *
106  * @param cls closure
107  * @param type block type
108  * @param block block to get the key for
109  * @param block_size number of bytes in @a block
110  * @param key set to the key (query) for the given block
111  * @return #GNUNET_OK on success, #GNUNET_SYSERR if type not supported
112  *         (or if extracting a key from a block of this type does not work)
113  */
114 static int
115 block_plugin_mesh_get_key (void *cls, enum GNUNET_BLOCK_Type type,
116                            const void *block, size_t block_size,
117                            struct GNUNET_HashCode * key)
118 {
119   const struct PBlock *pb;
120   pb = block;
121
122   switch (type)
123   {
124   case GNUNET_BLOCK_TYPE_MESH_PEER:
125     if (sizeof (struct PBlock) != block_size)
126       return GNUNET_SYSERR;
127     GNUNET_CRYPTO_hash (&pb->id,
128                         sizeof (struct GNUNET_PeerIdentity),
129                         key);
130     return GNUNET_OK;
131   default:
132     GNUNET_break (0);
133     return GNUNET_SYSERR;
134   }
135 }
136
137
138 /**
139  * Entry point for the plugin.
140  */
141 void *
142 libgnunet_plugin_block_mesh_init (void *cls)
143 {
144   static enum GNUNET_BLOCK_Type types[] =
145   {
146     GNUNET_BLOCK_TYPE_MESH_PEER,
147     GNUNET_BLOCK_TYPE_ANY       /* end of list */
148   };
149   struct GNUNET_BLOCK_PluginFunctions *api;
150
151   api = GNUNET_new (struct GNUNET_BLOCK_PluginFunctions);
152   api->evaluate = &block_plugin_mesh_evaluate;
153   api->get_key = &block_plugin_mesh_get_key;
154   api->types = types;
155   return api;
156 }
157
158
159 /**
160  * Exit point from the plugin.
161  */
162 void *
163 libgnunet_plugin_block_mesh_done (void *cls)
164 {
165   struct GNUNET_TRANSPORT_PluginFunctions *api = cls;
166
167   GNUNET_free (api);
168   return NULL;
169 }
170
171 /* end of plugin_block_mesh.c */