1 /* Copyright (C) 1996-2004, 2007-2009, 2010 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
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
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
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
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
82 #include <sys/syslog.h>
86 /* Get implementation for some internal functions. */
87 #include <resolv/mapv4v6addr.h>
88 #include <resolv/mapv4v6hostent.h>
92 /* Maximum number of aliases we allow. */
93 #define MAX_NR_ALIASES 48
94 #define MAX_NR_ADDRS 48
97 # define MAXPACKET PACKETSZ
99 # define MAXPACKET 65536
101 /* As per RFC 1034 and 1035 a host name cannot exceed 255 octets in length. */
102 #ifdef MAXHOSTNAMELEN
103 # undef MAXHOSTNAMELEN
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
115 u_char buf
[MAXPACKET
];
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
,
134 struct gaih_addrtuple
**pat
,
135 char *buffer
, size_t buflen
,
136 int *errnop
, int *h_errnop
,
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
,
145 hidden_proto (_nss_dns_gethostbyname3_r
)
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
)
157 querybuf
*orig_host_buffer
;
158 char tmp
[NS_MAXDNAME
];
163 enum nss_status status
;
165 if (__res_maybe_init (&_res
, 0) == -1)
166 return NSS_STATUS_UNAVAIL
;
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
)
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
);
204 status
= NSS_STATUS_TRYAGAIN
;
209 status
= NSS_STATUS_UNAVAIL
;
212 status
= NSS_STATUS_NOTFOUND
;
216 if (h_errno
== TRY_AGAIN
)
219 __set_errno (olderr
);
221 /* If we are looking for an IPv6 address and mapping is enabled
222 by having the RES_USE_INET6 bit in _res.options set, we try
224 if (af
== AF_INET6
&& (_res
.options
& RES_USE_INET6
))
225 n
= __libc_res_nsearch (&_res
, name
, C_IN
, T_A
, host_buffer
.buf
->buf
,
226 host_buffer
.buf
!= orig_host_buffer
227 ? MAXPACKET
: 1024, &host_buffer
.ptr
,
232 if (host_buffer
.buf
!= orig_host_buffer
)
233 free (host_buffer
.buf
);
239 result
->h_addrtype
= AF_INET
;
240 result
->h_length
= INADDRSZ
;
243 status
= getanswer_r (host_buffer
.buf
, n
, name
, type
, result
, buffer
, buflen
,
244 errnop
, h_errnop
, map
, ttlp
, canonp
);
245 if (host_buffer
.buf
!= orig_host_buffer
)
246 free (host_buffer
.buf
);
249 hidden_def (_nss_dns_gethostbyname3_r
)
253 _nss_dns_gethostbyname2_r (const char *name
, int af
, struct hostent
*result
,
254 char *buffer
, size_t buflen
, int *errnop
,
257 return _nss_dns_gethostbyname3_r (name
, af
, result
, buffer
, buflen
, errnop
,
258 h_errnop
, NULL
, NULL
);
263 _nss_dns_gethostbyname_r (const char *name
, struct hostent
*result
,
264 char *buffer
, size_t buflen
, int *errnop
,
267 enum nss_status status
= NSS_STATUS_NOTFOUND
;
269 if (_res
.options
& RES_USE_INET6
)
270 status
= _nss_dns_gethostbyname3_r (name
, AF_INET6
, result
, buffer
,
271 buflen
, errnop
, h_errnop
, NULL
, NULL
);
272 if (status
== NSS_STATUS_NOTFOUND
)
273 status
= _nss_dns_gethostbyname3_r (name
, AF_INET
, result
, buffer
,
274 buflen
, errnop
, h_errnop
, NULL
, NULL
);
281 _nss_dns_gethostbyname4_r (const char *name
, struct gaih_addrtuple
**pat
,
282 char *buffer
, size_t buflen
, int *errnop
,
283 int *herrnop
, int32_t *ttlp
)
285 if (__res_maybe_init (&_res
, 0) == -1)
286 return NSS_STATUS_UNAVAIL
;
289 * if there aren't any dots, it could be a user-level alias.
290 * this is also done in res_query() since we are not the only
291 * function that looks up host names.
293 if (strchr (name
, '.') == NULL
)
295 char *tmp
= alloca (NS_MAXDNAME
);
296 const char *cp
= res_hostalias (&_res
, name
, tmp
, NS_MAXDNAME
);
306 querybuf
*orig_host_buffer
;
307 host_buffer
.buf
= orig_host_buffer
= (querybuf
*) alloca (2048);
308 u_char
*ans2p
= NULL
;
313 enum nss_status status
;
314 int n
= __libc_res_nsearch (&_res
, name
, C_IN
, T_UNSPEC
,
315 host_buffer
.buf
->buf
, 2048, &host_buffer
.ptr
,
316 &ans2p
, &nans2p
, &resplen2
);
321 status
= NSS_STATUS_TRYAGAIN
;
325 status
= (errno
== ECONNREFUSED
326 ? NSS_STATUS_UNAVAIL
: NSS_STATUS_NOTFOUND
);
328 if (h_errno
== TRY_AGAIN
)
331 __set_errno (olderr
);
333 if (host_buffer
.buf
!= orig_host_buffer
)
334 free (host_buffer
.buf
);
339 status
= gaih_getanswer(host_buffer
.buf
, n
, (const querybuf
*) ans2p
,
340 resplen2
, name
, pat
, buffer
, buflen
,
341 errnop
, herrnop
, ttlp
);
343 if (host_buffer
.buf
!= orig_host_buffer
)
344 free (host_buffer
.buf
);
350 extern enum nss_status
_nss_dns_gethostbyaddr2_r (const void *addr
,
351 socklen_t len
, int af
,
352 struct hostent
*result
,
353 char *buffer
, size_t buflen
,
354 int *errnop
, int *h_errnop
,
356 hidden_proto (_nss_dns_gethostbyaddr2_r
)
359 _nss_dns_gethostbyaddr2_r (const void *addr
, socklen_t len
, int af
,
360 struct hostent
*result
, char *buffer
, size_t buflen
,
361 int *errnop
, int *h_errnop
, int32_t *ttlp
)
363 static const u_char mapped
[] = { 0,0, 0,0, 0,0, 0,0, 0,0, 0xff,0xff };
364 static const u_char tunnelled
[] = { 0,0, 0,0, 0,0, 0,0, 0,0, 0,0 };
365 static const u_char v6local
[] = { 0,0, 0,1 };
366 const u_char
*uaddr
= (const u_char
*)addr
;
369 char *aliases
[MAX_NR_ALIASES
];
370 unsigned char host_addr
[16]; /* IPv4 or IPv6 */
371 char *h_addr_ptrs
[MAX_NR_ADDRS
+ 1];
373 } *host_data
= (struct host_data
*) buffer
;
379 querybuf
*orig_host_buffer
;
380 char qbuf
[MAXDNAME
+1], *qp
= NULL
;
385 uintptr_t pad
= -(uintptr_t) buffer
% __alignof__ (struct host_data
);
387 buflen
= buflen
> pad
? buflen
- pad
: 0;
389 if (__builtin_expect (buflen
< sizeof (struct host_data
), 0))
392 *h_errnop
= NETDB_INTERNAL
;
393 return NSS_STATUS_TRYAGAIN
;
396 host_data
= (struct host_data
*) buffer
;
398 if (__res_maybe_init (&_res
, 0) == -1)
399 return NSS_STATUS_UNAVAIL
;
401 if (af
== AF_INET6
&& len
== IN6ADDRSZ
402 && (memcmp (uaddr
, mapped
, sizeof mapped
) == 0
403 || (memcmp (uaddr
, tunnelled
, sizeof tunnelled
) == 0
404 && memcmp (&uaddr
[sizeof tunnelled
], v6local
, sizeof v6local
))))
407 addr
+= sizeof mapped
;
408 uaddr
+= sizeof mapped
;
422 *errnop
= EAFNOSUPPORT
;
423 *h_errnop
= NETDB_INTERNAL
;
424 return NSS_STATUS_UNAVAIL
;
428 *errnop
= EAFNOSUPPORT
;
429 *h_errnop
= NETDB_INTERNAL
;
430 return NSS_STATUS_UNAVAIL
;
433 host_buffer
.buf
= orig_host_buffer
= (querybuf
*) alloca (1024);
438 sprintf (qbuf
, "%u.%u.%u.%u.in-addr.arpa", (uaddr
[3] & 0xff),
439 (uaddr
[2] & 0xff), (uaddr
[1] & 0xff), (uaddr
[0] & 0xff));
442 /* Only lookup with the byte string format if the user wants it. */
443 if (__builtin_expect (_res
.options
& RES_USEBSTRING
, 0))
445 qp
= stpcpy (qbuf
, "\\[x");
446 for (n
= 0; n
< IN6ADDRSZ
; ++n
)
447 qp
+= sprintf (qp
, "%02hhx", uaddr
[n
]);
448 strcpy (qp
, "].ip6.arpa");
449 n
= __libc_res_nquery (&_res
, qbuf
, C_IN
, T_PTR
,
450 host_buffer
.buf
->buf
, 1024, &host_buffer
.ptr
,
456 for (n
= IN6ADDRSZ
- 1; n
>= 0; n
--)
458 static const char nibblechar
[16] = "0123456789abcdef";
459 *qp
++ = nibblechar
[uaddr
[n
] & 0xf];
461 *qp
++ = nibblechar
[(uaddr
[n
] >> 4) & 0xf];
464 strcpy(qp
, "ip6.arpa");
471 n
= __libc_res_nquery (&_res
, qbuf
, C_IN
, T_PTR
, host_buffer
.buf
->buf
,
472 1024, &host_buffer
.ptr
, NULL
, NULL
, NULL
);
473 if (n
< 0 && af
== AF_INET6
&& (_res
.options
& RES_NOIP6DOTINT
) == 0)
475 strcpy (qp
, "ip6.int");
476 n
= __libc_res_nquery (&_res
, qbuf
, C_IN
, T_PTR
, host_buffer
.buf
->buf
,
477 host_buffer
.buf
!= orig_host_buffer
478 ? MAXPACKET
: 1024, &host_buffer
.ptr
,
484 __set_errno (olderr
);
485 if (host_buffer
.buf
!= orig_host_buffer
)
486 free (host_buffer
.buf
);
487 return errno
== ECONNREFUSED
? NSS_STATUS_UNAVAIL
: NSS_STATUS_NOTFOUND
;
491 status
= getanswer_r (host_buffer
.buf
, n
, qbuf
, T_PTR
, result
, buffer
, buflen
,
492 errnop
, h_errnop
, 0 /* XXX */, ttlp
, NULL
);
493 if (host_buffer
.buf
!= orig_host_buffer
)
494 free (host_buffer
.buf
);
495 if (status
!= NSS_STATUS_SUCCESS
)
499 This is
not implemented because it is
not possible to use the current
500 source from bind in a multi
-threaded program
.
503 result
->h_addrtype
= af
;
504 result
->h_length
= len
;
505 memcpy (host_data
->host_addr
, addr
, len
);
506 host_data
->h_addr_ptrs
[0] = (char *) host_data
->host_addr
;
507 host_data
->h_addr_ptrs
[1] = NULL
;
509 /* XXX I think this is wrong. Why should an IPv4 address be
510 converted to IPv6 if the user explicitly asked for IPv4? */
511 if (af
== AF_INET
&& (_res
.options
& RES_USE_INET6
))
513 map_v4v6_address ((char *) host_data
->host_addr
,
514 (char *) host_data
->host_addr
);
515 result
->h_addrtype
= AF_INET6
;
516 result
->h_length
= IN6ADDRSZ
;
519 *h_errnop
= NETDB_SUCCESS
;
520 return NSS_STATUS_SUCCESS
;
522 hidden_def (_nss_dns_gethostbyaddr2_r
)
526 _nss_dns_gethostbyaddr_r (const void *addr
, socklen_t len
, int af
,
527 struct hostent
*result
, char *buffer
, size_t buflen
,
528 int *errnop
, int *h_errnop
)
530 return _nss_dns_gethostbyaddr2_r (addr
, len
, af
, result
, buffer
, buflen
,
531 errnop
, h_errnop
, NULL
);
535 static void addrsort (char **ap
, int num
);
538 addrsort (char **ap
, int num
)
542 short aval
[MAX_NR_ADDRS
];
546 if (num
> MAX_NR_ADDRS
)
548 for (i
= 0; i
< num
; i
++, p
++)
550 for (j
= 0 ; (unsigned)j
< _res
.nsort
; j
++)
551 if (_res
.sort_list
[j
].addr
.s_addr
==
552 (((struct in_addr
*)(*p
))->s_addr
& _res
.sort_list
[j
].mask
))
555 if (needsort
== 0 && i
> 0 && j
< aval
[i
-1])
561 while (needsort
++ < num
)
562 for (j
= needsort
- 2; j
>= 0; j
--)
563 if (aval
[j
] > aval
[j
+1])
580 static enum nss_status
581 getanswer_r (const querybuf
*answer
, int anslen
, const char *qname
, int qtype
,
582 struct hostent
*result
, char *buffer
, size_t buflen
,
583 int *errnop
, int *h_errnop
, int map
, int32_t *ttlp
, char **canonp
)
587 char *aliases
[MAX_NR_ALIASES
];
588 unsigned char host_addr
[16]; /* IPv4 or IPv6 */
589 char *h_addr_ptrs
[0];
592 register const HEADER
*hp
;
593 const u_char
*end_of_message
, *cp
;
594 int n
, ancount
, qdcount
;
595 int haveanswer
, had_error
;
596 char *bp
, **ap
, **hap
;
599 int (*name_ok
) (const char *);
600 u_char packtmp
[NS_MAXCDNAME
];
602 uintptr_t pad
= -(uintptr_t) buffer
% __alignof__ (struct host_data
);
604 if (__builtin_expect (buflen
< sizeof (struct host_data
) + pad
, 0))
606 /* The buffer is too small. */
609 *h_errnop
= NETDB_INTERNAL
;
610 return NSS_STATUS_TRYAGAIN
;
612 host_data
= (struct host_data
*) buffer
;
613 linebuflen
= buflen
- sizeof (struct host_data
);
614 if (buflen
- sizeof (struct host_data
) != linebuflen
)
615 linebuflen
= INT_MAX
;
618 result
->h_name
= NULL
;
619 end_of_message
= answer
->buf
+ anslen
;
631 return NSS_STATUS_UNAVAIL
; /* XXX should be abort(); */
635 * find first satisfactory answer
638 ancount
= ntohs (hp
->ancount
);
639 qdcount
= ntohs (hp
->qdcount
);
640 cp
= answer
->buf
+ HFIXEDSZ
;
641 if (__builtin_expect (qdcount
, 1) != 1)
643 *h_errnop
= NO_RECOVERY
;
644 return NSS_STATUS_UNAVAIL
;
646 if (sizeof (struct host_data
) + (ancount
+ 1) * sizeof (char *) >= buflen
)
648 bp
= (char *) &host_data
->h_addr_ptrs
[ancount
+ 1];
649 linebuflen
-= (ancount
+ 1) * sizeof (char *);
651 n
= __ns_name_unpack (answer
->buf
, end_of_message
, cp
,
652 packtmp
, sizeof packtmp
);
653 if (n
!= -1 && __ns_name_ntop (packtmp
, bp
, linebuflen
) == -1)
655 if (__builtin_expect (errno
, 0) == EMSGSIZE
)
661 if (n
> 0 && bp
[0] == '.')
664 if (__builtin_expect (n
< 0 || ((*name_ok
) (bp
) == 0 && (errno
= EBADMSG
)),
668 *h_errnop
= NO_RECOVERY
;
669 return NSS_STATUS_UNAVAIL
;
673 if (qtype
== T_A
|| qtype
== T_AAAA
)
675 /* res_send() has already verified that the query name is the
676 * same as the one we sent; this just gets the expanded name
677 * (i.e., with the succeeding search-domain tacked on).
679 n
= strlen (bp
) + 1; /* for the \0 */
680 if (n
>= MAXHOSTNAMELEN
)
682 *h_errnop
= NO_RECOVERY
;
684 return NSS_STATUS_TRYAGAIN
;
691 /* The qname can be abbreviated, but h_name is now absolute. */
692 qname
= result
->h_name
;
695 ap
= host_data
->aliases
;
697 result
->h_aliases
= host_data
->aliases
;
698 hap
= host_data
->h_addr_ptrs
;
700 result
->h_addr_list
= host_data
->h_addr_ptrs
;
704 while (ancount
-- > 0 && cp
< end_of_message
&& had_error
== 0)
708 n
= __ns_name_unpack (answer
->buf
, end_of_message
, cp
,
709 packtmp
, sizeof packtmp
);
710 if (n
!= -1 && __ns_name_ntop (packtmp
, bp
, linebuflen
) == -1)
712 if (__builtin_expect (errno
, 0) == EMSGSIZE
)
718 if (__builtin_expect (n
< 0 || (*name_ok
) (bp
) == 0, 0))
725 if (__builtin_expect (cp
+ 10 > end_of_message
, 0))
731 type
= __ns_get16 (cp
);
732 cp
+= INT16SZ
; /* type */
733 class = __ns_get16 (cp
);
734 cp
+= INT16SZ
; /* class */
735 int32_t ttl
= __ns_get32 (cp
);
736 cp
+= INT32SZ
; /* TTL */
738 cp
+= INT16SZ
; /* len */
739 if (__builtin_expect (class != C_IN
, 0))
741 /* XXX - debug? syslog? */
743 continue; /* XXX - had_error++ ? */
746 if ((qtype
== T_A
|| qtype
== T_AAAA
) && type
== T_CNAME
)
748 if (ap
>= &host_data
->aliases
[MAX_NR_ALIASES
- 1])
750 n
= dn_expand (answer
->buf
, end_of_message
, cp
, tbuf
, sizeof tbuf
);
751 if (__builtin_expect (n
< 0 || (*name_ok
) (tbuf
) == 0, 0))
759 n
= strlen (bp
) + 1; /* For the \0. */
760 if (__builtin_expect (n
, 0) >= MAXHOSTNAMELEN
)
767 /* Get canonical name. */
768 n
= strlen (tbuf
) + 1; /* For the \0. */
769 if (__builtin_expect (n
> linebuflen
, 0))
771 if (__builtin_expect (n
, 0) >= MAXHOSTNAMELEN
)
777 bp
= __mempcpy (bp
, tbuf
, n
); /* Cannot overflow. */
782 if (qtype
== T_PTR
&& type
== T_CNAME
)
784 n
= dn_expand (answer
->buf
, end_of_message
, cp
, tbuf
, sizeof tbuf
);
785 if (__builtin_expect (n
< 0 || res_dnok (tbuf
) == 0, 0))
791 /* Get canonical name. */
792 n
= strlen (tbuf
) + 1; /* For the \0. */
793 if (__builtin_expect (n
> linebuflen
, 0))
795 if (__builtin_expect (n
, 0) >= MAXHOSTNAMELEN
)
801 bp
= __mempcpy (bp
, tbuf
, n
); /* Cannot overflow. */
805 if (__builtin_expect (type
== T_SIG
, 0)
806 || __builtin_expect (type
== T_KEY
, 0)
807 || __builtin_expect (type
== T_NXT
, 0))
809 /* We don't support DNSSEC yet. For now, ignore the record
810 and send a low priority message to syslog. */
811 syslog (LOG_DEBUG
| LOG_AUTH
,
812 "gethostby*.getanswer: asked for \"%s %s %s\", got type \"%s\"",
813 qname
, p_class (C_IN
), p_type(qtype
), p_type (type
));
818 if (type
== T_A
&& qtype
== T_AAAA
&& map
)
820 else if (__builtin_expect (type
!= qtype
, 0))
822 syslog (LOG_NOTICE
| LOG_AUTH
,
823 "gethostby*.getanswer: asked for \"%s %s %s\", got type \"%s\"",
824 qname
, p_class (C_IN
), p_type (qtype
), p_type (type
));
826 continue; /* XXX - had_error++ ? */
832 if (__builtin_expect (strcasecmp (tname
, bp
) != 0, 0))
834 syslog (LOG_NOTICE
| LOG_AUTH
, AskedForGot
, qname
, bp
);
836 continue; /* XXX - had_error++ ? */
839 n
= __ns_name_unpack (answer
->buf
, end_of_message
, cp
,
840 packtmp
, sizeof packtmp
);
841 if (n
!= -1 && __ns_name_ntop (packtmp
, bp
, linebuflen
) == -1)
843 if (__builtin_expect (errno
, 0) == EMSGSIZE
)
849 if (__builtin_expect (n
< 0 || res_hnok (bp
) == 0, 0))
854 #if MULTI_PTRS_ARE_ALIASES
858 else if (ap
< &host_data
->aliases
[MAXALIASES
-1])
864 n
= strlen (bp
) + 1; /* for the \0 */
865 if (__builtin_expect (n
, 0) >= MAXHOSTNAMELEN
)
878 n
= strlen (bp
) + 1; /* for the \0 */
879 if (__builtin_expect (n
>= MAXHOSTNAMELEN
, 0))
886 if (map_v4v6_hostent (result
, &bp
, &linebuflen
))
889 *h_errnop
= NETDB_SUCCESS
;
890 return NSS_STATUS_SUCCESS
;
894 if (__builtin_expect (strcasecmp (result
->h_name
, bp
), 0) != 0)
896 syslog (LOG_NOTICE
| LOG_AUTH
, AskedForGot
, result
->h_name
, bp
);
898 continue; /* XXX - had_error++ ? */
900 if (n
!= result
->h_length
)
914 nn
= strlen (bp
) + 1; /* for the \0 */
919 linebuflen
-= sizeof (align
) - ((u_long
) bp
% sizeof (align
));
920 bp
+= sizeof (align
) - ((u_long
) bp
% sizeof (align
));
922 if (__builtin_expect (n
> linebuflen
, 0))
924 bp
= __mempcpy (*hap
++ = bp
, cp
, n
);
939 #if defined RESOLVSORT
941 * Note: we sort even if host can take only one address
942 * in its return structures - should give it the "best"
943 * address in that case, not some random one
945 if (_res
.nsort
&& haveanswer
> 1 && qtype
== T_A
)
946 addrsort (host_data
->h_addr_ptrs
, haveanswer
);
947 #endif /*RESOLVSORT*/
949 if (result
->h_name
== NULL
)
951 n
= strlen (qname
) + 1; /* For the \0. */
954 if (n
>= MAXHOSTNAMELEN
)
957 bp
= __mempcpy (bp
, qname
, n
); /* Cannot overflow. */
962 if (map_v4v6_hostent (result
, &bp
, &linebuflen
))
964 *h_errnop
= NETDB_SUCCESS
;
965 return NSS_STATUS_SUCCESS
;
968 *h_errnop
= NO_RECOVERY
;
970 /* Special case here: if the resolver sent a result but it only
971 contains a CNAME while we are looking for a T_A or T_AAAA record,
972 we fail with NOTFOUND instead of TRYAGAIN. */
973 return ((qtype
== T_A
|| qtype
== T_AAAA
) && ap
!= host_data
->aliases
974 ? NSS_STATUS_NOTFOUND
: NSS_STATUS_TRYAGAIN
);
978 static enum nss_status
979 gaih_getanswer_slice (const querybuf
*answer
, int anslen
, const char *qname
,
980 struct gaih_addrtuple
***patp
,
981 char **bufferp
, size_t *buflenp
,
982 int *errnop
, int *h_errnop
, int32_t *ttlp
, int *firstp
)
984 char *buffer
= *bufferp
;
985 size_t buflen
= *buflenp
;
987 struct gaih_addrtuple
**pat
= *patp
;
988 const HEADER
*hp
= &answer
->hdr
;
989 int ancount
= ntohs (hp
->ancount
);
990 int qdcount
= ntohs (hp
->qdcount
);
991 const u_char
*cp
= answer
->buf
+ HFIXEDSZ
;
992 const u_char
*end_of_message
= answer
->buf
+ anslen
;
993 if (__builtin_expect (qdcount
!= 1, 0))
995 *h_errnop
= NO_RECOVERY
;
996 return NSS_STATUS_UNAVAIL
;
999 u_char packtmp
[NS_MAXCDNAME
];
1000 int n
= __ns_name_unpack (answer
->buf
, end_of_message
, cp
,
1001 packtmp
, sizeof packtmp
);
1002 /* We unpack the name to check it for validity. But we do not need
1004 if (n
!= -1 && __ns_name_ntop (packtmp
, buffer
, buflen
) == -1)
1006 if (__builtin_expect (errno
, 0) == EMSGSIZE
)
1010 *h_errnop
= NETDB_INTERNAL
;
1011 return NSS_STATUS_TRYAGAIN
;
1017 if (__builtin_expect (n
< 0 || (res_hnok (buffer
) == 0
1018 && (errno
= EBADMSG
)), 0))
1021 *h_errnop
= NO_RECOVERY
;
1022 return NSS_STATUS_UNAVAIL
;
1029 char *h_name
= NULL
;
1033 return NSS_STATUS_NOTFOUND
;
1035 while (ancount
-- > 0 && cp
< end_of_message
&& had_error
== 0)
1037 n
= __ns_name_unpack (answer
->buf
, end_of_message
, cp
,
1038 packtmp
, sizeof packtmp
);
1040 (h_namelen
= __ns_name_ntop (packtmp
, buffer
, buflen
)) == -1)
1042 if (__builtin_expect (errno
, 0) == EMSGSIZE
)
1047 if (__builtin_expect (n
< 0 || res_hnok (buffer
) == 0, 0))
1052 if (*firstp
&& canon
== NULL
)
1055 buffer
+= h_namelen
;
1056 buflen
-= h_namelen
;
1061 if (__builtin_expect (cp
+ 10 > end_of_message
, 0))
1067 int type
= __ns_get16 (cp
);
1068 cp
+= INT16SZ
; /* type */
1069 int class = __ns_get16 (cp
);
1070 cp
+= INT16SZ
; /* class */
1071 int32_t ttl
= __ns_get32 (cp
);
1072 cp
+= INT32SZ
; /* TTL */
1073 n
= __ns_get16 (cp
);
1074 cp
+= INT16SZ
; /* len */
1082 if (type
== T_CNAME
)
1084 char tbuf
[MAXDNAME
];
1085 n
= dn_expand (answer
->buf
, end_of_message
, cp
, tbuf
, sizeof tbuf
);
1086 if (__builtin_expect (n
< 0 || res_hnok (tbuf
) == 0, 0))
1095 /* Reclaim buffer space. */
1096 if (h_name
+ h_namelen
== buffer
)
1099 buflen
+= h_namelen
;
1102 n
= strlen (tbuf
) + 1;
1103 if (__builtin_expect (n
> buflen
, 0))
1105 if (__builtin_expect (n
>= MAXHOSTNAMELEN
, 0))
1112 buffer
= __mempcpy (buffer
, tbuf
, n
);
1119 // We should not see any types other than those explicitly listed
1120 // below. Some types sent by server seem missing, though. Just
1121 // collect the data for now.
1122 if (__builtin_expect (type
!= T_A
&& type
!= T_AAAA
, 0))
1124 if (__builtin_expect (type
== T_SIG
, 0)
1125 || __builtin_expect (type
== T_KEY
, 0)
1126 || __builtin_expect (type
== T_NXT
, 0)
1127 || __builtin_expect (type
== T_PTR
, 0)
1128 || __builtin_expect (type
== T_DNAME
, 0))
1131 /* We don't support DNSSEC yet. For now, ignore the record
1132 and send a low priority message to syslog.
1134 We also don't expect T_PTR or T_DNAME messages. */
1135 syslog (LOG_DEBUG
| LOG_AUTH
,
1136 "getaddrinfo*.gaih_getanswer: got type \"%s\"",
1141 if (type
!= T_A
&& type
!= T_AAAA
)
1146 uintptr_t pad
= (-(uintptr_t) buffer
1147 % __alignof__ (struct gaih_addrtuple
));
1149 buflen
= buflen
> pad
? buflen
- pad
: 0;
1151 if (__builtin_expect (buflen
< sizeof (struct gaih_addrtuple
),
1155 *pat
= (struct gaih_addrtuple
*) buffer
;
1156 buffer
+= sizeof (struct gaih_addrtuple
);
1157 buflen
-= sizeof (struct gaih_addrtuple
);
1160 (*pat
)->name
= NULL
;
1161 (*pat
)->next
= NULL
;
1168 (*pat
)->name
= canon
?: h_name
;
1173 (*pat
)->family
= type
== T_A
? AF_INET
: AF_INET6
;
1174 if (__builtin_expect ((type
== T_A
&& n
!= INADDRSZ
)
1175 || (type
== T_AAAA
&& n
!= IN6ADDRSZ
), 0))
1180 memcpy ((*pat
)->addr
, cp
, n
);
1182 (*pat
)->scopeid
= 0;
1184 pat
= &((*pat
)->next
);
1195 *h_errnop
= NETDB_SUCCESS
;
1196 return NSS_STATUS_SUCCESS
;
1199 /* Special case here: if the resolver sent a result but it only
1200 contains a CNAME while we are looking for a T_A or T_AAAA record,
1201 we fail with NOTFOUND instead of TRYAGAIN. */
1202 return canon
== NULL
? NSS_STATUS_TRYAGAIN
: NSS_STATUS_NOTFOUND
;
1206 static enum nss_status
1207 gaih_getanswer (const querybuf
*answer1
, int anslen1
, const querybuf
*answer2
,
1208 int anslen2
, const char *qname
,
1209 struct gaih_addrtuple
**pat
, char *buffer
, size_t buflen
,
1210 int *errnop
, int *h_errnop
, int32_t *ttlp
)
1214 enum nss_status status
= NSS_STATUS_NOTFOUND
;
1217 status
= gaih_getanswer_slice(answer1
, anslen1
, qname
,
1218 &pat
, &buffer
, &buflen
,
1219 errnop
, h_errnop
, ttlp
,
1221 if ((status
== NSS_STATUS_SUCCESS
|| status
== NSS_STATUS_NOTFOUND
1222 || (status
== NSS_STATUS_TRYAGAIN
1223 && (errno
!= ERANGE
|| *h_errnop
!= NO_RECOVERY
)))
1224 && answer2
!= NULL
&& anslen2
> 0)
1226 enum nss_status status2
= gaih_getanswer_slice(answer2
, anslen2
, qname
,
1227 &pat
, &buffer
, &buflen
,
1228 errnop
, h_errnop
, ttlp
,
1230 if (status
!= NSS_STATUS_SUCCESS
&& status2
!= NSS_STATUS_NOTFOUND
)