tighten formatting rules
[oweals/gnunet.git] / src / consensus / plugin_block_consensus.c
1 /*
2      This file is part of GNUnet
3      Copyright (C) 2017 GNUnet e.V.
4
5      GNUnet is free software: you can redistribute it and/or modify it
6      under the terms of the GNU Affero General Public License as published
7      by the Free Software Foundation, either version 3 of the License,
8      or (at your 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      Affero General Public License for more details.
14
15      You should have received a copy of the GNU Affero General Public License
16      along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18      SPDX-License-Identifier: AGPL3.0-or-later
19  */
20
21 /**
22  * @file consensus/plugin_block_consensus.c
23  * @brief consensus block, either nested block or marker
24  * @author Christian Grothoff
25  */
26
27 #include "platform.h"
28 #include "consensus_protocol.h"
29 #include "gnunet_block_plugin.h"
30 #include "gnunet_block_group_lib.h"
31
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 ctx context
39  * @param type block type
40  * @param group block group to use
41  * @param eo control flags
42  * @param query original query (hash)
43  * @param xquery extrended 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_consensus_evaluate (void *cls,
51                                  struct GNUNET_BLOCK_Context *ctx,
52                                  enum GNUNET_BLOCK_Type type,
53                                  struct GNUNET_BLOCK_Group *group,
54                                  enum GNUNET_BLOCK_EvaluationOptions eo,
55                                  const struct GNUNET_HashCode *query,
56                                  const void *xquery,
57                                  size_t xquery_size,
58                                  const void *reply_block,
59                                  size_t reply_block_size)
60 {
61   if (reply_block_size < sizeof(struct ConsensusElement))
62     return GNUNET_BLOCK_EVALUATION_RESULT_INVALID;
63
64   const struct ConsensusElement *ce = reply_block;
65
66   if ((0 != ce->marker) ||
67       (0 == ce->payload_type))
68     return GNUNET_BLOCK_EVALUATION_OK_MORE;
69
70   return GNUNET_BLOCK_evaluate (ctx,
71                                 type,
72                                 group,
73                                 eo,
74                                 query,
75                                 xquery,
76                                 xquery_size,
77                                 &ce[1],
78                                 reply_block_size - sizeof(struct
79                                                           ConsensusElement));
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_consensus_get_key (void *cls,
96                                 enum GNUNET_BLOCK_Type type,
97                                 const void *block,
98                                 size_t block_size,
99                                 struct GNUNET_HashCode *key)
100 {
101   return GNUNET_SYSERR;
102 }
103
104
105 /**
106  * Entry point for the plugin.
107  */
108 void *
109 libgnunet_plugin_block_consensus_init (void *cls)
110 {
111   static enum GNUNET_BLOCK_Type types[] = {
112     GNUNET_BLOCK_TYPE_CONSENSUS_ELEMENT,
113     GNUNET_BLOCK_TYPE_ANY       /* end of list */
114   };
115   struct GNUNET_BLOCK_PluginFunctions *api;
116
117   api = GNUNET_new (struct GNUNET_BLOCK_PluginFunctions);
118   api->evaluate = &block_plugin_consensus_evaluate;
119   api->get_key = &block_plugin_consensus_get_key;
120   api->types = types;
121   return api;
122 }
123
124
125 /**
126  * Exit point from the plugin.
127  */
128 void *
129 libgnunet_plugin_block_consensus_done (void *cls)
130 {
131   struct GNUNET_BLOCK_PluginFunctions *api = cls;
132
133   GNUNET_free (api);
134   return NULL;
135 }
136
137
138 /* end of plugin_block_consensus.c */