run indent twice, it alternates between two 'canonical' forms, also run whitespace...
[oweals/gnunet.git] / src / util / test_resolver_api.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 resolver/test_resolver_api.c
22  * @brief testcase for resolver_api.c
23  */
24 #include "platform.h"
25 #include "gnunet_common.h"
26 #include "gnunet_getopt_lib.h"
27 #include "gnunet_os_lib.h"
28 #include "gnunet_program_lib.h"
29 #include "gnunet_scheduler_lib.h"
30 #include "gnunet_resolver_service.h"
31 #include "resolver.h"
32
33 #define VERBOSE GNUNET_NO
34
35 /**
36  * Using DNS root servers to check gnunet's resolver service
37  * a.root-servers.net <-> 198.41.0.4 is a fix 1:1 mapping that should not change over years
38  * For more information have a look at IANA's website http://www.root-servers.org/
39  */
40 #define ROOTSERVER_NAME "a.root-servers.net"
41 #define ROOTSERVER_IP   "198.41.0.4"
42
43 static void
44 check_hostname (void *cls, const struct sockaddr *sa, socklen_t salen)
45 {
46   int *ok = cls;
47
48   if (salen == 0)
49   {
50     (*ok) &= ~8;
51     return;
52   }
53   GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Got IP address `%s' for our host.\n"),
54               GNUNET_a2s (sa, salen));
55 }
56
57
58 static void
59 check_localhost_num (void *cls, const char *hostname)
60 {
61   int *ok = cls;
62
63   if (hostname == NULL)
64     return;
65   if (0 == strcmp (hostname, "127.0.0.1"))
66   {
67 #if DEBUG_RESOLVER
68     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received correct hostname `%s'.\n",
69                 hostname);
70 #endif
71     (*ok) &= ~4;
72   }
73   else
74   {
75 #if DEBUG_RESOLVER
76     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received invalid hostname `%s'.\n",
77                 hostname);
78 #endif
79     GNUNET_break (0);
80   }
81 }
82
83
84 static void
85 check_localhost (void *cls, const char *hostname)
86 {
87   int *ok = cls;
88
89   if (hostname == NULL)
90     return;
91   if (0 == strcmp (hostname, "localhost"))
92   {
93 #if DEBUG_RESOLVER
94     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received correct hostname `%s'.\n",
95                 hostname);
96 #endif
97     (*ok) &= ~2;
98   }
99   else
100   {
101     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
102                 "Received unexpected hostname `%s', expected `localhost' (this could be OK).\n",
103                 hostname);
104   }
105 }
106
107 static void
108 check_127 (void *cls, const struct sockaddr *sa, socklen_t salen)
109 {
110   int *ok = cls;
111   const struct sockaddr_in *sai = (const struct sockaddr_in *) sa;
112
113   if (sa == NULL)
114     return;
115   GNUNET_assert (sizeof (struct sockaddr_in) == salen);
116   if (sai->sin_addr.s_addr == htonl (INADDR_LOOPBACK))
117   {
118 #if DEBUG_RESOLVER
119     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received correct address.\n");
120 #endif
121     (*ok) &= ~1;
122   }
123   else
124   {
125 #if DEBUG_RESOLVER
126     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received incorrect address.\n");
127 #endif
128     GNUNET_break (0);
129   }
130 }
131
132 static void
133 check_local_fqdn (void *cls, const char *gnunet_fqdn)
134 {
135   int result = 0;
136
137   struct hostent *host;
138   char hostname[GNUNET_OS_get_hostname_max_length () + 1];
139
140   if (0 != gethostname (hostname, sizeof (hostname) - 1))
141   {
142     GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
143                          "gethostname");
144     return;
145   }
146 #if DEBUG_RESOLVER
147   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, _("Resolving our FQDN `%s'\n"),
148               hostname);
149 #endif
150   host = gethostbyname (hostname);
151   if (NULL == host)
152   {
153     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
154                 _("Could not resolve our FQDN : %s %u\n"), hstrerror (h_errno),
155                 h_errno);
156     return;
157   }
158
159   GNUNET_assert (0 != host);
160
161   result = strcmp (host->h_name, gnunet_fqdn);
162   if (0 != result)
163   {
164     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
165                 "Local resolved and resolver resolved fqdns are not equal\n");
166   }
167   GNUNET_assert (0 == result);
168 }
169
170
171
172 static void
173 check_rootserver_ip (void *cls, const struct sockaddr *sa, socklen_t salen)
174 {
175   int *ok = cls;
176   const struct sockaddr_in *sai = (const struct sockaddr_in *) sa;
177
178   if (sa == NULL)
179     return;
180   GNUNET_assert (sizeof (struct sockaddr_in) == salen);
181
182   if (0 == strcmp (inet_ntoa (sai->sin_addr), ROOTSERVER_IP))
183   {
184 #if DEBUG_RESOLVER
185     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
186                 "Received correct rootserver ip address.\n");
187 #endif
188     (*ok) &= ~1;
189   }
190   else
191   {
192 #if DEBUG_RESOLVER
193     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
194                 "Received incorrect rootserver ip address.\n");
195 #endif
196     GNUNET_break (0);
197   }
198 }
199
200 static void
201 check_rootserver_name (void *cls, const char *hostname)
202 {
203   int *ok = cls;
204
205   if (hostname == NULL)
206     return;
207
208   if (0 == strcmp (hostname, ROOTSERVER_NAME))
209   {
210 #if DEBUG_RESOLVER
211     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
212                 "Received correct rootserver hostname `%s'.\n", hostname);
213 #endif
214     (*ok) &= ~2;
215   }
216   else
217   {
218 #if DEBUG_RESOLVER
219     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
220                 "Received invalid rootserver hostname `%s'.\n", hostname);
221 #endif
222     GNUNET_break (0);
223   }
224 }
225
226 static void
227 run (void *cls, char *const *args, const char *cfgfile,
228      const struct GNUNET_CONFIGURATION_Handle *cfg)
229 {
230   int *ok = cls;
231   struct sockaddr_in sa;
232   struct GNUNET_TIME_Relative timeout =
233       GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30);
234   int count_ips = 0;
235   char *own_fqdn;
236
237   memset (&sa, 0, sizeof (sa));
238   sa.sin_family = AF_INET;
239 #if HAVE_SOCKADDR_IN_SIN_LEN
240   sa.sin_len = (u_char) sizeof (sa);
241 #endif
242   sa.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
243
244   /*
245    * Looking up our own fqdn
246    */
247   own_fqdn = GNUNET_RESOLVER_local_fqdn_get ();
248   check_local_fqdn (NULL, own_fqdn);
249   GNUNET_free_non_null (own_fqdn);
250
251   /*
252    * Testing non-local DNS resolution
253    * DNS rootserver to test: a.root-servers.net - 198.41.0.4
254    */
255   const char *rootserver_name = ROOTSERVER_NAME;
256   struct hostent *rootserver;
257
258   rootserver = gethostbyname (rootserver_name);
259   if (rootserver == NULL)
260   {
261     /* Error: resolving ip addresses does not work */
262 #if DEBUG_RESOLVER
263     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
264                 _("gethostbyname() could not lookup IP address: %s\n"),
265                 hstrerror (h_errno));
266 #endif
267     fprintf (stderr,
268              "System seems to be off-line, will not run all DNS tests\n");
269     *ok = 0;                    /* mark test as passing anyway */
270     return;
271   }
272
273   /* Counting returned IP addresses */
274   while (rootserver->h_addr_list[count_ips] != NULL)
275     count_ips++;
276   if (count_ips > 1)
277   {
278 #if DEBUG_RESOLVER
279     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
280                 "IP received range for root name server, but a root name server has only 1 IP\n");
281 #endif
282     GNUNET_break (0);
283   }
284
285   /* Comparing to resolved address to the address the root name server should have */
286   if (strcmp
287       (inet_ntoa (*(struct in_addr *) rootserver->h_addr_list[0]),
288        ROOTSERVER_IP) != 0)
289   {
290 #if DEBUG_RESOLVER
291     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
292                 "IP received and IP for root name server differ\n");
293 #endif
294     GNUNET_break (0);
295   }
296 #if DEBUG_RESOLVER
297   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
298               "System's own forward name resolution is working\n");
299 #endif
300
301   /* Resolve the same using GNUNET */
302   GNUNET_RESOLVER_ip_get (ROOTSERVER_NAME, AF_INET, timeout,
303                           &check_rootserver_ip, cls);
304
305   /*
306    * Success: forward lookups work as expected
307    * Next step: reverse lookups
308    */
309
310   struct in_addr rootserver_addr;
311
312   rootserver->h_name = "";
313   if (1 != inet_pton (AF_INET, ROOTSERVER_IP, &rootserver_addr))
314   {
315 #if DEBUG_RESOLVER
316     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
317                 "Could not transform root name server IP address\n");
318 #endif
319     GNUNET_break (0);
320   }
321
322   rootserver =
323       gethostbyaddr (&rootserver_addr, sizeof (rootserver_addr), AF_INET);
324   if (rootserver == NULL)
325   {
326     /* Error: resolving IP addresses does not work */
327 #if DEBUG_RESOLVER
328     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
329                 _("gethostbyaddr() could not lookup hostname: %s\n"),
330                 hstrerror (h_errno));
331 #endif
332     GNUNET_break (0);
333   }
334   else
335   {
336     if (0 != strcmp (rootserver->h_name, ROOTSERVER_NAME))
337     {
338 #if DEBUG_RESOLVER
339       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
340                   "Received hostname and hostname for root name server differ\n");
341 #endif
342       GNUNET_break (0);
343     }
344   }
345
346 #if DEBUG_RESOLVER
347   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
348               "System's own reverse name resolution is working\n");
349 #endif
350
351   /* Resolve the same using GNUNET */
352   memset (&sa, 0, sizeof (sa));
353   sa.sin_family = AF_INET;
354 #if HAVE_SOCKADDR_IN_SIN_LEN
355   sa.sin_len = (u_char) sizeof (sa);
356 #endif
357 #ifndef MINGW
358   inet_aton (ROOTSERVER_IP, &sa.sin_addr);
359 #else
360   sa.sin_addr.S_un.S_addr = inet_addr (ROOTSERVER_IP);
361 #endif
362   GNUNET_RESOLVER_hostname_get ((const struct sockaddr *) &sa,
363                                 sizeof (struct sockaddr), GNUNET_YES, timeout,
364                                 &check_rootserver_name, cls);
365
366   memset (&sa, 0, sizeof (sa));
367   sa.sin_family = AF_INET;
368 #if HAVE_SOCKADDR_IN_SIN_LEN
369   sa.sin_len = (u_char) sizeof (sa);
370 #endif
371   sa.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
372
373   GNUNET_RESOLVER_ip_get ("localhost", AF_INET, timeout, &check_127, cls);
374   GNUNET_RESOLVER_hostname_get ((const struct sockaddr *) &sa,
375                                 sizeof (struct sockaddr), GNUNET_YES, timeout,
376                                 &check_localhost, cls);
377
378   GNUNET_RESOLVER_hostname_get ((const struct sockaddr *) &sa,
379                                 sizeof (struct sockaddr), GNUNET_NO, timeout,
380                                 &check_localhost_num, cls);
381   GNUNET_RESOLVER_hostname_resolve (AF_UNSPEC, timeout, &check_hostname, cls);
382
383 }
384
385 static int
386 check ()
387 {
388   int ok = 1 + 2 + 4 + 8;
389   char *fn;
390   char *pfx;
391   struct GNUNET_OS_Process *proc;
392
393   char *const argv[] =
394       { "test-resolver-api", "-c", "test_resolver_api_data.conf",
395 #if VERBOSE
396     "-L", "DEBUG",
397 #endif
398     NULL
399   };
400   struct GNUNET_GETOPT_CommandLineOption options[] =
401       { GNUNET_GETOPT_OPTION_END };
402   pfx = GNUNET_OS_installation_get_path (GNUNET_OS_IPK_BINDIR);
403   GNUNET_asprintf (&fn, "%s%cgnunet-service-resolver", pfx, DIR_SEPARATOR);
404   GNUNET_free (pfx);
405   proc = GNUNET_OS_start_process (NULL, NULL, fn, "gnunet-service-resolver",
406 #if VERBOSE
407                                   "-L", "DEBUG",
408 #endif
409                                   "-c", "test_resolver_api_data.conf", NULL);
410   GNUNET_assert (NULL != proc);
411   GNUNET_free (fn);
412   GNUNET_assert (GNUNET_OK ==
413                  GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
414                                      argv, "test-resolver-api", "nohelp",
415                                      options, &run, &ok));
416   if (0 != GNUNET_OS_process_kill (proc, SIGTERM))
417   {
418     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
419     ok = 1;
420   }
421   GNUNET_OS_process_wait (proc);
422   GNUNET_OS_process_close (proc);
423   proc = NULL;
424   if (ok != 0)
425     fprintf (stderr, "Missed some resolutions: %u\n", ok);
426   return ok;
427 }
428
429 int
430 main (int argc, char *argv[])
431 {
432   int ret;
433
434   GNUNET_log_setup ("test-resolver-api",
435 #if VERBOSE
436                     "DEBUG",
437 #else
438                     "WARNING",
439 #endif
440                     NULL);
441   ret = check ();
442
443   return ret;
444 }
445
446 /* end of test_resolver_api.c */