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