fix for size
[oweals/gnunet.git] / src / namestore / test_namestore_api_lookup_shadow_filter.c
1 /*
2      This file is part of GNUnet.
3      (C) 2012 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  * @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, 2)
40
41 static struct GNUNET_NAMESTORE_Handle *nsh;
42
43 static struct GNUNET_NAMECACHE_Handle *nch;
44
45 static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
46
47 static GNUNET_SCHEDULER_TaskIdentifier 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 static void
70 cleanup ()
71 {
72   if (NULL != nsh)
73   {
74     GNUNET_NAMESTORE_disconnect (nsh);
75     nsh = NULL;
76   }
77   if (NULL != nch)
78   {
79     GNUNET_NAMECACHE_disconnect (nch);
80     nch = NULL;
81   }
82   if (NULL != privkey)
83   {
84     GNUNET_free (privkey);
85     privkey = NULL;
86   }
87   GNUNET_SCHEDULER_shutdown ();
88 }
89
90
91 /**
92  * Re-establish the connection to the service.
93  *
94  * @param cls handle to use to re-connect.
95  * @param tc scheduler context
96  */
97 static void
98 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
99 {
100   if (GNUNET_SCHEDULER_NO_TASK != delayed_lookup_task)
101   {
102     GNUNET_SCHEDULER_cancel (delayed_lookup_task);
103     delayed_lookup_task = GNUNET_SCHEDULER_NO_TASK;
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, const struct GNUNET_SCHEDULER_TaskContext *tc)
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 != GNUNET_SCHEDULER_NO_TASK)
224   {
225     GNUNET_SCHEDULER_cancel (endbadly_task);
226     endbadly_task = GNUNET_SCHEDULER_NO_TASK;
227   }
228
229   if (NULL == block)
230   {
231     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
232               _("Namestore returned no block\n"));
233     if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
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 static void
246 name_lookup_shadow (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
247 {
248   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
249               "Performing lookup for shadow record \n");
250   delayed_lookup_task = GNUNET_SCHEDULER_NO_TASK;
251   ncqe_shadow = GNUNET_NAMECACHE_lookup_block (nch, &derived_hash,
252       &name_lookup_active_proc, &records[1]);
253 }
254
255
256 static void
257 put_cont (void *cls, int32_t success, const char *emsg)
258 {
259   nsqe = NULL;
260
261   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
262               "Name store added record for `%s': %s\n",
263               TEST_NAME,
264               (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
265
266   /* Create derived hash */
267   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
268   GNUNET_GNSRECORD_query_from_public_key (&pubkey, TEST_NAME, &derived_hash);
269
270   if (0 == GNUNET_TIME_absolute_get_remaining(record_expiration).rel_value_us )
271   {
272     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
273                 "Test to too long to store records, cannot run test!\n");
274     GNUNET_SCHEDULER_add_now (&end, NULL );
275     return;
276   }
277   /* Lookup active record now */
278   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
279               "Performing lookup for active record \n");
280   ncqe = GNUNET_NAMECACHE_lookup_block (nch, &derived_hash,
281                                         &name_lookup_active_proc, &records[0]);
282
283   delayed_lookup_task = GNUNET_SCHEDULER_add_delayed (EXPIRATION, &name_lookup_shadow, NULL);
284 }
285
286
287 static void
288 run (void *cls,
289      const struct GNUNET_CONFIGURATION_Handle *cfg,
290      struct GNUNET_TESTING_Peer *peer)
291 {
292   char *hostkey_file;
293
294   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
295                                                 &endbadly, NULL);
296   GNUNET_asprintf (&hostkey_file,
297                    "zonefiles%s%s",
298                    DIR_SEPARATOR_STR,
299                    "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
300   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
301   privkey = GNUNET_CRYPTO_ecdsa_key_create_from_file (hostkey_file);
302   GNUNET_free (hostkey_file);
303   GNUNET_assert (privkey != NULL);
304   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
305
306   record_expiration = GNUNET_TIME_absolute_add(GNUNET_TIME_absolute_get(), EXPIRATION);
307   records[0].expiration_time = record_expiration.abs_value_us;
308   records[0].record_type = TEST_RECORD_TYPE;
309   records[0].data_size = TEST_RECORD_DATALEN;
310   records[0].data = GNUNET_malloc (TEST_RECORD_DATALEN);
311   records[0].flags = GNUNET_GNSRECORD_RF_NONE;
312   memset ((char *) records[0].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
313
314   records[1].expiration_time = GNUNET_TIME_absolute_get().abs_value_us + 1000000000;
315   records[1].record_type = TEST_RECORD_TYPE;
316   records[1].data_size = TEST_RECORD_DATALEN;
317   records[1].data = GNUNET_malloc (TEST_RECORD_DATALEN);
318   records[1].flags = GNUNET_GNSRECORD_RF_SHADOW_RECORD;
319   memset ((char *) records[1].data, TEST_SHADOW_RECORD_DATA, TEST_RECORD_DATALEN);
320
321   nsh = GNUNET_NAMESTORE_connect (cfg);
322   nch = GNUNET_NAMECACHE_connect (cfg);
323   GNUNET_break (NULL != nsh);
324   GNUNET_break (NULL != nch);
325   nsqe = GNUNET_NAMESTORE_records_store (nsh, privkey, TEST_NAME,
326                                       2, records, &put_cont, NULL);
327   if (NULL == nsqe)
328   {
329     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
330               _("Namestore cannot store no block\n"));
331   }
332
333   GNUNET_free ((void *) records[0].data);
334   GNUNET_free ((void *) records[1].data);
335 }
336
337
338 int
339 main (int argc, char *argv[])
340 {
341   res = 1;
342   if (0 !=
343       GNUNET_TESTING_peer_run ("test-namestore-api",
344                                "test_namestore_api.conf",
345                                &run,
346                                NULL))
347     return 1;
348   return res;
349 }
350
351
352 /* end of test_namestore_api_lookup_shadow_filter.c */