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