-LRN: initialize rd to avoid having garbage in flags
[oweals/gnunet.git] / src / namestore / test_namestore_api_remove.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 #define RECORDS 5
32
33 #define TEST_RECORD_TYPE 1234
34
35 #define TEST_RECORD_DATALEN 123
36
37 #define TEST_RECORD_DATA 'a'
38
39 #define TEST_REMOVE_RECORD_TYPE 4321
40
41 #define TEST_REMOVE_RECORD_DATALEN 255
42
43 #define TEST_REMOVE_RECORD_DATA 'b'
44
45 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
46
47
48 static struct GNUNET_NAMESTORE_Handle * nsh;
49
50 static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
51
52 static struct GNUNET_CRYPTO_RsaPrivateKey * privkey;
53
54 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pubkey;
55
56 static struct GNUNET_CRYPTO_RsaSignature *s_signature;
57
58 static struct GNUNET_CRYPTO_ShortHashCode s_zone;
59
60 static struct GNUNET_NAMESTORE_RecordData *s_rd;
61
62 static char *s_name;
63
64 static int res;
65
66
67 /**
68  * Re-establish the connection to the service.
69  *
70  * @param cls handle to use to re-connect.
71  * @param tc scheduler context
72  */
73 static void
74 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
75 {
76   if (nsh != NULL)
77     GNUNET_NAMESTORE_disconnect (nsh);
78   nsh = NULL;
79   if (privkey != NULL)
80     GNUNET_CRYPTO_rsa_key_free (privkey);
81   privkey = NULL;
82   res = 1;
83 }
84
85
86 static void
87 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
88 {
89   int c;
90
91   if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
92   {
93     GNUNET_SCHEDULER_cancel (endbadly_task);
94     endbadly_task = GNUNET_SCHEDULER_NO_TASK;
95   }
96   for (c = 0; c < RECORDS; c++)
97     GNUNET_free_non_null((void *) s_rd[c].data);
98   GNUNET_free (s_rd);
99   if (privkey != NULL)
100     GNUNET_CRYPTO_rsa_key_free (privkey);
101   privkey = NULL;
102   if (nsh != NULL)
103     GNUNET_NAMESTORE_disconnect (nsh);
104   nsh = NULL;
105 }
106
107
108 static void
109 name_lookup_proc (void *cls,
110                   const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *zone_key,
111                   struct GNUNET_TIME_Absolute expire,
112                   const char *n,
113                   unsigned int rd_count,
114                   const struct GNUNET_NAMESTORE_RecordData *rd,
115                   const struct GNUNET_CRYPTO_RsaSignature *signature)
116 {
117   static int found = GNUNET_NO;
118   int failed = GNUNET_NO;
119   int c;
120
121   if (n != NULL)
122   {
123     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Lookup for name `%s' returned %u records\n", n, rd_count);
124     if (0 != memcmp (zone_key, &pubkey, sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded)))
125     {
126       GNUNET_break (0);
127       failed = GNUNET_YES;
128     }
129
130     if (0 != strcmp(n, s_name))
131     {
132       GNUNET_break (0);
133       failed = GNUNET_YES;
134     }
135
136     if (RECORDS-1 != rd_count)
137     {
138       GNUNET_break (0);
139       failed = GNUNET_YES;
140     }
141
142     for (c = 0; c < rd_count; c++)
143     {
144       if (GNUNET_NO == GNUNET_NAMESTORE_records_cmp (&rd[c], &s_rd[c+1]))
145       {
146         GNUNET_break (0);
147         failed = GNUNET_YES;
148       }
149     }
150
151     if (GNUNET_OK != GNUNET_NAMESTORE_verify_signature(&pubkey, expire, n, rd_count, rd, signature))
152     {
153       GNUNET_break (0);
154       failed = GNUNET_YES;
155     }
156
157     if (failed == GNUNET_NO)
158       res = 0;
159     else
160       res = 1;
161   }
162   else
163   {
164     if (found != GNUNET_YES)
165     {
166       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to lookup records for name `%s'\n", s_name);
167       res = 1;
168     }
169     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Lookup done for name %s'\n", s_name);
170   }
171   GNUNET_SCHEDULER_add_now(&end, NULL);
172 }
173
174
175 static void
176 remove_cont (void *cls, int32_t success, const char *emsg)
177 {
178   char *name = cls;
179   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Remove record for `%s': %s\n", name, (success == GNUNET_YES) ? "SUCCESS" : "FAIL", emsg);
180   if (success == GNUNET_OK)
181   {
182     res = 0;
183     GNUNET_NAMESTORE_lookup_record (nsh, &s_zone, name, 0, &name_lookup_proc, name);
184   }
185   else
186   {
187     res = 1;
188     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to remove record for name `%s'\n", name);
189     GNUNET_SCHEDULER_add_now(&end, NULL);
190   }
191
192 }
193
194
195 static void
196 put_cont (void *cls, int32_t success, const char *emsg)
197 {
198   char *name = cls;
199   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Name store added record for `%s': %s\n", name, (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
200   if (success == GNUNET_OK)
201   {
202     res = 0;
203     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Removing record for `%s'\n", name);
204
205     GNUNET_NAMESTORE_record_remove (nsh, privkey, name, &s_rd[0], &remove_cont, name);
206   }
207   else
208   {
209     res = 1;
210     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to put records for name `%s'\n", name);
211     GNUNET_SCHEDULER_add_now(&end, NULL);
212   }
213 }
214
215
216 static struct GNUNET_NAMESTORE_RecordData *
217 create_record (unsigned int count)
218 {
219   unsigned int c;
220   struct GNUNET_NAMESTORE_RecordData * rd;
221
222   rd = GNUNET_malloc (count * sizeof (struct GNUNET_NAMESTORE_RecordData));
223   rd[0].expiration_time = GNUNET_TIME_relative_to_absolute (GNUNET_TIME_UNIT_HOURS).abs_value;
224   rd[0].record_type = 0;
225   rd[0].data_size = TEST_REMOVE_RECORD_DATALEN;
226   rd[0].data = GNUNET_malloc(TEST_REMOVE_RECORD_DATALEN);
227   memset ((char *) rd[0].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
228   for (c = 1; c < count; c++)
229   {
230     rd[c].expiration_time = GNUNET_TIME_relative_to_absolute (GNUNET_TIME_UNIT_HOURS).abs_value;
231     rd[c].record_type = TEST_RECORD_TYPE;
232     rd[c].data_size = TEST_RECORD_DATALEN;
233     rd[c].data = GNUNET_malloc(TEST_RECORD_DATALEN);
234     memset ((char *) rd[c].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
235   }
236
237   return rd;
238 }
239
240
241 static void
242 run (void *cls, 
243      const struct GNUNET_CONFIGURATION_Handle *cfg,
244      struct GNUNET_TESTING_Peer *peer)
245 {
246   size_t rd_ser_len;
247   char *hostkey_file;
248   struct GNUNET_TIME_Absolute et;
249
250   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT,endbadly, NULL);
251   /* load privat key */
252   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR,
253       "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
254   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
255   privkey = GNUNET_CRYPTO_rsa_key_create_from_file(hostkey_file);
256   GNUNET_free (hostkey_file);
257   GNUNET_assert (privkey != NULL);
258   /* get public key */
259   GNUNET_CRYPTO_rsa_key_get_public(privkey, &pubkey);
260
261   /* create record */
262   s_name = "dummy.dummy.gnunet";
263   s_rd = create_record (RECORDS);
264
265   rd_ser_len = GNUNET_NAMESTORE_records_get_size(RECORDS, s_rd);
266   char rd_ser[rd_ser_len];
267   GNUNET_NAMESTORE_records_serialize(RECORDS, s_rd, rd_ser_len, rd_ser);
268
269   /* sign */
270   et.abs_value = s_rd[0].expiration_time;
271   s_signature = GNUNET_NAMESTORE_create_signature(privkey, et, s_name, s_rd, RECORDS);
272
273   /* create random zone hash */
274   GNUNET_CRYPTO_short_hash (&pubkey, sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded), &s_zone);
275
276   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Name: `%s' Zone: `%s' \n", s_name, GNUNET_short_h2s (&s_zone));
277   nsh = GNUNET_NAMESTORE_connect (cfg);
278   GNUNET_break (NULL != nsh);
279   GNUNET_break (s_rd != NULL);
280   GNUNET_break (s_name != NULL);
281   GNUNET_NAMESTORE_record_put (nsh, &pubkey, s_name,
282                               GNUNET_TIME_UNIT_FOREVER_ABS,
283                               RECORDS, s_rd, s_signature, put_cont, s_name);
284 }
285
286
287 int
288 main (int argc, char *argv[])
289 {
290   res = 1;
291   if (0 != 
292       GNUNET_TESTING_service_run ("test-namestore-api-remove",
293                                   "namestore",
294                                   "test_namestore_api.conf",
295                                   &run,
296                                   NULL))
297     return 1;
298   GNUNET_free_non_null (s_signature);
299   return res;
300 }
301
302 /* end of test_namestore_api.c */