-more debug messages
[oweals/gnunet.git] / src / namestore / test_namestore_api_create.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.c
22  * @brief testcase for namestore_api.c
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 #include "gnunet_signatures.h"
30
31
32 #define RECORDS 1
33
34 #define TEST_RECORD_TYPE 1234
35
36 #define TEST_RECORD_DATALEN 123
37
38 #define TEST_RECORD_DATA 'a'
39
40 #define TEST_CREATE_RECORD_TYPE 4321
41
42 #define TEST_CREATE_RECORD_DATALEN 255
43
44 #define TEST_CREATE_RECORD_DATA 'b'
45
46 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
47
48
49 static struct GNUNET_NAMESTORE_Handle * nsh;
50
51 static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
52
53 static struct GNUNET_CRYPTO_RsaPrivateKey * privkey;
54
55 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pubkey;
56
57 static struct GNUNET_CRYPTO_RsaSignature *s_signature;
58
59 static struct GNUNET_CRYPTO_RsaSignature *s_signature_updated;
60
61 static struct GNUNET_CRYPTO_ShortHashCode s_zone;
62
63 static struct GNUNET_NAMESTORE_RecordData *s_first_record;
64
65 static struct GNUNET_NAMESTORE_RecordData *s_second_record;
66
67 static char *s_name;
68
69 static int res;
70
71
72 /**
73  * Re-establish the connection to the service.
74  *
75  * @param cls handle to use to re-connect.
76  * @param tc scheduler context
77  */
78 static void
79 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
80 {
81   if (nsh != NULL)
82     GNUNET_NAMESTORE_disconnect (nsh);
83   nsh = NULL;
84   if (privkey != NULL)
85     GNUNET_CRYPTO_rsa_key_free (privkey);
86   privkey = NULL;
87   res = 1;
88 }
89
90
91 static void
92 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
93 {
94   if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
95   {
96     GNUNET_SCHEDULER_cancel (endbadly_task);
97     endbadly_task = GNUNET_SCHEDULER_NO_TASK;
98   }
99   GNUNET_free ((void *) s_first_record->data);
100   GNUNET_free (s_first_record);
101   GNUNET_free_non_null (s_second_record);
102   if (privkey != NULL)
103     GNUNET_CRYPTO_rsa_key_free (privkey);
104   privkey = NULL;
105   if (nsh != NULL)
106     GNUNET_NAMESTORE_disconnect (nsh);
107   nsh = NULL;
108 }
109
110
111 static void 
112 name_lookup_second_proc (void *cls,
113                          const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *zone_key,
114                          struct GNUNET_TIME_Absolute expire,
115                          const char *n,
116                          unsigned int rd_count,
117                          const struct GNUNET_NAMESTORE_RecordData *rd,
118                          const struct GNUNET_CRYPTO_RsaSignature *signature)
119 {
120   static int found = GNUNET_NO;
121   int failed = GNUNET_NO;
122   int c;
123
124   if (n != NULL)
125   {
126     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Checking returned results\n");
127     if (0 != memcmp (zone_key, &pubkey, sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded)))
128     {
129       GNUNET_break (0);
130       failed = GNUNET_YES;
131     }
132
133     if (0 != strcmp(n, s_name))
134     {
135       GNUNET_break (0);
136       failed = GNUNET_YES;
137     }
138
139     if (2 != rd_count)
140     {
141       GNUNET_break (0);
142       failed = GNUNET_YES;
143     }
144
145     for (c = 0; c < rd_count; c++)
146     {
147       if ((GNUNET_NO == GNUNET_NAMESTORE_records_cmp(&rd[c], s_first_record)) &&
148           (GNUNET_NO == GNUNET_NAMESTORE_records_cmp(&rd[c], s_second_record)))
149       {
150         GNUNET_break (0);
151         failed = GNUNET_YES;
152       }
153     }
154
155     if (GNUNET_OK != GNUNET_NAMESTORE_verify_signature(zone_key, expire, n, rd_count, rd, signature))
156     {
157       GNUNET_break (0);
158       failed = GNUNET_YES;
159     }
160
161     if (GNUNET_OK != GNUNET_NAMESTORE_verify_signature(&pubkey, expire, n, rd_count, rd, signature))
162     {
163       GNUNET_break (0);
164       failed = GNUNET_YES;
165     }
166
167     struct GNUNET_NAMESTORE_RecordData rd_new[2];
168     rd_new[0] = *s_first_record;
169     rd_new[1] = *s_second_record;
170     s_signature_updated = GNUNET_NAMESTORE_create_signature(privkey, expire, s_name, rd_new, 2);
171
172     if (0 != memcmp (s_signature_updated, signature, sizeof (struct GNUNET_CRYPTO_RsaSignature)))
173     {
174       GNUNET_break (0);
175       failed = GNUNET_YES;
176     }
177
178     found = GNUNET_YES;
179     if (failed == GNUNET_NO)
180       res = 0;
181     else
182       res = 1;
183   }
184   else
185   {
186     if (found != GNUNET_YES)
187     {
188       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to lookup records for name `%s'\n", s_name);
189       res = 1;
190     }
191     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Lookup done for name %s'\n", s_name);
192   }
193   GNUNET_SCHEDULER_add_now(&end, NULL);
194 }
195
196
197 static void
198 create_second_cont (void *cls, int32_t success, const char *emsg)
199 {
200   char *name = cls;
201
202   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Create second record for `%s': %s\n", name, (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
203   if (success == GNUNET_OK)
204   {
205     res = 0;
206     GNUNET_NAMESTORE_lookup_record (nsh, &s_zone, name, 0, &name_lookup_second_proc, name);
207   }
208   else
209   {
210     res = 1;
211     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to put records for name `%s'\n", name);
212     GNUNET_SCHEDULER_add_now(&end, NULL);
213   }
214 }
215
216
217 static void 
218 name_lookup_initial_proc (void *cls,
219                           const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *zone_key,
220                           struct GNUNET_TIME_Absolute expire,
221                           const char *n,
222                           unsigned int rd_count,
223                           const struct GNUNET_NAMESTORE_RecordData *rd,
224                           const struct GNUNET_CRYPTO_RsaSignature *signature)
225 {
226   char * name = cls;
227   static int found = GNUNET_NO;
228   int failed = GNUNET_NO;
229   int c;
230
231   if (n != NULL)
232   {
233     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Checking returned results\n");
234     if (0 != memcmp (zone_key, &pubkey, sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded)))
235     {
236       GNUNET_break (0);
237       failed = GNUNET_YES;
238     }
239
240     if (0 != strcmp(n, s_name))
241     {
242       GNUNET_break (0);
243       failed = GNUNET_YES;
244     }
245
246     if (RECORDS != rd_count)
247     {
248       GNUNET_break (0);
249       failed = GNUNET_YES;
250     }
251
252     for (c = 0; c < RECORDS; c++)
253     {
254       if (GNUNET_NO == GNUNET_NAMESTORE_records_cmp(&rd[c], &s_first_record[c]))
255       {
256         GNUNET_break (0);
257         failed = GNUNET_YES;
258       }
259     }
260
261     if (GNUNET_OK != GNUNET_NAMESTORE_verify_signature (&pubkey, expire, n, rd_count, rd, signature))
262     {
263       GNUNET_break (0);
264       failed = GNUNET_YES;
265     }
266
267     if (0 != memcmp (s_signature, signature, sizeof (struct GNUNET_CRYPTO_RsaSignature)))
268     {
269       GNUNET_break (0);
270       failed = GNUNET_YES;
271     }
272
273     found = GNUNET_YES;
274     if (failed == GNUNET_NO)
275       res = 0;
276     else
277       res = 1;
278
279     /* create a second record */
280     s_second_record = GNUNET_malloc(sizeof (struct GNUNET_NAMESTORE_RecordData) + TEST_CREATE_RECORD_DATALEN);
281     s_second_record->expiration_time = UINT64_MAX;
282     s_second_record->record_type = TEST_CREATE_RECORD_TYPE;
283     s_second_record->flags = GNUNET_NAMESTORE_RF_AUTHORITY;
284     s_second_record->data = &s_second_record[1];
285     s_second_record->data_size = TEST_CREATE_RECORD_DATALEN;
286     memset ((char *) s_second_record->data, TEST_CREATE_RECORD_DATA, TEST_CREATE_RECORD_DATALEN);
287
288     GNUNET_NAMESTORE_record_create (nsh, privkey, name, s_second_record, &create_second_cont, name);
289
290   }
291   else
292   {
293     if (found != GNUNET_YES)
294     {
295       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to lookup records for name `%s'\n", s_name);
296       res = 1;
297     }
298     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Lookup done for name %s'\n", s_name);
299     GNUNET_SCHEDULER_add_now (&end, NULL);
300   }
301 }
302
303
304 static void
305 create_first_cont (void *cls, int32_t success, const char *emsg)
306 {
307   char *name = cls;
308   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Create record for `%s': %s\n", name, (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
309   if (success == GNUNET_OK)
310   {
311     res = 0;
312     /* check if record was created correct */
313     GNUNET_NAMESTORE_lookup_record (nsh, &s_zone, name, 0, &name_lookup_initial_proc, name);
314   }
315   else
316   {
317     res = 1;
318     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to put records for name `%s'\n", name);
319     GNUNET_SCHEDULER_add_now(&end, NULL);
320   }
321 }
322
323
324 static struct GNUNET_NAMESTORE_RecordData *
325 create_record (unsigned int count)
326 {
327   unsigned int c;
328   struct GNUNET_NAMESTORE_RecordData * rd;
329
330   rd = GNUNET_malloc (count * sizeof (struct GNUNET_NAMESTORE_RecordData));
331   for (c = 0; c < count; c++)
332   {
333     rd[c].expiration_time = GNUNET_TIME_absolute_get().abs_value;
334     rd[c].record_type = TEST_RECORD_TYPE;
335     rd[c].data_size = TEST_RECORD_DATALEN;
336     rd[c].data = GNUNET_malloc(TEST_RECORD_DATALEN);
337     memset ((char *) rd[c].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
338   }
339   return rd;
340 }
341
342
343 static void
344 run (void *cls, 
345      const struct GNUNET_CONFIGURATION_Handle *cfg,
346      struct GNUNET_TESTING_Peer *peer)
347 {
348   size_t rd_ser_len;
349   char *hostkey_file;
350   struct GNUNET_TIME_Absolute et;
351
352   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,endbadly, NULL);
353   /* load privat key */
354   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR,
355       "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
356   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
357   privkey = GNUNET_CRYPTO_rsa_key_create_from_file(hostkey_file);
358   GNUNET_free (hostkey_file);
359   /* get public key */
360   GNUNET_CRYPTO_rsa_key_get_public(privkey, &pubkey);
361
362   /* create record */
363   s_name = "dummy.dummy.gnunet";
364   s_first_record = create_record (1);
365
366   rd_ser_len = GNUNET_NAMESTORE_records_get_size(1, s_first_record);
367   char rd_ser[rd_ser_len];
368   GNUNET_NAMESTORE_records_serialize(1, s_first_record, rd_ser_len, rd_ser);
369   et.abs_value = s_first_record->expiration_time;
370   s_signature = GNUNET_NAMESTORE_create_signature(privkey, et, s_name, s_first_record, 1);
371
372   /* create random zone hash */
373   GNUNET_CRYPTO_short_hash (&pubkey, sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded), &s_zone);
374
375   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Name: `%s' Zone: `%s' \n", s_name, GNUNET_short_h2s (&s_zone));
376   nsh = GNUNET_NAMESTORE_connect (cfg);
377   GNUNET_break (NULL != nsh);
378
379   GNUNET_break (s_first_record != NULL);
380   GNUNET_break (s_name != NULL);
381
382   /* create initial record */
383   GNUNET_NAMESTORE_record_create (nsh, privkey, s_name, s_first_record, &create_first_cont, s_name);
384 }
385
386
387 int
388 main (int argc, char *argv[])
389 {
390   res = 1;
391   if (0 != 
392       GNUNET_TESTING_service_run ("test-namestore-api-create",
393                                   "namestore",
394                                   "test_namestore_api.conf",
395                                   &run,
396                                   NULL))
397     return 1;
398   GNUNET_free (s_signature);
399   return res;
400 }
401
402 /* end of test_namestore_api_create.c */