removing GNUNET_CRYPTO_ecc_key_free, use GNUNET_free directly instead
[oweals/gnunet.git] / src / namestore / test_namestore_api_zone_iteration.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009 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_zone_iteration.c
22  * @brief testcase for zone iteration functionality: iterate of a specific zone
23  */
24 #include "platform.h"
25 #include "gnunet_common.h"
26 #include "gnunet_namestore_service.h"
27 #include "gnunet_testing_lib.h"
28 #include "namestore.h"
29
30
31 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
32
33
34 static struct GNUNET_NAMESTORE_Handle * nsh;
35
36 static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
37
38 static GNUNET_SCHEDULER_TaskIdentifier stopiteration_task;
39
40 static struct GNUNET_CRYPTO_EccPrivateKey * privkey;
41
42 static struct GNUNET_CRYPTO_EccPublicKey pubkey;
43
44 static struct GNUNET_HashCode zone;
45
46 static struct GNUNET_CRYPTO_EccPrivateKey * privkey2;
47
48 static struct GNUNET_CRYPTO_EccPublicKey pubkey2;
49
50 static struct GNUNET_HashCode zone2;
51
52 static struct GNUNET_NAMESTORE_ZoneIterator *zi;
53
54 static int res;
55
56 static int returned_records;
57
58 static struct GNUNET_CRYPTO_EccSignature *sig_1;
59
60 static char * s_name_1;
61
62 static struct GNUNET_NAMESTORE_RecordData *s_rd_1;
63
64 static struct GNUNET_CRYPTO_EccSignature *sig_2;
65
66 static char * s_name_2;
67
68 static struct GNUNET_NAMESTORE_RecordData *s_rd_2;
69
70 static struct GNUNET_CRYPTO_EccSignature *sig_3;
71
72 static char * s_name_3;
73
74 static struct GNUNET_NAMESTORE_RecordData *s_rd_3;
75
76
77 /**
78  * Re-establish the connection to the service.
79  *
80  * @param cls handle to use to re-connect.
81  * @param tc scheduler context
82  */
83 static void
84 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
85 {
86   if (stopiteration_task != GNUNET_SCHEDULER_NO_TASK)
87   {
88     GNUNET_SCHEDULER_cancel (stopiteration_task);
89     stopiteration_task = GNUNET_SCHEDULER_NO_TASK;
90   }
91
92   if (nsh != NULL)
93     GNUNET_NAMESTORE_disconnect (nsh);
94   nsh = NULL;
95
96   GNUNET_free_non_null(sig_1);
97   GNUNET_free_non_null(sig_2);
98   GNUNET_free_non_null(sig_3);
99   GNUNET_free_non_null(s_name_1);
100   GNUNET_free_non_null(s_name_2);
101   GNUNET_free_non_null(s_name_3);
102
103   if (s_rd_1 != NULL)
104   {
105     GNUNET_free ((void *)s_rd_1->data);
106     GNUNET_free (s_rd_1);
107   }
108   if (s_rd_2 != NULL)
109   {
110     GNUNET_free ((void *)s_rd_2->data);
111     GNUNET_free (s_rd_2);
112   }
113   if (s_rd_3 != NULL)
114   {
115     GNUNET_free ((void *)s_rd_3->data);
116     GNUNET_free (s_rd_3);
117   }
118
119   if (privkey != NULL)
120     GNUNET_free (privkey);
121   privkey = NULL;
122
123   if (privkey2 != NULL)
124     GNUNET_free (privkey2);
125   privkey2 = NULL;
126   res = 1;
127 }
128
129
130 static void
131 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
132 {
133   if (stopiteration_task != GNUNET_SCHEDULER_NO_TASK)
134   {
135     GNUNET_SCHEDULER_cancel (stopiteration_task);
136     stopiteration_task = GNUNET_SCHEDULER_NO_TASK;
137   }
138
139   if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
140   {
141     GNUNET_SCHEDULER_cancel (endbadly_task);
142     endbadly_task = GNUNET_SCHEDULER_NO_TASK;
143   }
144
145   if (privkey != NULL)
146     GNUNET_free (privkey);
147   privkey = NULL;
148
149   if (privkey2 != NULL)
150     GNUNET_free (privkey2);
151   privkey2 = NULL;
152
153   GNUNET_free (sig_1);
154   GNUNET_free (sig_2);
155   GNUNET_free (sig_3);
156   GNUNET_free (s_name_1);
157   GNUNET_free (s_name_2);
158   GNUNET_free (s_name_3);
159   if (s_rd_1 != NULL)
160   {
161     GNUNET_free ((void *)s_rd_1->data);
162     GNUNET_free (s_rd_1);
163   }
164   if (s_rd_2 != NULL)
165   {
166     GNUNET_free ((void *)s_rd_2->data);
167     GNUNET_free (s_rd_2);
168   }
169   if (s_rd_3 != NULL)
170   {
171     GNUNET_free ((void *)s_rd_3->data);
172     GNUNET_free (s_rd_3);
173   }
174   if (nsh != NULL)
175     GNUNET_NAMESTORE_disconnect (nsh);
176   nsh = NULL;
177 }
178
179
180 static void
181 zone_proc (void *cls,
182            const struct GNUNET_CRYPTO_EccPublicKey *zone_key,
183            struct GNUNET_TIME_Absolute expire,
184            const char *name,
185            unsigned int rd_count,
186            const struct GNUNET_NAMESTORE_RecordData *rd,
187            const struct GNUNET_CRYPTO_EccSignature *signature)
188 {
189   int failed = GNUNET_NO;
190   if ((zone_key == NULL) && (name == NULL))
191   {
192     GNUNET_break (3 == returned_records);
193     if (3 == returned_records)
194       res = 0;
195     else
196       res = 1;
197
198     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
199                 "Received last result, iteration done after receing %u results\n",
200                 returned_records );
201     GNUNET_SCHEDULER_add_now (&end, NULL);
202   }
203   else
204   {
205     /* verify signature returned from name store */
206     if (GNUNET_OK != GNUNET_NAMESTORE_verify_signature (zone_key, expire, name, rd_count, rd, signature))
207     {
208       struct GNUNET_HashCode zone_key_hash;
209       GNUNET_CRYPTO_hash (zone_key, sizeof (struct GNUNET_CRYPTO_EccPublicKey), &zone_key_hash);
210       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
211                   "Verifying signature for `%s' in zone `%s' with %u records and expiration %s failed\n", 
212                   name, GNUNET_h2s(&zone_key_hash), rd_count, 
213                   GNUNET_STRINGS_absolute_time_to_string (expire));
214
215       failed = GNUNET_YES;
216       GNUNET_break (0);
217     }
218
219     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Comparing results name %s \n", name);
220     if (0 == strcmp (name, s_name_1))
221     {
222       if (rd_count == 1)
223       {
224         if (GNUNET_YES != GNUNET_NAMESTORE_records_cmp(rd, s_rd_1))
225         {
226           failed = GNUNET_YES;
227           GNUNET_break (0);
228         }
229       }
230       else
231       {
232         failed = GNUNET_YES;
233         GNUNET_break (0);
234       }
235     }
236     else if (0 == strcmp (name, s_name_2))
237     {
238       if (rd_count == 1)
239       {
240         if (GNUNET_YES != GNUNET_NAMESTORE_records_cmp(rd, s_rd_2))
241         {
242           failed = GNUNET_YES;
243           GNUNET_break (0);
244         }
245       }
246       else
247       {
248         failed = GNUNET_YES;
249         GNUNET_break (0);
250       }
251     }
252     else if (0 == strcmp (name, s_name_3))
253     {
254       if (rd_count == 1)
255       {
256         if (GNUNET_YES != GNUNET_NAMESTORE_records_cmp(rd, s_rd_3))
257         {
258           failed = GNUNET_YES;
259           GNUNET_break (0);
260         }
261       }
262       else
263       {
264         failed = GNUNET_YES;
265         GNUNET_break (0);
266       }
267       if (GNUNET_OK != GNUNET_NAMESTORE_verify_signature(zone_key, expire, name, rd_count, rd, signature))
268       {
269         failed = GNUNET_YES;
270         GNUNET_break (0);
271       }
272     }
273     else
274     {
275       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Comparing result failed: got name `%s'\n", name);
276       res = 1;
277       GNUNET_break (0);
278       GNUNET_SCHEDULER_add_now (&end, NULL);
279     }
280
281     if (failed == GNUNET_NO)
282     {
283       returned_records ++;
284       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Telling namestore to send the next result\n");
285       GNUNET_NAMESTORE_zone_iterator_next (zi);
286     }
287     else
288     {
289       GNUNET_break (0);
290       GNUNET_SCHEDULER_add_now (&end, NULL);
291     }
292   }
293 }
294
295
296 static void
297 put_cont (void *cls, int32_t success, const char *emsg)
298 {
299   static int c = 0;
300
301   if (success == GNUNET_OK)
302   {
303     c++;
304     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record %u \n", c);
305   }
306   else
307   {
308     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to created records\n");
309     GNUNET_break (0);
310     GNUNET_SCHEDULER_cancel (endbadly_task);
311     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
312   }
313
314   if (c == 3)
315   {
316     res = 1;
317     returned_records = 0;
318     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "All records created, starting iteration over all zones \n");
319     zi = GNUNET_NAMESTORE_zone_iteration_start(nsh,
320                                                NULL,
321                                                GNUNET_NAMESTORE_RF_NONE,
322                                                GNUNET_NAMESTORE_RF_NONE,
323                                                &zone_proc,
324                                                &zone);
325     if (zi == NULL)
326     {
327       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to create zone iterator\n");
328       GNUNET_break (0);
329       GNUNET_SCHEDULER_cancel (endbadly_task);
330       endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
331     }
332   }
333 }
334
335
336 static struct GNUNET_NAMESTORE_RecordData *
337 create_record (unsigned int count)
338 {
339   unsigned int c;
340   struct GNUNET_NAMESTORE_RecordData * rd;
341
342   rd = GNUNET_malloc (count * sizeof (struct GNUNET_NAMESTORE_RecordData));
343   for (c = 0; c < count; c++)
344   {
345     rd[c].expiration_time = GNUNET_TIME_relative_to_absolute (GNUNET_TIME_UNIT_HOURS).abs_value_us;
346     rd[c].record_type = 1111;
347     rd[c].data_size = 50;
348     rd[c].data = GNUNET_malloc(50);
349     memset ((char *) rd[c].data, 'a', 50);
350   }
351   return rd;
352 }
353
354
355 /**
356  * Callback called from the zone iterator when we iterate over
357  * the empty zone.  Check that we got no records and then
358  * start the actual tests by filling the zone.
359  */
360 static void
361 empty_zone_proc (void *cls,
362                  const struct GNUNET_CRYPTO_EccPublicKey *zone_key,
363                  struct GNUNET_TIME_Absolute expire,
364                  const char *name,
365                  unsigned int rd_count,
366                  const struct GNUNET_NAMESTORE_RecordData *rd,
367                  const struct GNUNET_CRYPTO_EccSignature *signature)
368 {
369   char *hostkey_file;
370   struct GNUNET_TIME_Absolute et;
371
372   GNUNET_assert (nsh == cls);
373   GNUNET_assert (NULL == name);
374   GNUNET_assert (NULL == zone_key);
375   zi = NULL;
376   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR,
377       "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
378   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
379   privkey = GNUNET_CRYPTO_ecc_key_create_from_file(hostkey_file);
380   GNUNET_free (hostkey_file);
381   GNUNET_assert (privkey != NULL);
382   GNUNET_CRYPTO_ecc_key_get_public(privkey, &pubkey);
383   GNUNET_CRYPTO_hash(&pubkey, sizeof (pubkey), &zone);
384
385
386   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR,
387       "HGU0A0VCU334DN7F2I9UIUMVQMM7JMSD142LIMNUGTTV9R0CF4EG.zkey");
388   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
389   privkey2 = GNUNET_CRYPTO_ecc_key_create_from_file(hostkey_file);
390   GNUNET_free (hostkey_file);
391
392   GNUNET_assert (privkey2 != NULL);
393   GNUNET_CRYPTO_ecc_key_get_public(privkey2, &pubkey2);
394   GNUNET_CRYPTO_hash(&pubkey2, sizeof (pubkey), &zone2);
395
396   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 1\n");
397
398   GNUNET_asprintf(&s_name_1, "dummy1");
399   s_rd_1 = create_record(1);
400   et.abs_value_us = s_rd_1->expiration_time;
401   sig_1 = GNUNET_NAMESTORE_create_signature(privkey, et, s_name_1, s_rd_1, 1);
402   GNUNET_NAMESTORE_record_put_by_authority (nsh, privkey, s_name_1, 
403                                             1, s_rd_1, 
404                                             &put_cont, NULL);
405
406
407   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 2 \n");
408   GNUNET_asprintf(&s_name_2, "dummy2");
409   s_rd_2 = create_record(1);
410
411   et.abs_value_us = s_rd_2->expiration_time;
412   sig_2 = GNUNET_NAMESTORE_create_signature(privkey, et, s_name_2, s_rd_2, 1);
413   GNUNET_NAMESTORE_record_put_by_authority (nsh, privkey, s_name_2,
414                                             1, s_rd_2, 
415                                             &put_cont, NULL);
416
417   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 3\n");
418   /* name in different zone */
419   GNUNET_asprintf(&s_name_3, "dummy3");
420   s_rd_3 = create_record(1);
421   et.abs_value_us = s_rd_3->expiration_time;
422   sig_3 = GNUNET_NAMESTORE_create_signature(privkey2, et, s_name_3, s_rd_3, 1);
423   GNUNET_NAMESTORE_record_put (nsh, &pubkey2, s_name_3, GNUNET_TIME_UNIT_FOREVER_ABS, 1, s_rd_3, sig_3, &put_cont, NULL);
424 }
425
426
427 static void
428 run (void *cls, 
429      const struct GNUNET_CONFIGURATION_Handle *cfg,
430      struct GNUNET_TESTING_Peer *peer)
431 {
432   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT, &endbadly, NULL);
433   nsh = GNUNET_NAMESTORE_connect (cfg);
434   GNUNET_break (NULL != nsh);
435   /* first, iterate over empty namestore */
436   zi = GNUNET_NAMESTORE_zone_iteration_start(nsh,
437                                              NULL,
438                                              GNUNET_NAMESTORE_RF_NONE,
439                                              GNUNET_NAMESTORE_RF_NONE,
440                                              &empty_zone_proc,
441                                              nsh);
442   if (NULL == zi)
443   {
444     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to create zone iterator\n");
445     GNUNET_break (0);
446     GNUNET_SCHEDULER_cancel (endbadly_task);
447     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
448   }
449 }
450
451
452 int
453 main (int argc, char *argv[])
454 {
455   res = 1;
456   if (0 != 
457       GNUNET_TESTING_service_run ("test-namestore-api-zone-iteration",
458                                   "namestore",
459                                   "test_namestore_api.conf",
460                                   &run,
461                                   NULL))
462     return 1;
463   return res;
464 }
465
466
467 /* end of test_namestore_api_zone_iteration.c */