implement new functions in libgnunetsq, clean up sqlite namestore plugin, implement...
[oweals/gnunet.git] / src / namestore / test_namestore_api_lookup_shadow_filter.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
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20 /**
21  * @file namestore/test_namestore_api_lookup_shadow_filter.c
22  * @brief testcase for namestore_api.c: store a record with short expiration
23  *      and a shadow record, perform lookup:
24  *      - when active record is valid, expect only active record
25  *      - when active record is expired, expect shadow record only
26  */
27 #include "platform.h"
28 #include "gnunet_namecache_service.h"
29 #include "gnunet_namestore_service.h"
30 #include "gnunet_testing_lib.h"
31
32 #define TEST_NAME "dummy.dummy.gnunet"
33 #define TEST_RECORD_TYPE 1234
34 #define TEST_RECORD_DATALEN 123
35 #define TEST_RECORD_DATA 'a'
36 #define TEST_SHADOW_RECORD_DATA 'b'
37
38 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
39 #define EXPIRATION GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 5)
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_SCHEDULER_Task * delayed_lookup_task;
48
49 static struct GNUNET_CRYPTO_EcdsaPrivateKey *privkey;
50
51 static struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
52
53 static int res;
54
55 static struct GNUNET_NAMESTORE_QueueEntry *nsqe;
56
57 static struct GNUNET_NAMECACHE_QueueEntry *ncqe;
58
59 static struct GNUNET_NAMECACHE_QueueEntry *ncqe_shadow;
60
61 static struct GNUNET_GNSRECORD_Data records[2];
62
63 static struct GNUNET_TIME_Absolute record_expiration;
64
65 static struct GNUNET_HashCode derived_hash;
66
67 static struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
68
69
70 static void
71 cleanup ()
72 {
73   if (NULL != nsh)
74   {
75     GNUNET_NAMESTORE_disconnect (nsh);
76     nsh = NULL;
77   }
78   if (NULL != nch)
79   {
80     GNUNET_NAMECACHE_disconnect (nch);
81     nch = NULL;
82   }
83   if (NULL != privkey)
84   {
85     GNUNET_free (privkey);
86     privkey = NULL;
87   }
88   GNUNET_SCHEDULER_shutdown ();
89 }
90
91
92 /**
93  * Re-establish the connection to the service.
94  *
95  * @param cls handle to use to re-connect.
96  */
97 static void
98 endbadly (void *cls)
99 {
100   if (NULL != delayed_lookup_task)
101   {
102     GNUNET_SCHEDULER_cancel (delayed_lookup_task);
103     delayed_lookup_task = NULL;
104   }
105   if (NULL != nsqe)
106   {
107     GNUNET_NAMESTORE_cancel (nsqe);
108     nsqe = NULL;
109   }
110   if (NULL != ncqe)
111   {
112     GNUNET_NAMECACHE_cancel (ncqe);
113     ncqe = NULL;
114   }
115   cleanup ();
116   res = 1;
117 }
118
119
120 static void
121 end (void *cls)
122 {
123   cleanup ();
124   res = 0;
125 }
126
127
128 static void
129 rd_decrypt_cb (void *cls,
130                unsigned int rd_count,
131                const struct GNUNET_GNSRECORD_Data *rd)
132 {
133   struct GNUNET_GNSRECORD_Data *expected_rd = cls;
134   char rd_cmp_data[TEST_RECORD_DATALEN];
135
136   if (1 != rd_count)
137   {
138     GNUNET_SCHEDULER_add_now (&endbadly, NULL);
139     GNUNET_break (0);
140     return;
141   }
142   if (NULL == rd)
143   {
144     GNUNET_SCHEDULER_add_now (&endbadly, NULL);
145     GNUNET_break (0);
146     return;
147   }
148   if (expected_rd == &records[0])
149   {
150     /* Expecting active record */
151     memset (rd_cmp_data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
152     if (TEST_RECORD_TYPE != rd[0].record_type)
153     {
154       GNUNET_SCHEDULER_add_now (&endbadly, NULL);
155       GNUNET_break (0);
156       return;
157     }
158     if (TEST_RECORD_DATALEN != rd[0].data_size)
159     {
160       GNUNET_SCHEDULER_add_now (&endbadly, NULL);
161       GNUNET_break (0);
162       return;
163     }
164     if (0 != memcmp (&rd_cmp_data, rd[0].data, TEST_RECORD_DATALEN))
165     {
166       GNUNET_SCHEDULER_add_now (&endbadly, NULL);
167       GNUNET_break (0);
168       return;
169     }
170     if (0 != (GNUNET_GNSRECORD_RF_SHADOW_RECORD & rd[0].flags))
171     {
172       GNUNET_SCHEDULER_add_now (&endbadly, NULL);
173       GNUNET_break (0);
174       return;
175     }
176     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
177                 "Block was decrypted successfully with active record\n");
178   }
179   if (expected_rd == &records[1])
180   {
181     /* Expecting shadow record  but without shadow flag*/
182     memset (rd_cmp_data, TEST_SHADOW_RECORD_DATA, TEST_RECORD_DATALEN);
183     if (TEST_RECORD_TYPE != rd[0].record_type)
184     {
185       GNUNET_SCHEDULER_add_now (&endbadly, NULL);
186       GNUNET_break (0);
187       return;
188     }
189     if (TEST_RECORD_DATALEN != rd[0].data_size)
190     {
191       GNUNET_SCHEDULER_add_now (&endbadly, NULL);
192       GNUNET_break (0);
193       return;
194     }
195     if (0 != memcmp (&rd_cmp_data, rd[0].data, TEST_RECORD_DATALEN))
196     {
197       GNUNET_SCHEDULER_add_now (&endbadly, NULL);
198       GNUNET_break (0);
199       return;
200     }
201     if (0 != (GNUNET_GNSRECORD_RF_SHADOW_RECORD & rd[0].flags))
202     {
203       GNUNET_SCHEDULER_add_now (&endbadly, NULL);
204       GNUNET_break (0);
205       return;
206     }
207     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
208                 "Block was decrypted successfully with former shadow record \n");
209     GNUNET_SCHEDULER_add_now (&end, NULL );
210   }
211 }
212
213
214 static void
215 name_lookup_active_proc (void *cls,
216                   const struct GNUNET_GNSRECORD_Block *block)
217 {
218   struct GNUNET_GNSRECORD_Data *expected_rd = cls;
219   GNUNET_assert (NULL != expected_rd);
220
221   ncqe = NULL;
222   ncqe_shadow = NULL;
223   if (endbadly_task != NULL)
224   {
225     GNUNET_SCHEDULER_cancel (endbadly_task);
226     endbadly_task = NULL;
227   }
228
229   if (NULL == block)
230   {
231     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
232               _("Namestore returned no block\n"));
233     if (endbadly_task != NULL)
234       GNUNET_SCHEDULER_cancel (endbadly_task);
235     endbadly_task =  GNUNET_SCHEDULER_add_now (&endbadly, NULL);
236     return;
237   }
238
239   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
240               "Namestore returned block, decrypting \n");
241   GNUNET_assert (GNUNET_OK == GNUNET_GNSRECORD_block_decrypt(block,
242                 &pubkey, TEST_NAME, &rd_decrypt_cb, expected_rd));
243 }
244
245
246 static void
247 name_lookup_shadow (void *cls)
248 {
249   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
250               "Performing lookup for shadow record \n");
251   delayed_lookup_task = NULL;
252   ncqe_shadow = GNUNET_NAMECACHE_lookup_block (nch, &derived_hash,
253       &name_lookup_active_proc, &records[1]);
254 }
255
256
257 static void
258 put_cont (void *cls, int32_t success, const char *emsg)
259 {
260   nsqe = NULL;
261
262   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
263               "Name store added record for `%s': %s\n",
264               TEST_NAME,
265               (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
266
267   /* Create derived hash */
268   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
269   GNUNET_GNSRECORD_query_from_public_key (&pubkey, TEST_NAME, &derived_hash);
270
271   if (0 == GNUNET_TIME_absolute_get_remaining(record_expiration).rel_value_us )
272   {
273     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
274                 "Test to too long to store records, cannot run test!\n");
275     GNUNET_SCHEDULER_add_now (&end, NULL );
276     return;
277   }
278   /* Lookup active record now */
279   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
280               "Performing lookup for active record \n");
281   ncqe = GNUNET_NAMECACHE_lookup_block (nch, &derived_hash,
282                                         &name_lookup_active_proc, &records[0]);
283
284   delayed_lookup_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply (EXPIRATION, 2), &name_lookup_shadow, NULL);
285 }
286
287
288 static void
289 run (void *cls,
290      const struct GNUNET_CONFIGURATION_Handle *cfg,
291      struct GNUNET_TESTING_Peer *peer)
292 {
293   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
294                                                 &endbadly,
295                                                 NULL);
296   privkey = GNUNET_CRYPTO_ecdsa_key_create ();
297   GNUNET_assert (privkey != NULL);
298   GNUNET_CRYPTO_ecdsa_key_get_public (privkey,
299                                       &pubkey);
300
301   record_expiration = GNUNET_TIME_absolute_add (GNUNET_TIME_absolute_get(),
302                                                 EXPIRATION);
303   records[0].expiration_time = record_expiration.abs_value_us;
304   records[0].record_type = TEST_RECORD_TYPE;
305   records[0].data_size = TEST_RECORD_DATALEN;
306   records[0].data = GNUNET_malloc (TEST_RECORD_DATALEN);
307   records[0].flags = GNUNET_GNSRECORD_RF_NONE;
308   memset ((char *) records[0].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
309
310   records[1].expiration_time = GNUNET_TIME_absolute_get().abs_value_us + 1000000000;
311   records[1].record_type = TEST_RECORD_TYPE;
312   records[1].data_size = TEST_RECORD_DATALEN;
313   records[1].data = GNUNET_malloc (TEST_RECORD_DATALEN);
314   records[1].flags = GNUNET_GNSRECORD_RF_SHADOW_RECORD;
315   memset ((char *) records[1].data, TEST_SHADOW_RECORD_DATA, TEST_RECORD_DATALEN);
316
317   nsh = GNUNET_NAMESTORE_connect (cfg);
318   nch = GNUNET_NAMECACHE_connect (cfg);
319   GNUNET_break (NULL != nsh);
320   GNUNET_break (NULL != nch);
321   nsqe = GNUNET_NAMESTORE_records_store (nsh, privkey, TEST_NAME,
322                                       2, records, &put_cont, NULL);
323   if (NULL == nsqe)
324   {
325     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
326               _("Namestore cannot store no block\n"));
327   }
328
329   GNUNET_free ((void *) records[0].data);
330   GNUNET_free ((void *) records[1].data);
331 }
332
333
334 int
335 main (int argc, char *argv[])
336 {
337   const char *plugin_name;
338   char *cfg_name;
339
340   plugin_name = GNUNET_TESTING_get_testname_from_underscore (argv[0]);
341   GNUNET_asprintf (&cfg_name,
342                    "test_namestore_api_%s.conf",
343                    plugin_name);
344   GNUNET_DISK_purge_cfg_dir (cfg_name,
345                              "GNUNET_TEST_HOME");
346   res = 1;
347   if (0 !=
348       GNUNET_TESTING_peer_run ("test-namestore-api-lookup-shadow-filter",
349                                cfg_name,
350                                &run,
351                                NULL))
352   {
353     res = 1;
354   }
355   GNUNET_free (cfg_name);
356   GNUNET_DISK_purge_cfg_dir (cfg_name,
357                              "GNUNET_TEST_HOME");
358   return res;
359 }
360
361
362 /* end of test_namestore_api_lookup_shadow_filter.c */