Deleted Added
full compact
getaddrinfo.c (146222) getaddrinfo.c (146244)
1/* $KAME: getaddrinfo.c,v 1.15 2000/07/09 04:37:24 itojun Exp $ */
2
3/*
4 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the project nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32/*
33 * "#ifdef FAITH" part is local hack for supporting IPv4-v6 translator.
34 *
35 * Issues to be discussed:
36 * - Thread safe-ness must be checked.
37 * - Return values. There are nonstandard return values defined and used
38 * in the source code. This is because RFC2553 is silent about which error
39 * code must be returned for which situation.
40 * - freeaddrinfo(NULL). RFC2553 is silent about it. XNET 5.2 says it is
41 * invalid. current code - SEGV on freeaddrinfo(NULL)
42 *
43 * Note:
44 * - The code filters out AFs that are not supported by the kernel,
45 * when globbing NULL hostname (to loopback, or wildcard). Is it the right
46 * thing to do? What is the relationship with post-RFC2553 AI_ADDRCONFIG
47 * in ai_flags?
48 * - (post-2553) semantics of AI_ADDRCONFIG itself is too vague.
49 * (1) what should we do against numeric hostname (2) what should we do
50 * against NULL hostname (3) what is AI_ADDRCONFIG itself. AF not ready?
51 * non-loopback address configured? global address configured?
52 *
53 * OS specific notes for netbsd/openbsd/freebsd4/bsdi4:
54 * - To avoid search order issue, we have a big amount of code duplicate
55 * from gethnamaddr.c and some other places. The issues that there's no
56 * lower layer function to lookup "IPv4 or IPv6" record. Calling
57 * gethostbyname2 from getaddrinfo will end up in wrong search order, as
58 * presented above.
59 *
60 * OS specific notes for freebsd4:
61 * - FreeBSD supported $GAI. The code does not.
62 * - FreeBSD allowed classful IPv4 numeric (127.1), the code does not.
63 */
64
65#include <sys/cdefs.h>
1/* $KAME: getaddrinfo.c,v 1.15 2000/07/09 04:37:24 itojun Exp $ */
2
3/*
4 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the project nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32/*
33 * "#ifdef FAITH" part is local hack for supporting IPv4-v6 translator.
34 *
35 * Issues to be discussed:
36 * - Thread safe-ness must be checked.
37 * - Return values. There are nonstandard return values defined and used
38 * in the source code. This is because RFC2553 is silent about which error
39 * code must be returned for which situation.
40 * - freeaddrinfo(NULL). RFC2553 is silent about it. XNET 5.2 says it is
41 * invalid. current code - SEGV on freeaddrinfo(NULL)
42 *
43 * Note:
44 * - The code filters out AFs that are not supported by the kernel,
45 * when globbing NULL hostname (to loopback, or wildcard). Is it the right
46 * thing to do? What is the relationship with post-RFC2553 AI_ADDRCONFIG
47 * in ai_flags?
48 * - (post-2553) semantics of AI_ADDRCONFIG itself is too vague.
49 * (1) what should we do against numeric hostname (2) what should we do
50 * against NULL hostname (3) what is AI_ADDRCONFIG itself. AF not ready?
51 * non-loopback address configured? global address configured?
52 *
53 * OS specific notes for netbsd/openbsd/freebsd4/bsdi4:
54 * - To avoid search order issue, we have a big amount of code duplicate
55 * from gethnamaddr.c and some other places. The issues that there's no
56 * lower layer function to lookup "IPv4 or IPv6" record. Calling
57 * gethostbyname2 from getaddrinfo will end up in wrong search order, as
58 * presented above.
59 *
60 * OS specific notes for freebsd4:
61 * - FreeBSD supported $GAI. The code does not.
62 * - FreeBSD allowed classful IPv4 numeric (127.1), the code does not.
63 */
64
65#include <sys/cdefs.h>
66__FBSDID("$FreeBSD: head/lib/libc/net/getaddrinfo.c 146222 2005-05-14 19:43:10Z gnn $");
66__FBSDID("$FreeBSD: head/lib/libc/net/getaddrinfo.c 146244 2005-05-15 20:15:15Z ume $");
67
68#include "namespace.h"
69#include <sys/types.h>
70#include <sys/param.h>
71#include <sys/socket.h>
72#include <net/if.h>
73#include <netinet/in.h>
74#include <sys/queue.h>
75#ifdef INET6
76#include <net/if_var.h>
77#include <sys/sysctl.h>
78#include <sys/ioctl.h>
79#include <netinet6/in6_var.h> /* XXX */
80#endif
81#include <arpa/inet.h>
82#include <arpa/nameser.h>
83#include <rpc/rpc.h>
84#include <rpcsvc/yp_prot.h>
85#include <rpcsvc/ypclnt.h>
86#include <netdb.h>
87#include <resolv.h>
88#include <string.h>
89#include <stdlib.h>
90#include <stddef.h>
91#include <ctype.h>
92#include <unistd.h>
93#include <stdio.h>
94#include <errno.h>
95
96#include "res_config.h"
97
98#ifdef DEBUG
99#include <syslog.h>
100#endif
101
102#include <stdarg.h>
103#include <nsswitch.h>
104#include "un-namespace.h"
105#include "libc_private.h"
106
107#if defined(__KAME__) && defined(INET6)
108# define FAITH
109#endif
110
111#define SUCCESS 0
112#define ANY 0
113#define YES 1
114#define NO 0
115
116static const char in_addrany[] = { 0, 0, 0, 0 };
117static const char in_loopback[] = { 127, 0, 0, 1 };
118#ifdef INET6
119static const char in6_addrany[] = {
120 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
121};
122static const char in6_loopback[] = {
123 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1
124};
125#endif
126
127struct policyqueue {
128 TAILQ_ENTRY(policyqueue) pc_entry;
129#ifdef INET6
130 struct in6_addrpolicy pc_policy;
131#endif
132};
133TAILQ_HEAD(policyhead, policyqueue);
134
135static const struct afd {
136 int a_af;
137 int a_addrlen;
67
68#include "namespace.h"
69#include <sys/types.h>
70#include <sys/param.h>
71#include <sys/socket.h>
72#include <net/if.h>
73#include <netinet/in.h>
74#include <sys/queue.h>
75#ifdef INET6
76#include <net/if_var.h>
77#include <sys/sysctl.h>
78#include <sys/ioctl.h>
79#include <netinet6/in6_var.h> /* XXX */
80#endif
81#include <arpa/inet.h>
82#include <arpa/nameser.h>
83#include <rpc/rpc.h>
84#include <rpcsvc/yp_prot.h>
85#include <rpcsvc/ypclnt.h>
86#include <netdb.h>
87#include <resolv.h>
88#include <string.h>
89#include <stdlib.h>
90#include <stddef.h>
91#include <ctype.h>
92#include <unistd.h>
93#include <stdio.h>
94#include <errno.h>
95
96#include "res_config.h"
97
98#ifdef DEBUG
99#include <syslog.h>
100#endif
101
102#include <stdarg.h>
103#include <nsswitch.h>
104#include "un-namespace.h"
105#include "libc_private.h"
106
107#if defined(__KAME__) && defined(INET6)
108# define FAITH
109#endif
110
111#define SUCCESS 0
112#define ANY 0
113#define YES 1
114#define NO 0
115
116static const char in_addrany[] = { 0, 0, 0, 0 };
117static const char in_loopback[] = { 127, 0, 0, 1 };
118#ifdef INET6
119static const char in6_addrany[] = {
120 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
121};
122static const char in6_loopback[] = {
123 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1
124};
125#endif
126
127struct policyqueue {
128 TAILQ_ENTRY(policyqueue) pc_entry;
129#ifdef INET6
130 struct in6_addrpolicy pc_policy;
131#endif
132};
133TAILQ_HEAD(policyhead, policyqueue);
134
135static const struct afd {
136 int a_af;
137 int a_addrlen;
138 int a_socklen;
138 socklen_t a_socklen;
139 int a_off;
140 const char *a_addrany;
141 const char *a_loopback;
142 int a_scoped;
143} afdl [] = {
144#ifdef INET6
145#define N_INET6 0
146 {PF_INET6, sizeof(struct in6_addr),
147 sizeof(struct sockaddr_in6),
148 offsetof(struct sockaddr_in6, sin6_addr),
149 in6_addrany, in6_loopback, 1},
150#define N_INET 1
151#else
152#define N_INET 0
153#endif
154 {PF_INET, sizeof(struct in_addr),
155 sizeof(struct sockaddr_in),
156 offsetof(struct sockaddr_in, sin_addr),
157 in_addrany, in_loopback, 0},
158 {0, 0, 0, 0, NULL, NULL, 0},
159};
160
161struct explore {
162 int e_af;
163 int e_socktype;
164 int e_protocol;
165 const char *e_protostr;
166 int e_wild;
167#define WILD_AF(ex) ((ex)->e_wild & 0x01)
168#define WILD_SOCKTYPE(ex) ((ex)->e_wild & 0x02)
169#define WILD_PROTOCOL(ex) ((ex)->e_wild & 0x04)
170};
171
172static const struct explore explore[] = {
173#if 0
174 { PF_LOCAL, 0, ANY, ANY, NULL, 0x01 },
175#endif
176#ifdef INET6
177 { PF_INET6, SOCK_DGRAM, IPPROTO_UDP, "udp", 0x07 },
178 { PF_INET6, SOCK_STREAM, IPPROTO_TCP, "tcp", 0x07 },
179 { PF_INET6, SOCK_RAW, ANY, NULL, 0x05 },
180#endif
181 { PF_INET, SOCK_DGRAM, IPPROTO_UDP, "udp", 0x07 },
182 { PF_INET, SOCK_STREAM, IPPROTO_TCP, "tcp", 0x07 },
183 { PF_INET, SOCK_RAW, ANY, NULL, 0x05 },
184 { PF_UNSPEC, SOCK_DGRAM, IPPROTO_UDP, "udp", 0x07 },
185 { PF_UNSPEC, SOCK_STREAM, IPPROTO_TCP, "tcp", 0x07 },
186 { PF_UNSPEC, SOCK_RAW, ANY, NULL, 0x05 },
187 { -1, 0, 0, NULL, 0 },
188};
189
190#ifdef INET6
191#define PTON_MAX 16
192#else
193#define PTON_MAX 4
194#endif
195
196#define AIO_SRCFLAG_DEPRECATED 0x1
197
198struct ai_order {
199 union {
200 struct sockaddr_storage aiou_ss;
201 struct sockaddr aiou_sa;
202 } aio_src_un;
203#define aio_srcsa aio_src_un.aiou_sa
204 u_int32_t aio_srcflag;
205 int aio_srcscope;
206 int aio_dstscope;
207 struct policyqueue *aio_srcpolicy;
208 struct policyqueue *aio_dstpolicy;
209 struct addrinfo *aio_ai;
210 int aio_matchlen;
211};
212
213static const ns_src default_dns_files[] = {
214 { NSSRC_FILES, NS_SUCCESS },
215 { NSSRC_DNS, NS_SUCCESS },
216 { 0 }
217};
218
219struct res_target {
220 struct res_target *next;
221 const char *name; /* domain name */
222 int qclass, qtype; /* class and type of query */
223 u_char *answer; /* buffer to put answer */
224 int anslen; /* size of answer buffer */
225 int n; /* result length */
226};
227
228#define MAXPACKET (64*1024)
229
230typedef union {
231 HEADER hdr;
232 u_char buf[MAXPACKET];
233} querybuf;
234
235static int str2number(const char *);
236static int explore_null(const struct addrinfo *,
237 const char *, struct addrinfo **);
238static int explore_numeric(const struct addrinfo *, const char *,
239 const char *, struct addrinfo **, const char *);
240static int explore_numeric_scope(const struct addrinfo *, const char *,
241 const char *, struct addrinfo **);
242static int get_canonname(const struct addrinfo *,
243 struct addrinfo *, const char *);
244static struct addrinfo *get_ai(const struct addrinfo *,
245 const struct afd *, const char *);
246static int get_portmatch(const struct addrinfo *, const char *);
247static int get_port(struct addrinfo *, const char *, int);
248static const struct afd *find_afd(int);
249static int addrconfig(struct addrinfo *);
250static void set_source(struct ai_order *, struct policyhead *);
251static int comp_dst(const void *, const void *);
252#ifdef INET6
253static int ip6_str2scopeid(char *, struct sockaddr_in6 *, u_int32_t *);
254#endif
255static int gai_addr2scopetype(struct sockaddr *);
256
257static int explore_fqdn(const struct addrinfo *, const char *,
258 const char *, struct addrinfo **);
259
260static int reorder(struct addrinfo *);
261static int get_addrselectpolicy(struct policyhead *);
262static void free_addrselectpolicy(struct policyhead *);
263static struct policyqueue *match_addrselectpolicy(struct sockaddr *,
264 struct policyhead *);
265static int matchlen(struct sockaddr *, struct sockaddr *);
266
267static struct addrinfo *getanswer(const querybuf *, int, const char *, int,
268 const struct addrinfo *);
269#if defined(RESOLVSORT)
270static int addr4sort(struct addrinfo *);
271#endif
272static int _dns_getaddrinfo(void *, void *, va_list);
273static void _sethtent(FILE **);
274static void _endhtent(FILE **);
275static struct addrinfo *_gethtent(FILE **, const char *,
276 const struct addrinfo *);
277static int _files_getaddrinfo(void *, void *, va_list);
278#ifdef YP
279static struct addrinfo *_yphostent(char *, const struct addrinfo *);
280static int _yp_getaddrinfo(void *, void *, va_list);
281#endif
282
283static int res_queryN(const char *, struct res_target *);
284static int res_searchN(const char *, struct res_target *);
285static int res_querydomainN(const char *, const char *,
286 struct res_target *);
287
288/* XXX macros that make external reference is BAD. */
289
290#define GET_AI(ai, afd, addr) \
291do { \
292 /* external reference: pai, error, and label free */ \
293 (ai) = get_ai(pai, (afd), (addr)); \
294 if ((ai) == NULL) { \
295 error = EAI_MEMORY; \
296 goto free; \
297 } \
298} while (/*CONSTCOND*/0)
299
300#define GET_PORT(ai, serv) \
301do { \
302 /* external reference: error and label free */ \
303 error = get_port((ai), (serv), 0); \
304 if (error != 0) \
305 goto free; \
306} while (/*CONSTCOND*/0)
307
308#define GET_CANONNAME(ai, str) \
309do { \
310 /* external reference: pai, error and label free */ \
311 error = get_canonname(pai, (ai), (str)); \
312 if (error != 0) \
313 goto free; \
314} while (/*CONSTCOND*/0)
315
316#define ERR(err) \
317do { \
318 /* external reference: error, and label bad */ \
319 error = (err); \
320 goto bad; \
321 /*NOTREACHED*/ \
322} while (/*CONSTCOND*/0)
323
324#define MATCH_FAMILY(x, y, w) \
325 ((x) == (y) || (/*CONSTCOND*/(w) && ((x) == PF_UNSPEC || (y) == PF_UNSPEC)))
326#define MATCH(x, y, w) \
327 ((x) == (y) || (/*CONSTCOND*/(w) && ((x) == ANY || (y) == ANY)))
328
329void
330freeaddrinfo(ai)
331 struct addrinfo *ai;
332{
333 struct addrinfo *next;
334
335 do {
336 next = ai->ai_next;
337 if (ai->ai_canonname)
338 free(ai->ai_canonname);
339 /* no need to free(ai->ai_addr) */
340 free(ai);
341 ai = next;
342 } while (ai);
343}
344
345static int
346str2number(p)
347 const char *p;
348{
349 char *ep;
350 unsigned long v;
351
352 if (*p == '\0')
353 return -1;
354 ep = NULL;
355 errno = 0;
356 v = strtoul(p, &ep, 10);
357 if (errno == 0 && ep && *ep == '\0' && v <= UINT_MAX)
358 return v;
359 else
360 return -1;
361}
362
363int
364getaddrinfo(hostname, servname, hints, res)
365 const char *hostname, *servname;
366 const struct addrinfo *hints;
367 struct addrinfo **res;
368{
369 struct addrinfo sentinel;
370 struct addrinfo *cur;
371 int error = 0;
372 struct addrinfo ai;
373 struct addrinfo ai0;
374 struct addrinfo *pai;
375 const struct explore *ex;
376 int numeric = 0;
377
378 memset(&sentinel, 0, sizeof(sentinel));
379 cur = &sentinel;
380 pai = &ai;
381 pai->ai_flags = 0;
382 pai->ai_family = PF_UNSPEC;
383 pai->ai_socktype = ANY;
384 pai->ai_protocol = ANY;
385 pai->ai_addrlen = 0;
386 pai->ai_canonname = NULL;
387 pai->ai_addr = NULL;
388 pai->ai_next = NULL;
389
390 if (hostname == NULL && servname == NULL)
391 return EAI_NONAME;
392 if (hints) {
393 /* error check for hints */
394 if (hints->ai_addrlen || hints->ai_canonname ||
395 hints->ai_addr || hints->ai_next)
396 ERR(EAI_BADHINTS); /* xxx */
397 if (hints->ai_flags & ~AI_MASK)
398 ERR(EAI_BADFLAGS);
399 switch (hints->ai_family) {
400 case PF_UNSPEC:
401 case PF_INET:
402#ifdef INET6
403 case PF_INET6:
404#endif
405 break;
406 default:
407 ERR(EAI_FAMILY);
408 }
409 memcpy(pai, hints, sizeof(*pai));
410
411 /*
412 * if both socktype/protocol are specified, check if they
413 * are meaningful combination.
414 */
415 if (pai->ai_socktype != ANY && pai->ai_protocol != ANY) {
416 for (ex = explore; ex->e_af >= 0; ex++) {
417 if (pai->ai_family != ex->e_af)
418 continue;
419 if (ex->e_socktype == ANY)
420 continue;
421 if (ex->e_protocol == ANY)
422 continue;
423 if (pai->ai_socktype == ex->e_socktype &&
424 pai->ai_protocol != ex->e_protocol) {
425 ERR(EAI_BADHINTS);
426 }
427 }
428 }
429 }
430
431 /*
432 * post-2553: AI_ALL and AI_V4MAPPED are effective only against
433 * AF_INET6 query. They need to be ignored if specified in other
434 * occassions.
435 */
436 switch (pai->ai_flags & (AI_ALL | AI_V4MAPPED)) {
437 case AI_V4MAPPED:
438 case AI_ALL | AI_V4MAPPED:
439 if (pai->ai_family != AF_INET6)
440 pai->ai_flags &= ~(AI_ALL | AI_V4MAPPED);
441 break;
442 case AI_ALL:
443#if 1
444 /* illegal */
445 ERR(EAI_BADFLAGS);
446#else
447 pai->ai_flags &= ~(AI_ALL | AI_V4MAPPED);
448#endif
449 break;
450 }
451
452 /*
453 * check for special cases. (1) numeric servname is disallowed if
454 * socktype/protocol are left unspecified. (2) servname is disallowed
455 * for raw and other inet{,6} sockets.
456 */
457 if (MATCH_FAMILY(pai->ai_family, PF_INET, 1)
458#ifdef PF_INET6
459 || MATCH_FAMILY(pai->ai_family, PF_INET6, 1)
460#endif
461 ) {
462 ai0 = *pai; /* backup *pai */
463
464 if (pai->ai_family == PF_UNSPEC) {
465#ifdef PF_INET6
466 pai->ai_family = PF_INET6;
467#else
468 pai->ai_family = PF_INET;
469#endif
470 }
471 error = get_portmatch(pai, servname);
472 if (error)
473 ERR(error);
474
475 *pai = ai0;
476 }
477
478 ai0 = *pai;
479
480 /* NULL hostname, or numeric hostname */
481 for (ex = explore; ex->e_af >= 0; ex++) {
482 *pai = ai0;
483
484 /* PF_UNSPEC entries are prepared for DNS queries only */
485 if (ex->e_af == PF_UNSPEC)
486 continue;
487
488 if (!MATCH_FAMILY(pai->ai_family, ex->e_af, WILD_AF(ex)))
489 continue;
490 if (!MATCH(pai->ai_socktype, ex->e_socktype, WILD_SOCKTYPE(ex)))
491 continue;
492 if (!MATCH(pai->ai_protocol, ex->e_protocol, WILD_PROTOCOL(ex)))
493 continue;
494
495 if (pai->ai_family == PF_UNSPEC)
496 pai->ai_family = ex->e_af;
497 if (pai->ai_socktype == ANY && ex->e_socktype != ANY)
498 pai->ai_socktype = ex->e_socktype;
499 if (pai->ai_protocol == ANY && ex->e_protocol != ANY)
500 pai->ai_protocol = ex->e_protocol;
501
502 if (hostname == NULL)
503 error = explore_null(pai, servname, &cur->ai_next);
504 else
505 error = explore_numeric_scope(pai, hostname, servname,
506 &cur->ai_next);
507
508 if (error)
509 goto free;
510
511 while (cur && cur->ai_next)
512 cur = cur->ai_next;
513 }
514
515 /*
516 * XXX
517 * If numreic representation of AF1 can be interpreted as FQDN
518 * representation of AF2, we need to think again about the code below.
519 */
520 if (sentinel.ai_next) {
521 numeric = 1;
522 goto good;
523 }
524
525 if (hostname == NULL)
526 ERR(EAI_NONAME); /* used to be EAI_NODATA */
527 if (pai->ai_flags & AI_NUMERICHOST)
528 ERR(EAI_NONAME);
529
530 if ((pai->ai_flags & AI_ADDRCONFIG) != 0 && !addrconfig(&ai0))
531 ERR(EAI_FAIL);
532
533 /*
534 * hostname as alphabetical name.
535 * we would like to prefer AF_INET6 than AF_INET, so we'll make a
536 * outer loop by AFs.
537 */
538 for (ex = explore; ex->e_af >= 0; ex++) {
539 *pai = ai0;
540
541 /* require exact match for family field */
542 if (pai->ai_family != ex->e_af)
543 continue;
544
545 if (!MATCH(pai->ai_socktype, ex->e_socktype,
546 WILD_SOCKTYPE(ex))) {
547 continue;
548 }
549 if (!MATCH(pai->ai_protocol, ex->e_protocol,
550 WILD_PROTOCOL(ex))) {
551 continue;
552 }
553
554 if (pai->ai_socktype == ANY && ex->e_socktype != ANY)
555 pai->ai_socktype = ex->e_socktype;
556 if (pai->ai_protocol == ANY && ex->e_protocol != ANY)
557 pai->ai_protocol = ex->e_protocol;
558
559 error = explore_fqdn(pai, hostname, servname,
560 &cur->ai_next);
561
562 while (cur && cur->ai_next)
563 cur = cur->ai_next;
564 }
565
566 /* XXX inhibit errors if we have the result */
567 if (sentinel.ai_next)
568 error = 0;
569
570good:
571 /*
572 * ensure we return either:
573 * - error == 0, non-NULL *res
574 * - error != 0, NULL *res
575 */
576 if (error == 0) {
577 if (sentinel.ai_next) {
578 /*
579 * If the returned entry is for an active connection,
580 * and the given name is not numeric, reorder the
581 * list, so that the application would try the list
582 * in the most efficient order.
583 */
584 if (hints == NULL || !(hints->ai_flags & AI_PASSIVE)) {
585 if (!numeric)
586 (void)reorder(&sentinel);
587 }
588 *res = sentinel.ai_next;
589 return SUCCESS;
590 } else
591 error = EAI_FAIL;
592 }
593free:
594bad:
595 if (sentinel.ai_next)
596 freeaddrinfo(sentinel.ai_next);
597 *res = NULL;
598 return error;
599}
600
601static int
602reorder(sentinel)
603 struct addrinfo *sentinel;
604{
605 struct addrinfo *ai, **aip;
606 struct ai_order *aio;
607 int i, n;
608 struct policyhead policyhead;
609
610 /* count the number of addrinfo elements for sorting. */
611 for (n = 0, ai = sentinel->ai_next; ai != NULL; ai = ai->ai_next, n++)
612 ;
613
614 /*
615 * If the number is small enough, we can skip the reordering process.
616 */
617 if (n <= 1)
618 return(n);
619
620 /* allocate a temporary array for sort and initialization of it. */
621 if ((aio = malloc(sizeof(*aio) * n)) == NULL)
622 return(n); /* give up reordering */
623 memset(aio, 0, sizeof(*aio) * n);
624
625 /* retrieve address selection policy from the kernel */
626 TAILQ_INIT(&policyhead);
627 if (!get_addrselectpolicy(&policyhead)) {
628 /* no policy is installed into kernel, we don't sort. */
629 free(aio);
630 return (n);
631 }
632
633 for (i = 0, ai = sentinel->ai_next; i < n; ai = ai->ai_next, i++) {
634 aio[i].aio_ai = ai;
635 aio[i].aio_dstscope = gai_addr2scopetype(ai->ai_addr);
636 aio[i].aio_dstpolicy = match_addrselectpolicy(ai->ai_addr,
637 &policyhead);
638 set_source(&aio[i], &policyhead);
639 }
640
641 /* perform sorting. */
642 qsort(aio, n, sizeof(*aio), comp_dst);
643
644 /* reorder the addrinfo chain. */
645 for (i = 0, aip = &sentinel->ai_next; i < n; i++) {
646 *aip = aio[i].aio_ai;
647 aip = &aio[i].aio_ai->ai_next;
648 }
649 *aip = NULL;
650
651 /* cleanup and return */
652 free(aio);
653 free_addrselectpolicy(&policyhead);
654 return(n);
655}
656
657static int
658get_addrselectpolicy(head)
659 struct policyhead *head;
660{
661#ifdef INET6
662 int mib[] = { CTL_NET, PF_INET6, IPPROTO_IPV6, IPV6CTL_ADDRCTLPOLICY };
663 size_t l;
664 char *buf;
665 struct in6_addrpolicy *pol, *ep;
666
667 if (sysctl(mib, sizeof(mib) / sizeof(mib[0]), NULL, &l, NULL, 0) < 0)
668 return (0);
669 if ((buf = malloc(l)) == NULL)
670 return (0);
671 if (sysctl(mib, sizeof(mib) / sizeof(mib[0]), buf, &l, NULL, 0) < 0) {
672 free(buf);
673 return (0);
674 }
675
676 ep = (struct in6_addrpolicy *)(buf + l);
677 for (pol = (struct in6_addrpolicy *)buf; pol + 1 <= ep; pol++) {
678 struct policyqueue *new;
679
680 if ((new = malloc(sizeof(*new))) == NULL) {
681 free_addrselectpolicy(head); /* make the list empty */
682 break;
683 }
684 new->pc_policy = *pol;
685 TAILQ_INSERT_TAIL(head, new, pc_entry);
686 }
687
688 free(buf);
689 return (1);
690#else
691 return (0);
692#endif
693}
694
695static void
696free_addrselectpolicy(head)
697 struct policyhead *head;
698{
699 struct policyqueue *ent, *nent;
700
701 for (ent = TAILQ_FIRST(head); ent; ent = nent) {
702 nent = TAILQ_NEXT(ent, pc_entry);
703 TAILQ_REMOVE(head, ent, pc_entry);
704 free(ent);
705 }
706}
707
708static struct policyqueue *
709match_addrselectpolicy(addr, head)
710 struct sockaddr *addr;
711 struct policyhead *head;
712{
713#ifdef INET6
714 struct policyqueue *ent, *bestent = NULL;
715 struct in6_addrpolicy *pol;
716 int matchlen, bestmatchlen = -1;
717 u_char *mp, *ep, *k, *p, m;
718 struct sockaddr_in6 key;
719
720 switch(addr->sa_family) {
721 case AF_INET6:
722 key = *(struct sockaddr_in6 *)addr;
723 break;
724 case AF_INET:
725 /* convert the address into IPv4-mapped IPv6 address. */
726 memset(&key, 0, sizeof(key));
727 key.sin6_family = AF_INET6;
728 key.sin6_len = sizeof(key);
729 key.sin6_addr.s6_addr[10] = 0xff;
730 key.sin6_addr.s6_addr[11] = 0xff;
731 memcpy(&key.sin6_addr.s6_addr[12],
732 &((struct sockaddr_in *)addr)->sin_addr, 4);
733 break;
734 default:
735 return(NULL);
736 }
737
738 for (ent = TAILQ_FIRST(head); ent; ent = TAILQ_NEXT(ent, pc_entry)) {
739 pol = &ent->pc_policy;
740 matchlen = 0;
741
742 mp = (u_char *)&pol->addrmask.sin6_addr;
743 ep = mp + 16; /* XXX: scope field? */
744 k = (u_char *)&key.sin6_addr;
745 p = (u_char *)&pol->addr.sin6_addr;
746 for (; mp < ep && *mp; mp++, k++, p++) {
747 m = *mp;
748 if ((*k & m) != *p)
749 goto next; /* not match */
750 if (m == 0xff) /* short cut for a typical case */
751 matchlen += 8;
752 else {
753 while (m >= 0x80) {
754 matchlen++;
755 m <<= 1;
756 }
757 }
758 }
759
760 /* matched. check if this is better than the current best. */
761 if (matchlen > bestmatchlen) {
762 bestent = ent;
763 bestmatchlen = matchlen;
764 }
765
766 next:
767 continue;
768 }
769
770 return(bestent);
771#else
772 return(NULL);
773#endif
774
775}
776
777static void
778set_source(aio, ph)
779 struct ai_order *aio;
780 struct policyhead *ph;
781{
782 struct addrinfo ai = *aio->aio_ai;
783 struct sockaddr_storage ss;
784 socklen_t srclen;
785 int s;
786
787 /* set unspec ("no source is available"), just in case */
788 aio->aio_srcsa.sa_family = AF_UNSPEC;
789 aio->aio_srcscope = -1;
790
791 switch(ai.ai_family) {
792 case AF_INET:
793#ifdef INET6
794 case AF_INET6:
795#endif
796 break;
797 default: /* ignore unsupported AFs explicitly */
798 return;
799 }
800
801 /* XXX: make a dummy addrinfo to call connect() */
802 ai.ai_socktype = SOCK_DGRAM;
803 ai.ai_protocol = IPPROTO_UDP; /* is UDP too specific? */
804 ai.ai_next = NULL;
805 memset(&ss, 0, sizeof(ss));
806 memcpy(&ss, ai.ai_addr, ai.ai_addrlen);
807 ai.ai_addr = (struct sockaddr *)&ss;
808 get_port(&ai, "1", 0);
809
810 /* open a socket to get the source address for the given dst */
811 if ((s = _socket(ai.ai_family, ai.ai_socktype, ai.ai_protocol)) < 0)
812 return; /* give up */
813 if (_connect(s, ai.ai_addr, ai.ai_addrlen) < 0)
814 goto cleanup;
815 srclen = ai.ai_addrlen;
816 if (_getsockname(s, &aio->aio_srcsa, &srclen) < 0) {
817 aio->aio_srcsa.sa_family = AF_UNSPEC;
818 goto cleanup;
819 }
820 aio->aio_srcscope = gai_addr2scopetype(&aio->aio_srcsa);
821 aio->aio_srcpolicy = match_addrselectpolicy(&aio->aio_srcsa, ph);
822 aio->aio_matchlen = matchlen(&aio->aio_srcsa, aio->aio_ai->ai_addr);
823#ifdef INET6
824 if (ai.ai_family == AF_INET6) {
825 struct in6_ifreq ifr6;
826 u_int32_t flags6;
827
828 /* XXX: interface name should not be hardcoded */
829 strncpy(ifr6.ifr_name, "lo0", sizeof(ifr6.ifr_name));
830 memset(&ifr6, 0, sizeof(ifr6));
831 memcpy(&ifr6.ifr_addr, ai.ai_addr, ai.ai_addrlen);
832 if (_ioctl(s, SIOCGIFAFLAG_IN6, &ifr6) == 0) {
833 flags6 = ifr6.ifr_ifru.ifru_flags6;
834 if ((flags6 & IN6_IFF_DEPRECATED))
835 aio->aio_srcflag |= AIO_SRCFLAG_DEPRECATED;
836 }
837 }
838#endif
839
840 cleanup:
841 _close(s);
842 return;
843}
844
845static int
846matchlen(src, dst)
847 struct sockaddr *src, *dst;
848{
849 int match = 0;
850 u_char *s, *d;
851 u_char *lim, r;
852 int addrlen;
853
854 switch (src->sa_family) {
855#ifdef INET6
856 case AF_INET6:
857 s = (u_char *)&((struct sockaddr_in6 *)src)->sin6_addr;
858 d = (u_char *)&((struct sockaddr_in6 *)dst)->sin6_addr;
859 addrlen = sizeof(struct in6_addr);
860 lim = s + addrlen;
861 break;
862#endif
863 case AF_INET:
864 s = (u_char *)&((struct sockaddr_in *)src)->sin_addr;
865 d = (u_char *)&((struct sockaddr_in *)dst)->sin_addr;
866 addrlen = sizeof(struct in_addr);
867 lim = s + addrlen;
868 break;
869 default:
870 return(0);
871 }
872
873 while (s < lim)
874 if ((r = (*d++ ^ *s++)) != 0) {
875 while (r < addrlen * 8) {
876 match++;
877 r <<= 1;
878 }
879 break;
880 } else
881 match += 8;
882 return(match);
883}
884
885static int
886comp_dst(arg1, arg2)
887 const void *arg1, *arg2;
888{
889 const struct ai_order *dst1 = arg1, *dst2 = arg2;
890
891 /*
892 * Rule 1: Avoid unusable destinations.
893 * XXX: we currently do not consider if an appropriate route exists.
894 */
895 if (dst1->aio_srcsa.sa_family != AF_UNSPEC &&
896 dst2->aio_srcsa.sa_family == AF_UNSPEC) {
897 return(-1);
898 }
899 if (dst1->aio_srcsa.sa_family == AF_UNSPEC &&
900 dst2->aio_srcsa.sa_family != AF_UNSPEC) {
901 return(1);
902 }
903
904 /* Rule 2: Prefer matching scope. */
905 if (dst1->aio_dstscope == dst1->aio_srcscope &&
906 dst2->aio_dstscope != dst2->aio_srcscope) {
907 return(-1);
908 }
909 if (dst1->aio_dstscope != dst1->aio_srcscope &&
910 dst2->aio_dstscope == dst2->aio_srcscope) {
911 return(1);
912 }
913
914 /* Rule 3: Avoid deprecated addresses. */
915 if (dst1->aio_srcsa.sa_family != AF_UNSPEC &&
916 dst2->aio_srcsa.sa_family != AF_UNSPEC) {
917 if (!(dst1->aio_srcflag & AIO_SRCFLAG_DEPRECATED) &&
918 (dst2->aio_srcflag & AIO_SRCFLAG_DEPRECATED)) {
919 return(-1);
920 }
921 if ((dst1->aio_srcflag & AIO_SRCFLAG_DEPRECATED) &&
922 !(dst2->aio_srcflag & AIO_SRCFLAG_DEPRECATED)) {
923 return(1);
924 }
925 }
926
927 /* Rule 4: Prefer home addresses. */
928 /* XXX: not implemented yet */
929
930 /* Rule 5: Prefer matching label. */
931#ifdef INET6
932 if (dst1->aio_srcpolicy && dst1->aio_dstpolicy &&
933 dst1->aio_srcpolicy->pc_policy.label ==
934 dst1->aio_dstpolicy->pc_policy.label &&
935 (dst2->aio_srcpolicy == NULL || dst2->aio_dstpolicy == NULL ||
936 dst2->aio_srcpolicy->pc_policy.label !=
937 dst2->aio_dstpolicy->pc_policy.label)) {
938 return(-1);
939 }
940 if (dst2->aio_srcpolicy && dst2->aio_dstpolicy &&
941 dst2->aio_srcpolicy->pc_policy.label ==
942 dst2->aio_dstpolicy->pc_policy.label &&
943 (dst1->aio_srcpolicy == NULL || dst1->aio_dstpolicy == NULL ||
944 dst1->aio_srcpolicy->pc_policy.label !=
945 dst1->aio_dstpolicy->pc_policy.label)) {
946 return(1);
947 }
948#endif
949
950 /* Rule 6: Prefer higher precedence. */
951#ifdef INET6
952 if (dst1->aio_dstpolicy &&
953 (dst2->aio_dstpolicy == NULL ||
954 dst1->aio_dstpolicy->pc_policy.preced >
955 dst2->aio_dstpolicy->pc_policy.preced)) {
956 return(-1);
957 }
958 if (dst2->aio_dstpolicy &&
959 (dst1->aio_dstpolicy == NULL ||
960 dst2->aio_dstpolicy->pc_policy.preced >
961 dst1->aio_dstpolicy->pc_policy.preced)) {
962 return(1);
963 }
964#endif
965
966 /* Rule 7: Prefer native transport. */
967 /* XXX: not implemented yet */
968
969 /* Rule 8: Prefer smaller scope. */
970 if (dst1->aio_dstscope >= 0 &&
971 dst1->aio_dstscope < dst2->aio_dstscope) {
972 return(-1);
973 }
974 if (dst2->aio_dstscope >= 0 &&
975 dst2->aio_dstscope < dst1->aio_dstscope) {
976 return(1);
977 }
978
979 /*
980 * Rule 9: Use longest matching prefix.
981 * We compare the match length in a same AF only.
982 */
983 if (dst1->aio_ai->ai_addr->sa_family ==
984 dst2->aio_ai->ai_addr->sa_family) {
985 if (dst1->aio_matchlen > dst2->aio_matchlen) {
986 return(-1);
987 }
988 if (dst1->aio_matchlen < dst2->aio_matchlen) {
989 return(1);
990 }
991 }
992
993 /* Rule 10: Otherwise, leave the order unchanged. */
994 return(-1);
995}
996
997/*
998 * Copy from scope.c.
999 * XXX: we should standardize the functions and link them as standard
1000 * library.
1001 */
1002static int
1003gai_addr2scopetype(sa)
1004 struct sockaddr *sa;
1005{
1006#ifdef INET6
1007 struct sockaddr_in6 *sa6;
1008#endif
1009 struct sockaddr_in *sa4;
1010
1011 switch(sa->sa_family) {
1012#ifdef INET6
1013 case AF_INET6:
1014 sa6 = (struct sockaddr_in6 *)sa;
1015 if (IN6_IS_ADDR_MULTICAST(&sa6->sin6_addr)) {
1016 /* just use the scope field of the multicast address */
1017 return(sa6->sin6_addr.s6_addr[2] & 0x0f);
1018 }
1019 /*
1020 * Unicast addresses: map scope type to corresponding scope
1021 * value defined for multcast addresses.
1022 * XXX: hardcoded scope type values are bad...
1023 */
1024 if (IN6_IS_ADDR_LOOPBACK(&sa6->sin6_addr))
1025 return(1); /* node local scope */
1026 if (IN6_IS_ADDR_LINKLOCAL(&sa6->sin6_addr))
1027 return(2); /* link-local scope */
1028 if (IN6_IS_ADDR_SITELOCAL(&sa6->sin6_addr))
1029 return(5); /* site-local scope */
1030 return(14); /* global scope */
1031 break;
1032#endif
1033 case AF_INET:
1034 /*
1035 * IPv4 pseudo scoping according to RFC 3484.
1036 */
1037 sa4 = (struct sockaddr_in *)sa;
1038 /* IPv4 autoconfiguration addresses have link-local scope. */
1039 if (((u_char *)&sa4->sin_addr)[0] == 169 &&
1040 ((u_char *)&sa4->sin_addr)[1] == 254)
1041 return(2);
1042 /* Private addresses have site-local scope. */
1043 if (((u_char *)&sa4->sin_addr)[0] == 10 ||
1044 (((u_char *)&sa4->sin_addr)[0] == 172 &&
1045 (((u_char *)&sa4->sin_addr)[1] & 0xf0) == 16) ||
1046 (((u_char *)&sa4->sin_addr)[0] == 192 &&
1047 ((u_char *)&sa4->sin_addr)[1] == 168))
1048 return(14); /* XXX: It should be 5 unless NAT */
1049 /* Loopback addresses have link-local scope. */
1050 if (((u_char *)&sa4->sin_addr)[0] == 127)
1051 return(2);
1052 return(14);
1053 break;
1054 default:
1055 errno = EAFNOSUPPORT; /* is this a good error? */
1056 return(-1);
1057 }
1058}
1059
1060/*
1061 * hostname == NULL.
1062 * passive socket -> anyaddr (0.0.0.0 or ::)
1063 * non-passive socket -> localhost (127.0.0.1 or ::1)
1064 */
1065static int
1066explore_null(pai, servname, res)
1067 const struct addrinfo *pai;
1068 const char *servname;
1069 struct addrinfo **res;
1070{
1071 int s;
1072 const struct afd *afd;
1073 struct addrinfo *cur;
1074 struct addrinfo sentinel;
1075 int error;
1076
1077 *res = NULL;
1078 sentinel.ai_next = NULL;
1079 cur = &sentinel;
1080
1081 /*
1082 * filter out AFs that are not supported by the kernel
1083 * XXX errno?
1084 */
1085 s = _socket(pai->ai_family, SOCK_DGRAM, 0);
1086 if (s < 0) {
1087 if (errno != EMFILE)
1088 return 0;
1089 } else
1090 _close(s);
1091
1092 /*
1093 * if the servname does not match socktype/protocol, ignore it.
1094 */
1095 if (get_portmatch(pai, servname) != 0)
1096 return 0;
1097
1098 afd = find_afd(pai->ai_family);
1099 if (afd == NULL)
1100 return 0;
1101
1102 if (pai->ai_flags & AI_PASSIVE) {
1103 GET_AI(cur->ai_next, afd, afd->a_addrany);
1104 /* xxx meaningless?
1105 * GET_CANONNAME(cur->ai_next, "anyaddr");
1106 */
1107 GET_PORT(cur->ai_next, servname);
1108 } else {
1109 GET_AI(cur->ai_next, afd, afd->a_loopback);
1110 /* xxx meaningless?
1111 * GET_CANONNAME(cur->ai_next, "localhost");
1112 */
1113 GET_PORT(cur->ai_next, servname);
1114 }
1115 cur = cur->ai_next;
1116
1117 *res = sentinel.ai_next;
1118 return 0;
1119
1120free:
1121 if (sentinel.ai_next)
1122 freeaddrinfo(sentinel.ai_next);
1123 return error;
1124}
1125
1126/*
1127 * numeric hostname
1128 */
1129static int
1130explore_numeric(pai, hostname, servname, res, canonname)
1131 const struct addrinfo *pai;
1132 const char *hostname;
1133 const char *servname;
1134 struct addrinfo **res;
1135 const char *canonname;
1136{
1137 const struct afd *afd;
1138 struct addrinfo *cur;
1139 struct addrinfo sentinel;
1140 int error;
1141 char pton[PTON_MAX];
1142
1143 *res = NULL;
1144 sentinel.ai_next = NULL;
1145 cur = &sentinel;
1146
1147 /*
1148 * if the servname does not match socktype/protocol, ignore it.
1149 */
1150 if (get_portmatch(pai, servname) != 0)
1151 return 0;
1152
1153 afd = find_afd(pai->ai_family);
1154 if (afd == NULL)
1155 return 0;
1156
1157 switch (afd->a_af) {
1158#if 1 /*X/Open spec*/
1159 case AF_INET:
1160 if (inet_aton(hostname, (struct in_addr *)pton) == 1) {
1161 if (pai->ai_family == afd->a_af ||
1162 pai->ai_family == PF_UNSPEC /*?*/) {
1163 GET_AI(cur->ai_next, afd, pton);
1164 GET_PORT(cur->ai_next, servname);
1165 if ((pai->ai_flags & AI_CANONNAME)) {
1166 /*
1167 * Set the numeric address itself as
1168 * the canonical name, based on a
1169 * clarification in rfc3493.
1170 */
1171 GET_CANONNAME(cur->ai_next, canonname);
1172 }
1173 while (cur && cur->ai_next)
1174 cur = cur->ai_next;
1175 } else
1176 ERR(EAI_FAMILY); /*xxx*/
1177 }
1178 break;
1179#endif
1180 default:
1181 if (inet_pton(afd->a_af, hostname, pton) == 1) {
1182 if (pai->ai_family == afd->a_af ||
1183 pai->ai_family == PF_UNSPEC /*?*/) {
1184 GET_AI(cur->ai_next, afd, pton);
1185 GET_PORT(cur->ai_next, servname);
1186 if ((pai->ai_flags & AI_CANONNAME)) {
1187 /*
1188 * Set the numeric address itself as
1189 * the canonical name, based on a
1190 * clarification in rfc3493.
1191 */
1192 GET_CANONNAME(cur->ai_next, canonname);
1193 }
1194 while (cur && cur->ai_next)
1195 cur = cur->ai_next;
1196 } else
1197 ERR(EAI_FAMILY); /* XXX */
1198 }
1199 break;
1200 }
1201
1202 *res = sentinel.ai_next;
1203 return 0;
1204
1205free:
1206bad:
1207 if (sentinel.ai_next)
1208 freeaddrinfo(sentinel.ai_next);
1209 return error;
1210}
1211
1212/*
1213 * numeric hostname with scope
1214 */
1215static int
1216explore_numeric_scope(pai, hostname, servname, res)
1217 const struct addrinfo *pai;
1218 const char *hostname;
1219 const char *servname;
1220 struct addrinfo **res;
1221{
1222#if !defined(SCOPE_DELIMITER) || !defined(INET6)
1223 return explore_numeric(pai, hostname, servname, res, hostname);
1224#else
1225 const struct afd *afd;
1226 struct addrinfo *cur;
1227 int error;
1228 char *cp, *hostname2 = NULL, *scope, *addr;
1229 struct sockaddr_in6 *sin6;
1230
1231 /*
1232 * if the servname does not match socktype/protocol, ignore it.
1233 */
1234 if (get_portmatch(pai, servname) != 0)
1235 return 0;
1236
1237 afd = find_afd(pai->ai_family);
1238 if (afd == NULL)
1239 return 0;
1240
1241 if (!afd->a_scoped)
1242 return explore_numeric(pai, hostname, servname, res, hostname);
1243
1244 cp = strchr(hostname, SCOPE_DELIMITER);
1245 if (cp == NULL)
1246 return explore_numeric(pai, hostname, servname, res, hostname);
1247
1248 /*
1249 * Handle special case of <scoped_address><delimiter><scope id>
1250 */
1251 hostname2 = strdup(hostname);
1252 if (hostname2 == NULL)
1253 return EAI_MEMORY;
1254 /* terminate at the delimiter */
1255 hostname2[cp - hostname] = '\0';
1256 addr = hostname2;
1257 scope = cp + 1;
1258
1259 error = explore_numeric(pai, addr, servname, res, hostname);
1260 if (error == 0) {
1261 u_int32_t scopeid;
1262
1263 for (cur = *res; cur; cur = cur->ai_next) {
1264 if (cur->ai_family != AF_INET6)
1265 continue;
1266 sin6 = (struct sockaddr_in6 *)(void *)cur->ai_addr;
1267 if (ip6_str2scopeid(scope, sin6, &scopeid) == -1) {
1268 free(hostname2);
1269 return(EAI_NONAME); /* XXX: is return OK? */
1270 }
1271 sin6->sin6_scope_id = scopeid;
1272 }
1273 }
1274
1275 free(hostname2);
1276
1277 return error;
1278#endif
1279}
1280
1281static int
1282get_canonname(pai, ai, str)
1283 const struct addrinfo *pai;
1284 struct addrinfo *ai;
1285 const char *str;
1286{
1287 if ((pai->ai_flags & AI_CANONNAME) != 0) {
1288 ai->ai_canonname = strdup(str);
1289 if (ai->ai_canonname == NULL)
1290 return EAI_MEMORY;
1291 }
1292 return 0;
1293}
1294
1295static struct addrinfo *
1296get_ai(pai, afd, addr)
1297 const struct addrinfo *pai;
1298 const struct afd *afd;
1299 const char *addr;
1300{
1301 char *p;
1302 struct addrinfo *ai;
1303#ifdef FAITH
1304 struct in6_addr faith_prefix;
1305 char *fp_str;
1306 int translate = 0;
1307#endif
1308
1309#ifdef FAITH
1310 /*
1311 * Transfrom an IPv4 addr into a special IPv6 addr format for
1312 * IPv6->IPv4 translation gateway. (only TCP is supported now)
1313 *
1314 * +-----------------------------------+------------+
1315 * | faith prefix part (12 bytes) | embedded |
1316 * | | IPv4 addr part (4 bytes)
1317 * +-----------------------------------+------------+
1318 *
1319 * faith prefix part is specified as ascii IPv6 addr format
1320 * in environmental variable GAI.
1321 * For FAITH to work correctly, routing to faith prefix must be
1322 * setup toward a machine where a FAITH daemon operates.
1323 * Also, the machine must enable some mechanizm
1324 * (e.g. faith interface hack) to divert those packet with
1325 * faith prefixed destination addr to user-land FAITH daemon.
1326 */
1327 fp_str = getenv("GAI");
1328 if (fp_str && inet_pton(AF_INET6, fp_str, &faith_prefix) == 1 &&
1329 afd->a_af == AF_INET && pai->ai_socktype == SOCK_STREAM) {
1330 u_int32_t v4a;
1331 u_int8_t v4a_top;
1332
1333 memcpy(&v4a, addr, sizeof v4a);
1334 v4a_top = v4a >> IN_CLASSA_NSHIFT;
1335 if (!IN_MULTICAST(v4a) && !IN_EXPERIMENTAL(v4a) &&
1336 v4a_top != 0 && v4a != IN_LOOPBACKNET) {
1337 afd = &afdl[N_INET6];
1338 memcpy(&faith_prefix.s6_addr[12], addr,
1339 sizeof(struct in_addr));
1340 translate = 1;
1341 }
1342 }
1343#endif
1344
1345 ai = (struct addrinfo *)malloc(sizeof(struct addrinfo)
1346 + (afd->a_socklen));
1347 if (ai == NULL)
1348 return NULL;
1349
1350 memcpy(ai, pai, sizeof(struct addrinfo));
1351 ai->ai_addr = (struct sockaddr *)(void *)(ai + 1);
1352 memset(ai->ai_addr, 0, (size_t)afd->a_socklen);
1353 ai->ai_addr->sa_len = afd->a_socklen;
1354 ai->ai_addrlen = afd->a_socklen;
139 int a_off;
140 const char *a_addrany;
141 const char *a_loopback;
142 int a_scoped;
143} afdl [] = {
144#ifdef INET6
145#define N_INET6 0
146 {PF_INET6, sizeof(struct in6_addr),
147 sizeof(struct sockaddr_in6),
148 offsetof(struct sockaddr_in6, sin6_addr),
149 in6_addrany, in6_loopback, 1},
150#define N_INET 1
151#else
152#define N_INET 0
153#endif
154 {PF_INET, sizeof(struct in_addr),
155 sizeof(struct sockaddr_in),
156 offsetof(struct sockaddr_in, sin_addr),
157 in_addrany, in_loopback, 0},
158 {0, 0, 0, 0, NULL, NULL, 0},
159};
160
161struct explore {
162 int e_af;
163 int e_socktype;
164 int e_protocol;
165 const char *e_protostr;
166 int e_wild;
167#define WILD_AF(ex) ((ex)->e_wild & 0x01)
168#define WILD_SOCKTYPE(ex) ((ex)->e_wild & 0x02)
169#define WILD_PROTOCOL(ex) ((ex)->e_wild & 0x04)
170};
171
172static const struct explore explore[] = {
173#if 0
174 { PF_LOCAL, 0, ANY, ANY, NULL, 0x01 },
175#endif
176#ifdef INET6
177 { PF_INET6, SOCK_DGRAM, IPPROTO_UDP, "udp", 0x07 },
178 { PF_INET6, SOCK_STREAM, IPPROTO_TCP, "tcp", 0x07 },
179 { PF_INET6, SOCK_RAW, ANY, NULL, 0x05 },
180#endif
181 { PF_INET, SOCK_DGRAM, IPPROTO_UDP, "udp", 0x07 },
182 { PF_INET, SOCK_STREAM, IPPROTO_TCP, "tcp", 0x07 },
183 { PF_INET, SOCK_RAW, ANY, NULL, 0x05 },
184 { PF_UNSPEC, SOCK_DGRAM, IPPROTO_UDP, "udp", 0x07 },
185 { PF_UNSPEC, SOCK_STREAM, IPPROTO_TCP, "tcp", 0x07 },
186 { PF_UNSPEC, SOCK_RAW, ANY, NULL, 0x05 },
187 { -1, 0, 0, NULL, 0 },
188};
189
190#ifdef INET6
191#define PTON_MAX 16
192#else
193#define PTON_MAX 4
194#endif
195
196#define AIO_SRCFLAG_DEPRECATED 0x1
197
198struct ai_order {
199 union {
200 struct sockaddr_storage aiou_ss;
201 struct sockaddr aiou_sa;
202 } aio_src_un;
203#define aio_srcsa aio_src_un.aiou_sa
204 u_int32_t aio_srcflag;
205 int aio_srcscope;
206 int aio_dstscope;
207 struct policyqueue *aio_srcpolicy;
208 struct policyqueue *aio_dstpolicy;
209 struct addrinfo *aio_ai;
210 int aio_matchlen;
211};
212
213static const ns_src default_dns_files[] = {
214 { NSSRC_FILES, NS_SUCCESS },
215 { NSSRC_DNS, NS_SUCCESS },
216 { 0 }
217};
218
219struct res_target {
220 struct res_target *next;
221 const char *name; /* domain name */
222 int qclass, qtype; /* class and type of query */
223 u_char *answer; /* buffer to put answer */
224 int anslen; /* size of answer buffer */
225 int n; /* result length */
226};
227
228#define MAXPACKET (64*1024)
229
230typedef union {
231 HEADER hdr;
232 u_char buf[MAXPACKET];
233} querybuf;
234
235static int str2number(const char *);
236static int explore_null(const struct addrinfo *,
237 const char *, struct addrinfo **);
238static int explore_numeric(const struct addrinfo *, const char *,
239 const char *, struct addrinfo **, const char *);
240static int explore_numeric_scope(const struct addrinfo *, const char *,
241 const char *, struct addrinfo **);
242static int get_canonname(const struct addrinfo *,
243 struct addrinfo *, const char *);
244static struct addrinfo *get_ai(const struct addrinfo *,
245 const struct afd *, const char *);
246static int get_portmatch(const struct addrinfo *, const char *);
247static int get_port(struct addrinfo *, const char *, int);
248static const struct afd *find_afd(int);
249static int addrconfig(struct addrinfo *);
250static void set_source(struct ai_order *, struct policyhead *);
251static int comp_dst(const void *, const void *);
252#ifdef INET6
253static int ip6_str2scopeid(char *, struct sockaddr_in6 *, u_int32_t *);
254#endif
255static int gai_addr2scopetype(struct sockaddr *);
256
257static int explore_fqdn(const struct addrinfo *, const char *,
258 const char *, struct addrinfo **);
259
260static int reorder(struct addrinfo *);
261static int get_addrselectpolicy(struct policyhead *);
262static void free_addrselectpolicy(struct policyhead *);
263static struct policyqueue *match_addrselectpolicy(struct sockaddr *,
264 struct policyhead *);
265static int matchlen(struct sockaddr *, struct sockaddr *);
266
267static struct addrinfo *getanswer(const querybuf *, int, const char *, int,
268 const struct addrinfo *);
269#if defined(RESOLVSORT)
270static int addr4sort(struct addrinfo *);
271#endif
272static int _dns_getaddrinfo(void *, void *, va_list);
273static void _sethtent(FILE **);
274static void _endhtent(FILE **);
275static struct addrinfo *_gethtent(FILE **, const char *,
276 const struct addrinfo *);
277static int _files_getaddrinfo(void *, void *, va_list);
278#ifdef YP
279static struct addrinfo *_yphostent(char *, const struct addrinfo *);
280static int _yp_getaddrinfo(void *, void *, va_list);
281#endif
282
283static int res_queryN(const char *, struct res_target *);
284static int res_searchN(const char *, struct res_target *);
285static int res_querydomainN(const char *, const char *,
286 struct res_target *);
287
288/* XXX macros that make external reference is BAD. */
289
290#define GET_AI(ai, afd, addr) \
291do { \
292 /* external reference: pai, error, and label free */ \
293 (ai) = get_ai(pai, (afd), (addr)); \
294 if ((ai) == NULL) { \
295 error = EAI_MEMORY; \
296 goto free; \
297 } \
298} while (/*CONSTCOND*/0)
299
300#define GET_PORT(ai, serv) \
301do { \
302 /* external reference: error and label free */ \
303 error = get_port((ai), (serv), 0); \
304 if (error != 0) \
305 goto free; \
306} while (/*CONSTCOND*/0)
307
308#define GET_CANONNAME(ai, str) \
309do { \
310 /* external reference: pai, error and label free */ \
311 error = get_canonname(pai, (ai), (str)); \
312 if (error != 0) \
313 goto free; \
314} while (/*CONSTCOND*/0)
315
316#define ERR(err) \
317do { \
318 /* external reference: error, and label bad */ \
319 error = (err); \
320 goto bad; \
321 /*NOTREACHED*/ \
322} while (/*CONSTCOND*/0)
323
324#define MATCH_FAMILY(x, y, w) \
325 ((x) == (y) || (/*CONSTCOND*/(w) && ((x) == PF_UNSPEC || (y) == PF_UNSPEC)))
326#define MATCH(x, y, w) \
327 ((x) == (y) || (/*CONSTCOND*/(w) && ((x) == ANY || (y) == ANY)))
328
329void
330freeaddrinfo(ai)
331 struct addrinfo *ai;
332{
333 struct addrinfo *next;
334
335 do {
336 next = ai->ai_next;
337 if (ai->ai_canonname)
338 free(ai->ai_canonname);
339 /* no need to free(ai->ai_addr) */
340 free(ai);
341 ai = next;
342 } while (ai);
343}
344
345static int
346str2number(p)
347 const char *p;
348{
349 char *ep;
350 unsigned long v;
351
352 if (*p == '\0')
353 return -1;
354 ep = NULL;
355 errno = 0;
356 v = strtoul(p, &ep, 10);
357 if (errno == 0 && ep && *ep == '\0' && v <= UINT_MAX)
358 return v;
359 else
360 return -1;
361}
362
363int
364getaddrinfo(hostname, servname, hints, res)
365 const char *hostname, *servname;
366 const struct addrinfo *hints;
367 struct addrinfo **res;
368{
369 struct addrinfo sentinel;
370 struct addrinfo *cur;
371 int error = 0;
372 struct addrinfo ai;
373 struct addrinfo ai0;
374 struct addrinfo *pai;
375 const struct explore *ex;
376 int numeric = 0;
377
378 memset(&sentinel, 0, sizeof(sentinel));
379 cur = &sentinel;
380 pai = &ai;
381 pai->ai_flags = 0;
382 pai->ai_family = PF_UNSPEC;
383 pai->ai_socktype = ANY;
384 pai->ai_protocol = ANY;
385 pai->ai_addrlen = 0;
386 pai->ai_canonname = NULL;
387 pai->ai_addr = NULL;
388 pai->ai_next = NULL;
389
390 if (hostname == NULL && servname == NULL)
391 return EAI_NONAME;
392 if (hints) {
393 /* error check for hints */
394 if (hints->ai_addrlen || hints->ai_canonname ||
395 hints->ai_addr || hints->ai_next)
396 ERR(EAI_BADHINTS); /* xxx */
397 if (hints->ai_flags & ~AI_MASK)
398 ERR(EAI_BADFLAGS);
399 switch (hints->ai_family) {
400 case PF_UNSPEC:
401 case PF_INET:
402#ifdef INET6
403 case PF_INET6:
404#endif
405 break;
406 default:
407 ERR(EAI_FAMILY);
408 }
409 memcpy(pai, hints, sizeof(*pai));
410
411 /*
412 * if both socktype/protocol are specified, check if they
413 * are meaningful combination.
414 */
415 if (pai->ai_socktype != ANY && pai->ai_protocol != ANY) {
416 for (ex = explore; ex->e_af >= 0; ex++) {
417 if (pai->ai_family != ex->e_af)
418 continue;
419 if (ex->e_socktype == ANY)
420 continue;
421 if (ex->e_protocol == ANY)
422 continue;
423 if (pai->ai_socktype == ex->e_socktype &&
424 pai->ai_protocol != ex->e_protocol) {
425 ERR(EAI_BADHINTS);
426 }
427 }
428 }
429 }
430
431 /*
432 * post-2553: AI_ALL and AI_V4MAPPED are effective only against
433 * AF_INET6 query. They need to be ignored if specified in other
434 * occassions.
435 */
436 switch (pai->ai_flags & (AI_ALL | AI_V4MAPPED)) {
437 case AI_V4MAPPED:
438 case AI_ALL | AI_V4MAPPED:
439 if (pai->ai_family != AF_INET6)
440 pai->ai_flags &= ~(AI_ALL | AI_V4MAPPED);
441 break;
442 case AI_ALL:
443#if 1
444 /* illegal */
445 ERR(EAI_BADFLAGS);
446#else
447 pai->ai_flags &= ~(AI_ALL | AI_V4MAPPED);
448#endif
449 break;
450 }
451
452 /*
453 * check for special cases. (1) numeric servname is disallowed if
454 * socktype/protocol are left unspecified. (2) servname is disallowed
455 * for raw and other inet{,6} sockets.
456 */
457 if (MATCH_FAMILY(pai->ai_family, PF_INET, 1)
458#ifdef PF_INET6
459 || MATCH_FAMILY(pai->ai_family, PF_INET6, 1)
460#endif
461 ) {
462 ai0 = *pai; /* backup *pai */
463
464 if (pai->ai_family == PF_UNSPEC) {
465#ifdef PF_INET6
466 pai->ai_family = PF_INET6;
467#else
468 pai->ai_family = PF_INET;
469#endif
470 }
471 error = get_portmatch(pai, servname);
472 if (error)
473 ERR(error);
474
475 *pai = ai0;
476 }
477
478 ai0 = *pai;
479
480 /* NULL hostname, or numeric hostname */
481 for (ex = explore; ex->e_af >= 0; ex++) {
482 *pai = ai0;
483
484 /* PF_UNSPEC entries are prepared for DNS queries only */
485 if (ex->e_af == PF_UNSPEC)
486 continue;
487
488 if (!MATCH_FAMILY(pai->ai_family, ex->e_af, WILD_AF(ex)))
489 continue;
490 if (!MATCH(pai->ai_socktype, ex->e_socktype, WILD_SOCKTYPE(ex)))
491 continue;
492 if (!MATCH(pai->ai_protocol, ex->e_protocol, WILD_PROTOCOL(ex)))
493 continue;
494
495 if (pai->ai_family == PF_UNSPEC)
496 pai->ai_family = ex->e_af;
497 if (pai->ai_socktype == ANY && ex->e_socktype != ANY)
498 pai->ai_socktype = ex->e_socktype;
499 if (pai->ai_protocol == ANY && ex->e_protocol != ANY)
500 pai->ai_protocol = ex->e_protocol;
501
502 if (hostname == NULL)
503 error = explore_null(pai, servname, &cur->ai_next);
504 else
505 error = explore_numeric_scope(pai, hostname, servname,
506 &cur->ai_next);
507
508 if (error)
509 goto free;
510
511 while (cur && cur->ai_next)
512 cur = cur->ai_next;
513 }
514
515 /*
516 * XXX
517 * If numreic representation of AF1 can be interpreted as FQDN
518 * representation of AF2, we need to think again about the code below.
519 */
520 if (sentinel.ai_next) {
521 numeric = 1;
522 goto good;
523 }
524
525 if (hostname == NULL)
526 ERR(EAI_NONAME); /* used to be EAI_NODATA */
527 if (pai->ai_flags & AI_NUMERICHOST)
528 ERR(EAI_NONAME);
529
530 if ((pai->ai_flags & AI_ADDRCONFIG) != 0 && !addrconfig(&ai0))
531 ERR(EAI_FAIL);
532
533 /*
534 * hostname as alphabetical name.
535 * we would like to prefer AF_INET6 than AF_INET, so we'll make a
536 * outer loop by AFs.
537 */
538 for (ex = explore; ex->e_af >= 0; ex++) {
539 *pai = ai0;
540
541 /* require exact match for family field */
542 if (pai->ai_family != ex->e_af)
543 continue;
544
545 if (!MATCH(pai->ai_socktype, ex->e_socktype,
546 WILD_SOCKTYPE(ex))) {
547 continue;
548 }
549 if (!MATCH(pai->ai_protocol, ex->e_protocol,
550 WILD_PROTOCOL(ex))) {
551 continue;
552 }
553
554 if (pai->ai_socktype == ANY && ex->e_socktype != ANY)
555 pai->ai_socktype = ex->e_socktype;
556 if (pai->ai_protocol == ANY && ex->e_protocol != ANY)
557 pai->ai_protocol = ex->e_protocol;
558
559 error = explore_fqdn(pai, hostname, servname,
560 &cur->ai_next);
561
562 while (cur && cur->ai_next)
563 cur = cur->ai_next;
564 }
565
566 /* XXX inhibit errors if we have the result */
567 if (sentinel.ai_next)
568 error = 0;
569
570good:
571 /*
572 * ensure we return either:
573 * - error == 0, non-NULL *res
574 * - error != 0, NULL *res
575 */
576 if (error == 0) {
577 if (sentinel.ai_next) {
578 /*
579 * If the returned entry is for an active connection,
580 * and the given name is not numeric, reorder the
581 * list, so that the application would try the list
582 * in the most efficient order.
583 */
584 if (hints == NULL || !(hints->ai_flags & AI_PASSIVE)) {
585 if (!numeric)
586 (void)reorder(&sentinel);
587 }
588 *res = sentinel.ai_next;
589 return SUCCESS;
590 } else
591 error = EAI_FAIL;
592 }
593free:
594bad:
595 if (sentinel.ai_next)
596 freeaddrinfo(sentinel.ai_next);
597 *res = NULL;
598 return error;
599}
600
601static int
602reorder(sentinel)
603 struct addrinfo *sentinel;
604{
605 struct addrinfo *ai, **aip;
606 struct ai_order *aio;
607 int i, n;
608 struct policyhead policyhead;
609
610 /* count the number of addrinfo elements for sorting. */
611 for (n = 0, ai = sentinel->ai_next; ai != NULL; ai = ai->ai_next, n++)
612 ;
613
614 /*
615 * If the number is small enough, we can skip the reordering process.
616 */
617 if (n <= 1)
618 return(n);
619
620 /* allocate a temporary array for sort and initialization of it. */
621 if ((aio = malloc(sizeof(*aio) * n)) == NULL)
622 return(n); /* give up reordering */
623 memset(aio, 0, sizeof(*aio) * n);
624
625 /* retrieve address selection policy from the kernel */
626 TAILQ_INIT(&policyhead);
627 if (!get_addrselectpolicy(&policyhead)) {
628 /* no policy is installed into kernel, we don't sort. */
629 free(aio);
630 return (n);
631 }
632
633 for (i = 0, ai = sentinel->ai_next; i < n; ai = ai->ai_next, i++) {
634 aio[i].aio_ai = ai;
635 aio[i].aio_dstscope = gai_addr2scopetype(ai->ai_addr);
636 aio[i].aio_dstpolicy = match_addrselectpolicy(ai->ai_addr,
637 &policyhead);
638 set_source(&aio[i], &policyhead);
639 }
640
641 /* perform sorting. */
642 qsort(aio, n, sizeof(*aio), comp_dst);
643
644 /* reorder the addrinfo chain. */
645 for (i = 0, aip = &sentinel->ai_next; i < n; i++) {
646 *aip = aio[i].aio_ai;
647 aip = &aio[i].aio_ai->ai_next;
648 }
649 *aip = NULL;
650
651 /* cleanup and return */
652 free(aio);
653 free_addrselectpolicy(&policyhead);
654 return(n);
655}
656
657static int
658get_addrselectpolicy(head)
659 struct policyhead *head;
660{
661#ifdef INET6
662 int mib[] = { CTL_NET, PF_INET6, IPPROTO_IPV6, IPV6CTL_ADDRCTLPOLICY };
663 size_t l;
664 char *buf;
665 struct in6_addrpolicy *pol, *ep;
666
667 if (sysctl(mib, sizeof(mib) / sizeof(mib[0]), NULL, &l, NULL, 0) < 0)
668 return (0);
669 if ((buf = malloc(l)) == NULL)
670 return (0);
671 if (sysctl(mib, sizeof(mib) / sizeof(mib[0]), buf, &l, NULL, 0) < 0) {
672 free(buf);
673 return (0);
674 }
675
676 ep = (struct in6_addrpolicy *)(buf + l);
677 for (pol = (struct in6_addrpolicy *)buf; pol + 1 <= ep; pol++) {
678 struct policyqueue *new;
679
680 if ((new = malloc(sizeof(*new))) == NULL) {
681 free_addrselectpolicy(head); /* make the list empty */
682 break;
683 }
684 new->pc_policy = *pol;
685 TAILQ_INSERT_TAIL(head, new, pc_entry);
686 }
687
688 free(buf);
689 return (1);
690#else
691 return (0);
692#endif
693}
694
695static void
696free_addrselectpolicy(head)
697 struct policyhead *head;
698{
699 struct policyqueue *ent, *nent;
700
701 for (ent = TAILQ_FIRST(head); ent; ent = nent) {
702 nent = TAILQ_NEXT(ent, pc_entry);
703 TAILQ_REMOVE(head, ent, pc_entry);
704 free(ent);
705 }
706}
707
708static struct policyqueue *
709match_addrselectpolicy(addr, head)
710 struct sockaddr *addr;
711 struct policyhead *head;
712{
713#ifdef INET6
714 struct policyqueue *ent, *bestent = NULL;
715 struct in6_addrpolicy *pol;
716 int matchlen, bestmatchlen = -1;
717 u_char *mp, *ep, *k, *p, m;
718 struct sockaddr_in6 key;
719
720 switch(addr->sa_family) {
721 case AF_INET6:
722 key = *(struct sockaddr_in6 *)addr;
723 break;
724 case AF_INET:
725 /* convert the address into IPv4-mapped IPv6 address. */
726 memset(&key, 0, sizeof(key));
727 key.sin6_family = AF_INET6;
728 key.sin6_len = sizeof(key);
729 key.sin6_addr.s6_addr[10] = 0xff;
730 key.sin6_addr.s6_addr[11] = 0xff;
731 memcpy(&key.sin6_addr.s6_addr[12],
732 &((struct sockaddr_in *)addr)->sin_addr, 4);
733 break;
734 default:
735 return(NULL);
736 }
737
738 for (ent = TAILQ_FIRST(head); ent; ent = TAILQ_NEXT(ent, pc_entry)) {
739 pol = &ent->pc_policy;
740 matchlen = 0;
741
742 mp = (u_char *)&pol->addrmask.sin6_addr;
743 ep = mp + 16; /* XXX: scope field? */
744 k = (u_char *)&key.sin6_addr;
745 p = (u_char *)&pol->addr.sin6_addr;
746 for (; mp < ep && *mp; mp++, k++, p++) {
747 m = *mp;
748 if ((*k & m) != *p)
749 goto next; /* not match */
750 if (m == 0xff) /* short cut for a typical case */
751 matchlen += 8;
752 else {
753 while (m >= 0x80) {
754 matchlen++;
755 m <<= 1;
756 }
757 }
758 }
759
760 /* matched. check if this is better than the current best. */
761 if (matchlen > bestmatchlen) {
762 bestent = ent;
763 bestmatchlen = matchlen;
764 }
765
766 next:
767 continue;
768 }
769
770 return(bestent);
771#else
772 return(NULL);
773#endif
774
775}
776
777static void
778set_source(aio, ph)
779 struct ai_order *aio;
780 struct policyhead *ph;
781{
782 struct addrinfo ai = *aio->aio_ai;
783 struct sockaddr_storage ss;
784 socklen_t srclen;
785 int s;
786
787 /* set unspec ("no source is available"), just in case */
788 aio->aio_srcsa.sa_family = AF_UNSPEC;
789 aio->aio_srcscope = -1;
790
791 switch(ai.ai_family) {
792 case AF_INET:
793#ifdef INET6
794 case AF_INET6:
795#endif
796 break;
797 default: /* ignore unsupported AFs explicitly */
798 return;
799 }
800
801 /* XXX: make a dummy addrinfo to call connect() */
802 ai.ai_socktype = SOCK_DGRAM;
803 ai.ai_protocol = IPPROTO_UDP; /* is UDP too specific? */
804 ai.ai_next = NULL;
805 memset(&ss, 0, sizeof(ss));
806 memcpy(&ss, ai.ai_addr, ai.ai_addrlen);
807 ai.ai_addr = (struct sockaddr *)&ss;
808 get_port(&ai, "1", 0);
809
810 /* open a socket to get the source address for the given dst */
811 if ((s = _socket(ai.ai_family, ai.ai_socktype, ai.ai_protocol)) < 0)
812 return; /* give up */
813 if (_connect(s, ai.ai_addr, ai.ai_addrlen) < 0)
814 goto cleanup;
815 srclen = ai.ai_addrlen;
816 if (_getsockname(s, &aio->aio_srcsa, &srclen) < 0) {
817 aio->aio_srcsa.sa_family = AF_UNSPEC;
818 goto cleanup;
819 }
820 aio->aio_srcscope = gai_addr2scopetype(&aio->aio_srcsa);
821 aio->aio_srcpolicy = match_addrselectpolicy(&aio->aio_srcsa, ph);
822 aio->aio_matchlen = matchlen(&aio->aio_srcsa, aio->aio_ai->ai_addr);
823#ifdef INET6
824 if (ai.ai_family == AF_INET6) {
825 struct in6_ifreq ifr6;
826 u_int32_t flags6;
827
828 /* XXX: interface name should not be hardcoded */
829 strncpy(ifr6.ifr_name, "lo0", sizeof(ifr6.ifr_name));
830 memset(&ifr6, 0, sizeof(ifr6));
831 memcpy(&ifr6.ifr_addr, ai.ai_addr, ai.ai_addrlen);
832 if (_ioctl(s, SIOCGIFAFLAG_IN6, &ifr6) == 0) {
833 flags6 = ifr6.ifr_ifru.ifru_flags6;
834 if ((flags6 & IN6_IFF_DEPRECATED))
835 aio->aio_srcflag |= AIO_SRCFLAG_DEPRECATED;
836 }
837 }
838#endif
839
840 cleanup:
841 _close(s);
842 return;
843}
844
845static int
846matchlen(src, dst)
847 struct sockaddr *src, *dst;
848{
849 int match = 0;
850 u_char *s, *d;
851 u_char *lim, r;
852 int addrlen;
853
854 switch (src->sa_family) {
855#ifdef INET6
856 case AF_INET6:
857 s = (u_char *)&((struct sockaddr_in6 *)src)->sin6_addr;
858 d = (u_char *)&((struct sockaddr_in6 *)dst)->sin6_addr;
859 addrlen = sizeof(struct in6_addr);
860 lim = s + addrlen;
861 break;
862#endif
863 case AF_INET:
864 s = (u_char *)&((struct sockaddr_in *)src)->sin_addr;
865 d = (u_char *)&((struct sockaddr_in *)dst)->sin_addr;
866 addrlen = sizeof(struct in_addr);
867 lim = s + addrlen;
868 break;
869 default:
870 return(0);
871 }
872
873 while (s < lim)
874 if ((r = (*d++ ^ *s++)) != 0) {
875 while (r < addrlen * 8) {
876 match++;
877 r <<= 1;
878 }
879 break;
880 } else
881 match += 8;
882 return(match);
883}
884
885static int
886comp_dst(arg1, arg2)
887 const void *arg1, *arg2;
888{
889 const struct ai_order *dst1 = arg1, *dst2 = arg2;
890
891 /*
892 * Rule 1: Avoid unusable destinations.
893 * XXX: we currently do not consider if an appropriate route exists.
894 */
895 if (dst1->aio_srcsa.sa_family != AF_UNSPEC &&
896 dst2->aio_srcsa.sa_family == AF_UNSPEC) {
897 return(-1);
898 }
899 if (dst1->aio_srcsa.sa_family == AF_UNSPEC &&
900 dst2->aio_srcsa.sa_family != AF_UNSPEC) {
901 return(1);
902 }
903
904 /* Rule 2: Prefer matching scope. */
905 if (dst1->aio_dstscope == dst1->aio_srcscope &&
906 dst2->aio_dstscope != dst2->aio_srcscope) {
907 return(-1);
908 }
909 if (dst1->aio_dstscope != dst1->aio_srcscope &&
910 dst2->aio_dstscope == dst2->aio_srcscope) {
911 return(1);
912 }
913
914 /* Rule 3: Avoid deprecated addresses. */
915 if (dst1->aio_srcsa.sa_family != AF_UNSPEC &&
916 dst2->aio_srcsa.sa_family != AF_UNSPEC) {
917 if (!(dst1->aio_srcflag & AIO_SRCFLAG_DEPRECATED) &&
918 (dst2->aio_srcflag & AIO_SRCFLAG_DEPRECATED)) {
919 return(-1);
920 }
921 if ((dst1->aio_srcflag & AIO_SRCFLAG_DEPRECATED) &&
922 !(dst2->aio_srcflag & AIO_SRCFLAG_DEPRECATED)) {
923 return(1);
924 }
925 }
926
927 /* Rule 4: Prefer home addresses. */
928 /* XXX: not implemented yet */
929
930 /* Rule 5: Prefer matching label. */
931#ifdef INET6
932 if (dst1->aio_srcpolicy && dst1->aio_dstpolicy &&
933 dst1->aio_srcpolicy->pc_policy.label ==
934 dst1->aio_dstpolicy->pc_policy.label &&
935 (dst2->aio_srcpolicy == NULL || dst2->aio_dstpolicy == NULL ||
936 dst2->aio_srcpolicy->pc_policy.label !=
937 dst2->aio_dstpolicy->pc_policy.label)) {
938 return(-1);
939 }
940 if (dst2->aio_srcpolicy && dst2->aio_dstpolicy &&
941 dst2->aio_srcpolicy->pc_policy.label ==
942 dst2->aio_dstpolicy->pc_policy.label &&
943 (dst1->aio_srcpolicy == NULL || dst1->aio_dstpolicy == NULL ||
944 dst1->aio_srcpolicy->pc_policy.label !=
945 dst1->aio_dstpolicy->pc_policy.label)) {
946 return(1);
947 }
948#endif
949
950 /* Rule 6: Prefer higher precedence. */
951#ifdef INET6
952 if (dst1->aio_dstpolicy &&
953 (dst2->aio_dstpolicy == NULL ||
954 dst1->aio_dstpolicy->pc_policy.preced >
955 dst2->aio_dstpolicy->pc_policy.preced)) {
956 return(-1);
957 }
958 if (dst2->aio_dstpolicy &&
959 (dst1->aio_dstpolicy == NULL ||
960 dst2->aio_dstpolicy->pc_policy.preced >
961 dst1->aio_dstpolicy->pc_policy.preced)) {
962 return(1);
963 }
964#endif
965
966 /* Rule 7: Prefer native transport. */
967 /* XXX: not implemented yet */
968
969 /* Rule 8: Prefer smaller scope. */
970 if (dst1->aio_dstscope >= 0 &&
971 dst1->aio_dstscope < dst2->aio_dstscope) {
972 return(-1);
973 }
974 if (dst2->aio_dstscope >= 0 &&
975 dst2->aio_dstscope < dst1->aio_dstscope) {
976 return(1);
977 }
978
979 /*
980 * Rule 9: Use longest matching prefix.
981 * We compare the match length in a same AF only.
982 */
983 if (dst1->aio_ai->ai_addr->sa_family ==
984 dst2->aio_ai->ai_addr->sa_family) {
985 if (dst1->aio_matchlen > dst2->aio_matchlen) {
986 return(-1);
987 }
988 if (dst1->aio_matchlen < dst2->aio_matchlen) {
989 return(1);
990 }
991 }
992
993 /* Rule 10: Otherwise, leave the order unchanged. */
994 return(-1);
995}
996
997/*
998 * Copy from scope.c.
999 * XXX: we should standardize the functions and link them as standard
1000 * library.
1001 */
1002static int
1003gai_addr2scopetype(sa)
1004 struct sockaddr *sa;
1005{
1006#ifdef INET6
1007 struct sockaddr_in6 *sa6;
1008#endif
1009 struct sockaddr_in *sa4;
1010
1011 switch(sa->sa_family) {
1012#ifdef INET6
1013 case AF_INET6:
1014 sa6 = (struct sockaddr_in6 *)sa;
1015 if (IN6_IS_ADDR_MULTICAST(&sa6->sin6_addr)) {
1016 /* just use the scope field of the multicast address */
1017 return(sa6->sin6_addr.s6_addr[2] & 0x0f);
1018 }
1019 /*
1020 * Unicast addresses: map scope type to corresponding scope
1021 * value defined for multcast addresses.
1022 * XXX: hardcoded scope type values are bad...
1023 */
1024 if (IN6_IS_ADDR_LOOPBACK(&sa6->sin6_addr))
1025 return(1); /* node local scope */
1026 if (IN6_IS_ADDR_LINKLOCAL(&sa6->sin6_addr))
1027 return(2); /* link-local scope */
1028 if (IN6_IS_ADDR_SITELOCAL(&sa6->sin6_addr))
1029 return(5); /* site-local scope */
1030 return(14); /* global scope */
1031 break;
1032#endif
1033 case AF_INET:
1034 /*
1035 * IPv4 pseudo scoping according to RFC 3484.
1036 */
1037 sa4 = (struct sockaddr_in *)sa;
1038 /* IPv4 autoconfiguration addresses have link-local scope. */
1039 if (((u_char *)&sa4->sin_addr)[0] == 169 &&
1040 ((u_char *)&sa4->sin_addr)[1] == 254)
1041 return(2);
1042 /* Private addresses have site-local scope. */
1043 if (((u_char *)&sa4->sin_addr)[0] == 10 ||
1044 (((u_char *)&sa4->sin_addr)[0] == 172 &&
1045 (((u_char *)&sa4->sin_addr)[1] & 0xf0) == 16) ||
1046 (((u_char *)&sa4->sin_addr)[0] == 192 &&
1047 ((u_char *)&sa4->sin_addr)[1] == 168))
1048 return(14); /* XXX: It should be 5 unless NAT */
1049 /* Loopback addresses have link-local scope. */
1050 if (((u_char *)&sa4->sin_addr)[0] == 127)
1051 return(2);
1052 return(14);
1053 break;
1054 default:
1055 errno = EAFNOSUPPORT; /* is this a good error? */
1056 return(-1);
1057 }
1058}
1059
1060/*
1061 * hostname == NULL.
1062 * passive socket -> anyaddr (0.0.0.0 or ::)
1063 * non-passive socket -> localhost (127.0.0.1 or ::1)
1064 */
1065static int
1066explore_null(pai, servname, res)
1067 const struct addrinfo *pai;
1068 const char *servname;
1069 struct addrinfo **res;
1070{
1071 int s;
1072 const struct afd *afd;
1073 struct addrinfo *cur;
1074 struct addrinfo sentinel;
1075 int error;
1076
1077 *res = NULL;
1078 sentinel.ai_next = NULL;
1079 cur = &sentinel;
1080
1081 /*
1082 * filter out AFs that are not supported by the kernel
1083 * XXX errno?
1084 */
1085 s = _socket(pai->ai_family, SOCK_DGRAM, 0);
1086 if (s < 0) {
1087 if (errno != EMFILE)
1088 return 0;
1089 } else
1090 _close(s);
1091
1092 /*
1093 * if the servname does not match socktype/protocol, ignore it.
1094 */
1095 if (get_portmatch(pai, servname) != 0)
1096 return 0;
1097
1098 afd = find_afd(pai->ai_family);
1099 if (afd == NULL)
1100 return 0;
1101
1102 if (pai->ai_flags & AI_PASSIVE) {
1103 GET_AI(cur->ai_next, afd, afd->a_addrany);
1104 /* xxx meaningless?
1105 * GET_CANONNAME(cur->ai_next, "anyaddr");
1106 */
1107 GET_PORT(cur->ai_next, servname);
1108 } else {
1109 GET_AI(cur->ai_next, afd, afd->a_loopback);
1110 /* xxx meaningless?
1111 * GET_CANONNAME(cur->ai_next, "localhost");
1112 */
1113 GET_PORT(cur->ai_next, servname);
1114 }
1115 cur = cur->ai_next;
1116
1117 *res = sentinel.ai_next;
1118 return 0;
1119
1120free:
1121 if (sentinel.ai_next)
1122 freeaddrinfo(sentinel.ai_next);
1123 return error;
1124}
1125
1126/*
1127 * numeric hostname
1128 */
1129static int
1130explore_numeric(pai, hostname, servname, res, canonname)
1131 const struct addrinfo *pai;
1132 const char *hostname;
1133 const char *servname;
1134 struct addrinfo **res;
1135 const char *canonname;
1136{
1137 const struct afd *afd;
1138 struct addrinfo *cur;
1139 struct addrinfo sentinel;
1140 int error;
1141 char pton[PTON_MAX];
1142
1143 *res = NULL;
1144 sentinel.ai_next = NULL;
1145 cur = &sentinel;
1146
1147 /*
1148 * if the servname does not match socktype/protocol, ignore it.
1149 */
1150 if (get_portmatch(pai, servname) != 0)
1151 return 0;
1152
1153 afd = find_afd(pai->ai_family);
1154 if (afd == NULL)
1155 return 0;
1156
1157 switch (afd->a_af) {
1158#if 1 /*X/Open spec*/
1159 case AF_INET:
1160 if (inet_aton(hostname, (struct in_addr *)pton) == 1) {
1161 if (pai->ai_family == afd->a_af ||
1162 pai->ai_family == PF_UNSPEC /*?*/) {
1163 GET_AI(cur->ai_next, afd, pton);
1164 GET_PORT(cur->ai_next, servname);
1165 if ((pai->ai_flags & AI_CANONNAME)) {
1166 /*
1167 * Set the numeric address itself as
1168 * the canonical name, based on a
1169 * clarification in rfc3493.
1170 */
1171 GET_CANONNAME(cur->ai_next, canonname);
1172 }
1173 while (cur && cur->ai_next)
1174 cur = cur->ai_next;
1175 } else
1176 ERR(EAI_FAMILY); /*xxx*/
1177 }
1178 break;
1179#endif
1180 default:
1181 if (inet_pton(afd->a_af, hostname, pton) == 1) {
1182 if (pai->ai_family == afd->a_af ||
1183 pai->ai_family == PF_UNSPEC /*?*/) {
1184 GET_AI(cur->ai_next, afd, pton);
1185 GET_PORT(cur->ai_next, servname);
1186 if ((pai->ai_flags & AI_CANONNAME)) {
1187 /*
1188 * Set the numeric address itself as
1189 * the canonical name, based on a
1190 * clarification in rfc3493.
1191 */
1192 GET_CANONNAME(cur->ai_next, canonname);
1193 }
1194 while (cur && cur->ai_next)
1195 cur = cur->ai_next;
1196 } else
1197 ERR(EAI_FAMILY); /* XXX */
1198 }
1199 break;
1200 }
1201
1202 *res = sentinel.ai_next;
1203 return 0;
1204
1205free:
1206bad:
1207 if (sentinel.ai_next)
1208 freeaddrinfo(sentinel.ai_next);
1209 return error;
1210}
1211
1212/*
1213 * numeric hostname with scope
1214 */
1215static int
1216explore_numeric_scope(pai, hostname, servname, res)
1217 const struct addrinfo *pai;
1218 const char *hostname;
1219 const char *servname;
1220 struct addrinfo **res;
1221{
1222#if !defined(SCOPE_DELIMITER) || !defined(INET6)
1223 return explore_numeric(pai, hostname, servname, res, hostname);
1224#else
1225 const struct afd *afd;
1226 struct addrinfo *cur;
1227 int error;
1228 char *cp, *hostname2 = NULL, *scope, *addr;
1229 struct sockaddr_in6 *sin6;
1230
1231 /*
1232 * if the servname does not match socktype/protocol, ignore it.
1233 */
1234 if (get_portmatch(pai, servname) != 0)
1235 return 0;
1236
1237 afd = find_afd(pai->ai_family);
1238 if (afd == NULL)
1239 return 0;
1240
1241 if (!afd->a_scoped)
1242 return explore_numeric(pai, hostname, servname, res, hostname);
1243
1244 cp = strchr(hostname, SCOPE_DELIMITER);
1245 if (cp == NULL)
1246 return explore_numeric(pai, hostname, servname, res, hostname);
1247
1248 /*
1249 * Handle special case of <scoped_address><delimiter><scope id>
1250 */
1251 hostname2 = strdup(hostname);
1252 if (hostname2 == NULL)
1253 return EAI_MEMORY;
1254 /* terminate at the delimiter */
1255 hostname2[cp - hostname] = '\0';
1256 addr = hostname2;
1257 scope = cp + 1;
1258
1259 error = explore_numeric(pai, addr, servname, res, hostname);
1260 if (error == 0) {
1261 u_int32_t scopeid;
1262
1263 for (cur = *res; cur; cur = cur->ai_next) {
1264 if (cur->ai_family != AF_INET6)
1265 continue;
1266 sin6 = (struct sockaddr_in6 *)(void *)cur->ai_addr;
1267 if (ip6_str2scopeid(scope, sin6, &scopeid) == -1) {
1268 free(hostname2);
1269 return(EAI_NONAME); /* XXX: is return OK? */
1270 }
1271 sin6->sin6_scope_id = scopeid;
1272 }
1273 }
1274
1275 free(hostname2);
1276
1277 return error;
1278#endif
1279}
1280
1281static int
1282get_canonname(pai, ai, str)
1283 const struct addrinfo *pai;
1284 struct addrinfo *ai;
1285 const char *str;
1286{
1287 if ((pai->ai_flags & AI_CANONNAME) != 0) {
1288 ai->ai_canonname = strdup(str);
1289 if (ai->ai_canonname == NULL)
1290 return EAI_MEMORY;
1291 }
1292 return 0;
1293}
1294
1295static struct addrinfo *
1296get_ai(pai, afd, addr)
1297 const struct addrinfo *pai;
1298 const struct afd *afd;
1299 const char *addr;
1300{
1301 char *p;
1302 struct addrinfo *ai;
1303#ifdef FAITH
1304 struct in6_addr faith_prefix;
1305 char *fp_str;
1306 int translate = 0;
1307#endif
1308
1309#ifdef FAITH
1310 /*
1311 * Transfrom an IPv4 addr into a special IPv6 addr format for
1312 * IPv6->IPv4 translation gateway. (only TCP is supported now)
1313 *
1314 * +-----------------------------------+------------+
1315 * | faith prefix part (12 bytes) | embedded |
1316 * | | IPv4 addr part (4 bytes)
1317 * +-----------------------------------+------------+
1318 *
1319 * faith prefix part is specified as ascii IPv6 addr format
1320 * in environmental variable GAI.
1321 * For FAITH to work correctly, routing to faith prefix must be
1322 * setup toward a machine where a FAITH daemon operates.
1323 * Also, the machine must enable some mechanizm
1324 * (e.g. faith interface hack) to divert those packet with
1325 * faith prefixed destination addr to user-land FAITH daemon.
1326 */
1327 fp_str = getenv("GAI");
1328 if (fp_str && inet_pton(AF_INET6, fp_str, &faith_prefix) == 1 &&
1329 afd->a_af == AF_INET && pai->ai_socktype == SOCK_STREAM) {
1330 u_int32_t v4a;
1331 u_int8_t v4a_top;
1332
1333 memcpy(&v4a, addr, sizeof v4a);
1334 v4a_top = v4a >> IN_CLASSA_NSHIFT;
1335 if (!IN_MULTICAST(v4a) && !IN_EXPERIMENTAL(v4a) &&
1336 v4a_top != 0 && v4a != IN_LOOPBACKNET) {
1337 afd = &afdl[N_INET6];
1338 memcpy(&faith_prefix.s6_addr[12], addr,
1339 sizeof(struct in_addr));
1340 translate = 1;
1341 }
1342 }
1343#endif
1344
1345 ai = (struct addrinfo *)malloc(sizeof(struct addrinfo)
1346 + (afd->a_socklen));
1347 if (ai == NULL)
1348 return NULL;
1349
1350 memcpy(ai, pai, sizeof(struct addrinfo));
1351 ai->ai_addr = (struct sockaddr *)(void *)(ai + 1);
1352 memset(ai->ai_addr, 0, (size_t)afd->a_socklen);
1353 ai->ai_addr->sa_len = afd->a_socklen;
1354 ai->ai_addrlen = afd->a_socklen;
1355#if __LONG_BIT == 64
1356 ai->__ai_pad0 = 0; /* ABI compatibility */
1357#endif
1355 ai->ai_addr->sa_family = ai->ai_family = afd->a_af;
1356 p = (char *)(void *)(ai->ai_addr);
1357#ifdef FAITH
1358 if (translate == 1)
1359 memcpy(p + afd->a_off, &faith_prefix, (size_t)afd->a_addrlen);
1360 else
1361#endif
1362 memcpy(p + afd->a_off, addr, (size_t)afd->a_addrlen);
1363 return ai;
1364}
1365
1366static int
1367get_portmatch(ai, servname)
1368 const struct addrinfo *ai;
1369 const char *servname;
1370{
1371
1372 /* get_port does not touch first argument when matchonly == 1. */
1373 /* LINTED const cast */
1374 return get_port((struct addrinfo *)ai, servname, 1);
1375}
1376
1377static int
1378get_port(ai, servname, matchonly)
1379 struct addrinfo *ai;
1380 const char *servname;
1381 int matchonly;
1382{
1383 const char *proto;
1384 struct servent *sp;
1385 int port;
1386 int allownumeric;
1387
1388 if (servname == NULL)
1389 return 0;
1390 switch (ai->ai_family) {
1391 case AF_INET:
1392#ifdef AF_INET6
1393 case AF_INET6:
1394#endif
1395 break;
1396 default:
1397 return 0;
1398 }
1399
1400 switch (ai->ai_socktype) {
1401 case SOCK_RAW:
1402 return EAI_SERVICE;
1403 case SOCK_DGRAM:
1404 case SOCK_STREAM:
1405 allownumeric = 1;
1406 break;
1407 case ANY:
1408 allownumeric = 0;
1409 break;
1410 default:
1411 return EAI_SOCKTYPE;
1412 }
1413
1414 port = str2number(servname);
1415 if (port >= 0) {
1416 if (!allownumeric)
1417 return EAI_SERVICE;
1418 if (port < 0 || port > 65535)
1419 return EAI_SERVICE;
1420 port = htons(port);
1421 } else {
1422 if (ai->ai_flags & AI_NUMERICSERV)
1423 return EAI_NONAME;
1424 switch (ai->ai_socktype) {
1425 case SOCK_DGRAM:
1426 proto = "udp";
1427 break;
1428 case SOCK_STREAM:
1429 proto = "tcp";
1430 break;
1431 default:
1432 proto = NULL;
1433 break;
1434 }
1435
1436 if ((sp = getservbyname(servname, proto)) == NULL)
1437 return EAI_SERVICE;
1438 port = sp->s_port;
1439 }
1440
1441 if (!matchonly) {
1442 switch (ai->ai_family) {
1443 case AF_INET:
1444 ((struct sockaddr_in *)(void *)
1445 ai->ai_addr)->sin_port = port;
1446 break;
1447#ifdef INET6
1448 case AF_INET6:
1449 ((struct sockaddr_in6 *)(void *)
1450 ai->ai_addr)->sin6_port = port;
1451 break;
1452#endif
1453 }
1454 }
1455
1456 return 0;
1457}
1458
1459static const struct afd *
1460find_afd(af)
1461 int af;
1462{
1463 const struct afd *afd;
1464
1465 if (af == PF_UNSPEC)
1466 return NULL;
1467 for (afd = afdl; afd->a_af; afd++) {
1468 if (afd->a_af == af)
1469 return afd;
1470 }
1471 return NULL;
1472}
1473
1474/*
1475 * post-2553: AI_ADDRCONFIG check. if we use getipnodeby* as backend, backend
1476 * will take care of it.
1477 * the semantics of AI_ADDRCONFIG is not defined well. we are not sure
1478 * if the code is right or not.
1479 *
1480 * XXX PF_UNSPEC -> PF_INET6 + PF_INET mapping needs to be in sync with
1481 * _dns_getaddrinfo.
1482 */
1483static int
1484addrconfig(pai)
1485 struct addrinfo *pai;
1486{
1487 int s, af;
1488
1489 /*
1490 * TODO:
1491 * Note that implementation dependent test for address
1492 * configuration should be done everytime called
1493 * (or apropriate interval),
1494 * because addresses will be dynamically assigned or deleted.
1495 */
1496 af = pai->ai_family;
1497 if (af == AF_UNSPEC) {
1498 if ((s = _socket(AF_INET6, SOCK_DGRAM, 0)) < 0)
1499 af = AF_INET;
1500 else {
1501 _close(s);
1502 if ((s = _socket(AF_INET, SOCK_DGRAM, 0)) < 0)
1503 af = AF_INET6;
1504 else
1505 _close(s);
1506 }
1507 }
1508 if (af != AF_UNSPEC) {
1509 if ((s = _socket(af, SOCK_DGRAM, 0)) < 0)
1510 return 0;
1511 _close(s);
1512 }
1513 pai->ai_family = af;
1514 return 1;
1515}
1516
1517#ifdef INET6
1518/* convert a string to a scope identifier. XXX: IPv6 specific */
1519static int
1520ip6_str2scopeid(scope, sin6, scopeid)
1521 char *scope;
1522 struct sockaddr_in6 *sin6;
1523 u_int32_t *scopeid;
1524{
1525 u_long lscopeid;
1526 struct in6_addr *a6;
1527 char *ep;
1528
1529 a6 = &sin6->sin6_addr;
1530
1531 /* empty scopeid portion is invalid */
1532 if (*scope == '\0')
1533 return -1;
1534
1535 if (IN6_IS_ADDR_LINKLOCAL(a6) || IN6_IS_ADDR_MC_LINKLOCAL(a6)) {
1536 /*
1537 * We currently assume a one-to-one mapping between links
1538 * and interfaces, so we simply use interface indices for
1539 * like-local scopes.
1540 */
1541 *scopeid = if_nametoindex(scope);
1542 if (*scopeid == 0)
1543 goto trynumeric;
1544 return 0;
1545 }
1546
1547 /* still unclear about literal, allow numeric only - placeholder */
1548 if (IN6_IS_ADDR_SITELOCAL(a6) || IN6_IS_ADDR_MC_SITELOCAL(a6))
1549 goto trynumeric;
1550 if (IN6_IS_ADDR_MC_ORGLOCAL(a6))
1551 goto trynumeric;
1552 else
1553 goto trynumeric; /* global */
1554
1555 /* try to convert to a numeric id as a last resort */
1556 trynumeric:
1557 errno = 0;
1558 lscopeid = strtoul(scope, &ep, 10);
1559 *scopeid = (u_int32_t)(lscopeid & 0xffffffffUL);
1560 if (errno == 0 && ep && *ep == '\0' && *scopeid == lscopeid)
1561 return 0;
1562 else
1563 return -1;
1564}
1565#endif
1566
1567/*
1568 * FQDN hostname, DNS lookup
1569 */
1570static int
1571explore_fqdn(pai, hostname, servname, res)
1572 const struct addrinfo *pai;
1573 const char *hostname;
1574 const char *servname;
1575 struct addrinfo **res;
1576{
1577 struct addrinfo *result;
1578 struct addrinfo *cur;
1579 int error = 0;
1580 static const ns_dtab dtab[] = {
1581 NS_FILES_CB(_files_getaddrinfo, NULL)
1582 { NSSRC_DNS, _dns_getaddrinfo, NULL }, /* force -DHESIOD */
1583 NS_NIS_CB(_yp_getaddrinfo, NULL)
1584 { 0 }
1585 };
1586
1587 result = NULL;
1588
1589 /*
1590 * if the servname does not match socktype/protocol, ignore it.
1591 */
1592 if (get_portmatch(pai, servname) != 0)
1593 return 0;
1594
1595 switch (_nsdispatch(&result, dtab, NSDB_HOSTS, "getaddrinfo",
1596 default_dns_files, hostname, pai)) {
1597 case NS_TRYAGAIN:
1598 error = EAI_AGAIN;
1599 goto free;
1600 case NS_UNAVAIL:
1601 error = EAI_FAIL;
1602 goto free;
1603 case NS_NOTFOUND:
1604 error = EAI_NONAME;
1605 goto free;
1606 case NS_SUCCESS:
1607 error = 0;
1608 for (cur = result; cur; cur = cur->ai_next) {
1609 GET_PORT(cur, servname);
1610 /* canonname should be filled already */
1611 }
1612 break;
1613 }
1614
1615 *res = result;
1616
1617 return 0;
1618
1619free:
1620 if (result)
1621 freeaddrinfo(result);
1622 return error;
1623}
1624
1625#ifdef DEBUG
1626static const char AskedForGot[] =
1627 "gethostby*.getanswer: asked for \"%s\", got \"%s\"";
1628#endif
1629
1630static struct addrinfo *
1631getanswer(answer, anslen, qname, qtype, pai)
1632 const querybuf *answer;
1633 int anslen;
1634 const char *qname;
1635 int qtype;
1636 const struct addrinfo *pai;
1637{
1638 struct addrinfo sentinel, *cur;
1639 struct addrinfo ai;
1640 const struct afd *afd;
1641 char *canonname;
1642 const HEADER *hp;
1643 const u_char *cp;
1644 int n;
1645 const u_char *eom;
1646 char *bp, *ep;
1647 int type, class, ancount, qdcount;
1648 int haveanswer, had_error;
1649 char tbuf[MAXDNAME];
1650 int (*name_ok)(const char *);
1651 char hostbuf[8*1024];
1652
1653 memset(&sentinel, 0, sizeof(sentinel));
1654 cur = &sentinel;
1655
1656 canonname = NULL;
1657 eom = answer->buf + anslen;
1658 switch (qtype) {
1659 case T_A:
1660 case T_AAAA:
1661 case T_ANY: /*use T_ANY only for T_A/T_AAAA lookup*/
1662 name_ok = res_hnok;
1663 break;
1664 default:
1665 return (NULL); /* XXX should be abort(); */
1666 }
1667 /*
1668 * find first satisfactory answer
1669 */
1670 hp = &answer->hdr;
1671 ancount = ntohs(hp->ancount);
1672 qdcount = ntohs(hp->qdcount);
1673 bp = hostbuf;
1674 ep = hostbuf + sizeof hostbuf;
1675 cp = answer->buf + HFIXEDSZ;
1676 if (qdcount != 1) {
1677 h_errno = NO_RECOVERY;
1678 return (NULL);
1679 }
1680 n = dn_expand(answer->buf, eom, cp, bp, ep - bp);
1681 if ((n < 0) || !(*name_ok)(bp)) {
1682 h_errno = NO_RECOVERY;
1683 return (NULL);
1684 }
1685 cp += n + QFIXEDSZ;
1686 if (qtype == T_A || qtype == T_AAAA || qtype == T_ANY) {
1687 /* res_send() has already verified that the query name is the
1688 * same as the one we sent; this just gets the expanded name
1689 * (i.e., with the succeeding search-domain tacked on).
1690 */
1691 n = strlen(bp) + 1; /* for the \0 */
1692 if (n >= MAXHOSTNAMELEN) {
1693 h_errno = NO_RECOVERY;
1694 return (NULL);
1695 }
1696 canonname = bp;
1697 bp += n;
1698 /* The qname can be abbreviated, but h_name is now absolute. */
1699 qname = canonname;
1700 }
1701 haveanswer = 0;
1702 had_error = 0;
1703 while (ancount-- > 0 && cp < eom && !had_error) {
1704 n = dn_expand(answer->buf, eom, cp, bp, ep - bp);
1705 if ((n < 0) || !(*name_ok)(bp)) {
1706 had_error++;
1707 continue;
1708 }
1709 cp += n; /* name */
1710 type = _getshort(cp);
1711 cp += INT16SZ; /* type */
1712 class = _getshort(cp);
1713 cp += INT16SZ + INT32SZ; /* class, TTL */
1714 n = _getshort(cp);
1715 cp += INT16SZ; /* len */
1716 if (class != C_IN) {
1717 /* XXX - debug? syslog? */
1718 cp += n;
1719 continue; /* XXX - had_error++ ? */
1720 }
1721 if ((qtype == T_A || qtype == T_AAAA || qtype == T_ANY) &&
1722 type == T_CNAME) {
1723 n = dn_expand(answer->buf, eom, cp, tbuf, sizeof tbuf);
1724 if ((n < 0) || !(*name_ok)(tbuf)) {
1725 had_error++;
1726 continue;
1727 }
1728 cp += n;
1729 /* Get canonical name. */
1730 n = strlen(tbuf) + 1; /* for the \0 */
1731 if (n > ep - bp || n >= MAXHOSTNAMELEN) {
1732 had_error++;
1733 continue;
1734 }
1735 strlcpy(bp, tbuf, ep - bp);
1736 canonname = bp;
1737 bp += n;
1738 continue;
1739 }
1740 if (qtype == T_ANY) {
1741 if (!(type == T_A || type == T_AAAA)) {
1742 cp += n;
1743 continue;
1744 }
1745 } else if (type != qtype) {
1746#ifdef DEBUG
1747 if (type != T_KEY && type != T_SIG)
1748 syslog(LOG_NOTICE|LOG_AUTH,
1749 "gethostby*.getanswer: asked for \"%s %s %s\", got type \"%s\"",
1750 qname, p_class(C_IN), p_type(qtype),
1751 p_type(type));
1752#endif
1753 cp += n;
1754 continue; /* XXX - had_error++ ? */
1755 }
1756 switch (type) {
1757 case T_A:
1758 case T_AAAA:
1759 if (strcasecmp(canonname, bp) != 0) {
1760#ifdef DEBUG
1761 syslog(LOG_NOTICE|LOG_AUTH,
1762 AskedForGot, canonname, bp);
1763#endif
1764 cp += n;
1765 continue; /* XXX - had_error++ ? */
1766 }
1767 if (type == T_A && n != INADDRSZ) {
1768 cp += n;
1769 continue;
1770 }
1771 if (type == T_AAAA && n != IN6ADDRSZ) {
1772 cp += n;
1773 continue;
1774 }
1775#ifdef FILTER_V4MAPPED
1776 if (type == T_AAAA) {
1777 struct in6_addr in6;
1778 memcpy(&in6, cp, sizeof(in6));
1779 if (IN6_IS_ADDR_V4MAPPED(&in6)) {
1780 cp += n;
1781 continue;
1782 }
1783 }
1784#endif
1785 if (!haveanswer) {
1786 int nn;
1787
1788 canonname = bp;
1789 nn = strlen(bp) + 1; /* for the \0 */
1790 bp += nn;
1791 }
1792
1793 /* don't overwrite pai */
1794 ai = *pai;
1795 ai.ai_family = (type == T_A) ? AF_INET : AF_INET6;
1796 afd = find_afd(ai.ai_family);
1797 if (afd == NULL) {
1798 cp += n;
1799 continue;
1800 }
1801 cur->ai_next = get_ai(&ai, afd, (const char *)cp);
1802 if (cur->ai_next == NULL)
1803 had_error++;
1804 while (cur && cur->ai_next)
1805 cur = cur->ai_next;
1806 cp += n;
1807 break;
1808 default:
1809 abort();
1810 }
1811 if (!had_error)
1812 haveanswer++;
1813 }
1814 if (haveanswer) {
1815#if defined(RESOLVSORT)
1816 /*
1817 * We support only IPv4 address for backward
1818 * compatibility against gethostbyname(3).
1819 */
1820 if (_res.nsort && qtype == T_A) {
1821 if (addr4sort(&sentinel) < 0) {
1822 freeaddrinfo(sentinel.ai_next);
1823 h_errno = NO_RECOVERY;
1824 return NULL;
1825 }
1826 }
1827#endif /*RESOLVSORT*/
1828 if (!canonname)
1829 (void)get_canonname(pai, sentinel.ai_next, qname);
1830 else
1831 (void)get_canonname(pai, sentinel.ai_next, canonname);
1832 h_errno = NETDB_SUCCESS;
1833 return sentinel.ai_next;
1834 }
1835
1836 h_errno = NO_RECOVERY;
1837 return NULL;
1838}
1839
1840#ifdef RESOLVSORT
1841struct addr_ptr {
1842 struct addrinfo *ai;
1843 int aval;
1844};
1845
1846static int
1847addr4sort(struct addrinfo *sentinel)
1848{
1849 struct addrinfo *ai;
1850 struct addr_ptr *addrs, addr;
1851 struct sockaddr_in *sin;
1852 int naddrs, i, j;
1853 int needsort = 0;
1854
1855 if (!sentinel)
1856 return -1;
1857 naddrs = 0;
1858 for (ai = sentinel->ai_next; ai; ai = ai->ai_next)
1859 naddrs++;
1860 if (naddrs < 2)
1861 return 0; /* We don't need sorting. */
1862 if ((addrs = malloc(sizeof(struct addr_ptr) * naddrs)) == NULL)
1863 return -1;
1864 i = 0;
1865 for (ai = sentinel->ai_next; ai; ai = ai->ai_next) {
1866 sin = (struct sockaddr_in *)ai->ai_addr;
1867 for (j = 0; (unsigned)j < _res.nsort; j++) {
1868 if (_res.sort_list[j].addr.s_addr ==
1869 (sin->sin_addr.s_addr & _res.sort_list[j].mask))
1870 break;
1871 }
1872 addrs[i].ai = ai;
1873 addrs[i].aval = j;
1874 if (needsort == 0 && i > 0 && j < addrs[i - 1].aval)
1875 needsort = i;
1876 i++;
1877 }
1878 if (!needsort) {
1879 free(addrs);
1880 return 0;
1881 }
1882
1883 while (needsort < naddrs) {
1884 for (j = needsort - 1; j >= 0; j--) {
1885 if (addrs[j].aval > addrs[j+1].aval) {
1886 addr = addrs[j];
1887 addrs[j] = addrs[j + 1];
1888 addrs[j + 1] = addr;
1889 } else
1890 break;
1891 }
1892 needsort++;
1893 }
1894
1895 ai = sentinel;
1896 for (i = 0; i < naddrs; ++i) {
1897 ai->ai_next = addrs[i].ai;
1898 ai = ai->ai_next;
1899 }
1900 ai->ai_next = NULL;
1901 free(addrs);
1902 return 0;
1903}
1904#endif /*RESOLVSORT*/
1905
1906/*ARGSUSED*/
1907static int
1908_dns_getaddrinfo(rv, cb_data, ap)
1909 void *rv;
1910 void *cb_data;
1911 va_list ap;
1912{
1913 struct addrinfo *ai;
1914 querybuf *buf, *buf2;
1915 const char *hostname;
1916 const struct addrinfo *pai;
1917 struct addrinfo sentinel, *cur;
1918 struct res_target q, q2;
1919
1920 hostname = va_arg(ap, char *);
1921 pai = va_arg(ap, const struct addrinfo *);
1922
1923 memset(&q, 0, sizeof(q2));
1924 memset(&q2, 0, sizeof(q2));
1925 memset(&sentinel, 0, sizeof(sentinel));
1926 cur = &sentinel;
1927
1928 buf = malloc(sizeof(*buf));
1929 if (!buf) {
1930 h_errno = NETDB_INTERNAL;
1931 return NS_NOTFOUND;
1932 }
1933 buf2 = malloc(sizeof(*buf2));
1934 if (!buf2) {
1935 free(buf);
1936 h_errno = NETDB_INTERNAL;
1937 return NS_NOTFOUND;
1938 }
1939
1940 switch (pai->ai_family) {
1941 case AF_UNSPEC:
1942 q.name = hostname;
1943 q.qclass = C_IN;
1944 q.qtype = T_A;
1945 q.answer = buf->buf;
1946 q.anslen = sizeof(buf->buf);
1947 q.next = &q2;
1948 q2.name = hostname;
1949 q2.qclass = C_IN;
1950 q2.qtype = T_AAAA;
1951 q2.answer = buf2->buf;
1952 q2.anslen = sizeof(buf2->buf);
1953 break;
1954 case AF_INET:
1955 q.name = hostname;
1956 q.qclass = C_IN;
1957 q.qtype = T_A;
1958 q.answer = buf->buf;
1959 q.anslen = sizeof(buf->buf);
1960 break;
1961 case AF_INET6:
1962 q.name = hostname;
1963 q.qclass = C_IN;
1964 q.qtype = T_AAAA;
1965 q.answer = buf->buf;
1966 q.anslen = sizeof(buf->buf);
1967 break;
1968 default:
1969 free(buf);
1970 free(buf2);
1971 return NS_UNAVAIL;
1972 }
1973 if (res_searchN(hostname, &q) < 0) {
1974 free(buf);
1975 free(buf2);
1976 return NS_NOTFOUND;
1977 }
1978 /* prefer IPv6 */
1979 if (q.next) {
1980 ai = getanswer(buf2, q2.n, q2.name, q2.qtype, pai);
1981 if (ai) {
1982 cur->ai_next = ai;
1983 while (cur && cur->ai_next)
1984 cur = cur->ai_next;
1985 }
1986 }
1987 ai = getanswer(buf, q.n, q.name, q.qtype, pai);
1988 if (ai)
1989 cur->ai_next = ai;
1990 free(buf);
1991 free(buf2);
1992 if (sentinel.ai_next == NULL)
1993 switch (h_errno) {
1994 case HOST_NOT_FOUND:
1995 return NS_NOTFOUND;
1996 case TRY_AGAIN:
1997 return NS_TRYAGAIN;
1998 default:
1999 return NS_UNAVAIL;
2000 }
2001 *((struct addrinfo **)rv) = sentinel.ai_next;
2002 return NS_SUCCESS;
2003}
2004
2005static void
2006_sethtent(FILE **hostf)
2007{
2008 if (!*hostf)
2009 *hostf = fopen(_PATH_HOSTS, "r");
2010 else
2011 rewind(*hostf);
2012}
2013
2014static void
2015_endhtent(FILE **hostf)
2016{
2017 if (*hostf) {
2018 (void) fclose(*hostf);
2019 *hostf = NULL;
2020 }
2021}
2022
2023static struct addrinfo *
2024_gethtent(FILE **hostf, const char *name, const struct addrinfo *pai)
2025{
2026 char *p;
2027 char *cp, *tname, *cname;
2028 struct addrinfo hints, *res0, *res;
2029 int error;
2030 const char *addr;
2031 char hostbuf[8*1024];
2032
2033 if (!*hostf && !(*hostf = fopen(_PATH_HOSTS, "r")))
2034 return (NULL);
2035again:
2036 if (!(p = fgets(hostbuf, sizeof hostbuf, *hostf)))
2037 return (NULL);
2038 if (*p == '#')
2039 goto again;
2040 cp = strpbrk(p, "#\n");
2041 if (cp != NULL)
2042 *cp = '\0';
2043 if (!(cp = strpbrk(p, " \t")))
2044 goto again;
2045 *cp++ = '\0';
2046 addr = p;
2047 cname = NULL;
2048 /* if this is not something we're looking for, skip it. */
2049 while (cp && *cp) {
2050 if (*cp == ' ' || *cp == '\t') {
2051 cp++;
2052 continue;
2053 }
2054 tname = cp;
2055 if (cname == NULL)
2056 cname = cp;
2057 if ((cp = strpbrk(cp, " \t")) != NULL)
2058 *cp++ = '\0';
2059 if (strcasecmp(name, tname) == 0)
2060 goto found;
2061 }
2062 goto again;
2063
2064found:
2065 /* we should not glob socktype/protocol here */
2066 memset(&hints, 0, sizeof(hints));
2067 hints.ai_family = pai->ai_family;
2068 hints.ai_socktype = SOCK_DGRAM;
2069 hints.ai_protocol = 0;
2070 hints.ai_flags = AI_NUMERICHOST;
2071 error = getaddrinfo(addr, "0", &hints, &res0);
2072 if (error)
2073 goto again;
2074#ifdef FILTER_V4MAPPED
2075 /* XXX should check all items in the chain */
2076 if (res0->ai_family == AF_INET6 &&
2077 IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)res0->ai_addr)->sin6_addr)) {
2078 freeaddrinfo(res0);
2079 goto again;
2080 }
2081#endif
2082 for (res = res0; res; res = res->ai_next) {
2083 /* cover it up */
2084 res->ai_flags = pai->ai_flags;
2085 res->ai_socktype = pai->ai_socktype;
2086 res->ai_protocol = pai->ai_protocol;
2087
2088 if (pai->ai_flags & AI_CANONNAME) {
2089 if (get_canonname(pai, res, cname) != 0) {
2090 freeaddrinfo(res0);
2091 goto again;
2092 }
2093 }
2094 }
2095 return res0;
2096}
2097
2098/*ARGSUSED*/
2099static int
2100_files_getaddrinfo(rv, cb_data, ap)
2101 void *rv;
2102 void *cb_data;
2103 va_list ap;
2104{
2105 const char *name;
2106 const struct addrinfo *pai;
2107 struct addrinfo sentinel, *cur;
2108 struct addrinfo *p;
2109 FILE *hostf = NULL;
2110
2111 name = va_arg(ap, char *);
2112 pai = va_arg(ap, struct addrinfo *);
2113
2114 memset(&sentinel, 0, sizeof(sentinel));
2115 cur = &sentinel;
2116
2117 _sethtent(&hostf);
2118 while ((p = _gethtent(&hostf, name, pai)) != NULL) {
2119 cur->ai_next = p;
2120 while (cur && cur->ai_next)
2121 cur = cur->ai_next;
2122 }
2123 _endhtent(&hostf);
2124
2125 *((struct addrinfo **)rv) = sentinel.ai_next;
2126 if (sentinel.ai_next == NULL)
2127 return NS_NOTFOUND;
2128 return NS_SUCCESS;
2129}
2130
2131#ifdef YP
2132/*ARGSUSED*/
2133static struct addrinfo *
2134_yphostent(line, pai)
2135 char *line;
2136 const struct addrinfo *pai;
2137{
2138 struct addrinfo sentinel, *cur;
2139 struct addrinfo hints, *res, *res0;
2140 int error;
2141 char *p = line;
2142 const char *addr, *canonname;
2143 char *nextline;
2144 char *cp;
2145
2146 addr = canonname = NULL;
2147
2148 memset(&sentinel, 0, sizeof(sentinel));
2149 cur = &sentinel;
2150
2151nextline:
2152 /* terminate line */
2153 cp = strchr(p, '\n');
2154 if (cp) {
2155 *cp++ = '\0';
2156 nextline = cp;
2157 } else
2158 nextline = NULL;
2159
2160 cp = strpbrk(p, " \t");
2161 if (cp == NULL) {
2162 if (canonname == NULL)
2163 return (NULL);
2164 else
2165 goto done;
2166 }
2167 *cp++ = '\0';
2168
2169 addr = p;
2170
2171 while (cp && *cp) {
2172 if (*cp == ' ' || *cp == '\t') {
2173 cp++;
2174 continue;
2175 }
2176 if (!canonname)
2177 canonname = cp;
2178 if ((cp = strpbrk(cp, " \t")) != NULL)
2179 *cp++ = '\0';
2180 }
2181
2182 hints = *pai;
2183 hints.ai_flags = AI_NUMERICHOST;
2184 error = getaddrinfo(addr, NULL, &hints, &res0);
2185 if (error == 0) {
2186 for (res = res0; res; res = res->ai_next) {
2187 /* cover it up */
2188 res->ai_flags = pai->ai_flags;
2189
2190 if (pai->ai_flags & AI_CANONNAME)
2191 (void)get_canonname(pai, res, canonname);
2192 }
2193 } else
2194 res0 = NULL;
2195 if (res0) {
2196 cur->ai_next = res0;
2197 while (cur && cur->ai_next)
2198 cur = cur->ai_next;
2199 }
2200
2201 if (nextline) {
2202 p = nextline;
2203 goto nextline;
2204 }
2205
2206done:
2207 return sentinel.ai_next;
2208}
2209
2210/*ARGSUSED*/
2211static int
2212_yp_getaddrinfo(rv, cb_data, ap)
2213 void *rv;
2214 void *cb_data;
2215 va_list ap;
2216{
2217 struct addrinfo sentinel, *cur;
2218 struct addrinfo *ai = NULL;
2219 char *ypbuf;
2220 int ypbuflen, r;
2221 const char *name;
2222 const struct addrinfo *pai;
2223 char *ypdomain;
2224
2225 if (_yp_check(&ypdomain) == 0)
2226 return NS_UNAVAIL;
2227
2228 name = va_arg(ap, char *);
2229 pai = va_arg(ap, const struct addrinfo *);
2230
2231 memset(&sentinel, 0, sizeof(sentinel));
2232 cur = &sentinel;
2233
2234 /* hosts.byname is only for IPv4 (Solaris8) */
2235 if (pai->ai_family == PF_UNSPEC || pai->ai_family == PF_INET) {
2236 r = yp_match(ypdomain, "hosts.byname", name,
2237 (int)strlen(name), &ypbuf, &ypbuflen);
2238 if (r == 0) {
2239 struct addrinfo ai4;
2240
2241 ai4 = *pai;
2242 ai4.ai_family = AF_INET;
2243 ai = _yphostent(ypbuf, &ai4);
2244 if (ai) {
2245 cur->ai_next = ai;
2246 while (cur && cur->ai_next)
2247 cur = cur->ai_next;
2248 }
2249 free(ypbuf);
2250 }
2251 }
2252
2253 /* ipnodes.byname can hold both IPv4/v6 */
2254 r = yp_match(ypdomain, "ipnodes.byname", name,
2255 (int)strlen(name), &ypbuf, &ypbuflen);
2256 if (r == 0) {
2257 ai = _yphostent(ypbuf, pai);
2258 if (ai)
2259 cur->ai_next = ai;
2260 free(ypbuf);
2261 }
2262
2263 if (sentinel.ai_next == NULL) {
2264 h_errno = HOST_NOT_FOUND;
2265 return NS_NOTFOUND;
2266 }
2267 *((struct addrinfo **)rv) = sentinel.ai_next;
2268 return NS_SUCCESS;
2269}
2270#endif
2271
2272/* resolver logic */
2273
2274extern const char *_res_hostalias(const char *, char *, size_t);
2275
2276/*
2277 * Formulate a normal query, send, and await answer.
2278 * Returned answer is placed in supplied buffer "answer".
2279 * Perform preliminary check of answer, returning success only
2280 * if no error is indicated and the answer count is nonzero.
2281 * Return the size of the response on success, -1 on error.
2282 * Error number is left in h_errno.
2283 *
2284 * Caller must parse answer and determine whether it answers the question.
2285 */
2286static int
2287res_queryN(name, target)
2288 const char *name; /* domain name */
2289 struct res_target *target;
2290{
2291 u_char *buf;
2292 HEADER *hp;
2293 int n;
2294 struct res_target *t;
2295 int rcode;
2296 int ancount;
2297
2298 rcode = NOERROR;
2299 ancount = 0;
2300
2301 buf = malloc(MAXPACKET);
2302 if (!buf) {
2303 h_errno = NETDB_INTERNAL;
2304 return -1;
2305 }
2306
2307 for (t = target; t; t = t->next) {
2308 int class, type;
2309 u_char *answer;
2310 int anslen;
2311
2312 hp = (HEADER *)(void *)t->answer;
2313 hp->rcode = NOERROR; /* default */
2314
2315 /* make it easier... */
2316 class = t->qclass;
2317 type = t->qtype;
2318 answer = t->answer;
2319 anslen = t->anslen;
2320#ifdef DEBUG
2321 if (_res.options & RES_DEBUG)
2322 printf(";; res_query(%s, %d, %d)\n", name, class, type);
2323#endif
2324
2325 n = res_mkquery(QUERY, name, class, type, NULL, 0, NULL,
2326 buf, MAXPACKET);
2327 if (n > 0 && (_res.options & RES_USE_EDNS0) != 0)
2328 n = res_opt(n, buf, MAXPACKET, anslen);
2329 if (n <= 0) {
2330#ifdef DEBUG
2331 if (_res.options & RES_DEBUG)
2332 printf(";; res_query: mkquery failed\n");
2333#endif
2334 free(buf);
2335 h_errno = NO_RECOVERY;
2336 return (n);
2337 }
2338 n = res_send(buf, n, answer, anslen);
2339#if 0
2340 if (n < 0) {
2341#ifdef DEBUG
2342 if (_res.options & RES_DEBUG)
2343 printf(";; res_query: send error\n");
2344#endif
2345 free(buf);
2346 h_errno = TRY_AGAIN;
2347 return (n);
2348 }
2349#endif
2350
2351 if (n < 0 || n > anslen)
2352 hp->rcode = FORMERR; /* XXX not very informative */
2353 if (hp->rcode != NOERROR || ntohs(hp->ancount) == 0) {
2354 rcode = hp->rcode; /* record most recent error */
2355#ifdef DEBUG
2356 if (_res.options & RES_DEBUG)
2357 printf(";; rcode = %u, ancount=%u\n", hp->rcode,
2358 ntohs(hp->ancount));
2359#endif
2360 continue;
2361 }
2362
2363 ancount += ntohs(hp->ancount);
2364
2365 t->n = n;
2366 }
2367
2368 free(buf);
2369
2370 if (ancount == 0) {
2371 switch (rcode) {
2372 case NXDOMAIN:
2373 h_errno = HOST_NOT_FOUND;
2374 break;
2375 case SERVFAIL:
2376 h_errno = TRY_AGAIN;
2377 break;
2378 case NOERROR:
2379 h_errno = NO_DATA;
2380 break;
2381 case FORMERR:
2382 case NOTIMP:
2383 case REFUSED:
2384 default:
2385 h_errno = NO_RECOVERY;
2386 break;
2387 }
2388 return (-1);
2389 }
2390 return (ancount);
2391}
2392
2393/*
2394 * Formulate a normal query, send, and retrieve answer in supplied buffer.
2395 * Return the size of the response on success, -1 on error.
2396 * If enabled, implement search rules until answer or unrecoverable failure
2397 * is detected. Error code, if any, is left in h_errno.
2398 */
2399static int
2400res_searchN(name, target)
2401 const char *name; /* domain name */
2402 struct res_target *target;
2403{
2404 const char *cp, * const *domain;
2405 HEADER *hp = (HEADER *)(void *)target->answer; /*XXX*/
2406 u_int dots;
2407 int trailing_dot, ret, saved_herrno;
2408 int got_nodata = 0, got_servfail = 0, tried_as_is = 0;
2409 char abuf[MAXDNAME];
2410
2411 if ((_res.options & RES_INIT) == 0 && res_init() == -1) {
2412 h_errno = NETDB_INTERNAL;
2413 return (-1);
2414 }
2415
2416 errno = 0;
2417 h_errno = HOST_NOT_FOUND; /* default, if we never query */
2418 dots = 0;
2419 for (cp = name; *cp; cp++)
2420 dots += (*cp == '.');
2421 trailing_dot = 0;
2422 if (cp > name && *--cp == '.')
2423 trailing_dot++;
2424
2425 /*
2426 * if there aren't any dots, it could be a user-level alias
2427 */
2428 if (!dots && (cp = _res_hostalias(name, abuf, sizeof(abuf))) != NULL)
2429 return (res_queryN(cp, target));
2430
2431 /*
2432 * If there are dots in the name already, let's just give it a try
2433 * 'as is'. The threshold can be set with the "ndots" option.
2434 */
2435 saved_herrno = -1;
2436 if (dots >= _res.ndots) {
2437 ret = res_querydomainN(name, NULL, target);
2438 if (ret > 0)
2439 return (ret);
2440 saved_herrno = h_errno;
2441 tried_as_is++;
2442 }
2443
2444 /*
2445 * We do at least one level of search if
2446 * - there is no dot and RES_DEFNAME is set, or
2447 * - there is at least one dot, there is no trailing dot,
2448 * and RES_DNSRCH is set.
2449 */
2450 if ((!dots && (_res.options & RES_DEFNAMES)) ||
2451 (dots && !trailing_dot && (_res.options & RES_DNSRCH))) {
2452 int done = 0;
2453
2454 for (domain = (const char * const *)_res.dnsrch;
2455 *domain && !done;
2456 domain++) {
2457
2458 ret = res_querydomainN(name, *domain, target);
2459 if (ret > 0)
2460 return (ret);
2461
2462 /*
2463 * If no server present, give up.
2464 * If name isn't found in this domain,
2465 * keep trying higher domains in the search list
2466 * (if that's enabled).
2467 * On a NO_DATA error, keep trying, otherwise
2468 * a wildcard entry of another type could keep us
2469 * from finding this entry higher in the domain.
2470 * If we get some other error (negative answer or
2471 * server failure), then stop searching up,
2472 * but try the input name below in case it's
2473 * fully-qualified.
2474 */
2475 if (errno == ECONNREFUSED) {
2476 h_errno = TRY_AGAIN;
2477 return (-1);
2478 }
2479
2480 switch (h_errno) {
2481 case NO_DATA:
2482 got_nodata++;
2483 /* FALLTHROUGH */
2484 case HOST_NOT_FOUND:
2485 /* keep trying */
2486 break;
2487 case TRY_AGAIN:
2488 if (hp->rcode == SERVFAIL) {
2489 /* try next search element, if any */
2490 got_servfail++;
2491 break;
2492 }
2493 /* FALLTHROUGH */
2494 default:
2495 /* anything else implies that we're done */
2496 done++;
2497 }
2498 /*
2499 * if we got here for some reason other than DNSRCH,
2500 * we only wanted one iteration of the loop, so stop.
2501 */
2502 if (!(_res.options & RES_DNSRCH))
2503 done++;
2504 }
2505 }
2506
2507 /*
2508 * if we have not already tried the name "as is", do that now.
2509 * note that we do this regardless of how many dots were in the
2510 * name or whether it ends with a dot.
2511 */
2512 if (!tried_as_is && (dots || !(_res.options & RES_NOTLDQUERY))) {
2513 ret = res_querydomainN(name, NULL, target);
2514 if (ret > 0)
2515 return (ret);
2516 }
2517
2518 /*
2519 * if we got here, we didn't satisfy the search.
2520 * if we did an initial full query, return that query's h_errno
2521 * (note that we wouldn't be here if that query had succeeded).
2522 * else if we ever got a nodata, send that back as the reason.
2523 * else send back meaningless h_errno, that being the one from
2524 * the last DNSRCH we did.
2525 */
2526 if (saved_herrno != -1)
2527 h_errno = saved_herrno;
2528 else if (got_nodata)
2529 h_errno = NO_DATA;
2530 else if (got_servfail)
2531 h_errno = TRY_AGAIN;
2532 return (-1);
2533}
2534
2535/*
2536 * Perform a call on res_query on the concatenation of name and domain,
2537 * removing a trailing dot from name if domain is NULL.
2538 */
2539static int
2540res_querydomainN(name, domain, target)
2541 const char *name, *domain;
2542 struct res_target *target;
2543{
2544 char nbuf[MAXDNAME];
2545 const char *longname = nbuf;
2546 size_t n, d;
2547
2548#ifdef DEBUG
2549 if (_res.options & RES_DEBUG)
2550 printf(";; res_querydomain(%s, %s)\n",
2551 name, domain?domain:"<Nil>");
2552#endif
2553 if (domain == NULL) {
2554 /*
2555 * Check for trailing '.';
2556 * copy without '.' if present.
2557 */
2558 n = strlen(name);
2559 if (n >= MAXDNAME) {
2560 h_errno = NO_RECOVERY;
2561 return (-1);
2562 }
2563 if (n > 0 && name[--n] == '.') {
2564 strncpy(nbuf, name, n);
2565 nbuf[n] = '\0';
2566 } else
2567 longname = name;
2568 } else {
2569 n = strlen(name);
2570 d = strlen(domain);
2571 if (n + d + 1 >= MAXDNAME) {
2572 h_errno = NO_RECOVERY;
2573 return (-1);
2574 }
2575 snprintf(nbuf, sizeof(nbuf), "%s.%s", name, domain);
2576 }
2577 return (res_queryN(longname, target));
2578}
1358 ai->ai_addr->sa_family = ai->ai_family = afd->a_af;
1359 p = (char *)(void *)(ai->ai_addr);
1360#ifdef FAITH
1361 if (translate == 1)
1362 memcpy(p + afd->a_off, &faith_prefix, (size_t)afd->a_addrlen);
1363 else
1364#endif
1365 memcpy(p + afd->a_off, addr, (size_t)afd->a_addrlen);
1366 return ai;
1367}
1368
1369static int
1370get_portmatch(ai, servname)
1371 const struct addrinfo *ai;
1372 const char *servname;
1373{
1374
1375 /* get_port does not touch first argument when matchonly == 1. */
1376 /* LINTED const cast */
1377 return get_port((struct addrinfo *)ai, servname, 1);
1378}
1379
1380static int
1381get_port(ai, servname, matchonly)
1382 struct addrinfo *ai;
1383 const char *servname;
1384 int matchonly;
1385{
1386 const char *proto;
1387 struct servent *sp;
1388 int port;
1389 int allownumeric;
1390
1391 if (servname == NULL)
1392 return 0;
1393 switch (ai->ai_family) {
1394 case AF_INET:
1395#ifdef AF_INET6
1396 case AF_INET6:
1397#endif
1398 break;
1399 default:
1400 return 0;
1401 }
1402
1403 switch (ai->ai_socktype) {
1404 case SOCK_RAW:
1405 return EAI_SERVICE;
1406 case SOCK_DGRAM:
1407 case SOCK_STREAM:
1408 allownumeric = 1;
1409 break;
1410 case ANY:
1411 allownumeric = 0;
1412 break;
1413 default:
1414 return EAI_SOCKTYPE;
1415 }
1416
1417 port = str2number(servname);
1418 if (port >= 0) {
1419 if (!allownumeric)
1420 return EAI_SERVICE;
1421 if (port < 0 || port > 65535)
1422 return EAI_SERVICE;
1423 port = htons(port);
1424 } else {
1425 if (ai->ai_flags & AI_NUMERICSERV)
1426 return EAI_NONAME;
1427 switch (ai->ai_socktype) {
1428 case SOCK_DGRAM:
1429 proto = "udp";
1430 break;
1431 case SOCK_STREAM:
1432 proto = "tcp";
1433 break;
1434 default:
1435 proto = NULL;
1436 break;
1437 }
1438
1439 if ((sp = getservbyname(servname, proto)) == NULL)
1440 return EAI_SERVICE;
1441 port = sp->s_port;
1442 }
1443
1444 if (!matchonly) {
1445 switch (ai->ai_family) {
1446 case AF_INET:
1447 ((struct sockaddr_in *)(void *)
1448 ai->ai_addr)->sin_port = port;
1449 break;
1450#ifdef INET6
1451 case AF_INET6:
1452 ((struct sockaddr_in6 *)(void *)
1453 ai->ai_addr)->sin6_port = port;
1454 break;
1455#endif
1456 }
1457 }
1458
1459 return 0;
1460}
1461
1462static const struct afd *
1463find_afd(af)
1464 int af;
1465{
1466 const struct afd *afd;
1467
1468 if (af == PF_UNSPEC)
1469 return NULL;
1470 for (afd = afdl; afd->a_af; afd++) {
1471 if (afd->a_af == af)
1472 return afd;
1473 }
1474 return NULL;
1475}
1476
1477/*
1478 * post-2553: AI_ADDRCONFIG check. if we use getipnodeby* as backend, backend
1479 * will take care of it.
1480 * the semantics of AI_ADDRCONFIG is not defined well. we are not sure
1481 * if the code is right or not.
1482 *
1483 * XXX PF_UNSPEC -> PF_INET6 + PF_INET mapping needs to be in sync with
1484 * _dns_getaddrinfo.
1485 */
1486static int
1487addrconfig(pai)
1488 struct addrinfo *pai;
1489{
1490 int s, af;
1491
1492 /*
1493 * TODO:
1494 * Note that implementation dependent test for address
1495 * configuration should be done everytime called
1496 * (or apropriate interval),
1497 * because addresses will be dynamically assigned or deleted.
1498 */
1499 af = pai->ai_family;
1500 if (af == AF_UNSPEC) {
1501 if ((s = _socket(AF_INET6, SOCK_DGRAM, 0)) < 0)
1502 af = AF_INET;
1503 else {
1504 _close(s);
1505 if ((s = _socket(AF_INET, SOCK_DGRAM, 0)) < 0)
1506 af = AF_INET6;
1507 else
1508 _close(s);
1509 }
1510 }
1511 if (af != AF_UNSPEC) {
1512 if ((s = _socket(af, SOCK_DGRAM, 0)) < 0)
1513 return 0;
1514 _close(s);
1515 }
1516 pai->ai_family = af;
1517 return 1;
1518}
1519
1520#ifdef INET6
1521/* convert a string to a scope identifier. XXX: IPv6 specific */
1522static int
1523ip6_str2scopeid(scope, sin6, scopeid)
1524 char *scope;
1525 struct sockaddr_in6 *sin6;
1526 u_int32_t *scopeid;
1527{
1528 u_long lscopeid;
1529 struct in6_addr *a6;
1530 char *ep;
1531
1532 a6 = &sin6->sin6_addr;
1533
1534 /* empty scopeid portion is invalid */
1535 if (*scope == '\0')
1536 return -1;
1537
1538 if (IN6_IS_ADDR_LINKLOCAL(a6) || IN6_IS_ADDR_MC_LINKLOCAL(a6)) {
1539 /*
1540 * We currently assume a one-to-one mapping between links
1541 * and interfaces, so we simply use interface indices for
1542 * like-local scopes.
1543 */
1544 *scopeid = if_nametoindex(scope);
1545 if (*scopeid == 0)
1546 goto trynumeric;
1547 return 0;
1548 }
1549
1550 /* still unclear about literal, allow numeric only - placeholder */
1551 if (IN6_IS_ADDR_SITELOCAL(a6) || IN6_IS_ADDR_MC_SITELOCAL(a6))
1552 goto trynumeric;
1553 if (IN6_IS_ADDR_MC_ORGLOCAL(a6))
1554 goto trynumeric;
1555 else
1556 goto trynumeric; /* global */
1557
1558 /* try to convert to a numeric id as a last resort */
1559 trynumeric:
1560 errno = 0;
1561 lscopeid = strtoul(scope, &ep, 10);
1562 *scopeid = (u_int32_t)(lscopeid & 0xffffffffUL);
1563 if (errno == 0 && ep && *ep == '\0' && *scopeid == lscopeid)
1564 return 0;
1565 else
1566 return -1;
1567}
1568#endif
1569
1570/*
1571 * FQDN hostname, DNS lookup
1572 */
1573static int
1574explore_fqdn(pai, hostname, servname, res)
1575 const struct addrinfo *pai;
1576 const char *hostname;
1577 const char *servname;
1578 struct addrinfo **res;
1579{
1580 struct addrinfo *result;
1581 struct addrinfo *cur;
1582 int error = 0;
1583 static const ns_dtab dtab[] = {
1584 NS_FILES_CB(_files_getaddrinfo, NULL)
1585 { NSSRC_DNS, _dns_getaddrinfo, NULL }, /* force -DHESIOD */
1586 NS_NIS_CB(_yp_getaddrinfo, NULL)
1587 { 0 }
1588 };
1589
1590 result = NULL;
1591
1592 /*
1593 * if the servname does not match socktype/protocol, ignore it.
1594 */
1595 if (get_portmatch(pai, servname) != 0)
1596 return 0;
1597
1598 switch (_nsdispatch(&result, dtab, NSDB_HOSTS, "getaddrinfo",
1599 default_dns_files, hostname, pai)) {
1600 case NS_TRYAGAIN:
1601 error = EAI_AGAIN;
1602 goto free;
1603 case NS_UNAVAIL:
1604 error = EAI_FAIL;
1605 goto free;
1606 case NS_NOTFOUND:
1607 error = EAI_NONAME;
1608 goto free;
1609 case NS_SUCCESS:
1610 error = 0;
1611 for (cur = result; cur; cur = cur->ai_next) {
1612 GET_PORT(cur, servname);
1613 /* canonname should be filled already */
1614 }
1615 break;
1616 }
1617
1618 *res = result;
1619
1620 return 0;
1621
1622free:
1623 if (result)
1624 freeaddrinfo(result);
1625 return error;
1626}
1627
1628#ifdef DEBUG
1629static const char AskedForGot[] =
1630 "gethostby*.getanswer: asked for \"%s\", got \"%s\"";
1631#endif
1632
1633static struct addrinfo *
1634getanswer(answer, anslen, qname, qtype, pai)
1635 const querybuf *answer;
1636 int anslen;
1637 const char *qname;
1638 int qtype;
1639 const struct addrinfo *pai;
1640{
1641 struct addrinfo sentinel, *cur;
1642 struct addrinfo ai;
1643 const struct afd *afd;
1644 char *canonname;
1645 const HEADER *hp;
1646 const u_char *cp;
1647 int n;
1648 const u_char *eom;
1649 char *bp, *ep;
1650 int type, class, ancount, qdcount;
1651 int haveanswer, had_error;
1652 char tbuf[MAXDNAME];
1653 int (*name_ok)(const char *);
1654 char hostbuf[8*1024];
1655
1656 memset(&sentinel, 0, sizeof(sentinel));
1657 cur = &sentinel;
1658
1659 canonname = NULL;
1660 eom = answer->buf + anslen;
1661 switch (qtype) {
1662 case T_A:
1663 case T_AAAA:
1664 case T_ANY: /*use T_ANY only for T_A/T_AAAA lookup*/
1665 name_ok = res_hnok;
1666 break;
1667 default:
1668 return (NULL); /* XXX should be abort(); */
1669 }
1670 /*
1671 * find first satisfactory answer
1672 */
1673 hp = &answer->hdr;
1674 ancount = ntohs(hp->ancount);
1675 qdcount = ntohs(hp->qdcount);
1676 bp = hostbuf;
1677 ep = hostbuf + sizeof hostbuf;
1678 cp = answer->buf + HFIXEDSZ;
1679 if (qdcount != 1) {
1680 h_errno = NO_RECOVERY;
1681 return (NULL);
1682 }
1683 n = dn_expand(answer->buf, eom, cp, bp, ep - bp);
1684 if ((n < 0) || !(*name_ok)(bp)) {
1685 h_errno = NO_RECOVERY;
1686 return (NULL);
1687 }
1688 cp += n + QFIXEDSZ;
1689 if (qtype == T_A || qtype == T_AAAA || qtype == T_ANY) {
1690 /* res_send() has already verified that the query name is the
1691 * same as the one we sent; this just gets the expanded name
1692 * (i.e., with the succeeding search-domain tacked on).
1693 */
1694 n = strlen(bp) + 1; /* for the \0 */
1695 if (n >= MAXHOSTNAMELEN) {
1696 h_errno = NO_RECOVERY;
1697 return (NULL);
1698 }
1699 canonname = bp;
1700 bp += n;
1701 /* The qname can be abbreviated, but h_name is now absolute. */
1702 qname = canonname;
1703 }
1704 haveanswer = 0;
1705 had_error = 0;
1706 while (ancount-- > 0 && cp < eom && !had_error) {
1707 n = dn_expand(answer->buf, eom, cp, bp, ep - bp);
1708 if ((n < 0) || !(*name_ok)(bp)) {
1709 had_error++;
1710 continue;
1711 }
1712 cp += n; /* name */
1713 type = _getshort(cp);
1714 cp += INT16SZ; /* type */
1715 class = _getshort(cp);
1716 cp += INT16SZ + INT32SZ; /* class, TTL */
1717 n = _getshort(cp);
1718 cp += INT16SZ; /* len */
1719 if (class != C_IN) {
1720 /* XXX - debug? syslog? */
1721 cp += n;
1722 continue; /* XXX - had_error++ ? */
1723 }
1724 if ((qtype == T_A || qtype == T_AAAA || qtype == T_ANY) &&
1725 type == T_CNAME) {
1726 n = dn_expand(answer->buf, eom, cp, tbuf, sizeof tbuf);
1727 if ((n < 0) || !(*name_ok)(tbuf)) {
1728 had_error++;
1729 continue;
1730 }
1731 cp += n;
1732 /* Get canonical name. */
1733 n = strlen(tbuf) + 1; /* for the \0 */
1734 if (n > ep - bp || n >= MAXHOSTNAMELEN) {
1735 had_error++;
1736 continue;
1737 }
1738 strlcpy(bp, tbuf, ep - bp);
1739 canonname = bp;
1740 bp += n;
1741 continue;
1742 }
1743 if (qtype == T_ANY) {
1744 if (!(type == T_A || type == T_AAAA)) {
1745 cp += n;
1746 continue;
1747 }
1748 } else if (type != qtype) {
1749#ifdef DEBUG
1750 if (type != T_KEY && type != T_SIG)
1751 syslog(LOG_NOTICE|LOG_AUTH,
1752 "gethostby*.getanswer: asked for \"%s %s %s\", got type \"%s\"",
1753 qname, p_class(C_IN), p_type(qtype),
1754 p_type(type));
1755#endif
1756 cp += n;
1757 continue; /* XXX - had_error++ ? */
1758 }
1759 switch (type) {
1760 case T_A:
1761 case T_AAAA:
1762 if (strcasecmp(canonname, bp) != 0) {
1763#ifdef DEBUG
1764 syslog(LOG_NOTICE|LOG_AUTH,
1765 AskedForGot, canonname, bp);
1766#endif
1767 cp += n;
1768 continue; /* XXX - had_error++ ? */
1769 }
1770 if (type == T_A && n != INADDRSZ) {
1771 cp += n;
1772 continue;
1773 }
1774 if (type == T_AAAA && n != IN6ADDRSZ) {
1775 cp += n;
1776 continue;
1777 }
1778#ifdef FILTER_V4MAPPED
1779 if (type == T_AAAA) {
1780 struct in6_addr in6;
1781 memcpy(&in6, cp, sizeof(in6));
1782 if (IN6_IS_ADDR_V4MAPPED(&in6)) {
1783 cp += n;
1784 continue;
1785 }
1786 }
1787#endif
1788 if (!haveanswer) {
1789 int nn;
1790
1791 canonname = bp;
1792 nn = strlen(bp) + 1; /* for the \0 */
1793 bp += nn;
1794 }
1795
1796 /* don't overwrite pai */
1797 ai = *pai;
1798 ai.ai_family = (type == T_A) ? AF_INET : AF_INET6;
1799 afd = find_afd(ai.ai_family);
1800 if (afd == NULL) {
1801 cp += n;
1802 continue;
1803 }
1804 cur->ai_next = get_ai(&ai, afd, (const char *)cp);
1805 if (cur->ai_next == NULL)
1806 had_error++;
1807 while (cur && cur->ai_next)
1808 cur = cur->ai_next;
1809 cp += n;
1810 break;
1811 default:
1812 abort();
1813 }
1814 if (!had_error)
1815 haveanswer++;
1816 }
1817 if (haveanswer) {
1818#if defined(RESOLVSORT)
1819 /*
1820 * We support only IPv4 address for backward
1821 * compatibility against gethostbyname(3).
1822 */
1823 if (_res.nsort && qtype == T_A) {
1824 if (addr4sort(&sentinel) < 0) {
1825 freeaddrinfo(sentinel.ai_next);
1826 h_errno = NO_RECOVERY;
1827 return NULL;
1828 }
1829 }
1830#endif /*RESOLVSORT*/
1831 if (!canonname)
1832 (void)get_canonname(pai, sentinel.ai_next, qname);
1833 else
1834 (void)get_canonname(pai, sentinel.ai_next, canonname);
1835 h_errno = NETDB_SUCCESS;
1836 return sentinel.ai_next;
1837 }
1838
1839 h_errno = NO_RECOVERY;
1840 return NULL;
1841}
1842
1843#ifdef RESOLVSORT
1844struct addr_ptr {
1845 struct addrinfo *ai;
1846 int aval;
1847};
1848
1849static int
1850addr4sort(struct addrinfo *sentinel)
1851{
1852 struct addrinfo *ai;
1853 struct addr_ptr *addrs, addr;
1854 struct sockaddr_in *sin;
1855 int naddrs, i, j;
1856 int needsort = 0;
1857
1858 if (!sentinel)
1859 return -1;
1860 naddrs = 0;
1861 for (ai = sentinel->ai_next; ai; ai = ai->ai_next)
1862 naddrs++;
1863 if (naddrs < 2)
1864 return 0; /* We don't need sorting. */
1865 if ((addrs = malloc(sizeof(struct addr_ptr) * naddrs)) == NULL)
1866 return -1;
1867 i = 0;
1868 for (ai = sentinel->ai_next; ai; ai = ai->ai_next) {
1869 sin = (struct sockaddr_in *)ai->ai_addr;
1870 for (j = 0; (unsigned)j < _res.nsort; j++) {
1871 if (_res.sort_list[j].addr.s_addr ==
1872 (sin->sin_addr.s_addr & _res.sort_list[j].mask))
1873 break;
1874 }
1875 addrs[i].ai = ai;
1876 addrs[i].aval = j;
1877 if (needsort == 0 && i > 0 && j < addrs[i - 1].aval)
1878 needsort = i;
1879 i++;
1880 }
1881 if (!needsort) {
1882 free(addrs);
1883 return 0;
1884 }
1885
1886 while (needsort < naddrs) {
1887 for (j = needsort - 1; j >= 0; j--) {
1888 if (addrs[j].aval > addrs[j+1].aval) {
1889 addr = addrs[j];
1890 addrs[j] = addrs[j + 1];
1891 addrs[j + 1] = addr;
1892 } else
1893 break;
1894 }
1895 needsort++;
1896 }
1897
1898 ai = sentinel;
1899 for (i = 0; i < naddrs; ++i) {
1900 ai->ai_next = addrs[i].ai;
1901 ai = ai->ai_next;
1902 }
1903 ai->ai_next = NULL;
1904 free(addrs);
1905 return 0;
1906}
1907#endif /*RESOLVSORT*/
1908
1909/*ARGSUSED*/
1910static int
1911_dns_getaddrinfo(rv, cb_data, ap)
1912 void *rv;
1913 void *cb_data;
1914 va_list ap;
1915{
1916 struct addrinfo *ai;
1917 querybuf *buf, *buf2;
1918 const char *hostname;
1919 const struct addrinfo *pai;
1920 struct addrinfo sentinel, *cur;
1921 struct res_target q, q2;
1922
1923 hostname = va_arg(ap, char *);
1924 pai = va_arg(ap, const struct addrinfo *);
1925
1926 memset(&q, 0, sizeof(q2));
1927 memset(&q2, 0, sizeof(q2));
1928 memset(&sentinel, 0, sizeof(sentinel));
1929 cur = &sentinel;
1930
1931 buf = malloc(sizeof(*buf));
1932 if (!buf) {
1933 h_errno = NETDB_INTERNAL;
1934 return NS_NOTFOUND;
1935 }
1936 buf2 = malloc(sizeof(*buf2));
1937 if (!buf2) {
1938 free(buf);
1939 h_errno = NETDB_INTERNAL;
1940 return NS_NOTFOUND;
1941 }
1942
1943 switch (pai->ai_family) {
1944 case AF_UNSPEC:
1945 q.name = hostname;
1946 q.qclass = C_IN;
1947 q.qtype = T_A;
1948 q.answer = buf->buf;
1949 q.anslen = sizeof(buf->buf);
1950 q.next = &q2;
1951 q2.name = hostname;
1952 q2.qclass = C_IN;
1953 q2.qtype = T_AAAA;
1954 q2.answer = buf2->buf;
1955 q2.anslen = sizeof(buf2->buf);
1956 break;
1957 case AF_INET:
1958 q.name = hostname;
1959 q.qclass = C_IN;
1960 q.qtype = T_A;
1961 q.answer = buf->buf;
1962 q.anslen = sizeof(buf->buf);
1963 break;
1964 case AF_INET6:
1965 q.name = hostname;
1966 q.qclass = C_IN;
1967 q.qtype = T_AAAA;
1968 q.answer = buf->buf;
1969 q.anslen = sizeof(buf->buf);
1970 break;
1971 default:
1972 free(buf);
1973 free(buf2);
1974 return NS_UNAVAIL;
1975 }
1976 if (res_searchN(hostname, &q) < 0) {
1977 free(buf);
1978 free(buf2);
1979 return NS_NOTFOUND;
1980 }
1981 /* prefer IPv6 */
1982 if (q.next) {
1983 ai = getanswer(buf2, q2.n, q2.name, q2.qtype, pai);
1984 if (ai) {
1985 cur->ai_next = ai;
1986 while (cur && cur->ai_next)
1987 cur = cur->ai_next;
1988 }
1989 }
1990 ai = getanswer(buf, q.n, q.name, q.qtype, pai);
1991 if (ai)
1992 cur->ai_next = ai;
1993 free(buf);
1994 free(buf2);
1995 if (sentinel.ai_next == NULL)
1996 switch (h_errno) {
1997 case HOST_NOT_FOUND:
1998 return NS_NOTFOUND;
1999 case TRY_AGAIN:
2000 return NS_TRYAGAIN;
2001 default:
2002 return NS_UNAVAIL;
2003 }
2004 *((struct addrinfo **)rv) = sentinel.ai_next;
2005 return NS_SUCCESS;
2006}
2007
2008static void
2009_sethtent(FILE **hostf)
2010{
2011 if (!*hostf)
2012 *hostf = fopen(_PATH_HOSTS, "r");
2013 else
2014 rewind(*hostf);
2015}
2016
2017static void
2018_endhtent(FILE **hostf)
2019{
2020 if (*hostf) {
2021 (void) fclose(*hostf);
2022 *hostf = NULL;
2023 }
2024}
2025
2026static struct addrinfo *
2027_gethtent(FILE **hostf, const char *name, const struct addrinfo *pai)
2028{
2029 char *p;
2030 char *cp, *tname, *cname;
2031 struct addrinfo hints, *res0, *res;
2032 int error;
2033 const char *addr;
2034 char hostbuf[8*1024];
2035
2036 if (!*hostf && !(*hostf = fopen(_PATH_HOSTS, "r")))
2037 return (NULL);
2038again:
2039 if (!(p = fgets(hostbuf, sizeof hostbuf, *hostf)))
2040 return (NULL);
2041 if (*p == '#')
2042 goto again;
2043 cp = strpbrk(p, "#\n");
2044 if (cp != NULL)
2045 *cp = '\0';
2046 if (!(cp = strpbrk(p, " \t")))
2047 goto again;
2048 *cp++ = '\0';
2049 addr = p;
2050 cname = NULL;
2051 /* if this is not something we're looking for, skip it. */
2052 while (cp && *cp) {
2053 if (*cp == ' ' || *cp == '\t') {
2054 cp++;
2055 continue;
2056 }
2057 tname = cp;
2058 if (cname == NULL)
2059 cname = cp;
2060 if ((cp = strpbrk(cp, " \t")) != NULL)
2061 *cp++ = '\0';
2062 if (strcasecmp(name, tname) == 0)
2063 goto found;
2064 }
2065 goto again;
2066
2067found:
2068 /* we should not glob socktype/protocol here */
2069 memset(&hints, 0, sizeof(hints));
2070 hints.ai_family = pai->ai_family;
2071 hints.ai_socktype = SOCK_DGRAM;
2072 hints.ai_protocol = 0;
2073 hints.ai_flags = AI_NUMERICHOST;
2074 error = getaddrinfo(addr, "0", &hints, &res0);
2075 if (error)
2076 goto again;
2077#ifdef FILTER_V4MAPPED
2078 /* XXX should check all items in the chain */
2079 if (res0->ai_family == AF_INET6 &&
2080 IN6_IS_ADDR_V4MAPPED(&((struct sockaddr_in6 *)res0->ai_addr)->sin6_addr)) {
2081 freeaddrinfo(res0);
2082 goto again;
2083 }
2084#endif
2085 for (res = res0; res; res = res->ai_next) {
2086 /* cover it up */
2087 res->ai_flags = pai->ai_flags;
2088 res->ai_socktype = pai->ai_socktype;
2089 res->ai_protocol = pai->ai_protocol;
2090
2091 if (pai->ai_flags & AI_CANONNAME) {
2092 if (get_canonname(pai, res, cname) != 0) {
2093 freeaddrinfo(res0);
2094 goto again;
2095 }
2096 }
2097 }
2098 return res0;
2099}
2100
2101/*ARGSUSED*/
2102static int
2103_files_getaddrinfo(rv, cb_data, ap)
2104 void *rv;
2105 void *cb_data;
2106 va_list ap;
2107{
2108 const char *name;
2109 const struct addrinfo *pai;
2110 struct addrinfo sentinel, *cur;
2111 struct addrinfo *p;
2112 FILE *hostf = NULL;
2113
2114 name = va_arg(ap, char *);
2115 pai = va_arg(ap, struct addrinfo *);
2116
2117 memset(&sentinel, 0, sizeof(sentinel));
2118 cur = &sentinel;
2119
2120 _sethtent(&hostf);
2121 while ((p = _gethtent(&hostf, name, pai)) != NULL) {
2122 cur->ai_next = p;
2123 while (cur && cur->ai_next)
2124 cur = cur->ai_next;
2125 }
2126 _endhtent(&hostf);
2127
2128 *((struct addrinfo **)rv) = sentinel.ai_next;
2129 if (sentinel.ai_next == NULL)
2130 return NS_NOTFOUND;
2131 return NS_SUCCESS;
2132}
2133
2134#ifdef YP
2135/*ARGSUSED*/
2136static struct addrinfo *
2137_yphostent(line, pai)
2138 char *line;
2139 const struct addrinfo *pai;
2140{
2141 struct addrinfo sentinel, *cur;
2142 struct addrinfo hints, *res, *res0;
2143 int error;
2144 char *p = line;
2145 const char *addr, *canonname;
2146 char *nextline;
2147 char *cp;
2148
2149 addr = canonname = NULL;
2150
2151 memset(&sentinel, 0, sizeof(sentinel));
2152 cur = &sentinel;
2153
2154nextline:
2155 /* terminate line */
2156 cp = strchr(p, '\n');
2157 if (cp) {
2158 *cp++ = '\0';
2159 nextline = cp;
2160 } else
2161 nextline = NULL;
2162
2163 cp = strpbrk(p, " \t");
2164 if (cp == NULL) {
2165 if (canonname == NULL)
2166 return (NULL);
2167 else
2168 goto done;
2169 }
2170 *cp++ = '\0';
2171
2172 addr = p;
2173
2174 while (cp && *cp) {
2175 if (*cp == ' ' || *cp == '\t') {
2176 cp++;
2177 continue;
2178 }
2179 if (!canonname)
2180 canonname = cp;
2181 if ((cp = strpbrk(cp, " \t")) != NULL)
2182 *cp++ = '\0';
2183 }
2184
2185 hints = *pai;
2186 hints.ai_flags = AI_NUMERICHOST;
2187 error = getaddrinfo(addr, NULL, &hints, &res0);
2188 if (error == 0) {
2189 for (res = res0; res; res = res->ai_next) {
2190 /* cover it up */
2191 res->ai_flags = pai->ai_flags;
2192
2193 if (pai->ai_flags & AI_CANONNAME)
2194 (void)get_canonname(pai, res, canonname);
2195 }
2196 } else
2197 res0 = NULL;
2198 if (res0) {
2199 cur->ai_next = res0;
2200 while (cur && cur->ai_next)
2201 cur = cur->ai_next;
2202 }
2203
2204 if (nextline) {
2205 p = nextline;
2206 goto nextline;
2207 }
2208
2209done:
2210 return sentinel.ai_next;
2211}
2212
2213/*ARGSUSED*/
2214static int
2215_yp_getaddrinfo(rv, cb_data, ap)
2216 void *rv;
2217 void *cb_data;
2218 va_list ap;
2219{
2220 struct addrinfo sentinel, *cur;
2221 struct addrinfo *ai = NULL;
2222 char *ypbuf;
2223 int ypbuflen, r;
2224 const char *name;
2225 const struct addrinfo *pai;
2226 char *ypdomain;
2227
2228 if (_yp_check(&ypdomain) == 0)
2229 return NS_UNAVAIL;
2230
2231 name = va_arg(ap, char *);
2232 pai = va_arg(ap, const struct addrinfo *);
2233
2234 memset(&sentinel, 0, sizeof(sentinel));
2235 cur = &sentinel;
2236
2237 /* hosts.byname is only for IPv4 (Solaris8) */
2238 if (pai->ai_family == PF_UNSPEC || pai->ai_family == PF_INET) {
2239 r = yp_match(ypdomain, "hosts.byname", name,
2240 (int)strlen(name), &ypbuf, &ypbuflen);
2241 if (r == 0) {
2242 struct addrinfo ai4;
2243
2244 ai4 = *pai;
2245 ai4.ai_family = AF_INET;
2246 ai = _yphostent(ypbuf, &ai4);
2247 if (ai) {
2248 cur->ai_next = ai;
2249 while (cur && cur->ai_next)
2250 cur = cur->ai_next;
2251 }
2252 free(ypbuf);
2253 }
2254 }
2255
2256 /* ipnodes.byname can hold both IPv4/v6 */
2257 r = yp_match(ypdomain, "ipnodes.byname", name,
2258 (int)strlen(name), &ypbuf, &ypbuflen);
2259 if (r == 0) {
2260 ai = _yphostent(ypbuf, pai);
2261 if (ai)
2262 cur->ai_next = ai;
2263 free(ypbuf);
2264 }
2265
2266 if (sentinel.ai_next == NULL) {
2267 h_errno = HOST_NOT_FOUND;
2268 return NS_NOTFOUND;
2269 }
2270 *((struct addrinfo **)rv) = sentinel.ai_next;
2271 return NS_SUCCESS;
2272}
2273#endif
2274
2275/* resolver logic */
2276
2277extern const char *_res_hostalias(const char *, char *, size_t);
2278
2279/*
2280 * Formulate a normal query, send, and await answer.
2281 * Returned answer is placed in supplied buffer "answer".
2282 * Perform preliminary check of answer, returning success only
2283 * if no error is indicated and the answer count is nonzero.
2284 * Return the size of the response on success, -1 on error.
2285 * Error number is left in h_errno.
2286 *
2287 * Caller must parse answer and determine whether it answers the question.
2288 */
2289static int
2290res_queryN(name, target)
2291 const char *name; /* domain name */
2292 struct res_target *target;
2293{
2294 u_char *buf;
2295 HEADER *hp;
2296 int n;
2297 struct res_target *t;
2298 int rcode;
2299 int ancount;
2300
2301 rcode = NOERROR;
2302 ancount = 0;
2303
2304 buf = malloc(MAXPACKET);
2305 if (!buf) {
2306 h_errno = NETDB_INTERNAL;
2307 return -1;
2308 }
2309
2310 for (t = target; t; t = t->next) {
2311 int class, type;
2312 u_char *answer;
2313 int anslen;
2314
2315 hp = (HEADER *)(void *)t->answer;
2316 hp->rcode = NOERROR; /* default */
2317
2318 /* make it easier... */
2319 class = t->qclass;
2320 type = t->qtype;
2321 answer = t->answer;
2322 anslen = t->anslen;
2323#ifdef DEBUG
2324 if (_res.options & RES_DEBUG)
2325 printf(";; res_query(%s, %d, %d)\n", name, class, type);
2326#endif
2327
2328 n = res_mkquery(QUERY, name, class, type, NULL, 0, NULL,
2329 buf, MAXPACKET);
2330 if (n > 0 && (_res.options & RES_USE_EDNS0) != 0)
2331 n = res_opt(n, buf, MAXPACKET, anslen);
2332 if (n <= 0) {
2333#ifdef DEBUG
2334 if (_res.options & RES_DEBUG)
2335 printf(";; res_query: mkquery failed\n");
2336#endif
2337 free(buf);
2338 h_errno = NO_RECOVERY;
2339 return (n);
2340 }
2341 n = res_send(buf, n, answer, anslen);
2342#if 0
2343 if (n < 0) {
2344#ifdef DEBUG
2345 if (_res.options & RES_DEBUG)
2346 printf(";; res_query: send error\n");
2347#endif
2348 free(buf);
2349 h_errno = TRY_AGAIN;
2350 return (n);
2351 }
2352#endif
2353
2354 if (n < 0 || n > anslen)
2355 hp->rcode = FORMERR; /* XXX not very informative */
2356 if (hp->rcode != NOERROR || ntohs(hp->ancount) == 0) {
2357 rcode = hp->rcode; /* record most recent error */
2358#ifdef DEBUG
2359 if (_res.options & RES_DEBUG)
2360 printf(";; rcode = %u, ancount=%u\n", hp->rcode,
2361 ntohs(hp->ancount));
2362#endif
2363 continue;
2364 }
2365
2366 ancount += ntohs(hp->ancount);
2367
2368 t->n = n;
2369 }
2370
2371 free(buf);
2372
2373 if (ancount == 0) {
2374 switch (rcode) {
2375 case NXDOMAIN:
2376 h_errno = HOST_NOT_FOUND;
2377 break;
2378 case SERVFAIL:
2379 h_errno = TRY_AGAIN;
2380 break;
2381 case NOERROR:
2382 h_errno = NO_DATA;
2383 break;
2384 case FORMERR:
2385 case NOTIMP:
2386 case REFUSED:
2387 default:
2388 h_errno = NO_RECOVERY;
2389 break;
2390 }
2391 return (-1);
2392 }
2393 return (ancount);
2394}
2395
2396/*
2397 * Formulate a normal query, send, and retrieve answer in supplied buffer.
2398 * Return the size of the response on success, -1 on error.
2399 * If enabled, implement search rules until answer or unrecoverable failure
2400 * is detected. Error code, if any, is left in h_errno.
2401 */
2402static int
2403res_searchN(name, target)
2404 const char *name; /* domain name */
2405 struct res_target *target;
2406{
2407 const char *cp, * const *domain;
2408 HEADER *hp = (HEADER *)(void *)target->answer; /*XXX*/
2409 u_int dots;
2410 int trailing_dot, ret, saved_herrno;
2411 int got_nodata = 0, got_servfail = 0, tried_as_is = 0;
2412 char abuf[MAXDNAME];
2413
2414 if ((_res.options & RES_INIT) == 0 && res_init() == -1) {
2415 h_errno = NETDB_INTERNAL;
2416 return (-1);
2417 }
2418
2419 errno = 0;
2420 h_errno = HOST_NOT_FOUND; /* default, if we never query */
2421 dots = 0;
2422 for (cp = name; *cp; cp++)
2423 dots += (*cp == '.');
2424 trailing_dot = 0;
2425 if (cp > name && *--cp == '.')
2426 trailing_dot++;
2427
2428 /*
2429 * if there aren't any dots, it could be a user-level alias
2430 */
2431 if (!dots && (cp = _res_hostalias(name, abuf, sizeof(abuf))) != NULL)
2432 return (res_queryN(cp, target));
2433
2434 /*
2435 * If there are dots in the name already, let's just give it a try
2436 * 'as is'. The threshold can be set with the "ndots" option.
2437 */
2438 saved_herrno = -1;
2439 if (dots >= _res.ndots) {
2440 ret = res_querydomainN(name, NULL, target);
2441 if (ret > 0)
2442 return (ret);
2443 saved_herrno = h_errno;
2444 tried_as_is++;
2445 }
2446
2447 /*
2448 * We do at least one level of search if
2449 * - there is no dot and RES_DEFNAME is set, or
2450 * - there is at least one dot, there is no trailing dot,
2451 * and RES_DNSRCH is set.
2452 */
2453 if ((!dots && (_res.options & RES_DEFNAMES)) ||
2454 (dots && !trailing_dot && (_res.options & RES_DNSRCH))) {
2455 int done = 0;
2456
2457 for (domain = (const char * const *)_res.dnsrch;
2458 *domain && !done;
2459 domain++) {
2460
2461 ret = res_querydomainN(name, *domain, target);
2462 if (ret > 0)
2463 return (ret);
2464
2465 /*
2466 * If no server present, give up.
2467 * If name isn't found in this domain,
2468 * keep trying higher domains in the search list
2469 * (if that's enabled).
2470 * On a NO_DATA error, keep trying, otherwise
2471 * a wildcard entry of another type could keep us
2472 * from finding this entry higher in the domain.
2473 * If we get some other error (negative answer or
2474 * server failure), then stop searching up,
2475 * but try the input name below in case it's
2476 * fully-qualified.
2477 */
2478 if (errno == ECONNREFUSED) {
2479 h_errno = TRY_AGAIN;
2480 return (-1);
2481 }
2482
2483 switch (h_errno) {
2484 case NO_DATA:
2485 got_nodata++;
2486 /* FALLTHROUGH */
2487 case HOST_NOT_FOUND:
2488 /* keep trying */
2489 break;
2490 case TRY_AGAIN:
2491 if (hp->rcode == SERVFAIL) {
2492 /* try next search element, if any */
2493 got_servfail++;
2494 break;
2495 }
2496 /* FALLTHROUGH */
2497 default:
2498 /* anything else implies that we're done */
2499 done++;
2500 }
2501 /*
2502 * if we got here for some reason other than DNSRCH,
2503 * we only wanted one iteration of the loop, so stop.
2504 */
2505 if (!(_res.options & RES_DNSRCH))
2506 done++;
2507 }
2508 }
2509
2510 /*
2511 * if we have not already tried the name "as is", do that now.
2512 * note that we do this regardless of how many dots were in the
2513 * name or whether it ends with a dot.
2514 */
2515 if (!tried_as_is && (dots || !(_res.options & RES_NOTLDQUERY))) {
2516 ret = res_querydomainN(name, NULL, target);
2517 if (ret > 0)
2518 return (ret);
2519 }
2520
2521 /*
2522 * if we got here, we didn't satisfy the search.
2523 * if we did an initial full query, return that query's h_errno
2524 * (note that we wouldn't be here if that query had succeeded).
2525 * else if we ever got a nodata, send that back as the reason.
2526 * else send back meaningless h_errno, that being the one from
2527 * the last DNSRCH we did.
2528 */
2529 if (saved_herrno != -1)
2530 h_errno = saved_herrno;
2531 else if (got_nodata)
2532 h_errno = NO_DATA;
2533 else if (got_servfail)
2534 h_errno = TRY_AGAIN;
2535 return (-1);
2536}
2537
2538/*
2539 * Perform a call on res_query on the concatenation of name and domain,
2540 * removing a trailing dot from name if domain is NULL.
2541 */
2542static int
2543res_querydomainN(name, domain, target)
2544 const char *name, *domain;
2545 struct res_target *target;
2546{
2547 char nbuf[MAXDNAME];
2548 const char *longname = nbuf;
2549 size_t n, d;
2550
2551#ifdef DEBUG
2552 if (_res.options & RES_DEBUG)
2553 printf(";; res_querydomain(%s, %s)\n",
2554 name, domain?domain:"<Nil>");
2555#endif
2556 if (domain == NULL) {
2557 /*
2558 * Check for trailing '.';
2559 * copy without '.' if present.
2560 */
2561 n = strlen(name);
2562 if (n >= MAXDNAME) {
2563 h_errno = NO_RECOVERY;
2564 return (-1);
2565 }
2566 if (n > 0 && name[--n] == '.') {
2567 strncpy(nbuf, name, n);
2568 nbuf[n] = '\0';
2569 } else
2570 longname = name;
2571 } else {
2572 n = strlen(name);
2573 d = strlen(domain);
2574 if (n + d + 1 >= MAXDNAME) {
2575 h_errno = NO_RECOVERY;
2576 return (-1);
2577 }
2578 snprintf(nbuf, sizeof(nbuf), "%s.%s", name, domain);
2579 }
2580 return (res_queryN(longname, target));
2581}