Returns now GNUNET_SYSERR
[oweals/gnunet.git] / src / util / gnunet-service-resolver.c
1 /*
2      This file is part of GNUnet.
3      (C) 2007, 2008, 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 2, 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 /**
22  * @file util/gnunet-service-resolver.c
23  * @brief code to do DNS resolution
24  * @author Christian Grothoff
25  */
26
27 #include <stdlib.h>
28 #include "platform.h"
29 #include "gnunet_disk_lib.h"
30 #include "gnunet_getopt_lib.h"
31 #include "gnunet_protocols.h"
32 #include "gnunet_service_lib.h"
33 #include "gnunet_statistics_service.h"
34 #include "gnunet_strings_lib.h"
35 #include "gnunet_time_lib.h"
36 #include "resolver.h"
37
38 /**
39  * A cached DNS lookup result.
40  */
41 struct IPCache
42 {
43   /**
44    * This is a linked list.
45    */
46   struct IPCache *next;
47
48   /**
49    * Hostname in human-readable form.
50    */
51   char *addr;
52
53   /**
54    * Hostname in binary format.
55    */
56   struct sockaddr *sa;
57
58   /**
59    * Last time this entry was updated.
60    */
61   struct GNUNET_TIME_Absolute last_refresh;
62
63   /**
64    * Last time this entry was requested.
65    */
66   struct GNUNET_TIME_Absolute last_request;
67
68   /**
69    * Number of bytes in sa.
70    */
71   socklen_t salen;
72 };
73
74
75 /**
76  * Start of the linked list of cached DNS lookup results.
77  */
78 static struct IPCache *head;
79
80
81 #if HAVE_GETNAMEINFO
82 /**
83  * Resolve the given request using getnameinfo
84  *
85  * @param cache the request to resolve (and where to store the result)
86  */
87 static void
88 getnameinfo_resolve (struct IPCache *cache)
89 {
90   char hostname[256];
91
92   if (0 == getnameinfo (cache->sa,
93                         cache->salen,
94                         hostname, sizeof (hostname), NULL, 0, 0))
95     cache->addr = GNUNET_strdup (hostname);
96 }
97 #endif
98
99
100 #if HAVE_GETHOSTBYADDR
101 /**
102  * Resolve the given request using gethostbyaddr
103  *
104  * @param cache the request to resolve (and where to store the result)
105  */
106 static void
107 gethostbyaddr_resolve (struct IPCache *cache)
108 {
109   struct hostent *ent;
110
111   switch (cache->sa->sa_family)
112     {
113     case AF_INET:
114       ent = gethostbyaddr (&((struct sockaddr_in *) cache->sa)->sin_addr,
115                            sizeof (struct in_addr), AF_INET);
116       break;
117     case AF_INET6:
118       ent = gethostbyaddr (&((struct sockaddr_in6 *) cache->sa)->sin6_addr,
119                            sizeof (struct in6_addr), AF_INET6);
120       break;
121     default:
122       ent = NULL;
123     }
124   if (ent != NULL)
125     cache->addr = GNUNET_strdup (ent->h_name);
126 }
127 #endif
128
129 /**
130  * Resolve the given request using the available methods.
131  *
132  * @param cache the request to resolve (and where to store the result)
133  */
134 static void
135 cache_resolve (struct IPCache *cache)
136 {
137 #if HAVE_GETNAMEINFO
138   if (cache->addr == NULL)
139     getnameinfo_resolve (cache);
140 #endif
141 #if HAVE_GETHOSTBYADDR
142   if (cache->addr == NULL)
143     gethostbyaddr_resolve (cache);
144 #endif
145 }
146
147
148
149 /**
150  * Get an IP address as a string (works for both IPv4 and IPv6).  Note
151  * that the resolution happens asynchronously and that the first call
152  * may not immediately result in the FQN (but instead in a
153  * human-readable IP address).
154  *
155  * @param client handle to the client making the request (for sending the reply)
156  * @param sa should be of type "struct sockaddr*"
157  * @param salen number of bytes in sa
158  */
159 static void
160 get_ip_as_string (struct GNUNET_SERVER_Client *client,
161                   const struct sockaddr *sa, socklen_t salen)
162 {
163   struct IPCache *cache;
164   struct IPCache *prev;
165   struct GNUNET_TIME_Absolute now;
166   struct GNUNET_SERVER_TransmitContext *tc;
167
168   if (salen < sizeof (struct sockaddr))
169     {
170       GNUNET_break (0);
171       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
172       return;
173     }
174   now = GNUNET_TIME_absolute_get ();
175   cache = head;
176   prev = NULL;
177   while ((cache != NULL) &&
178          ((cache->salen != salen) || (0 != memcmp (cache->sa, sa, salen))))
179     {
180       if (GNUNET_TIME_absolute_get_duration (cache->last_request).rel_value <
181           60 * 60 * 1000)
182         {
183           if (prev != NULL)
184             {
185               prev->next = cache->next;
186               GNUNET_free_non_null (cache->addr);
187               GNUNET_free (cache->sa);
188               GNUNET_free (cache);
189               cache = prev->next;
190             }
191           else
192             {
193               head = cache->next;
194               GNUNET_free_non_null (cache->addr);
195               GNUNET_free (cache->sa);
196               GNUNET_free (cache);
197               cache = head;
198             }
199           continue;
200         }
201       prev = cache;
202       cache = cache->next;
203     }
204   if (cache != NULL)
205     {
206       cache->last_request = now;
207       if (GNUNET_TIME_absolute_get_duration (cache->last_request).rel_value <
208           60 * 60 * 1000)
209         {
210           GNUNET_free_non_null (cache->addr);
211           cache->addr = NULL;
212           cache->salen = 0;
213           cache_resolve (cache);
214         }
215     }
216   else
217     {
218       cache = GNUNET_malloc (sizeof (struct IPCache));
219       cache->next = head;
220       cache->salen = salen;
221       cache->sa = GNUNET_malloc (salen);
222       memcpy (cache->sa, sa, salen);
223       cache->last_request = GNUNET_TIME_absolute_get ();
224       cache->last_refresh = GNUNET_TIME_absolute_get ();
225       cache->addr = NULL;
226       cache_resolve (cache);
227       head = cache;
228     }
229   tc = GNUNET_SERVER_transmit_context_create (client);
230   if (cache->addr != NULL)
231     GNUNET_SERVER_transmit_context_append_data (tc,
232                                                 cache->addr,
233                                                 strlen (cache->addr) + 1,
234                                                 GNUNET_MESSAGE_TYPE_RESOLVER_RESPONSE);
235   GNUNET_SERVER_transmit_context_append_data (tc, NULL, 0,
236                                               GNUNET_MESSAGE_TYPE_RESOLVER_RESPONSE);
237   GNUNET_SERVER_transmit_context_run (tc, GNUNET_TIME_UNIT_FOREVER_REL);
238 }
239
240
241 #if HAVE_GETADDRINFO
242 static int
243 getaddrinfo_resolve (struct GNUNET_SERVER_TransmitContext *tc,
244                      const char *hostname, int domain)
245 {
246   int s;
247   struct addrinfo hints;
248   struct addrinfo *result;
249   struct addrinfo *pos;
250
251   memset (&hints, 0, sizeof (struct addrinfo));
252 // FIXME in PlibC
253 #ifndef MINGW
254   hints.ai_family = domain;
255 #else
256   hints.ai_family = AF_INET;
257 #endif
258   hints.ai_socktype = SOCK_STREAM;      /* go for TCP */
259
260   if (0 != (s = getaddrinfo (hostname, NULL, &hints, &result)))
261     {
262       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
263                   _("Could not resolve `%s' (%s): %s\n"), hostname,
264                   (domain ==
265                    AF_INET) ? "IPv4" : ((domain ==
266                                          AF_INET6) ? "IPv6" : "any"),
267                   gai_strerror (s));
268       if ((s == EAI_BADFLAGS) || (s == EAI_MEMORY) ||
269 #ifndef MINGW
270           (s == EAI_SYSTEM)
271 #else
272           // FIXME NILS
273           1
274 #endif
275         )
276         return GNUNET_NO;       /* other function may still succeed */
277       return GNUNET_SYSERR;
278     }
279   if (result == NULL)
280     return GNUNET_SYSERR;
281   pos = result;
282   while (pos != NULL)
283     {
284       GNUNET_SERVER_transmit_context_append_data (tc,
285                                                   pos->ai_addr,
286                                                   pos->ai_addrlen,
287                                                   GNUNET_MESSAGE_TYPE_RESOLVER_RESPONSE);
288       pos = pos->ai_next;
289     }
290   freeaddrinfo (result);
291   return GNUNET_OK;
292 }
293 #endif
294
295 #if HAVE_GETHOSTBYNAME2
296 static int
297 gethostbyname2_resolve (struct GNUNET_SERVER_TransmitContext *tc,
298                         const char *hostname, int domain)
299 {
300   struct hostent *hp;
301   struct sockaddr_in a4;
302   struct sockaddr_in6 a6;
303   int ret1;
304   int ret2;
305
306   if (domain == AF_UNSPEC)
307     {
308       ret1 = gethostbyname2_resolve (tc, hostname, AF_INET);
309       ret2 = gethostbyname2_resolve (tc, hostname, AF_INET6);
310       if ((ret1 == GNUNET_OK) || (ret2 == GNUNET_OK))
311         return GNUNET_OK;
312       if ((ret1 == GNUNET_SYSERR) || (ret2 == GNUNET_SYSERR))
313         return GNUNET_SYSERR;
314       return GNUNET_NO;
315     }
316   hp = gethostbyname2 (hostname, domain);
317   if (hp == NULL)
318     {
319       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
320                   _("Could not find IP of host `%s': %s\n"),
321                   hostname, hstrerror (h_errno));
322       return GNUNET_SYSERR;
323     }
324   GNUNET_assert (hp->h_addrtype == domain);
325   if (domain == AF_INET)
326     {
327       GNUNET_assert (hp->h_length == sizeof (struct in_addr));
328       memset (&a4, 0, sizeof (a4));
329       a4.sin_family = AF_INET;
330       memcpy (&a4.sin_addr, hp->h_addr_list[0], hp->h_length);
331       GNUNET_SERVER_transmit_context_append_data (tc,
332                                                   &a4,
333                                                   sizeof (a4),
334                                                   GNUNET_MESSAGE_TYPE_RESOLVER_RESPONSE);
335     }
336   else
337     {
338       GNUNET_assert (hp->h_length == sizeof (struct in6_addr));
339       memset (&a6, 0, sizeof (a6));
340       a6.sin6_family = AF_INET6;
341       memcpy (&a6.sin6_addr, hp->h_addr_list[0], hp->h_length);
342       GNUNET_SERVER_transmit_context_append_data (tc,
343                                                   &a6,
344                                                   sizeof (a6),
345                                                   GNUNET_MESSAGE_TYPE_RESOLVER_RESPONSE);
346     }
347   return GNUNET_OK;
348 }
349 #endif
350
351 #if HAVE_GETHOSTBYNAME
352 static int
353 gethostbyname_resolve (struct GNUNET_SERVER_TransmitContext *tc,
354                        const char *hostname)
355 {
356   struct hostent *hp;
357   struct sockaddr_in addr;
358
359   hp = GETHOSTBYNAME (hostname);
360   if (hp == NULL)
361     {
362       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
363                   _("Could not find IP of host `%s': %s\n"),
364                   hostname, hstrerror (h_errno));
365       return GNUNET_SYSERR;
366     }
367   if (hp->h_addrtype != AF_INET)
368     {
369       GNUNET_break (0);
370       return GNUNET_SYSERR;
371     }
372   GNUNET_assert (hp->h_length == sizeof (struct in_addr));
373   memset (&addr, 0, sizeof (addr));
374   addr.sin_family = AF_INET;
375   memcpy (&addr.sin_addr, hp->h_addr_list[0], hp->h_length);
376   GNUNET_SERVER_transmit_context_append_data (tc,
377                                               &addr,
378                                               sizeof (addr),
379                                               GNUNET_MESSAGE_TYPE_RESOLVER_RESPONSE);
380   return GNUNET_OK;
381 }
382 #endif
383
384
385 /**
386  * Convert a string to an IP address.
387  *
388  * @param client where to send the IP address
389  * @param hostname the hostname to resolve
390  * @param domain AF_INET or AF_INET6; use AF_UNSPEC for "any"
391  */
392 static void
393 get_ip_from_hostname (struct GNUNET_SERVER_Client *client,
394                       const char *hostname, int domain)
395 {
396   int ret;
397   struct GNUNET_SERVER_TransmitContext *tc;
398
399   tc = GNUNET_SERVER_transmit_context_create (client);
400   ret = GNUNET_NO;
401 #if HAVE_GETADDRINFO
402   if (ret == GNUNET_NO)
403     ret = getaddrinfo_resolve (tc, hostname, domain);
404 #endif
405 #if HAVE_GETHOSTBYNAME2
406   if (ret == GNUNET_NO)
407     ret = gethostbyname2_resolve (tc, hostname, domain);
408 #endif
409 #if HAVE_GETHOSTBYNAME
410   if ((ret == GNUNET_NO) && ((domain == AF_UNSPEC) || (domain == PF_INET)))
411     gethostbyname_resolve (tc, hostname);
412 #endif
413   GNUNET_SERVER_transmit_context_append_data (tc, NULL, 0,
414                                               GNUNET_MESSAGE_TYPE_RESOLVER_RESPONSE);
415   GNUNET_SERVER_transmit_context_run (tc, GNUNET_TIME_UNIT_FOREVER_REL);
416 }
417
418
419 /**
420  * Handle GET-message.
421  *
422  * @param cls closure
423  * @param client identification of the client
424  * @param message the actual message
425  */
426 static void
427 handle_get (void *cls,
428             struct GNUNET_SERVER_Client *client,
429             const struct GNUNET_MessageHeader *message)
430 {
431   uint16_t msize;
432   const struct GNUNET_RESOLVER_GetMessage *msg;
433   const char *hostname;
434   uint16_t size;
435   int direction;
436   int domain;
437
438   msize = ntohs (message->size);
439   if (msize < sizeof (struct GNUNET_RESOLVER_GetMessage))
440     {
441       GNUNET_break (0);
442       GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
443       return;
444     }
445   msg = (const struct GNUNET_RESOLVER_GetMessage *) message;
446   size = msize - sizeof (struct GNUNET_RESOLVER_GetMessage);
447   direction = ntohl (msg->direction);
448   domain = ntohl (msg->domain);
449   if (direction == GNUNET_NO)
450     {
451       /* IP from hostname */
452       hostname = (const char *) &msg[1];
453       if (hostname[size - 1] != '\0')
454         {
455           GNUNET_break (0);
456           GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
457           return;
458         }
459 #if DEBUG_RESOLVER
460       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
461                   _("Resolver asked to look up `%s'.\n"), hostname);
462 #endif
463       get_ip_from_hostname (client, hostname, domain);
464     }
465   else
466     {
467 #if DEBUG_RESOLVER
468       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
469                   _("Resolver asked to look up IP address.\n"));
470 #endif
471       get_ip_as_string (client, (const struct sockaddr *) &msg[1], size);
472     }
473 }
474
475
476 /**
477  * Process resolver requests.
478  *
479  * @param cls closure
480  * @param server the initialized server
481  * @param cfg configuration to use
482  */
483 static void
484 run (void *cls,
485      struct GNUNET_SERVER_Handle *server,
486      const struct GNUNET_CONFIGURATION_Handle *cfg)
487 {
488   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
489     {&handle_get, NULL, GNUNET_MESSAGE_TYPE_RESOLVER_REQUEST, 0},
490     {NULL, NULL, 0, 0}
491   };
492   GNUNET_SERVER_add_handlers (server, handlers);
493 }
494
495
496 /**
497  * The main function for the resolver service.
498  *
499  * @param argc number of arguments from the command line
500  * @param argv command line arguments
501  * @return 0 ok, 1 on error
502  */
503 int
504 main (int argc, char *const *argv)
505 {
506   int ret;
507   struct IPCache *pos;
508
509   ret = (GNUNET_OK ==
510          GNUNET_SERVICE_run (argc,
511                              argv,
512                              "resolver", GNUNET_SERVICE_OPTION_NONE,
513                              &run, NULL)) ? 0 : 1;
514
515   while (head != NULL)
516     {
517       pos = head->next;
518       GNUNET_free_non_null (head->addr);
519       GNUNET_free (head->sa);
520       GNUNET_free (head);
521       head = pos;
522     }
523   return ret;
524 }
525
526 /* end of gnunet-service-resolver.c */