-more debug messages
[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-new.h"
28 #include "namestore.h"
29
30
31 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
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_RsaPrivateKey * privkey;
41
42 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pubkey;
43
44 static struct GNUNET_HashCode zone;
45
46 static struct GNUNET_CRYPTO_RsaPrivateKey * privkey2;
47
48 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded 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_RsaSignature *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_RsaSignature *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_RsaSignature *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_rsa_key_free (privkey);
121   privkey = NULL;
122
123   if (privkey2 != NULL)
124     GNUNET_CRYPTO_rsa_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_rsa_key_free (privkey);
147   privkey = NULL;
148
149   if (privkey2 != NULL)
150     GNUNET_CRYPTO_rsa_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_RsaPublicKeyBinaryEncoded *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_RsaSignature *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_RsaPublicKeyBinaryEncoded), &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       if (0 != memcmp (signature, sig_1, sizeof (struct GNUNET_CRYPTO_RsaSignature)))
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       if (0 != memcmp (signature, sig_2, sizeof (struct GNUNET_CRYPTO_RsaSignature)))
252       {
253         failed = GNUNET_YES;
254         GNUNET_break (0);
255       }
256     }
257     else if (0 == strcmp (name, s_name_3))
258     {
259       if (rd_count == 1)
260       {
261         if (GNUNET_YES != GNUNET_NAMESTORE_records_cmp(rd, s_rd_3))
262         {
263           failed = GNUNET_YES;
264           GNUNET_break (0);
265         }
266       }
267       else
268       {
269         failed = GNUNET_YES;
270         GNUNET_break (0);
271       }
272       if (GNUNET_OK != GNUNET_NAMESTORE_verify_signature(zone_key, expire, name, rd_count, rd, signature))
273       {
274         failed = GNUNET_YES;
275         GNUNET_break (0);
276       }
277
278       if (0 != memcmp (signature, sig_3, sizeof (struct GNUNET_CRYPTO_RsaSignature)))
279       {
280         failed = GNUNET_YES;
281         GNUNET_break (0);
282       }
283     }
284     else
285     {
286       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Comparing result failed: got name `%s'\n", name);
287       res = 1;
288       GNUNET_break (0);
289       GNUNET_SCHEDULER_add_now (&end, NULL);
290     }
291
292     if (failed == GNUNET_NO)
293     {
294       returned_records ++;
295       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Telling namestore to send the next result\n");
296       GNUNET_NAMESTORE_zone_iterator_next (zi);
297     }
298     else
299     {
300       GNUNET_break (0);
301       GNUNET_SCHEDULER_add_now (&end, NULL);
302     }
303   }
304 }
305
306
307 static void
308 put_cont (void *cls, int32_t success, const char *emsg)
309 {
310   static int c = 0;
311
312   if (success == GNUNET_OK)
313   {
314     c++;
315     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record %u \n", c);
316   }
317   else
318   {
319     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to created records\n");
320     GNUNET_break (0);
321     GNUNET_SCHEDULER_cancel (endbadly_task);
322     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
323   }
324
325   if (c == 3)
326   {
327     res = 1;
328     returned_records = 0;
329     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "All records created, starting iteration over all zones \n");
330     zi = GNUNET_NAMESTORE_zone_iteration_start(nsh,
331                                                NULL,
332                                                GNUNET_NAMESTORE_RF_NONE,
333                                                GNUNET_NAMESTORE_RF_NONE,
334                                                &zone_proc,
335                                                &zone);
336     if (zi == NULL)
337     {
338       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to create zone iterator\n");
339       GNUNET_break (0);
340       GNUNET_SCHEDULER_cancel (endbadly_task);
341       endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
342     }
343   }
344 }
345
346
347 static struct GNUNET_NAMESTORE_RecordData *
348 create_record (unsigned int count)
349 {
350   unsigned int c;
351   struct GNUNET_NAMESTORE_RecordData * rd;
352
353   rd = GNUNET_malloc (count * sizeof (struct GNUNET_NAMESTORE_RecordData));
354   for (c = 0; c < count; c++)
355   {
356     rd[c].expiration_time = GNUNET_TIME_absolute_get().abs_value;
357     rd[c].record_type = 1111;
358     rd[c].data_size = 50;
359     rd[c].data = GNUNET_malloc(50);
360     memset ((char *) rd[c].data, 'a', 50);
361   }
362   return rd;
363 }
364
365
366 /**
367  * Callback called from the zone iterator when we iterate over
368  * the empty zone.  Check that we got no records and then
369  * start the actual tests by filling the zone.
370  */
371 static void
372 empty_zone_proc (void *cls,
373                  const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *zone_key,
374                  struct GNUNET_TIME_Absolute expire,
375                  const char *name,
376                  unsigned int rd_count,
377                  const struct GNUNET_NAMESTORE_RecordData *rd,
378                  const struct GNUNET_CRYPTO_RsaSignature *signature)
379 {
380   char *hostkey_file;
381   struct GNUNET_TIME_Absolute et;
382
383   GNUNET_assert (nsh == cls);
384   GNUNET_assert (NULL == name);
385   GNUNET_assert (NULL == zone_key);
386   zi = NULL;
387   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR,
388       "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
389   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
390   privkey = GNUNET_CRYPTO_rsa_key_create_from_file(hostkey_file);
391   GNUNET_free (hostkey_file);
392   GNUNET_assert (privkey != NULL);
393   GNUNET_CRYPTO_rsa_key_get_public(privkey, &pubkey);
394   GNUNET_CRYPTO_hash(&pubkey, sizeof (pubkey), &zone);
395
396
397   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR,
398       "HGU0A0VCU334DN7F2I9UIUMVQMM7JMSD142LIMNUGTTV9R0CF4EG.zkey");
399   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
400   privkey2 = GNUNET_CRYPTO_rsa_key_create_from_file(hostkey_file);
401   GNUNET_free (hostkey_file);
402
403   GNUNET_assert (privkey2 != NULL);
404   GNUNET_CRYPTO_rsa_key_get_public(privkey2, &pubkey2);
405   GNUNET_CRYPTO_hash(&pubkey2, sizeof (pubkey), &zone2);
406
407   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 1\n");
408
409   GNUNET_asprintf(&s_name_1, "dummy1");
410   s_rd_1 = create_record(1);
411   et.abs_value = s_rd_1->expiration_time;
412   sig_1 = GNUNET_NAMESTORE_create_signature(privkey, et, s_name_1, s_rd_1, 1);
413   GNUNET_NAMESTORE_record_create(nsh, privkey, s_name_1, s_rd_1, &put_cont, NULL);
414
415
416   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 2 \n");
417   GNUNET_asprintf(&s_name_2, "dummy2");
418   s_rd_2 = create_record(1);
419
420   et.abs_value = s_rd_2->expiration_time;
421   sig_2 = GNUNET_NAMESTORE_create_signature(privkey, et, s_name_2, s_rd_2, 1);
422   GNUNET_NAMESTORE_record_create(nsh, privkey, s_name_2, s_rd_2, &put_cont, NULL);
423
424   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 3\n");
425   /* name in different zone */
426   GNUNET_asprintf(&s_name_3, "dummy3");
427   s_rd_3 = create_record(1);
428   et.abs_value = s_rd_3->expiration_time;
429   sig_3 = GNUNET_NAMESTORE_create_signature(privkey2, et, s_name_3, s_rd_3, 1);
430   GNUNET_NAMESTORE_record_put (nsh, &pubkey2, s_name_3, GNUNET_TIME_UNIT_FOREVER_ABS, 1, s_rd_3, sig_3, &put_cont, NULL);
431 }
432
433
434 static void
435 run (void *cls, 
436      const struct GNUNET_CONFIGURATION_Handle *cfg,
437      struct GNUNET_TESTING_Peer *peer)
438 {
439   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT, &endbadly, NULL);
440   nsh = GNUNET_NAMESTORE_connect (cfg);
441   GNUNET_break (NULL != nsh);
442   /* first, iterate over empty namestore */
443   zi = GNUNET_NAMESTORE_zone_iteration_start(nsh,
444                                              NULL,
445                                              GNUNET_NAMESTORE_RF_NONE,
446                                              GNUNET_NAMESTORE_RF_NONE,
447                                              &empty_zone_proc,
448                                              nsh);
449   if (NULL == zi)
450   {
451     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to create zone iterator\n");
452     GNUNET_break (0);
453     GNUNET_SCHEDULER_cancel (endbadly_task);
454     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
455   }
456 }
457
458
459 int
460 main (int argc, char *argv[])
461 {
462   res = 1;
463   if (0 != 
464       GNUNET_TESTING_service_run ("test-namestore-api-zone-iteration",
465                                   "namestore",
466                                   "test_namestore_api.conf",
467                                   &run,
468                                   NULL))
469     return 1;
470   return res;
471 }
472
473
474 /* end of test_namestore_api_zone_iteration.c */