error handling
[oweals/gnunet.git] / src / namestore / test_namestore_api_store_update.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2012, 2013, 2018 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  * @file namestore/test_namestore_api_store_update.c
22  * @brief testcase for namestore_api.c: store a record, update it and perform a lookup
23  * @author Matthias Wachs
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_namecache_service.h"
28 #include "gnunet_namestore_service.h"
29 #include "gnunet_testing_lib.h"
30 #include "gnunet_dnsparser_lib.h"
31
32 #define TEST_RECORD_TYPE GNUNET_DNSPARSER_TYPE_TXT
33
34 #define TEST_RECORD_DATALEN 123
35
36 #define TEST_RECORD_DATA 'a'
37
38 #define TEST_RECORD_DATALEN2 234
39
40 #define TEST_RECORD_DATA2 'b'
41
42 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
43
44
45 static struct GNUNET_NAMESTORE_Handle *nsh;
46
47 static struct GNUNET_NAMECACHE_Handle *nch;
48
49 static struct GNUNET_SCHEDULER_Task *endbadly_task;
50
51 static struct GNUNET_CRYPTO_EcdsaPrivateKey *privkey;
52
53 static struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
54
55 static int res;
56
57 static int update_performed;
58
59 static struct GNUNET_NAMESTORE_QueueEntry *nsqe;
60
61 static struct GNUNET_NAMECACHE_QueueEntry *ncqe;
62
63 static const char *name = "dummy";
64
65
66 /**
67  * Terminate test with error.
68  *
69  * @param cls handle to use to re-connect.
70  */
71 static void
72 endbadly (void *cls)
73 {
74   GNUNET_break (0);
75   endbadly_task = NULL;
76   GNUNET_SCHEDULER_shutdown ();
77   res = 1;
78 }
79
80
81 static void
82 end (void *cls)
83 {
84   if (NULL != endbadly_task)
85   {
86     GNUNET_SCHEDULER_cancel (endbadly_task);
87     endbadly_task = NULL;
88   }
89   if (NULL != nsqe)
90   {
91     GNUNET_NAMESTORE_cancel (nsqe);
92     nsqe = NULL;
93   }
94   if (NULL != ncqe)
95   {
96     GNUNET_NAMECACHE_cancel (ncqe);
97     ncqe = NULL;
98   }
99   if (NULL != nsh)
100   {
101     GNUNET_NAMESTORE_disconnect (nsh);
102     nsh = NULL;
103   }
104   if (NULL != nch)
105   {
106     GNUNET_NAMECACHE_disconnect (nch);
107     nch = NULL;
108   }
109   if (NULL != privkey)
110   {
111     GNUNET_free (privkey);
112     privkey = NULL;
113   }
114 }
115
116
117 static void
118 put_cont (void *cls,
119           int32_t success,
120           const char *emsg);
121
122
123 static void
124 rd_decrypt_cb (void *cls,
125                unsigned int rd_count,
126                const struct GNUNET_GNSRECORD_Data *rd)
127 {
128   struct GNUNET_GNSRECORD_Data rd_new;
129
130   GNUNET_assert (1 == rd_count);
131   GNUNET_assert (NULL != rd);
132
133   if (GNUNET_NO == update_performed)
134   {
135     char rd_cmp_data[TEST_RECORD_DATALEN];
136
137     memset (rd_cmp_data,
138             TEST_RECORD_DATA,
139             TEST_RECORD_DATALEN);
140     GNUNET_assert (TEST_RECORD_TYPE == rd[0].record_type);
141     GNUNET_assert (TEST_RECORD_DATALEN == rd[0].data_size);
142     GNUNET_assert (0 == memcmp (&rd_cmp_data,
143                                 rd[0].data,
144                                 TEST_RECORD_DATALEN));
145
146     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
147                 "Block was decrypted successfully, updating record \n");
148
149     rd_new.flags = GNUNET_GNSRECORD_RF_NONE;
150     rd_new.expiration_time = GNUNET_TIME_absolute_get ().abs_value_us
151                              + 1000000000;
152     rd_new.record_type = TEST_RECORD_TYPE;
153     rd_new.data_size = TEST_RECORD_DATALEN2;
154     rd_new.data = GNUNET_malloc (TEST_RECORD_DATALEN2);
155     memset ((char *) rd_new.data,
156             TEST_RECORD_DATA2,
157             TEST_RECORD_DATALEN2);
158
159     nsqe = GNUNET_NAMESTORE_records_store (nsh,
160                                            privkey,
161                                            name,
162                                            1,
163                                            &rd_new,
164                                            &put_cont,
165                                            (void *) name);
166     update_performed = GNUNET_YES;
167   }
168   else
169   {
170     char rd_cmp_data[TEST_RECORD_DATALEN2];
171
172     memset (rd_cmp_data,
173             TEST_RECORD_DATA2,
174             TEST_RECORD_DATALEN2);
175     GNUNET_assert (TEST_RECORD_TYPE == rd[0].record_type);
176     GNUNET_assert (TEST_RECORD_DATALEN2 == rd[0].data_size);
177     GNUNET_assert (0 == memcmp (&rd_cmp_data,
178                                 rd[0].data,
179                                 TEST_RECORD_DATALEN2));
180     GNUNET_SCHEDULER_shutdown ();
181     res = 0;
182   }
183 }
184
185
186 static void
187 name_lookup_proc (void *cls,
188                   const struct GNUNET_GNSRECORD_Block *block)
189 {
190   const char *name = cls;
191
192   ncqe = NULL;
193   GNUNET_assert (NULL != cls);
194   if (NULL == block)
195   {
196     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
197                 _ ("Namecache returned no block for `%s'\n"),
198                 name);
199     GNUNET_SCHEDULER_shutdown ();
200     return;
201   }
202
203   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
204               "Namecache returned block, decrypting \n");
205   GNUNET_assert (GNUNET_OK ==
206                  GNUNET_GNSRECORD_block_decrypt (block,
207                                                  &pubkey,
208                                                  name,
209                                                  &rd_decrypt_cb,
210                                                  (void *) name));
211 }
212
213
214 static void
215 put_cont (void *cls,
216           int32_t success,
217           const char *emsg)
218 {
219   const char *name = cls;
220   struct GNUNET_HashCode derived_hash;
221
222   nsqe = NULL;
223   GNUNET_assert (NULL != cls);
224   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
225               "Name store added record for `%s': %s\n",
226               name,
227               (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
228   /* Create derived hash */
229   GNUNET_GNSRECORD_query_from_private_key (privkey,
230                                            name,
231                                            &derived_hash);
232   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
233               "Looking in namecache for `%s'\n",
234               GNUNET_h2s (&derived_hash));
235   ncqe = GNUNET_NAMECACHE_lookup_block (nch,
236                                         &derived_hash,
237                                         &name_lookup_proc, (void *) name);
238 }
239
240
241 static void
242 run (void *cls,
243      const struct GNUNET_CONFIGURATION_Handle *cfg,
244      struct GNUNET_TESTING_Peer *peer)
245 {
246   struct GNUNET_GNSRECORD_Data rd;
247
248   update_performed = GNUNET_NO;
249   GNUNET_SCHEDULER_add_shutdown (&end,
250                                  NULL);
251   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
252                                                 &endbadly,
253                                                 NULL);
254   privkey = GNUNET_CRYPTO_ecdsa_key_create ();
255   GNUNET_assert (privkey != NULL);
256   GNUNET_CRYPTO_ecdsa_key_get_public (privkey,
257                                       &pubkey);
258   rd.flags = GNUNET_GNSRECORD_RF_NONE;
259   rd.expiration_time = GNUNET_TIME_absolute_get ().abs_value_us + 1000000000;
260   rd.record_type = TEST_RECORD_TYPE;
261   rd.data_size = TEST_RECORD_DATALEN;
262   rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);
263   memset ((char *) rd.data,
264           TEST_RECORD_DATA,
265           TEST_RECORD_DATALEN);
266
267   nsh = GNUNET_NAMESTORE_connect (cfg);
268   GNUNET_break (NULL != nsh);
269   nch = GNUNET_NAMECACHE_connect (cfg);
270   GNUNET_break (NULL != nch);
271   nsqe = GNUNET_NAMESTORE_records_store (nsh,
272                                          privkey,
273                                          name,
274                                          1,
275                                          &rd,
276                                          &put_cont,
277                                          (void *) name);
278   if (NULL == nsqe)
279   {
280     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
281                 _ ("Namestore cannot store no block\n"));
282   }
283   GNUNET_free ((void *) rd.data);
284 }
285
286
287 #include "test_common.c"
288
289
290 int
291 main (int argc,
292       char *argv[])
293 {
294   const char *plugin_name;
295   char *cfg_name;
296
297   SETUP_CFG (plugin_name, cfg_name);
298   res = 1;
299   if (0 !=
300       GNUNET_TESTING_peer_run ("test-namestore-api-store-update",
301                                cfg_name,
302                                &run,
303                                NULL))
304   {
305     res = 1;
306   }
307   GNUNET_DISK_purge_cfg_dir (cfg_name,
308                              "GNUNET_TEST_HOME");
309   GNUNET_free (cfg_name);
310   return res;
311 }
312
313
314 /* end of test_namestore_api_store_update.c */