blob: 808f44cac62a6d778022fc39187dc386c7b8838a [file] [log] [blame]
Bernie Innocenti318ed2d2018-08-30 04:05:20 +09001/* $NetBSD: res_init.c,v 1.8 2006/03/19 03:10:08 christos Exp $ */
2
3/*
4 * Copyright (c) 1985, 1989, 1993
5 * The Regents of the University of California. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by the University of
18 * California, Berkeley and its contributors.
19 * 4. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 */
35
36/*
37 * Portions Copyright (c) 1993 by Digital Equipment Corporation.
38 *
39 * Permission to use, copy, modify, and distribute this software for any
40 * purpose with or without fee is hereby granted, provided that the above
41 * copyright notice and this permission notice appear in all copies, and that
42 * the name of Digital Equipment Corporation not be used in advertising or
43 * publicity pertaining to distribution of the document or software without
44 * specific, written prior permission.
45 *
46 * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
47 * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
48 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT
49 * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
50 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
51 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
52 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
53 * SOFTWARE.
54 */
55
56/*
57 * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
58 * Portions Copyright (c) 1996-1999 by Internet Software Consortium.
59 *
60 * Permission to use, copy, modify, and distribute this software for any
61 * purpose with or without fee is hereby granted, provided that the above
62 * copyright notice and this permission notice appear in all copies.
63 *
64 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
65 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
66 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
67 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
68 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
69 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
70 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
71 */
72
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090073#include <sys/param.h>
74#include <sys/socket.h>
75#include <sys/time.h>
Bernie Innocenti8ad893f2018-08-31 14:09:46 +090076#include <sys/types.h>
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090077
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090078#include <arpa/inet.h>
79#include <arpa/nameser.h>
Bernie Innocenti8ad893f2018-08-31 14:09:46 +090080#include <netinet/in.h>
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090081
82#include <ctype.h>
Bernie Innocentif33a63f2018-08-30 12:04:03 +090083#include <errno.h>
84#include <fcntl.h>
Bernie Innocenti8ad893f2018-08-31 14:09:46 +090085#include <netdb.h>
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090086#include <stdio.h>
87#include <stdlib.h>
88#include <string.h>
89#include <unistd.h>
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090090
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090091/* ensure that sockaddr_in6 and IN6ADDR_ANY_INIT are declared / defined */
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090092#include "resolv_netid.h"
93#include "resolv_private.h"
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090094
95#include "res_private.h"
96
97/* Options. Should all be left alone. */
98#ifndef DEBUG
99#define DEBUG
100#endif
101
Bernie Innocentif33a63f2018-08-30 12:04:03 +0900102static void res_setoptions(res_state, const char*, const char*);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900103
104/*
105 * Resolver state default settings.
106 */
107
108/*
109 * Set up default settings. If the configuration file exist, the values
110 * there will have precedence. Otherwise, the server address is set to
111 * INADDR_ANY and the default domain name comes from the gethostname().
112 *
113 * An interrim version of this code (BIND 4.9, pre-4.4BSD) used 127.0.0.1
114 * rather than INADDR_ANY ("0.0.0.0") as the default name server address
115 * since it was noted that INADDR_ANY actually meant ``the first interface
116 * you "ifconfig"'d at boot time'' and if this was a SLIP or PPP interface,
117 * it had to be "up" in order for you to reach your own name server. It
118 * was later decided that since the recommended practice is to always
119 * install local static routes through 127.0.0.1 for all your network
120 * interfaces, that we could solve this problem without a code change.
121 *
122 * The configuration file should always be used, since it is the only way
123 * to specify a default domain. If you are running a server on your local
124 * machine, you should say "nameserver 0.0.0.0" or "nameserver 127.0.0.1"
125 * in the configuration file.
126 *
127 * Return 0 if completes successfully, -1 on error
128 */
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900129int res_ninit(res_state statp) {
Bernie Innocenti2e8540b2018-09-26 11:52:04 +0900130 return res_vinit(statp, 0);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900131}
132
133/* This function has to be reachable by res_data.c but not publicly. */
Bernie Innocenti2e8540b2018-09-26 11:52:04 +0900134int res_vinit(res_state statp, int preinit) {
Bernie Innocenti9c575932018-09-07 21:10:25 +0900135 char *cp, **pp;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900136 char buf[BUFSIZ];
137 int nserv = 0; /* number of nameserver records read from file */
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900138 int havesearch = 0;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900139 int dots;
140 union res_sockaddr_union u[2];
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900141
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900142 if ((statp->options & RES_INIT) != 0U) res_ndestroy(statp);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900143
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900144 if (!preinit) {
145 statp->netid = NETID_UNSET;
146 statp->retrans = RES_TIMEOUT;
147 statp->retry = RES_DFLRETRY;
148 statp->options = RES_DEFAULT;
149 statp->id = res_randomid();
150 statp->_mark = MARK_UNSET;
151 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900152
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900153 memset(u, 0, sizeof(u));
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900154 u[nserv].sin.sin_addr.s_addr = INADDR_ANY;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900155 u[nserv].sin.sin_family = AF_INET;
156 u[nserv].sin.sin_port = htons(NAMESERVER_PORT);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900157 nserv++;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900158 statp->nscount = 0;
159 statp->ndots = 1;
160 statp->pfcode = 0;
161 statp->_vcsock = -1;
162 statp->_flags = 0;
163 statp->qhook = NULL;
164 statp->rhook = NULL;
165 statp->_u._ext.nscount = 0;
Bernie Innocenti9c575932018-09-07 21:10:25 +0900166 statp->_u._ext.ext = (struct __res_state_ext*) malloc(sizeof(*statp->_u._ext.ext));
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900167 if (statp->_u._ext.ext != NULL) {
168 memset(statp->_u._ext.ext, 0, sizeof(*statp->_u._ext.ext));
169 statp->_u._ext.ext->nsaddrs[0].sin = statp->nsaddr;
170 strcpy(statp->_u._ext.ext->nsuffix, "ip6.arpa");
171 strcpy(statp->_u._ext.ext->nsuffix2, "ip6.int");
172 }
173 statp->nsort = 0;
174 res_setservers(statp, u, nserv);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900175
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900176 if (statp->defdname[0] == 0 && gethostname(buf, sizeof(statp->defdname) - 1) == 0 &&
177 (cp = strchr(buf, '.')) != NULL)
178 strcpy(statp->defdname, cp + 1);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900179
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900180 /* find components of local domain that might be searched */
181 if (havesearch == 0) {
182 pp = statp->dnsrch;
183 *pp++ = statp->defdname;
184 *pp = NULL;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900185
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900186 dots = 0;
187 for (cp = statp->defdname; *cp; cp++) dots += (*cp == '.');
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900188
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900189 cp = statp->defdname;
190 while (pp < statp->dnsrch + MAXDFLSRCH) {
191 if (dots < LOCALDOMAINPARTS) break;
192 cp = strchr(cp, '.') + 1; /* we know there is one */
193 *pp++ = cp;
194 dots--;
195 }
196 *pp = NULL;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900197#ifdef DEBUG
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900198 if (statp->options & RES_DEBUG) {
199 printf(";; res_init()... default dnsrch list:\n");
200 for (pp = statp->dnsrch; *pp; pp++) printf(";;\t%s\n", *pp);
201 printf(";;\t..END..\n");
202 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900203#endif
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900204 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900205
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900206 if ((cp = getenv("RES_OPTIONS")) != NULL) res_setoptions(statp, cp, "env");
207 if (nserv > 0) {
208 statp->nscount = nserv;
209 statp->options |= RES_INIT;
210 }
211 return (0);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900212}
213
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900214static void res_setoptions(res_state statp, const char* options, const char* source) {
215 const char* cp = options;
216 int i;
217 struct __res_state_ext* ext = statp->_u._ext.ext;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900218
219#ifdef DEBUG
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900220 if (statp->options & RES_DEBUG)
221 printf(";; res_setoptions(\"%s\", \"%s\")...\n", options, source);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900222#endif
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900223 while (*cp) {
224 /* skip leading and inner runs of spaces */
225 while (*cp == ' ' || *cp == '\t') cp++;
226 /* search for and process individual options */
227 if (!strncmp(cp, "ndots:", sizeof("ndots:") - 1)) {
228 i = atoi(cp + sizeof("ndots:") - 1);
229 if (i <= RES_MAXNDOTS)
230 statp->ndots = i;
231 else
232 statp->ndots = RES_MAXNDOTS;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900233#ifdef DEBUG
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900234 if (statp->options & RES_DEBUG) printf(";;\tndots=%d\n", statp->ndots);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900235#endif
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900236 } else if (!strncmp(cp, "timeout:", sizeof("timeout:") - 1)) {
237 i = atoi(cp + sizeof("timeout:") - 1);
238 if (i <= RES_MAXRETRANS)
239 statp->retrans = i;
240 else
241 statp->retrans = RES_MAXRETRANS;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900242#ifdef DEBUG
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900243 if (statp->options & RES_DEBUG) printf(";;\ttimeout=%d\n", statp->retrans);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900244#endif
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900245 } else if (!strncmp(cp, "attempts:", sizeof("attempts:") - 1)) {
246 i = atoi(cp + sizeof("attempts:") - 1);
247 if (i <= RES_MAXRETRY)
248 statp->retry = i;
249 else
250 statp->retry = RES_MAXRETRY;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900251#ifdef DEBUG
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900252 if (statp->options & RES_DEBUG) printf(";;\tattempts=%d\n", statp->retry);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900253#endif
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900254 } else if (!strncmp(cp, "debug", sizeof("debug") - 1)) {
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900255#ifdef DEBUG
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900256 if (!(statp->options & RES_DEBUG)) {
257 printf(";; res_setoptions(\"%s\", \"%s\")..\n", options, source);
258 statp->options |= RES_DEBUG;
259 }
260 printf(";;\tdebug\n");
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900261#endif
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900262 } else if (!strncmp(cp, "no_tld_query", sizeof("no_tld_query") - 1) ||
263 !strncmp(cp, "no-tld-query", sizeof("no-tld-query") - 1)) {
264 statp->options |= RES_NOTLDQUERY;
265 } else if (!strncmp(cp, "inet6", sizeof("inet6") - 1)) {
266 statp->options |= RES_USE_INET6;
267 } else if (!strncmp(cp, "rotate", sizeof("rotate") - 1)) {
268 statp->options |= RES_ROTATE;
269 } else if (!strncmp(cp, "no-check-names", sizeof("no-check-names") - 1)) {
270 statp->options |= RES_NOCHECKNAME;
271 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900272#ifdef RES_USE_EDNS0
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900273 else if (!strncmp(cp, "edns0", sizeof("edns0") - 1)) {
274 statp->options |= RES_USE_EDNS0;
275 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900276#endif
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900277 else if (!strncmp(cp, "dname", sizeof("dname") - 1)) {
278 statp->options |= RES_USE_DNAME;
279 } else if (!strncmp(cp, "nibble:", sizeof("nibble:") - 1)) {
280 if (ext == NULL) goto skip;
281 cp += sizeof("nibble:") - 1;
282 i = MIN(strcspn(cp, " \t"), sizeof(ext->nsuffix) - 1);
283 strncpy(ext->nsuffix, cp, (size_t) i);
284 ext->nsuffix[i] = '\0';
285 } else if (!strncmp(cp, "nibble2:", sizeof("nibble2:") - 1)) {
286 if (ext == NULL) goto skip;
287 cp += sizeof("nibble2:") - 1;
288 i = MIN(strcspn(cp, " \t"), sizeof(ext->nsuffix2) - 1);
289 strncpy(ext->nsuffix2, cp, (size_t) i);
290 ext->nsuffix2[i] = '\0';
291 } else if (!strncmp(cp, "v6revmode:", sizeof("v6revmode:") - 1)) {
292 cp += sizeof("v6revmode:") - 1;
293 /* "nibble" and "bitstring" used to be valid */
294 if (!strncmp(cp, "single", sizeof("single") - 1)) {
295 statp->options |= RES_NO_NIBBLE2;
296 } else if (!strncmp(cp, "both", sizeof("both") - 1)) {
297 statp->options &= ~RES_NO_NIBBLE2;
298 }
299 } else {
300 /* XXX - print a warning here? */
301 }
302 skip:
303 /* skip to next run of spaces */
304 while (*cp && *cp != ' ' && *cp != '\t') cp++;
305 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900306}
307
Bernie Innocentif33a63f2018-08-30 12:04:03 +0900308/*
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900309 * This routine is for closing the socket if a virtual circuit is used and
310 * the program wants to close it. This provides support for endhostent()
311 * which expects to close the socket.
312 *
313 * This routine is not expected to be user visible.
314 */
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900315void res_nclose(res_state statp) {
316 int ns;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900317
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900318 if (statp->_vcsock >= 0) {
319 (void) close(statp->_vcsock);
320 statp->_vcsock = -1;
321 statp->_flags &= ~(RES_F_VC | RES_F_CONN);
322 }
323 for (ns = 0; ns < statp->_u._ext.nscount; ns++) {
324 if (statp->_u._ext.nssocks[ns] != -1) {
325 (void) close(statp->_u._ext.nssocks[ns]);
326 statp->_u._ext.nssocks[ns] = -1;
327 }
328 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900329}
330
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900331void res_ndestroy(res_state statp) {
332 res_nclose(statp);
333 if (statp->_u._ext.ext != NULL) free(statp->_u._ext.ext);
334 statp->options &= ~RES_INIT;
335 statp->_u._ext.ext = NULL;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900336}
337
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900338void res_setservers(res_state statp, const union res_sockaddr_union* set, int cnt) {
339 int i, nserv;
340 size_t size;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900341
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900342 /* close open servers */
343 res_nclose(statp);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900344
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900345 /* cause rtt times to be forgotten */
346 statp->_u._ext.nscount = 0;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900347
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900348 nserv = 0;
349 for (i = 0; i < cnt && nserv < MAXNS; i++) {
350 switch (set->sin.sin_family) {
351 case AF_INET:
352 size = sizeof(set->sin);
353 if (statp->_u._ext.ext)
354 memcpy(&statp->_u._ext.ext->nsaddrs[nserv], &set->sin, size);
355 if (size <= sizeof(statp->nsaddr_list[nserv]))
356 memcpy(&statp->nsaddr_list[nserv], &set->sin, size);
357 else
358 statp->nsaddr_list[nserv].sin_family = 0;
359 nserv++;
360 break;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900361
362#ifdef HAS_INET6_STRUCTS
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900363 case AF_INET6:
364 size = sizeof(set->sin6);
365 if (statp->_u._ext.ext)
366 memcpy(&statp->_u._ext.ext->nsaddrs[nserv], &set->sin6, size);
367 if (size <= sizeof(statp->nsaddr_list[nserv]))
368 memcpy(&statp->nsaddr_list[nserv], &set->sin6, size);
369 else
370 statp->nsaddr_list[nserv].sin_family = 0;
371 nserv++;
372 break;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900373#endif
374
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900375 default:
376 break;
377 }
378 set++;
379 }
380 statp->nscount = nserv;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900381}
382
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900383int res_getservers(res_state statp, union res_sockaddr_union* set, int cnt) {
384 int i;
385 size_t size;
386 uint16_t family;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900387
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900388 for (i = 0; i < statp->nscount && i < cnt; i++) {
389 if (statp->_u._ext.ext)
390 family = statp->_u._ext.ext->nsaddrs[i].sin.sin_family;
391 else
392 family = statp->nsaddr_list[i].sin_family;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900393
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900394 switch (family) {
395 case AF_INET:
396 size = sizeof(set->sin);
397 if (statp->_u._ext.ext)
398 memcpy(&set->sin, &statp->_u._ext.ext->nsaddrs[i], size);
399 else
400 memcpy(&set->sin, &statp->nsaddr_list[i], size);
401 break;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900402
403#ifdef HAS_INET6_STRUCTS
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900404 case AF_INET6:
405 size = sizeof(set->sin6);
406 if (statp->_u._ext.ext)
407 memcpy(&set->sin6, &statp->_u._ext.ext->nsaddrs[i], size);
408 else
409 memcpy(&set->sin6, &statp->nsaddr_list[i], size);
410 break;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900411#endif
412
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900413 default:
414 set->sin.sin_family = 0;
415 break;
416 }
417 set++;
418 }
419 return (statp->nscount);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900420}
421
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900422void res_setnetcontext(res_state statp, const struct android_net_context* netcontext) {
423 if (statp != NULL) {
424 statp->netid = netcontext->dns_netid;
425 statp->_mark = netcontext->dns_mark;
426 statp->qhook = netcontext->qhook;
427 if (netcontext->flags & NET_CONTEXT_FLAG_USE_EDNS) {
428 statp->options |= RES_USE_EDNS0 | RES_USE_DNSSEC;
429 }
430 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900431}