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