-consistently use struct GNUNET_HashCode
[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 "namestore.h"
28 #include "gnunet_signatures.h"
29
30 #define VERBOSE GNUNET_NO
31
32 #define RECORDS 5
33 #define TEST_RECORD_TYPE 1234
34 #define TEST_RECORD_DATALEN 123
35 #define TEST_RECORD_DATA 'a'
36
37 #define TEST_REMOVE_RECORD_TYPE 4321
38 #define TEST_REMOVE_RECORD_DATALEN 255
39 #define TEST_REMOVE_RECORD_DATA 'b'
40
41 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
42
43 static struct GNUNET_NAMESTORE_Handle * nsh;
44
45 static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
46 static struct GNUNET_OS_Process *arm;
47
48 static struct GNUNET_CRYPTO_RsaPrivateKey * privkey;
49 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pubkey;
50 struct GNUNET_CRYPTO_RsaSignature *s_signature;
51 static struct GNUNET_CRYPTO_ShortHashCode s_zone;
52 struct GNUNET_NAMESTORE_RecordData *s_rd;
53 static char *s_name;
54
55
56
57 static int res;
58
59 static void
60 start_arm (const char *cfgname)
61 {
62   arm = GNUNET_OS_start_process (GNUNET_YES, NULL, NULL, "gnunet-service-arm",
63                                "gnunet-service-arm", "-c", cfgname,
64 #if VERBOSE_PEERS
65                                "-L", "DEBUG",
66 #else
67                                "-L", "ERROR",
68 #endif
69                                NULL);
70 }
71
72 static void
73 stop_arm ()
74 {
75   if (NULL != arm)
76   {
77     if (0 != GNUNET_OS_process_kill (arm, SIGTERM))
78       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
79     GNUNET_OS_process_wait (arm);
80     GNUNET_OS_process_destroy (arm);
81     arm = NULL;
82   }
83 }
84
85 /**
86  * Re-establish the connection to the service.
87  *
88  * @param cls handle to use to re-connect.
89  * @param tc scheduler context
90  */
91 static void
92 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
93 {
94   if (nsh != NULL)
95     GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
96   nsh = NULL;
97
98   if (privkey != NULL)
99     GNUNET_CRYPTO_rsa_key_free (privkey);
100   privkey = NULL;
101
102   if (NULL != arm)
103     stop_arm();
104
105   res = 1;
106 }
107
108
109 static void
110 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
111 {
112   if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
113   {
114     GNUNET_SCHEDULER_cancel (endbadly_task);
115     endbadly_task = GNUNET_SCHEDULER_NO_TASK;
116   }
117
118   int c;
119   for (c = 0; c < RECORDS; c++)
120     GNUNET_free_non_null((void *) s_rd[c].data);
121   GNUNET_free (s_rd);
122
123   if (privkey != NULL)
124     GNUNET_CRYPTO_rsa_key_free (privkey);
125   privkey = NULL;
126
127   if (nsh != NULL)
128     GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
129   nsh = NULL;
130
131   if (NULL != arm)
132     stop_arm();
133 }
134
135 void name_lookup_proc (void *cls,
136                             const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *zone_key,
137                             struct GNUNET_TIME_Absolute expire,
138                             const char *n,
139                             unsigned int rd_count,
140                             const struct GNUNET_NAMESTORE_RecordData *rd,
141                             const struct GNUNET_CRYPTO_RsaSignature *signature)
142 {
143   static int found = GNUNET_NO;
144   int failed = GNUNET_NO;
145   int c;
146
147   if (n != NULL)
148   {
149     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Lookup for name `%s' returned %u records\n", n, rd_count);
150     if (0 != memcmp (zone_key, &pubkey, sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded)))
151     {
152       GNUNET_break (0);
153       failed = GNUNET_YES;
154     }
155
156     if (0 != strcmp(n, s_name))
157     {
158       GNUNET_break (0);
159       failed = GNUNET_YES;
160     }
161
162     if (RECORDS-1 != rd_count)
163     {
164       GNUNET_break (0);
165       failed = GNUNET_YES;
166     }
167
168     for (c = 0; c < rd_count; c++)
169     {
170       if (GNUNET_NO == GNUNET_NAMESTORE_records_cmp (&rd[c], &s_rd[c+1]))
171       {
172         GNUNET_break (0);
173         failed = GNUNET_YES;
174       }
175     }
176
177     if (GNUNET_OK != GNUNET_NAMESTORE_verify_signature(&pubkey, expire, n, rd_count, rd, signature))
178     {
179       GNUNET_break (0);
180       failed = GNUNET_YES;
181     }
182
183     if (failed == GNUNET_NO)
184       res = 0;
185     else
186       res = 1;
187   }
188   else
189   {
190     if (found != GNUNET_YES)
191     {
192       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to lookup records for name `%s'\n", s_name);
193       res = 1;
194     }
195     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Lookup done for name %s'\n", s_name);
196   }
197   GNUNET_SCHEDULER_add_now(&end, NULL);
198 }
199
200 void
201 remove_cont (void *cls, int32_t success, const char *emsg)
202 {
203   char *name = cls;
204   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Remove record for `%s': %s\n", name, (success == GNUNET_YES) ? "SUCCESS" : "FAIL", emsg);
205   if (success == GNUNET_OK)
206   {
207     res = 0;
208     GNUNET_NAMESTORE_lookup_record (nsh, &s_zone, name, 0, &name_lookup_proc, name);
209   }
210   else
211   {
212     res = 1;
213     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to remove record for name `%s'\n", name);
214     GNUNET_SCHEDULER_add_now(&end, NULL);
215   }
216
217 }
218
219 void
220 put_cont (void *cls, int32_t success, const char *emsg)
221 {
222   char *name = cls;
223   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Name store added record for `%s': %s\n", name, (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
224   if (success == GNUNET_OK)
225   {
226     res = 0;
227     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Removing record for `%s'\n", name);
228
229     GNUNET_NAMESTORE_record_remove (nsh, privkey, name, &s_rd[0], &remove_cont, name);
230   }
231   else
232   {
233     res = 1;
234     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to put records for name `%s'\n", name);
235     GNUNET_SCHEDULER_add_now(&end, NULL);
236   }
237 }
238
239 static struct GNUNET_NAMESTORE_RecordData *
240 create_record (int count)
241 {
242   int c;
243   struct GNUNET_NAMESTORE_RecordData * rd;
244   rd = GNUNET_malloc (count * sizeof (struct GNUNET_NAMESTORE_RecordData));
245
246   rd[0].expiration = GNUNET_TIME_absolute_get();
247   rd[0].record_type = 0;
248   rd[0].data_size = TEST_REMOVE_RECORD_DATALEN;
249   rd[0].data = GNUNET_malloc(TEST_REMOVE_RECORD_DATALEN);
250   memset ((char *) rd[0].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
251
252   for (c = 1; c < RECORDS; c++)
253   {
254     rd[c].expiration = GNUNET_TIME_UNIT_ZERO_ABS;
255     rd[c].record_type = TEST_RECORD_TYPE;
256     rd[c].data_size = TEST_RECORD_DATALEN;
257     rd[c].data = GNUNET_malloc(TEST_RECORD_DATALEN);
258     memset ((char *) rd[c].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
259   }
260
261   return rd;
262 }
263
264 void
265 delete_existing_db (const struct GNUNET_CONFIGURATION_Handle *cfg)
266 {
267   char *afsdir;
268
269   if (GNUNET_OK ==
270       GNUNET_CONFIGURATION_get_value_filename (cfg, "namestore-sqlite",
271                                                "FILENAME", &afsdir))
272   {
273     if (GNUNET_OK == GNUNET_DISK_file_test (afsdir))
274       if (GNUNET_OK == GNUNET_DISK_file_test (afsdir))
275         if (GNUNET_OK == GNUNET_DISK_directory_remove(afsdir))
276           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Deleted existing database `%s' \n", afsdir);
277    GNUNET_free (afsdir);
278   }
279
280 }
281
282 static void
283 run (void *cls, char *const *args, const char *cfgfile,
284      const struct GNUNET_CONFIGURATION_Handle *cfg)
285 {
286   delete_existing_db(cfg);
287   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT,endbadly, NULL);
288   size_t rd_ser_len;
289
290   /* load privat key */
291   char *hostkey_file;
292   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR,
293       "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
294   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
295   privkey = GNUNET_CRYPTO_rsa_key_create_from_file(hostkey_file);
296   GNUNET_free (hostkey_file);
297   GNUNET_assert (privkey != NULL);
298   /* get public key */
299   GNUNET_CRYPTO_rsa_key_get_public(privkey, &pubkey);
300
301   /* create record */
302   s_name = "dummy.dummy.gnunet";
303   s_rd = create_record (RECORDS);
304
305   rd_ser_len = GNUNET_NAMESTORE_records_get_size(RECORDS, s_rd);
306   char rd_ser[rd_ser_len];
307   GNUNET_NAMESTORE_records_serialize(RECORDS, s_rd, rd_ser_len, rd_ser);
308
309   /* sign */
310   s_signature = GNUNET_NAMESTORE_create_signature(privkey, s_rd[0].expiration, s_name, s_rd, RECORDS);
311
312   /* create random zone hash */
313   GNUNET_CRYPTO_short_hash (&pubkey, sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded), &s_zone);
314
315   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Name: `%s' Zone: `%s' \n", s_name, GNUNET_short_h2s (&s_zone));
316
317
318   start_arm (cfgfile);
319   GNUNET_assert (arm != NULL);
320
321   nsh = GNUNET_NAMESTORE_connect (cfg);
322   GNUNET_break (NULL != nsh);
323
324   GNUNET_break (s_rd != NULL);
325   GNUNET_break (s_name != NULL);
326
327   GNUNET_NAMESTORE_record_put (nsh, &pubkey, s_name,
328                               GNUNET_TIME_UNIT_FOREVER_ABS,
329                               RECORDS, s_rd, s_signature, put_cont, s_name);
330
331
332
333 }
334
335 static int
336 check ()
337 {
338   static char *const argv[] = { "test-namestore-api",
339     "-c",
340     "test_namestore_api.conf",
341 #if VERBOSE
342     "-L", "DEBUG",
343 #endif
344     NULL
345   };
346   static struct GNUNET_GETOPT_CommandLineOption options[] = {
347     GNUNET_GETOPT_OPTION_END
348   };
349
350   res = 1;
351   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, "test-namestore-api",
352                       "nohelp", options, &run, &res);
353   return res;
354 }
355
356 int
357 main (int argc, char *argv[])
358 {
359   int ret;
360
361   ret = check ();
362   GNUNET_free (s_signature);
363   return ret;
364 }
365
366 /* end of test_namestore_api.c */