blob: d222ac20081ad5c893c6604c1a88915ed0cf4a38 [file] [log] [blame]
Bernie Innocenti55864192018-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 Innocenti55864192018-08-30 04:05:20 +090073#include <sys/param.h>
74#include <sys/socket.h>
75#include <sys/time.h>
Bernie Innocentif12d5bb2018-08-31 14:09:46 +090076#include <sys/types.h>
Bernie Innocenti55864192018-08-30 04:05:20 +090077
Bernie Innocenti55864192018-08-30 04:05:20 +090078#include <arpa/inet.h>
79#include <arpa/nameser.h>
Bernie Innocentif12d5bb2018-08-31 14:09:46 +090080#include <netinet/in.h>
Bernie Innocenti55864192018-08-30 04:05:20 +090081
82#include <ctype.h>
Bernie Innocenti2fd418e2018-08-30 12:04:03 +090083#include <errno.h>
84#include <fcntl.h>
Bernie Innocentif12d5bb2018-08-31 14:09:46 +090085#include <netdb.h>
Bernie Innocenti55864192018-08-30 04:05:20 +090086#include <stdio.h>
87#include <stdlib.h>
88#include <string.h>
89#include <unistd.h>
Bernie Innocenti55864192018-08-30 04:05:20 +090090
Bernie Innocenti55864192018-08-30 04:05:20 +090091/* ensure that sockaddr_in6 and IN6ADDR_ANY_INIT are declared / defined */
Bernie Innocenti55864192018-08-30 04:05:20 +090092#include "resolv_netid.h"
93#include "resolv_private.h"
Bernie Innocenti55864192018-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 Innocenti2fd418e2018-08-30 12:04:03 +0900102static void res_setoptions(res_state, const char*, const char*);
Bernie Innocenti55864192018-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 Innocentif12d5bb2018-08-31 14:09:46 +0900129int res_ninit(res_state statp) {
Bernie Innocenti4acba1a2018-09-26 11:52:04 +0900130 return res_vinit(statp, 0);
Bernie Innocenti55864192018-08-30 04:05:20 +0900131}
132
133/* This function has to be reachable by res_data.c but not publicly. */
Bernie Innocenti4acba1a2018-09-26 11:52:04 +0900134int res_vinit(res_state statp, int preinit) {
Bernie Innocenti1f4a9fd2018-09-07 21:10:25 +0900135 char *cp, **pp;
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900136 char buf[BUFSIZ];
137 int nserv = 0; /* number of nameserver records read from file */
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900138 int havesearch = 0;
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900139 int dots;
140 union res_sockaddr_union u[2];
Bernie Innocenti55864192018-08-30 04:05:20 +0900141
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900142 if ((statp->options & RES_INIT) != 0U) res_ndestroy(statp);
Bernie Innocenti55864192018-08-30 04:05:20 +0900143
Bernie Innocentif12d5bb2018-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 Innocenti55864192018-08-30 04:05:20 +0900152
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900153 memset(u, 0, sizeof(u));
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900154 u[nserv].sin.sin_addr.s_addr = INADDR_ANY;
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900155 u[nserv].sin.sin_family = AF_INET;
156 u[nserv].sin.sin_port = htons(NAMESERVER_PORT);
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900157 nserv++;
Bernie Innocentif12d5bb2018-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 Innocenti1f4a9fd2018-09-07 21:10:25 +0900166 statp->_u._ext.ext = (struct __res_state_ext*) malloc(sizeof(*statp->_u._ext.ext));
Bernie Innocentif12d5bb2018-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 Innocenti55864192018-08-30 04:05:20 +0900175
Bernie Innocentif12d5bb2018-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 Innocenti55864192018-08-30 04:05:20 +0900179
Bernie Innocentif12d5bb2018-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 Innocenti55864192018-08-30 04:05:20 +0900185
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900186 dots = 0;
187 for (cp = statp->defdname; *cp; cp++) dots += (*cp == '.');
Bernie Innocenti55864192018-08-30 04:05:20 +0900188
Bernie Innocentif12d5bb2018-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 Innocenti55864192018-08-30 04:05:20 +0900197#ifdef DEBUG
Bernie Innocentif12d5bb2018-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 Innocenti55864192018-08-30 04:05:20 +0900203#endif
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900204 }
Bernie Innocenti55864192018-08-30 04:05:20 +0900205
Bernie Innocentif12d5bb2018-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 Innocenti55864192018-08-30 04:05:20 +0900212}
213
Bernie Innocentif12d5bb2018-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 Innocenti55864192018-08-30 04:05:20 +0900218
219#ifdef DEBUG
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900220 if (statp->options & RES_DEBUG)
221 printf(";; res_setoptions(\"%s\", \"%s\")...\n", options, source);
Bernie Innocenti55864192018-08-30 04:05:20 +0900222#endif
Bernie Innocentif12d5bb2018-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 Innocenti55864192018-08-30 04:05:20 +0900233#ifdef DEBUG
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900234 if (statp->options & RES_DEBUG) printf(";;\tndots=%d\n", statp->ndots);
Bernie Innocenti55864192018-08-30 04:05:20 +0900235#endif
Bernie Innocentif12d5bb2018-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 Innocenti55864192018-08-30 04:05:20 +0900242#ifdef DEBUG
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900243 if (statp->options & RES_DEBUG) printf(";;\ttimeout=%d\n", statp->retrans);
Bernie Innocenti55864192018-08-30 04:05:20 +0900244#endif
Bernie Innocentif12d5bb2018-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 Innocenti55864192018-08-30 04:05:20 +0900251#ifdef DEBUG
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900252 if (statp->options & RES_DEBUG) printf(";;\tattempts=%d\n", statp->retry);
Bernie Innocenti55864192018-08-30 04:05:20 +0900253#endif
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900254 } else if (!strncmp(cp, "debug", sizeof("debug") - 1)) {
Bernie Innocenti55864192018-08-30 04:05:20 +0900255#ifdef DEBUG
Bernie Innocentif12d5bb2018-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 Innocenti55864192018-08-30 04:05:20 +0900261#endif
Bernie Innocentif12d5bb2018-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 Innocentif12d5bb2018-08-31 14:09:46 +0900272 else if (!strncmp(cp, "edns0", sizeof("edns0") - 1)) {
273 statp->options |= RES_USE_EDNS0;
274 }
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900275 else if (!strncmp(cp, "dname", sizeof("dname") - 1)) {
276 statp->options |= RES_USE_DNAME;
277 } else if (!strncmp(cp, "nibble:", sizeof("nibble:") - 1)) {
278 if (ext == NULL) goto skip;
279 cp += sizeof("nibble:") - 1;
280 i = MIN(strcspn(cp, " \t"), sizeof(ext->nsuffix) - 1);
281 strncpy(ext->nsuffix, cp, (size_t) i);
282 ext->nsuffix[i] = '\0';
283 } else if (!strncmp(cp, "nibble2:", sizeof("nibble2:") - 1)) {
284 if (ext == NULL) goto skip;
285 cp += sizeof("nibble2:") - 1;
286 i = MIN(strcspn(cp, " \t"), sizeof(ext->nsuffix2) - 1);
287 strncpy(ext->nsuffix2, cp, (size_t) i);
288 ext->nsuffix2[i] = '\0';
289 } else if (!strncmp(cp, "v6revmode:", sizeof("v6revmode:") - 1)) {
290 cp += sizeof("v6revmode:") - 1;
291 /* "nibble" and "bitstring" used to be valid */
292 if (!strncmp(cp, "single", sizeof("single") - 1)) {
293 statp->options |= RES_NO_NIBBLE2;
294 } else if (!strncmp(cp, "both", sizeof("both") - 1)) {
295 statp->options &= ~RES_NO_NIBBLE2;
296 }
297 } else {
298 /* XXX - print a warning here? */
299 }
300 skip:
301 /* skip to next run of spaces */
302 while (*cp && *cp != ' ' && *cp != '\t') cp++;
303 }
Bernie Innocenti55864192018-08-30 04:05:20 +0900304}
305
Bernie Innocenti2fd418e2018-08-30 12:04:03 +0900306/*
Bernie Innocenti55864192018-08-30 04:05:20 +0900307 * This routine is for closing the socket if a virtual circuit is used and
308 * the program wants to close it. This provides support for endhostent()
309 * which expects to close the socket.
310 *
311 * This routine is not expected to be user visible.
312 */
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900313void res_nclose(res_state statp) {
314 int ns;
Bernie Innocenti55864192018-08-30 04:05:20 +0900315
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900316 if (statp->_vcsock >= 0) {
317 (void) close(statp->_vcsock);
318 statp->_vcsock = -1;
319 statp->_flags &= ~(RES_F_VC | RES_F_CONN);
320 }
321 for (ns = 0; ns < statp->_u._ext.nscount; ns++) {
322 if (statp->_u._ext.nssocks[ns] != -1) {
323 (void) close(statp->_u._ext.nssocks[ns]);
324 statp->_u._ext.nssocks[ns] = -1;
325 }
326 }
Bernie Innocenti55864192018-08-30 04:05:20 +0900327}
328
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900329void res_ndestroy(res_state statp) {
330 res_nclose(statp);
331 if (statp->_u._ext.ext != NULL) free(statp->_u._ext.ext);
332 statp->options &= ~RES_INIT;
333 statp->_u._ext.ext = NULL;
Bernie Innocenti55864192018-08-30 04:05:20 +0900334}
335
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900336void res_setservers(res_state statp, const union res_sockaddr_union* set, int cnt) {
337 int i, nserv;
338 size_t size;
Bernie Innocenti55864192018-08-30 04:05:20 +0900339
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900340 /* close open servers */
341 res_nclose(statp);
Bernie Innocenti55864192018-08-30 04:05:20 +0900342
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900343 /* cause rtt times to be forgotten */
344 statp->_u._ext.nscount = 0;
Bernie Innocenti55864192018-08-30 04:05:20 +0900345
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900346 nserv = 0;
347 for (i = 0; i < cnt && nserv < MAXNS; i++) {
348 switch (set->sin.sin_family) {
349 case AF_INET:
350 size = sizeof(set->sin);
351 if (statp->_u._ext.ext)
352 memcpy(&statp->_u._ext.ext->nsaddrs[nserv], &set->sin, size);
353 if (size <= sizeof(statp->nsaddr_list[nserv]))
354 memcpy(&statp->nsaddr_list[nserv], &set->sin, size);
355 else
356 statp->nsaddr_list[nserv].sin_family = 0;
357 nserv++;
358 break;
Bernie Innocenti55864192018-08-30 04:05:20 +0900359
360#ifdef HAS_INET6_STRUCTS
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900361 case AF_INET6:
362 size = sizeof(set->sin6);
363 if (statp->_u._ext.ext)
364 memcpy(&statp->_u._ext.ext->nsaddrs[nserv], &set->sin6, size);
365 if (size <= sizeof(statp->nsaddr_list[nserv]))
366 memcpy(&statp->nsaddr_list[nserv], &set->sin6, size);
367 else
368 statp->nsaddr_list[nserv].sin_family = 0;
369 nserv++;
370 break;
Bernie Innocenti55864192018-08-30 04:05:20 +0900371#endif
372
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900373 default:
374 break;
375 }
376 set++;
377 }
378 statp->nscount = nserv;
Bernie Innocenti55864192018-08-30 04:05:20 +0900379}
380
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900381int res_getservers(res_state statp, union res_sockaddr_union* set, int cnt) {
382 int i;
383 size_t size;
384 uint16_t family;
Bernie Innocenti55864192018-08-30 04:05:20 +0900385
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900386 for (i = 0; i < statp->nscount && i < cnt; i++) {
387 if (statp->_u._ext.ext)
388 family = statp->_u._ext.ext->nsaddrs[i].sin.sin_family;
389 else
390 family = statp->nsaddr_list[i].sin_family;
Bernie Innocenti55864192018-08-30 04:05:20 +0900391
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900392 switch (family) {
393 case AF_INET:
394 size = sizeof(set->sin);
395 if (statp->_u._ext.ext)
396 memcpy(&set->sin, &statp->_u._ext.ext->nsaddrs[i], size);
397 else
398 memcpy(&set->sin, &statp->nsaddr_list[i], size);
399 break;
Bernie Innocenti55864192018-08-30 04:05:20 +0900400
401#ifdef HAS_INET6_STRUCTS
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900402 case AF_INET6:
403 size = sizeof(set->sin6);
404 if (statp->_u._ext.ext)
405 memcpy(&set->sin6, &statp->_u._ext.ext->nsaddrs[i], size);
406 else
407 memcpy(&set->sin6, &statp->nsaddr_list[i], size);
408 break;
Bernie Innocenti55864192018-08-30 04:05:20 +0900409#endif
410
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900411 default:
412 set->sin.sin_family = 0;
413 break;
414 }
415 set++;
416 }
417 return (statp->nscount);
Bernie Innocenti55864192018-08-30 04:05:20 +0900418}
419
Bernie Innocentif12d5bb2018-08-31 14:09:46 +0900420void res_setnetcontext(res_state statp, const struct android_net_context* netcontext) {
421 if (statp != NULL) {
422 statp->netid = netcontext->dns_netid;
423 statp->_mark = netcontext->dns_mark;
424 statp->qhook = netcontext->qhook;
425 if (netcontext->flags & NET_CONTEXT_FLAG_USE_EDNS) {
426 statp->options |= RES_USE_EDNS0 | RES_USE_DNSSEC;
427 }
428 }
Bernie Innocenti55864192018-08-30 04:05:20 +0900429}