2.9
[glibc/nacl-glibc.git] / resolv / nss_dns / dns-host.c
blob6cbfcb63cebee9407ed74c481a7b27f31ad94602
1 /* Copyright (C) 1996-2004, 2007, 2008 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Extended from original form by Ulrich Drepper <drepper@cygnus.com>, 1996.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18 02111-1307 USA. */
20 /* Parts of this file are plain copies of the file `gethtnamadr.c' from
21 the bind package and it has the following copyright. */
24 * ++Copyright++ 1985, 1988, 1993
25 * -
26 * Copyright (c) 1985, 1988, 1993
27 * The Regents of the University of California. All rights reserved.
29 * Redistribution and use in source and binary forms, with or without
30 * modification, are permitted provided that the following conditions
31 * are met:
32 * 1. Redistributions of source code must retain the above copyright
33 * notice, this list of conditions and the following disclaimer.
34 * 2. Redistributions in binary form must reproduce the above copyright
35 * notice, this list of conditions and the following disclaimer in the
36 * documentation and/or other materials provided with the distribution.
37 * 4. Neither the name of the University nor the names of its contributors
38 * may be used to endorse or promote products derived from this software
39 * without specific prior written permission.
41 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
44 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
45 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
47 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 * SUCH DAMAGE.
52 * -
53 * Portions Copyright (c) 1993 by Digital Equipment Corporation.
55 * Permission to use, copy, modify, and distribute this software for any
56 * purpose with or without fee is hereby granted, provided that the above
57 * copyright notice and this permission notice appear in all copies, and that
58 * the name of Digital Equipment Corporation not be used in advertising or
59 * publicity pertaining to distribution of the document or software without
60 * specific, written prior permission.
62 * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
63 * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
64 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT
65 * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
66 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
67 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
68 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
69 * SOFTWARE.
70 * -
71 * --Copyright--
74 #include <assert.h>
75 #include <ctype.h>
76 #include <errno.h>
77 #include <netdb.h>
78 #include <stdio.h>
79 #include <stdlib.h>
80 #include <stddef.h>
81 #include <string.h>
82 #include <sys/syslog.h>
84 #include "nsswitch.h"
86 /* Get implementation for some internal functions. */
87 #include <resolv/mapv4v6addr.h>
88 #include <resolv/mapv4v6hostent.h>
90 #define RESOLVSORT
92 /* Maximum number of aliases we allow. */
93 #define MAX_NR_ALIASES 48
94 #define MAX_NR_ADDRS 48
96 #if PACKETSZ > 65536
97 # define MAXPACKET PACKETSZ
98 #else
99 # define MAXPACKET 65536
100 #endif
101 /* As per RFC 1034 and 1035 a host name cannot exceed 255 octets in length. */
102 #ifdef MAXHOSTNAMELEN
103 # undef MAXHOSTNAMELEN
104 #endif
105 #define MAXHOSTNAMELEN 256
107 static const char AskedForGot[] = "\
108 gethostby*.getanswer: asked for \"%s\", got \"%s\"";
111 /* We need this time later. */
112 typedef union querybuf
114 HEADER hdr;
115 u_char buf[MAXPACKET];
116 } querybuf;
118 /* These functions are defined in res_comp.c. */
119 #define NS_MAXCDNAME 255 /* maximum compressed domain name */
120 extern int __ns_name_ntop (const u_char *, char *, size_t);
121 extern int __ns_name_unpack (const u_char *, const u_char *,
122 const u_char *, u_char *, size_t);
125 static enum nss_status getanswer_r (const querybuf *answer, int anslen,
126 const char *qname, int qtype,
127 struct hostent *result, char *buffer,
128 size_t buflen, int *errnop, int *h_errnop,
129 int map, int32_t *ttlp, char **canonp);
131 static enum nss_status gaih_getanswer (const querybuf *answer1, int anslen1,
132 const querybuf *answer2, int anslen2,
133 const char *qname,
134 struct gaih_addrtuple **pat,
135 char *buffer, size_t buflen,
136 int *errnop, int *h_errnop,
137 int32_t *ttlp);
139 extern enum nss_status _nss_dns_gethostbyname3_r (const char *name, int af,
140 struct hostent *result,
141 char *buffer, size_t buflen,
142 int *errnop, int *h_errnop,
143 int32_t *ttlp,
144 char **canonp);
145 hidden_proto (_nss_dns_gethostbyname3_r)
147 enum nss_status
148 _nss_dns_gethostbyname3_r (const char *name, int af, struct hostent *result,
149 char *buffer, size_t buflen, int *errnop,
150 int *h_errnop, int32_t *ttlp, char **canonp)
152 union
154 querybuf *buf;
155 u_char *ptr;
156 } host_buffer;
157 querybuf *orig_host_buffer;
158 char tmp[NS_MAXDNAME];
159 int size, type, n;
160 const char *cp;
161 int map = 0;
162 int olderr = errno;
163 enum nss_status status;
165 if (__res_maybe_init (&_res, 0) == -1)
166 return NSS_STATUS_UNAVAIL;
168 switch (af) {
169 case AF_INET:
170 size = INADDRSZ;
171 type = T_A;
172 break;
173 case AF_INET6:
174 size = IN6ADDRSZ;
175 type = T_AAAA;
176 break;
177 default:
178 *h_errnop = NO_DATA;
179 *errnop = EAFNOSUPPORT;
180 return NSS_STATUS_UNAVAIL;
183 result->h_addrtype = af;
184 result->h_length = size;
187 * if there aren't any dots, it could be a user-level alias.
188 * this is also done in res_query() since we are not the only
189 * function that looks up host names.
191 if (strchr (name, '.') == NULL
192 && (cp = res_hostalias (&_res, name, tmp, sizeof (tmp))) != NULL)
193 name = cp;
195 host_buffer.buf = orig_host_buffer = (querybuf *) alloca (1024);
197 n = __libc_res_nsearch (&_res, name, C_IN, type, host_buffer.buf->buf,
198 1024, &host_buffer.ptr, NULL, NULL, NULL);
199 if (n < 0)
201 status = (errno == ECONNREFUSED
202 ? NSS_STATUS_UNAVAIL : NSS_STATUS_NOTFOUND);
203 *h_errnop = h_errno;
204 if (h_errno == TRY_AGAIN)
205 *errnop = EAGAIN;
206 else
207 __set_errno (olderr);
209 /* If we are looking for a IPv6 address and mapping is enabled
210 by having the RES_USE_INET6 bit in _res.options set, we try
211 another lookup. */
212 if (af == AF_INET6 && (_res.options & RES_USE_INET6))
213 n = __libc_res_nsearch (&_res, name, C_IN, T_A, host_buffer.buf->buf,
214 host_buffer.buf != orig_host_buffer
215 ? MAXPACKET : 1024, &host_buffer.ptr,
216 NULL, NULL, NULL);
218 if (n < 0)
220 if (host_buffer.buf != orig_host_buffer)
221 free (host_buffer.buf);
222 return status;
225 map = 1;
227 result->h_addrtype = AF_INET;
228 result->h_length = INADDRSZ;
231 status = getanswer_r (host_buffer.buf, n, name, type, result, buffer, buflen,
232 errnop, h_errnop, map, ttlp, canonp);
233 if (host_buffer.buf != orig_host_buffer)
234 free (host_buffer.buf);
235 return status;
237 hidden_def (_nss_dns_gethostbyname3_r)
240 enum nss_status
241 _nss_dns_gethostbyname2_r (const char *name, int af, struct hostent *result,
242 char *buffer, size_t buflen, int *errnop,
243 int *h_errnop)
245 return _nss_dns_gethostbyname3_r (name, af, result, buffer, buflen, errnop,
246 h_errnop, NULL, NULL);
250 enum nss_status
251 _nss_dns_gethostbyname_r (const char *name, struct hostent *result,
252 char *buffer, size_t buflen, int *errnop,
253 int *h_errnop)
255 enum nss_status status = NSS_STATUS_NOTFOUND;
257 if (_res.options & RES_USE_INET6)
258 status = _nss_dns_gethostbyname3_r (name, AF_INET6, result, buffer,
259 buflen, errnop, h_errnop, NULL, NULL);
260 if (status == NSS_STATUS_NOTFOUND)
261 status = _nss_dns_gethostbyname3_r (name, AF_INET, result, buffer,
262 buflen, errnop, h_errnop, NULL, NULL);
264 return status;
268 enum nss_status
269 _nss_dns_gethostbyname4_r (const char *name, struct gaih_addrtuple **pat,
270 char *buffer, size_t buflen, int *errnop,
271 int *herrnop, int32_t *ttlp)
273 if (__res_maybe_init (&_res, 0) == -1)
274 return NSS_STATUS_UNAVAIL;
277 * if there aren't any dots, it could be a user-level alias.
278 * this is also done in res_query() since we are not the only
279 * function that looks up host names.
281 if (strchr (name, '.') == NULL)
283 char *tmp = alloca (NS_MAXDNAME);
284 const char *cp = res_hostalias (&_res, name, tmp, NS_MAXDNAME);
285 if (cp != NULL)
286 name = cp;
289 union
291 querybuf *buf;
292 u_char *ptr;
293 } host_buffer;
294 querybuf *orig_host_buffer;
295 host_buffer.buf = orig_host_buffer = (querybuf *) alloca (2048);
296 u_char *ans2p = NULL;
297 int nans2p = 0;
298 int resplen2 = 0;
300 int olderr = errno;
301 enum nss_status status;
302 int n = __libc_res_nsearch (&_res, name, C_IN, T_UNSPEC,
303 host_buffer.buf->buf, 2048, &host_buffer.ptr,
304 &ans2p, &nans2p, &resplen2);
305 if (n < 0)
307 status = (errno == ECONNREFUSED
308 ? NSS_STATUS_UNAVAIL : NSS_STATUS_NOTFOUND);
309 *herrnop = h_errno;
310 if (h_errno == TRY_AGAIN)
311 *errnop = EAGAIN;
312 else
313 __set_errno (olderr);
315 if (host_buffer.buf != orig_host_buffer)
316 free (host_buffer.buf);
318 return status;
321 status = gaih_getanswer(host_buffer.buf, n, (const querybuf *) ans2p,
322 resplen2, name, pat, buffer, buflen,
323 errnop, herrnop, ttlp);
325 if (host_buffer.buf != orig_host_buffer)
326 free (host_buffer.buf);
328 return status;
332 extern enum nss_status _nss_dns_gethostbyaddr2_r (const void *addr,
333 socklen_t len, int af,
334 struct hostent *result,
335 char *buffer, size_t buflen,
336 int *errnop, int *h_errnop,
337 int32_t *ttlp);
338 hidden_proto (_nss_dns_gethostbyaddr2_r)
340 enum nss_status
341 _nss_dns_gethostbyaddr2_r (const void *addr, socklen_t len, int af,
342 struct hostent *result, char *buffer, size_t buflen,
343 int *errnop, int *h_errnop, int32_t *ttlp)
345 static const u_char mapped[] = { 0,0, 0,0, 0,0, 0,0, 0,0, 0xff,0xff };
346 static const u_char tunnelled[] = { 0,0, 0,0, 0,0, 0,0, 0,0, 0,0 };
347 static const u_char v6local[] = { 0,0, 0,1 };
348 const u_char *uaddr = (const u_char *)addr;
349 struct host_data
351 char *aliases[MAX_NR_ALIASES];
352 unsigned char host_addr[16]; /* IPv4 or IPv6 */
353 char *h_addr_ptrs[MAX_NR_ADDRS + 1];
354 char linebuffer[0];
355 } *host_data = (struct host_data *) buffer;
356 union
358 querybuf *buf;
359 u_char *ptr;
360 } host_buffer;
361 querybuf *orig_host_buffer;
362 char qbuf[MAXDNAME+1], *qp = NULL;
363 size_t size;
364 int n, status;
365 int olderr = errno;
367 if (__res_maybe_init (&_res, 0) == -1)
368 return NSS_STATUS_UNAVAIL;
370 if (af == AF_INET6 && len == IN6ADDRSZ
371 && (memcmp (uaddr, mapped, sizeof mapped) == 0
372 || (memcmp (uaddr, tunnelled, sizeof tunnelled) == 0
373 && memcmp (&uaddr[sizeof tunnelled], v6local, sizeof v6local))))
375 /* Unmap. */
376 addr += sizeof mapped;
377 uaddr += sizeof mapped;
378 af = AF_INET;
379 len = INADDRSZ;
382 switch (af)
384 case AF_INET:
385 size = INADDRSZ;
386 break;
387 case AF_INET6:
388 size = IN6ADDRSZ;
389 break;
390 default:
391 *errnop = EAFNOSUPPORT;
392 *h_errnop = NETDB_INTERNAL;
393 return NSS_STATUS_UNAVAIL;
395 if (size > len)
397 *errnop = EAFNOSUPPORT;
398 *h_errnop = NETDB_INTERNAL;
399 return NSS_STATUS_UNAVAIL;
402 host_buffer.buf = orig_host_buffer = (querybuf *) alloca (1024);
404 switch (af)
406 case AF_INET:
407 sprintf (qbuf, "%u.%u.%u.%u.in-addr.arpa", (uaddr[3] & 0xff),
408 (uaddr[2] & 0xff), (uaddr[1] & 0xff), (uaddr[0] & 0xff));
409 break;
410 case AF_INET6:
411 /* Only lookup with the byte string format if the user wants it. */
412 if (__builtin_expect (_res.options & RES_USEBSTRING, 0))
414 qp = stpcpy (qbuf, "\\[x");
415 for (n = 0; n < IN6ADDRSZ; ++n)
416 qp += sprintf (qp, "%02hhx", uaddr[n]);
417 strcpy (qp, "].ip6.arpa");
418 n = __libc_res_nquery (&_res, qbuf, C_IN, T_PTR,
419 host_buffer.buf->buf, 1024, &host_buffer.ptr,
420 NULL, NULL, NULL);
421 if (n >= 0)
422 goto got_it_already;
424 qp = qbuf;
425 for (n = IN6ADDRSZ - 1; n >= 0; n--)
427 static const char nibblechar[16] = "0123456789abcdef";
428 *qp++ = nibblechar[uaddr[n] & 0xf];
429 *qp++ = '.';
430 *qp++ = nibblechar[(uaddr[n] >> 4) & 0xf];
431 *qp++ = '.';
433 strcpy(qp, "ip6.arpa");
434 break;
435 default:
436 /* Cannot happen. */
437 break;
440 n = __libc_res_nquery (&_res, qbuf, C_IN, T_PTR, host_buffer.buf->buf,
441 1024, &host_buffer.ptr, NULL, NULL, NULL);
442 if (n < 0 && af == AF_INET6 && (_res.options & RES_NOIP6DOTINT) == 0)
444 strcpy (qp, "ip6.int");
445 n = __libc_res_nquery (&_res, qbuf, C_IN, T_PTR, host_buffer.buf->buf,
446 host_buffer.buf != orig_host_buffer
447 ? MAXPACKET : 1024, &host_buffer.ptr,
448 NULL, NULL, NULL);
450 if (n < 0)
452 *h_errnop = h_errno;
453 __set_errno (olderr);
454 if (host_buffer.buf != orig_host_buffer)
455 free (host_buffer.buf);
456 return errno == ECONNREFUSED ? NSS_STATUS_UNAVAIL : NSS_STATUS_NOTFOUND;
459 got_it_already:
460 status = getanswer_r (host_buffer.buf, n, qbuf, T_PTR, result, buffer, buflen,
461 errnop, h_errnop, 0 /* XXX */, ttlp, NULL);
462 if (host_buffer.buf != orig_host_buffer)
463 free (host_buffer.buf);
464 if (status != NSS_STATUS_SUCCESS)
465 return status;
467 #ifdef SUNSECURITY
468 This is not implemented because it is not possible to use the current
469 source from bind in a multi-threaded program.
470 #endif
472 result->h_addrtype = af;
473 result->h_length = len;
474 memcpy (host_data->host_addr, addr, len);
475 host_data->h_addr_ptrs[0] = (char *) host_data->host_addr;
476 host_data->h_addr_ptrs[1] = NULL;
477 #if 0
478 /* XXX I think this is wrong. Why should an IPv4 address be
479 converted to IPv6 if the user explicitly asked for IPv4? */
480 if (af == AF_INET && (_res.options & RES_USE_INET6))
482 map_v4v6_address ((char *) host_data->host_addr,
483 (char *) host_data->host_addr);
484 result->h_addrtype = AF_INET6;
485 result->h_length = IN6ADDRSZ;
487 #endif
488 *h_errnop = NETDB_SUCCESS;
489 return NSS_STATUS_SUCCESS;
491 hidden_def (_nss_dns_gethostbyaddr2_r)
494 enum nss_status
495 _nss_dns_gethostbyaddr_r (const void *addr, socklen_t len, int af,
496 struct hostent *result, char *buffer, size_t buflen,
497 int *errnop, int *h_errnop)
499 return _nss_dns_gethostbyaddr2_r (addr, len, af, result, buffer, buflen,
500 errnop, h_errnop, NULL);
503 #ifdef RESOLVSORT
504 static void addrsort (char **ap, int num);
506 static void
507 addrsort (char **ap, int num)
509 int i, j;
510 char **p;
511 short aval[MAX_NR_ADDRS];
512 int needsort = 0;
514 p = ap;
515 if (num > MAX_NR_ADDRS)
516 num = MAX_NR_ADDRS;
517 for (i = 0; i < num; i++, p++)
519 for (j = 0 ; (unsigned)j < _res.nsort; j++)
520 if (_res.sort_list[j].addr.s_addr ==
521 (((struct in_addr *)(*p))->s_addr & _res.sort_list[j].mask))
522 break;
523 aval[i] = j;
524 if (needsort == 0 && i > 0 && j < aval[i-1])
525 needsort = i;
527 if (!needsort)
528 return;
530 while (needsort++ < num)
531 for (j = needsort - 2; j >= 0; j--)
532 if (aval[j] > aval[j+1])
534 char *hp;
536 i = aval[j];
537 aval[j] = aval[j+1];
538 aval[j+1] = i;
540 hp = ap[j];
541 ap[j] = ap[j+1];
542 ap[j+1] = hp;
544 else
545 break;
547 #endif
549 static enum nss_status
550 getanswer_r (const querybuf *answer, int anslen, const char *qname, int qtype,
551 struct hostent *result, char *buffer, size_t buflen,
552 int *errnop, int *h_errnop, int map, int32_t *ttlp, char **canonp)
554 struct host_data
556 char *aliases[MAX_NR_ALIASES];
557 unsigned char host_addr[16]; /* IPv4 or IPv6 */
558 char *h_addr_ptrs[0];
559 } *host_data;
560 int linebuflen;
561 register const HEADER *hp;
562 const u_char *end_of_message, *cp;
563 int n, ancount, qdcount;
564 int haveanswer, had_error;
565 char *bp, **ap, **hap;
566 char tbuf[MAXDNAME];
567 const char *tname;
568 int (*name_ok) (const char *);
569 u_char packtmp[NS_MAXCDNAME];
570 int have_to_map = 0;
571 int32_t ttl = 0;
572 uintptr_t pad = -(uintptr_t) buffer % __alignof__ (struct host_data);
573 buffer += pad;
574 if (__builtin_expect (buflen < sizeof (struct host_data) + pad, 0))
576 /* The buffer is too small. */
577 too_small:
578 *errnop = ERANGE;
579 *h_errnop = NETDB_INTERNAL;
580 return NSS_STATUS_TRYAGAIN;
582 host_data = (struct host_data *) buffer;
583 linebuflen = buflen - sizeof (struct host_data);
584 if (buflen - sizeof (struct host_data) != linebuflen)
585 linebuflen = INT_MAX;
587 tname = qname;
588 result->h_name = NULL;
589 end_of_message = answer->buf + anslen;
590 switch (qtype)
592 case T_A:
593 case T_AAAA:
594 name_ok = res_hnok;
595 break;
596 case T_PTR:
597 name_ok = res_dnok;
598 break;
599 default:
600 *errnop = ENOENT;
601 return NSS_STATUS_UNAVAIL; /* XXX should be abort(); */
605 * find first satisfactory answer
607 hp = &answer->hdr;
608 ancount = ntohs (hp->ancount);
609 qdcount = ntohs (hp->qdcount);
610 cp = answer->buf + HFIXEDSZ;
611 if (__builtin_expect (qdcount, 1) != 1)
613 *h_errnop = NO_RECOVERY;
614 return NSS_STATUS_UNAVAIL;
616 if (sizeof (struct host_data) + (ancount + 1) * sizeof (char *) >= buflen)
617 goto too_small;
618 bp = (char *) &host_data->h_addr_ptrs[ancount + 1];
619 linebuflen -= (ancount + 1) * sizeof (char *);
621 n = __ns_name_unpack (answer->buf, end_of_message, cp,
622 packtmp, sizeof packtmp);
623 if (n != -1 && __ns_name_ntop (packtmp, bp, linebuflen) == -1)
625 if (__builtin_expect (errno, 0) == EMSGSIZE)
626 goto too_small;
628 n = -1;
631 if (n > 0 && bp[0] == '.')
632 bp[0] = '\0';
634 if (__builtin_expect (n < 0 || ((*name_ok) (bp) == 0 && (errno = EBADMSG)),
637 *errnop = errno;
638 *h_errnop = NO_RECOVERY;
639 return NSS_STATUS_UNAVAIL;
641 cp += n + QFIXEDSZ;
643 if (qtype == T_A || qtype == T_AAAA)
645 /* res_send() has already verified that the query name is the
646 * same as the one we sent; this just gets the expanded name
647 * (i.e., with the succeeding search-domain tacked on).
649 n = strlen (bp) + 1; /* for the \0 */
650 if (n >= MAXHOSTNAMELEN)
652 *h_errnop = NO_RECOVERY;
653 *errnop = ENOENT;
654 return NSS_STATUS_TRYAGAIN;
656 result->h_name = bp;
657 bp += n;
658 linebuflen -= n;
659 if (linebuflen < 0)
660 goto too_small;
661 /* The qname can be abbreviated, but h_name is now absolute. */
662 qname = result->h_name;
665 ap = host_data->aliases;
666 *ap = NULL;
667 result->h_aliases = host_data->aliases;
668 hap = host_data->h_addr_ptrs;
669 *hap = NULL;
670 result->h_addr_list = host_data->h_addr_ptrs;
671 haveanswer = 0;
672 had_error = 0;
674 while (ancount-- > 0 && cp < end_of_message && had_error == 0)
676 int type, class;
678 n = __ns_name_unpack (answer->buf, end_of_message, cp,
679 packtmp, sizeof packtmp);
680 if (n != -1 && __ns_name_ntop (packtmp, bp, linebuflen) == -1)
682 if (__builtin_expect (errno, 0) == EMSGSIZE)
683 goto too_small;
685 n = -1;
688 if (__builtin_expect (n < 0 || (*name_ok) (bp) == 0, 0))
690 ++had_error;
691 continue;
693 cp += n; /* name */
695 if (__builtin_expect (cp + 10 > end_of_message, 0))
697 ++had_error;
698 continue;
701 type = __ns_get16 (cp);
702 cp += INT16SZ; /* type */
703 class = __ns_get16 (cp);
704 cp += INT16SZ; /* class */
705 ttl = __ns_get32 (cp);
706 cp += INT32SZ; /* TTL */
707 n = __ns_get16 (cp);
708 cp += INT16SZ; /* len */
709 if (__builtin_expect (class != C_IN, 0))
711 /* XXX - debug? syslog? */
712 cp += n;
713 continue; /* XXX - had_error++ ? */
716 if ((qtype == T_A || qtype == T_AAAA) && type == T_CNAME)
718 if (ap >= &host_data->aliases[MAX_NR_ALIASES - 1])
719 continue;
720 n = dn_expand (answer->buf, end_of_message, cp, tbuf, sizeof tbuf);
721 if (__builtin_expect (n < 0 || (*name_ok) (tbuf) == 0, 0))
723 ++had_error;
724 continue;
726 cp += n;
727 /* Store alias. */
728 *ap++ = bp;
729 n = strlen (bp) + 1; /* For the \0. */
730 if (__builtin_expect (n, 0) >= MAXHOSTNAMELEN)
732 ++had_error;
733 continue;
735 bp += n;
736 linebuflen -= n;
737 /* Get canonical name. */
738 n = strlen (tbuf) + 1; /* For the \0. */
739 if (__builtin_expect (n > linebuflen, 0))
740 goto too_small;
741 if (__builtin_expect (n, 0) >= MAXHOSTNAMELEN)
743 ++had_error;
744 continue;
746 result->h_name = bp;
747 bp = __mempcpy (bp, tbuf, n); /* Cannot overflow. */
748 linebuflen -= n;
749 continue;
752 if (qtype == T_PTR && type == T_CNAME)
754 n = dn_expand (answer->buf, end_of_message, cp, tbuf, sizeof tbuf);
755 if (__builtin_expect (n < 0 || res_dnok (tbuf) == 0, 0))
757 ++had_error;
758 continue;
760 cp += n;
761 /* Get canonical name. */
762 n = strlen (tbuf) + 1; /* For the \0. */
763 if (__builtin_expect (n > linebuflen, 0))
764 goto too_small;
765 if (__builtin_expect (n, 0) >= MAXHOSTNAMELEN)
767 ++had_error;
768 continue;
770 tname = bp;
771 bp = __mempcpy (bp, tbuf, n); /* Cannot overflow. */
772 linebuflen -= n;
773 continue;
775 if (__builtin_expect (type == T_SIG, 0)
776 || __builtin_expect (type == T_KEY, 0)
777 || __builtin_expect (type == T_NXT, 0))
779 /* We don't support DNSSEC yet. For now, ignore the record
780 and send a low priority message to syslog. */
781 syslog (LOG_DEBUG | LOG_AUTH,
782 "gethostby*.getanswer: asked for \"%s %s %s\", got type \"%s\"",
783 qname, p_class (C_IN), p_type(qtype), p_type (type));
784 cp += n;
785 continue;
788 if (type == T_A && qtype == T_AAAA && map)
789 have_to_map = 1;
790 else if (__builtin_expect (type != qtype, 0))
792 syslog (LOG_NOTICE | LOG_AUTH,
793 "gethostby*.getanswer: asked for \"%s %s %s\", got type \"%s\"",
794 qname, p_class (C_IN), p_type (qtype), p_type (type));
795 cp += n;
796 continue; /* XXX - had_error++ ? */
799 switch (type)
801 case T_PTR:
802 if (__builtin_expect (__strcasecmp (tname, bp) != 0, 0))
804 syslog (LOG_NOTICE | LOG_AUTH, AskedForGot, qname, bp);
805 cp += n;
806 continue; /* XXX - had_error++ ? */
809 n = __ns_name_unpack (answer->buf, end_of_message, cp,
810 packtmp, sizeof packtmp);
811 if (n != -1 && __ns_name_ntop (packtmp, bp, linebuflen) == -1)
813 if (__builtin_expect (errno, 0) == EMSGSIZE)
814 goto too_small;
816 n = -1;
819 if (__builtin_expect (n < 0 || res_hnok (bp) == 0, 0))
821 ++had_error;
822 break;
824 #if MULTI_PTRS_ARE_ALIASES
825 cp += n;
826 if (haveanswer == 0)
827 result->h_name = bp;
828 else if (ap < &host_data->aliases[MAXALIASES-1])
829 *ap++ = bp;
830 else
831 n = -1;
832 if (n != -1)
834 n = strlen (bp) + 1; /* for the \0 */
835 if (__builtin_expect (n, 0) >= MAXHOSTNAMELEN)
837 ++had_error;
838 break;
840 bp += n;
841 linebuflen -= n;
843 break;
844 #else
845 result->h_name = bp;
846 if (have_to_map)
848 n = strlen (bp) + 1; /* for the \0 */
849 if (__builtin_expect (n >= MAXHOSTNAMELEN, 0))
851 ++had_error;
852 break;
854 bp += n;
855 linebuflen -= n;
856 map_v4v6_hostent (result, &bp, &linebuflen);
858 *h_errnop = NETDB_SUCCESS;
859 return NSS_STATUS_SUCCESS;
860 #endif
861 case T_A:
862 case T_AAAA:
863 if (__builtin_expect (strcasecmp (result->h_name, bp), 0) != 0)
865 syslog (LOG_NOTICE | LOG_AUTH, AskedForGot, result->h_name, bp);
866 cp += n;
867 continue; /* XXX - had_error++ ? */
869 if (n != result->h_length)
871 cp += n;
872 continue;
874 if (!haveanswer)
876 register int nn;
878 if (ttlp != NULL && ttl != 0)
879 *ttlp = ttl;
880 if (canonp != NULL)
881 *canonp = bp;
882 result->h_name = bp;
883 nn = strlen (bp) + 1; /* for the \0 */
884 bp += nn;
885 linebuflen -= nn;
888 linebuflen -= sizeof (align) - ((u_long) bp % sizeof (align));
889 bp += sizeof (align) - ((u_long) bp % sizeof (align));
891 if (__builtin_expect (n > linebuflen, 0))
892 goto too_small;
893 bp = __mempcpy (*hap++ = bp, cp, n);
894 cp += n;
895 linebuflen -= n;
896 break;
897 default:
898 abort ();
900 if (had_error == 0)
901 ++haveanswer;
904 if (haveanswer > 0)
906 *ap = NULL;
907 *hap = NULL;
908 #if defined RESOLVSORT
910 * Note: we sort even if host can take only one address
911 * in its return structures - should give it the "best"
912 * address in that case, not some random one
914 if (_res.nsort && haveanswer > 1 && qtype == T_A)
915 addrsort (host_data->h_addr_ptrs, haveanswer);
916 #endif /*RESOLVSORT*/
918 if (result->h_name == NULL)
920 n = strlen (qname) + 1; /* For the \0. */
921 if (n > linebuflen)
922 goto too_small;
923 if (n >= MAXHOSTNAMELEN)
924 goto no_recovery;
925 result->h_name = bp;
926 bp = __mempcpy (bp, qname, n); /* Cannot overflow. */
927 linebuflen -= n;
930 if (have_to_map)
931 map_v4v6_hostent (result, &bp, &linebuflen);
932 *h_errnop = NETDB_SUCCESS;
933 return NSS_STATUS_SUCCESS;
935 no_recovery:
936 *h_errnop = NO_RECOVERY;
937 *errnop = ENOENT;
938 /* Special case here: if the resolver sent a result but it only
939 contains a CNAME while we are looking for a T_A or T_AAAA record,
940 we fail with NOTFOUND instead of TRYAGAIN. */
941 return ((qtype == T_A || qtype == T_AAAA) && ap != host_data->aliases
942 ? NSS_STATUS_NOTFOUND : NSS_STATUS_TRYAGAIN);
946 static enum nss_status
947 gaih_getanswer_slice (const querybuf *answer, int anslen, const char *qname,
948 struct gaih_addrtuple ***patp,
949 char **bufferp, size_t *buflenp,
950 int *errnop, int *h_errnop, int32_t *ttlp, int *firstp)
952 char *buffer = *bufferp;
953 size_t buflen = *buflenp;
955 struct gaih_addrtuple **pat = *patp;
956 const HEADER *hp = &answer->hdr;
957 int ancount = ntohs (hp->ancount);
958 int qdcount = ntohs (hp->qdcount);
959 const u_char *cp = answer->buf + HFIXEDSZ;
960 const u_char *end_of_message = answer->buf + anslen;
961 if (__builtin_expect (qdcount != 1, 0))
963 *h_errnop = NO_RECOVERY;
964 return NSS_STATUS_UNAVAIL;
967 u_char packtmp[NS_MAXCDNAME];
968 int n = __ns_name_unpack (answer->buf, end_of_message, cp,
969 packtmp, sizeof packtmp);
970 /* We unpack the name to check it for validity. But we do not need
971 it later. */
972 if (n != -1 && __ns_name_ntop (packtmp, buffer, buflen) == -1)
974 if (__builtin_expect (errno, 0) == EMSGSIZE)
976 too_small:
977 *errnop = ERANGE;
978 *h_errnop = NETDB_INTERNAL;
979 return NSS_STATUS_TRYAGAIN;
982 n = -1;
985 if (__builtin_expect (n < 0 || (res_hnok (buffer) == 0
986 && (errno = EBADMSG)), 0))
988 *errnop = errno;
989 *h_errnop = NO_RECOVERY;
990 return NSS_STATUS_UNAVAIL;
992 cp += n + QFIXEDSZ;
994 int haveanswer = 0;
995 int had_error = 0;
996 char *canon = NULL;
997 char *h_name = NULL;
998 int h_namelen = 0;
1000 if (ancount == 0)
1001 return NSS_STATUS_NOTFOUND;
1003 while (ancount-- > 0 && cp < end_of_message && had_error == 0)
1005 n = __ns_name_unpack (answer->buf, end_of_message, cp,
1006 packtmp, sizeof packtmp);
1007 if (n != -1 &&
1008 (h_namelen = __ns_name_ntop (packtmp, buffer, buflen)) == -1)
1010 if (__builtin_expect (errno, 0) == EMSGSIZE)
1011 goto too_small;
1013 n = -1;
1015 if (__builtin_expect (n < 0 || res_hnok (buffer) == 0, 0))
1017 ++had_error;
1018 continue;
1020 if (*firstp)
1022 h_name = buffer;
1023 buffer += h_namelen;
1024 buflen -= h_namelen;
1027 cp += n; /* name */
1029 if (__builtin_expect (cp + 10 > end_of_message, 0))
1031 ++had_error;
1032 continue;
1035 int type = __ns_get16 (cp);
1036 cp += INT16SZ; /* type */
1037 int class = __ns_get16 (cp);
1038 cp += INT16SZ; /* class */
1039 int32_t ttl = __ns_get32 (cp);
1040 cp += INT32SZ; /* TTL */
1041 n = __ns_get16 (cp);
1042 cp += INT16SZ; /* len */
1044 if (class != C_IN)
1046 cp += n;
1047 continue;
1050 if (type == T_CNAME)
1052 char tbuf[MAXDNAME];
1053 n = dn_expand (answer->buf, end_of_message, cp, tbuf, sizeof tbuf);
1054 if (__builtin_expect (n < 0 || res_hnok (tbuf) == 0, 0))
1056 ++had_error;
1057 continue;
1059 cp += n;
1061 if (*firstp)
1063 /* Reclaim buffer space. */
1064 if (h_name + h_namelen == buffer)
1066 buffer = h_name;
1067 buflen += h_namelen;
1070 n = strlen (tbuf) + 1;
1071 if (__builtin_expect (n > buflen, 0))
1072 goto too_small;
1073 if (__builtin_expect (n >= MAXHOSTNAMELEN, 0))
1075 ++had_error;
1076 continue;
1079 canon = buffer;
1080 buffer = __mempcpy (buffer, tbuf, n);
1081 buflen -= n;
1082 h_namelen = 0;
1084 continue;
1086 #if 1
1087 // We should not see any types other than those explicitly listed
1088 // below. Some types sent by server seem missing, though. Just
1089 // collect the data for now.
1090 if (__builtin_expect (type != T_A && type != T_AAAA, 0))
1091 #else
1092 if (__builtin_expect (type == T_SIG, 0)
1093 || __builtin_expect (type == T_KEY, 0)
1094 || __builtin_expect (type == T_NXT, 0)
1095 || __builtin_expect (type == T_PTR, 0)
1096 || __builtin_expect (type == T_DNAME, 0))
1097 #endif
1099 /* We don't support DNSSEC yet. For now, ignore the record
1100 and send a low priority message to syslog.
1102 We also don't expect T_PTR or T_DNAME messages. */
1103 syslog (LOG_DEBUG | LOG_AUTH,
1104 "getaddrinfo*.gaih_getanswer: got type \"%s\"",
1105 p_type (type));
1106 cp += n;
1107 continue;
1109 if (type != T_A && type != T_AAAA)
1110 abort ();
1112 if (*pat == NULL)
1114 uintptr_t pad = (-(uintptr_t) buffer
1115 % __alignof__ (struct gaih_addrtuple));
1116 buffer += pad;
1117 buflen = buflen > pad ? buflen - pad : 0;
1119 if (__builtin_expect (buflen < sizeof (struct gaih_addrtuple),
1121 goto too_small;
1123 *pat = (struct gaih_addrtuple *) buffer;
1124 buffer += sizeof (struct gaih_addrtuple);
1125 buflen -= sizeof (struct gaih_addrtuple);
1128 (*pat)->name = NULL;
1129 (*pat)->next = NULL;
1131 if (*firstp)
1133 if (ttl != 0 && ttlp != NULL)
1134 *ttlp = ttl;
1136 if (canon != NULL)
1138 (*pat)->name = canon;
1140 /* Reclaim buffer space. */
1141 if (h_name + h_namelen == buffer)
1143 buffer = h_name;
1144 buflen += h_namelen;
1147 else
1148 (*pat)->name = h_name;
1150 *firstp = 0;
1153 (*pat)->family = type == T_A ? AF_INET : AF_INET6;
1154 if (__builtin_expect ((type == T_A && n != INADDRSZ)
1155 || (type == T_AAAA && n != IN6ADDRSZ), 0))
1157 ++had_error;
1158 continue;
1160 memcpy ((*pat)->addr, cp, n);
1161 cp += n;
1162 (*pat)->scopeid = 0;
1164 pat = &((*pat)->next);
1166 haveanswer = 1;
1169 if (haveanswer)
1171 *patp = pat;
1172 *bufferp = buffer;
1173 *buflenp = buflen;
1175 *h_errnop = NETDB_SUCCESS;
1176 return NSS_STATUS_SUCCESS;
1179 /* Special case here: if the resolver sent a result but it only
1180 contains a CNAME while we are looking for a T_A or T_AAAA record,
1181 we fail with NOTFOUND instead of TRYAGAIN. */
1182 return canon == NULL ? NSS_STATUS_TRYAGAIN : NSS_STATUS_NOTFOUND;
1186 static enum nss_status
1187 gaih_getanswer (const querybuf *answer1, int anslen1, const querybuf *answer2,
1188 int anslen2, const char *qname,
1189 struct gaih_addrtuple **pat, char *buffer, size_t buflen,
1190 int *errnop, int *h_errnop, int32_t *ttlp)
1192 int first = 1;
1194 enum nss_status status = NSS_STATUS_NOTFOUND;
1196 if (anslen1 > 0)
1197 status = gaih_getanswer_slice(answer1, anslen1, qname,
1198 &pat, &buffer, &buflen,
1199 errnop, h_errnop, ttlp,
1200 &first);
1201 if ((status == NSS_STATUS_SUCCESS || status == NSS_STATUS_NOTFOUND
1202 || (status == NSS_STATUS_TRYAGAIN
1203 && (errno != ERANGE || *h_errnop != NO_RECOVERY)))
1204 && answer2 != NULL && anslen2 > 0)
1206 enum nss_status status2 = gaih_getanswer_slice(answer2, anslen2, qname,
1207 &pat, &buffer, &buflen,
1208 errnop, h_errnop, ttlp,
1209 &first);
1210 if (status != NSS_STATUS_SUCCESS && status2 != NSS_STATUS_NOTFOUND)
1211 status = status2;
1214 return status;