blob: 651fc1bf0cadf0a11a6fef0fbedfc904f47efd04 [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) {
130 extern int __res_vinit(res_state, int);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900131
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900132 return (__res_vinit(statp, 0));
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900133}
134
135/* This function has to be reachable by res_data.c but not publicly. */
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900136int __res_vinit(res_state statp, int preinit) {
Bernie Innocenti9c575932018-09-07 21:10:25 +0900137 char *cp, **pp;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900138 char buf[BUFSIZ];
139 int nserv = 0; /* number of nameserver records read from file */
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900140 int havesearch = 0;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900141 int dots;
142 union res_sockaddr_union u[2];
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900143
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900144 if ((statp->options & RES_INIT) != 0U) res_ndestroy(statp);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900145
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900146 if (!preinit) {
147 statp->netid = NETID_UNSET;
148 statp->retrans = RES_TIMEOUT;
149 statp->retry = RES_DFLRETRY;
150 statp->options = RES_DEFAULT;
151 statp->id = res_randomid();
152 statp->_mark = MARK_UNSET;
153 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900154
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900155 memset(u, 0, sizeof(u));
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900156 u[nserv].sin.sin_addr.s_addr = INADDR_ANY;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900157 u[nserv].sin.sin_family = AF_INET;
158 u[nserv].sin.sin_port = htons(NAMESERVER_PORT);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900159 nserv++;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900160 statp->nscount = 0;
161 statp->ndots = 1;
162 statp->pfcode = 0;
163 statp->_vcsock = -1;
164 statp->_flags = 0;
165 statp->qhook = NULL;
166 statp->rhook = NULL;
167 statp->_u._ext.nscount = 0;
Bernie Innocenti9c575932018-09-07 21:10:25 +0900168 statp->_u._ext.ext = (struct __res_state_ext*) malloc(sizeof(*statp->_u._ext.ext));
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900169 if (statp->_u._ext.ext != NULL) {
170 memset(statp->_u._ext.ext, 0, sizeof(*statp->_u._ext.ext));
171 statp->_u._ext.ext->nsaddrs[0].sin = statp->nsaddr;
172 strcpy(statp->_u._ext.ext->nsuffix, "ip6.arpa");
173 strcpy(statp->_u._ext.ext->nsuffix2, "ip6.int");
174 }
175 statp->nsort = 0;
176 res_setservers(statp, u, nserv);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900177
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900178 if (statp->defdname[0] == 0 && gethostname(buf, sizeof(statp->defdname) - 1) == 0 &&
179 (cp = strchr(buf, '.')) != NULL)
180 strcpy(statp->defdname, cp + 1);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900181
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900182 /* find components of local domain that might be searched */
183 if (havesearch == 0) {
184 pp = statp->dnsrch;
185 *pp++ = statp->defdname;
186 *pp = NULL;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900187
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900188 dots = 0;
189 for (cp = statp->defdname; *cp; cp++) dots += (*cp == '.');
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900190
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900191 cp = statp->defdname;
192 while (pp < statp->dnsrch + MAXDFLSRCH) {
193 if (dots < LOCALDOMAINPARTS) break;
194 cp = strchr(cp, '.') + 1; /* we know there is one */
195 *pp++ = cp;
196 dots--;
197 }
198 *pp = NULL;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900199#ifdef DEBUG
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900200 if (statp->options & RES_DEBUG) {
201 printf(";; res_init()... default dnsrch list:\n");
202 for (pp = statp->dnsrch; *pp; pp++) printf(";;\t%s\n", *pp);
203 printf(";;\t..END..\n");
204 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900205#endif
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900206 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900207
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900208 if ((cp = getenv("RES_OPTIONS")) != NULL) res_setoptions(statp, cp, "env");
209 if (nserv > 0) {
210 statp->nscount = nserv;
211 statp->options |= RES_INIT;
212 }
213 return (0);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900214}
215
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900216static void res_setoptions(res_state statp, const char* options, const char* source) {
217 const char* cp = options;
218 int i;
219 struct __res_state_ext* ext = statp->_u._ext.ext;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900220
221#ifdef DEBUG
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900222 if (statp->options & RES_DEBUG)
223 printf(";; res_setoptions(\"%s\", \"%s\")...\n", options, source);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900224#endif
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900225 while (*cp) {
226 /* skip leading and inner runs of spaces */
227 while (*cp == ' ' || *cp == '\t') cp++;
228 /* search for and process individual options */
229 if (!strncmp(cp, "ndots:", sizeof("ndots:") - 1)) {
230 i = atoi(cp + sizeof("ndots:") - 1);
231 if (i <= RES_MAXNDOTS)
232 statp->ndots = i;
233 else
234 statp->ndots = RES_MAXNDOTS;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900235#ifdef DEBUG
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900236 if (statp->options & RES_DEBUG) printf(";;\tndots=%d\n", statp->ndots);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900237#endif
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900238 } else if (!strncmp(cp, "timeout:", sizeof("timeout:") - 1)) {
239 i = atoi(cp + sizeof("timeout:") - 1);
240 if (i <= RES_MAXRETRANS)
241 statp->retrans = i;
242 else
243 statp->retrans = RES_MAXRETRANS;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900244#ifdef DEBUG
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900245 if (statp->options & RES_DEBUG) printf(";;\ttimeout=%d\n", statp->retrans);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900246#endif
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900247 } else if (!strncmp(cp, "attempts:", sizeof("attempts:") - 1)) {
248 i = atoi(cp + sizeof("attempts:") - 1);
249 if (i <= RES_MAXRETRY)
250 statp->retry = i;
251 else
252 statp->retry = RES_MAXRETRY;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900253#ifdef DEBUG
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900254 if (statp->options & RES_DEBUG) printf(";;\tattempts=%d\n", statp->retry);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900255#endif
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900256 } else if (!strncmp(cp, "debug", sizeof("debug") - 1)) {
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900257#ifdef DEBUG
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900258 if (!(statp->options & RES_DEBUG)) {
259 printf(";; res_setoptions(\"%s\", \"%s\")..\n", options, source);
260 statp->options |= RES_DEBUG;
261 }
262 printf(";;\tdebug\n");
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900263#endif
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900264 } else if (!strncmp(cp, "no_tld_query", sizeof("no_tld_query") - 1) ||
265 !strncmp(cp, "no-tld-query", sizeof("no-tld-query") - 1)) {
266 statp->options |= RES_NOTLDQUERY;
267 } else if (!strncmp(cp, "inet6", sizeof("inet6") - 1)) {
268 statp->options |= RES_USE_INET6;
269 } else if (!strncmp(cp, "rotate", sizeof("rotate") - 1)) {
270 statp->options |= RES_ROTATE;
271 } else if (!strncmp(cp, "no-check-names", sizeof("no-check-names") - 1)) {
272 statp->options |= RES_NOCHECKNAME;
273 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900274#ifdef RES_USE_EDNS0
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900275 else if (!strncmp(cp, "edns0", sizeof("edns0") - 1)) {
276 statp->options |= RES_USE_EDNS0;
277 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900278#endif
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900279 else if (!strncmp(cp, "dname", sizeof("dname") - 1)) {
280 statp->options |= RES_USE_DNAME;
281 } else if (!strncmp(cp, "nibble:", sizeof("nibble:") - 1)) {
282 if (ext == NULL) goto skip;
283 cp += sizeof("nibble:") - 1;
284 i = MIN(strcspn(cp, " \t"), sizeof(ext->nsuffix) - 1);
285 strncpy(ext->nsuffix, cp, (size_t) i);
286 ext->nsuffix[i] = '\0';
287 } else if (!strncmp(cp, "nibble2:", sizeof("nibble2:") - 1)) {
288 if (ext == NULL) goto skip;
289 cp += sizeof("nibble2:") - 1;
290 i = MIN(strcspn(cp, " \t"), sizeof(ext->nsuffix2) - 1);
291 strncpy(ext->nsuffix2, cp, (size_t) i);
292 ext->nsuffix2[i] = '\0';
293 } else if (!strncmp(cp, "v6revmode:", sizeof("v6revmode:") - 1)) {
294 cp += sizeof("v6revmode:") - 1;
295 /* "nibble" and "bitstring" used to be valid */
296 if (!strncmp(cp, "single", sizeof("single") - 1)) {
297 statp->options |= RES_NO_NIBBLE2;
298 } else if (!strncmp(cp, "both", sizeof("both") - 1)) {
299 statp->options &= ~RES_NO_NIBBLE2;
300 }
301 } else {
302 /* XXX - print a warning here? */
303 }
304 skip:
305 /* skip to next run of spaces */
306 while (*cp && *cp != ' ' && *cp != '\t') cp++;
307 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900308}
309
Bernie Innocentif33a63f2018-08-30 12:04:03 +0900310/*
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900311 * This routine is for closing the socket if a virtual circuit is used and
312 * the program wants to close it. This provides support for endhostent()
313 * which expects to close the socket.
314 *
315 * This routine is not expected to be user visible.
316 */
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900317void res_nclose(res_state statp) {
318 int ns;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900319
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900320 if (statp->_vcsock >= 0) {
321 (void) close(statp->_vcsock);
322 statp->_vcsock = -1;
323 statp->_flags &= ~(RES_F_VC | RES_F_CONN);
324 }
325 for (ns = 0; ns < statp->_u._ext.nscount; ns++) {
326 if (statp->_u._ext.nssocks[ns] != -1) {
327 (void) close(statp->_u._ext.nssocks[ns]);
328 statp->_u._ext.nssocks[ns] = -1;
329 }
330 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900331}
332
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900333void res_ndestroy(res_state statp) {
334 res_nclose(statp);
335 if (statp->_u._ext.ext != NULL) free(statp->_u._ext.ext);
336 statp->options &= ~RES_INIT;
337 statp->_u._ext.ext = NULL;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900338}
339
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900340void res_setservers(res_state statp, const union res_sockaddr_union* set, int cnt) {
341 int i, nserv;
342 size_t size;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900343
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900344 /* close open servers */
345 res_nclose(statp);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900346
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900347 /* cause rtt times to be forgotten */
348 statp->_u._ext.nscount = 0;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900349
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900350 nserv = 0;
351 for (i = 0; i < cnt && nserv < MAXNS; i++) {
352 switch (set->sin.sin_family) {
353 case AF_INET:
354 size = sizeof(set->sin);
355 if (statp->_u._ext.ext)
356 memcpy(&statp->_u._ext.ext->nsaddrs[nserv], &set->sin, size);
357 if (size <= sizeof(statp->nsaddr_list[nserv]))
358 memcpy(&statp->nsaddr_list[nserv], &set->sin, size);
359 else
360 statp->nsaddr_list[nserv].sin_family = 0;
361 nserv++;
362 break;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900363
364#ifdef HAS_INET6_STRUCTS
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900365 case AF_INET6:
366 size = sizeof(set->sin6);
367 if (statp->_u._ext.ext)
368 memcpy(&statp->_u._ext.ext->nsaddrs[nserv], &set->sin6, size);
369 if (size <= sizeof(statp->nsaddr_list[nserv]))
370 memcpy(&statp->nsaddr_list[nserv], &set->sin6, size);
371 else
372 statp->nsaddr_list[nserv].sin_family = 0;
373 nserv++;
374 break;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900375#endif
376
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900377 default:
378 break;
379 }
380 set++;
381 }
382 statp->nscount = nserv;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900383}
384
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900385int res_getservers(res_state statp, union res_sockaddr_union* set, int cnt) {
386 int i;
387 size_t size;
388 uint16_t family;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900389
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900390 for (i = 0; i < statp->nscount && i < cnt; i++) {
391 if (statp->_u._ext.ext)
392 family = statp->_u._ext.ext->nsaddrs[i].sin.sin_family;
393 else
394 family = statp->nsaddr_list[i].sin_family;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900395
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900396 switch (family) {
397 case AF_INET:
398 size = sizeof(set->sin);
399 if (statp->_u._ext.ext)
400 memcpy(&set->sin, &statp->_u._ext.ext->nsaddrs[i], size);
401 else
402 memcpy(&set->sin, &statp->nsaddr_list[i], size);
403 break;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900404
405#ifdef HAS_INET6_STRUCTS
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900406 case AF_INET6:
407 size = sizeof(set->sin6);
408 if (statp->_u._ext.ext)
409 memcpy(&set->sin6, &statp->_u._ext.ext->nsaddrs[i], size);
410 else
411 memcpy(&set->sin6, &statp->nsaddr_list[i], size);
412 break;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900413#endif
414
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900415 default:
416 set->sin.sin_family = 0;
417 break;
418 }
419 set++;
420 }
421 return (statp->nscount);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900422}
423
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900424void res_setnetcontext(res_state statp, const struct android_net_context* netcontext) {
425 if (statp != NULL) {
426 statp->netid = netcontext->dns_netid;
427 statp->_mark = netcontext->dns_mark;
428 statp->qhook = netcontext->qhook;
429 if (netcontext->flags & NET_CONTEXT_FLAG_USE_EDNS) {
430 statp->options |= RES_USE_EDNS0 | RES_USE_DNSSEC;
431 }
432 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900433}