- fixes
[oweals/gnunet.git] / src / namestore / test_namestore_api_lookup.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 TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
38
39 static struct GNUNET_NAMESTORE_Handle * nsh;
40
41 static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
42 static struct GNUNET_OS_Process *arm;
43
44 static struct GNUNET_CRYPTO_RsaPrivateKey * privkey;
45 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pubkey;
46 struct GNUNET_CRYPTO_RsaSignature *s_signature;
47 static GNUNET_HashCode s_zone;
48 struct GNUNET_NAMESTORE_RecordData *s_rd;
49 static char *s_name;
50
51
52
53 static int res;
54
55 static void
56 start_arm (const char *cfgname)
57 {
58   arm = GNUNET_OS_start_process (GNUNET_YES, NULL, NULL, "gnunet-service-arm",
59                                "gnunet-service-arm", "-c", cfgname,
60 #if VERBOSE_PEERS
61                                "-L", "DEBUG",
62 #else
63                                "-L", "ERROR",
64 #endif
65                                NULL);
66 }
67
68 static void
69 stop_arm ()
70 {
71   if (NULL != arm)
72   {
73     if (0 != GNUNET_OS_process_kill (arm, SIGTERM))
74       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
75     GNUNET_OS_process_wait (arm);
76     GNUNET_OS_process_close (arm);
77     arm = NULL;
78   }
79 }
80
81 /**
82  * Re-establish the connection to the service.
83  *
84  * @param cls handle to use to re-connect.
85  * @param tc scheduler context
86  */
87 static void
88 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
89 {
90   if (nsh != NULL)
91     GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
92   nsh = NULL;
93
94   if (privkey != NULL)
95     GNUNET_CRYPTO_rsa_key_free (privkey);
96   privkey = NULL;
97
98   if (NULL != arm)
99     stop_arm();
100
101   res = 1;
102 }
103
104
105 static void
106 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
107 {
108   if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
109   {
110     GNUNET_SCHEDULER_cancel (endbadly_task);
111     endbadly_task = GNUNET_SCHEDULER_NO_TASK;
112   }
113
114   int c;
115   for (c = 0; c < RECORDS; c++)
116     GNUNET_free_non_null((void *) s_rd[c].data);
117   GNUNET_free (s_rd);
118
119   if (privkey != NULL)
120     GNUNET_CRYPTO_rsa_key_free (privkey);
121   privkey = NULL;
122
123   if (nsh != NULL)
124     GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
125   nsh = NULL;
126
127   if (NULL != arm)
128     stop_arm();
129 }
130
131 void name_lookup_proc (void *cls,
132                             const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *zone_key,
133                             struct GNUNET_TIME_Absolute expire,
134                             const char *n,
135                             unsigned int rd_count,
136                             const struct GNUNET_NAMESTORE_RecordData *rd,
137                             const struct GNUNET_CRYPTO_RsaSignature *signature)
138 {
139   static int found = GNUNET_NO;
140   int failed = GNUNET_NO;
141   int c;
142
143   if (n != NULL)
144   {
145     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Checking returned results\n");
146     if (0 != memcmp (zone_key, &pubkey, sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded)))
147     {
148       GNUNET_break (0);
149       failed = GNUNET_YES;
150     }
151
152     if (0 != memcmp (signature, s_signature, sizeof (struct GNUNET_CRYPTO_RsaSignature)))
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 != 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     found = GNUNET_YES;
178     res = 0;
179   }
180   else
181   {
182     if (found != GNUNET_YES)
183     {
184       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to lookup records for name `%s'\n", s_name);
185       res = 1;
186     }
187     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Lookup done for name %s'\n", s_name);
188   }
189   GNUNET_SCHEDULER_add_now(&end, NULL);
190 }
191
192 void
193 put_cont (void *cls, int32_t success, const char *emsg)
194 {
195   char * name = cls;
196
197   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Name store added record for `%s': %s\n", name, (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
198   if (success == GNUNET_OK)
199   {
200     res = 0;
201     GNUNET_NAMESTORE_lookup_record (nsh, &s_zone, name, 0, &name_lookup_proc, NULL);
202   }
203   else
204   {
205     res = 1;
206     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to put records for name `%s'\n", name);
207     GNUNET_SCHEDULER_add_now(&end, NULL);
208   }
209 }
210
211 static struct GNUNET_NAMESTORE_RecordData *
212 create_record (int count)
213 {
214   int c;
215   struct GNUNET_NAMESTORE_RecordData * rd;
216   rd = GNUNET_malloc (count * sizeof (struct GNUNET_NAMESTORE_RecordData));
217
218   for (c = 0; c < RECORDS; c++)
219   {
220   rd[c].expiration = GNUNET_TIME_absolute_get();
221   rd[c].record_type = TEST_RECORD_TYPE;
222   rd[c].data_size = TEST_RECORD_DATALEN;
223   rd[c].data = GNUNET_malloc(TEST_RECORD_DATALEN);
224   memset ((char *) rd[c].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
225   }
226
227   return rd;
228 }
229
230 static void
231 run (void *cls, char *const *args, const char *cfgfile,
232      const struct GNUNET_CONFIGURATION_Handle *cfg)
233 {
234   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT,endbadly, NULL);
235
236   size_t rd_ser_len;
237
238   /* load privat key */
239   privkey = GNUNET_CRYPTO_rsa_key_create_from_file("hostkey");
240   GNUNET_assert (privkey != NULL);
241   /* get public key */
242   GNUNET_CRYPTO_rsa_key_get_public(privkey, &pubkey);
243
244   /* create record */
245   s_name = "dummy.dummy.gnunet";
246   s_rd = create_record (RECORDS);
247
248   rd_ser_len = GNUNET_NAMESTORE_records_get_size(RECORDS, s_rd);
249   char rd_ser[rd_ser_len];
250   GNUNET_NAMESTORE_records_serialize(RECORDS, s_rd, rd_ser_len, rd_ser);
251
252   /* sign */
253   s_signature = GNUNET_NAMESTORE_create_signature(privkey, s_name, s_rd, RECORDS);
254
255   /* create random zone hash */
256   GNUNET_CRYPTO_hash (&pubkey, sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded), &s_zone);
257
258   start_arm (cfgfile);
259   GNUNET_assert (arm != NULL);
260
261   nsh = GNUNET_NAMESTORE_connect (cfg);
262   GNUNET_break (NULL != nsh);
263
264   GNUNET_break (s_rd != NULL);
265   GNUNET_break (s_name != NULL);
266
267   GNUNET_NAMESTORE_record_put (nsh, &pubkey, s_name,
268                               GNUNET_TIME_absolute_get_forever(),
269                               RECORDS, s_rd, s_signature, put_cont, s_name);
270
271
272
273 }
274
275 static int
276 check ()
277 {
278   static char *const argv[] = { "test-namestore-api",
279     "-c",
280     "test_namestore_api.conf",
281 #if VERBOSE
282     "-L", "DEBUG",
283 #endif
284     NULL
285   };
286   static struct GNUNET_GETOPT_CommandLineOption options[] = {
287     GNUNET_GETOPT_OPTION_END
288   };
289
290   res = 1;
291   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, "test-namestore-api",
292                       "nohelp", options, &run, &res);
293   return res;
294 }
295
296 int
297 main (int argc, char *argv[])
298 {
299   int ret;
300
301   ret = check ();
302   GNUNET_free (s_signature);
303   return ret;
304 }
305
306 /* end of test_namestore_api.c */