Merge from vendor branch GCC:
[dragonfly.git] / contrib / bind-9.3 / lib / bind / irs / getaddrinfo.c
1 /*      $KAME: getaddrinfo.c,v 1.14 2001/01/06 09:41:15 jinmei 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  * Issues to be discussed:
34  * - Thread safe-ness must be checked.
35  * - Return values.  There are nonstandard return values defined and used
36  *   in the source code.  This is because RFC2553 is silent about which error
37  *   code must be returned for which situation.
38  * - IPv4 classful (shortened) form.  RFC2553 is silent about it.  XNET 5.2
39  *   says to use inet_aton() to convert IPv4 numeric to binary (allows
40  *   classful form as a result).
41  *   current code - disallow classful form for IPv4 (due to use of inet_pton).
42  * - freeaddrinfo(NULL).  RFC2553 is silent about it.  XNET 5.2 says it is
43  *   invalid.
44  *   current code - SEGV on freeaddrinfo(NULL)
45  * Note:
46  * - We use getipnodebyname() just for thread-safeness.  There's no intent
47  *   to let it do PF_UNSPEC (actually we never pass PF_UNSPEC to
48  *   getipnodebyname().
49  * - The code filters out AFs that are not supported by the kernel,
50  *   when globbing NULL hostname (to loopback, or wildcard).  Is it the right
51  *   thing to do?  What is the relationship with post-RFC2553 AI_ADDRCONFIG
52  *   in ai_flags?
53  * - (post-2553) semantics of AI_ADDRCONFIG itself is too vague.
54  *   (1) what should we do against numeric hostname (2) what should we do
55  *   against NULL hostname (3) what is AI_ADDRCONFIG itself.  AF not ready?
56  *   non-loopback address configured?  global address configured?
57  * - To avoid search order issue, we have a big amount of code duplicate
58  *   from gethnamaddr.c and some other places.  The issues that there's no
59  *   lower layer function to lookup "IPv4 or IPv6" record.  Calling
60  *   gethostbyname2 from getaddrinfo will end up in wrong search order, as
61  *   follows:
62  *      - The code makes use of following calls when asked to resolver with
63  *        ai_family  = PF_UNSPEC:
64  *              getipnodebyname(host, AF_INET6);
65  *              getipnodebyname(host, AF_INET);
66  *        This will result in the following queries if the node is configure to
67  *        prefer /etc/hosts than DNS:
68  *              lookup /etc/hosts for IPv6 address
69  *              lookup DNS for IPv6 address
70  *              lookup /etc/hosts for IPv4 address
71  *              lookup DNS for IPv4 address
72  *        which may not meet people's requirement.
73  *        The right thing to happen is to have underlying layer which does
74  *        PF_UNSPEC lookup (lookup both) and return chain of addrinfos.
75  *        This would result in a bit of code duplicate with _dns_ghbyname() and
76  *        friends.
77  */
78
79 #include "port_before.h"
80
81 #include <sys/types.h>
82 #include <sys/param.h>
83 #include <sys/socket.h>
84
85 #include <net/if.h>
86 #include <netinet/in.h>
87
88 #include <arpa/inet.h>
89 #include <arpa/nameser.h>
90
91 #include <netdb.h>
92 #include <resolv.h>
93 #include <string.h>
94 #include <stdlib.h>
95 #include <stddef.h>
96 #include <ctype.h>
97 #include <unistd.h>
98 #include <stdio.h>
99 #include <errno.h>
100
101 #include <stdarg.h>
102
103 #include <irs.h>
104 #include <isc/assertions.h>
105
106 #include "port_after.h"
107
108 #include "irs_data.h"
109
110 #define SUCCESS 0
111 #define ANY 0
112 #define YES 1
113 #define NO  0
114
115 static const char in_addrany[] = { 0, 0, 0, 0 };
116 static const char in6_addrany[] = {
117         0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
118 };
119 static const char in_loopback[] = { 127, 0, 0, 1 };
120 static const char in6_loopback[] = {
121         0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1
122 };
123
124 static const struct afd {
125         int a_af;
126         int a_addrlen;
127         int a_socklen;
128         int a_off;
129         const char *a_addrany;
130         const char *a_loopback;
131         int a_scoped;
132 } afdl [] = {
133         {PF_INET6, sizeof(struct in6_addr),
134          sizeof(struct sockaddr_in6),
135          offsetof(struct sockaddr_in6, sin6_addr),
136          in6_addrany, in6_loopback, 1},
137         {PF_INET, sizeof(struct in_addr),
138          sizeof(struct sockaddr_in),
139          offsetof(struct sockaddr_in, sin_addr),
140          in_addrany, in_loopback, 0},
141         {0, 0, 0, 0, NULL, NULL, 0},
142 };
143
144 struct explore {
145         int e_af;
146         int e_socktype;
147         int e_protocol;
148         const char *e_protostr;
149         int e_wild;
150 #define WILD_AF(ex)             ((ex)->e_wild & 0x01)
151 #define WILD_SOCKTYPE(ex)       ((ex)->e_wild & 0x02)
152 #define WILD_PROTOCOL(ex)       ((ex)->e_wild & 0x04)
153 };
154
155 static const struct explore explore[] = {
156 #if 0
157         { PF_LOCAL, 0, ANY, ANY, NULL, 0x01 },
158 #endif
159         { PF_INET6, SOCK_DGRAM, IPPROTO_UDP, "udp", 0x07 },
160         { PF_INET6, SOCK_STREAM, IPPROTO_TCP, "tcp", 0x07 },
161         { PF_INET6, SOCK_RAW, ANY, NULL, 0x05 },
162         { PF_INET, SOCK_DGRAM, IPPROTO_UDP, "udp", 0x07 },
163         { PF_INET, SOCK_STREAM, IPPROTO_TCP, "tcp", 0x07 },
164         { PF_INET, SOCK_RAW, ANY, NULL, 0x05 },
165         { -1, 0, 0, NULL, 0 },
166 };
167
168 #define PTON_MAX        16
169
170 static int str_isnumber __P((const char *));
171 static int explore_fqdn __P((const struct addrinfo *, const char *,
172         const char *, struct addrinfo **));
173 static int explore_copy __P((const struct addrinfo *, const struct addrinfo *,
174         struct addrinfo **));
175 static int explore_null __P((const struct addrinfo *,
176         const char *, struct addrinfo **));
177 static int explore_numeric __P((const struct addrinfo *, const char *,
178         const char *, struct addrinfo **));
179 static int explore_numeric_scope __P((const struct addrinfo *, const char *,
180         const char *, struct addrinfo **));
181 static int get_canonname __P((const struct addrinfo *,
182         struct addrinfo *, const char *));
183 static struct addrinfo *get_ai __P((const struct addrinfo *,
184         const struct afd *, const char *));
185 static struct addrinfo *copy_ai __P((const struct addrinfo *));
186 static int get_portmatch __P((const struct addrinfo *, const char *));
187 static int get_port __P((const struct addrinfo *, const char *, int));
188 static const struct afd *find_afd __P((int));
189 static int addrconfig __P((int));
190 static int ip6_str2scopeid __P((char *, struct sockaddr_in6 *,
191                                 u_int32_t *scopeidp));
192 static struct net_data *init __P((void));
193
194 struct addrinfo *hostent2addrinfo __P((struct hostent *,
195                                        const struct addrinfo *));
196 struct addrinfo *addr2addrinfo __P((const struct addrinfo *,
197                                     const char *));
198
199 #if 0
200 static const char *ai_errlist[] = {
201         "Success",
202         "Address family for hostname not supported",    /* EAI_ADDRFAMILY */
203         "Temporary failure in name resolution",         /* EAI_AGAIN      */
204         "Invalid value for ai_flags",                   /* EAI_BADFLAGS   */
205         "Non-recoverable failure in name resolution",   /* EAI_FAIL       */
206         "ai_family not supported",                      /* EAI_FAMILY     */
207         "Memory allocation failure",                    /* EAI_MEMORY     */
208         "No address associated with hostname",          /* EAI_NODATA     */
209         "hostname nor servname provided, or not known", /* EAI_NONAME     */
210         "servname not supported for ai_socktype",       /* EAI_SERVICE    */
211         "ai_socktype not supported",                    /* EAI_SOCKTYPE   */
212         "System error returned in errno",               /* EAI_SYSTEM     */
213         "Invalid value for hints",                      /* EAI_BADHINTS   */
214         "Resolved protocol is unknown",                 /* EAI_PROTOCOL   */
215         "Unknown error",                                /* EAI_MAX        */
216 };
217 #endif
218
219 /* XXX macros that make external reference is BAD. */
220
221 #define GET_AI(ai, afd, addr) \
222 do { \
223         /* external reference: pai, error, and label free */ \
224         (ai) = get_ai(pai, (afd), (addr)); \
225         if ((ai) == NULL) { \
226                 error = EAI_MEMORY; \
227                 goto free; \
228         } \
229 } while (/*CONSTCOND*/0)
230
231 #define GET_PORT(ai, serv) \
232 do { \
233         /* external reference: error and label free */ \
234         error = get_port((ai), (serv), 0); \
235         if (error != 0) \
236                 goto free; \
237 } while (/*CONSTCOND*/0)
238
239 #define GET_CANONNAME(ai, str) \
240 do { \
241         /* external reference: pai, error and label free */ \
242         error = get_canonname(pai, (ai), (str)); \
243         if (error != 0) \
244                 goto free; \
245 } while (/*CONSTCOND*/0)
246
247 #ifndef SOLARIS2
248 #define ERR(err) \
249 do { \
250         /* external reference: error, and label bad */ \
251         error = (err); \
252         goto bad; \
253         /*NOTREACHED*/ \
254 } while (/*CONSTCOND*/0)
255 #else
256 #define ERR(err) \
257 do { \
258         /* external reference: error, and label bad */ \
259         error = (err); \
260         if (error == error) \
261                 goto bad; \
262 } while (/*CONSTCOND*/0)
263 #endif
264
265
266 #define MATCH_FAMILY(x, y, w) \
267         ((x) == (y) || (/*CONSTCOND*/(w) && ((x) == PF_UNSPEC || (y) == PF_UNSPEC)))
268 #define MATCH(x, y, w) \
269         ((x) == (y) || (/*CONSTCOND*/(w) && ((x) == ANY || (y) == ANY)))
270
271 #if 0                           /* bind8 has its own version */
272 char *
273 gai_strerror(ecode)
274         int ecode;
275 {
276         if (ecode < 0 || ecode > EAI_MAX)
277                 ecode = EAI_MAX;
278         return ai_errlist[ecode];
279 }
280 #endif
281
282 void
283 freeaddrinfo(ai)
284         struct addrinfo *ai;
285 {
286         struct addrinfo *next;
287
288         do {
289                 next = ai->ai_next;
290                 if (ai->ai_canonname)
291                         free(ai->ai_canonname);
292                 /* no need to free(ai->ai_addr) */
293                 free(ai);
294                 ai = next;
295         } while (ai);
296 }
297
298 static int
299 str_isnumber(p)
300         const char *p;
301 {
302         char *ep;
303
304         if (*p == '\0')
305                 return NO;
306         ep = NULL;
307         errno = 0;
308         (void)strtoul(p, &ep, 10);
309         if (errno == 0 && ep && *ep == '\0')
310                 return YES;
311         else
312                 return NO;
313 }
314
315 int
316 getaddrinfo(hostname, servname, hints, res)
317         const char *hostname, *servname;
318         const struct addrinfo *hints;
319         struct addrinfo **res;
320 {
321         struct addrinfo sentinel;
322         struct addrinfo *cur;
323         int error = 0;
324         struct addrinfo ai, ai0, *afai = NULL;
325         struct addrinfo *pai;
326         const struct explore *ex;
327
328         memset(&sentinel, 0, sizeof(sentinel));
329         cur = &sentinel;
330         pai = &ai;
331         pai->ai_flags = 0;
332         pai->ai_family = PF_UNSPEC;
333         pai->ai_socktype = ANY;
334         pai->ai_protocol = ANY;
335 #ifdef __sparcv9
336         /*
337          * clear _ai_pad to preserve binary
338          * compatibility with previously compiled 64-bit
339          * applications in a pre-SUSv3 environment by
340          * guaranteeing the upper 32-bits are empty.
341          */
342         pai->_ai_pad = 0;
343 #endif /* __sparcv9 */
344         pai->ai_addrlen = 0;
345         pai->ai_canonname = NULL;
346         pai->ai_addr = NULL;
347         pai->ai_next = NULL;
348
349         if (hostname == NULL && servname == NULL)
350                 return EAI_NONAME;
351         if (hints) {
352                 /* error check for hints */
353                 if (hints->ai_addrlen || hints->ai_canonname ||
354                     hints->ai_addr || hints->ai_next)
355                         ERR(EAI_BADHINTS); /* xxx */
356                 if (hints->ai_flags & ~AI_MASK)
357                         ERR(EAI_BADFLAGS);
358                 switch (hints->ai_family) {
359                 case PF_UNSPEC:
360                 case PF_INET:
361                 case PF_INET6:
362                         break;
363                 default:
364                         ERR(EAI_FAMILY);
365                 }
366                 memcpy(pai, hints, sizeof(*pai));
367
368 #ifdef __sparcv9
369                 /*
370                  * We need to clear _ai_pad to preserve binary
371                  * compatibility.  See prior comment.
372                  */
373                 pai->_ai_pad = 0;
374 #endif
375                 /*
376                  * if both socktype/protocol are specified, check if they
377                  * are meaningful combination.
378                  */
379                 if (pai->ai_socktype != ANY && pai->ai_protocol != ANY) {
380                         for (ex = explore; ex->e_af >= 0; ex++) {
381                                 if (pai->ai_family != ex->e_af)
382                                         continue;
383                                 if (ex->e_socktype == ANY)
384                                         continue;
385                                 if (ex->e_protocol == ANY)
386                                         continue;
387                                 if (pai->ai_socktype == ex->e_socktype &&
388                                     pai->ai_protocol != ex->e_protocol) {
389                                         ERR(EAI_BADHINTS);
390                                 }
391                         }
392                 }
393         }
394
395         /*
396          * post-2553: AI_ALL and AI_V4MAPPED are effective only against
397          * AF_INET6 query.  They needs to be ignored if specified in other
398          * occassions.
399          */
400         switch (pai->ai_flags & (AI_ALL | AI_V4MAPPED)) {
401         case AI_V4MAPPED:
402         case AI_ALL | AI_V4MAPPED:
403                 if (pai->ai_family != AF_INET6)
404                         pai->ai_flags &= ~(AI_ALL | AI_V4MAPPED);
405                 break;
406         case AI_ALL:
407 #if 1
408                 /* illegal */
409                 ERR(EAI_BADFLAGS);
410 #else
411                 pai->ai_flags &= ~(AI_ALL | AI_V4MAPPED);
412                 break;
413 #endif
414         }
415
416         /*
417          * check for special cases.  (1) numeric servname is disallowed if
418          * socktype/protocol are left unspecified. (2) servname is disallowed
419          * for raw and other inet{,6} sockets.
420          */
421         if (MATCH_FAMILY(pai->ai_family, PF_INET, 1)
422 #ifdef PF_INET6
423          || MATCH_FAMILY(pai->ai_family, PF_INET6, 1)
424 #endif
425             ) {
426                 ai0 = *pai;     /* backup *pai */
427
428                 if (pai->ai_family == PF_UNSPEC) {
429 #ifdef PF_INET6
430                         pai->ai_family = PF_INET6;
431 #else
432                         pai->ai_family = PF_INET;
433 #endif
434                 }
435                 error = get_portmatch(pai, servname);
436                 if (error)
437                         ERR(error);
438
439                 *pai = ai0;
440         }
441
442         ai0 = *pai;
443
444         /* NULL hostname, or numeric hostname */
445         for (ex = explore; ex->e_af >= 0; ex++) {
446                 *pai = ai0;
447
448                 if (!MATCH_FAMILY(pai->ai_family, ex->e_af, WILD_AF(ex)))
449                         continue;
450                 if (!MATCH(pai->ai_socktype, ex->e_socktype, WILD_SOCKTYPE(ex)))
451                         continue;
452                 if (!MATCH(pai->ai_protocol, ex->e_protocol, WILD_PROTOCOL(ex)))
453                         continue;
454
455                 if (pai->ai_family == PF_UNSPEC)
456                         pai->ai_family = ex->e_af;
457                 if (pai->ai_socktype == ANY && ex->e_socktype != ANY)
458                         pai->ai_socktype = ex->e_socktype;
459                 if (pai->ai_protocol == ANY && ex->e_protocol != ANY)
460                         pai->ai_protocol = ex->e_protocol;
461
462                 /*
463                  * if the servname does not match socktype/protocol, ignore it.
464                  */
465                 if (get_portmatch(pai, servname) != 0)
466                         continue;
467
468                 if (hostname == NULL) {
469                         /*
470                          * filter out AFs that are not supported by the kernel
471                          * XXX errno?
472                          */
473                         if (!addrconfig(pai->ai_family))
474                                 continue;
475                         error = explore_null(pai, servname, &cur->ai_next);
476                 } else
477                         error = explore_numeric_scope(pai, hostname, servname,
478                             &cur->ai_next);
479
480                 if (error)
481                         goto free;
482
483                 while (cur && cur->ai_next)
484                         cur = cur->ai_next;
485         }
486
487         /*
488          * XXX
489          * If numreic representation of AF1 can be interpreted as FQDN
490          * representation of AF2, we need to think again about the code below.
491          */
492         if (sentinel.ai_next)
493                 goto good;
494
495         if (pai->ai_flags & AI_NUMERICHOST)
496                 ERR(EAI_NONAME);
497         if (hostname == NULL)
498                 ERR(EAI_NONAME);
499
500         /*
501          * hostname as alphabetical name.
502          * We'll make sure that
503          * - if returning addrinfo list is empty, return non-zero error
504          *   value (already known one or EAI_NONAME).
505          * - otherwise, 
506          *   + if we haven't had any errors, return 0 (i.e. success).
507          *   + if we've had an error, free the list and return the error.
508          * without any assumption on the behavior of explore_fqdn().
509          */
510
511         /* first, try to query DNS for all possible address families. */
512         *pai = ai0;
513         error = explore_fqdn(pai, hostname, servname, &afai);
514         if (error) {
515                 if (afai != NULL)
516                         freeaddrinfo(afai);
517                 goto free;
518         }
519         if (afai == NULL) {
520                 error = EAI_NONAME; /* we've had no errors. */
521                 goto free;
522         }
523
524         /*
525          * we would like to prefer AF_INET6 than AF_INET, so we'll make an
526          * outer loop by AFs.
527          */
528         for (ex = explore; ex->e_af >= 0; ex++) {
529                 *pai = ai0;
530
531                 if (pai->ai_family == PF_UNSPEC)
532                         pai->ai_family = ex->e_af;
533
534                 if (!MATCH_FAMILY(pai->ai_family, ex->e_af, WILD_AF(ex)))
535                         continue;
536                 if (!MATCH(pai->ai_socktype, ex->e_socktype,
537                            WILD_SOCKTYPE(ex))) {
538                         continue;
539                 }
540                 if (!MATCH(pai->ai_protocol, ex->e_protocol,
541                            WILD_PROTOCOL(ex))) {
542                         continue;
543                 }
544
545 #ifdef AI_ADDRCONFIG
546                 /*
547                  * If AI_ADDRCONFIG is specified, check if we are
548                  * expected to return the address family or not.
549                  */
550                 if ((pai->ai_flags & AI_ADDRCONFIG) != 0 &&
551                     !addrconfig(pai->ai_family))
552                         continue;
553 #endif
554
555                 if (pai->ai_family == PF_UNSPEC)
556                         pai->ai_family = ex->e_af;
557                 if (pai->ai_socktype == ANY && ex->e_socktype != ANY)
558                         pai->ai_socktype = ex->e_socktype;
559                 if (pai->ai_protocol == ANY && ex->e_protocol != ANY)
560                         pai->ai_protocol = ex->e_protocol;
561
562                 /*
563                  * if the servname does not match socktype/protocol, ignore it.
564                  */
565                 if (get_portmatch(pai, servname) != 0)
566                         continue;
567
568                 if ((error = explore_copy(pai, afai, &cur->ai_next)) != 0) {
569                         freeaddrinfo(afai);
570                         goto free;
571                 }
572
573                 while (cur && cur->ai_next)
574                         cur = cur->ai_next;
575         }
576
577         freeaddrinfo(afai);     /* afai must not be NULL at this point. */
578
579         /* we must not have got any errors. */
580         if (error != 0) /* just for diagnosis */
581                 abort();
582
583         if (sentinel.ai_next) {
584 good:
585                 *res = sentinel.ai_next;
586                 return(SUCCESS);
587         } else {
588                 /*
589                  * All the process succeeded, but we've had an empty list. 
590                  * This can happen if the given hints do not match our
591                  * candidates.
592                  */
593                 error = EAI_NONAME;
594         }
595
596 free:
597 bad:
598         if (sentinel.ai_next)
599                 freeaddrinfo(sentinel.ai_next);
600         *res = NULL;
601         return(error);
602 }
603
604 /*
605  * FQDN hostname, DNS lookup
606  */
607 static int
608 explore_fqdn(pai, hostname, servname, res)
609         const struct addrinfo *pai;
610         const char *hostname;
611         const char *servname;
612         struct addrinfo **res;
613 {
614         struct addrinfo *result;
615         struct addrinfo *cur;
616         struct net_data *net_data = init();
617         struct irs_ho *ho;
618         int error = 0;
619         char tmp[NS_MAXDNAME];
620         const char *cp;
621
622         INSIST(res != NULL && *res == NULL);
623
624         /*
625          * if the servname does not match socktype/protocol, ignore it.
626          */
627         if (get_portmatch(pai, servname) != 0)
628                 return(0);
629
630         if (!net_data || !(ho = net_data->ho))
631                 return(0);
632 #if 0                           /* XXX (notyet) */
633         if (net_data->ho_stayopen && net_data->ho_last &&
634             net_data->ho_last->h_addrtype == af) {
635                 if (ns_samename(name, net_data->ho_last->h_name) == 1)
636                         return (net_data->ho_last);
637                 for (hap = net_data->ho_last->h_aliases; hap && *hap; hap++)
638                         if (ns_samename(name, *hap) == 1)
639                                 return (net_data->ho_last);
640         }
641 #endif
642         if (!strchr(hostname, '.') &&
643             (cp = res_hostalias(net_data->res, hostname,
644                                 tmp, sizeof(tmp))))
645                 hostname = cp;
646         result = (*ho->addrinfo)(ho, hostname, pai);
647         if (!net_data->ho_stayopen) {
648                 (*ho->minimize)(ho);
649         }
650         if (result == NULL) {
651                 int e = h_errno;
652
653                 switch(e) {
654                 case NETDB_INTERNAL:
655                         error = EAI_SYSTEM;
656                         break;
657                 case TRY_AGAIN:
658                         error = EAI_AGAIN;
659                         break;
660                 case NO_RECOVERY:
661                         error = EAI_FAIL;
662                         break;
663                 case HOST_NOT_FOUND:
664                 case NO_DATA:
665                         error = EAI_NONAME;
666                         break;
667                 default:
668                 case NETDB_SUCCESS: /* should be impossible... */
669                         error = EAI_NONAME;
670                         break;
671                 }
672                 goto free;
673         }
674
675         for (cur = result; cur; cur = cur->ai_next) {
676                 GET_PORT(cur, servname); /* XXX: redundant lookups... */
677                 /* canonname should already be filled. */
678         }
679
680         *res = result;
681
682         return(0);
683
684 free:
685         if (result)
686                 freeaddrinfo(result);
687         return error;
688 }
689
690 static int
691 explore_copy(pai, src0, res)
692         const struct addrinfo *pai;     /* seed */
693         const struct addrinfo *src0;    /* source */
694         struct addrinfo **res;
695 {
696         int error;
697         struct addrinfo sentinel, *cur;
698         const struct addrinfo *src;
699
700         error = 0;
701         sentinel.ai_next = NULL;
702         cur = &sentinel;
703
704         for (src = src0; src != NULL; src = src->ai_next) {
705                 if (src->ai_family != pai->ai_family)
706                         continue;
707
708                 cur->ai_next = copy_ai(src);
709                 if (!cur->ai_next) {
710                         error = EAI_MEMORY;
711                         goto fail;
712                 }
713
714                 cur->ai_next->ai_socktype = pai->ai_socktype;
715                 cur->ai_next->ai_protocol = pai->ai_protocol;
716                 cur = cur->ai_next;
717         }
718
719         *res = sentinel.ai_next;
720         return 0;
721
722 fail:
723         freeaddrinfo(sentinel.ai_next);
724         return error;
725 }
726
727 /*
728  * hostname == NULL.
729  * passive socket -> anyaddr (0.0.0.0 or ::)
730  * non-passive socket -> localhost (127.0.0.1 or ::1)
731  */
732 static int
733 explore_null(pai, servname, res)
734         const struct addrinfo *pai;
735         const char *servname;
736         struct addrinfo **res;
737 {
738         const struct afd *afd;
739         struct addrinfo *cur;
740         struct addrinfo sentinel;
741         int error;
742
743         *res = NULL;
744         sentinel.ai_next = NULL;
745         cur = &sentinel;
746
747         afd = find_afd(pai->ai_family);
748         if (afd == NULL)
749                 return 0;
750
751         if (pai->ai_flags & AI_PASSIVE) {
752                 GET_AI(cur->ai_next, afd, afd->a_addrany);
753                 /* xxx meaningless?
754                  * GET_CANONNAME(cur->ai_next, "anyaddr");
755                  */
756                 GET_PORT(cur->ai_next, servname);
757         } else {
758                 GET_AI(cur->ai_next, afd, afd->a_loopback);
759                 /* xxx meaningless?
760                  * GET_CANONNAME(cur->ai_next, "localhost");
761                  */
762                 GET_PORT(cur->ai_next, servname);
763         }
764         cur = cur->ai_next;
765
766         *res = sentinel.ai_next;
767         return 0;
768
769 free:
770         if (sentinel.ai_next)
771                 freeaddrinfo(sentinel.ai_next);
772         return error;
773 }
774
775 /*
776  * numeric hostname
777  */
778 static int
779 explore_numeric(pai, hostname, servname, res)
780         const struct addrinfo *pai;
781         const char *hostname;
782         const char *servname;
783         struct addrinfo **res;
784 {
785         const struct afd *afd;
786         struct addrinfo *cur;
787         struct addrinfo sentinel;
788         int error;
789         char pton[PTON_MAX];
790
791         *res = NULL;
792         sentinel.ai_next = NULL;
793         cur = &sentinel;
794
795         afd = find_afd(pai->ai_family);
796         if (afd == NULL)
797                 return 0;
798
799         switch (afd->a_af) {
800 #if 0 /*X/Open spec*/
801         case AF_INET:
802                 if (inet_aton(hostname, (struct in_addr *)pton) == 1) {
803                         if (pai->ai_family == afd->a_af ||
804                             pai->ai_family == PF_UNSPEC /*?*/) {
805                                 GET_AI(cur->ai_next, afd, pton);
806                                 GET_PORT(cur->ai_next, servname);
807                                 while (cur && cur->ai_next)
808                                         cur = cur->ai_next;
809                         } else
810                                 ERR(EAI_FAMILY);        /*xxx*/
811                 }
812                 break;
813 #endif
814         default:
815                 if (inet_pton(afd->a_af, hostname, pton) == 1) {
816                         if (pai->ai_family == afd->a_af ||
817                             pai->ai_family == PF_UNSPEC /*?*/) {
818                                 GET_AI(cur->ai_next, afd, pton);
819                                 GET_PORT(cur->ai_next, servname);
820                                 while (cur && cur->ai_next)
821                                         cur = cur->ai_next;
822                         } else
823                                 ERR(EAI_FAMILY);        /*xxx*/
824                 }
825                 break;
826         }
827
828         *res = sentinel.ai_next;
829         return 0;
830
831 free:
832 bad:
833         if (sentinel.ai_next)
834                 freeaddrinfo(sentinel.ai_next);
835         return error;
836 }
837
838 /*
839  * numeric hostname with scope
840  */
841 static int
842 explore_numeric_scope(pai, hostname, servname, res)
843         const struct addrinfo *pai;
844         const char *hostname;
845         const char *servname;
846         struct addrinfo **res;
847 {
848 #ifndef SCOPE_DELIMITER
849         return explore_numeric(pai, hostname, servname, res);
850 #else
851         const struct afd *afd;
852         struct addrinfo *cur;
853         int error;
854         char *cp, *hostname2 = NULL, *scope, *addr;
855         struct sockaddr_in6 *sin6;
856
857         afd = find_afd(pai->ai_family);
858         if (afd == NULL)
859                 return 0;
860
861         if (!afd->a_scoped)
862                 return explore_numeric(pai, hostname, servname, res);
863
864         cp = strchr(hostname, SCOPE_DELIMITER);
865         if (cp == NULL)
866                 return explore_numeric(pai, hostname, servname, res);
867
868         /*
869          * Handle special case of <scoped_address><delimiter><scope id>
870          */
871         hostname2 = strdup(hostname);
872         if (hostname2 == NULL)
873                 return EAI_MEMORY;
874         /* terminate at the delimiter */
875         hostname2[cp - hostname] = '\0';
876         addr = hostname2;
877         scope = cp + 1;
878
879         error = explore_numeric(pai, addr, servname, res);
880         if (error == 0) {
881                 u_int32_t scopeid = 0;
882
883                 for (cur = *res; cur; cur = cur->ai_next) {
884                         if (cur->ai_family != AF_INET6)
885                                 continue;
886                         sin6 = (struct sockaddr_in6 *)(void *)cur->ai_addr;
887                         if (!ip6_str2scopeid(scope, sin6, &scopeid)) {
888                                 free(hostname2);
889                                 return(EAI_NONAME); /* XXX: is return OK? */
890                         }
891 #ifdef HAVE_SIN6_SCOPE_ID
892                         sin6->sin6_scope_id = scopeid;
893 #endif
894                 }
895         }
896
897         free(hostname2);
898
899         return error;
900 #endif
901 }
902
903 static int
904 get_canonname(pai, ai, str)
905         const struct addrinfo *pai;
906         struct addrinfo *ai;
907         const char *str;
908 {
909         if ((pai->ai_flags & AI_CANONNAME) != 0) {
910                 ai->ai_canonname = (char *)malloc(strlen(str) + 1);
911                 if (ai->ai_canonname == NULL)
912                         return EAI_MEMORY;
913                 strcpy(ai->ai_canonname, str);
914         }
915         return 0;
916 }
917
918 static struct addrinfo *
919 get_ai(pai, afd, addr)
920         const struct addrinfo *pai;
921         const struct afd *afd;
922         const char *addr;
923 {
924         char *p;
925         struct addrinfo *ai;
926
927         ai = (struct addrinfo *)malloc(sizeof(struct addrinfo)
928                 + (afd->a_socklen));
929         if (ai == NULL)
930                 return NULL;
931
932         memcpy(ai, pai, sizeof(struct addrinfo));
933         ai->ai_addr = (struct sockaddr *)(void *)(ai + 1);
934         memset(ai->ai_addr, 0, (size_t)afd->a_socklen);
935 #ifdef HAVE_SA_LEN
936         ai->ai_addr->sa_len = afd->a_socklen;
937 #endif
938         ai->ai_addrlen = afd->a_socklen;
939         ai->ai_addr->sa_family = ai->ai_family = afd->a_af;
940         p = (char *)(void *)(ai->ai_addr);
941         memcpy(p + afd->a_off, addr, (size_t)afd->a_addrlen);
942         return ai;
943 }
944
945 /* XXX need to malloc() the same way we do from other functions! */
946 static struct addrinfo *
947 copy_ai(pai)
948         const struct addrinfo *pai;
949 {
950         struct addrinfo *ai;
951         size_t l;
952
953         l = sizeof(*ai) + pai->ai_addrlen;
954         if ((ai = (struct addrinfo *)malloc(l)) == NULL)
955                 return NULL;
956         memset(ai, 0, l);
957         memcpy(ai, pai, sizeof(*ai));
958         ai->ai_addr = (struct sockaddr *)(void *)(ai + 1);
959         memcpy(ai->ai_addr, pai->ai_addr, pai->ai_addrlen);
960
961         if (pai->ai_canonname) {
962                 l = strlen(pai->ai_canonname) + 1;
963                 if ((ai->ai_canonname = malloc(l)) == NULL) {
964                         free(ai);
965                         return NULL;
966                 }
967                 strcpy(ai->ai_canonname, pai->ai_canonname);    /* (checked) */
968         } else {
969                 /* just to make sure */
970                 ai->ai_canonname = NULL;
971         }
972
973         ai->ai_next = NULL;
974
975         return ai;
976 }
977
978 static int
979 get_portmatch(const struct addrinfo *ai, const char *servname) {
980
981         /* get_port does not touch first argument. when matchonly == 1. */
982         /* LINTED const cast */
983         return get_port((const struct addrinfo *)ai, servname, 1);
984 }
985
986 static int
987 get_port(const struct addrinfo *ai, const char *servname, int matchonly) {
988         const char *proto;
989         struct servent *sp;
990         int port;
991         int allownumeric;
992
993         if (servname == NULL)
994                 return 0;
995         switch (ai->ai_family) {
996         case AF_INET:
997 #ifdef AF_INET6
998         case AF_INET6:
999 #endif
1000                 break;
1001         default:
1002                 return 0;
1003         }
1004
1005         switch (ai->ai_socktype) {
1006         case SOCK_RAW:
1007                 return EAI_SERVICE;
1008         case SOCK_DGRAM:
1009         case SOCK_STREAM:
1010                 allownumeric = 1;
1011                 break;
1012         case ANY:
1013                 switch (ai->ai_family) {
1014                 case AF_INET:
1015 #ifdef AF_INET6
1016                 case AF_INET6:
1017 #endif
1018                         allownumeric = 1;
1019                         break;
1020                 default:
1021                         allownumeric = 0;
1022                         break;
1023                 }
1024                 break;
1025         default:
1026                 return EAI_SOCKTYPE;
1027         }
1028
1029         if (str_isnumber(servname)) {
1030                 if (!allownumeric)
1031                         return EAI_SERVICE;
1032                 port = atoi(servname);
1033                 if (port < 0 || port > 65535)
1034                         return EAI_SERVICE;
1035                 port = htons(port);
1036         } else {
1037                 switch (ai->ai_socktype) {
1038                 case SOCK_DGRAM:
1039                         proto = "udp";
1040                         break;
1041                 case SOCK_STREAM:
1042                         proto = "tcp";
1043                         break;
1044                 default:
1045                         proto = NULL;
1046                         break;
1047                 }
1048
1049                 if ((sp = getservbyname(servname, proto)) == NULL)
1050                         return EAI_SERVICE;
1051                 port = sp->s_port;
1052         }
1053
1054         if (!matchonly) {
1055                 switch (ai->ai_family) {
1056                 case AF_INET:
1057                         ((struct sockaddr_in *)(void *)
1058                             ai->ai_addr)->sin_port = port;
1059                         break;
1060                 case AF_INET6:
1061                         ((struct sockaddr_in6 *)(void *)
1062                             ai->ai_addr)->sin6_port = port;
1063                         break;
1064                 }
1065         }
1066
1067         return 0;
1068 }
1069
1070 static const struct afd *
1071 find_afd(af)
1072         int af;
1073 {
1074         const struct afd *afd;
1075
1076         if (af == PF_UNSPEC)
1077                 return NULL;
1078         for (afd = afdl; afd->a_af; afd++) {
1079                 if (afd->a_af == af)
1080                         return afd;
1081         }
1082         return NULL;
1083 }
1084
1085 /*
1086  * post-2553: AI_ADDRCONFIG check.  if we use getipnodeby* as backend, backend
1087  * will take care of it.
1088  * the semantics of AI_ADDRCONFIG is not defined well.  we are not sure
1089  * if the code is right or not.
1090  */
1091 static int
1092 addrconfig(af)
1093         int af;
1094 {
1095         int s;
1096
1097         /* XXX errno */
1098         s = socket(af, SOCK_DGRAM, 0);
1099         if (s < 0) {
1100                 if (errno != EMFILE)
1101                         return 0;
1102         } else
1103                 close(s);
1104         return 1;
1105 }
1106
1107 /* convert a string to a scope identifier. XXX: IPv6 specific */
1108 static int
1109 ip6_str2scopeid(char *scope, struct sockaddr_in6 *sin6,
1110                 u_int32_t *scopeidp)
1111 {
1112         u_int32_t scopeid;
1113         u_long lscopeid;
1114         struct in6_addr *a6 = &sin6->sin6_addr;
1115         char *ep;
1116         
1117         /* empty scopeid portion is invalid */
1118         if (*scope == '\0')
1119                 return (0);
1120
1121 #ifdef USE_IFNAMELINKID
1122         if (IN6_IS_ADDR_LINKLOCAL(a6) || IN6_IS_ADDR_MC_LINKLOCAL(a6) ||
1123             IN6_IS_ADDR_MC_NODELOCAL(a6)) {
1124                 /*
1125                  * Using interface names as link indices can be allowed
1126                  * only when we can assume a one-to-one mappings between
1127                  * links and interfaces.  See comments in getnameinfo.c.
1128                  */
1129                 scopeid = if_nametoindex(scope);
1130                 if (scopeid == 0)
1131                         goto trynumeric;
1132                 *scopeidp = scopeid;
1133                 return (1);
1134         }
1135 #endif
1136
1137         /* still unclear about literal, allow numeric only - placeholder */
1138         if (IN6_IS_ADDR_SITELOCAL(a6) || IN6_IS_ADDR_MC_SITELOCAL(a6))
1139                 goto trynumeric;
1140         if (IN6_IS_ADDR_MC_ORGLOCAL(a6))
1141                 goto trynumeric;
1142         else
1143                 goto trynumeric;        /* global */
1144
1145         /* try to convert to a numeric id as a last resort */
1146 trynumeric:
1147         errno = 0;
1148         lscopeid = strtoul(scope, &ep, 10);
1149         scopeid = lscopeid & 0xffffffff;
1150         if (errno == 0 && ep && *ep == '\0' && scopeid == lscopeid) {
1151                 *scopeidp = scopeid;
1152                 return (1);
1153         } else
1154                 return (0);
1155 }
1156
1157 struct addrinfo *
1158 hostent2addrinfo(hp, pai)
1159         struct hostent *hp;
1160         const struct addrinfo *pai;
1161 {
1162         int i, af, error = 0;
1163         char **aplist = NULL, *ap;
1164         struct addrinfo sentinel, *cur;
1165         const struct afd *afd;
1166
1167         af = hp->h_addrtype;
1168         if (pai->ai_family != AF_UNSPEC && af != pai->ai_family)
1169                 return(NULL);
1170
1171         afd = find_afd(af);
1172         if (afd == NULL)
1173                 return(NULL);
1174
1175         aplist = hp->h_addr_list;
1176
1177         memset(&sentinel, 0, sizeof(sentinel));
1178         cur = &sentinel;
1179
1180         for (i = 0; (ap = aplist[i]) != NULL; i++) {
1181 #if 0                           /* the trick seems too much */
1182                 af = hp->h_addr_list;
1183                 if (af == AF_INET6 &&
1184                     IN6_IS_ADDR_V4MAPPED((struct in6_addr *)ap)) {
1185                         af = AF_INET;
1186                         ap = ap + sizeof(struct in6_addr)
1187                                 - sizeof(struct in_addr);
1188                 }
1189                 afd = find_afd(af);
1190                 if (afd == NULL)
1191                         continue;
1192 #endif /* 0 */
1193
1194                 GET_AI(cur->ai_next, afd, ap);
1195
1196                 /* GET_PORT(cur->ai_next, servname); */
1197                 if ((pai->ai_flags & AI_CANONNAME) != 0) {
1198                         /*
1199                          * RFC2553 says that ai_canonname will be set only for
1200                          * the first element.  we do it for all the elements,
1201                          * just for convenience.
1202                          */
1203                         GET_CANONNAME(cur->ai_next, hp->h_name);
1204                 }
1205                 while (cur && cur->ai_next) /* no need to loop, actually. */
1206                         cur = cur->ai_next;
1207                 continue;
1208
1209         free:
1210                 if (cur->ai_next)
1211                         freeaddrinfo(cur->ai_next);
1212                 cur->ai_next = NULL;
1213                 /* continue, without tht pointer CUR advanced. */
1214         }
1215
1216         return(sentinel.ai_next);
1217 }
1218
1219 struct addrinfo *
1220 addr2addrinfo(pai, cp)
1221         const struct addrinfo *pai;
1222         const char *cp;
1223 {
1224         const struct afd *afd;
1225
1226         afd = find_afd(pai->ai_family);
1227         if (afd == NULL)
1228                 return(NULL);
1229
1230         return(get_ai(pai, afd, cp));
1231 }
1232
1233 static struct net_data *
1234 init()
1235 {
1236         struct net_data *net_data;
1237
1238         if (!(net_data = net_data_init(NULL)))
1239                 goto error;
1240         if (!net_data->ho) {
1241                 net_data->ho = (*net_data->irs->ho_map)(net_data->irs);
1242                 if (!net_data->ho || !net_data->res) {
1243 error:
1244                         errno = EIO;
1245                         if (net_data && net_data->res)
1246                                 RES_SET_H_ERRNO(net_data->res, NETDB_INTERNAL);
1247                         return (NULL);
1248                 }
1249
1250                 (*net_data->ho->res_set)(net_data->ho, net_data->res, NULL);
1251         }
1252
1253         return (net_data);
1254 }