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