moving to new, fixed-size encoding of public and private ECC keys everywhere, also...
[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_CRYPTO_ecc_key_free (privkey);
121   privkey = NULL;
122
123   if (privkey2 != NULL)
124     GNUNET_CRYPTO_ecc_key_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_CRYPTO_ecc_key_free (privkey);
147   privkey = NULL;
148
149   if (privkey2 != NULL)
150     GNUNET_CRYPTO_ecc_key_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, "Received last result, iteration done after receing %u results\n",returned_records );
199     GNUNET_SCHEDULER_add_now (&end, NULL);
200   }
201   else
202   {
203     /* verify signature returned from name store */
204     if (GNUNET_OK != GNUNET_NAMESTORE_verify_signature (zone_key, expire, name, rd_count, rd, signature))
205     {
206       struct GNUNET_HashCode zone_key_hash;
207       GNUNET_CRYPTO_hash (zone_key, sizeof (struct GNUNET_CRYPTO_EccPublicKey), &zone_key_hash);
208       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Verifying signature for `%s' in zone `%s' with %u records  and expiration %llu failed\n", name, GNUNET_h2s(&zone_key_hash), rd_count, expire.abs_value);
209
210       failed = GNUNET_YES;
211       GNUNET_break (0);
212     }
213
214     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Comparing results name %s \n", name);
215     if (0 == strcmp (name, s_name_1))
216     {
217       if (rd_count == 1)
218       {
219         if (GNUNET_YES != GNUNET_NAMESTORE_records_cmp(rd, s_rd_1))
220         {
221           failed = GNUNET_YES;
222           GNUNET_break (0);
223         }
224       }
225       else
226       {
227         failed = GNUNET_YES;
228         GNUNET_break (0);
229       }
230     }
231     else if (0 == strcmp (name, s_name_2))
232     {
233       if (rd_count == 1)
234       {
235         if (GNUNET_YES != GNUNET_NAMESTORE_records_cmp(rd, s_rd_2))
236         {
237           failed = GNUNET_YES;
238           GNUNET_break (0);
239         }
240       }
241       else
242       {
243         failed = GNUNET_YES;
244         GNUNET_break (0);
245       }
246     }
247     else if (0 == strcmp (name, s_name_3))
248     {
249       if (rd_count == 1)
250       {
251         if (GNUNET_YES != GNUNET_NAMESTORE_records_cmp(rd, s_rd_3))
252         {
253           failed = GNUNET_YES;
254           GNUNET_break (0);
255         }
256       }
257       else
258       {
259         failed = GNUNET_YES;
260         GNUNET_break (0);
261       }
262       if (GNUNET_OK != GNUNET_NAMESTORE_verify_signature(zone_key, expire, name, rd_count, rd, signature))
263       {
264         failed = GNUNET_YES;
265         GNUNET_break (0);
266       }
267     }
268     else
269     {
270       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Comparing result failed: got name `%s'\n", name);
271       res = 1;
272       GNUNET_break (0);
273       GNUNET_SCHEDULER_add_now (&end, NULL);
274     }
275
276     if (failed == GNUNET_NO)
277     {
278       returned_records ++;
279       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Telling namestore to send the next result\n");
280       GNUNET_NAMESTORE_zone_iterator_next (zi);
281     }
282     else
283     {
284       GNUNET_break (0);
285       GNUNET_SCHEDULER_add_now (&end, NULL);
286     }
287   }
288 }
289
290
291 static void
292 put_cont (void *cls, int32_t success, const char *emsg)
293 {
294   static int c = 0;
295
296   if (success == GNUNET_OK)
297   {
298     c++;
299     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record %u \n", c);
300   }
301   else
302   {
303     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to created records\n");
304     GNUNET_break (0);
305     GNUNET_SCHEDULER_cancel (endbadly_task);
306     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
307   }
308
309   if (c == 3)
310   {
311     res = 1;
312     returned_records = 0;
313     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "All records created, starting iteration over all zones \n");
314     zi = GNUNET_NAMESTORE_zone_iteration_start(nsh,
315                                                NULL,
316                                                GNUNET_NAMESTORE_RF_NONE,
317                                                GNUNET_NAMESTORE_RF_NONE,
318                                                &zone_proc,
319                                                &zone);
320     if (zi == NULL)
321     {
322       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to create zone iterator\n");
323       GNUNET_break (0);
324       GNUNET_SCHEDULER_cancel (endbadly_task);
325       endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
326     }
327   }
328 }
329
330
331 static struct GNUNET_NAMESTORE_RecordData *
332 create_record (unsigned int count)
333 {
334   unsigned int c;
335   struct GNUNET_NAMESTORE_RecordData * rd;
336
337   rd = GNUNET_malloc (count * sizeof (struct GNUNET_NAMESTORE_RecordData));
338   for (c = 0; c < count; c++)
339   {
340     rd[c].expiration_time = GNUNET_TIME_relative_to_absolute (GNUNET_TIME_UNIT_HOURS).abs_value;
341     rd[c].record_type = 1111;
342     rd[c].data_size = 50;
343     rd[c].data = GNUNET_malloc(50);
344     memset ((char *) rd[c].data, 'a', 50);
345   }
346   return rd;
347 }
348
349
350 /**
351  * Callback called from the zone iterator when we iterate over
352  * the empty zone.  Check that we got no records and then
353  * start the actual tests by filling the zone.
354  */
355 static void
356 empty_zone_proc (void *cls,
357                  const struct GNUNET_CRYPTO_EccPublicKey *zone_key,
358                  struct GNUNET_TIME_Absolute expire,
359                  const char *name,
360                  unsigned int rd_count,
361                  const struct GNUNET_NAMESTORE_RecordData *rd,
362                  const struct GNUNET_CRYPTO_EccSignature *signature)
363 {
364   char *hostkey_file;
365   struct GNUNET_TIME_Absolute et;
366
367   GNUNET_assert (nsh == cls);
368   GNUNET_assert (NULL == name);
369   GNUNET_assert (NULL == zone_key);
370   zi = NULL;
371   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR,
372       "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
373   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
374   privkey = GNUNET_CRYPTO_ecc_key_create_from_file(hostkey_file);
375   GNUNET_free (hostkey_file);
376   GNUNET_assert (privkey != NULL);
377   GNUNET_CRYPTO_ecc_key_get_public(privkey, &pubkey);
378   GNUNET_CRYPTO_hash(&pubkey, sizeof (pubkey), &zone);
379
380
381   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR,
382       "HGU0A0VCU334DN7F2I9UIUMVQMM7JMSD142LIMNUGTTV9R0CF4EG.zkey");
383   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
384   privkey2 = GNUNET_CRYPTO_ecc_key_create_from_file(hostkey_file);
385   GNUNET_free (hostkey_file);
386
387   GNUNET_assert (privkey2 != NULL);
388   GNUNET_CRYPTO_ecc_key_get_public(privkey2, &pubkey2);
389   GNUNET_CRYPTO_hash(&pubkey2, sizeof (pubkey), &zone2);
390
391   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 1\n");
392
393   GNUNET_asprintf(&s_name_1, "dummy1");
394   s_rd_1 = create_record(1);
395   et.abs_value = s_rd_1->expiration_time;
396   sig_1 = GNUNET_NAMESTORE_create_signature(privkey, et, s_name_1, s_rd_1, 1);
397   GNUNET_NAMESTORE_record_put_by_authority (nsh, privkey, s_name_1, 
398                                             1, s_rd_1, 
399                                             &put_cont, NULL);
400
401
402   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 2 \n");
403   GNUNET_asprintf(&s_name_2, "dummy2");
404   s_rd_2 = create_record(1);
405
406   et.abs_value = s_rd_2->expiration_time;
407   sig_2 = GNUNET_NAMESTORE_create_signature(privkey, et, s_name_2, s_rd_2, 1);
408   GNUNET_NAMESTORE_record_put_by_authority (nsh, privkey, s_name_2,
409                                             1, s_rd_2, 
410                                             &put_cont, NULL);
411
412   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 3\n");
413   /* name in different zone */
414   GNUNET_asprintf(&s_name_3, "dummy3");
415   s_rd_3 = create_record(1);
416   et.abs_value = s_rd_3->expiration_time;
417   sig_3 = GNUNET_NAMESTORE_create_signature(privkey2, et, s_name_3, s_rd_3, 1);
418   GNUNET_NAMESTORE_record_put (nsh, &pubkey2, s_name_3, GNUNET_TIME_UNIT_FOREVER_ABS, 1, s_rd_3, sig_3, &put_cont, NULL);
419 }
420
421
422 static void
423 run (void *cls, 
424      const struct GNUNET_CONFIGURATION_Handle *cfg,
425      struct GNUNET_TESTING_Peer *peer)
426 {
427   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT, &endbadly, NULL);
428   nsh = GNUNET_NAMESTORE_connect (cfg);
429   GNUNET_break (NULL != nsh);
430   /* first, iterate over empty namestore */
431   zi = GNUNET_NAMESTORE_zone_iteration_start(nsh,
432                                              NULL,
433                                              GNUNET_NAMESTORE_RF_NONE,
434                                              GNUNET_NAMESTORE_RF_NONE,
435                                              &empty_zone_proc,
436                                              nsh);
437   if (NULL == zi)
438   {
439     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to create zone iterator\n");
440     GNUNET_break (0);
441     GNUNET_SCHEDULER_cancel (endbadly_task);
442     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
443   }
444 }
445
446
447 int
448 main (int argc, char *argv[])
449 {
450   res = 1;
451   if (0 != 
452       GNUNET_TESTING_service_run ("test-namestore-api-zone-iteration",
453                                   "namestore",
454                                   "test_namestore_api.conf",
455                                   &run,
456                                   NULL))
457     return 1;
458   return res;
459 }
460
461
462 /* end of test_namestore_api_zone_iteration.c */