0ab1c1ecb2a3e4757baae3e901462364d90a3da6
[oweals/gnunet.git] / src / gns / test_gns_dht_delegated_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 gns/test_gns_dht_delegated_lookup.c
22  * @brief test for record lookup via DHT
23  *
24  */
25 #include "platform.h"
26 #include "gnunet_testing_lib.h"
27 #include "gnunet_core_service.h"
28 #include "block_gns.h"
29 #include "gnunet_signatures.h"
30 #include "gnunet_namestore_service.h"
31 #include "../namestore/namestore.h"
32 #include "gnunet_dnsparser_lib.h"
33 #include "gnunet_dht_service.h"
34 #include "gnunet_gns_service.h"
35
36 /* DEFINES */
37 #define VERBOSE GNUNET_YES
38
39 /* Timeout for entire testcase */
40 #define TIMEOUT GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 20)
41
42 /* If number of peers not in config file, use this number */
43 #define DEFAULT_NUM_PEERS 2
44
45 /* test records to resolve */
46 #define TEST_DOMAIN "www.bob.gnunet"
47 #define TEST_IP "127.0.0.1"
48 #define TEST_RECORD_NAME "www"
49
50 #define TEST_AUTHORITY_NAME "bob"
51
52 #define DHT_OPERATION_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
53
54 #define KEYFILE_BOB "../namestore/zonefiles/HGU0A0VCU334DN7F2I9UIUMVQMM7JMSD142LIMNUGTTV9R0CF4EG.zkey"
55
56 /* Globals */
57
58 /**
59  * Directory to store temp data in, defined in config file
60  */
61 static char *test_directory;
62
63 static struct GNUNET_TESTING_PeerGroup *pg;
64
65 /* Task handle to use to schedule test failure */
66 GNUNET_SCHEDULER_TaskIdentifier die_task;
67
68 /* Global return value (0 for success, anything else for failure) */
69 static int ok;
70
71 static struct GNUNET_NAMESTORE_Handle *namestore_handle;
72
73 static struct GNUNET_GNS_Handle *gns_handle;
74
75 static struct GNUNET_DHT_Handle *dht_handle;
76
77 const struct GNUNET_CONFIGURATION_Handle *cfg;
78
79 struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded alice_pkey;
80 struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded bob_pkey;
81 struct GNUNET_CRYPTO_RsaPrivateKey *alice_key;
82 struct GNUNET_CRYPTO_RsaPrivateKey *bob_key;
83
84 /**
85  * Check whether peers successfully shut down.
86  */
87 void
88 shutdown_callback (void *cls, const char *emsg)
89 {
90   if (emsg != NULL)
91   {
92     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Error on shutdown! ret=%d\n", ok);
93     if (ok == 0)
94       ok = 2;
95   }
96
97   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "done(ret=%d)!\n", ok);
98 }
99
100
101 static void
102 on_lookup_result(void *cls, uint32_t rd_count,
103                  const struct GNUNET_NAMESTORE_RecordData *rd)
104 {
105   struct in_addr a;
106   int i;
107   char* addr;
108   
109   if (rd_count == 0)
110   {
111     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
112                 "Lookup failed, rp_filtering?\n");
113     ok = 2;
114   }
115   else
116   {
117     ok = 1;
118     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "name: %s\n", (char*)cls);
119     for (i=0; i<rd_count; i++)
120     {
121       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "type: %d\n", rd[i].record_type);
122       if (rd[i].record_type == GNUNET_GNS_RECORD_TYPE_A)
123       {
124         memcpy(&a, rd[i].data, sizeof(a));
125         addr = inet_ntoa(a);
126         GNUNET_log (GNUNET_ERROR_TYPE_INFO, "address: %s\n", addr);
127         if (0 == strcmp(addr, TEST_IP))
128         {
129           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
130                     "%s correctly resolved to %s!\n", TEST_DOMAIN, addr);
131           ok = 0;
132         }
133       }
134       else
135       {
136         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No resolution!\n");
137       }
138     }
139   }
140   GNUNET_GNS_disconnect(gns_handle);
141   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Shutting down peer1!\n");
142   //GNUNET_TESTING_daemon_stop (d1, TIMEOUT, &shutdown_callback, NULL,
143   //                            GNUNET_YES, GNUNET_NO);
144   GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
145 }
146
147
148 /**
149  * Function scheduled to be run on the successful start of services
150  * tries to look up the dns record for TEST_DOMAIN
151  */
152 static void
153 commence_testing (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
154 {
155   GNUNET_NAMESTORE_disconnect(namestore_handle, GNUNET_YES);
156
157   gns_handle = GNUNET_GNS_connect(cfg);
158
159   if (NULL == gns_handle)
160   {
161     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
162                 "Failed to connect to GNS!\n");
163   }
164
165   GNUNET_GNS_lookup(gns_handle, TEST_DOMAIN, GNUNET_GNS_RECORD_TYPE_A,
166                     GNUNET_NO,
167                     &on_lookup_result, TEST_DOMAIN);
168 }
169
170 /**
171  * Continuation for the GNUNET_DHT_get_stop call, so that we don't shut
172  * down the peers without freeing memory associated with GET request.
173  */
174 static void
175 end_badly_cont (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
176 {
177
178   if (pg != NULL) {
179     GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
180   }
181   GNUNET_SCHEDULER_cancel (die_task);
182 }
183
184 /**
185  * Check if the get_handle is being used, if so stop the request.  Either
186  * way, schedule the end_badly_cont function which actually shuts down the
187  * test.
188  */
189 static void
190 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
191 {
192   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failing test with error: `%s'!\n",
193               (char *) cls);
194   GNUNET_SCHEDULER_add_now (&end_badly_cont, NULL);
195   ok = 1;
196 }
197
198
199 static void
200 put_dht(void *cls, int32_t success, const char *emsg)
201 {
202   struct GNSNameRecordBlock *nrb;
203   struct GNUNET_CRYPTO_ShortHashCode name_hash;
204   struct GNUNET_CRYPTO_ShortHashCode zone_hash;
205   GNUNET_HashCode xor_hash;
206   GNUNET_HashCode name_hash_double;
207   GNUNET_HashCode zone_hash_double;
208   uint32_t rd_payload_length;
209   char* nrb_data = NULL;
210   struct GNUNET_CRYPTO_RsaSignature *sig;
211   struct GNUNET_NAMESTORE_RecordData rd;
212   char* ip = TEST_IP;
213   struct in_addr *web = GNUNET_malloc(sizeof(struct in_addr));
214   
215   rd.expiration = GNUNET_TIME_UNIT_FOREVER_ABS;
216   GNUNET_assert(1 == inet_pton (AF_INET, ip, web));
217   rd.data_size = sizeof(struct in_addr);
218   rd.data = web;
219   rd.record_type = GNUNET_DNSPARSER_TYPE_A;
220
221   sig = GNUNET_NAMESTORE_create_signature(bob_key, GNUNET_TIME_UNIT_FOREVER_ABS, TEST_RECORD_NAME,
222                                           &rd, 1);
223   rd_payload_length = GNUNET_NAMESTORE_records_get_size (1, &rd);
224   nrb = GNUNET_malloc(rd_payload_length + strlen(TEST_RECORD_NAME) + 1
225                       + sizeof(struct GNSNameRecordBlock));
226   nrb->signature = *sig;
227   nrb->public_key = bob_pkey;
228   nrb->rd_count = htonl(1);
229   memset(&nrb[1], 0, strlen(TEST_RECORD_NAME) + 1);
230   strcpy((char*)&nrb[1], TEST_RECORD_NAME);
231   nrb_data = (char*)&nrb[1];
232   nrb_data += strlen(TEST_RECORD_NAME) + 1;
233
234   if (-1 == GNUNET_NAMESTORE_records_serialize (1,
235                                                 &rd,
236                                                 rd_payload_length,
237                                                 nrb_data))
238   {
239     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Record serialization failed!\n");
240     ok = 3;
241     GNUNET_free (nrb);
242     return;
243   }
244   GNUNET_CRYPTO_short_hash(TEST_RECORD_NAME, strlen(TEST_RECORD_NAME), &name_hash);
245   GNUNET_CRYPTO_short_hash(&bob_pkey,
246                      sizeof(struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded),
247                      &zone_hash);
248   GNUNET_CRYPTO_short_hash_double(&zone_hash, &zone_hash_double);
249   GNUNET_CRYPTO_short_hash_double(&name_hash, &name_hash_double);
250   GNUNET_CRYPTO_hash_xor(&zone_hash_double, &name_hash_double, &xor_hash);
251
252   rd_payload_length += sizeof(struct GNSNameRecordBlock) +
253     strlen(TEST_RECORD_NAME) + 1;
254   GNUNET_DHT_put (dht_handle, &xor_hash,
255                   0,
256                   GNUNET_DHT_RO_NONE,
257                   GNUNET_BLOCK_TYPE_GNS_NAMERECORD,
258                   rd_payload_length,
259                   (char*)nrb,
260                   rd.expiration,
261                   DHT_OPERATION_TIMEOUT,
262                   NULL,
263                   NULL);
264   GNUNET_free (nrb);
265   GNUNET_SCHEDULER_add_delayed(TIMEOUT, &commence_testing, NULL);
266 }
267
268 static void
269 do_lookup(void *cls, const struct GNUNET_PeerIdentity *id,
270           const struct GNUNET_CONFIGURATION_Handle *_cfg,
271           struct GNUNET_TESTING_Daemon *d, const char *emsg)
272 {
273   
274   
275   char* alice_keyfile;
276   struct GNUNET_CRYPTO_ShortHashCode bob_hash;
277   
278   cfg = _cfg;
279
280   GNUNET_SCHEDULER_cancel (die_task);
281
282   /* put records into namestore */
283   namestore_handle = GNUNET_NAMESTORE_connect(cfg);
284   if (NULL == namestore_handle)
285   {
286     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to namestore\n");
287     ok = -1;
288     return;
289   }
290   
291   /* dht */
292   dht_handle = GNUNET_DHT_connect(cfg, 1);
293   if (NULL == dht_handle)
294   {
295     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to dht\n");
296     ok = -1;
297     return;
298   }
299
300   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
301                                                           "ZONEKEY",
302                                                           &alice_keyfile))
303   {
304     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get key from cfg\n");
305     ok = -1;
306     return;
307   }
308
309   alice_key = GNUNET_CRYPTO_rsa_key_create_from_file (alice_keyfile);
310   bob_key = GNUNET_CRYPTO_rsa_key_create_from_file (KEYFILE_BOB);
311   
312   GNUNET_free(alice_keyfile);
313
314   GNUNET_CRYPTO_rsa_key_get_public (alice_key, &alice_pkey);
315   GNUNET_CRYPTO_rsa_key_get_public (bob_key, &bob_pkey);
316   GNUNET_CRYPTO_short_hash(&bob_pkey, sizeof(bob_pkey), &bob_hash);
317
318   struct GNUNET_NAMESTORE_RecordData rd;
319   rd.expiration = GNUNET_TIME_UNIT_FOREVER_ABS;
320   rd.data_size = sizeof(struct GNUNET_CRYPTO_ShortHashCode);
321   rd.data = &bob_hash;
322   rd.record_type = GNUNET_GNS_RECORD_PKEY;
323
324   GNUNET_NAMESTORE_record_create (namestore_handle,
325                                   alice_key,
326                                   TEST_AUTHORITY_NAME,
327                                   &rd,
328                                   &put_dht,
329                                   NULL);
330
331   
332
333 }
334
335 static void
336 run (void *cls, char *const *args, const char *cfgfile,
337      const struct GNUNET_CONFIGURATION_Handle *c)
338 {
339   cfg = c;
340    /* Get path from configuration file */
341   if (GNUNET_YES !=
342       GNUNET_CONFIGURATION_get_value_string (cfg, "paths", "servicehome",
343                                              &test_directory))
344   {
345     ok = 404;
346     return;
347   }
348
349     
350   /* Set up a task to end testing if peer start fails */
351   die_task =
352       GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly,
353                                     "didn't start all daemons in reasonable amount of time!!!");
354   
355   /* Start alice */
356   //d1 = GNUNET_TESTING_daemon_start(cfg, TIMEOUT, GNUNET_NO, NULL, NULL, 0,
357   //                                 NULL, NULL, NULL, &do_lookup, NULL);
358   pg = GNUNET_TESTING_daemons_start(cfg, 1, 1, 1, TIMEOUT,
359                                NULL, NULL, &do_lookup, NULL, NULL, NULL, NULL);
360 }
361
362 static int
363 check ()
364 {
365   int ret;
366
367   /* Arguments for GNUNET_PROGRAM_run */
368   char *const argv[] = { "test-gns-dht-delegated-lookup", /* Name to give running binary */
369     "-c",
370     "test_gns_simple_lookup.conf",       /* Config file to use */
371 #if VERBOSE
372     "-L", "DEBUG",
373 #endif
374     NULL
375   };
376   struct GNUNET_GETOPT_CommandLineOption options[] = {
377     GNUNET_GETOPT_OPTION_END
378   };
379   /* Run the run function as a new program */
380   ret =
381       GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
382                           "test-gns-dht-delegated-lookup", "nohelp", options, &run,
383                           &ok);
384   if (ret != GNUNET_OK)
385   {
386     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
387                 "`test-gns-dht-delegated-lookup': Failed with error code %d\n", ret);
388   }
389   return ok;
390 }
391
392 int
393 main (int argc, char *argv[])
394 {
395   int ret;
396
397   GNUNET_log_setup ("test-gns-simple-lookup",
398 #if VERBOSE
399                     "DEBUG",
400 #else
401                     "WARNING",
402 #endif
403                     NULL);
404   ret = check ();
405   /**
406    * Need to remove base directory, subdirectories taken care
407    * of by the testing framework.
408    */
409   return ret;
410 }
411
412 /* end of test_gns_twopeer.c */