removed usage of 's6_addr', fixing compilation issue triggered with no
[platform/upstream/c-ares.git] / ares_gethostbyaddr.c
1 /* $Id$ */
2
3 /* Copyright 1998 by the Massachusetts Institute of Technology.
4  *
5  * Permission to use, copy, modify, and distribute this
6  * software and its documentation for any purpose and without
7  * fee is hereby granted, provided that the above copyright
8  * notice appear in all copies and that both that copyright
9  * notice and this permission notice appear in supporting
10  * documentation, and that the name of M.I.T. not be used in
11  * advertising or publicity pertaining to distribution of the
12  * software without specific, written prior permission.
13  * M.I.T. makes no representations about the suitability of
14  * this software for any purpose.  It is provided "as is"
15  * without express or implied warranty.
16  */
17 #include "ares_setup.h"
18
19 #ifdef HAVE_SYS_SOCKET_H
20 #  include <sys/socket.h>
21 #endif
22 #ifdef HAVE_NETINET_IN_H
23 #  include <netinet/in.h>
24 #endif
25 #ifdef HAVE_NETDB_H
26 #  include <netdb.h>
27 #endif
28 #ifdef HAVE_ARPA_INET_H
29 #  include <arpa/inet.h>
30 #endif
31 #ifdef HAVE_ARPA_NAMESER_H
32 #  include <arpa/nameser.h>
33 #else
34 #  include "nameser.h"
35 #endif
36 #ifdef HAVE_ARPA_NAMESER_COMPAT_H
37 #  include <arpa/nameser_compat.h>
38 #endif
39
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include <string.h>
43
44 #include "ares.h"
45 #include "inet_net_pton.h"
46 #include "ares_private.h"
47
48 #ifdef WATT32
49 #undef WIN32
50 #endif
51
52 struct addr_query {
53   /* Arguments passed to ares_gethostbyaddr() */
54   ares_channel channel;
55   struct ares_addr addr;
56   ares_host_callback callback;
57   void *arg;
58
59   const char *remaining_lookups;
60   int timeouts;
61 };
62
63 static void next_lookup(struct addr_query *aquery);
64 static void addr_callback(void *arg, int status, int timeouts,
65                           unsigned char *abuf, int alen);
66 static void end_aquery(struct addr_query *aquery, int status,
67                        struct hostent *host);
68 static int file_lookup(struct ares_addr *addr, struct hostent **host);
69 static void ptr_rr_name(char *name, const struct ares_addr *addr);
70
71 void ares_gethostbyaddr(ares_channel channel, const void *addr, int addrlen,
72                         int family, ares_host_callback callback, void *arg)
73 {
74   struct addr_query *aquery;
75
76   if (family != AF_INET && family != AF_INET6)
77     {
78       callback(arg, ARES_ENOTIMP, 0, NULL);
79       return;
80     }
81
82   if ((family == AF_INET && addrlen != sizeof(aquery->addr.addrV4)) ||
83       (family == AF_INET6 && addrlen != sizeof(aquery->addr.addrV6)))
84     {
85       callback(arg, ARES_ENOTIMP, 0, NULL);
86       return;
87     }
88
89   aquery = malloc(sizeof(struct addr_query));
90   if (!aquery)
91     {
92       callback(arg, ARES_ENOMEM, 0, NULL);
93       return;
94     }
95   aquery->channel = channel;
96   if (family == AF_INET)
97     memcpy(&aquery->addr.addrV4, addr, sizeof(aquery->addr.addrV4));
98   else
99     memcpy(&aquery->addr.addrV6, addr, sizeof(aquery->addr.addrV6));
100   aquery->addr.family = family;
101   aquery->callback = callback;
102   aquery->arg = arg;
103   aquery->remaining_lookups = channel->lookups;
104   aquery->timeouts = 0;
105
106   next_lookup(aquery);
107 }
108
109 static void next_lookup(struct addr_query *aquery)
110 {
111   const char *p;
112   char name[128];
113   int status;
114   struct hostent *host;
115
116   for (p = aquery->remaining_lookups; *p; p++)
117     {
118       switch (*p)
119         {
120         case 'b':
121           ptr_rr_name(name, &aquery->addr);
122           aquery->remaining_lookups = p + 1;
123           ares_query(aquery->channel, name, C_IN, T_PTR, addr_callback,
124                      aquery);
125           return;
126         case 'f':
127           status = file_lookup(&aquery->addr, &host);
128
129           /* this status check below previously checked for !ARES_ENOTFOUND,
130              but we should not assume that this single error code is the one
131              that can occur, as that is in fact no longer the case */
132           if (status == ARES_SUCCESS)
133             {
134               end_aquery(aquery, status, host);
135               return;
136             }
137           break;
138         }
139     }
140   end_aquery(aquery, ARES_ENOTFOUND, NULL);
141 }
142
143 static void addr_callback(void *arg, int status, int timeouts,
144                           unsigned char *abuf, int alen)
145 {
146   struct addr_query *aquery = (struct addr_query *) arg;
147   struct hostent *host;
148   size_t addrlen;
149
150   aquery->timeouts += timeouts;
151   if (status == ARES_SUCCESS)
152     {
153       if (aquery->addr.family == AF_INET)
154         {
155           addrlen = sizeof(aquery->addr.addrV4);
156           status = ares_parse_ptr_reply(abuf, alen, &aquery->addr.addrV4,
157                                         (int)addrlen, AF_INET, &host);
158         }
159       else
160         {
161           addrlen = sizeof(aquery->addr.addrV6);
162           status = ares_parse_ptr_reply(abuf, alen, &aquery->addr.addrV6,
163                                         (int)addrlen, AF_INET6, &host);
164         }
165       end_aquery(aquery, status, host);
166     }
167   else if (status == ARES_EDESTRUCTION)
168     end_aquery(aquery, status, NULL);
169   else
170     next_lookup(aquery);
171 }
172
173 static void end_aquery(struct addr_query *aquery, int status,
174                        struct hostent *host)
175 {
176   aquery->callback(aquery->arg, status, aquery->timeouts, host);
177   if (host)
178     ares_free_hostent(host);
179   free(aquery);
180 }
181
182 static int file_lookup(struct ares_addr *addr, struct hostent **host)
183 {
184   FILE *fp;
185   int status;
186   int error;
187
188 #ifdef WIN32
189   char PATH_HOSTS[MAX_PATH];
190   if (IS_NT()) {
191     char tmp[MAX_PATH];
192     HKEY hkeyHosts;
193
194     if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, WIN_NS_NT_KEY, 0, KEY_READ, &hkeyHosts)
195         == ERROR_SUCCESS)
196     {
197       DWORD dwLength = MAX_PATH;
198       RegQueryValueEx(hkeyHosts, DATABASEPATH, NULL, NULL, (LPBYTE)tmp,
199                       &dwLength);
200       ExpandEnvironmentStrings(tmp, PATH_HOSTS, MAX_PATH);
201       RegCloseKey(hkeyHosts);
202     }
203   }
204   else
205     GetWindowsDirectory(PATH_HOSTS, MAX_PATH);
206
207   strcat(PATH_HOSTS, WIN_PATH_HOSTS);
208
209 #elif defined(WATT32)
210   extern const char *_w32_GetHostsFile (void);
211   const char *PATH_HOSTS = _w32_GetHostsFile();
212
213   if (!PATH_HOSTS)
214     return ARES_ENOTFOUND;
215 #endif
216
217   fp = fopen(PATH_HOSTS, "r");
218   if (!fp)
219     {
220       error = ERRNO;
221       switch(error)
222         {
223         case ENOENT:
224         case ESRCH:
225           return ARES_ENOTFOUND;
226         default:
227           DEBUGF(fprintf(stderr, "fopen() failed with error: %d %s\n",
228                          error, strerror(error)));
229           DEBUGF(fprintf(stderr, "Error opening file: %s\n",
230                          PATH_HOSTS));
231           *host = NULL;
232           return ARES_EFILE;
233         }
234     }
235   while ((status = ares__get_hostent(fp, addr->family, host)) == ARES_SUCCESS)
236     {
237       if (addr->family != (*host)->h_addrtype)
238         {
239           ares_free_hostent(*host);
240           continue;
241         }
242       if (addr->family == AF_INET)
243         {
244           if (memcmp((*host)->h_addr, &addr->addrV4, sizeof(addr->addrV4)) == 0)
245             break;
246         }
247       else if (addr->family == AF_INET6)
248         {
249           if (memcmp((*host)->h_addr, &addr->addrV6, sizeof(addr->addrV6)) == 0)
250             break;
251         }
252       ares_free_hostent(*host);
253     }
254   fclose(fp);
255   if (status == ARES_EOF)
256     status = ARES_ENOTFOUND;
257   if (status != ARES_SUCCESS)
258     *host = NULL;
259   return status;
260 }
261
262 static void ptr_rr_name(char *name, const struct ares_addr *addr)
263 {
264   if (addr->family == AF_INET)
265     {
266        unsigned long laddr = ntohl(addr->addrV4.s_addr);
267        int a1 = (int)((laddr >> 24) & 0xff);
268        int a2 = (int)((laddr >> 16) & 0xff);
269        int a3 = (int)((laddr >> 8) & 0xff);
270        int a4 = (int)(laddr & 0xff);
271        sprintf(name, "%d.%d.%d.%d.in-addr.arpa", a4, a3, a2, a1);
272     }
273   else
274     {
275        unsigned char *bytes = (unsigned char *)&addr->addrV6;
276        /* There are too many arguments to do this in one line using
277         * minimally C89-compliant compilers */
278        sprintf(name,
279                 "%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.",
280                 bytes[15]&0xf, bytes[15] >> 4, bytes[14]&0xf, bytes[14] >> 4,
281                 bytes[13]&0xf, bytes[13] >> 4, bytes[12]&0xf, bytes[12] >> 4,
282                 bytes[11]&0xf, bytes[11] >> 4, bytes[10]&0xf, bytes[10] >> 4,
283                 bytes[9]&0xf, bytes[9] >> 4, bytes[8]&0xf, bytes[8] >> 4);
284        sprintf(name+strlen(name),
285                 "%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.%x.ip6.arpa",
286                 bytes[7]&0xf, bytes[7] >> 4, bytes[6]&0xf, bytes[6] >> 4,
287                 bytes[5]&0xf, bytes[5] >> 4, bytes[4]&0xf, bytes[4] >> 4,
288                 bytes[3]&0xf, bytes[3] >> 4, bytes[2]&0xf, bytes[2] >> 4,
289                 bytes[1]&0xf, bytes[1] >> 4, bytes[0]&0xf, bytes[0] >> 4);
290     }
291 }