1 /* $NetBSD: getaddrinfo.c,v 1.94 2009/10/02 06:49:23 cegger Exp $ */
2 /* $KAME: getaddrinfo.c,v 1.29 2000/08/31 17:26:57 itojun Exp $ */
5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the project nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * Issues to be discussed:
35 * - Return values. There are nonstandard return values defined and used
36 * in the source code. This is because RFC2553 is silent about which error
37 * code must be returned for which situation.
38 * - IPv4 classful (shortened) form. RFC2553 is silent about it. XNET 5.2
39 * says to use inet_aton() to convert IPv4 numeric to binary (alows
40 * classful form as a result).
41 * current code - disallow classful form for IPv4 (due to use of inet_pton).
42 * - freeaddrinfo(NULL). RFC2553 is silent about it. XNET 5.2 says it is
44 * current code - SEGV on freeaddrinfo(NULL)
46 * - The code filters out AFs that are not supported by the kernel,
47 * when globbing NULL hostname (to loopback, or wildcard). Is it the right
48 * thing to do? What is the relationship with post-RFC2553 AI_ADDRCONFIG
50 * - (post-2553) semantics of AI_ADDRCONFIG itself is too vague.
51 * (1) what should we do against numeric hostname (2) what should we do
52 * against NULL hostname (3) what is AI_ADDRCONFIG itself. AF not ready?
53 * non-loopback address configured? global address configured?
56 #include <sys/cdefs.h>
57 #if defined(LIBC_SCCS) && !defined(lint)
58 __RCSID("$NetBSD: getaddrinfo.c,v 1.94 2009/10/02 06:49:23 cegger Exp $");
59 #endif /* LIBC_SCCS and not lint */
61 #include "namespace.h"
62 #include <sys/types.h>
63 #include <sys/param.h>
64 #include <sys/socket.h>
66 #include <netinet/in.h>
67 #include <arpa/inet.h>
68 #include <arpa/nameser.h>
86 #include <rpcsvc/yp_prot.h>
87 #include <rpcsvc/ypclnt.h>
93 __weak_alias(getaddrinfo
,_getaddrinfo
)
94 __weak_alias(freeaddrinfo
,_freeaddrinfo
)
95 __weak_alias(gai_strerror
,_gai_strerror
)
103 static const char in_addrany
[] = { 0, 0, 0, 0 };
104 static const char in_loopback
[] = { 127, 0, 0, 1 };
106 static const char in6_addrany
[] = {
107 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
109 static const char in6_loopback
[] = {
110 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1
114 static const struct afd
{
119 const char *a_addrany
;
120 const char *a_loopback
;
124 {PF_INET6
, sizeof(struct in6_addr
),
125 sizeof(struct sockaddr_in6
),
126 offsetof(struct sockaddr_in6
, sin6_addr
),
127 in6_addrany
, in6_loopback
, 1},
129 {PF_INET
, sizeof(struct in_addr
),
130 sizeof(struct sockaddr_in
),
131 offsetof(struct sockaddr_in
, sin_addr
),
132 in_addrany
, in_loopback
, 0},
133 {0, 0, 0, 0, NULL
, NULL
, 0},
140 const char *e_protostr
;
142 #define WILD_AF(ex) ((ex)->e_wild & 0x01)
143 #define WILD_SOCKTYPE(ex) ((ex)->e_wild & 0x02)
144 #define WILD_PROTOCOL(ex) ((ex)->e_wild & 0x04)
147 static const struct explore explore
[] = {
149 { PF_LOCAL
, 0, ANY
, ANY
, NULL
, 0x01 },
152 { PF_INET6
, SOCK_DGRAM
, IPPROTO_UDP
, "udp", 0x07 },
153 { PF_INET6
, SOCK_STREAM
, IPPROTO_TCP
, "tcp", 0x07 },
154 { PF_INET6
, SOCK_RAW
, ANY
, NULL
, 0x05 },
156 { PF_INET
, SOCK_DGRAM
, IPPROTO_UDP
, "udp", 0x07 },
157 { PF_INET
, SOCK_STREAM
, IPPROTO_TCP
, "tcp", 0x07 },
158 { PF_INET
, SOCK_RAW
, ANY
, NULL
, 0x05 },
159 { PF_UNSPEC
, SOCK_DGRAM
, IPPROTO_UDP
, "udp", 0x07 },
160 { PF_UNSPEC
, SOCK_STREAM
, IPPROTO_TCP
, "tcp", 0x07 },
161 { PF_UNSPEC
, SOCK_RAW
, ANY
, NULL
, 0x05 },
162 { -1, 0, 0, NULL
, 0 },
171 static const ns_src default_dns_files
[] = {
172 { NSSRC_FILES
, NS_SUCCESS
},
173 { NSSRC_DNS
, NS_SUCCESS
},
177 #define MAXPACKET (64*1024)
181 u_char buf
[MAXPACKET
];
185 struct res_target
*next
;
186 const char *name
; /* domain name */
187 int qclass
, qtype
; /* class and type of query */
188 u_char
*answer
; /* buffer to put answer */
189 int anslen
; /* size of answer buffer */
190 int n
; /* result length */
193 static int str2number(const char *);
194 static int explore_fqdn(const struct addrinfo
*, const char *,
195 const char *, struct addrinfo
**, struct servent_data
*);
196 static int explore_null(const struct addrinfo
*,
197 const char *, struct addrinfo
**, struct servent_data
*);
198 static int explore_numeric(const struct addrinfo
*, const char *,
199 const char *, struct addrinfo
**, const char *, struct servent_data
*);
200 static int explore_numeric_scope(const struct addrinfo
*, const char *,
201 const char *, struct addrinfo
**, struct servent_data
*);
202 static int get_canonname(const struct addrinfo
*,
203 struct addrinfo
*, const char *);
204 static struct addrinfo
*get_ai(const struct addrinfo
*,
205 const struct afd
*, const char *);
206 static int get_portmatch(const struct addrinfo
*, const char *,
207 struct servent_data
*);
208 static int get_port(const struct addrinfo
*, const char *, int,
209 struct servent_data
*);
210 static const struct afd
*find_afd(int);
212 static int ip6_str2scopeid(char *, struct sockaddr_in6
*, u_int32_t
*);
215 static struct addrinfo
*getanswer(const querybuf
*, int, const char *, int,
216 const struct addrinfo
*);
217 static void aisort(struct addrinfo
*s
, res_state res
);
218 static int _dns_getaddrinfo(void *, void *, va_list);
219 static void _sethtent(FILE **);
220 static void _endhtent(FILE **);
221 static struct addrinfo
*_gethtent(FILE **, const char *,
222 const struct addrinfo
*);
223 static int _files_getaddrinfo(void *, void *, va_list);
225 static struct addrinfo
*_yphostent(char *, const struct addrinfo
*);
226 static int _yp_getaddrinfo(void *, void *, va_list);
229 static int res_queryN(const char *, struct res_target
*, res_state
);
230 static int res_searchN(const char *, struct res_target
*, res_state
);
231 static int res_querydomainN(const char *, const char *,
232 struct res_target
*, res_state
);
234 static const char * const ai_errlist
[] = {
236 "Address family for hostname not supported", /* EAI_ADDRFAMILY */
237 "Temporary failure in name resolution", /* EAI_AGAIN */
238 "Invalid value for ai_flags", /* EAI_BADFLAGS */
239 "Non-recoverable failure in name resolution", /* EAI_FAIL */
240 "ai_family not supported", /* EAI_FAMILY */
241 "Memory allocation failure", /* EAI_MEMORY */
242 "No address associated with hostname", /* EAI_NODATA */
243 "hostname nor servname provided, or not known", /* EAI_NONAME */
244 "servname not supported for ai_socktype", /* EAI_SERVICE */
245 "ai_socktype not supported", /* EAI_SOCKTYPE */
246 "System error returned in errno", /* EAI_SYSTEM */
247 "Invalid value for hints", /* EAI_BADHINTS */
248 "Resolved protocol is unknown", /* EAI_PROTOCOL */
249 "Argument buffer overflow", /* EAI_OVERFLOW */
250 "Unknown error", /* EAI_MAX */
253 /* XXX macros that make external reference is BAD. */
255 #define GET_AI(ai, afd, addr) \
257 /* external reference: pai, error, and label free */ \
258 (ai) = get_ai(pai, (afd), (addr)); \
259 if ((ai) == NULL) { \
260 error = EAI_MEMORY; \
263 } while (/*CONSTCOND*/0)
265 #define GET_PORT(ai, serv, svd) \
267 /* external reference: error and label free */ \
268 error = get_port((ai), (serv), 0, (svd)); \
271 } while (/*CONSTCOND*/0)
273 #define GET_CANONNAME(ai, str) \
275 /* external reference: pai, error and label free */ \
276 error = get_canonname(pai, (ai), (str)); \
279 } while (/*CONSTCOND*/0)
283 /* external reference: error, and label bad */ \
287 } while (/*CONSTCOND*/0)
289 #define MATCH_FAMILY(x, y, w) \
290 ((x) == (y) || (/*CONSTCOND*/(w) && ((x) == PF_UNSPEC || \
292 #define MATCH(x, y, w) \
293 ((x) == (y) || (/*CONSTCOND*/(w) && ((x) == ANY || (y) == ANY)))
296 gai_strerror(int ecode
)
298 if (ecode
< 0 || ecode
> EAI_MAX
)
300 return ai_errlist
[ecode
];
304 freeaddrinfo(struct addrinfo
*ai
)
306 struct addrinfo
*next
;
308 _DIAGASSERT(ai
!= NULL
);
312 if (ai
->ai_canonname
)
313 free(ai
->ai_canonname
);
314 /* no need to free(ai->ai_addr) */
321 str2number(const char *p
)
326 _DIAGASSERT(p
!= NULL
);
332 v
= strtoul(p
, &ep
, 10);
333 if (errno
== 0 && ep
&& *ep
== '\0' && v
<= UINT_MAX
)
340 getaddrinfo(const char *hostname
, const char *servname
,
341 const struct addrinfo
*hints
, struct addrinfo
**res
)
343 struct addrinfo sentinel
;
344 struct addrinfo
*cur
;
348 struct addrinfo
*pai
;
349 const struct explore
*ex
;
350 struct servent_data svd
;
352 /* hostname is allowed to be NULL */
353 /* servname is allowed to be NULL */
354 /* hints is allowed to be NULL */
355 _DIAGASSERT(res
!= NULL
);
357 (void)memset(&svd
, 0, sizeof(svd
));
358 memset(&sentinel
, 0, sizeof(sentinel
));
360 memset(&ai
, 0, sizeof(ai
));
363 pai
->ai_family
= PF_UNSPEC
;
364 pai
->ai_socktype
= ANY
;
365 pai
->ai_protocol
= ANY
;
367 pai
->ai_canonname
= NULL
;
371 if (hostname
== NULL
&& servname
== NULL
)
374 /* error check for hints */
375 if (hints
->ai_addrlen
|| hints
->ai_canonname
||
376 hints
->ai_addr
|| hints
->ai_next
)
377 ERR(EAI_BADHINTS
); /* xxx */
378 if (hints
->ai_flags
& ~AI_MASK
)
380 switch (hints
->ai_family
) {
390 memcpy(pai
, hints
, sizeof(*pai
));
393 * if both socktype/protocol are specified, check if they
394 * are meaningful combination.
396 if (pai
->ai_socktype
!= ANY
&& pai
->ai_protocol
!= ANY
) {
397 for (ex
= explore
; ex
->e_af
>= 0; ex
++) {
398 if (pai
->ai_family
!= ex
->e_af
)
400 if (ex
->e_socktype
== ANY
)
402 if (ex
->e_protocol
== ANY
)
404 if (pai
->ai_socktype
== ex
->e_socktype
405 && pai
->ai_protocol
!= ex
->e_protocol
) {
413 * check for special cases. (1) numeric servname is disallowed if
414 * socktype/protocol are left unspecified. (2) servname is disallowed
415 * for raw and other inet{,6} sockets.
417 if (MATCH_FAMILY(pai
->ai_family
, PF_INET
, 1)
419 || MATCH_FAMILY(pai
->ai_family
, PF_INET6
, 1)
422 ai0
= *pai
; /* backup *pai */
424 if (pai
->ai_family
== PF_UNSPEC
) {
426 pai
->ai_family
= PF_INET6
;
428 pai
->ai_family
= PF_INET
;
431 error
= get_portmatch(pai
, servname
, &svd
);
440 /* NULL hostname, or numeric hostname */
441 for (ex
= explore
; ex
->e_af
>= 0; ex
++) {
444 /* PF_UNSPEC entries are prepared for DNS queries only */
445 if (ex
->e_af
== PF_UNSPEC
)
448 if (!MATCH_FAMILY(pai
->ai_family
, ex
->e_af
, WILD_AF(ex
)))
450 if (!MATCH(pai
->ai_socktype
, ex
->e_socktype
, WILD_SOCKTYPE(ex
)))
452 if (!MATCH(pai
->ai_protocol
, ex
->e_protocol
, WILD_PROTOCOL(ex
)))
455 if (pai
->ai_family
== PF_UNSPEC
)
456 pai
->ai_family
= ex
->e_af
;
457 if (pai
->ai_socktype
== ANY
&& ex
->e_socktype
!= ANY
)
458 pai
->ai_socktype
= ex
->e_socktype
;
459 if (pai
->ai_protocol
== ANY
&& ex
->e_protocol
!= ANY
)
460 pai
->ai_protocol
= ex
->e_protocol
;
462 if (hostname
== NULL
)
463 error
= explore_null(pai
, servname
, &cur
->ai_next
,
466 error
= explore_numeric_scope(pai
, hostname
, servname
,
467 &cur
->ai_next
, &svd
);
478 * If numeric representation of AF1 can be interpreted as FQDN
479 * representation of AF2, we need to think again about the code below.
481 if (sentinel
.ai_next
)
484 if (hostname
== NULL
)
486 if (pai
->ai_flags
& AI_NUMERICHOST
)
490 * hostname as alphabetical name.
491 * we would like to prefer AF_INET6 than AF_INET, so we'll make a
494 for (ex
= explore
; ex
->e_af
>= 0; ex
++) {
497 /* require exact match for family field */
498 if (pai
->ai_family
!= ex
->e_af
)
501 if (!MATCH(pai
->ai_socktype
, ex
->e_socktype
,
502 WILD_SOCKTYPE(ex
))) {
505 if (!MATCH(pai
->ai_protocol
, ex
->e_protocol
,
506 WILD_PROTOCOL(ex
))) {
510 if (pai
->ai_socktype
== ANY
&& ex
->e_socktype
!= ANY
)
511 pai
->ai_socktype
= ex
->e_socktype
;
512 if (pai
->ai_protocol
== ANY
&& ex
->e_protocol
!= ANY
)
513 pai
->ai_protocol
= ex
->e_protocol
;
515 error
= explore_fqdn(pai
, hostname
, servname
, &cur
->ai_next
,
518 while (cur
&& cur
->ai_next
)
523 if (sentinel
.ai_next
)
529 if (sentinel
.ai_next
) {
532 *res
= sentinel
.ai_next
;
539 if (sentinel
.ai_next
)
540 freeaddrinfo(sentinel
.ai_next
);
546 * FQDN hostname, DNS lookup
549 explore_fqdn(const struct addrinfo
*pai
, const char *hostname
,
550 const char *servname
, struct addrinfo
**res
, struct servent_data
*svd
)
552 struct addrinfo
*result
;
553 struct addrinfo
*cur
;
555 static const ns_dtab dtab
[] = {
556 NS_FILES_CB(_files_getaddrinfo
, NULL
)
557 { NSSRC_DNS
, _dns_getaddrinfo
, NULL
}, /* force -DHESIOD */
558 NS_NIS_CB(_yp_getaddrinfo
, NULL
)
562 _DIAGASSERT(pai
!= NULL
);
563 /* hostname may be NULL */
564 /* servname may be NULL */
565 _DIAGASSERT(res
!= NULL
);
570 * if the servname does not match socktype/protocol, ignore it.
572 if (get_portmatch(pai
, servname
, svd
) != 0)
575 switch (nsdispatch(&result
, dtab
, NSDB_HOSTS
, "getaddrinfo",
576 default_dns_files
, hostname
, pai
)) {
588 for (cur
= result
; cur
; cur
= cur
->ai_next
) {
589 GET_PORT(cur
, servname
, svd
);
590 /* canonname should be filled already */
601 freeaddrinfo(result
);
607 * passive socket -> anyaddr (0.0.0.0 or ::)
608 * non-passive socket -> localhost (127.0.0.1 or ::1)
611 explore_null(const struct addrinfo
*pai
, const char *servname
,
612 struct addrinfo
**res
, struct servent_data
*svd
)
615 const struct afd
*afd
;
616 struct addrinfo
*cur
;
617 struct addrinfo sentinel
;
620 _DIAGASSERT(pai
!= NULL
);
621 /* servname may be NULL */
622 _DIAGASSERT(res
!= NULL
);
625 sentinel
.ai_next
= NULL
;
629 * filter out AFs that are not supported by the kernel
632 s
= socket(pai
->ai_family
, SOCK_DGRAM
, 0);
640 * if the servname does not match socktype/protocol, ignore it.
642 if (get_portmatch(pai
, servname
, svd
) != 0)
645 afd
= find_afd(pai
->ai_family
);
649 if (pai
->ai_flags
& AI_PASSIVE
) {
650 GET_AI(cur
->ai_next
, afd
, afd
->a_addrany
);
652 * GET_CANONNAME(cur->ai_next, "anyaddr");
654 GET_PORT(cur
->ai_next
, servname
, svd
);
656 GET_AI(cur
->ai_next
, afd
, afd
->a_loopback
);
658 * GET_CANONNAME(cur->ai_next, "localhost");
660 GET_PORT(cur
->ai_next
, servname
, svd
);
664 *res
= sentinel
.ai_next
;
668 if (sentinel
.ai_next
)
669 freeaddrinfo(sentinel
.ai_next
);
677 explore_numeric(const struct addrinfo
*pai
, const char *hostname
,
678 const char *servname
, struct addrinfo
**res
, const char *canonname
,
679 struct servent_data
*svd
)
681 const struct afd
*afd
;
682 struct addrinfo
*cur
;
683 struct addrinfo sentinel
;
687 _DIAGASSERT(pai
!= NULL
);
688 /* hostname may be NULL */
689 /* servname may be NULL */
690 _DIAGASSERT(res
!= NULL
);
693 sentinel
.ai_next
= NULL
;
697 * if the servname does not match socktype/protocol, ignore it.
699 if (get_portmatch(pai
, servname
, svd
) != 0)
702 afd
= find_afd(pai
->ai_family
);
707 #if 0 /*X/Open spec*/
709 if (inet_aton(hostname
, (struct in_addr
*)pton
) == 1) {
710 if (pai
->ai_family
== afd
->a_af
||
711 pai
->ai_family
== PF_UNSPEC
/*?*/) {
712 GET_AI(cur
->ai_next
, afd
, pton
);
713 GET_PORT(cur
->ai_next
, servname
, svd
);
714 if ((pai
->ai_flags
& AI_CANONNAME
)) {
716 * Set the numeric address itself as
717 * the canonical name, based on a
718 * clarification in rfc2553bis-03.
720 GET_CANONNAME(cur
->ai_next
, canonname
);
722 while (cur
&& cur
->ai_next
)
725 ERR(EAI_FAMILY
); /*xxx*/
730 if (inet_pton(afd
->a_af
, hostname
, pton
) == 1) {
731 if (pai
->ai_family
== afd
->a_af
||
732 pai
->ai_family
== PF_UNSPEC
/*?*/) {
733 GET_AI(cur
->ai_next
, afd
, pton
);
734 GET_PORT(cur
->ai_next
, servname
, svd
);
735 if ((pai
->ai_flags
& AI_CANONNAME
)) {
737 * Set the numeric address itself as
738 * the canonical name, based on a
739 * clarification in rfc2553bis-03.
741 GET_CANONNAME(cur
->ai_next
, canonname
);
746 ERR(EAI_FAMILY
); /*xxx*/
751 *res
= sentinel
.ai_next
;
756 if (sentinel
.ai_next
)
757 freeaddrinfo(sentinel
.ai_next
);
762 * numeric hostname with scope
765 explore_numeric_scope(const struct addrinfo
*pai
, const char *hostname
,
766 const char *servname
, struct addrinfo
**res
, struct servent_data
*svd
)
768 #if !defined(SCOPE_DELIMITER) || !defined(INET6)
769 return explore_numeric(pai
, hostname
, servname
, res
, hostname
, svd
);
771 const struct afd
*afd
;
772 struct addrinfo
*cur
;
774 char *cp
, *hostname2
= NULL
, *scope
, *addr
;
775 struct sockaddr_in6
*sin6
;
777 _DIAGASSERT(pai
!= NULL
);
778 /* hostname may be NULL */
779 /* servname may be NULL */
780 _DIAGASSERT(res
!= NULL
);
783 * if the servname does not match socktype/protocol, ignore it.
785 if (get_portmatch(pai
, servname
, svd
) != 0)
788 afd
= find_afd(pai
->ai_family
);
793 return explore_numeric(pai
, hostname
, servname
, res
, hostname
,
796 cp
= strchr(hostname
, SCOPE_DELIMITER
);
798 return explore_numeric(pai
, hostname
, servname
, res
, hostname
,
802 * Handle special case of <scoped_address><delimiter><scope id>
804 hostname2
= strdup(hostname
);
805 if (hostname2
== NULL
)
807 /* terminate at the delimiter */
808 hostname2
[cp
- hostname
] = '\0';
812 error
= explore_numeric(pai
, addr
, servname
, res
, hostname
, svd
);
816 for (cur
= *res
; cur
; cur
= cur
->ai_next
) {
817 if (cur
->ai_family
!= AF_INET6
)
819 sin6
= (struct sockaddr_in6
*)(void *)cur
->ai_addr
;
820 if (ip6_str2scopeid(scope
, sin6
, &scopeid
) == -1) {
822 return(EAI_NODATA
); /* XXX: is return OK? */
824 sin6
->sin6_scope_id
= scopeid
;
835 get_canonname(const struct addrinfo
*pai
, struct addrinfo
*ai
, const char *str
)
838 _DIAGASSERT(pai
!= NULL
);
839 _DIAGASSERT(ai
!= NULL
);
840 _DIAGASSERT(str
!= NULL
);
842 if ((pai
->ai_flags
& AI_CANONNAME
) != 0) {
843 ai
->ai_canonname
= strdup(str
);
844 if (ai
->ai_canonname
== NULL
)
851 allocaddrinfo(socklen_t addrlen
)
855 ai
= calloc(sizeof(struct addrinfo
) + addrlen
, 1);
857 ai
->ai_addr
= (void *)(ai
+1);
858 ai
->ai_addrlen
= ai
->ai_addr
->sa_len
= addrlen
;
864 static struct addrinfo
*
865 get_ai(const struct addrinfo
*pai
, const struct afd
*afd
, const char *addr
)
869 struct sockaddr
*save
;
871 _DIAGASSERT(pai
!= NULL
);
872 _DIAGASSERT(afd
!= NULL
);
873 _DIAGASSERT(addr
!= NULL
);
875 ai
= allocaddrinfo((socklen_t
)afd
->a_socklen
);
880 memcpy(ai
, pai
, sizeof(struct addrinfo
));
882 /* since we just overwrote all of ai, we have
883 to restore ai_addr and ai_addrlen */
885 ai
->ai_addrlen
= (socklen_t
)afd
->a_socklen
;
887 ai
->ai_addr
->sa_family
= ai
->ai_family
= afd
->a_af
;
888 p
= (char *)(void *)(ai
->ai_addr
);
889 memcpy(p
+ afd
->a_off
, addr
, (size_t)afd
->a_addrlen
);
894 get_portmatch(const struct addrinfo
*ai
, const char *servname
,
895 struct servent_data
*svd
)
898 _DIAGASSERT(ai
!= NULL
);
899 /* servname may be NULL */
901 return get_port(ai
, servname
, 1, svd
);
905 get_port(const struct addrinfo
*ai
, const char *servname
, int matchonly
,
906 struct servent_data
*svd
)
913 _DIAGASSERT(ai
!= NULL
);
914 /* servname may be NULL */
916 if (servname
== NULL
)
918 switch (ai
->ai_family
) {
928 switch (ai
->ai_socktype
) {
937 * This was 0. It is now 1 so that queries specifying
938 * a NULL hint, or hint without socktype (but, hopefully,
939 * with protocol) and numeric address actually work.
947 port
= str2number(servname
);
951 if (port
< 0 || port
> 65535)
956 if (ai
->ai_flags
& AI_NUMERICSERV
)
959 switch (ai
->ai_socktype
) {
971 sp
= getservbyname_r(servname
, proto
, &sv
, svd
);
978 switch (ai
->ai_family
) {
980 ((struct sockaddr_in
*)(void *)
981 ai
->ai_addr
)->sin_port
= port
;
985 ((struct sockaddr_in6
*)(void *)
986 ai
->ai_addr
)->sin6_port
= port
;
995 static const struct afd
*
998 const struct afd
*afd
;
1000 if (af
== PF_UNSPEC
)
1002 for (afd
= afdl
; afd
->a_af
; afd
++) {
1003 if (afd
->a_af
== af
)
1010 /* convert a string to a scope identifier. XXX: IPv6 specific */
1012 ip6_str2scopeid(char *scope
, struct sockaddr_in6
*sin6
, u_int32_t
*scopeid
)
1015 struct in6_addr
*a6
;
1018 _DIAGASSERT(scope
!= NULL
);
1019 _DIAGASSERT(sin6
!= NULL
);
1020 _DIAGASSERT(scopeid
!= NULL
);
1022 a6
= &sin6
->sin6_addr
;
1024 /* empty scopeid portion is invalid */
1028 if (IN6_IS_ADDR_LINKLOCAL(a6
) || IN6_IS_ADDR_MC_LINKLOCAL(a6
)) {
1030 * We currently assume a one-to-one mapping between links
1031 * and interfaces, so we simply use interface indices for
1032 * like-local scopes.
1034 *scopeid
= if_nametoindex(scope
);
1040 /* still unclear about literal, allow numeric only - placeholder */
1041 if (IN6_IS_ADDR_SITELOCAL(a6
) || IN6_IS_ADDR_MC_SITELOCAL(a6
))
1043 if (IN6_IS_ADDR_MC_ORGLOCAL(a6
))
1046 goto trynumeric
; /* global */
1048 /* try to convert to a numeric id as a last resort */
1051 lscopeid
= strtoul(scope
, &ep
, 10);
1052 *scopeid
= (u_int32_t
)(lscopeid
& 0xffffffffUL
);
1053 if (errno
== 0 && ep
&& *ep
== '\0' && *scopeid
== lscopeid
)
1060 /* code duplicate with gethnamaddr.c */
1062 static const char AskedForGot
[] =
1063 "gethostby*.getanswer: asked for \"%s\", got \"%s\"";
1065 static struct addrinfo
*
1066 getanswer(const querybuf
*answer
, int anslen
, const char *qname
, int qtype
,
1067 const struct addrinfo
*pai
)
1069 struct addrinfo sentinel
, *cur
;
1071 const struct afd
*afd
;
1078 int type
, class, ancount
, qdcount
;
1079 int haveanswer
, had_error
;
1080 char tbuf
[MAXDNAME
];
1081 int (*name_ok
) (const char *);
1082 char hostbuf
[8*1024];
1084 _DIAGASSERT(answer
!= NULL
);
1085 _DIAGASSERT(qname
!= NULL
);
1086 _DIAGASSERT(pai
!= NULL
);
1088 memset(&sentinel
, 0, sizeof(sentinel
));
1092 eom
= answer
->buf
+ anslen
;
1096 case T_ANY
: /*use T_ANY only for T_A/T_AAAA lookup*/
1100 return NULL
; /* XXX should be abort(); */
1103 * find first satisfactory answer
1106 ancount
= ntohs(hp
->ancount
);
1107 qdcount
= ntohs(hp
->qdcount
);
1109 ep
= hostbuf
+ sizeof hostbuf
;
1110 cp
= answer
->buf
+ HFIXEDSZ
;
1112 h_errno
= NO_RECOVERY
;
1115 n
= dn_expand(answer
->buf
, eom
, cp
, bp
, ep
- bp
);
1116 if ((n
< 0) || !(*name_ok
)(bp
)) {
1117 h_errno
= NO_RECOVERY
;
1121 if (qtype
== T_A
|| qtype
== T_AAAA
|| qtype
== T_ANY
) {
1122 /* res_send() has already verified that the query name is the
1123 * same as the one we sent; this just gets the expanded name
1124 * (i.e., with the succeeding search-domain tacked on).
1126 n
= strlen(bp
) + 1; /* for the \0 */
1127 if (n
>= MAXHOSTNAMELEN
) {
1128 h_errno
= NO_RECOVERY
;
1133 /* The qname can be abbreviated, but h_name is now absolute. */
1138 while (ancount
-- > 0 && cp
< eom
&& !had_error
) {
1139 n
= dn_expand(answer
->buf
, eom
, cp
, bp
, ep
- bp
);
1140 if ((n
< 0) || !(*name_ok
)(bp
)) {
1145 type
= _getshort(cp
);
1146 cp
+= INT16SZ
; /* type */
1147 class = _getshort(cp
);
1148 cp
+= INT16SZ
+ INT32SZ
; /* class, TTL */
1150 cp
+= INT16SZ
; /* len */
1151 if (class != C_IN
) {
1152 /* XXX - debug? syslog? */
1154 continue; /* XXX - had_error++ ? */
1156 if ((qtype
== T_A
|| qtype
== T_AAAA
|| qtype
== T_ANY
) &&
1158 n
= dn_expand(answer
->buf
, eom
, cp
, tbuf
, sizeof tbuf
);
1159 if ((n
< 0) || !(*name_ok
)(tbuf
)) {
1164 /* Get canonical name. */
1165 n
= strlen(tbuf
) + 1; /* for the \0 */
1166 if (n
> ep
- bp
|| n
>= MAXHOSTNAMELEN
) {
1170 strlcpy(bp
, tbuf
, (size_t)(ep
- bp
));
1175 if (qtype
== T_ANY
) {
1176 if (!(type
== T_A
|| type
== T_AAAA
)) {
1180 } else if (type
!= qtype
) {
1181 if (type
!= T_KEY
&& type
!= T_SIG
) {
1182 struct syslog_data sd
= SYSLOG_DATA_INIT
;
1183 syslog_r(LOG_NOTICE
|LOG_AUTH
, &sd
,
1184 "gethostby*.getanswer: asked for \"%s %s %s\", got type \"%s\"",
1185 qname
, p_class(C_IN
), p_type(qtype
),
1189 continue; /* XXX - had_error++ ? */
1194 if (strcasecmp(canonname
, bp
) != 0) {
1195 struct syslog_data sd
= SYSLOG_DATA_INIT
;
1196 syslog_r(LOG_NOTICE
|LOG_AUTH
, &sd
,
1197 AskedForGot
, canonname
, bp
);
1199 continue; /* XXX - had_error++ ? */
1201 if (type
== T_A
&& n
!= INADDRSZ
) {
1205 if (type
== T_AAAA
&& n
!= IN6ADDRSZ
) {
1209 if (type
== T_AAAA
) {
1210 struct in6_addr in6
;
1211 memcpy(&in6
, cp
, IN6ADDRSZ
);
1212 if (IN6_IS_ADDR_V4MAPPED(&in6
)) {
1221 nn
= strlen(bp
) + 1; /* for the \0 */
1225 /* don't overwrite pai */
1227 ai
.ai_family
= (type
== T_A
) ? AF_INET
: AF_INET6
;
1228 afd
= find_afd(ai
.ai_family
);
1233 cur
->ai_next
= get_ai(&ai
, afd
, (const char *)cp
);
1234 if (cur
->ai_next
== NULL
)
1236 while (cur
&& cur
->ai_next
)
1248 (void)get_canonname(pai
, sentinel
.ai_next
, qname
);
1250 (void)get_canonname(pai
, sentinel
.ai_next
, canonname
);
1251 h_errno
= NETDB_SUCCESS
;
1252 return sentinel
.ai_next
;
1255 h_errno
= NO_RECOVERY
;
1259 #define SORTEDADDR(p) (((struct sockaddr_in *)(void *)(p->ai_next->ai_addr))->sin_addr.s_addr)
1260 #define SORTMATCH(p, s) ((SORTEDADDR(p) & (s).mask) == (s).addr.s_addr)
1263 aisort(struct addrinfo
*s
, res_state res
)
1265 struct addrinfo head
, *t
, *p
;
1268 head
.ai_next
= NULL
;
1271 for (i
= 0; i
< res
->nsort
; i
++) {
1273 while (p
->ai_next
) {
1274 if ((p
->ai_next
->ai_family
!= AF_INET
)
1275 || SORTMATCH(p
, res
->sort_list
[i
])) {
1276 t
->ai_next
= p
->ai_next
;
1278 p
->ai_next
= p
->ai_next
->ai_next
;
1285 /* add rest of list and reset s to the new list*/
1286 t
->ai_next
= s
->ai_next
;
1287 s
->ai_next
= head
.ai_next
;
1292 _dns_getaddrinfo(void *rv
, void *cb_data
, va_list ap
)
1294 struct addrinfo
*ai
;
1295 querybuf
*buf
, *buf2
;
1297 const struct addrinfo
*pai
;
1298 struct addrinfo sentinel
, *cur
;
1299 struct res_target q
, q2
;
1302 name
= va_arg(ap
, char *);
1303 pai
= va_arg(ap
, const struct addrinfo
*);
1305 memset(&q
, 0, sizeof(q
));
1306 memset(&q2
, 0, sizeof(q2
));
1307 memset(&sentinel
, 0, sizeof(sentinel
));
1310 buf
= malloc(sizeof(*buf
));
1312 h_errno
= NETDB_INTERNAL
;
1315 buf2
= malloc(sizeof(*buf2
));
1318 h_errno
= NETDB_INTERNAL
;
1322 switch (pai
->ai_family
) {
1328 q
.answer
= buf
->buf
;
1329 q
.anslen
= sizeof(buf
->buf
);
1334 q2
.answer
= buf2
->buf
;
1335 q2
.anslen
= sizeof(buf2
->buf
);
1341 q
.answer
= buf
->buf
;
1342 q
.anslen
= sizeof(buf
->buf
);
1348 q
.answer
= buf
->buf
;
1349 q
.anslen
= sizeof(buf
->buf
);
1357 res
= __res_get_state();
1364 if (res_searchN(name
, &q
, res
) < 0) {
1365 __res_put_state(res
);
1370 ai
= getanswer(buf
, q
.n
, q
.name
, q
.qtype
, pai
);
1373 while (cur
&& cur
->ai_next
)
1377 ai
= getanswer(buf2
, q2
.n
, q2
.name
, q2
.qtype
, pai
);
1383 if (sentinel
.ai_next
== NULL
) {
1384 __res_put_state(res
);
1386 case HOST_NOT_FOUND
:
1396 aisort(&sentinel
, res
);
1398 __res_put_state(res
);
1400 *((struct addrinfo
**)rv
) = sentinel
.ai_next
;
1405 _sethtent(FILE **hostf
)
1409 *hostf
= fopen(_PATH_HOSTS
, "r" );
1415 _endhtent(FILE **hostf
)
1419 (void) fclose(*hostf
);
1424 static struct addrinfo
*
1425 _gethtent(FILE **hostf
, const char *name
, const struct addrinfo
*pai
)
1428 char *cp
, *tname
, *cname
;
1429 struct addrinfo hints
, *res0
, *res
;
1432 char hostbuf
[8*1024];
1434 _DIAGASSERT(name
!= NULL
);
1435 _DIAGASSERT(pai
!= NULL
);
1437 if (!*hostf
&& !(*hostf
= fopen(_PATH_HOSTS
, "r" )))
1440 if (!(p
= fgets(hostbuf
, sizeof hostbuf
, *hostf
)))
1444 if (!(cp
= strpbrk(p
, "#\n")))
1447 if (!(cp
= strpbrk(p
, " \t")))
1451 /* if this is not something we're looking for, skip it. */
1454 if (*cp
== ' ' || *cp
== '\t') {
1461 if ((cp
= strpbrk(cp
, " \t")) != NULL
)
1463 if (strcasecmp(name
, tname
) == 0)
1470 hints
.ai_flags
= AI_NUMERICHOST
;
1471 error
= getaddrinfo(addr
, NULL
, &hints
, &res0
);
1474 for (res
= res0
; res
; res
= res
->ai_next
) {
1476 res
->ai_flags
= pai
->ai_flags
;
1478 if (pai
->ai_flags
& AI_CANONNAME
) {
1479 if (get_canonname(pai
, res
, cname
) != 0) {
1490 _files_getaddrinfo(void *rv
, void *cb_data
, va_list ap
)
1493 const struct addrinfo
*pai
;
1494 struct addrinfo sentinel
, *cur
;
1501 name
= va_arg(ap
, char *);
1502 pai
= va_arg(ap
, const struct addrinfo
*);
1504 memset(&sentinel
, 0, sizeof(sentinel
));
1508 while ((p
= _gethtent(&hostf
, name
, pai
)) != NULL
) {
1510 while (cur
&& cur
->ai_next
)
1515 *((struct addrinfo
**)rv
) = sentinel
.ai_next
;
1516 if (sentinel
.ai_next
== NULL
)
1523 static struct addrinfo
*
1524 _yphostent(char *line
, const struct addrinfo
*pai
)
1526 struct addrinfo sentinel
, *cur
;
1527 struct addrinfo hints
, *res
, *res0
;
1530 const char *addr
, *canonname
;
1534 _DIAGASSERT(line
!= NULL
);
1535 _DIAGASSERT(pai
!= NULL
);
1538 addr
= canonname
= NULL
;
1540 memset(&sentinel
, 0, sizeof(sentinel
));
1544 /* terminate line */
1545 cp
= strchr(p
, '\n');
1552 cp
= strpbrk(p
, " \t");
1554 if (canonname
== NULL
)
1564 if (*cp
== ' ' || *cp
== '\t') {
1570 if ((cp
= strpbrk(cp
, " \t")) != NULL
)
1575 hints
.ai_flags
= AI_NUMERICHOST
;
1576 error
= getaddrinfo(addr
, NULL
, &hints
, &res0
);
1578 for (res
= res0
; res
; res
= res
->ai_next
) {
1580 res
->ai_flags
= pai
->ai_flags
;
1582 if (pai
->ai_flags
& AI_CANONNAME
)
1583 (void)get_canonname(pai
, res
, canonname
);
1588 cur
->ai_next
= res0
;
1589 while (cur
->ai_next
)
1599 return sentinel
.ai_next
;
1604 _yp_getaddrinfo(void *rv
, void *cb_data
, va_list ap
)
1606 struct addrinfo sentinel
, *cur
;
1607 struct addrinfo
*ai
= NULL
;
1611 const struct addrinfo
*pai
;
1614 if (_yp_check(&ypdomain
) == 0)
1617 name
= va_arg(ap
, char *);
1618 pai
= va_arg(ap
, const struct addrinfo
*);
1620 memset(&sentinel
, 0, sizeof(sentinel
));
1623 /* hosts.byname is only for IPv4 (Solaris8) */
1624 if (pai
->ai_family
== PF_UNSPEC
|| pai
->ai_family
== PF_INET
) {
1625 r
= yp_match(ypdomain
, "hosts.byname", name
,
1626 (int)strlen(name
), &ypbuf
, &ypbuflen
);
1628 struct addrinfo ai4
;
1631 ai4
.ai_family
= AF_INET
;
1632 ai
= _yphostent(ypbuf
, &ai4
);
1635 while (cur
&& cur
->ai_next
)
1642 /* ipnodes.byname can hold both IPv4/v6 */
1643 r
= yp_match(ypdomain
, "ipnodes.byname", name
,
1644 (int)strlen(name
), &ypbuf
, &ypbuflen
);
1646 ai
= _yphostent(ypbuf
, pai
);
1652 if (sentinel
.ai_next
== NULL
) {
1653 h_errno
= HOST_NOT_FOUND
;
1656 *((struct addrinfo
**)rv
) = sentinel
.ai_next
;
1661 /* resolver logic */
1664 * Formulate a normal query, send, and await answer.
1665 * Returned answer is placed in supplied buffer "answer".
1666 * Perform preliminary check of answer, returning success only
1667 * if no error is indicated and the answer count is nonzero.
1668 * Return the size of the response on success, -1 on error.
1669 * Error number is left in h_errno.
1671 * Caller must parse answer and determine whether it answers the question.
1674 res_queryN(const char *name
, /* domain name */ struct res_target
*target
,
1677 u_char buf
[MAXPACKET
];
1680 struct res_target
*t
;
1684 _DIAGASSERT(name
!= NULL
);
1685 /* XXX: target may be NULL??? */
1690 for (t
= target
; t
; t
= t
->next
) {
1695 hp
= (HEADER
*)(void *)t
->answer
;
1696 hp
->rcode
= NOERROR
; /* default */
1698 /* make it easier... */
1704 if (res
->options
& RES_DEBUG
)
1705 printf(";; res_nquery(%s, %d, %d)\n", name
, class, type
);
1708 n
= res_nmkquery(res
, QUERY
, name
, class, type
, NULL
, 0, NULL
,
1710 #ifdef RES_USE_EDNS0
1711 if (n
> 0 && (res
->options
& RES_USE_EDNS0
) != 0)
1712 n
= res_nopt(res
, n
, buf
, sizeof(buf
), anslen
);
1716 if (res
->options
& RES_DEBUG
)
1717 printf(";; res_nquery: mkquery failed\n");
1719 h_errno
= NO_RECOVERY
;
1722 n
= res_nsend(res
, buf
, n
, answer
, anslen
);
1726 if (res
->options
& RES_DEBUG
)
1727 printf(";; res_query: send error\n");
1729 h_errno
= TRY_AGAIN
;
1734 if (n
< 0 || hp
->rcode
!= NOERROR
|| ntohs(hp
->ancount
) == 0) {
1735 rcode
= hp
->rcode
; /* record most recent error */
1737 if (res
->options
& RES_DEBUG
)
1738 printf(";; rcode = %u, ancount=%u\n", hp
->rcode
,
1739 ntohs(hp
->ancount
));
1744 ancount
+= ntohs(hp
->ancount
);
1752 h_errno
= HOST_NOT_FOUND
;
1755 h_errno
= TRY_AGAIN
;
1764 h_errno
= NO_RECOVERY
;
1773 * Formulate a normal query, send, and retrieve answer in supplied buffer.
1774 * Return the size of the response on success, -1 on error.
1775 * If enabled, implement search rules until answer or unrecoverable failure
1776 * is detected. Error code, if any, is left in h_errno.
1779 res_searchN(const char *name
, struct res_target
*target
, res_state res
)
1781 const char *cp
, * const *domain
;
1784 int trailing_dot
, ret
, saved_herrno
;
1785 int got_nodata
= 0, got_servfail
= 0, tried_as_is
= 0;
1787 _DIAGASSERT(name
!= NULL
);
1788 _DIAGASSERT(target
!= NULL
);
1790 hp
= (HEADER
*)(void *)target
->answer
; /*XXX*/
1793 h_errno
= HOST_NOT_FOUND
; /* default, if we never query */
1795 for (cp
= name
; *cp
; cp
++)
1796 dots
+= (*cp
== '.');
1798 if (cp
> name
&& *--cp
== '.')
1802 * if there aren't any dots, it could be a user-level alias
1804 if (!dots
&& (cp
= __hostalias(name
)) != NULL
) {
1805 ret
= res_queryN(cp
, target
, res
);
1810 * If there are dots in the name already, let's just give it a try
1811 * 'as is'. The threshold can be set with the "ndots" option.
1814 if (dots
>= res
->ndots
) {
1815 ret
= res_querydomainN(name
, NULL
, target
, res
);
1818 saved_herrno
= h_errno
;
1823 * We do at least one level of search if
1824 * - there is no dot and RES_DEFNAME is set, or
1825 * - there is at least one dot, there is no trailing dot,
1826 * and RES_DNSRCH is set.
1828 if ((!dots
&& (res
->options
& RES_DEFNAMES
)) ||
1829 (dots
&& !trailing_dot
&& (res
->options
& RES_DNSRCH
))) {
1832 for (domain
= (const char * const *)res
->dnsrch
;
1836 ret
= res_querydomainN(name
, *domain
, target
, res
);
1841 * If no server present, give up.
1842 * If name isn't found in this domain,
1843 * keep trying higher domains in the search list
1844 * (if that's enabled).
1845 * On a NO_DATA error, keep trying, otherwise
1846 * a wildcard entry of another type could keep us
1847 * from finding this entry higher in the domain.
1848 * If we get some other error (negative answer or
1849 * server failure), then stop searching up,
1850 * but try the input name below in case it's
1853 if (errno
== ECONNREFUSED
) {
1854 h_errno
= TRY_AGAIN
;
1862 case HOST_NOT_FOUND
:
1866 if (hp
->rcode
== SERVFAIL
) {
1867 /* try next search element, if any */
1873 /* anything else implies that we're done */
1877 * if we got here for some reason other than DNSRCH,
1878 * we only wanted one iteration of the loop, so stop.
1880 if (!(res
->options
& RES_DNSRCH
))
1886 * if we have not already tried the name "as is", do that now.
1887 * note that we do this regardless of how many dots were in the
1888 * name or whether it ends with a dot.
1891 ret
= res_querydomainN(name
, NULL
, target
, res
);
1897 * if we got here, we didn't satisfy the search.
1898 * if we did an initial full query, return that query's h_errno
1899 * (note that we wouldn't be here if that query had succeeded).
1900 * else if we ever got a nodata, send that back as the reason.
1901 * else send back meaningless h_errno, that being the one from
1902 * the last DNSRCH we did.
1904 if (saved_herrno
!= -1)
1905 h_errno
= saved_herrno
;
1906 else if (got_nodata
)
1908 else if (got_servfail
)
1909 h_errno
= TRY_AGAIN
;
1914 * Perform a call on res_query on the concatenation of name and domain,
1915 * removing a trailing dot from name if domain is NULL.
1918 res_querydomainN(const char *name
, const char *domain
,
1919 struct res_target
*target
, res_state res
)
1921 char nbuf
[MAXDNAME
];
1922 const char *longname
= nbuf
;
1925 _DIAGASSERT(name
!= NULL
);
1926 /* XXX: target may be NULL??? */
1929 if (res
->options
& RES_DEBUG
)
1930 printf(";; res_querydomain(%s, %s)\n",
1931 name
, domain
?domain
:"<Nil>");
1933 if (domain
== NULL
) {
1935 * Check for trailing '.';
1936 * copy without '.' if present.
1939 if (n
+ 1 > sizeof(nbuf
)) {
1940 h_errno
= NO_RECOVERY
;
1943 if (n
> 0 && name
[--n
] == '.') {
1944 strncpy(nbuf
, name
, n
);
1951 if (n
+ 1 + d
+ 1 > sizeof(nbuf
)) {
1952 h_errno
= NO_RECOVERY
;
1955 snprintf(nbuf
, sizeof(nbuf
), "%s.%s", name
, domain
);
1957 return res_queryN(longname
, target
, res
);