Home | History | Annotate | Line # | Download | only in net
getaddrinfo.c revision 1.14
      1  1.14  itojun /*	$NetBSD: getaddrinfo.c,v 1.14 1999/12/13 14:18:32 itojun Exp $	*/
      2   1.6  itojun 
      3   1.1  itojun /*
      4   1.1  itojun  * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
      5   1.1  itojun  * All rights reserved.
      6   1.1  itojun  *
      7   1.1  itojun  * Redistribution and use in source and binary forms, with or without
      8   1.1  itojun  * modification, are permitted provided that the following conditions
      9   1.1  itojun  * are met:
     10   1.1  itojun  * 1. Redistributions of source code must retain the above copyright
     11   1.1  itojun  *    notice, this list of conditions and the following disclaimer.
     12   1.1  itojun  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1  itojun  *    notice, this list of conditions and the following disclaimer in the
     14   1.1  itojun  *    documentation and/or other materials provided with the distribution.
     15   1.1  itojun  * 3. Neither the name of the project nor the names of its contributors
     16   1.1  itojun  *    may be used to endorse or promote products derived from this software
     17   1.1  itojun  *    without specific prior written permission.
     18   1.1  itojun  *
     19   1.1  itojun  * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
     20   1.1  itojun  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21   1.1  itojun  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22   1.1  itojun  * ARE DISCLAIMED.  IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
     23   1.1  itojun  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.1  itojun  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25   1.1  itojun  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.1  itojun  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.1  itojun  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.1  itojun  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.1  itojun  * SUCH DAMAGE.
     30   1.1  itojun  */
     31   1.1  itojun 
     32   1.1  itojun /*
     33   1.1  itojun  * "#ifdef FAITH" part is local hack for supporting IPv4-v6 translator.
     34   1.1  itojun  *
     35   1.1  itojun  * Issues to be discussed:
     36   1.1  itojun  * - Thread safe-ness must be checked.
     37   1.1  itojun  * - Return values.  There are nonstandard return values defined and used
     38  1.14  itojun  *   in the source code.  This is because RFC2553 is silent about which error
     39   1.1  itojun  *   code must be returned for which situation.
     40  1.14  itojun  * Note:
     41  1.14  itojun  * - We use getipnodebyname() just for thread-safeness.  There's no intent
     42  1.14  itojun  *   to let it do PF_UNSPEC (actually we never pass PF_UNSPEC to
     43  1.14  itojun  *   getipnodebyname().
     44  1.14  itojun  * - The code filters out AFs that are not supported by the kernel,
     45  1.14  itojun  *   when resolving FQDNs and globbing NULL hostname.  Is it the right
     46  1.14  itojun  *   thing to do?  What is the relationship with post-RFC2553 AI_ADDRCONFIG
     47  1.14  itojun  *   in ai_flags?
     48   1.1  itojun  */
     49   1.1  itojun 
     50  1.14  itojun #if 0
     51  1.14  itojun #ifdef HAVE_CONFIG_H
     52  1.14  itojun #include "config.h"
     53  1.14  itojun #endif
     54  1.14  itojun #endif
     55  1.14  itojun 
     56  1.14  itojun #include <sys/types.h>
     57   1.1  itojun #include <sys/param.h>
     58  1.14  itojun #if 0
     59   1.1  itojun #include <sys/sysctl.h>
     60  1.14  itojun #endif
     61   1.1  itojun #include <sys/socket.h>
     62  1.14  itojun #include <net/if.h>
     63   1.1  itojun #include <netinet/in.h>
     64   1.1  itojun #include <arpa/inet.h>
     65   1.1  itojun #include <arpa/nameser.h>
     66   1.1  itojun #include <netdb.h>
     67   1.1  itojun #include <resolv.h>
     68  1.14  itojun #include <string.h>
     69  1.14  itojun #include <stdlib.h>
     70  1.12   lukem #include <stddef.h>
     71  1.14  itojun #include <ctype.h>
     72   1.1  itojun #include <unistd.h>
     73  1.14  itojun #include <stdio.h>
     74  1.14  itojun #include <errno.h>
     75  1.14  itojun 
     76  1.14  itojun #if 0
     77  1.14  itojun #ifndef HAVE_PORTABLE_PROTOTYPE
     78  1.14  itojun #include "cdecl_ext.h"
     79  1.14  itojun #endif
     80  1.14  itojun 
     81  1.14  itojun #ifndef HAVE_U_INT32_T
     82  1.14  itojun #include "bittypes.h"
     83  1.14  itojun #endif
     84  1.14  itojun 
     85  1.14  itojun #ifndef HAVE_SOCKADDR_STORAGE
     86  1.14  itojun #include "sockstorage.h"
     87  1.14  itojun #endif
     88  1.14  itojun 
     89  1.14  itojun #ifndef HAVE_ADDRINFO
     90  1.14  itojun #include "addrinfo.h"
     91  1.14  itojun #endif
     92   1.1  itojun 
     93   1.1  itojun #if defined(__KAME__) && defined(INET6)
     94   1.1  itojun # define FAITH
     95   1.1  itojun #endif
     96   1.1  itojun #endif
     97   1.1  itojun 
     98   1.1  itojun #define SUCCESS 0
     99   1.1  itojun #define ANY 0
    100   1.1  itojun #define YES 1
    101   1.1  itojun #define NO  0
    102   1.1  itojun 
    103   1.1  itojun #ifdef FAITH
    104   1.1  itojun static int translate = NO;
    105   1.1  itojun static struct in6_addr faith_prefix = IN6ADDR_ANY_INIT;
    106   1.1  itojun #endif
    107   1.1  itojun 
    108   1.1  itojun static const char in_addrany[] = { 0, 0, 0, 0 };
    109   1.1  itojun static const char in6_addrany[] = {
    110   1.1  itojun 	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
    111   1.1  itojun };
    112   1.1  itojun static const char in_loopback[] = { 127, 0, 0, 1 };
    113   1.1  itojun static const char in6_loopback[] = {
    114   1.1  itojun 	0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1
    115   1.1  itojun };
    116   1.1  itojun 
    117   1.1  itojun struct sockinet {
    118   1.1  itojun 	u_char	si_len;
    119   1.1  itojun 	u_char	si_family;
    120   1.1  itojun 	u_short	si_port;
    121  1.14  itojun 	u_int32_t si_scope_id;
    122   1.1  itojun };
    123   1.1  itojun 
    124  1.14  itojun static const struct afd {
    125   1.1  itojun 	int a_af;
    126   1.1  itojun 	int a_addrlen;
    127   1.1  itojun 	int a_socklen;
    128   1.1  itojun 	int a_off;
    129   1.1  itojun 	const char *a_addrany;
    130   1.1  itojun 	const char *a_loopback;
    131  1.14  itojun 	int a_scoped;
    132   1.1  itojun } afdl [] = {
    133   1.1  itojun #ifdef INET6
    134   1.1  itojun 	{PF_INET6, sizeof(struct in6_addr),
    135   1.1  itojun 	 sizeof(struct sockaddr_in6),
    136   1.1  itojun 	 offsetof(struct sockaddr_in6, sin6_addr),
    137  1.14  itojun 	 in6_addrany, in6_loopback, 1},
    138   1.1  itojun #endif
    139   1.1  itojun 	{PF_INET, sizeof(struct in_addr),
    140   1.1  itojun 	 sizeof(struct sockaddr_in),
    141   1.1  itojun 	 offsetof(struct sockaddr_in, sin_addr),
    142  1.14  itojun 	 in_addrany, in_loopback, 0},
    143  1.14  itojun 	{0, 0, 0, 0, NULL, NULL, 0},
    144  1.14  itojun };
    145  1.14  itojun 
    146  1.14  itojun struct explore {
    147  1.14  itojun 	int e_af;
    148  1.14  itojun 	int e_socktype;
    149  1.14  itojun 	int e_protocol;
    150  1.14  itojun 	const char *e_protostr;
    151  1.14  itojun 	int e_wild;
    152  1.14  itojun #define WILD_AF(ex)		((ex)->e_wild & 0x01)
    153  1.14  itojun #define WILD_SOCKTYPE(ex)	((ex)->e_wild & 0x02)
    154  1.14  itojun #define WILD_PROTOCOL(ex)	((ex)->e_wild & 0x04)
    155  1.14  itojun };
    156  1.14  itojun 
    157  1.14  itojun static const struct explore explore[] = {
    158  1.14  itojun #if 0
    159  1.14  itojun 	{ PF_LOCAL, 0, ANY, ANY, NULL, 0x01 },
    160  1.14  itojun #endif
    161  1.14  itojun #ifdef INET6
    162  1.14  itojun 	{ PF_INET6, SOCK_DGRAM, IPPROTO_UDP, "udp", 0x07 },
    163  1.14  itojun 	{ PF_INET6, SOCK_STREAM, IPPROTO_TCP, "tcp", 0x07 },
    164  1.14  itojun 	{ PF_INET6, SOCK_RAW, ANY, NULL, 0x05 },
    165  1.14  itojun #endif
    166  1.14  itojun 	{ PF_INET, SOCK_DGRAM, IPPROTO_UDP, "udp", 0x07 },
    167  1.14  itojun 	{ PF_INET, SOCK_STREAM, IPPROTO_TCP, "tcp", 0x07 },
    168  1.14  itojun 	{ PF_INET, SOCK_RAW, ANY, NULL, 0x05 },
    169  1.14  itojun 	{ -1, 0, 0, NULL, 0 },
    170   1.1  itojun };
    171   1.1  itojun 
    172   1.1  itojun #ifdef INET6
    173   1.1  itojun #define PTON_MAX	16
    174   1.1  itojun #else
    175   1.1  itojun #define PTON_MAX	4
    176   1.1  itojun #endif
    177   1.1  itojun 
    178   1.1  itojun 
    179   1.1  itojun static int str_isnumber __P((const char *));
    180  1.14  itojun static int explore_fqdn __P((const struct addrinfo *, const char *,
    181  1.14  itojun 	const char *, struct addrinfo **));
    182  1.14  itojun static int explore_null __P((const struct addrinfo *, const char *,
    183  1.14  itojun 	const char *, struct addrinfo **));
    184  1.14  itojun static int explore_numeric __P((const struct addrinfo *, const char *,
    185  1.14  itojun 	const char *, struct addrinfo **));
    186  1.14  itojun static int explore_numeric_scope __P((const struct addrinfo *, const char *,
    187  1.14  itojun 	const char *, struct addrinfo **));
    188  1.14  itojun static int get_name __P((const char *, const struct afd *, struct addrinfo **,
    189  1.14  itojun 	char *, const struct addrinfo *, const char *));
    190  1.14  itojun static int get_canonname __P((const struct addrinfo *,
    191  1.14  itojun 	struct addrinfo *, const char *));
    192  1.14  itojun static struct addrinfo *get_ai __P((const struct addrinfo *,
    193  1.14  itojun 	const struct afd *, const char *));
    194  1.14  itojun static int get_portmatch __P((const struct addrinfo *, const char *));
    195  1.14  itojun static int get_port __P((struct addrinfo *, const char *, int));
    196  1.14  itojun static const struct afd *find_afd __P((int));
    197  1.14  itojun 
    198   1.1  itojun static char *ai_errlist[] = {
    199   1.7   lukem 	"Success",
    200   1.7   lukem 	"Address family for hostname not supported",	/* EAI_ADDRFAMILY */
    201   1.7   lukem 	"Temporary failure in name resolution",		/* EAI_AGAIN      */
    202   1.7   lukem 	"Invalid value for ai_flags",		       	/* EAI_BADFLAGS   */
    203   1.7   lukem 	"Non-recoverable failure in name resolution", 	/* EAI_FAIL       */
    204   1.2   lukem 	"ai_family not supported",			/* EAI_FAMILY     */
    205   1.7   lukem 	"Memory allocation failure", 			/* EAI_MEMORY     */
    206   1.7   lukem 	"No address associated with hostname", 		/* EAI_NODATA     */
    207  1.14  itojun 	"hostname nor servname provided, or not known",	/* EAI_NONAME     */
    208   1.2   lukem 	"servname not supported for ai_socktype",	/* EAI_SERVICE    */
    209   1.2   lukem 	"ai_socktype not supported", 			/* EAI_SOCKTYPE   */
    210   1.7   lukem 	"System error returned in errno", 		/* EAI_SYSTEM     */
    211   1.7   lukem 	"Invalid value for hints",			/* EAI_BADHINTS	  */
    212   1.7   lukem 	"Resolved protocol is unknown",			/* EAI_PROTOCOL   */
    213   1.7   lukem 	"Unknown error", 				/* EAI_MAX        */
    214   1.1  itojun };
    215   1.1  itojun 
    216  1.14  itojun /* XXX macros that make external reference is BAD. */
    217  1.14  itojun 
    218  1.14  itojun #define GET_AI(ai, afd, addr) \
    219  1.14  itojun do { \
    220  1.14  itojun 	/* external reference: pai, error, and label free */ \
    221  1.14  itojun 	(ai) = get_ai(pai, (afd), (addr)); \
    222  1.14  itojun 	if ((ai) == NULL) { \
    223  1.14  itojun 		error = EAI_MEMORY; \
    224  1.14  itojun 		goto free; \
    225  1.14  itojun 	} \
    226  1.14  itojun } while (0)
    227  1.14  itojun 
    228  1.14  itojun #define GET_PORT(ai, serv) \
    229  1.14  itojun do { \
    230  1.14  itojun 	/* external reference: error and label free */ \
    231  1.14  itojun 	error = get_port((ai), (serv), 0); \
    232  1.14  itojun 	if (error != 0) \
    233  1.14  itojun 		goto free; \
    234  1.14  itojun } while (0)
    235  1.14  itojun 
    236   1.1  itojun #define GET_CANONNAME(ai, str) \
    237  1.14  itojun do { \
    238  1.14  itojun 	/* external reference: pai, error and label free */ \
    239  1.14  itojun 	error = get_canonname(pai, (ai), (str)); \
    240  1.14  itojun 	if (error != 0) \
    241  1.14  itojun 		goto free; \
    242  1.14  itojun } while (0)
    243  1.14  itojun 
    244  1.14  itojun #define ERR(err) \
    245  1.14  itojun do { \
    246  1.14  itojun 	/* external reference: error, and label bad */ \
    247  1.14  itojun 	error = (err); \
    248  1.14  itojun 	goto bad; \
    249  1.14  itojun } while (0)
    250  1.14  itojun 
    251  1.14  itojun #define MATCH_FAMILY(x, y, w) \
    252  1.14  itojun 	((x) == (y) || ((w) && ((x) == PF_UNSPEC || (y) == PF_UNSPEC)))
    253  1.14  itojun #define MATCH(x, y, w) \
    254  1.14  itojun 	((x) == (y) || ((w) && ((x) == ANY || (y) == ANY)))
    255   1.1  itojun 
    256   1.1  itojun char *
    257   1.1  itojun gai_strerror(ecode)
    258   1.1  itojun 	int ecode;
    259   1.1  itojun {
    260   1.1  itojun 	if (ecode < 0 || ecode > EAI_MAX)
    261   1.1  itojun 		ecode = EAI_MAX;
    262   1.1  itojun 	return ai_errlist[ecode];
    263   1.1  itojun }
    264   1.1  itojun 
    265   1.1  itojun void
    266   1.1  itojun freeaddrinfo(ai)
    267   1.1  itojun 	struct addrinfo *ai;
    268   1.1  itojun {
    269   1.1  itojun 	struct addrinfo *next;
    270   1.1  itojun 
    271   1.1  itojun 	do {
    272   1.1  itojun 		next = ai->ai_next;
    273   1.1  itojun 		if (ai->ai_canonname)
    274   1.1  itojun 			free(ai->ai_canonname);
    275   1.1  itojun 		/* no need to free(ai->ai_addr) */
    276   1.1  itojun 		free(ai);
    277   1.1  itojun 	} while ((ai = next) != NULL);
    278   1.1  itojun }
    279   1.1  itojun 
    280   1.1  itojun static int
    281   1.1  itojun str_isnumber(p)
    282   1.1  itojun 	const char *p;
    283   1.1  itojun {
    284   1.1  itojun 	char *q = (char *)p;
    285   1.1  itojun 	while (*q) {
    286   1.1  itojun 		if (! isdigit(*q))
    287   1.1  itojun 			return NO;
    288   1.1  itojun 		q++;
    289   1.1  itojun 	}
    290   1.1  itojun 	return YES;
    291   1.1  itojun }
    292   1.1  itojun 
    293   1.1  itojun int
    294   1.1  itojun getaddrinfo(hostname, servname, hints, res)
    295   1.1  itojun 	const char *hostname, *servname;
    296   1.1  itojun 	const struct addrinfo *hints;
    297   1.1  itojun 	struct addrinfo **res;
    298   1.1  itojun {
    299   1.1  itojun 	struct addrinfo sentinel;
    300   1.1  itojun 	struct addrinfo *cur;
    301  1.14  itojun 	int error = 0;
    302   1.1  itojun 	struct addrinfo ai;
    303  1.14  itojun 	struct addrinfo ai0;
    304   1.1  itojun 	struct addrinfo *pai;
    305  1.14  itojun 	const struct afd *afd;
    306  1.14  itojun 	const struct explore *ex;
    307   1.1  itojun 
    308   1.1  itojun #ifdef FAITH
    309   1.1  itojun 	static int firsttime = 1;
    310   1.1  itojun 
    311   1.1  itojun 	if (firsttime) {
    312   1.1  itojun 		/* translator hack */
    313  1.14  itojun 		char *q = getenv("GAI");
    314  1.14  itojun 		if (q && inet_pton(AF_INET6, q, &faith_prefix) == 1)
    315  1.14  itojun 			translate = YES;
    316   1.1  itojun 		firsttime = 0;
    317   1.1  itojun 	}
    318   1.1  itojun #endif
    319   1.1  itojun 
    320   1.1  itojun 	sentinel.ai_next = NULL;
    321   1.1  itojun 	cur = &sentinel;
    322   1.1  itojun 	pai = &ai;
    323   1.1  itojun 	pai->ai_flags = 0;
    324   1.1  itojun 	pai->ai_family = PF_UNSPEC;
    325   1.1  itojun 	pai->ai_socktype = ANY;
    326   1.1  itojun 	pai->ai_protocol = ANY;
    327   1.1  itojun 	pai->ai_addrlen = 0;
    328   1.1  itojun 	pai->ai_canonname = NULL;
    329   1.1  itojun 	pai->ai_addr = NULL;
    330   1.1  itojun 	pai->ai_next = NULL;
    331   1.1  itojun 
    332   1.1  itojun 	if (hostname == NULL && servname == NULL)
    333   1.1  itojun 		return EAI_NONAME;
    334   1.1  itojun 	if (hints) {
    335   1.1  itojun 		/* error check for hints */
    336   1.1  itojun 		if (hints->ai_addrlen || hints->ai_canonname ||
    337   1.1  itojun 		    hints->ai_addr || hints->ai_next)
    338   1.1  itojun 			ERR(EAI_BADHINTS); /* xxx */
    339   1.1  itojun 		if (hints->ai_flags & ~AI_MASK)
    340   1.1  itojun 			ERR(EAI_BADFLAGS);
    341   1.1  itojun 		switch (hints->ai_family) {
    342   1.1  itojun 		case PF_UNSPEC:
    343   1.1  itojun 		case PF_INET:
    344   1.1  itojun #ifdef INET6
    345   1.1  itojun 		case PF_INET6:
    346   1.1  itojun #endif
    347   1.1  itojun 			break;
    348   1.1  itojun 		default:
    349   1.1  itojun 			ERR(EAI_FAMILY);
    350   1.1  itojun 		}
    351   1.1  itojun 		memcpy(pai, hints, sizeof(*pai));
    352  1.14  itojun 
    353  1.14  itojun 		/*
    354  1.14  itojun 		 * if both socktype/protocol are specified, check if they
    355  1.14  itojun 		 * are meaningful combination.
    356  1.14  itojun 		 */
    357  1.14  itojun 		if (pai->ai_socktype != ANY && pai->ai_protocol != ANY) {
    358  1.14  itojun 			for (ex = explore; ex->e_af >= 0; ex++) {
    359  1.14  itojun 				if (pai->ai_family != ex->e_af)
    360  1.14  itojun 					continue;
    361  1.14  itojun 				if (ex->e_socktype == ANY)
    362  1.14  itojun 					continue;
    363  1.14  itojun 				if (ex->e_protocol == ANY)
    364  1.14  itojun 					continue;
    365  1.14  itojun 				if (pai->ai_socktype == ex->e_socktype
    366  1.14  itojun 				 && pai->ai_protocol != ex->e_protocol) {
    367  1.14  itojun 					ERR(EAI_BADHINTS);
    368  1.14  itojun 				}
    369   1.1  itojun 			}
    370   1.1  itojun 		}
    371   1.1  itojun 	}
    372   1.1  itojun 
    373   1.1  itojun 	/*
    374  1.14  itojun 	 * check for special cases.  (1) numeric servname is disallowed if
    375  1.14  itojun 	 * socktype/protocol are left unspecified. (2) servname is disallowed
    376  1.14  itojun 	 * for raw and other inet{,6} sockets.
    377   1.1  itojun 	 */
    378  1.14  itojun 	if (MATCH_FAMILY(pai->ai_family, PF_INET, 1)
    379  1.14  itojun 	 || MATCH_FAMILY(pai->ai_family, PF_INET6, 1)) {
    380  1.14  itojun 		ai0 = *pai;
    381  1.14  itojun 
    382  1.14  itojun 		if (pai->ai_family == PF_UNSPEC)
    383  1.14  itojun 			pai->ai_family = PF_INET6;
    384  1.14  itojun 		error = get_portmatch(pai, servname);
    385  1.14  itojun 		if (error)
    386  1.14  itojun 			ERR(error);
    387  1.14  itojun 
    388  1.14  itojun 		*pai = ai0;
    389  1.14  itojun 	}
    390  1.14  itojun 
    391  1.14  itojun 	ai0 = *pai;
    392  1.14  itojun 
    393  1.14  itojun 	/* NULL hostname, or numeric hostname */
    394  1.14  itojun 	for (ex = explore; ex->e_af >= 0; ex++) {
    395  1.14  itojun 		*pai = ai0;
    396  1.14  itojun 
    397  1.14  itojun 		if (!MATCH_FAMILY(pai->ai_family, ex->e_af, WILD_AF(ex)))
    398  1.14  itojun 			continue;
    399  1.14  itojun 		if (!MATCH(pai->ai_socktype, ex->e_socktype, WILD_SOCKTYPE(ex)))
    400  1.14  itojun 			continue;
    401  1.14  itojun 		if (!MATCH(pai->ai_protocol, ex->e_protocol, WILD_PROTOCOL(ex)))
    402  1.14  itojun 			continue;
    403  1.14  itojun 
    404  1.14  itojun 		if (pai->ai_family == PF_UNSPEC)
    405  1.14  itojun 			pai->ai_family = ex->e_af;
    406  1.14  itojun 		if (pai->ai_socktype == ANY && ex->e_socktype != ANY)
    407  1.14  itojun 			pai->ai_socktype = ex->e_socktype;
    408  1.14  itojun 		if (pai->ai_protocol == ANY && ex->e_protocol != ANY)
    409  1.14  itojun 			pai->ai_protocol = ex->e_protocol;
    410  1.14  itojun 
    411  1.14  itojun 		if (hostname == NULL)
    412  1.14  itojun 			error = explore_null(pai, hostname, servname, &cur->ai_next);
    413  1.14  itojun 		else
    414  1.14  itojun 			error = explore_numeric_scope(pai, hostname, servname, &cur->ai_next);
    415  1.14  itojun 
    416  1.14  itojun 		if (error)
    417  1.14  itojun 			goto free;
    418  1.14  itojun 
    419  1.14  itojun 		while (cur && cur->ai_next)
    420  1.14  itojun 			cur = cur->ai_next;
    421  1.14  itojun 	}
    422  1.14  itojun 
    423  1.14  itojun 	/*
    424  1.14  itojun 	 * XXX
    425  1.14  itojun 	 * If numreic representation of AF1 can be interpreted as FQDN
    426  1.14  itojun 	 * representation of AF2, we need to think again about the code below.
    427  1.14  itojun 	 */
    428  1.14  itojun 	if (sentinel.ai_next)
    429  1.14  itojun 		goto good;
    430  1.14  itojun 
    431  1.14  itojun 	if (pai->ai_flags & AI_NUMERICHOST)
    432  1.14  itojun 		ERR(EAI_NONAME);
    433  1.14  itojun 	if (hostname == NULL)
    434  1.14  itojun 		ERR(EAI_NONAME);
    435  1.14  itojun 
    436  1.14  itojun 	/*
    437  1.14  itojun 	 * hostname as alphabetical name.
    438  1.14  itojun 	 * we would like to prefer AF_INET6 than AF_INET, so we'll make a
    439  1.14  itojun 	 * outer loop by AFs.
    440  1.14  itojun 	 */
    441  1.14  itojun 	for (afd = afdl; afd->a_af; afd++) {
    442  1.14  itojun 		*pai = ai0;
    443  1.14  itojun 
    444  1.14  itojun 		if (!MATCH_FAMILY(pai->ai_family, afd->a_af, 1))
    445  1.14  itojun 			continue;
    446  1.14  itojun 
    447  1.14  itojun 		for (ex = explore; ex->e_af >= 0; ex++) {
    448  1.14  itojun 			*pai = ai0;
    449  1.14  itojun 
    450  1.14  itojun 			if (pai->ai_family == PF_UNSPEC)
    451  1.14  itojun 				pai->ai_family = afd->a_af;
    452   1.1  itojun 
    453  1.14  itojun 			if (!MATCH_FAMILY(pai->ai_family, ex->e_af, WILD_AF(ex)))
    454  1.14  itojun 				continue;
    455  1.14  itojun 			if (!MATCH(pai->ai_socktype, ex->e_socktype,
    456  1.14  itojun 					WILD_SOCKTYPE(ex))) {
    457  1.14  itojun 				continue;
    458   1.1  itojun 			}
    459  1.14  itojun 			if (!MATCH(pai->ai_protocol, ex->e_protocol,
    460  1.14  itojun 					WILD_PROTOCOL(ex))) {
    461  1.14  itojun 				continue;
    462   1.1  itojun 			}
    463  1.14  itojun 
    464  1.14  itojun 			if (pai->ai_family == PF_UNSPEC)
    465  1.14  itojun 				pai->ai_family = ex->e_af;
    466  1.14  itojun 			if (pai->ai_socktype == ANY && ex->e_socktype != ANY)
    467  1.14  itojun 				pai->ai_socktype = ex->e_socktype;
    468  1.14  itojun 			if (pai->ai_protocol == ANY && ex->e_protocol != ANY)
    469  1.14  itojun 				pai->ai_protocol = ex->e_protocol;
    470  1.14  itojun 
    471  1.14  itojun 			error = explore_fqdn(pai, hostname, servname,
    472  1.14  itojun 				&cur->ai_next);
    473  1.14  itojun 
    474  1.14  itojun 			while (cur && cur->ai_next)
    475  1.14  itojun 				cur = cur->ai_next;
    476   1.1  itojun 		}
    477   1.1  itojun 	}
    478  1.14  itojun 
    479  1.14  itojun 	/* XXX */
    480  1.14  itojun 	if (sentinel.ai_next)
    481  1.14  itojun 		error = 0;
    482  1.14  itojun 
    483  1.14  itojun 	if (error)
    484  1.14  itojun 		goto free;
    485  1.14  itojun 	if (error == 0) {
    486  1.14  itojun 		if (sentinel.ai_next) {
    487  1.14  itojun  good:
    488  1.14  itojun 			*res = sentinel.ai_next;
    489  1.14  itojun 			return SUCCESS;
    490  1.14  itojun 		} else
    491  1.14  itojun 			error = EAI_FAIL;
    492  1.14  itojun 	}
    493  1.14  itojun  free:
    494  1.14  itojun  bad:
    495  1.14  itojun 	if (sentinel.ai_next)
    496  1.14  itojun 		freeaddrinfo(sentinel.ai_next);
    497  1.14  itojun 	*res = NULL;
    498  1.14  itojun 	return error;
    499  1.14  itojun }
    500  1.14  itojun 
    501  1.14  itojun /*
    502  1.14  itojun  * FQDN hostname, DNS lookup
    503  1.14  itojun  */
    504  1.14  itojun static int
    505  1.14  itojun explore_fqdn(pai, hostname, servname, res)
    506  1.14  itojun 	const struct addrinfo *pai;
    507  1.14  itojun 	const char *hostname;
    508  1.14  itojun 	const char *servname;
    509  1.14  itojun 	struct addrinfo **res;
    510  1.14  itojun {
    511  1.14  itojun 	int s;
    512  1.14  itojun 	struct hostent *hp;
    513  1.14  itojun 	int h_error;
    514  1.14  itojun 	int af;
    515  1.14  itojun 	char *ap;
    516  1.14  itojun 	struct addrinfo sentinel, *cur;
    517  1.14  itojun 	int i;
    518  1.14  itojun 	const struct afd *afd;
    519  1.14  itojun 	int error;
    520  1.14  itojun 
    521  1.14  itojun 	*res = NULL;
    522  1.14  itojun 	sentinel.ai_next = NULL;
    523  1.14  itojun 	cur = &sentinel;
    524  1.14  itojun 
    525  1.14  itojun 	/*
    526  1.14  itojun 	 * filter out AFs that are not supported by the kernel
    527  1.14  itojun 	 * XXX errno?
    528  1.14  itojun 	 */
    529  1.14  itojun 	s = socket(pai->ai_family, SOCK_DGRAM, 0);
    530  1.14  itojun 	if (s < 0) {
    531  1.14  itojun 		if (errno != EMFILE)
    532  1.14  itojun 			return 0;
    533  1.14  itojun 	} else
    534  1.14  itojun 		close(s);
    535  1.14  itojun 
    536  1.14  itojun 	/*
    537  1.14  itojun 	 * if the servname does not match socktype/protocol, ignore it.
    538  1.14  itojun 	 */
    539  1.14  itojun 	if (get_portmatch(pai, servname) != 0)
    540  1.14  itojun 		return 0;
    541  1.14  itojun 
    542  1.14  itojun 	afd = find_afd(pai->ai_family);
    543  1.14  itojun 
    544   1.1  itojun 	/*
    545  1.14  itojun 	 * post-RFC2553: should look at (pai->ai_flags & AI_ADDRCONFIG)
    546  1.14  itojun 	 * rather than hardcoding it.  we may need to add AI_ADDRCONFIG
    547  1.14  itojun 	 * handling code by ourselves in case we don't have getipnodebyname().
    548  1.14  itojun 	 */
    549  1.14  itojun #ifdef USE_GETIPNODEBY
    550  1.14  itojun 	hp = getipnodebyname(hostname, pai->ai_family, AI_ADDRCONFIG, &h_error);
    551  1.14  itojun #else
    552  1.14  itojun 	hp = gethostbyname2(hostname, pai->ai_family);
    553  1.14  itojun 	h_error = h_errno;
    554  1.14  itojun #endif
    555  1.14  itojun 
    556  1.14  itojun 	if (hp == NULL) {
    557  1.14  itojun 		switch (h_error) {
    558  1.14  itojun 		case HOST_NOT_FOUND:
    559  1.14  itojun 		case NO_DATA:
    560  1.14  itojun 			error = EAI_NODATA;
    561  1.14  itojun 			break;
    562  1.14  itojun 		case TRY_AGAIN:
    563  1.14  itojun 			error = EAI_AGAIN;
    564  1.14  itojun 			break;
    565  1.14  itojun 		case NO_RECOVERY:
    566  1.14  itojun 		case NETDB_INTERNAL:
    567  1.14  itojun 		default:
    568  1.14  itojun 			error = EAI_FAIL;
    569  1.14  itojun 			break;
    570  1.14  itojun 		}
    571  1.14  itojun 	} else if ((hp->h_name == NULL) || (hp->h_name[0] == 0)
    572  1.14  itojun 			|| (hp->h_addr_list[0] == NULL)) {
    573  1.14  itojun #ifdef USE_GETIPNODEBY
    574  1.14  itojun 		freehostent(hp);
    575  1.14  itojun #endif
    576  1.14  itojun 		hp = NULL;
    577  1.14  itojun 		error = EAI_FAIL;
    578  1.14  itojun 	}
    579  1.14  itojun 
    580  1.14  itojun 	if (hp == NULL)
    581  1.14  itojun 		goto free;
    582  1.14  itojun 
    583  1.14  itojun 	for (i = 0; hp->h_addr_list[i] != NULL; i++) {
    584  1.14  itojun 		af = hp->h_addrtype;
    585  1.14  itojun 		ap = hp->h_addr_list[i];
    586  1.14  itojun 		if (af == AF_INET6
    587  1.14  itojun 		 && IN6_IS_ADDR_V4MAPPED((struct in6_addr *)ap)) {
    588  1.14  itojun 			af = AF_INET;
    589  1.14  itojun 			ap = ap + sizeof(struct in6_addr)
    590  1.14  itojun 				- sizeof(struct in_addr);
    591  1.14  itojun 		}
    592  1.14  itojun 
    593  1.14  itojun 		if (af != pai->ai_family)
    594  1.14  itojun 			continue;
    595   1.1  itojun 
    596  1.14  itojun 		if ((pai->ai_flags & AI_CANONNAME) == 0) {
    597  1.14  itojun 			GET_AI(cur->ai_next, afd, ap);
    598  1.14  itojun 			GET_PORT(cur->ai_next, servname);
    599  1.14  itojun 		} else {
    600   1.1  itojun 			/*
    601  1.14  itojun 			 * if AI_CANONNAME and if reverse lookup
    602  1.14  itojun 			 * fail, return ai anyway to pacify
    603  1.14  itojun 			 * calling application.
    604  1.14  itojun 			 *
    605  1.14  itojun 			 * XXX getaddrinfo() is a name->address
    606  1.14  itojun 			 * translation function, and it looks
    607  1.14  itojun 			 * strange that we do addr->name
    608  1.14  itojun 			 * translation here.
    609   1.1  itojun 			 */
    610  1.14  itojun 			get_name(ap, afd, &cur->ai_next,
    611  1.14  itojun 				ap, pai, servname);
    612  1.14  itojun 		}
    613   1.1  itojun 
    614  1.14  itojun 		while (cur && cur->ai_next)
    615   1.1  itojun 			cur = cur->ai_next;
    616   1.1  itojun 	}
    617  1.14  itojun 
    618  1.14  itojun 	*res = sentinel.ai_next;
    619  1.14  itojun 	return 0;
    620  1.14  itojun 
    621  1.14  itojun free:
    622  1.14  itojun #ifdef USE_GETIPNODEBY
    623  1.14  itojun 	if (hp)
    624  1.14  itojun 		freehostent(hp);
    625  1.14  itojun #endif
    626  1.14  itojun 	if (sentinel.ai_next)
    627  1.14  itojun 		freeaddrinfo(sentinel.ai_next);
    628  1.14  itojun 	return error;
    629  1.14  itojun }
    630  1.14  itojun 
    631  1.14  itojun /*
    632  1.14  itojun  * hostname == NULL.
    633  1.14  itojun  * passive socket -> anyaddr (0.0.0.0 or ::)
    634  1.14  itojun  * non-passive socket -> localhost (127.0.0.1 or ::1)
    635  1.14  itojun  */
    636  1.14  itojun static int
    637  1.14  itojun explore_null(pai, hostname, servname, res)
    638  1.14  itojun 	const struct addrinfo *pai;
    639  1.14  itojun 	const char *hostname;
    640  1.14  itojun 	const char *servname;
    641  1.14  itojun 	struct addrinfo **res;
    642  1.14  itojun {
    643  1.14  itojun 	int s;
    644  1.14  itojun 	const struct afd *afd;
    645  1.14  itojun 	struct addrinfo *cur;
    646  1.14  itojun 	struct addrinfo sentinel;
    647  1.14  itojun 	int error;
    648  1.14  itojun 
    649  1.14  itojun 	*res = NULL;
    650  1.14  itojun 	sentinel.ai_next = NULL;
    651  1.14  itojun 	cur = &sentinel;
    652  1.14  itojun 
    653  1.14  itojun 	/*
    654  1.14  itojun 	 * filter out AFs that are not supported by the kernel
    655  1.14  itojun 	 * XXX errno?
    656  1.14  itojun 	 */
    657  1.14  itojun 	s = socket(pai->ai_family, SOCK_DGRAM, 0);
    658  1.14  itojun 	if (s < 0) {
    659  1.14  itojun 		if (errno != EMFILE)
    660  1.14  itojun 			return 0;
    661  1.14  itojun 	} else
    662  1.14  itojun 		close(s);
    663  1.14  itojun 
    664  1.14  itojun 	/*
    665  1.14  itojun 	 * if the servname does not match socktype/protocol, ignore it.
    666  1.14  itojun 	 */
    667  1.14  itojun 	if (get_portmatch(pai, servname) != 0)
    668  1.14  itojun 		return 0;
    669  1.14  itojun 
    670  1.14  itojun 	afd = find_afd(pai->ai_family);
    671  1.14  itojun 
    672  1.14  itojun 	if (pai->ai_flags & AI_PASSIVE) {
    673  1.14  itojun 		GET_AI(cur->ai_next, afd, afd->a_addrany);
    674  1.14  itojun 		/* xxx meaningless?
    675  1.14  itojun 		 * GET_CANONNAME(cur->ai_next, "anyaddr");
    676  1.14  itojun 		 */
    677  1.14  itojun 		GET_PORT(cur->ai_next, servname);
    678  1.14  itojun 	} else {
    679  1.14  itojun 		GET_AI(cur->ai_next, afd, afd->a_loopback);
    680  1.14  itojun 		/* xxx meaningless?
    681  1.14  itojun 		 * GET_CANONNAME(cur->ai_next, "localhost");
    682  1.14  itojun 		 */
    683  1.14  itojun 		GET_PORT(cur->ai_next, servname);
    684  1.14  itojun 	}
    685  1.14  itojun 	cur = cur->ai_next;
    686  1.14  itojun 
    687  1.14  itojun 	*res = sentinel.ai_next;
    688  1.14  itojun 	return 0;
    689  1.14  itojun 
    690  1.14  itojun free:
    691  1.14  itojun 	if (sentinel.ai_next)
    692  1.14  itojun 		freeaddrinfo(sentinel.ai_next);
    693  1.14  itojun 	return error;
    694  1.14  itojun }
    695  1.14  itojun 
    696  1.14  itojun /*
    697  1.14  itojun  * numeric hostname
    698  1.14  itojun  */
    699  1.14  itojun static int
    700  1.14  itojun explore_numeric(pai, hostname, servname, res)
    701  1.14  itojun 	const struct addrinfo *pai;
    702  1.14  itojun 	const char *hostname;
    703  1.14  itojun 	const char *servname;
    704  1.14  itojun 	struct addrinfo **res;
    705  1.14  itojun {
    706  1.14  itojun 	const struct afd *afd;
    707  1.14  itojun 	struct addrinfo *cur;
    708  1.14  itojun 	struct addrinfo sentinel;
    709  1.14  itojun 	int error;
    710  1.14  itojun 	char pton[PTON_MAX];
    711  1.14  itojun 	int flags;
    712  1.14  itojun 
    713  1.14  itojun 	*res = NULL;
    714  1.14  itojun 	sentinel.ai_next = NULL;
    715  1.14  itojun 	cur = &sentinel;
    716  1.14  itojun 
    717  1.14  itojun 	/*
    718  1.14  itojun 	 * if the servname does not match socktype/protocol, ignore it.
    719  1.14  itojun 	 */
    720  1.14  itojun 	if (get_portmatch(pai, servname) != 0)
    721  1.14  itojun 		return 0;
    722  1.14  itojun 
    723  1.14  itojun 	afd = find_afd(pai->ai_family);
    724  1.14  itojun 	flags = pai->ai_flags;
    725  1.14  itojun 
    726  1.14  itojun 	if (inet_pton(afd->a_af, hostname, pton) == 1) {
    727  1.14  itojun 		u_int32_t v4a;
    728  1.14  itojun #ifdef INET6
    729  1.14  itojun 		u_char pfx;
    730  1.14  itojun #endif
    731  1.14  itojun 
    732  1.14  itojun 		switch (afd->a_af) {
    733  1.14  itojun 		case AF_INET:
    734  1.14  itojun 			v4a = (u_int32_t)ntohl(((struct in_addr *)pton)->s_addr);
    735  1.14  itojun 			if (IN_MULTICAST(v4a) || IN_EXPERIMENTAL(v4a))
    736  1.14  itojun 				flags &= ~AI_CANONNAME;
    737  1.14  itojun 			v4a >>= IN_CLASSA_NSHIFT;
    738  1.14  itojun 			if (v4a == 0 || v4a == IN_LOOPBACKNET)
    739  1.14  itojun 				flags &= ~AI_CANONNAME;
    740  1.14  itojun 			break;
    741   1.1  itojun #ifdef INET6
    742  1.14  itojun 		case AF_INET6:
    743  1.14  itojun 			pfx = ((struct in6_addr *)pton)->s6_addr[0];
    744  1.14  itojun 			if (pfx == 0 || pfx == 0xfe || pfx == 0xff)
    745  1.14  itojun 				flags &= ~AI_CANONNAME;
    746  1.14  itojun 			break;
    747   1.1  itojun #endif
    748  1.14  itojun 		}
    749  1.14  itojun 
    750  1.14  itojun 		if (pai->ai_family == afd->a_af ||
    751  1.14  itojun 		    pai->ai_family == PF_UNSPEC /*?*/) {
    752  1.14  itojun 			if ((flags & AI_CANONNAME) == 0) {
    753  1.14  itojun 				GET_AI(cur->ai_next, afd, pton);
    754  1.14  itojun 				GET_PORT(cur->ai_next, servname);
    755  1.14  itojun 			} else {
    756   1.1  itojun 				/*
    757   1.1  itojun 				 * if AI_CANONNAME and if reverse lookup
    758   1.1  itojun 				 * fail, return ai anyway to pacify
    759   1.1  itojun 				 * calling application.
    760   1.1  itojun 				 *
    761   1.1  itojun 				 * XXX getaddrinfo() is a name->address
    762  1.14  itojun 				 * translation function, and it looks
    763  1.14  itojun 				 * strange that we do addr->name
    764  1.14  itojun 				 * translation here.
    765   1.1  itojun 				 */
    766  1.14  itojun 				get_name(pton, afd, &cur->ai_next,
    767  1.14  itojun 					pton, pai, servname);
    768  1.14  itojun 			}
    769  1.14  itojun 			while (cur && cur->ai_next)
    770  1.14  itojun 				cur = cur->ai_next;
    771  1.14  itojun 		} else
    772  1.14  itojun 			ERR(EAI_FAMILY);	/*xxx*/
    773   1.1  itojun 	}
    774   1.1  itojun 
    775  1.14  itojun 	*res = sentinel.ai_next;
    776  1.14  itojun 	return 0;
    777  1.14  itojun 
    778  1.14  itojun free:
    779  1.14  itojun bad:
    780  1.14  itojun 	if (sentinel.ai_next)
    781  1.14  itojun 		freeaddrinfo(sentinel.ai_next);
    782  1.14  itojun 	return error;
    783  1.14  itojun }
    784  1.14  itojun 
    785  1.14  itojun /*
    786  1.14  itojun  * numeric hostname with scope
    787  1.14  itojun  */
    788  1.14  itojun static int
    789  1.14  itojun explore_numeric_scope(pai, hostname, servname, res)
    790  1.14  itojun 	const struct addrinfo *pai;
    791  1.14  itojun 	const char *hostname;
    792  1.14  itojun 	const char *servname;
    793  1.14  itojun 	struct addrinfo **res;
    794  1.14  itojun {
    795  1.14  itojun #ifndef SCOPE_DELIMITER
    796  1.14  itojun 	return explore_numeric(pai, hostname, servname, res);
    797  1.14  itojun #else
    798  1.14  itojun 	const struct afd *afd;
    799  1.14  itojun 	struct addrinfo *cur;
    800  1.14  itojun 	int error;
    801  1.14  itojun 	char *cp, *hostname2 = NULL;
    802  1.14  itojun 	int scope;
    803  1.14  itojun 	struct sockaddr_in6 *sin6;
    804  1.14  itojun 
    805  1.14  itojun 	/*
    806  1.14  itojun 	 * if the servname does not match socktype/protocol, ignore it.
    807  1.14  itojun 	 */
    808  1.14  itojun 	if (get_portmatch(pai, servname) != 0)
    809  1.14  itojun 		return 0;
    810  1.14  itojun 
    811  1.14  itojun 	afd = find_afd(pai->ai_family);
    812  1.14  itojun 	if (!afd->a_scoped)
    813  1.14  itojun 		return explore_numeric(pai, hostname, servname, res);
    814  1.14  itojun 
    815  1.14  itojun 	cp = strchr(hostname, SCOPE_DELIMITER);
    816  1.14  itojun 	if (cp == NULL)
    817  1.14  itojun 		return explore_numeric(pai, hostname, servname, res);
    818  1.14  itojun 
    819  1.14  itojun 	/*
    820  1.14  itojun 	 * Handle special case of <scoped_address><delimiter><scope id>
    821  1.14  itojun 	 */
    822  1.14  itojun 	hostname2 = strdup(hostname);
    823  1.14  itojun 	if (hostname2 == NULL)
    824  1.14  itojun 		return EAI_MEMORY;
    825  1.14  itojun 	/* terminate at the delimiter */
    826  1.14  itojun 	hostname2[cp - hostname] = '\0';
    827  1.14  itojun 
    828  1.14  itojun 	cp++;
    829  1.14  itojun 	switch (pai->ai_family) {
    830  1.14  itojun #ifdef INET6
    831  1.14  itojun 	case AF_INET6:
    832  1.14  itojun 		scope = if_nametoindex(cp);
    833  1.14  itojun 		break;
    834  1.14  itojun #endif
    835  1.14  itojun 	}
    836   1.1  itojun 
    837  1.14  itojun 	error = explore_numeric(pai, hostname2, servname, res);
    838   1.1  itojun 	if (error == 0) {
    839  1.14  itojun 		for (cur = *res; cur; cur = cur->ai_next) {
    840  1.14  itojun 			if (cur->ai_family != AF_INET6)
    841  1.14  itojun 				continue;
    842  1.14  itojun 			sin6 = (struct sockaddr_in6 *)cur->ai_addr;
    843  1.14  itojun 			if (IN6_IS_ADDR_LINKLOCAL(&sin6->sin6_addr) ||
    844  1.14  itojun 			    IN6_IS_ADDR_MC_LINKLOCAL(&sin6->sin6_addr))
    845  1.14  itojun 				sin6->sin6_scope_id = scope;
    846  1.14  itojun 		}
    847   1.1  itojun 	}
    848  1.14  itojun 
    849  1.14  itojun 	free(hostname2);
    850  1.14  itojun 
    851   1.1  itojun 	return error;
    852  1.14  itojun #endif
    853   1.1  itojun }
    854   1.1  itojun 
    855   1.1  itojun static int
    856  1.14  itojun get_name(addr, afd, res, numaddr, pai, servname)
    857   1.1  itojun 	const char *addr;
    858  1.14  itojun 	const struct afd *afd;
    859   1.1  itojun 	struct addrinfo **res;
    860   1.1  itojun 	char *numaddr;
    861  1.14  itojun 	const struct addrinfo *pai;
    862  1.14  itojun 	const char *servname;
    863   1.1  itojun {
    864   1.1  itojun 	struct hostent *hp;
    865   1.1  itojun 	struct addrinfo *cur;
    866   1.1  itojun 	int error = 0;
    867   1.1  itojun #ifdef USE_GETIPNODEBY
    868   1.1  itojun 	int h_error;
    869  1.12   lukem 
    870   1.1  itojun 	hp = getipnodebyaddr(addr, afd->a_addrlen, afd->a_af, &h_error);
    871   1.1  itojun #else
    872   1.1  itojun 	hp = gethostbyaddr(addr, afd->a_addrlen, afd->a_af);
    873   1.1  itojun #endif
    874   1.1  itojun 	if (hp && hp->h_name && hp->h_name[0] && hp->h_addr_list[0]) {
    875  1.14  itojun 		GET_AI(cur, afd, hp->h_addr_list[0]);
    876  1.14  itojun 		GET_PORT(cur, servname);
    877   1.1  itojun 		GET_CANONNAME(cur, hp->h_name);
    878  1.14  itojun 	} else {
    879  1.14  itojun 		GET_AI(cur, afd, numaddr);
    880  1.14  itojun 		GET_PORT(cur, servname);
    881  1.14  itojun 	}
    882   1.1  itojun 
    883   1.1  itojun #ifdef USE_GETIPNODEBY
    884   1.1  itojun 	if (hp)
    885   1.1  itojun 		freehostent(hp);
    886   1.1  itojun #endif
    887   1.1  itojun 	*res = cur;
    888   1.1  itojun 	return SUCCESS;
    889   1.1  itojun  free:
    890   1.1  itojun 	if (cur)
    891   1.1  itojun 		freeaddrinfo(cur);
    892   1.1  itojun #ifdef USE_GETIPNODEBY
    893   1.1  itojun 	if (hp)
    894   1.1  itojun 		freehostent(hp);
    895   1.1  itojun #endif
    896   1.1  itojun  /* bad: */
    897   1.1  itojun 	*res = NULL;
    898   1.1  itojun 	return error;
    899   1.1  itojun }
    900   1.1  itojun 
    901   1.1  itojun static int
    902  1.14  itojun get_canonname(pai, ai, str)
    903  1.14  itojun 	const struct addrinfo *pai;
    904  1.14  itojun 	struct addrinfo *ai;
    905  1.14  itojun 	const char *str;
    906   1.1  itojun {
    907  1.14  itojun 	if ((pai->ai_flags & AI_CANONNAME) != 0) {
    908  1.14  itojun 		ai->ai_canonname = (char *)malloc(strlen(str) + 1);
    909  1.14  itojun 		if (ai->ai_canonname == NULL)
    910  1.14  itojun 			return EAI_MEMORY;
    911  1.14  itojun 		strcpy(ai->ai_canonname, str);
    912  1.14  itojun 	}
    913  1.14  itojun 	return 0;
    914  1.14  itojun }
    915   1.1  itojun 
    916  1.14  itojun static struct addrinfo *
    917  1.14  itojun get_ai(pai, afd, addr)
    918  1.14  itojun 	const struct addrinfo *pai;
    919  1.14  itojun 	const struct afd *afd;
    920  1.14  itojun 	const char *addr;
    921  1.14  itojun {
    922  1.14  itojun 	char *p;
    923  1.14  itojun 	struct addrinfo *ai;
    924  1.12   lukem 
    925  1.14  itojun 	ai = (struct addrinfo *)malloc(sizeof(struct addrinfo)
    926  1.14  itojun 		+ (afd->a_socklen));
    927  1.14  itojun 	if (ai == NULL)
    928  1.14  itojun 		return NULL;
    929  1.14  itojun 
    930  1.14  itojun 	memcpy(ai, pai, sizeof(struct addrinfo));
    931  1.14  itojun 	ai->ai_addr = (struct sockaddr *)(ai + 1);
    932  1.14  itojun 	memset(ai->ai_addr, 0, afd->a_socklen);
    933  1.14  itojun #ifdef HAVE_SOCKADDR_SA_LEN
    934  1.14  itojun 	ai->ai_addr->sa_len = afd->a_socklen;
    935  1.14  itojun #endif
    936  1.14  itojun 	ai->ai_addrlen = afd->a_socklen;
    937  1.14  itojun 	ai->ai_addr->sa_family = ai->ai_family = afd->a_af;
    938  1.14  itojun 	p = (char *)(ai->ai_addr);
    939  1.14  itojun 	memcpy(p + afd->a_off, addr, afd->a_addrlen);
    940  1.14  itojun 	return ai;
    941  1.14  itojun }
    942   1.1  itojun 
    943  1.14  itojun static int
    944  1.14  itojun get_portmatch(ai, servname)
    945  1.14  itojun 	const struct addrinfo *ai;
    946  1.14  itojun 	const char *servname;
    947  1.14  itojun {
    948   1.4  itojun 
    949  1.14  itojun 	/* get_port does not touch first argument. when matchonly == 1. */
    950  1.14  itojun 	return get_port((struct addrinfo *)ai, servname, 1);
    951   1.1  itojun }
    952   1.1  itojun 
    953   1.1  itojun static int
    954  1.14  itojun get_port(ai, servname, matchonly)
    955  1.14  itojun 	struct addrinfo *ai;
    956  1.14  itojun 	const char *servname;
    957  1.14  itojun 	int matchonly;
    958   1.1  itojun {
    959  1.14  itojun 	const char *proto;
    960  1.14  itojun 	struct servent *sp;
    961  1.14  itojun 	int port;
    962  1.14  itojun 	int allownumeric;
    963  1.12   lukem 
    964  1.14  itojun 	if (servname == NULL)
    965  1.14  itojun 		return 0;
    966  1.14  itojun 	if (ai->ai_family != AF_INET && ai->ai_family != AF_INET6)
    967  1.14  itojun 		return 0;
    968   1.1  itojun 
    969  1.14  itojun 	switch (ai->ai_socktype) {
    970  1.14  itojun 	case SOCK_RAW:
    971  1.14  itojun 		return EAI_SERVICE;
    972  1.14  itojun 	case SOCK_DGRAM:
    973  1.14  itojun 	case SOCK_STREAM:
    974  1.14  itojun 		allownumeric = 1;
    975  1.14  itojun 		break;
    976  1.14  itojun 	case ANY:
    977  1.14  itojun 		allownumeric = 0;
    978  1.14  itojun 		break;
    979  1.14  itojun 	default:
    980  1.14  itojun 		return EAI_SOCKTYPE;
    981   1.1  itojun 	}
    982  1.14  itojun 
    983  1.14  itojun 	if (str_isnumber(servname)) {
    984  1.14  itojun 		if (!allownumeric)
    985  1.14  itojun 			return EAI_SERVICE;
    986  1.14  itojun 		port = htons(atoi(servname));
    987  1.14  itojun 		if (port < 0 || port > 65535)
    988  1.14  itojun 			return EAI_SERVICE;
    989  1.14  itojun 	} else {
    990  1.14  itojun 		switch (ai->ai_socktype) {
    991  1.14  itojun 		case SOCK_DGRAM:
    992  1.14  itojun 			proto = "udp";
    993   1.1  itojun 			break;
    994  1.14  itojun 		case SOCK_STREAM:
    995  1.14  itojun 			proto = "tcp";
    996   1.1  itojun 			break;
    997   1.1  itojun 		default:
    998  1.14  itojun 			proto = NULL;
    999   1.1  itojun 			break;
   1000   1.1  itojun 		}
   1001  1.14  itojun 
   1002  1.14  itojun 		if ((sp = getservbyname(servname, proto)) == NULL)
   1003  1.14  itojun 			return EAI_SERVICE;
   1004  1.14  itojun 		port = sp->s_port;
   1005   1.1  itojun 	}
   1006   1.1  itojun 
   1007  1.14  itojun 	if (!matchonly) {
   1008  1.14  itojun 		switch (ai->ai_family) {
   1009   1.1  itojun 		case AF_INET:
   1010  1.14  itojun 			((struct sockaddr_in *)ai->ai_addr)->sin_port = port;
   1011   1.1  itojun 			break;
   1012   1.1  itojun #ifdef INET6
   1013  1.14  itojun 		case AF_INET6:
   1014  1.14  itojun 			((struct sockaddr_in6 *)ai->ai_addr)->sin6_port = port;
   1015   1.1  itojun 			break;
   1016   1.1  itojun #endif
   1017   1.1  itojun 		}
   1018  1.14  itojun 	}
   1019  1.14  itojun 
   1020  1.14  itojun 	return 0;
   1021  1.14  itojun }
   1022  1.14  itojun 
   1023  1.14  itojun static const struct afd *
   1024  1.14  itojun find_afd(af)
   1025  1.14  itojun 	int af;
   1026  1.14  itojun {
   1027  1.14  itojun 	const struct afd *afd;
   1028   1.1  itojun 
   1029  1.14  itojun 	if (af == PF_UNSPEC)
   1030  1.14  itojun 		return NULL;
   1031  1.14  itojun 	for (afd = afdl; afd->a_af; afd++) {
   1032  1.14  itojun 		if (afd->a_af == af)
   1033  1.14  itojun 			return afd;
   1034   1.1  itojun 	}
   1035  1.14  itojun 	return NULL;
   1036   1.1  itojun }
   1037