blob: cfb6f08f943b75ffb178a1f4d1216d33acce4acc [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 Innocentiac18b122018-10-01 23:10:18 +090091#include "netd_resolv/resolv.h"
92#include "res_state_ext.h"
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090093#include "resolv_private.h"
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090094
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090095/* Options. Should all be left alone. */
96#ifndef DEBUG
97#define DEBUG
98#endif
99
Bernie Innocentif33a63f2018-08-30 12:04:03 +0900100static void res_setoptions(res_state, const char*, const char*);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900101
102/*
103 * Resolver state default settings.
104 */
105
106/*
107 * Set up default settings. If the configuration file exist, the values
108 * there will have precedence. Otherwise, the server address is set to
109 * INADDR_ANY and the default domain name comes from the gethostname().
110 *
111 * An interrim version of this code (BIND 4.9, pre-4.4BSD) used 127.0.0.1
112 * rather than INADDR_ANY ("0.0.0.0") as the default name server address
113 * since it was noted that INADDR_ANY actually meant ``the first interface
114 * you "ifconfig"'d at boot time'' and if this was a SLIP or PPP interface,
115 * it had to be "up" in order for you to reach your own name server. It
116 * was later decided that since the recommended practice is to always
117 * install local static routes through 127.0.0.1 for all your network
118 * interfaces, that we could solve this problem without a code change.
119 *
120 * The configuration file should always be used, since it is the only way
121 * to specify a default domain. If you are running a server on your local
122 * machine, you should say "nameserver 0.0.0.0" or "nameserver 127.0.0.1"
123 * in the configuration file.
124 *
125 * Return 0 if completes successfully, -1 on error
126 */
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900127int res_ninit(res_state statp) {
Bernie Innocenti2e8540b2018-09-26 11:52:04 +0900128 return res_vinit(statp, 0);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900129}
130
131/* This function has to be reachable by res_data.c but not publicly. */
Bernie Innocenti2e8540b2018-09-26 11:52:04 +0900132int res_vinit(res_state statp, int preinit) {
Bernie Innocenti9c575932018-09-07 21:10:25 +0900133 char *cp, **pp;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900134 char buf[BUFSIZ];
135 int nserv = 0; /* number of nameserver records read from file */
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900136 int havesearch = 0;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900137 int dots;
nuccachenb980f2f2018-10-23 17:10:58 +0800138 sockaddr_union u[2];
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900139
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900140 if ((statp->options & RES_INIT) != 0U) res_ndestroy(statp);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900141
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900142 if (!preinit) {
143 statp->netid = NETID_UNSET;
144 statp->retrans = RES_TIMEOUT;
145 statp->retry = RES_DFLRETRY;
146 statp->options = RES_DEFAULT;
147 statp->id = res_randomid();
148 statp->_mark = MARK_UNSET;
149 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900150
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900151 memset(u, 0, sizeof(u));
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900152 u[nserv].sin.sin_addr.s_addr = INADDR_ANY;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900153 u[nserv].sin.sin_family = AF_INET;
154 u[nserv].sin.sin_port = htons(NAMESERVER_PORT);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900155 nserv++;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900156 statp->nscount = 0;
157 statp->ndots = 1;
158 statp->pfcode = 0;
159 statp->_vcsock = -1;
160 statp->_flags = 0;
161 statp->qhook = NULL;
162 statp->rhook = NULL;
163 statp->_u._ext.nscount = 0;
Bernie Innocentiac18b122018-10-01 23:10:18 +0900164 statp->_u._ext.ext = (res_state_ext*) malloc(sizeof(*statp->_u._ext.ext));
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900165 if (statp->_u._ext.ext != NULL) {
166 memset(statp->_u._ext.ext, 0, sizeof(*statp->_u._ext.ext));
167 statp->_u._ext.ext->nsaddrs[0].sin = statp->nsaddr;
168 strcpy(statp->_u._ext.ext->nsuffix, "ip6.arpa");
169 strcpy(statp->_u._ext.ext->nsuffix2, "ip6.int");
170 }
171 statp->nsort = 0;
172 res_setservers(statp, u, nserv);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900173
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900174 if (statp->defdname[0] == 0 && gethostname(buf, sizeof(statp->defdname) - 1) == 0 &&
175 (cp = strchr(buf, '.')) != NULL)
176 strcpy(statp->defdname, cp + 1);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900177
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900178 /* find components of local domain that might be searched */
179 if (havesearch == 0) {
180 pp = statp->dnsrch;
181 *pp++ = statp->defdname;
182 *pp = NULL;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900183
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900184 dots = 0;
185 for (cp = statp->defdname; *cp; cp++) dots += (*cp == '.');
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900186
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900187 cp = statp->defdname;
188 while (pp < statp->dnsrch + MAXDFLSRCH) {
189 if (dots < LOCALDOMAINPARTS) break;
190 cp = strchr(cp, '.') + 1; /* we know there is one */
191 *pp++ = cp;
192 dots--;
193 }
194 *pp = NULL;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900195#ifdef DEBUG
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900196 if (statp->options & RES_DEBUG) {
197 printf(";; res_init()... default dnsrch list:\n");
198 for (pp = statp->dnsrch; *pp; pp++) printf(";;\t%s\n", *pp);
199 printf(";;\t..END..\n");
200 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900201#endif
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900202 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900203
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900204 if ((cp = getenv("RES_OPTIONS")) != NULL) res_setoptions(statp, cp, "env");
205 if (nserv > 0) {
206 statp->nscount = nserv;
207 statp->options |= RES_INIT;
208 }
209 return (0);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900210}
211
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900212static void res_setoptions(res_state statp, const char* options, const char* source) {
213 const char* cp = options;
214 int i;
Bernie Innocentiac18b122018-10-01 23:10:18 +0900215 res_state_ext* ext = statp->_u._ext.ext;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900216
217#ifdef DEBUG
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900218 if (statp->options & RES_DEBUG)
219 printf(";; res_setoptions(\"%s\", \"%s\")...\n", options, source);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900220#endif
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900221 while (*cp) {
222 /* skip leading and inner runs of spaces */
223 while (*cp == ' ' || *cp == '\t') cp++;
224 /* search for and process individual options */
225 if (!strncmp(cp, "ndots:", sizeof("ndots:") - 1)) {
226 i = atoi(cp + sizeof("ndots:") - 1);
227 if (i <= RES_MAXNDOTS)
228 statp->ndots = i;
229 else
230 statp->ndots = RES_MAXNDOTS;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900231#ifdef DEBUG
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900232 if (statp->options & RES_DEBUG) printf(";;\tndots=%d\n", statp->ndots);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900233#endif
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900234 } else if (!strncmp(cp, "timeout:", sizeof("timeout:") - 1)) {
235 i = atoi(cp + sizeof("timeout:") - 1);
236 if (i <= RES_MAXRETRANS)
237 statp->retrans = i;
238 else
239 statp->retrans = RES_MAXRETRANS;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900240#ifdef DEBUG
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900241 if (statp->options & RES_DEBUG) printf(";;\ttimeout=%d\n", statp->retrans);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900242#endif
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900243 } else if (!strncmp(cp, "attempts:", sizeof("attempts:") - 1)) {
244 i = atoi(cp + sizeof("attempts:") - 1);
245 if (i <= RES_MAXRETRY)
246 statp->retry = i;
247 else
248 statp->retry = RES_MAXRETRY;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900249#ifdef DEBUG
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900250 if (statp->options & RES_DEBUG) printf(";;\tattempts=%d\n", statp->retry);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900251#endif
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900252 } else if (!strncmp(cp, "debug", sizeof("debug") - 1)) {
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900253#ifdef DEBUG
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900254 if (!(statp->options & RES_DEBUG)) {
255 printf(";; res_setoptions(\"%s\", \"%s\")..\n", options, source);
256 statp->options |= RES_DEBUG;
257 }
258 printf(";;\tdebug\n");
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900259#endif
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900260 } else if (!strncmp(cp, "no_tld_query", sizeof("no_tld_query") - 1) ||
261 !strncmp(cp, "no-tld-query", sizeof("no-tld-query") - 1)) {
262 statp->options |= RES_NOTLDQUERY;
263 } else if (!strncmp(cp, "inet6", sizeof("inet6") - 1)) {
264 statp->options |= RES_USE_INET6;
265 } else if (!strncmp(cp, "rotate", sizeof("rotate") - 1)) {
266 statp->options |= RES_ROTATE;
267 } else if (!strncmp(cp, "no-check-names", sizeof("no-check-names") - 1)) {
268 statp->options |= RES_NOCHECKNAME;
269 }
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900270 else if (!strncmp(cp, "edns0", sizeof("edns0") - 1)) {
271 statp->options |= RES_USE_EDNS0;
272 }
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900273 else if (!strncmp(cp, "dname", sizeof("dname") - 1)) {
274 statp->options |= RES_USE_DNAME;
275 } else if (!strncmp(cp, "nibble:", sizeof("nibble:") - 1)) {
276 if (ext == NULL) goto skip;
277 cp += sizeof("nibble:") - 1;
278 i = MIN(strcspn(cp, " \t"), sizeof(ext->nsuffix) - 1);
279 strncpy(ext->nsuffix, cp, (size_t) i);
280 ext->nsuffix[i] = '\0';
281 } else if (!strncmp(cp, "nibble2:", sizeof("nibble2:") - 1)) {
282 if (ext == NULL) goto skip;
283 cp += sizeof("nibble2:") - 1;
284 i = MIN(strcspn(cp, " \t"), sizeof(ext->nsuffix2) - 1);
285 strncpy(ext->nsuffix2, cp, (size_t) i);
286 ext->nsuffix2[i] = '\0';
287 } else if (!strncmp(cp, "v6revmode:", sizeof("v6revmode:") - 1)) {
288 cp += sizeof("v6revmode:") - 1;
289 /* "nibble" and "bitstring" used to be valid */
290 if (!strncmp(cp, "single", sizeof("single") - 1)) {
291 statp->options |= RES_NO_NIBBLE2;
292 } else if (!strncmp(cp, "both", sizeof("both") - 1)) {
293 statp->options &= ~RES_NO_NIBBLE2;
294 }
295 } else {
296 /* XXX - print a warning here? */
297 }
298 skip:
299 /* skip to next run of spaces */
300 while (*cp && *cp != ' ' && *cp != '\t') cp++;
301 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900302}
303
Bernie Innocentif33a63f2018-08-30 12:04:03 +0900304/*
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900305 * This routine is for closing the socket if a virtual circuit is used and
306 * the program wants to close it. This provides support for endhostent()
307 * which expects to close the socket.
308 *
309 * This routine is not expected to be user visible.
310 */
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900311void res_nclose(res_state statp) {
312 int ns;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900313
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900314 if (statp->_vcsock >= 0) {
315 (void) close(statp->_vcsock);
316 statp->_vcsock = -1;
317 statp->_flags &= ~(RES_F_VC | RES_F_CONN);
318 }
319 for (ns = 0; ns < statp->_u._ext.nscount; ns++) {
320 if (statp->_u._ext.nssocks[ns] != -1) {
321 (void) close(statp->_u._ext.nssocks[ns]);
322 statp->_u._ext.nssocks[ns] = -1;
323 }
324 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900325}
326
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900327void res_ndestroy(res_state statp) {
328 res_nclose(statp);
329 if (statp->_u._ext.ext != NULL) free(statp->_u._ext.ext);
330 statp->options &= ~RES_INIT;
331 statp->_u._ext.ext = NULL;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900332}
333
nuccachenb980f2f2018-10-23 17:10:58 +0800334void res_setservers(res_state statp, const sockaddr_union* set, int cnt) {
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900335 int i, nserv;
336 size_t size;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900337
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900338 /* close open servers */
339 res_nclose(statp);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900340
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900341 /* cause rtt times to be forgotten */
342 statp->_u._ext.nscount = 0;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900343
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900344 nserv = 0;
345 for (i = 0; i < cnt && nserv < MAXNS; i++) {
346 switch (set->sin.sin_family) {
347 case AF_INET:
348 size = sizeof(set->sin);
349 if (statp->_u._ext.ext)
350 memcpy(&statp->_u._ext.ext->nsaddrs[nserv], &set->sin, size);
351 if (size <= sizeof(statp->nsaddr_list[nserv]))
352 memcpy(&statp->nsaddr_list[nserv], &set->sin, size);
353 else
354 statp->nsaddr_list[nserv].sin_family = 0;
355 nserv++;
356 break;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900357
358#ifdef HAS_INET6_STRUCTS
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900359 case AF_INET6:
360 size = sizeof(set->sin6);
361 if (statp->_u._ext.ext)
362 memcpy(&statp->_u._ext.ext->nsaddrs[nserv], &set->sin6, size);
363 if (size <= sizeof(statp->nsaddr_list[nserv]))
364 memcpy(&statp->nsaddr_list[nserv], &set->sin6, size);
365 else
366 statp->nsaddr_list[nserv].sin_family = 0;
367 nserv++;
368 break;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900369#endif
370
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900371 default:
372 break;
373 }
374 set++;
375 }
376 statp->nscount = nserv;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900377}
378
nuccachenb980f2f2018-10-23 17:10:58 +0800379int res_getservers(res_state statp, sockaddr_union* set, int cnt) {
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900380 int i;
381 size_t size;
382 uint16_t family;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900383
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900384 for (i = 0; i < statp->nscount && i < cnt; i++) {
385 if (statp->_u._ext.ext)
386 family = statp->_u._ext.ext->nsaddrs[i].sin.sin_family;
387 else
388 family = statp->nsaddr_list[i].sin_family;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900389
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900390 switch (family) {
391 case AF_INET:
392 size = sizeof(set->sin);
393 if (statp->_u._ext.ext)
394 memcpy(&set->sin, &statp->_u._ext.ext->nsaddrs[i], size);
395 else
396 memcpy(&set->sin, &statp->nsaddr_list[i], size);
397 break;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900398
399#ifdef HAS_INET6_STRUCTS
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900400 case AF_INET6:
401 size = sizeof(set->sin6);
402 if (statp->_u._ext.ext)
403 memcpy(&set->sin6, &statp->_u._ext.ext->nsaddrs[i], size);
404 else
405 memcpy(&set->sin6, &statp->nsaddr_list[i], size);
406 break;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900407#endif
408
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900409 default:
410 set->sin.sin_family = 0;
411 break;
412 }
413 set++;
414 }
415 return (statp->nscount);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900416}
417
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900418void res_setnetcontext(res_state statp, const struct android_net_context* netcontext) {
419 if (statp != NULL) {
420 statp->netid = netcontext->dns_netid;
421 statp->_mark = netcontext->dns_mark;
422 statp->qhook = netcontext->qhook;
423 if (netcontext->flags & NET_CONTEXT_FLAG_USE_EDNS) {
424 statp->options |= RES_USE_EDNS0 | RES_USE_DNSSEC;
425 }
426 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900427}