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