Home | History | Annotate | Line # | Download | only in resolv
res_init.c revision 1.8.4.2.2.1
      1  1.8.4.2.2.1    bouyer /*	$NetBSD: res_init.c,v 1.8.4.2.2.1 2011/01/23 21:52:34 bouyer Exp $	*/
      2          1.1  christos 
      3          1.1  christos /*
      4          1.1  christos  * Copyright (c) 1985, 1989, 1993
      5          1.1  christos  *    The Regents of the University of California.  All rights reserved.
      6          1.1  christos  *
      7          1.1  christos  * Redistribution and use in source and binary forms, with or without
      8          1.1  christos  * modification, are permitted provided that the following conditions
      9          1.1  christos  * are met:
     10          1.1  christos  * 1. Redistributions of source code must retain the above copyright
     11          1.1  christos  *    notice, this list of conditions and the following disclaimer.
     12          1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     13          1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     14          1.1  christos  *    documentation and/or other materials provided with the distribution.
     15          1.1  christos  * 3. All advertising materials mentioning features or use of this software
     16          1.1  christos  *    must display the following acknowledgement:
     17          1.1  christos  * 	This product includes software developed by the University of
     18          1.1  christos  * 	California, Berkeley and its contributors.
     19          1.1  christos  * 4. Neither the name of the University nor the names of its contributors
     20          1.1  christos  *    may be used to endorse or promote products derived from this software
     21          1.1  christos  *    without specific prior written permission.
     22          1.1  christos  *
     23          1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24          1.1  christos  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25          1.1  christos  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26          1.1  christos  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27          1.1  christos  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28          1.1  christos  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29          1.1  christos  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30          1.1  christos  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31          1.1  christos  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32          1.1  christos  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33          1.1  christos  * SUCH DAMAGE.
     34          1.1  christos  */
     35          1.1  christos 
     36          1.1  christos /*
     37          1.1  christos  * Portions Copyright (c) 1993 by Digital Equipment Corporation.
     38          1.1  christos  *
     39          1.1  christos  * Permission to use, copy, modify, and distribute this software for any
     40          1.1  christos  * purpose with or without fee is hereby granted, provided that the above
     41          1.1  christos  * copyright notice and this permission notice appear in all copies, and that
     42          1.1  christos  * the name of Digital Equipment Corporation not be used in advertising or
     43          1.1  christos  * publicity pertaining to distribution of the document or software without
     44          1.1  christos  * specific, written prior permission.
     45          1.1  christos  *
     46          1.1  christos  * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
     47          1.1  christos  * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
     48          1.1  christos  * OF MERCHANTABILITY AND FITNESS.   IN NO EVENT SHALL DIGITAL EQUIPMENT
     49          1.1  christos  * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
     50          1.1  christos  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
     51          1.1  christos  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
     52          1.1  christos  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
     53          1.1  christos  * SOFTWARE.
     54          1.1  christos  */
     55          1.1  christos 
     56          1.1  christos /*
     57          1.1  christos  * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
     58          1.1  christos  * Portions Copyright (c) 1996-1999 by Internet Software Consortium.
     59          1.1  christos  *
     60          1.1  christos  * Permission to use, copy, modify, and distribute this software for any
     61          1.1  christos  * purpose with or without fee is hereby granted, provided that the above
     62          1.1  christos  * copyright notice and this permission notice appear in all copies.
     63          1.1  christos  *
     64          1.1  christos  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
     65          1.1  christos  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
     66          1.1  christos  * MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR
     67          1.1  christos  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
     68          1.1  christos  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
     69          1.1  christos  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
     70          1.1  christos  * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
     71          1.1  christos  */
     72          1.1  christos 
     73          1.3  christos #include <sys/cdefs.h>
     74          1.1  christos #if defined(LIBC_SCCS) && !defined(lint)
     75          1.3  christos #ifdef notdef
     76          1.1  christos static const char sccsid[] = "@(#)res_init.c	8.1 (Berkeley) 6/7/93";
     77  1.8.4.2.2.1    bouyer static const char rcsid[] = "Id: res_init.c,v 1.16.18.7 2007/07/09 01:52:58 mar
     78  1.8.4.2.2.1    bouyer ka Exp";
     79          1.3  christos #else
     80  1.8.4.2.2.1    bouyer __RCSID("$NetBSD: res_init.c,v 1.8.4.2.2.1 2011/01/23 21:52:34 bouyer Exp $");
     81          1.3  christos #endif
     82          1.1  christos #endif /* LIBC_SCCS and not lint */
     83          1.1  christos 
     84          1.1  christos #include "port_before.h"
     85          1.1  christos 
     86          1.4  christos #include "namespace.h"
     87          1.1  christos #include <sys/types.h>
     88          1.1  christos #include <sys/param.h>
     89          1.1  christos #include <sys/socket.h>
     90          1.1  christos #include <sys/time.h>
     91          1.1  christos 
     92          1.1  christos #include <netinet/in.h>
     93          1.1  christos #include <arpa/inet.h>
     94          1.1  christos #include <arpa/nameser.h>
     95          1.1  christos 
     96          1.1  christos #include <ctype.h>
     97          1.1  christos #include <stdio.h>
     98          1.1  christos #include <stdlib.h>
     99          1.1  christos #include <string.h>
    100          1.1  christos #include <unistd.h>
    101          1.1  christos #include <netdb.h>
    102          1.1  christos 
    103          1.1  christos #include "port_after.h"
    104          1.1  christos 
    105          1.5  christos #if 0
    106          1.4  christos #ifdef __weak_alias
    107          1.4  christos __weak_alias(res_ninit,_res_ninit)
    108          1.4  christos __weak_alias(res_randomid,__res_randomid)
    109          1.4  christos __weak_alias(res_nclose,_res_nclose)
    110          1.4  christos __weak_alias(res_ndestroy,_res_ndestroy)
    111          1.4  christos __weak_alias(res_get_nibblesuffix,__res_get_nibblesuffix)
    112          1.4  christos __weak_alias(res_get_nibblesuffix2,__res_get_nibblesuffix2)
    113          1.4  christos __weak_alias(res_getservers,__res_getservers)
    114          1.4  christos __weak_alias(res_setservers,__res_setservers)
    115          1.4  christos #endif
    116          1.5  christos #endif
    117          1.4  christos 
    118          1.4  christos 
    119          1.1  christos /* ensure that sockaddr_in6 and IN6ADDR_ANY_INIT are declared / defined */
    120          1.1  christos #include <resolv.h>
    121          1.1  christos 
    122          1.1  christos #include "res_private.h"
    123          1.1  christos 
    124      1.8.4.1       jdc /*% Options.  Should all be left alone. */
    125          1.7  christos #ifndef DEBUG
    126  1.8.4.2.2.1    bouyer #define RESOLVSORT
    127          1.1  christos #define DEBUG
    128          1.7  christos #endif
    129          1.1  christos 
    130      1.8.4.1       jdc #ifdef SOLARIS2
    131      1.8.4.1       jdc #include <sys/systeminfo.h>
    132      1.8.4.1       jdc #endif
    133      1.8.4.1       jdc 
    134          1.1  christos static void res_setoptions __P((res_state, const char *, const char *));
    135          1.1  christos 
    136  1.8.4.2.2.1    bouyer #ifdef RESOLVSORT
    137          1.1  christos static const char sort_mask[] = "/&";
    138          1.1  christos #define ISSORTMASK(ch) (strchr(sort_mask, ch) != NULL)
    139          1.1  christos static u_int32_t net_mask __P((struct in_addr));
    140  1.8.4.2.2.1    bouyer #endif
    141          1.1  christos 
    142      1.8.4.1       jdc #if !defined(isascii)	/*%< XXX - could be a function */
    143          1.1  christos # define isascii(c) (!(c & 0200))
    144          1.1  christos #endif
    145          1.1  christos 
    146          1.1  christos /*
    147          1.1  christos  * Resolver state default settings.
    148          1.1  christos  */
    149          1.1  christos 
    150      1.8.4.1       jdc /*%
    151          1.1  christos  * Set up default settings.  If the configuration file exist, the values
    152          1.1  christos  * there will have precedence.  Otherwise, the server address is set to
    153          1.1  christos  * INADDR_ANY and the default domain name comes from the gethostname().
    154          1.1  christos  *
    155          1.1  christos  * An interrim version of this code (BIND 4.9, pre-4.4BSD) used 127.0.0.1
    156          1.1  christos  * rather than INADDR_ANY ("0.0.0.0") as the default name server address
    157          1.1  christos  * since it was noted that INADDR_ANY actually meant ``the first interface
    158          1.1  christos  * you "ifconfig"'d at boot time'' and if this was a SLIP or PPP interface,
    159          1.1  christos  * it had to be "up" in order for you to reach your own name server.  It
    160          1.1  christos  * was later decided that since the recommended practice is to always
    161          1.1  christos  * install local static routes through 127.0.0.1 for all your network
    162          1.1  christos  * interfaces, that we could solve this problem without a code change.
    163          1.1  christos  *
    164          1.1  christos  * The configuration file should always be used, since it is the only way
    165          1.1  christos  * to specify a default domain.  If you are running a server on your local
    166          1.1  christos  * machine, you should say "nameserver 0.0.0.0" or "nameserver 127.0.0.1"
    167          1.1  christos  * in the configuration file.
    168          1.1  christos  *
    169          1.1  christos  * Return 0 if completes successfully, -1 on error
    170          1.1  christos  */
    171          1.1  christos int
    172          1.1  christos res_ninit(res_state statp) {
    173          1.1  christos 	extern int __res_vinit(res_state, int);
    174          1.1  christos 
    175          1.1  christos 	return (__res_vinit(statp, 0));
    176          1.1  christos }
    177          1.1  christos 
    178      1.8.4.1       jdc /*% This function has to be reachable by res_data.c but not publically. */
    179          1.1  christos int
    180          1.1  christos __res_vinit(res_state statp, int preinit) {
    181          1.1  christos 	register FILE *fp;
    182          1.1  christos 	register char *cp, **pp;
    183          1.1  christos 	register int n;
    184          1.1  christos 	char buf[BUFSIZ];
    185      1.8.4.1       jdc 	int nserv = 0;    /*%< number of nameserver records read from file */
    186          1.1  christos 	int haveenv = 0;
    187          1.1  christos 	int havesearch = 0;
    188  1.8.4.2.2.1    bouyer #ifdef RESOLVSORT
    189          1.1  christos 	int nsort = 0;
    190          1.1  christos 	char *net;
    191  1.8.4.2.2.1    bouyer #endif
    192          1.1  christos 	int dots;
    193          1.1  christos 	union res_sockaddr_union u[2];
    194  1.8.4.2.2.1    bouyer 	int maxns = MAXNS;
    195  1.8.4.2.2.1    bouyer 
    196  1.8.4.2.2.1    bouyer 	RES_SET_H_ERRNO(statp, 0);
    197  1.8.4.2.2.1    bouyer 	if (statp->_u._ext.ext != NULL)
    198  1.8.4.2.2.1    bouyer 		res_ndestroy(statp);
    199          1.1  christos 
    200          1.1  christos 	if (!preinit) {
    201          1.1  christos 		statp->retrans = RES_TIMEOUT;
    202          1.1  christos 		statp->retry = RES_DFLRETRY;
    203          1.1  christos 		statp->options = RES_DEFAULT;
    204          1.1  christos 		statp->id = res_randomid();
    205          1.1  christos 	}
    206          1.1  christos 
    207          1.1  christos 	if ((statp->options & RES_INIT) != 0U)
    208          1.1  christos 		res_ndestroy(statp);
    209          1.1  christos 
    210          1.1  christos 	memset(u, 0, sizeof(u));
    211          1.1  christos #ifdef USELOOPBACK
    212          1.1  christos 	u[nserv].sin.sin_addr = inet_makeaddr(IN_LOOPBACKNET, 1);
    213          1.1  christos #else
    214          1.1  christos 	u[nserv].sin.sin_addr.s_addr = INADDR_ANY;
    215          1.1  christos #endif
    216          1.1  christos 	u[nserv].sin.sin_family = AF_INET;
    217          1.1  christos 	u[nserv].sin.sin_port = htons(NAMESERVER_PORT);
    218          1.1  christos #ifdef HAVE_SA_LEN
    219          1.1  christos 	u[nserv].sin.sin_len = sizeof(struct sockaddr_in);
    220          1.1  christos #endif
    221          1.1  christos 	nserv++;
    222          1.1  christos #ifdef HAS_INET6_STRUCTS
    223          1.1  christos #ifdef USELOOPBACK
    224          1.1  christos 	u[nserv].sin6.sin6_addr = in6addr_loopback;
    225          1.1  christos #else
    226          1.1  christos 	u[nserv].sin6.sin6_addr = in6addr_any;
    227          1.1  christos #endif
    228          1.1  christos 	u[nserv].sin6.sin6_family = AF_INET6;
    229          1.1  christos 	u[nserv].sin6.sin6_port = htons(NAMESERVER_PORT);
    230          1.1  christos #ifdef HAVE_SA_LEN
    231          1.1  christos 	u[nserv].sin6.sin6_len = sizeof(struct sockaddr_in6);
    232          1.1  christos #endif
    233          1.1  christos 	nserv++;
    234          1.1  christos #endif
    235          1.1  christos 	statp->nscount = 0;
    236          1.1  christos 	statp->ndots = 1;
    237          1.1  christos 	statp->pfcode = 0;
    238          1.1  christos 	statp->_vcsock = -1;
    239          1.1  christos 	statp->_flags = 0;
    240          1.1  christos 	statp->qhook = NULL;
    241          1.1  christos 	statp->rhook = NULL;
    242          1.1  christos 	statp->_u._ext.nscount = 0;
    243          1.1  christos 	statp->_u._ext.ext = malloc(sizeof(*statp->_u._ext.ext));
    244          1.1  christos 	if (statp->_u._ext.ext != NULL) {
    245          1.1  christos 	        memset(statp->_u._ext.ext, 0, sizeof(*statp->_u._ext.ext));
    246          1.1  christos 		statp->_u._ext.ext->nsaddrs[0].sin = statp->nsaddr;
    247          1.1  christos 		strcpy(statp->_u._ext.ext->nsuffix, "ip6.arpa");
    248          1.1  christos 		strcpy(statp->_u._ext.ext->nsuffix2, "ip6.int");
    249  1.8.4.2.2.1    bouyer 	} else {
    250  1.8.4.2.2.1    bouyer 		/*
    251  1.8.4.2.2.1    bouyer 		* Historically res_init() rarely, if at all, failed.
    252  1.8.4.2.2.1    bouyer 		* Examples and applications exist which do not check
    253  1.8.4.2.2.1    bouyer 		* our return code.  Furthermore several applications
    254  1.8.4.2.2.1    bouyer 		* simply call us to get the systems domainname.  So
    255  1.8.4.2.2.1    bouyer 		* rather then immediately fail here we store the
    256  1.8.4.2.2.1    bouyer 		* failure, which is returned later, in h_errno.  And
    257  1.8.4.2.2.1    bouyer 		* prevent the collection of 'nameserver' information
    258  1.8.4.2.2.1    bouyer 		* by setting maxns to 0.  Thus applications that fail
    259  1.8.4.2.2.1    bouyer 		* to check our return code wont be able to make
    260  1.8.4.2.2.1    bouyer 		* queries anyhow.
    261  1.8.4.2.2.1    bouyer 		*/
    262  1.8.4.2.2.1    bouyer 		RES_SET_H_ERRNO(statp, NETDB_INTERNAL);
    263  1.8.4.2.2.1    bouyer 		maxns = 0;
    264  1.8.4.2.2.1    bouyer 	}
    265  1.8.4.2.2.1    bouyer #ifdef RESOLVSORT
    266          1.1  christos 	statp->nsort = 0;
    267  1.8.4.2.2.1    bouyer #endif
    268          1.1  christos 	res_setservers(statp, u, nserv);
    269          1.1  christos 
    270      1.8.4.1       jdc #ifdef	SOLARIS2
    271      1.8.4.1       jdc 	/*
    272      1.8.4.1       jdc 	 * The old libresolv derived the defaultdomain from NIS/NIS+.
    273      1.8.4.1       jdc 	 * We want to keep this behaviour
    274      1.8.4.1       jdc 	 */
    275      1.8.4.1       jdc 	{
    276      1.8.4.1       jdc 		char buf[sizeof(statp->defdname)], *cp;
    277      1.8.4.1       jdc 		int ret;
    278      1.8.4.1       jdc 
    279      1.8.4.1       jdc 		if ((ret = sysinfo(SI_SRPC_DOMAIN, buf, sizeof(buf))) > 0 &&
    280      1.8.4.1       jdc 			(unsigned int)ret <= sizeof(buf)) {
    281      1.8.4.1       jdc 			if (buf[0] == '+')
    282      1.8.4.1       jdc 				buf[0] = '.';
    283      1.8.4.1       jdc 			cp = strchr(buf, '.');
    284      1.8.4.1       jdc 			cp = (cp == NULL) ? buf : (cp + 1);
    285  1.8.4.2.2.1    bouyer 			strncpy(statp->defdname, cp,
    286  1.8.4.2.2.1    bouyer 				sizeof(statp->defdname) - 1);
    287  1.8.4.2.2.1    bouyer 			statp->defdname[sizeof(statp->defdname) - 1] = '\0';
    288      1.8.4.1       jdc 		}
    289      1.8.4.1       jdc 	}
    290      1.8.4.1       jdc #endif	/* SOLARIS2 */
    291      1.8.4.1       jdc 
    292          1.1  christos 	/* Allow user to override the local domain definition */
    293          1.1  christos 	if ((cp = getenv("LOCALDOMAIN")) != NULL) {
    294          1.1  christos 		(void)strncpy(statp->defdname, cp, sizeof(statp->defdname) - 1);
    295          1.1  christos 		statp->defdname[sizeof(statp->defdname) - 1] = '\0';
    296          1.1  christos 		haveenv++;
    297          1.1  christos 
    298          1.1  christos 		/*
    299          1.1  christos 		 * Set search list to be blank-separated strings
    300          1.1  christos 		 * from rest of env value.  Permits users of LOCALDOMAIN
    301          1.1  christos 		 * to still have a search list, and anyone to set the
    302          1.1  christos 		 * one that they want to use as an individual (even more
    303          1.1  christos 		 * important now that the rfc1535 stuff restricts searches)
    304          1.1  christos 		 */
    305          1.1  christos 		cp = statp->defdname;
    306          1.1  christos 		pp = statp->dnsrch;
    307          1.1  christos 		*pp++ = cp;
    308          1.1  christos 		for (n = 0; *cp && pp < statp->dnsrch + MAXDNSRCH; cp++) {
    309      1.8.4.1       jdc 			if (*cp == '\n')	/*%< silly backwards compat */
    310          1.1  christos 				break;
    311          1.1  christos 			else if (*cp == ' ' || *cp == '\t') {
    312          1.1  christos 				*cp = 0;
    313          1.1  christos 				n = 1;
    314          1.1  christos 			} else if (n) {
    315          1.1  christos 				*pp++ = cp;
    316          1.1  christos 				n = 0;
    317          1.1  christos 				havesearch = 1;
    318          1.1  christos 			}
    319          1.1  christos 		}
    320          1.1  christos 		/* null terminate last domain if there are excess */
    321          1.1  christos 		while (*cp != '\0' && *cp != ' ' && *cp != '\t' && *cp != '\n')
    322          1.1  christos 			cp++;
    323          1.1  christos 		*cp = '\0';
    324          1.1  christos 		*pp++ = 0;
    325          1.1  christos 	}
    326          1.1  christos 
    327          1.1  christos #define	MATCH(line, name) \
    328          1.1  christos 	(!strncmp(line, name, sizeof(name) - 1) && \
    329          1.1  christos 	(line[sizeof(name) - 1] == ' ' || \
    330          1.1  christos 	 line[sizeof(name) - 1] == '\t'))
    331          1.1  christos 
    332          1.1  christos 	nserv = 0;
    333          1.1  christos 	if ((fp = fopen(_PATH_RESCONF, "r")) != NULL) {
    334          1.1  christos 	    /* read the config file */
    335          1.1  christos 	    while (fgets(buf, sizeof(buf), fp) != NULL) {
    336          1.1  christos 		/* skip comments */
    337          1.1  christos 		if (*buf == ';' || *buf == '#')
    338          1.1  christos 			continue;
    339          1.1  christos 		/* read default domain name */
    340          1.1  christos 		if (MATCH(buf, "domain")) {
    341      1.8.4.1       jdc 		    if (haveenv)	/*%< skip if have from environ */
    342          1.1  christos 			    continue;
    343          1.1  christos 		    cp = buf + sizeof("domain") - 1;
    344          1.1  christos 		    while (*cp == ' ' || *cp == '\t')
    345          1.1  christos 			    cp++;
    346          1.1  christos 		    if ((*cp == '\0') || (*cp == '\n'))
    347          1.1  christos 			    continue;
    348          1.1  christos 		    strncpy(statp->defdname, cp, sizeof(statp->defdname) - 1);
    349          1.1  christos 		    statp->defdname[sizeof(statp->defdname) - 1] = '\0';
    350          1.1  christos 		    if ((cp = strpbrk(statp->defdname, " \t\n")) != NULL)
    351          1.1  christos 			    *cp = '\0';
    352          1.1  christos 		    havesearch = 0;
    353          1.1  christos 		    continue;
    354          1.1  christos 		}
    355          1.1  christos 		/* set search list */
    356          1.1  christos 		if (MATCH(buf, "search")) {
    357      1.8.4.1       jdc 		    if (haveenv)	/*%< skip if have from environ */
    358          1.1  christos 			    continue;
    359          1.1  christos 		    cp = buf + sizeof("search") - 1;
    360          1.1  christos 		    while (*cp == ' ' || *cp == '\t')
    361          1.1  christos 			    cp++;
    362          1.1  christos 		    if ((*cp == '\0') || (*cp == '\n'))
    363          1.1  christos 			    continue;
    364          1.1  christos 		    strncpy(statp->defdname, cp, sizeof(statp->defdname) - 1);
    365          1.1  christos 		    statp->defdname[sizeof(statp->defdname) - 1] = '\0';
    366          1.1  christos 		    if ((cp = strchr(statp->defdname, '\n')) != NULL)
    367          1.1  christos 			    *cp = '\0';
    368          1.1  christos 		    /*
    369          1.1  christos 		     * Set search list to be blank-separated strings
    370          1.1  christos 		     * on rest of line.
    371          1.1  christos 		     */
    372          1.1  christos 		    cp = statp->defdname;
    373          1.1  christos 		    pp = statp->dnsrch;
    374          1.1  christos 		    *pp++ = cp;
    375          1.1  christos 		    for (n = 0; *cp && pp < statp->dnsrch + MAXDNSRCH; cp++) {
    376          1.1  christos 			    if (*cp == ' ' || *cp == '\t') {
    377          1.1  christos 				    *cp = 0;
    378          1.1  christos 				    n = 1;
    379          1.1  christos 			    } else if (n) {
    380          1.1  christos 				    *pp++ = cp;
    381          1.1  christos 				    n = 0;
    382          1.1  christos 			    }
    383          1.1  christos 		    }
    384          1.1  christos 		    /* null terminate last domain if there are excess */
    385          1.1  christos 		    while (*cp != '\0' && *cp != ' ' && *cp != '\t')
    386          1.1  christos 			    cp++;
    387          1.1  christos 		    *cp = '\0';
    388          1.1  christos 		    *pp++ = 0;
    389          1.1  christos 		    havesearch = 1;
    390          1.1  christos 		    continue;
    391          1.1  christos 		}
    392          1.1  christos 		/* read nameservers to query */
    393  1.8.4.2.2.1    bouyer 		if (MATCH(buf, "nameserver") && nserv < maxns) {
    394          1.1  christos 		    struct addrinfo hints, *ai;
    395          1.1  christos 		    char sbuf[NI_MAXSERV];
    396          1.1  christos 		    const size_t minsiz =
    397          1.1  christos 		        sizeof(statp->_u._ext.ext->nsaddrs[0]);
    398          1.1  christos 
    399          1.1  christos 		    cp = buf + sizeof("nameserver") - 1;
    400          1.1  christos 		    while (*cp == ' ' || *cp == '\t')
    401          1.1  christos 			cp++;
    402          1.1  christos 		    cp[strcspn(cp, ";# \t\n")] = '\0';
    403          1.1  christos 		    if ((*cp != '\0') && (*cp != '\n')) {
    404          1.1  christos 			memset(&hints, 0, sizeof(hints));
    405          1.1  christos 			hints.ai_family = PF_UNSPEC;
    406          1.1  christos 			hints.ai_socktype = SOCK_DGRAM;	/*dummy*/
    407          1.1  christos 			hints.ai_flags = AI_NUMERICHOST;
    408          1.1  christos 			sprintf(sbuf, "%u", NAMESERVER_PORT);
    409          1.1  christos 			if (getaddrinfo(cp, sbuf, &hints, &ai) == 0 &&
    410          1.1  christos 			    ai->ai_addrlen <= minsiz) {
    411          1.1  christos 			    if (statp->_u._ext.ext != NULL) {
    412          1.1  christos 				memcpy(&statp->_u._ext.ext->nsaddrs[nserv],
    413          1.1  christos 				    ai->ai_addr, ai->ai_addrlen);
    414          1.1  christos 			    }
    415          1.1  christos 			    if (ai->ai_addrlen <=
    416          1.1  christos 			        sizeof(statp->nsaddr_list[nserv])) {
    417          1.1  christos 				memcpy(&statp->nsaddr_list[nserv],
    418          1.1  christos 				    ai->ai_addr, ai->ai_addrlen);
    419          1.1  christos 			    } else
    420          1.1  christos 				statp->nsaddr_list[nserv].sin_family = 0;
    421          1.1  christos 			    freeaddrinfo(ai);
    422          1.1  christos 			    nserv++;
    423          1.1  christos 			}
    424          1.1  christos 		    }
    425          1.1  christos 		    continue;
    426          1.1  christos 		}
    427  1.8.4.2.2.1    bouyer #ifdef RESOLVSORT
    428          1.1  christos 		if (MATCH(buf, "sortlist")) {
    429          1.1  christos 		    struct in_addr a;
    430          1.1  christos 
    431          1.1  christos 		    cp = buf + sizeof("sortlist") - 1;
    432          1.1  christos 		    while (nsort < MAXRESOLVSORT) {
    433          1.1  christos 			while (*cp == ' ' || *cp == '\t')
    434          1.1  christos 			    cp++;
    435          1.1  christos 			if (*cp == '\0' || *cp == '\n' || *cp == ';')
    436          1.1  christos 			    break;
    437          1.1  christos 			net = cp;
    438          1.1  christos 			while (*cp && !ISSORTMASK(*cp) && *cp != ';' &&
    439          1.1  christos 			       isascii(*cp) && !isspace((unsigned char)*cp))
    440          1.1  christos 				cp++;
    441          1.1  christos 			n = *cp;
    442          1.1  christos 			*cp = 0;
    443          1.1  christos 			if (inet_aton(net, &a)) {
    444          1.1  christos 			    statp->sort_list[nsort].addr = a;
    445          1.1  christos 			    if (ISSORTMASK(n)) {
    446          1.1  christos 				*cp++ = n;
    447          1.1  christos 				net = cp;
    448          1.1  christos 				while (*cp && *cp != ';' &&
    449          1.1  christos 					isascii(*cp) &&
    450          1.1  christos 					!isspace((unsigned char)*cp))
    451          1.1  christos 				    cp++;
    452          1.1  christos 				n = *cp;
    453          1.1  christos 				*cp = 0;
    454          1.1  christos 				if (inet_aton(net, &a)) {
    455          1.1  christos 				    statp->sort_list[nsort].mask = a.s_addr;
    456          1.1  christos 				} else {
    457          1.1  christos 				    statp->sort_list[nsort].mask =
    458          1.1  christos 					net_mask(statp->sort_list[nsort].addr);
    459          1.1  christos 				}
    460          1.1  christos 			    } else {
    461          1.1  christos 				statp->sort_list[nsort].mask =
    462          1.1  christos 				    net_mask(statp->sort_list[nsort].addr);
    463          1.1  christos 			    }
    464          1.1  christos 			    nsort++;
    465          1.1  christos 			}
    466          1.1  christos 			*cp = n;
    467          1.1  christos 		    }
    468          1.1  christos 		    continue;
    469          1.1  christos 		}
    470  1.8.4.2.2.1    bouyer #endif
    471          1.1  christos 		if (MATCH(buf, "options")) {
    472          1.1  christos 		    res_setoptions(statp, buf + sizeof("options") - 1, "conf");
    473          1.1  christos 		    continue;
    474          1.1  christos 		}
    475          1.1  christos 	    }
    476          1.1  christos 	    if (nserv > 0)
    477          1.1  christos 		statp->nscount = nserv;
    478  1.8.4.2.2.1    bouyer #ifdef RESOLVSORT
    479          1.1  christos 	    statp->nsort = nsort;
    480  1.8.4.2.2.1    bouyer #endif
    481          1.1  christos 	    (void) fclose(fp);
    482          1.1  christos 	}
    483          1.1  christos /*
    484          1.1  christos  * Last chance to get a nameserver.  This should not normally
    485          1.1  christos  * be necessary
    486          1.1  christos  */
    487          1.1  christos #ifdef NO_RESOLV_CONF
    488          1.1  christos 	if(nserv == 0)
    489          1.1  christos 		nserv = get_nameservers(statp);
    490          1.1  christos #endif
    491          1.1  christos 
    492          1.1  christos 	if (statp->defdname[0] == 0 &&
    493          1.1  christos 	    gethostname(buf, sizeof(statp->defdname) - 1) == 0 &&
    494          1.1  christos 	    (cp = strchr(buf, '.')) != NULL)
    495          1.1  christos 		strcpy(statp->defdname, cp + 1);
    496          1.1  christos 
    497          1.1  christos 	/* find components of local domain that might be searched */
    498          1.1  christos 	if (havesearch == 0) {
    499          1.1  christos 		pp = statp->dnsrch;
    500          1.1  christos 		*pp++ = statp->defdname;
    501          1.1  christos 		*pp = NULL;
    502          1.1  christos 
    503          1.1  christos 		dots = 0;
    504          1.1  christos 		for (cp = statp->defdname; *cp; cp++)
    505          1.1  christos 			dots += (*cp == '.');
    506          1.1  christos 
    507          1.1  christos 		cp = statp->defdname;
    508          1.1  christos 		while (pp < statp->dnsrch + MAXDFLSRCH) {
    509          1.1  christos 			if (dots < LOCALDOMAINPARTS)
    510          1.1  christos 				break;
    511      1.8.4.1       jdc 			cp = strchr(cp, '.') + 1;    /*%< we know there is one */
    512          1.1  christos 			*pp++ = cp;
    513          1.1  christos 			dots--;
    514          1.1  christos 		}
    515          1.1  christos 		*pp = NULL;
    516          1.1  christos #ifdef DEBUG
    517          1.1  christos 		if (statp->options & RES_DEBUG) {
    518          1.1  christos 			printf(";; res_init()... default dnsrch list:\n");
    519          1.1  christos 			for (pp = statp->dnsrch; *pp; pp++)
    520          1.1  christos 				printf(";;\t%s\n", *pp);
    521          1.1  christos 			printf(";;\t..END..\n");
    522          1.1  christos 		}
    523          1.1  christos #endif
    524          1.1  christos 	}
    525          1.1  christos 
    526          1.1  christos 	if ((cp = getenv("RES_OPTIONS")) != NULL)
    527          1.1  christos 		res_setoptions(statp, cp, "env");
    528          1.1  christos 	statp->options |= RES_INIT;
    529  1.8.4.2.2.1    bouyer 	return (statp->res_h_errno);
    530          1.1  christos }
    531          1.1  christos 
    532          1.1  christos static void
    533          1.1  christos res_setoptions(res_state statp, const char *options, const char *source)
    534          1.1  christos {
    535          1.1  christos 	const char *cp = options;
    536          1.1  christos 	int i;
    537          1.1  christos 	struct __res_state_ext *ext = statp->_u._ext.ext;
    538          1.1  christos 
    539          1.1  christos #ifdef DEBUG
    540          1.1  christos 	if (statp->options & RES_DEBUG)
    541          1.1  christos 		printf(";; res_setoptions(\"%s\", \"%s\")...\n",
    542          1.1  christos 		       options, source);
    543          1.1  christos #endif
    544          1.1  christos 	while (*cp) {
    545          1.1  christos 		/* skip leading and inner runs of spaces */
    546          1.1  christos 		while (*cp == ' ' || *cp == '\t')
    547          1.1  christos 			cp++;
    548          1.1  christos 		/* search for and process individual options */
    549          1.1  christos 		if (!strncmp(cp, "ndots:", sizeof("ndots:") - 1)) {
    550          1.1  christos 			i = atoi(cp + sizeof("ndots:") - 1);
    551          1.1  christos 			if (i <= RES_MAXNDOTS)
    552          1.1  christos 				statp->ndots = i;
    553          1.1  christos 			else
    554          1.1  christos 				statp->ndots = RES_MAXNDOTS;
    555          1.1  christos #ifdef DEBUG
    556          1.1  christos 			if (statp->options & RES_DEBUG)
    557          1.1  christos 				printf(";;\tndots=%d\n", statp->ndots);
    558          1.1  christos #endif
    559          1.1  christos 		} else if (!strncmp(cp, "timeout:", sizeof("timeout:") - 1)) {
    560          1.1  christos 			i = atoi(cp + sizeof("timeout:") - 1);
    561          1.1  christos 			if (i <= RES_MAXRETRANS)
    562          1.1  christos 				statp->retrans = i;
    563          1.1  christos 			else
    564          1.1  christos 				statp->retrans = RES_MAXRETRANS;
    565          1.1  christos #ifdef DEBUG
    566          1.1  christos 			if (statp->options & RES_DEBUG)
    567          1.1  christos 				printf(";;\ttimeout=%d\n", statp->retrans);
    568          1.1  christos #endif
    569      1.8.4.1       jdc #ifdef	SOLARIS2
    570      1.8.4.1       jdc 		} else if (!strncmp(cp, "retrans:", sizeof("retrans:") - 1)) {
    571      1.8.4.1       jdc 			/*
    572      1.8.4.1       jdc 		 	 * For backward compatibility, 'retrans' is
    573      1.8.4.1       jdc 		 	 * supported as an alias for 'timeout', though
    574      1.8.4.1       jdc 		 	 * without an imposed maximum.
    575      1.8.4.1       jdc 		 	 */
    576      1.8.4.1       jdc 			statp->retrans = atoi(cp + sizeof("retrans:") - 1);
    577      1.8.4.1       jdc 		} else if (!strncmp(cp, "retry:", sizeof("retry:") - 1)){
    578      1.8.4.1       jdc 			/*
    579      1.8.4.1       jdc 			 * For backward compatibility, 'retry' is
    580      1.8.4.1       jdc 			 * supported as an alias for 'attempts', though
    581      1.8.4.1       jdc 			 * without an imposed maximum.
    582      1.8.4.1       jdc 			 */
    583      1.8.4.1       jdc 			statp->retry = atoi(cp + sizeof("retry:") - 1);
    584      1.8.4.1       jdc #endif	/* SOLARIS2 */
    585          1.1  christos 		} else if (!strncmp(cp, "attempts:", sizeof("attempts:") - 1)){
    586          1.1  christos 			i = atoi(cp + sizeof("attempts:") - 1);
    587          1.1  christos 			if (i <= RES_MAXRETRY)
    588          1.1  christos 				statp->retry = i;
    589          1.1  christos 			else
    590          1.1  christos 				statp->retry = RES_MAXRETRY;
    591          1.1  christos #ifdef DEBUG
    592          1.1  christos 			if (statp->options & RES_DEBUG)
    593          1.1  christos 				printf(";;\tattempts=%d\n", statp->retry);
    594          1.1  christos #endif
    595          1.1  christos 		} else if (!strncmp(cp, "debug", sizeof("debug") - 1)) {
    596          1.1  christos #ifdef DEBUG
    597          1.1  christos 			if (!(statp->options & RES_DEBUG)) {
    598          1.1  christos 				printf(";; res_setoptions(\"%s\", \"%s\")..\n",
    599          1.1  christos 				       options, source);
    600          1.1  christos 				statp->options |= RES_DEBUG;
    601          1.1  christos 			}
    602          1.1  christos 			printf(";;\tdebug\n");
    603          1.1  christos #endif
    604          1.1  christos 		} else if (!strncmp(cp, "no_tld_query",
    605          1.1  christos 				    sizeof("no_tld_query") - 1) ||
    606          1.1  christos 			   !strncmp(cp, "no-tld-query",
    607          1.1  christos 				    sizeof("no-tld-query") - 1)) {
    608          1.1  christos 			statp->options |= RES_NOTLDQUERY;
    609          1.1  christos 		} else if (!strncmp(cp, "inet6", sizeof("inet6") - 1)) {
    610          1.1  christos 			statp->options |= RES_USE_INET6;
    611          1.1  christos 		} else if (!strncmp(cp, "rotate", sizeof("rotate") - 1)) {
    612          1.1  christos 			statp->options |= RES_ROTATE;
    613          1.1  christos 		} else if (!strncmp(cp, "no-check-names",
    614          1.1  christos 				    sizeof("no-check-names") - 1)) {
    615          1.1  christos 			statp->options |= RES_NOCHECKNAME;
    616          1.1  christos 		}
    617          1.1  christos #ifdef RES_USE_EDNS0
    618          1.1  christos 		else if (!strncmp(cp, "edns0", sizeof("edns0") - 1)) {
    619          1.1  christos 			statp->options |= RES_USE_EDNS0;
    620          1.1  christos 		}
    621          1.1  christos #endif
    622          1.1  christos 		else if (!strncmp(cp, "dname", sizeof("dname") - 1)) {
    623          1.1  christos 			statp->options |= RES_USE_DNAME;
    624          1.1  christos 		}
    625          1.1  christos 		else if (!strncmp(cp, "nibble:", sizeof("nibble:") - 1)) {
    626          1.1  christos 			if (ext == NULL)
    627          1.1  christos 				goto skip;
    628          1.1  christos 			cp += sizeof("nibble:") - 1;
    629          1.1  christos 			i = MIN(strcspn(cp, " \t"), sizeof(ext->nsuffix) - 1);
    630          1.2  christos 			strncpy(ext->nsuffix, cp, (size_t)i);
    631          1.1  christos 			ext->nsuffix[i] = '\0';
    632          1.1  christos 		}
    633          1.1  christos 		else if (!strncmp(cp, "nibble2:", sizeof("nibble2:") - 1)) {
    634          1.1  christos 			if (ext == NULL)
    635          1.1  christos 				goto skip;
    636          1.1  christos 			cp += sizeof("nibble2:") - 1;
    637          1.1  christos 			i = MIN(strcspn(cp, " \t"), sizeof(ext->nsuffix2) - 1);
    638          1.2  christos 			strncpy(ext->nsuffix2, cp, (size_t)i);
    639          1.1  christos 			ext->nsuffix2[i] = '\0';
    640          1.1  christos 		}
    641          1.1  christos 		else if (!strncmp(cp, "v6revmode:", sizeof("v6revmode:") - 1)) {
    642          1.1  christos 			cp += sizeof("v6revmode:") - 1;
    643          1.1  christos 			/* "nibble" and "bitstring" used to be valid */
    644          1.1  christos 			if (!strncmp(cp, "single", sizeof("single") - 1)) {
    645          1.1  christos 				statp->options |= RES_NO_NIBBLE2;
    646          1.1  christos 			} else if (!strncmp(cp, "both", sizeof("both") - 1)) {
    647          1.1  christos 				statp->options &=
    648          1.1  christos 					 ~RES_NO_NIBBLE2;
    649          1.1  christos 			}
    650          1.1  christos 		}
    651          1.1  christos 		else {
    652          1.1  christos 			/* XXX - print a warning here? */
    653          1.1  christos 		}
    654          1.1  christos    skip:
    655          1.1  christos 		/* skip to next run of spaces */
    656          1.1  christos 		while (*cp && *cp != ' ' && *cp != '\t')
    657          1.1  christos 			cp++;
    658          1.1  christos 	}
    659          1.1  christos }
    660          1.1  christos 
    661  1.8.4.2.2.1    bouyer #ifdef RESOLVSORT
    662          1.1  christos /* XXX - should really support CIDR which means explicit masks always. */
    663          1.1  christos static u_int32_t
    664      1.8.4.1       jdc net_mask(in)		/*!< XXX - should really use system's version of this  */
    665          1.1  christos 	struct in_addr in;
    666          1.1  christos {
    667          1.1  christos 	register u_int32_t i = ntohl(in.s_addr);
    668          1.1  christos 
    669          1.1  christos 	if (IN_CLASSA(i))
    670          1.1  christos 		return (htonl(IN_CLASSA_NET));
    671          1.1  christos 	else if (IN_CLASSB(i))
    672          1.1  christos 		return (htonl(IN_CLASSB_NET));
    673          1.1  christos 	return (htonl(IN_CLASSC_NET));
    674          1.1  christos }
    675  1.8.4.2.2.1    bouyer #endif
    676          1.1  christos 
    677          1.1  christos u_int
    678          1.1  christos res_randomid(void) {
    679          1.1  christos 	struct timeval now;
    680          1.1  christos 
    681          1.1  christos 	gettimeofday(&now, NULL);
    682          1.1  christos 	return (0xffff & (now.tv_sec ^ now.tv_usec ^ getpid()));
    683          1.1  christos }
    684          1.1  christos 
    685      1.8.4.1       jdc /*%
    686          1.1  christos  * This routine is for closing the socket if a virtual circuit is used and
    687          1.1  christos  * the program wants to close it.  This provides support for endhostent()
    688          1.1  christos  * which expects to close the socket.
    689          1.1  christos  *
    690          1.1  christos  * This routine is not expected to be user visible.
    691          1.1  christos  */
    692          1.1  christos void
    693          1.1  christos res_nclose(res_state statp) {
    694          1.1  christos 	int ns;
    695          1.1  christos 
    696          1.1  christos 	if (statp->_vcsock >= 0) {
    697          1.1  christos 		(void) close(statp->_vcsock);
    698          1.1  christos 		statp->_vcsock = -1;
    699          1.1  christos 		statp->_flags &= ~(RES_F_VC | RES_F_CONN);
    700          1.1  christos 	}
    701          1.1  christos 	for (ns = 0; ns < statp->_u._ext.nscount; ns++) {
    702          1.1  christos 		if (statp->_u._ext.nssocks[ns] != -1) {
    703          1.1  christos 			(void) close(statp->_u._ext.nssocks[ns]);
    704          1.1  christos 			statp->_u._ext.nssocks[ns] = -1;
    705          1.1  christos 		}
    706          1.1  christos 	}
    707          1.1  christos }
    708          1.1  christos 
    709          1.1  christos void
    710          1.1  christos res_ndestroy(res_state statp) {
    711          1.1  christos 	res_nclose(statp);
    712          1.1  christos 	if (statp->_u._ext.ext != NULL)
    713          1.1  christos 		free(statp->_u._ext.ext);
    714          1.1  christos 	statp->options &= ~RES_INIT;
    715          1.1  christos 	statp->_u._ext.ext = NULL;
    716          1.1  christos }
    717          1.1  christos 
    718          1.1  christos const char *
    719          1.1  christos res_get_nibblesuffix(res_state statp) {
    720          1.1  christos 	if (statp->_u._ext.ext)
    721          1.1  christos 		return (statp->_u._ext.ext->nsuffix);
    722          1.1  christos 	return ("ip6.arpa");
    723          1.1  christos }
    724          1.1  christos 
    725          1.1  christos const char *
    726          1.1  christos res_get_nibblesuffix2(res_state statp) {
    727          1.1  christos 	if (statp->_u._ext.ext)
    728          1.1  christos 		return (statp->_u._ext.ext->nsuffix2);
    729          1.1  christos 	return ("ip6.int");
    730          1.1  christos }
    731          1.1  christos 
    732          1.1  christos void
    733          1.1  christos res_setservers(res_state statp, const union res_sockaddr_union *set, int cnt) {
    734          1.1  christos 	int i, nserv;
    735          1.1  christos 	size_t size;
    736          1.1  christos 
    737          1.1  christos 	/* close open servers */
    738          1.1  christos 	res_nclose(statp);
    739          1.1  christos 
    740          1.1  christos 	/* cause rtt times to be forgotten */
    741          1.1  christos 	statp->_u._ext.nscount = 0;
    742          1.1  christos 
    743          1.1  christos 	nserv = 0;
    744          1.1  christos 	for (i = 0; i < cnt && nserv < MAXNS; i++) {
    745          1.1  christos 		switch (set->sin.sin_family) {
    746          1.1  christos 		case AF_INET:
    747          1.1  christos 			size = sizeof(set->sin);
    748          1.1  christos 			if (statp->_u._ext.ext)
    749          1.1  christos 				memcpy(&statp->_u._ext.ext->nsaddrs[nserv],
    750          1.1  christos 					&set->sin, size);
    751          1.1  christos 			if (size <= sizeof(statp->nsaddr_list[nserv]))
    752          1.1  christos 				memcpy(&statp->nsaddr_list[nserv],
    753          1.1  christos 					&set->sin, size);
    754          1.8  christos #ifdef notdef
    755          1.1  christos 			else
    756          1.1  christos 				statp->nsaddr_list[nserv].sin_family = 0;
    757          1.8  christos #endif
    758          1.1  christos 			nserv++;
    759          1.1  christos 			break;
    760          1.1  christos 
    761          1.1  christos #ifdef HAS_INET6_STRUCTS
    762          1.1  christos 		case AF_INET6:
    763          1.1  christos 			size = sizeof(set->sin6);
    764          1.1  christos 			if (statp->_u._ext.ext)
    765          1.1  christos 				memcpy(&statp->_u._ext.ext->nsaddrs[nserv],
    766          1.1  christos 					&set->sin6, size);
    767          1.1  christos 			if (size <= sizeof(statp->nsaddr_list[nserv]))
    768          1.1  christos 				memcpy(&statp->nsaddr_list[nserv],
    769          1.1  christos 					&set->sin6, size);
    770          1.1  christos 			else
    771          1.1  christos 				statp->nsaddr_list[nserv].sin_family = 0;
    772          1.1  christos 			nserv++;
    773          1.1  christos 			break;
    774          1.1  christos #endif
    775          1.1  christos 
    776          1.1  christos 		default:
    777          1.1  christos 			break;
    778          1.1  christos 		}
    779          1.1  christos 		set++;
    780          1.1  christos 	}
    781          1.1  christos 	statp->nscount = nserv;
    782          1.1  christos 
    783          1.1  christos }
    784          1.1  christos 
    785          1.1  christos int
    786          1.1  christos res_getservers(res_state statp, union res_sockaddr_union *set, int cnt) {
    787          1.1  christos 	int i;
    788          1.1  christos 	size_t size;
    789          1.1  christos 	u_int16_t family;
    790          1.1  christos 
    791          1.1  christos 	for (i = 0; i < statp->nscount && i < cnt; i++) {
    792          1.1  christos 		if (statp->_u._ext.ext)
    793          1.1  christos 			family = statp->_u._ext.ext->nsaddrs[i].sin.sin_family;
    794          1.1  christos 		else
    795          1.1  christos 			family = statp->nsaddr_list[i].sin_family;
    796          1.1  christos 
    797          1.1  christos 		switch (family) {
    798          1.1  christos 		case AF_INET:
    799          1.1  christos 			size = sizeof(set->sin);
    800          1.1  christos 			if (statp->_u._ext.ext)
    801          1.1  christos 				memcpy(&set->sin,
    802          1.1  christos 				       &statp->_u._ext.ext->nsaddrs[i],
    803          1.1  christos 				       size);
    804          1.1  christos 			else
    805          1.1  christos 				memcpy(&set->sin, &statp->nsaddr_list[i],
    806          1.1  christos 				       size);
    807          1.1  christos 			break;
    808          1.1  christos 
    809          1.1  christos #ifdef HAS_INET6_STRUCTS
    810          1.1  christos 		case AF_INET6:
    811          1.1  christos 			size = sizeof(set->sin6);
    812          1.1  christos 			if (statp->_u._ext.ext)
    813          1.1  christos 				memcpy(&set->sin6,
    814          1.1  christos 				       &statp->_u._ext.ext->nsaddrs[i],
    815          1.1  christos 				       size);
    816          1.1  christos 			else
    817          1.1  christos 				memcpy(&set->sin6, &statp->nsaddr_list[i],
    818          1.1  christos 				       size);
    819          1.1  christos 			break;
    820          1.1  christos #endif
    821          1.1  christos 
    822          1.1  christos 		default:
    823          1.1  christos 			set->sin.sin_family = 0;
    824          1.1  christos 			break;
    825          1.1  christos 		}
    826          1.1  christos 		set++;
    827          1.1  christos 	}
    828          1.1  christos 	return (statp->nscount);
    829          1.1  christos }
    830      1.8.4.1       jdc 
    831      1.8.4.1       jdc /*! \file */
    832