blob: ceb302327cbb4fc669eaad694fb43c2ca4cd6e61 [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 */
Bernie Innocenti3952ccc2019-03-03 19:39:53 +090072
73#define LOG_TAG "res_init"
74
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090075#include <sys/param.h>
76#include <sys/socket.h>
77#include <sys/time.h>
Bernie Innocenti8ad893f2018-08-31 14:09:46 +090078#include <sys/types.h>
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090079
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090080#include <arpa/inet.h>
81#include <arpa/nameser.h>
Bernie Innocenti8ad893f2018-08-31 14:09:46 +090082#include <netinet/in.h>
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090083
chenbruceacb832c2019-02-20 19:45:50 +080084#include <android-base/logging.h>
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090085#include <ctype.h>
Bernie Innocentif33a63f2018-08-30 12:04:03 +090086#include <errno.h>
87#include <fcntl.h>
Bernie Innocenti8ad893f2018-08-31 14:09:46 +090088#include <netdb.h>
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090089#include <stdio.h>
90#include <stdlib.h>
91#include <string.h>
92#include <unistd.h>
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090093
Bernie Innocentiac18b122018-10-01 23:10:18 +090094#include "netd_resolv/resolv.h"
95#include "res_state_ext.h"
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090096#include "resolv_private.h"
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090097
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090098
Bernie Innocentif33a63f2018-08-30 12:04:03 +090099static void res_setoptions(res_state, const char*, const char*);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900100
101/*
102 * Resolver state default settings.
103 */
104
105/*
106 * Set up default settings. If the configuration file exist, the values
107 * there will have precedence. Otherwise, the server address is set to
108 * INADDR_ANY and the default domain name comes from the gethostname().
109 *
110 * An interrim version of this code (BIND 4.9, pre-4.4BSD) used 127.0.0.1
111 * rather than INADDR_ANY ("0.0.0.0") as the default name server address
112 * since it was noted that INADDR_ANY actually meant ``the first interface
113 * you "ifconfig"'d at boot time'' and if this was a SLIP or PPP interface,
114 * it had to be "up" in order for you to reach your own name server. It
115 * was later decided that since the recommended practice is to always
116 * install local static routes through 127.0.0.1 for all your network
117 * interfaces, that we could solve this problem without a code change.
118 *
119 * The configuration file should always be used, since it is the only way
120 * to specify a default domain. If you are running a server on your local
121 * machine, you should say "nameserver 0.0.0.0" or "nameserver 127.0.0.1"
122 * in the configuration file.
123 *
124 * Return 0 if completes successfully, -1 on error
125 */
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900126int res_ninit(res_state statp) {
Bernie Innocenti2e8540b2018-09-26 11:52:04 +0900127 return res_vinit(statp, 0);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900128}
129
130/* This function has to be reachable by res_data.c but not publicly. */
Bernie Innocenti2e8540b2018-09-26 11:52:04 +0900131int res_vinit(res_state statp, int preinit) {
Bernie Innocenti9c575932018-09-07 21:10:25 +0900132 char *cp, **pp;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900133 char buf[BUFSIZ];
134 int nserv = 0; /* number of nameserver records read from file */
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900135 int havesearch = 0;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900136 int dots;
nuccachenb980f2f2018-10-23 17:10:58 +0800137 sockaddr_union u[2];
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900138
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900139 if ((statp->options & RES_INIT) != 0U) res_ndestroy(statp);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900140
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900141 if (!preinit) {
142 statp->netid = NETID_UNSET;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900143 statp->options = RES_DEFAULT;
Luke Huangdda920f2019-02-13 14:05:02 +0800144 statp->id = arc4random_uniform(65536);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900145 statp->_mark = MARK_UNSET;
146 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900147
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900148 memset(u, 0, sizeof(u));
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900149 u[nserv].sin.sin_addr.s_addr = INADDR_ANY;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900150 u[nserv].sin.sin_family = AF_INET;
151 u[nserv].sin.sin_port = htons(NAMESERVER_PORT);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900152 nserv++;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900153 statp->nscount = 0;
154 statp->ndots = 1;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900155 statp->_vcsock = -1;
156 statp->_flags = 0;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900157 statp->_u._ext.nscount = 0;
Bernie Innocentiac18b122018-10-01 23:10:18 +0900158 statp->_u._ext.ext = (res_state_ext*) malloc(sizeof(*statp->_u._ext.ext));
Mike Yub601ff72018-11-01 20:07:00 +0800159 statp->use_local_nameserver = false;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900160 if (statp->_u._ext.ext != NULL) {
161 memset(statp->_u._ext.ext, 0, sizeof(*statp->_u._ext.ext));
162 statp->_u._ext.ext->nsaddrs[0].sin = statp->nsaddr;
163 strcpy(statp->_u._ext.ext->nsuffix, "ip6.arpa");
164 strcpy(statp->_u._ext.ext->nsuffix2, "ip6.int");
165 }
166 statp->nsort = 0;
167 res_setservers(statp, u, nserv);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900168
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900169 if (statp->defdname[0] == 0 && gethostname(buf, sizeof(statp->defdname) - 1) == 0 &&
170 (cp = strchr(buf, '.')) != NULL)
171 strcpy(statp->defdname, cp + 1);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900172
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900173 /* find components of local domain that might be searched */
174 if (havesearch == 0) {
175 pp = statp->dnsrch;
176 *pp++ = statp->defdname;
177 *pp = NULL;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900178
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900179 dots = 0;
180 for (cp = statp->defdname; *cp; cp++) dots += (*cp == '.');
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900181
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900182 cp = statp->defdname;
183 while (pp < statp->dnsrch + MAXDFLSRCH) {
184 if (dots < LOCALDOMAINPARTS) break;
185 cp = strchr(cp, '.') + 1; /* we know there is one */
186 *pp++ = cp;
187 dots--;
188 }
189 *pp = NULL;
Ken Chenffc224a2019-03-19 17:41:28 +0800190 LOG(DEBUG) << __func__ << ": dnsrch list:";
Bernie Innocenti3952ccc2019-03-03 19:39:53 +0900191 for (pp = statp->dnsrch; *pp; pp++) LOG(DEBUG) << "\t" << *pp;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900192 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900193
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900194 if ((cp = getenv("RES_OPTIONS")) != NULL) res_setoptions(statp, cp, "env");
195 if (nserv > 0) {
196 statp->nscount = nserv;
197 statp->options |= RES_INIT;
198 }
199 return (0);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900200}
201
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900202static void res_setoptions(res_state statp, const char* options, const char* source) {
203 const char* cp = options;
204 int i;
Bernie Innocentiac18b122018-10-01 23:10:18 +0900205 res_state_ext* ext = statp->_u._ext.ext;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900206
Ken Chenffc224a2019-03-19 17:41:28 +0800207 LOG(DEBUG) << "res_setoptions(\"" << options << "\", \"" << source << "\")...";
chenbruceacb832c2019-02-20 19:45:50 +0800208
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900209 while (*cp) {
210 /* skip leading and inner runs of spaces */
211 while (*cp == ' ' || *cp == '\t') cp++;
212 /* search for and process individual options */
213 if (!strncmp(cp, "ndots:", sizeof("ndots:") - 1)) {
214 i = atoi(cp + sizeof("ndots:") - 1);
215 if (i <= RES_MAXNDOTS)
216 statp->ndots = i;
217 else
218 statp->ndots = RES_MAXNDOTS;
Ken Chenffc224a2019-03-19 17:41:28 +0800219 LOG(DEBUG) << "\tndots=" << statp->ndots;
chenbruceacb832c2019-02-20 19:45:50 +0800220
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900221 } else if (!strncmp(cp, "debug", sizeof("debug") - 1)) {
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900222 if (!(statp->options & RES_DEBUG)) {
Ken Chenffc224a2019-03-19 17:41:28 +0800223 LOG(DEBUG) << "res_setoptions(\"" << options << "\", \"" << source << "\")..";
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900224 statp->options |= RES_DEBUG;
225 }
Ken Chenffc224a2019-03-19 17:41:28 +0800226 LOG(DEBUG) << "\tdebug";
chenbruceacb832c2019-02-20 19:45:50 +0800227
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900228 } else if (!strncmp(cp, "no_tld_query", sizeof("no_tld_query") - 1) ||
229 !strncmp(cp, "no-tld-query", sizeof("no-tld-query") - 1)) {
230 statp->options |= RES_NOTLDQUERY;
231 } else if (!strncmp(cp, "inet6", sizeof("inet6") - 1)) {
232 statp->options |= RES_USE_INET6;
233 } else if (!strncmp(cp, "rotate", sizeof("rotate") - 1)) {
234 statp->options |= RES_ROTATE;
235 } else if (!strncmp(cp, "no-check-names", sizeof("no-check-names") - 1)) {
236 statp->options |= RES_NOCHECKNAME;
237 }
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900238 else if (!strncmp(cp, "edns0", sizeof("edns0") - 1)) {
239 statp->options |= RES_USE_EDNS0;
240 }
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900241 else if (!strncmp(cp, "dname", sizeof("dname") - 1)) {
242 statp->options |= RES_USE_DNAME;
243 } else if (!strncmp(cp, "nibble:", sizeof("nibble:") - 1)) {
244 if (ext == NULL) goto skip;
245 cp += sizeof("nibble:") - 1;
246 i = MIN(strcspn(cp, " \t"), sizeof(ext->nsuffix) - 1);
247 strncpy(ext->nsuffix, cp, (size_t) i);
248 ext->nsuffix[i] = '\0';
249 } else if (!strncmp(cp, "nibble2:", sizeof("nibble2:") - 1)) {
250 if (ext == NULL) goto skip;
251 cp += sizeof("nibble2:") - 1;
252 i = MIN(strcspn(cp, " \t"), sizeof(ext->nsuffix2) - 1);
253 strncpy(ext->nsuffix2, cp, (size_t) i);
254 ext->nsuffix2[i] = '\0';
255 } else if (!strncmp(cp, "v6revmode:", sizeof("v6revmode:") - 1)) {
256 cp += sizeof("v6revmode:") - 1;
257 /* "nibble" and "bitstring" used to be valid */
258 if (!strncmp(cp, "single", sizeof("single") - 1)) {
259 statp->options |= RES_NO_NIBBLE2;
260 } else if (!strncmp(cp, "both", sizeof("both") - 1)) {
261 statp->options &= ~RES_NO_NIBBLE2;
262 }
263 } else {
264 /* XXX - print a warning here? */
265 }
266 skip:
267 /* skip to next run of spaces */
268 while (*cp && *cp != ' ' && *cp != '\t') cp++;
269 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900270}
271
Bernie Innocentif33a63f2018-08-30 12:04:03 +0900272/*
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900273 * This routine is for closing the socket if a virtual circuit is used and
274 * the program wants to close it. This provides support for endhostent()
275 * which expects to close the socket.
276 *
277 * This routine is not expected to be user visible.
278 */
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900279void res_nclose(res_state statp) {
280 int ns;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900281
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900282 if (statp->_vcsock >= 0) {
283 (void) close(statp->_vcsock);
284 statp->_vcsock = -1;
Bernie Innocenti9c2c06f2019-01-08 18:36:28 +0900285 statp->_flags &= ~RES_F_VC;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900286 }
287 for (ns = 0; ns < statp->_u._ext.nscount; ns++) {
288 if (statp->_u._ext.nssocks[ns] != -1) {
289 (void) close(statp->_u._ext.nssocks[ns]);
290 statp->_u._ext.nssocks[ns] = -1;
291 }
292 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900293}
294
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900295void res_ndestroy(res_state statp) {
296 res_nclose(statp);
297 if (statp->_u._ext.ext != NULL) free(statp->_u._ext.ext);
298 statp->options &= ~RES_INIT;
299 statp->_u._ext.ext = NULL;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900300}
301
nuccachenb980f2f2018-10-23 17:10:58 +0800302void res_setservers(res_state statp, const sockaddr_union* set, int cnt) {
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900303 int i, nserv;
304 size_t size;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900305
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900306 /* close open servers */
307 res_nclose(statp);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900308
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900309 /* cause rtt times to be forgotten */
310 statp->_u._ext.nscount = 0;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900311
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900312 nserv = 0;
313 for (i = 0; i < cnt && nserv < MAXNS; i++) {
314 switch (set->sin.sin_family) {
315 case AF_INET:
316 size = sizeof(set->sin);
317 if (statp->_u._ext.ext)
318 memcpy(&statp->_u._ext.ext->nsaddrs[nserv], &set->sin, size);
319 if (size <= sizeof(statp->nsaddr_list[nserv]))
320 memcpy(&statp->nsaddr_list[nserv], &set->sin, size);
321 else
322 statp->nsaddr_list[nserv].sin_family = 0;
323 nserv++;
324 break;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900325
326#ifdef HAS_INET6_STRUCTS
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900327 case AF_INET6:
328 size = sizeof(set->sin6);
329 if (statp->_u._ext.ext)
330 memcpy(&statp->_u._ext.ext->nsaddrs[nserv], &set->sin6, size);
331 if (size <= sizeof(statp->nsaddr_list[nserv]))
332 memcpy(&statp->nsaddr_list[nserv], &set->sin6, size);
333 else
334 statp->nsaddr_list[nserv].sin_family = 0;
335 nserv++;
336 break;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900337#endif
338
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900339 default:
340 break;
341 }
342 set++;
343 }
344 statp->nscount = nserv;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900345}
346
nuccachenb980f2f2018-10-23 17:10:58 +0800347int res_getservers(res_state statp, sockaddr_union* set, int cnt) {
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900348 int i;
349 size_t size;
350 uint16_t family;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900351
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900352 for (i = 0; i < statp->nscount && i < cnt; i++) {
353 if (statp->_u._ext.ext)
354 family = statp->_u._ext.ext->nsaddrs[i].sin.sin_family;
355 else
356 family = statp->nsaddr_list[i].sin_family;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900357
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900358 switch (family) {
359 case AF_INET:
360 size = sizeof(set->sin);
361 if (statp->_u._ext.ext)
362 memcpy(&set->sin, &statp->_u._ext.ext->nsaddrs[i], size);
363 else
364 memcpy(&set->sin, &statp->nsaddr_list[i], size);
365 break;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900366
367#ifdef HAS_INET6_STRUCTS
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900368 case AF_INET6:
369 size = sizeof(set->sin6);
370 if (statp->_u._ext.ext)
371 memcpy(&set->sin6, &statp->_u._ext.ext->nsaddrs[i], size);
372 else
373 memcpy(&set->sin6, &statp->nsaddr_list[i], size);
374 break;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900375#endif
376
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900377 default:
378 set->sin.sin_family = 0;
379 break;
380 }
381 set++;
382 }
383 return (statp->nscount);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900384}
385
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900386void res_setnetcontext(res_state statp, const struct android_net_context* netcontext) {
387 if (statp != NULL) {
388 statp->netid = netcontext->dns_netid;
389 statp->_mark = netcontext->dns_mark;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900390 if (netcontext->flags & NET_CONTEXT_FLAG_USE_EDNS) {
391 statp->options |= RES_USE_EDNS0 | RES_USE_DNSSEC;
392 }
Mike Yub601ff72018-11-01 20:07:00 +0800393 if (netcontext->flags & NET_CONTEXT_FLAG_USE_LOCAL_NAMESERVERS) {
394 statp->use_local_nameserver = true;
395 }
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900396 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900397}