blob: f52422e3af073a81fb8e2931224a136cdf156c16 [file] [log] [blame]
Bernie Innocenti318ed2d2018-08-30 04:05:20 +09001/* $NetBSD: res_send.c,v 1.9 2006/01/24 17:41:25 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/*
74 * Send query to name server and wait for reply.
75 */
76
Ken Chen5471dca2019-04-15 15:25:35 +080077#define LOG_TAG "resolv"
Bernie Innocenti9f05f5e2018-09-12 23:20:10 +090078
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090079#include <sys/param.h>
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090080#include <sys/socket.h>
Bernie Innocenti8ad893f2018-08-31 14:09:46 +090081#include <sys/time.h>
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090082#include <sys/uio.h>
83
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090084#include <arpa/inet.h>
Bernie Innocenti8ad893f2018-08-31 14:09:46 +090085#include <arpa/nameser.h>
86#include <netinet/in.h>
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090087
88#include <errno.h>
89#include <fcntl.h>
90#include <netdb.h>
91#include <poll.h>
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090092#include <signal.h>
Bernie Innocenti318ed2d2018-08-30 04:05:20 +090093#include <stdlib.h>
94#include <string.h>
95#include <time.h>
96#include <unistd.h>
97
Bernie Innocenti9f05f5e2018-09-12 23:20:10 +090098#include <android-base/logging.h>
Bernie Innocenti758005f2019-02-19 18:08:36 +090099#include <android/multinetwork.h> // ResNsendFlags
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900100
Mike Yub601ff72018-11-01 20:07:00 +0800101#include <netdutils/Slice.h>
lifr94981782019-05-17 21:15:19 +0800102#include <netdutils/Stopwatch.h>
Bernie Innocentiec4219b2019-01-30 11:16:36 +0900103#include "DnsTlsDispatcher.h"
104#include "DnsTlsTransport.h"
105#include "PrivateDnsConfiguration.h"
Bernie Innocentiac18b122018-10-01 23:10:18 +0900106#include "netd_resolv/resolv.h"
107#include "netd_resolv/stats.h"
Bernie Innocentif33a63f2018-08-30 12:04:03 +0900108#include "private/android_filesystem_config.h"
Mike Yu34433c62019-08-20 20:17:36 +0800109#include "res_debug.h"
Bernie Innocenti08487112019-10-11 21:14:13 +0900110#include "res_init.h"
Bernie Innocentif33a63f2018-08-30 12:04:03 +0900111#include "resolv_cache.h"
lifr94981782019-05-17 21:15:19 +0800112#include "stats.pb.h"
Bernie Innocentif33a63f2018-08-30 12:04:03 +0900113
Mike Yub601ff72018-11-01 20:07:00 +0800114// TODO: use the namespace something like android::netd_resolv for libnetd_resolv
chenbruce99cbfd82019-09-05 15:08:13 +0800115using android::net::CacheStatus;
116using android::net::DnsQueryEvent;
117using android::net::DnsTlsDispatcher;
118using android::net::DnsTlsTransport;
119using android::net::gPrivateDnsConfiguration;
120using android::net::IpVersion;
121using android::net::IV_IPV4;
122using android::net::IV_IPV6;
123using android::net::IV_UNKNOWN;
lifr94981782019-05-17 21:15:19 +0800124using android::net::NetworkDnsEventReported;
chenbruce99cbfd82019-09-05 15:08:13 +0800125using android::net::NS_T_INVALID;
126using android::net::NsRcode;
127using android::net::NsType;
128using android::net::PrivateDnsMode;
129using android::net::PrivateDnsModes;
130using android::net::PrivateDnsStatus;
131using android::net::PROTO_TCP;
132using android::net::PROTO_UDP;
Bernie Innocentiec4219b2019-01-30 11:16:36 +0900133using android::netdutils::Slice;
lifr94981782019-05-17 21:15:19 +0800134using android::netdutils::Stopwatch;
Bernie Innocenti9f05f5e2018-09-12 23:20:10 +0900135
Mike Yub601ff72018-11-01 20:07:00 +0800136static DnsTlsDispatcher sDnsTlsDispatcher;
137
Bernie Innocenti9c575932018-09-07 21:10:25 +0900138static int get_salen(const struct sockaddr*);
139static struct sockaddr* get_nsaddr(res_state, size_t);
chenbrucec51f1212019-09-12 16:59:33 +0800140static int send_vc(res_state, res_params* params, const uint8_t*, int, uint8_t*, int, int*, int,
Bernie Innocenti758005f2019-02-19 18:08:36 +0900141 time_t*, int*, int*);
chenbrucec51f1212019-09-12 16:59:33 +0800142static int send_dg(res_state, res_params* params, const uint8_t*, int, uint8_t*, int, int*, int,
143 int*, int*, time_t*, int*, int*);
chenbruce018fdb22019-06-12 18:08:04 +0800144static void dump_error(const char*, const struct sockaddr*, int);
chenbruceacb832c2019-02-20 19:45:50 +0800145
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900146static int sock_eq(struct sockaddr*, struct sockaddr*);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900147static int connect_with_timeout(int sock, const struct sockaddr* nsap, socklen_t salen,
148 const struct timespec timeout);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900149static int retrying_poll(const int sock, short events, const struct timespec* finish);
Luke Huangd7aa7b42018-11-21 20:37:50 +0800150static int res_tls_send(res_state, const Slice query, const Slice answer, int* rcode,
Mike Yubfb1b342018-11-06 15:42:36 +0800151 bool* fallback);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900152
lifr94981782019-05-17 21:15:19 +0800153NsType getQueryType(const uint8_t* msg, size_t msgLen) {
154 ns_msg handle;
155 ns_rr rr;
156 if (ns_initparse((const uint8_t*)msg, msgLen, &handle) < 0 ||
157 ns_parserr(&handle, ns_s_qd, 0, &rr) < 0) {
158 return NS_T_INVALID;
159 }
160 return static_cast<NsType>(ns_rr_type(rr));
161}
162
163IpVersion ipFamilyToIPVersion(const int ipFamily) {
164 switch (ipFamily) {
165 case AF_INET:
166 return IV_IPV4;
167 case AF_INET6:
168 return IV_IPV6;
169 default:
170 return IV_UNKNOWN;
171 }
172}
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900173
Bernie Innocentiafaacf72018-08-30 07:34:37 +0900174// BEGIN: Code copied from ISC eventlib
175// TODO: move away from this code
Bernie Innocentiafaacf72018-08-30 07:34:37 +0900176#define BILLION 1000000000
177
178static struct timespec evConsTime(time_t sec, long nsec) {
179 struct timespec x;
180
181 x.tv_sec = sec;
182 x.tv_nsec = nsec;
183 return (x);
184}
185
186static struct timespec evAddTime(struct timespec addend1, struct timespec addend2) {
187 struct timespec x;
188
189 x.tv_sec = addend1.tv_sec + addend2.tv_sec;
190 x.tv_nsec = addend1.tv_nsec + addend2.tv_nsec;
191 if (x.tv_nsec >= BILLION) {
192 x.tv_sec++;
193 x.tv_nsec -= BILLION;
194 }
195 return (x);
196}
197
198static struct timespec evSubTime(struct timespec minuend, struct timespec subtrahend) {
199 struct timespec x;
200
201 x.tv_sec = minuend.tv_sec - subtrahend.tv_sec;
202 if (minuend.tv_nsec >= subtrahend.tv_nsec)
203 x.tv_nsec = minuend.tv_nsec - subtrahend.tv_nsec;
204 else {
205 x.tv_nsec = BILLION - subtrahend.tv_nsec + minuend.tv_nsec;
206 x.tv_sec--;
207 }
208 return (x);
209}
210
211static int evCmpTime(struct timespec a, struct timespec b) {
212#define SGN(x) ((x) < 0 ? (-1) : (x) > 0 ? (1) : (0));
213 time_t s = a.tv_sec - b.tv_sec;
214 long n;
215
216 if (s != 0) return SGN(s);
217
218 n = a.tv_nsec - b.tv_nsec;
219 return SGN(n);
220}
221
Bernie Innocentiafaacf72018-08-30 07:34:37 +0900222static struct timespec evNowTime(void) {
Bernie Innocentiafaacf72018-08-30 07:34:37 +0900223 struct timespec tsnow;
Bernie Innocentic1834822018-08-31 16:11:41 +0900224 clock_gettime(CLOCK_REALTIME, &tsnow);
225 return tsnow;
Bernie Innocentiafaacf72018-08-30 07:34:37 +0900226}
227
228static struct iovec evConsIovec(void* buf, size_t cnt) {
229 struct iovec ret;
230
231 memset(&ret, 0xf5, sizeof ret);
232 ret.iov_base = buf;
233 ret.iov_len = cnt;
Bernie Innocentic1834822018-08-31 16:11:41 +0900234 return ret;
Bernie Innocentiafaacf72018-08-30 07:34:37 +0900235}
236
237// END: Code copied from ISC eventlib
238
lifr94981782019-05-17 21:15:19 +0800239/* BIONIC-BEGIN: implement source port randomization */
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900240static int random_bind(int s, int family) {
nuccachenb980f2f2018-10-23 17:10:58 +0800241 sockaddr_union u;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900242 int j;
243 socklen_t slen;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900244
245 /* clear all, this also sets the IP4/6 address to 'any' */
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900246 memset(&u, 0, sizeof u);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900247
248 switch (family) {
249 case AF_INET:
250 u.sin.sin_family = family;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900251 slen = sizeof u.sin;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900252 break;
253 case AF_INET6:
254 u.sin6.sin6_family = family;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900255 slen = sizeof u.sin6;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900256 break;
257 default:
258 errno = EPROTO;
259 return -1;
260 }
261
262 /* first try to bind to a random source port a few times */
263 for (j = 0; j < 10; j++) {
264 /* find a random port between 1025 .. 65534 */
Luke Huangdda920f2019-02-13 14:05:02 +0800265 int port = 1025 + (arc4random_uniform(65535 - 1025));
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900266 if (family == AF_INET)
267 u.sin.sin_port = htons(port);
268 else
269 u.sin6.sin6_port = htons(port);
270
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900271 if (!bind(s, &u.sa, slen)) return 0;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900272 }
273
Bernie Innocenti9c575932018-09-07 21:10:25 +0900274 // nothing after 10 attempts, our network table is probably busy
275 // let the system decide which port is best
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900276 if (family == AF_INET)
277 u.sin.sin_port = 0;
278 else
279 u.sin6.sin6_port = 0;
280
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900281 return bind(s, &u.sa, slen);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900282}
283/* BIONIC-END */
284
Luke Huang70931aa2019-01-31 11:57:41 +0800285// Disables all nameservers other than selectedServer
286static void res_set_usable_server(int selectedServer, int nscount, bool usable_servers[]) {
287 int usableIndex = 0;
288 for (int ns = 0; ns < nscount; ns++) {
289 if (usable_servers[ns]) ++usableIndex;
290 if (usableIndex != selectedServer) usable_servers[ns] = false;
291 }
292}
293
Bernie Innocentia6f40ca2019-10-09 15:22:41 +0900294// Looks up the nameserver address in res.nsaddrs[], returns true if found, otherwise false.
295static bool res_ourserver_p(res_state statp, const sockaddr* sa) {
Bernie Innocenti2e8540b2018-09-26 11:52:04 +0900296 const sockaddr_in *inp, *srv;
297 const sockaddr_in6 *in6p, *srv6;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900298 int ns;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900299
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900300 switch (sa->sa_family) {
301 case AF_INET:
302 inp = (const struct sockaddr_in*) (const void*) sa;
303 for (ns = 0; ns < statp->nscount; ns++) {
304 srv = (struct sockaddr_in*) (void*) get_nsaddr(statp, (size_t) ns);
305 if (srv->sin_family == inp->sin_family && srv->sin_port == inp->sin_port &&
306 (srv->sin_addr.s_addr == INADDR_ANY ||
307 srv->sin_addr.s_addr == inp->sin_addr.s_addr))
Bernie Innocentia6f40ca2019-10-09 15:22:41 +0900308 return true;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900309 }
310 break;
311 case AF_INET6:
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900312 in6p = (const struct sockaddr_in6*) (const void*) sa;
313 for (ns = 0; ns < statp->nscount; ns++) {
314 srv6 = (struct sockaddr_in6*) (void*) get_nsaddr(statp, (size_t) ns);
315 if (srv6->sin6_family == in6p->sin6_family && srv6->sin6_port == in6p->sin6_port &&
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900316#ifdef HAVE_SIN6_SCOPE_ID
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900317 (srv6->sin6_scope_id == 0 || srv6->sin6_scope_id == in6p->sin6_scope_id) &&
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900318#endif
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900319 (IN6_IS_ADDR_UNSPECIFIED(&srv6->sin6_addr) ||
320 IN6_ARE_ADDR_EQUAL(&srv6->sin6_addr, &in6p->sin6_addr)))
Bernie Innocentia6f40ca2019-10-09 15:22:41 +0900321 return true;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900322 }
323 break;
324 default:
325 break;
326 }
Bernie Innocentia6f40ca2019-10-09 15:22:41 +0900327 return false;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900328}
329
330/* int
Bernie Innocenti9c575932018-09-07 21:10:25 +0900331 * res_nameinquery(name, type, cl, buf, eom)
332 * look for (name, type, cl) in the query section of packet (buf, eom)
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900333 * requires:
334 * buf + HFIXEDSZ <= eom
335 * returns:
336 * -1 : format error
337 * 0 : not found
338 * >0 : found
339 * author:
340 * paul vixie, 29may94
341 */
chenbrucec51f1212019-09-12 16:59:33 +0800342int res_nameinquery(const char* name, int type, int cl, const uint8_t* buf, const uint8_t* eom) {
343 const uint8_t* cp = buf + HFIXEDSZ;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900344 int qdcount = ntohs(((const HEADER*) (const void*) buf)->qdcount);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900345
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900346 while (qdcount-- > 0) {
347 char tname[MAXDNAME + 1];
Bernie Innocenti9c575932018-09-07 21:10:25 +0900348 int n = dn_expand(buf, eom, cp, tname, sizeof tname);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900349 if (n < 0) return (-1);
350 cp += n;
351 if (cp + 2 * INT16SZ > eom) return (-1);
chenbruce0d470422019-03-28 18:44:37 +0800352 int ttype = ntohs(*reinterpret_cast<const uint16_t*>(cp));
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900353 cp += INT16SZ;
chenbruce0d470422019-03-28 18:44:37 +0800354 int tclass = ntohs(*reinterpret_cast<const uint16_t*>(cp));
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900355 cp += INT16SZ;
Bernie Innocenti9c575932018-09-07 21:10:25 +0900356 if (ttype == type && tclass == cl && ns_samename(tname, name) == 1) return (1);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900357 }
358 return (0);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900359}
360
361/* int
362 * res_queriesmatch(buf1, eom1, buf2, eom2)
363 * is there a 1:1 mapping of (name,type,class)
364 * in (buf1,eom1) and (buf2,eom2)?
365 * returns:
366 * -1 : format error
367 * 0 : not a 1:1 mapping
368 * >0 : is a 1:1 mapping
369 * author:
370 * paul vixie, 29may94
371 */
chenbrucec51f1212019-09-12 16:59:33 +0800372int res_queriesmatch(const uint8_t* buf1, const uint8_t* eom1, const uint8_t* buf2,
373 const uint8_t* eom2) {
374 const uint8_t* cp = buf1 + HFIXEDSZ;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900375 int qdcount = ntohs(((const HEADER*) (const void*) buf1)->qdcount);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900376
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900377 if (buf1 + HFIXEDSZ > eom1 || buf2 + HFIXEDSZ > eom2) return (-1);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900378
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900379 /*
380 * Only header section present in replies to
381 * dynamic update packets.
382 */
383 if ((((const HEADER*) (const void*) buf1)->opcode == ns_o_update) &&
384 (((const HEADER*) (const void*) buf2)->opcode == ns_o_update))
385 return (1);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900386
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900387 if (qdcount != ntohs(((const HEADER*) (const void*) buf2)->qdcount)) return (0);
388 while (qdcount-- > 0) {
389 char tname[MAXDNAME + 1];
Bernie Innocenti9c575932018-09-07 21:10:25 +0900390 int n = dn_expand(buf1, eom1, cp, tname, sizeof tname);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900391 if (n < 0) return (-1);
392 cp += n;
393 if (cp + 2 * INT16SZ > eom1) return (-1);
chenbruce0d470422019-03-28 18:44:37 +0800394 int ttype = ntohs(*reinterpret_cast<const uint16_t*>(cp));
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900395 cp += INT16SZ;
chenbruce0d470422019-03-28 18:44:37 +0800396 int tclass = ntohs(*reinterpret_cast<const uint16_t*>(cp));
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900397 cp += INT16SZ;
398 if (!res_nameinquery(tname, ttype, tclass, buf2, eom2)) return (0);
399 }
400 return (1);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900401}
402
lifr94981782019-05-17 21:15:19 +0800403static DnsQueryEvent* addDnsQueryEvent(NetworkDnsEventReported* event) {
404 return event->mutable_dns_query_events()->add_dns_query_event();
405}
406
chenbrucec51f1212019-09-12 16:59:33 +0800407int res_nsend(res_state statp, const uint8_t* buf, int buflen, uint8_t* ans, int anssiz, int* rcode,
Luke Huangba7bef92018-12-26 16:53:03 +0800408 uint32_t flags) {
Bernie Innocenti9c575932018-09-07 21:10:25 +0900409 int gotsomewhere, terrno, v_circuit, resplen, n;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900410 ResolvCacheStatus cache_status = RESOLV_CACHE_UNSUPPORTED;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900411
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900412 if (anssiz < HFIXEDSZ) {
Luke Huangaa6e5ed2018-12-03 15:37:28 +0800413 // TODO: Remove errno once callers stop using it
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900414 errno = EINVAL;
Luke Huangaa6e5ed2018-12-03 15:37:28 +0800415 return -EINVAL;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900416 }
Bernie Innocenti3952ccc2019-03-03 19:39:53 +0900417 LOG(DEBUG) << __func__;
chenbrucedd210722019-03-06 13:52:43 +0800418 res_pquery(buf, buflen);
chenbruceacb832c2019-02-20 19:45:50 +0800419
chenbruce018fdb22019-06-12 18:08:04 +0800420 v_circuit = buflen > PACKETSZ;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900421 gotsomewhere = 0;
422 terrno = ETIMEDOUT;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900423
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900424 int anslen = 0;
lifrd4d9fbb2019-07-31 20:18:35 +0800425 Stopwatch cacheStopwatch;
Mike Yud1ec2542019-06-06 17:17:53 +0800426 cache_status = resolv_cache_lookup(statp->netid, buf, buflen, ans, anssiz, &anslen, flags);
lifrd4d9fbb2019-07-31 20:18:35 +0800427 const int32_t cacheLatencyUs = saturate_cast<int32_t>(cacheStopwatch.timeTakenUs());
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900428 if (cache_status == RESOLV_CACHE_FOUND) {
Luke Huang83c9b4b2019-02-27 18:18:01 +0800429 HEADER* hp = (HEADER*)(void*)ans;
430 *rcode = hp->rcode;
lifr94981782019-05-17 21:15:19 +0800431 DnsQueryEvent* dnsQueryEvent = addDnsQueryEvent(statp->event);
432 dnsQueryEvent->set_latency_micros(cacheLatencyUs);
433 dnsQueryEvent->set_cache_hit(static_cast<CacheStatus>(cache_status));
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900434 return anslen;
435 } else if (cache_status != RESOLV_CACHE_UNSUPPORTED) {
436 // had a cache miss for a known network, so populate the thread private
437 // data so the normal resolve path can do its thing
438 _resolv_populate_res_for_net(statp);
439 }
440 if (statp->nscount == 0) {
441 // We have no nameservers configured, so there's no point trying.
442 // Tell the cache the query failed, or any retries and anyone else asking the same
443 // question will block for PENDING_REQUEST_TIMEOUT seconds instead of failing fast.
Luke Huangba7bef92018-12-26 16:53:03 +0800444 _resolv_cache_query_failed(statp->netid, buf, buflen, flags);
Luke Huangaa6e5ed2018-12-03 15:37:28 +0800445
446 // TODO: Remove errno once callers stop using it
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900447 errno = ESRCH;
Luke Huangaa6e5ed2018-12-03 15:37:28 +0800448 return -ESRCH;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900449 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900450
Bernie Innocenti758005f2019-02-19 18:08:36 +0900451 res_stats stats[MAXNS];
452 res_params params;
waynema0161acd2019-02-18 17:47:59 +0800453 int revision_id = resolv_cache_get_resolver_stats(statp->netid, &params, stats);
lifra1b37f12019-02-13 17:33:57 +0800454 if (revision_id < 0) {
455 // TODO: Remove errno once callers stop using it
456 errno = ESRCH;
457 return -ESRCH;
458 }
waynema0161acd2019-02-18 17:47:59 +0800459 bool usable_servers[MAXNS];
Luke Huang70931aa2019-01-31 11:57:41 +0800460 int usableServersCount = android_net_res_stats_get_usable_servers(
461 &params, stats, statp->nscount, usable_servers);
462
463 if ((flags & ANDROID_RESOLV_NO_RETRY) && usableServersCount > 1) {
464 auto hp = reinterpret_cast<const HEADER*>(buf);
465
466 // Select a random server based on the query id
467 int selectedServer = (hp->id % usableServersCount) + 1;
468 res_set_usable_server(selectedServer, statp->nscount, usable_servers);
469 }
waynema0161acd2019-02-18 17:47:59 +0800470
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900471 /*
472 * Send request, RETRY times, or until successful.
473 */
waynemaa74195e2019-01-18 14:02:31 +0800474 int retryTimes = (flags & ANDROID_RESOLV_NO_RETRY) ? 1 : params.retry_count;
Luke Huangba7bef92018-12-26 16:53:03 +0800475
476 for (int attempt = 0; attempt < retryTimes; ++attempt) {
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900477
Bernie Innocenti9c575932018-09-07 21:10:25 +0900478 for (int ns = 0; ns < statp->nscount; ns++) {
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900479 if (!usable_servers[ns]) continue;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900480 int nsaplen;
481 time_t now = 0;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900482 int delay = 0;
Mike Yubfb1b342018-11-06 15:42:36 +0800483 *rcode = RCODE_INTERNAL_ERROR;
lifr94981782019-05-17 21:15:19 +0800484 const sockaddr* nsap = get_nsaddr(statp, ns);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900485 nsaplen = get_salen(nsap);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900486
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900487 same_ns:
Mike Yubfb1b342018-11-06 15:42:36 +0800488 // TODO: Since we expect there is only one DNS server being queried here while this
489 // function tries to query all of private DNS servers. Consider moving it to other
490 // reasonable place. In addition, maybe add stats for private DNS.
chenbruced8cbb9b2019-06-20 18:25:28 +0800491 if (!(statp->netcontext_flags & NET_CONTEXT_FLAG_USE_LOCAL_NAMESERVERS)) {
Mike Yubfb1b342018-11-06 15:42:36 +0800492 bool fallback = false;
chenbrucec51f1212019-09-12 16:59:33 +0800493 resplen = res_tls_send(statp, Slice(const_cast<uint8_t*>(buf), buflen),
Mike Yubfb1b342018-11-06 15:42:36 +0800494 Slice(ans, anssiz), rcode, &fallback);
495 if (resplen > 0) {
Mike Yu34433c62019-08-20 20:17:36 +0800496 LOG(DEBUG) << __func__ << ": got answer from DoT";
497 res_pquery(ans, resplen);
Mike Yubfb1b342018-11-06 15:42:36 +0800498 if (cache_status == RESOLV_CACHE_NOTFOUND) {
Mike Yud1ec2542019-06-06 17:17:53 +0800499 resolv_cache_add(statp->netid, buf, buflen, ans, resplen);
Mike Yubfb1b342018-11-06 15:42:36 +0800500 }
501 return resplen;
Mike Yub601ff72018-11-01 20:07:00 +0800502 }
Mike Yubfb1b342018-11-06 15:42:36 +0800503 if (!fallback) {
Luke Huangba7bef92018-12-26 16:53:03 +0800504 _resolv_cache_query_failed(statp->netid, buf, buflen, flags);
Luke Huangaa6e5ed2018-12-03 15:37:28 +0800505 res_nclose(statp);
506 return -terrno;
Mike Yubfb1b342018-11-06 15:42:36 +0800507 }
508 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900509
lifr94981782019-05-17 21:15:19 +0800510 static const int niflags = NI_NUMERICHOST | NI_NUMERICSERV;
511 char abuf[NI_MAXHOST];
512 DnsQueryEvent* dnsQueryEvent = addDnsQueryEvent(statp->event);
513 dnsQueryEvent->set_cache_hit(static_cast<CacheStatus>(cache_status));
chenbruceacb832c2019-02-20 19:45:50 +0800514
515 if (getnameinfo(nsap, (socklen_t)nsaplen, abuf, sizeof(abuf), NULL, 0, niflags) == 0)
Ken Chenffc224a2019-03-19 17:41:28 +0800516 LOG(DEBUG) << __func__ << ": Querying server (# " << ns + 1
517 << ") address = " << abuf;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900518
lifrd4d9fbb2019-07-31 20:18:35 +0800519 Stopwatch queryStopwatch;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900520 if (v_circuit) {
521 /* Use VC; at most one attempt per server. */
Luke Huangba7bef92018-12-26 16:53:03 +0800522 bool shouldRecordStats = (attempt == 0);
523 attempt = retryTimes;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900524
Mike Yubfb1b342018-11-06 15:42:36 +0800525 n = send_vc(statp, &params, buf, buflen, ans, anssiz, &terrno, ns, &now, rcode,
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900526 &delay);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900527
lifr94981782019-05-17 21:15:19 +0800528 dnsQueryEvent->set_latency_micros(
lifrd4d9fbb2019-07-31 20:18:35 +0800529 saturate_cast<int32_t>(queryStopwatch.timeTakenUs()));
lifr94981782019-05-17 21:15:19 +0800530 dnsQueryEvent->set_dns_server_index(ns);
531 dnsQueryEvent->set_ip_version(ipFamilyToIPVersion(nsap->sa_family));
532 dnsQueryEvent->set_retry_times(attempt);
533 dnsQueryEvent->set_rcode(static_cast<NsRcode>(*rcode));
534 dnsQueryEvent->set_protocol(PROTO_TCP);
535 dnsQueryEvent->set_type(getQueryType(buf, buflen));
536
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900537 /*
538 * Only record stats the first time we try a query. This ensures that
539 * queries that deterministically fail (e.g., a name that always returns
540 * SERVFAIL or times out) do not unduly affect the stats.
541 */
Luke Huangba7bef92018-12-26 16:53:03 +0800542 if (shouldRecordStats) {
Bernie Innocentiac18b122018-10-01 23:10:18 +0900543 res_sample sample;
Mike Yubfb1b342018-11-06 15:42:36 +0800544 _res_stats_set_sample(&sample, now, *rcode, delay);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900545 _resolv_cache_add_resolver_stats_sample(statp->netid, revision_id, ns, &sample,
546 params.max_samples);
547 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900548
Ken Chenffc224a2019-03-19 17:41:28 +0800549 LOG(INFO) << __func__ << ": used send_vc " << n;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900550
Luke Huangaa6e5ed2018-12-03 15:37:28 +0800551 if (n < 0) {
Luke Huangba7bef92018-12-26 16:53:03 +0800552 _resolv_cache_query_failed(statp->netid, buf, buflen, flags);
Luke Huangaa6e5ed2018-12-03 15:37:28 +0800553 res_nclose(statp);
554 return -terrno;
555 };
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900556 if (n == 0) goto next_ns;
557 resplen = n;
558 } else {
559 /* Use datagrams. */
Ken Chenffc224a2019-03-19 17:41:28 +0800560 LOG(INFO) << __func__ << ": using send_dg";
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900561
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900562 n = send_dg(statp, &params, buf, buflen, ans, anssiz, &terrno, ns, &v_circuit,
Mike Yubfb1b342018-11-06 15:42:36 +0800563 &gotsomewhere, &now, rcode, &delay);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900564
lifr94981782019-05-17 21:15:19 +0800565 dnsQueryEvent->set_latency_micros(
lifrd4d9fbb2019-07-31 20:18:35 +0800566 saturate_cast<int32_t>(queryStopwatch.timeTakenUs()));
lifr94981782019-05-17 21:15:19 +0800567 dnsQueryEvent->set_dns_server_index(ns);
568 dnsQueryEvent->set_ip_version(ipFamilyToIPVersion(nsap->sa_family));
569 dnsQueryEvent->set_retry_times(attempt);
570 dnsQueryEvent->set_rcode(static_cast<NsRcode>(*rcode));
571 dnsQueryEvent->set_protocol(PROTO_UDP);
572 dnsQueryEvent->set_type(getQueryType(buf, buflen));
573
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900574 /* Only record stats the first time we try a query. See above. */
Bernie Innocenti9c575932018-09-07 21:10:25 +0900575 if (attempt == 0) {
Bernie Innocentiac18b122018-10-01 23:10:18 +0900576 res_sample sample;
Mike Yubfb1b342018-11-06 15:42:36 +0800577 _res_stats_set_sample(&sample, now, *rcode, delay);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900578 _resolv_cache_add_resolver_stats_sample(statp->netid, revision_id, ns, &sample,
579 params.max_samples);
580 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900581
Ken Chenffc224a2019-03-19 17:41:28 +0800582 LOG(INFO) << __func__ << ": used send_dg " << n;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900583
Luke Huangaa6e5ed2018-12-03 15:37:28 +0800584 if (n < 0) {
Luke Huangba7bef92018-12-26 16:53:03 +0800585 _resolv_cache_query_failed(statp->netid, buf, buflen, flags);
Luke Huangaa6e5ed2018-12-03 15:37:28 +0800586 res_nclose(statp);
587 return -terrno;
588 };
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900589 if (n == 0) goto next_ns;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900590 if (v_circuit) goto same_ns;
591 resplen = n;
592 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900593
Ken Chenffc224a2019-03-19 17:41:28 +0800594 LOG(DEBUG) << __func__ << ": got answer:";
chenbrucedd210722019-03-06 13:52:43 +0800595 res_pquery(ans, (resplen > anssiz) ? anssiz : resplen);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900596
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900597 if (cache_status == RESOLV_CACHE_NOTFOUND) {
Mike Yud1ec2542019-06-06 17:17:53 +0800598 resolv_cache_add(statp->netid, buf, buflen, ans, resplen);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900599 }
chenbruce018fdb22019-06-12 18:08:04 +0800600 res_nclose(statp);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900601 return (resplen);
602 next_ns:;
Bernie Innocenti9c575932018-09-07 21:10:25 +0900603 } // for each ns
604 } // for each retry
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900605 res_nclose(statp);
606 if (!v_circuit) {
Luke Huangaa6e5ed2018-12-03 15:37:28 +0800607 if (!gotsomewhere) {
608 // TODO: Remove errno once callers stop using it
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900609 errno = ECONNREFUSED; /* no nameservers found */
Luke Huangaa6e5ed2018-12-03 15:37:28 +0800610 terrno = ECONNREFUSED;
611 } else {
612 // TODO: Remove errno once callers stop using it
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900613 errno = ETIMEDOUT; /* no answer obtained */
Luke Huangaa6e5ed2018-12-03 15:37:28 +0800614 terrno = ETIMEDOUT;
615 }
616 } else {
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900617 errno = terrno;
Luke Huangaa6e5ed2018-12-03 15:37:28 +0800618 }
Luke Huangba7bef92018-12-26 16:53:03 +0800619 _resolv_cache_query_failed(statp->netid, buf, buflen, flags);
Luke Huangaa6e5ed2018-12-03 15:37:28 +0800620 return -terrno;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900621}
622
623/* Private */
624
Bernie Innocenti9c575932018-09-07 21:10:25 +0900625static int get_salen(const struct sockaddr* sa) {
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900626 if (sa->sa_family == AF_INET)
627 return (sizeof(struct sockaddr_in));
628 else if (sa->sa_family == AF_INET6)
629 return (sizeof(struct sockaddr_in6));
630 else
631 return (0); /* unknown, die on connect */
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900632}
633
Bernie Innocenti9c575932018-09-07 21:10:25 +0900634static struct sockaddr* get_nsaddr(res_state statp, size_t n) {
Bernie Innocentic977ab72019-10-09 00:34:06 +0900635 return (struct sockaddr*)(void*)&statp->nsaddrs[n];
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900636}
637
chenbruce99cbfd82019-09-05 15:08:13 +0800638static struct timespec get_timeout(res_state statp, const res_params* params, const int ns) {
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900639 int msec;
waynemaa74195e2019-01-18 14:02:31 +0800640 // Legacy algorithm which scales the timeout by nameserver number.
641 // For instance, with 4 nameservers: 5s, 2.5s, 5s, 10s
642 // This has no effect with 1 or 2 nameservers
643 msec = params->base_timeout_msec << ns;
644 if (ns > 0) {
645 msec /= statp->nscount;
646 }
647 // For safety, don't allow OEMs and experiments to configure a timeout shorter than 1s.
648 if (msec < 1000) {
649 msec = 1000; // Use at least 1000ms
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900650 }
Ken Chenffc224a2019-03-19 17:41:28 +0800651 LOG(INFO) << __func__ << ": using timeout of " << msec << " msec";
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900652
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900653 struct timespec result;
654 result.tv_sec = msec / 1000;
655 result.tv_nsec = (msec % 1000) * 1000000;
656 return result;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900657}
658
chenbrucec51f1212019-09-12 16:59:33 +0800659static int send_vc(res_state statp, res_params* params, const uint8_t* buf, int buflen,
660 uint8_t* ans, int anssiz, int* terrno, int ns, time_t* at, int* rcode,
661 int* delay) {
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900662 *at = time(NULL);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900663 *delay = 0;
664 const HEADER* hp = (const HEADER*) (const void*) buf;
665 HEADER* anhp = (HEADER*) (void*) ans;
666 struct sockaddr* nsap;
667 int nsaplen;
chenbruce0d470422019-03-28 18:44:37 +0800668 int truncating, connreset, n;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900669 struct iovec iov[2];
chenbrucec51f1212019-09-12 16:59:33 +0800670 uint8_t* cp;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900671
Ken Chenffc224a2019-03-19 17:41:28 +0800672 LOG(INFO) << __func__ << ": using send_vc";
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900673
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900674 nsap = get_nsaddr(statp, (size_t) ns);
675 nsaplen = get_salen(nsap);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900676
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900677 connreset = 0;
678same_ns:
679 truncating = 0;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900680
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900681 struct timespec now = evNowTime();
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900682
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900683 /* Are we still talking to whom we want to talk to? */
684 if (statp->_vcsock >= 0 && (statp->_flags & RES_F_VC) != 0) {
685 struct sockaddr_storage peer;
686 socklen_t size = sizeof peer;
687 unsigned old_mark;
688 socklen_t mark_size = sizeof(old_mark);
689 if (getpeername(statp->_vcsock, (struct sockaddr*) (void*) &peer, &size) < 0 ||
690 !sock_eq((struct sockaddr*) (void*) &peer, nsap) ||
691 getsockopt(statp->_vcsock, SOL_SOCKET, SO_MARK, &old_mark, &mark_size) < 0 ||
692 old_mark != statp->_mark) {
693 res_nclose(statp);
694 statp->_flags &= ~RES_F_VC;
695 }
696 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900697
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900698 if (statp->_vcsock < 0 || (statp->_flags & RES_F_VC) == 0) {
699 if (statp->_vcsock >= 0) res_nclose(statp);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900700
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900701 statp->_vcsock = socket(nsap->sa_family, SOCK_STREAM | SOCK_CLOEXEC, 0);
702 if (statp->_vcsock < 0) {
703 switch (errno) {
704 case EPROTONOSUPPORT:
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900705 case EPFNOSUPPORT:
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900706 case EAFNOSUPPORT:
chenbruce018fdb22019-06-12 18:08:04 +0800707 PLOG(DEBUG) << __func__ << ": socket(vc): ";
Bernie Innocenti9f05f5e2018-09-12 23:20:10 +0900708 return 0;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900709 default:
710 *terrno = errno;
chenbruce018fdb22019-06-12 18:08:04 +0800711 PLOG(DEBUG) << __func__ << ": socket(vc): ";
Bernie Innocenti9f05f5e2018-09-12 23:20:10 +0900712 return -1;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900713 }
714 }
Praveen Moongalam Thyagarajan8ab18ba2019-09-04 14:46:50 -0700715 resolv_tag_socket(statp->_vcsock, statp->uid, statp->pid);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900716 if (statp->_mark != MARK_UNSET) {
717 if (setsockopt(statp->_vcsock, SOL_SOCKET, SO_MARK, &statp->_mark,
718 sizeof(statp->_mark)) < 0) {
719 *terrno = errno;
chenbruce018fdb22019-06-12 18:08:04 +0800720 PLOG(DEBUG) << __func__ << ": setsockopt: ";
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900721 return -1;
722 }
723 }
724 errno = 0;
725 if (random_bind(statp->_vcsock, nsap->sa_family) < 0) {
726 *terrno = errno;
chenbruce018fdb22019-06-12 18:08:04 +0800727 dump_error("bind/vc", nsap, nsaplen);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900728 res_nclose(statp);
729 return (0);
730 }
731 if (connect_with_timeout(statp->_vcsock, nsap, (socklen_t) nsaplen,
732 get_timeout(statp, params, ns)) < 0) {
733 *terrno = errno;
chenbruce018fdb22019-06-12 18:08:04 +0800734 dump_error("connect/vc", nsap, nsaplen);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900735 res_nclose(statp);
736 /*
737 * The way connect_with_timeout() is implemented prevents us from reliably
738 * determining whether this was really a timeout or e.g. ECONNREFUSED. Since
739 * currently both cases are handled in the same way, there is no need to
740 * change this (yet). If we ever need to reliably distinguish between these
741 * cases, both connect_with_timeout() and retrying_poll() need to be
742 * modified, though.
743 */
744 *rcode = RCODE_TIMEOUT;
745 return (0);
746 }
747 statp->_flags |= RES_F_VC;
748 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900749
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900750 /*
751 * Send length & message
752 */
chenbruce0d470422019-03-28 18:44:37 +0800753 uint16_t len = htons(static_cast<uint16_t>(buflen));
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900754 iov[0] = evConsIovec(&len, INT16SZ);
Bernie Innocenti9c575932018-09-07 21:10:25 +0900755 iov[1] = evConsIovec((void*) buf, (size_t) buflen);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900756 if (writev(statp->_vcsock, iov, 2) != (INT16SZ + buflen)) {
757 *terrno = errno;
chenbruce018fdb22019-06-12 18:08:04 +0800758 PLOG(DEBUG) << __func__ << ": write failed: ";
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900759 res_nclose(statp);
760 return (0);
761 }
762 /*
763 * Receive length & response
764 */
765read_len:
766 cp = ans;
767 len = INT16SZ;
768 while ((n = read(statp->_vcsock, (char*) cp, (size_t) len)) > 0) {
769 cp += n;
770 if ((len -= n) == 0) break;
771 }
772 if (n <= 0) {
773 *terrno = errno;
chenbruce018fdb22019-06-12 18:08:04 +0800774 PLOG(DEBUG) << __func__ << ": read failed: ";
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900775 res_nclose(statp);
776 /*
777 * A long running process might get its TCP
778 * connection reset if the remote server was
779 * restarted. Requery the server instead of
780 * trying a new one. When there is only one
781 * server, this means that a query might work
782 * instead of failing. We only allow one reset
783 * per query to prevent looping.
784 */
785 if (*terrno == ECONNRESET && !connreset) {
786 connreset = 1;
787 res_nclose(statp);
788 goto same_ns;
789 }
790 res_nclose(statp);
791 return (0);
792 }
chenbruce0d470422019-03-28 18:44:37 +0800793 uint16_t resplen = ntohs(*reinterpret_cast<const uint16_t*>(ans));
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900794 if (resplen > anssiz) {
Ken Chenffc224a2019-03-19 17:41:28 +0800795 LOG(DEBUG) << __func__ << ": response truncated";
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900796 truncating = 1;
797 len = anssiz;
798 } else
799 len = resplen;
800 if (len < HFIXEDSZ) {
801 /*
802 * Undersized message.
803 */
Ken Chenffc224a2019-03-19 17:41:28 +0800804 LOG(DEBUG) << __func__ << ": undersized: " << len;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900805 *terrno = EMSGSIZE;
806 res_nclose(statp);
807 return (0);
808 }
809 cp = ans;
810 while (len != 0 && (n = read(statp->_vcsock, (char*) cp, (size_t) len)) > 0) {
811 cp += n;
812 len -= n;
813 }
814 if (n <= 0) {
815 *terrno = errno;
chenbruce018fdb22019-06-12 18:08:04 +0800816 PLOG(DEBUG) << __func__ << ": read(vc): ";
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900817 res_nclose(statp);
818 return (0);
819 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900820
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900821 if (truncating) {
822 /*
823 * Flush rest of answer so connection stays in synch.
824 */
825 anhp->tc = 1;
826 len = resplen - anssiz;
827 while (len != 0) {
828 char junk[PACKETSZ];
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900829
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900830 n = read(statp->_vcsock, junk, (len > sizeof junk) ? sizeof junk : len);
831 if (n > 0)
832 len -= n;
833 else
834 break;
835 }
836 }
837 /*
Bernie Innocenti9f05f5e2018-09-12 23:20:10 +0900838 * If the calling application has bailed out of
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900839 * a previous call and failed to arrange to have
840 * the circuit closed or the server has got
841 * itself confused, then drop the packet and
842 * wait for the correct one.
843 */
844 if (hp->id != anhp->id) {
Ken Chenffc224a2019-03-19 17:41:28 +0800845 LOG(DEBUG) << __func__ << ": ld answer (unexpected):";
chenbrucedd210722019-03-06 13:52:43 +0800846 res_pquery(ans, (resplen > anssiz) ? anssiz : resplen);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900847 goto read_len;
848 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900849
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900850 /*
851 * All is well, or the error is fatal. Signal that the
852 * next nameserver ought not be tried.
853 */
854 if (resplen > 0) {
855 struct timespec done = evNowTime();
856 *delay = _res_stats_calculate_rtt(&done, &now);
857 *rcode = anhp->rcode;
858 }
859 return (resplen);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900860}
861
862/* return -1 on error (errno set), 0 on success */
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900863static int connect_with_timeout(int sock, const struct sockaddr* nsap, socklen_t salen,
864 const struct timespec timeout) {
865 int res, origflags;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900866
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900867 origflags = fcntl(sock, F_GETFL, 0);
868 fcntl(sock, F_SETFL, origflags | O_NONBLOCK);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900869
Bernie Innocentiafaacf72018-08-30 07:34:37 +0900870 res = connect(sock, nsap, salen);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900871 if (res < 0 && errno != EINPROGRESS) {
872 res = -1;
873 goto done;
874 }
875 if (res != 0) {
876 struct timespec now = evNowTime();
877 struct timespec finish = evAddTime(now, timeout);
Ken Chenffc224a2019-03-19 17:41:28 +0800878 LOG(INFO) << __func__ << ": " << sock << " send_vc";
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900879 res = retrying_poll(sock, POLLIN | POLLOUT, &finish);
880 if (res <= 0) {
881 res = -1;
882 }
883 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900884done:
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900885 fcntl(sock, F_SETFL, origflags);
Ken Chenffc224a2019-03-19 17:41:28 +0800886 LOG(INFO) << __func__ << ": " << sock << " connect_with_const timeout returning " << res;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900887 return res;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900888}
889
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900890static int retrying_poll(const int sock, const short events, const struct timespec* finish) {
891 struct timespec now, timeout;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900892
893retry:
Ken Chenffc224a2019-03-19 17:41:28 +0800894 LOG(INFO) << __func__ << ": " << sock << " retrying_poll";
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900895
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900896 now = evNowTime();
897 if (evCmpTime(*finish, now) > 0)
898 timeout = evSubTime(*finish, now);
899 else
900 timeout = evConsTime(0L, 0L);
901 struct pollfd fds = {.fd = sock, .events = events};
902 int n = ppoll(&fds, 1, &timeout, /*sigmask=*/NULL);
903 if (n == 0) {
Ken Chenffc224a2019-03-19 17:41:28 +0800904 LOG(INFO) << __func__ << ": " << sock << "retrying_poll timeout";
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900905 errno = ETIMEDOUT;
906 return 0;
907 }
908 if (n < 0) {
909 if (errno == EINTR) goto retry;
Ken Chenffc224a2019-03-19 17:41:28 +0800910 PLOG(INFO) << __func__ << ": " << sock << " retrying_poll failed";
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900911 return n;
912 }
913 if (fds.revents & (POLLIN | POLLOUT | POLLERR)) {
914 int error;
915 socklen_t len = sizeof(error);
916 if (getsockopt(sock, SOL_SOCKET, SO_ERROR, &error, &len) < 0 || error) {
917 errno = error;
Ken Chenffc224a2019-03-19 17:41:28 +0800918 PLOG(INFO) << __func__ << ": " << sock << " retrying_poll getsockopt failed";
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900919 return -1;
920 }
921 }
Ken Chenffc224a2019-03-19 17:41:28 +0800922 LOG(INFO) << __func__ << ": " << sock << " retrying_poll returning " << n;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900923 return n;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900924}
925
chenbrucec51f1212019-09-12 16:59:33 +0800926static int send_dg(res_state statp, res_params* params, const uint8_t* buf, int buflen,
927 uint8_t* ans, int anssiz, int* terrno, int ns, int* v_circuit, int* gotsomewhere,
928 time_t* at, int* rcode, int* delay) {
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900929 *at = time(NULL);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900930 *delay = 0;
931 const HEADER* hp = (const HEADER*) (const void*) buf;
932 HEADER* anhp = (HEADER*) (void*) ans;
933 const struct sockaddr* nsap;
934 int nsaplen;
935 struct timespec now, timeout, finish, done;
936 struct sockaddr_storage from;
937 socklen_t fromlen;
938 int resplen, n, s;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900939
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900940 nsap = get_nsaddr(statp, (size_t) ns);
941 nsaplen = get_salen(nsap);
Bernie Innocentibb330742019-10-09 00:55:53 +0900942 if (statp->nssocks[ns] == -1) {
943 statp->nssocks[ns] = socket(nsap->sa_family, SOCK_DGRAM | SOCK_CLOEXEC, 0);
944 if (statp->nssocks[ns] < 0) {
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900945 switch (errno) {
946 case EPROTONOSUPPORT:
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900947 case EPFNOSUPPORT:
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900948 case EAFNOSUPPORT:
chenbruce018fdb22019-06-12 18:08:04 +0800949 PLOG(DEBUG) << __func__ << ": socket(dg): ";
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900950 return (0);
951 default:
952 *terrno = errno;
chenbruce018fdb22019-06-12 18:08:04 +0800953 PLOG(DEBUG) << __func__ << ": socket(dg): ";
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900954 return (-1);
955 }
956 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900957
Praveen Moongalam Thyagarajan8ab18ba2019-09-04 14:46:50 -0700958 resolv_tag_socket(statp->nssocks[ns], statp->uid, statp->pid);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900959 if (statp->_mark != MARK_UNSET) {
Bernie Innocentibb330742019-10-09 00:55:53 +0900960 if (setsockopt(statp->nssocks[ns], SOL_SOCKET, SO_MARK, &(statp->_mark),
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900961 sizeof(statp->_mark)) < 0) {
962 res_nclose(statp);
963 return -1;
964 }
965 }
chenbruceb9cce7b2019-07-15 16:14:53 +0800966 // Use a "connected" datagram socket to receive an ECONNREFUSED error
967 // on the next socket operation when the server responds with an
968 // ICMP port-unreachable error. This way we can detect the absence of
969 // a nameserver without timing out.
Bernie Innocentibb330742019-10-09 00:55:53 +0900970 if (random_bind(statp->nssocks[ns], nsap->sa_family) < 0) {
chenbruce018fdb22019-06-12 18:08:04 +0800971 dump_error("bind(dg)", nsap, nsaplen);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900972 res_nclose(statp);
973 return (0);
974 }
Bernie Innocentibb330742019-10-09 00:55:53 +0900975 if (connect(statp->nssocks[ns], nsap, (socklen_t)nsaplen) < 0) {
chenbruce018fdb22019-06-12 18:08:04 +0800976 dump_error("connect(dg)", nsap, nsaplen);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900977 res_nclose(statp);
978 return (0);
979 }
Ken Chenffc224a2019-03-19 17:41:28 +0800980 LOG(DEBUG) << __func__ << ": new DG socket";
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900981 }
Bernie Innocentibb330742019-10-09 00:55:53 +0900982 s = statp->nssocks[ns];
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900983 if (send(s, (const char*) buf, (size_t) buflen, 0) != buflen) {
chenbruce018fdb22019-06-12 18:08:04 +0800984 PLOG(DEBUG) << __func__ << ": send: ";
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900985 res_nclose(statp);
Bernie Innocenti3952ccc2019-03-03 19:39:53 +0900986 return 0;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900987 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900988
Bernie Innocenti3952ccc2019-03-03 19:39:53 +0900989 // Wait for reply.
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900990 timeout = get_timeout(statp, params, ns);
991 now = evNowTime();
992 finish = evAddTime(now, timeout);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900993retry:
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900994 n = retrying_poll(s, POLLIN, &finish);
Bernie Innocenti318ed2d2018-08-30 04:05:20 +0900995
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900996 if (n == 0) {
997 *rcode = RCODE_TIMEOUT;
Ken Chenffc224a2019-03-19 17:41:28 +0800998 LOG(DEBUG) << __func__ << ": timeout";
Bernie Innocenti8ad893f2018-08-31 14:09:46 +0900999 *gotsomewhere = 1;
Bernie Innocenti3952ccc2019-03-03 19:39:53 +09001000 return 0;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001001 }
1002 if (n < 0) {
chenbruce018fdb22019-06-12 18:08:04 +08001003 PLOG(DEBUG) << __func__ << ": poll: ";
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001004 res_nclose(statp);
Bernie Innocenti3952ccc2019-03-03 19:39:53 +09001005 return 0;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001006 }
1007 errno = 0;
1008 fromlen = sizeof(from);
1009 resplen = recvfrom(s, (char*) ans, (size_t) anssiz, 0, (struct sockaddr*) (void*) &from,
1010 &fromlen);
1011 if (resplen <= 0) {
chenbruce018fdb22019-06-12 18:08:04 +08001012 PLOG(DEBUG) << __func__ << ": recvfrom: ";
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001013 res_nclose(statp);
Bernie Innocenti3952ccc2019-03-03 19:39:53 +09001014 return 0;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001015 }
1016 *gotsomewhere = 1;
1017 if (resplen < HFIXEDSZ) {
1018 /*
1019 * Undersized message.
1020 */
Ken Chenffc224a2019-03-19 17:41:28 +08001021 LOG(DEBUG) << __func__ << ": undersized: " << resplen;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001022 *terrno = EMSGSIZE;
1023 res_nclose(statp);
Bernie Innocenti3952ccc2019-03-03 19:39:53 +09001024 return 0;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001025 }
1026 if (hp->id != anhp->id) {
1027 /*
1028 * response from old query, ignore it.
1029 * XXX - potential security hazard could
1030 * be detected here.
1031 */
Ken Chenffc224a2019-03-19 17:41:28 +08001032 LOG(DEBUG) << __func__ << ": old answer:";
chenbrucedd210722019-03-06 13:52:43 +08001033 res_pquery(ans, (resplen > anssiz) ? anssiz : resplen);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001034 goto retry;
1035 }
chenbruce018fdb22019-06-12 18:08:04 +08001036 if (!res_ourserver_p(statp, (struct sockaddr*)(void*)&from)) {
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001037 /*
1038 * response from wrong server? ignore it.
1039 * XXX - potential security hazard could
1040 * be detected here.
1041 */
Ken Chenffc224a2019-03-19 17:41:28 +08001042 LOG(DEBUG) << __func__ << ": not our server:";
chenbrucedd210722019-03-06 13:52:43 +08001043 res_pquery(ans, (resplen > anssiz) ? anssiz : resplen);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001044 goto retry;
1045 }
chenbruced8cbb9b2019-06-20 18:25:28 +08001046 if (anhp->rcode == FORMERR && (statp->netcontext_flags & NET_CONTEXT_FLAG_USE_EDNS)) {
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001047 /*
1048 * Do not retry if the server do not understand EDNS0.
1049 * The case has to be captured here, as FORMERR packet do not
1050 * carry query section, hence res_queriesmatch() returns 0.
1051 */
Ken Chenffc224a2019-03-19 17:41:28 +08001052 LOG(DEBUG) << __func__ << ": server rejected query with EDNS0:";
chenbrucedd210722019-03-06 13:52:43 +08001053 res_pquery(ans, (resplen > anssiz) ? anssiz : resplen);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001054 /* record the error */
1055 statp->_flags |= RES_F_EDNS0ERR;
1056 res_nclose(statp);
Bernie Innocenti3952ccc2019-03-03 19:39:53 +09001057 return 0;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001058 }
chenbruce018fdb22019-06-12 18:08:04 +08001059 if (!res_queriesmatch(buf, buf + buflen, ans, ans + anssiz)) {
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001060 /*
1061 * response contains wrong query? ignore it.
1062 * XXX - potential security hazard could
1063 * be detected here.
1064 */
Ken Chenffc224a2019-03-19 17:41:28 +08001065 LOG(DEBUG) << __func__ << ": wrong query name:";
chenbrucedd210722019-03-06 13:52:43 +08001066 res_pquery(ans, (resplen > anssiz) ? anssiz : resplen);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001067 goto retry;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001068 }
1069 done = evNowTime();
1070 *delay = _res_stats_calculate_rtt(&done, &now);
1071 if (anhp->rcode == SERVFAIL || anhp->rcode == NOTIMP || anhp->rcode == REFUSED) {
Ken Chenffc224a2019-03-19 17:41:28 +08001072 LOG(DEBUG) << __func__ << ": server rejected query:";
chenbrucedd210722019-03-06 13:52:43 +08001073 res_pquery(ans, (resplen > anssiz) ? anssiz : resplen);
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001074 res_nclose(statp);
chenbrucedd210722019-03-06 13:52:43 +08001075 *rcode = anhp->rcode;
1076 return 0;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001077 }
chenbruce018fdb22019-06-12 18:08:04 +08001078 if (anhp->tc) {
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001079 /*
1080 * To get the rest of answer,
1081 * use TCP with same server.
1082 */
Ken Chenffc224a2019-03-19 17:41:28 +08001083 LOG(DEBUG) << __func__ << ": truncated answer";
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001084 *v_circuit = 1;
1085 res_nclose(statp);
Bernie Innocenti3952ccc2019-03-03 19:39:53 +09001086 return 1;
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001087 }
1088 /*
1089 * All is well, or the error is fatal. Signal that the
1090 * next nameserver ought not be tried.
1091 */
1092 if (resplen > 0) {
1093 *rcode = anhp->rcode;
1094 }
Bernie Innocenti3952ccc2019-03-03 19:39:53 +09001095 return resplen;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +09001096}
1097
chenbruce018fdb22019-06-12 18:08:04 +08001098static void dump_error(const char* str, const struct sockaddr* address, int alen) {
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001099 char hbuf[NI_MAXHOST];
1100 char sbuf[NI_MAXSERV];
Bernie Innocenti9f05f5e2018-09-12 23:20:10 +09001101 constexpr int niflags = NI_NUMERICHOST | NI_NUMERICSERV;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +09001102
chenbruce018fdb22019-06-12 18:08:04 +08001103 if (!WOULD_LOG(DEBUG)) return;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +09001104
chenbruce018fdb22019-06-12 18:08:04 +08001105 if (getnameinfo(address, (socklen_t)alen, hbuf, sizeof(hbuf), sbuf, sizeof(sbuf), niflags)) {
1106 strncpy(hbuf, "?", sizeof(hbuf) - 1);
1107 hbuf[sizeof(hbuf) - 1] = '\0';
1108 strncpy(sbuf, "?", sizeof(sbuf) - 1);
1109 sbuf[sizeof(sbuf) - 1] = '\0';
Elliott Hughes3b8f5902019-03-08 12:02:55 -08001110 }
chenbruce018fdb22019-06-12 18:08:04 +08001111 PLOG(DEBUG) << __func__ << ": " << str << " ([" << hbuf << "]." << sbuf << "): ";
Bernie Innocenti318ed2d2018-08-30 04:05:20 +09001112}
1113
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001114static int sock_eq(struct sockaddr* a, struct sockaddr* b) {
1115 struct sockaddr_in *a4, *b4;
1116 struct sockaddr_in6 *a6, *b6;
Bernie Innocenti318ed2d2018-08-30 04:05:20 +09001117
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001118 if (a->sa_family != b->sa_family) return 0;
1119 switch (a->sa_family) {
1120 case AF_INET:
1121 a4 = (struct sockaddr_in*) (void*) a;
1122 b4 = (struct sockaddr_in*) (void*) b;
1123 return a4->sin_port == b4->sin_port && a4->sin_addr.s_addr == b4->sin_addr.s_addr;
1124 case AF_INET6:
1125 a6 = (struct sockaddr_in6*) (void*) a;
1126 b6 = (struct sockaddr_in6*) (void*) b;
1127 return a6->sin6_port == b6->sin6_port &&
Bernie Innocenti318ed2d2018-08-30 04:05:20 +09001128#ifdef HAVE_SIN6_SCOPE_ID
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001129 a6->sin6_scope_id == b6->sin6_scope_id &&
Bernie Innocenti318ed2d2018-08-30 04:05:20 +09001130#endif
Bernie Innocenti8ad893f2018-08-31 14:09:46 +09001131 IN6_ARE_ADDR_EQUAL(&a6->sin6_addr, &b6->sin6_addr);
1132 default:
1133 return 0;
1134 }
Bernie Innocenti318ed2d2018-08-30 04:05:20 +09001135}
Mike Yub601ff72018-11-01 20:07:00 +08001136
lifr6b83a6f2019-07-26 03:17:43 +08001137PrivateDnsModes convertEnumType(PrivateDnsMode privateDnsmode) {
1138 switch (privateDnsmode) {
1139 case PrivateDnsMode::OFF:
1140 return PrivateDnsModes::PDM_OFF;
1141 case PrivateDnsMode::OPPORTUNISTIC:
1142 return PrivateDnsModes::PDM_OPPORTUNISTIC;
1143 case PrivateDnsMode::STRICT:
1144 return PrivateDnsModes::PDM_STRICT;
1145 }
1146 return PrivateDnsModes::PDM_UNKNOWN;
1147}
1148
Luke Huangd7aa7b42018-11-21 20:37:50 +08001149static int res_tls_send(res_state statp, const Slice query, const Slice answer, int* rcode,
Mike Yubfb1b342018-11-06 15:42:36 +08001150 bool* fallback) {
1151 int resplen = 0;
Mike Yub601ff72018-11-01 20:07:00 +08001152 const unsigned netId = statp->netid;
Mike Yub601ff72018-11-01 20:07:00 +08001153
Mike Yubfb1b342018-11-06 15:42:36 +08001154 PrivateDnsStatus privateDnsStatus = gPrivateDnsConfiguration.getStatus(netId);
lifr6b83a6f2019-07-26 03:17:43 +08001155 statp->event->set_private_dns_modes(convertEnumType(privateDnsStatus.mode));
Mike Yubfb1b342018-11-06 15:42:36 +08001156
1157 if (privateDnsStatus.mode == PrivateDnsMode::OFF) {
1158 *fallback = true;
1159 return -1;
Mike Yub601ff72018-11-01 20:07:00 +08001160 }
1161
Mike Yu3e829062019-08-07 14:01:14 +08001162 if (privateDnsStatus.validatedServers().empty()) {
Mike Yub601ff72018-11-01 20:07:00 +08001163 if (privateDnsStatus.mode == PrivateDnsMode::OPPORTUNISTIC) {
Mike Yubfb1b342018-11-06 15:42:36 +08001164 *fallback = true;
1165 return -1;
Mike Yub601ff72018-11-01 20:07:00 +08001166 } else {
1167 // Sleep and iterate some small number of times checking for the
1168 // arrival of resolved and validated server IP addresses, instead
1169 // of returning an immediate error.
Mike Yu4f3747b2018-12-02 17:54:29 +09001170 // This is needed because as soon as a network becomes the default network, apps will
1171 // send DNS queries on that network. If no servers have yet validated, and we do not
1172 // block those queries, they would immediately fail, causing application-visible errors.
1173 // Note that this can happen even before the network validates, since an unvalidated
1174 // network can become the default network if no validated networks are available.
1175 //
1176 // TODO: see if there is a better way to address this problem, such as buffering the
1177 // queries in a queue or only blocking queries for the first few seconds after a default
1178 // network change.
Mike Yubfb1b342018-11-06 15:42:36 +08001179 for (int i = 0; i < 42; i++) {
1180 std::this_thread::sleep_for(std::chrono::milliseconds(100));
Mike Yu3e829062019-08-07 14:01:14 +08001181 // Calling getStatus() to merely check if there's any validated server seems
1182 // wasteful. Consider adding a new method in PrivateDnsConfiguration for speed ups.
1183 if (!gPrivateDnsConfiguration.getStatus(netId).validatedServers().empty()) {
Mike Yubfb1b342018-11-06 15:42:36 +08001184 privateDnsStatus = gPrivateDnsConfiguration.getStatus(netId);
1185 break;
1186 }
1187 }
Mike Yu3e829062019-08-07 14:01:14 +08001188 if (privateDnsStatus.validatedServers().empty()) {
Mike Yubfb1b342018-11-06 15:42:36 +08001189 return -1;
1190 }
Mike Yub601ff72018-11-01 20:07:00 +08001191 }
1192 }
1193
chenbruceacb832c2019-02-20 19:45:50 +08001194 LOG(INFO) << __func__ << ": performing query over TLS";
Mike Yub601ff72018-11-01 20:07:00 +08001195
Mike Yu3e829062019-08-07 14:01:14 +08001196 const auto response = sDnsTlsDispatcher.query(privateDnsStatus.validatedServers(), statp, query,
Mike Yubfb1b342018-11-06 15:42:36 +08001197 answer, &resplen);
Mike Yub601ff72018-11-01 20:07:00 +08001198
chenbruceacb832c2019-02-20 19:45:50 +08001199 LOG(INFO) << __func__ << ": TLS query result: " << static_cast<int>(response);
Mike Yub601ff72018-11-01 20:07:00 +08001200
1201 if (privateDnsStatus.mode == PrivateDnsMode::OPPORTUNISTIC) {
1202 // In opportunistic mode, handle falling back to cleartext in some
1203 // cases (DNS shouldn't fail if a validated opportunistic mode server
1204 // becomes unreachable for some reason).
1205 switch (response) {
Mike Yubfb1b342018-11-06 15:42:36 +08001206 case DnsTlsTransport::Response::success:
Luke Huangd7aa7b42018-11-21 20:37:50 +08001207 *rcode = reinterpret_cast<HEADER*>(answer.base())->rcode;
Mike Yubfb1b342018-11-06 15:42:36 +08001208 return resplen;
Mike Yub601ff72018-11-01 20:07:00 +08001209 case DnsTlsTransport::Response::network_error:
Mike Yubfb1b342018-11-06 15:42:36 +08001210 // No need to set the error timeout here since it will fallback to UDP.
Mike Yub601ff72018-11-01 20:07:00 +08001211 case DnsTlsTransport::Response::internal_error:
1212 // Note: this will cause cleartext queries to be emitted, with
1213 // all of the EDNS0 goodness enabled. Fingers crossed. :-/
Mike Yubfb1b342018-11-06 15:42:36 +08001214 *fallback = true;
1215 [[fallthrough]];
Mike Yub601ff72018-11-01 20:07:00 +08001216 default:
Mike Yubfb1b342018-11-06 15:42:36 +08001217 return -1;
1218 }
1219 } else {
1220 // Strict mode
1221 switch (response) {
1222 case DnsTlsTransport::Response::success:
Luke Huangd7aa7b42018-11-21 20:37:50 +08001223 *rcode = reinterpret_cast<HEADER*>(answer.base())->rcode;
Mike Yubfb1b342018-11-06 15:42:36 +08001224 return resplen;
1225 case DnsTlsTransport::Response::network_error:
1226 // This case happens when the query stored in DnsTlsTransport is expired since
1227 // either 1) the query has been tried for 3 times but no response or 2) fail to
1228 // establish the connection with the server.
Luke Huangd7aa7b42018-11-21 20:37:50 +08001229 *rcode = RCODE_TIMEOUT;
Mike Yubfb1b342018-11-06 15:42:36 +08001230 [[fallthrough]];
1231 default:
1232 return -1;
Mike Yub601ff72018-11-01 20:07:00 +08001233 }
1234 }
Mike Yub601ff72018-11-01 20:07:00 +08001235}
Luke Huang4973a0d2018-11-19 20:17:26 +08001236
Luke Huangba7bef92018-12-26 16:53:03 +08001237int resolv_res_nsend(const android_net_context* netContext, const uint8_t* msg, int msgLen,
lifr94981782019-05-17 21:15:19 +08001238 uint8_t* ans, int ansLen, int* rcode, uint32_t flags,
1239 NetworkDnsEventReported* event) {
1240 assert(event != nullptr);
Bernie Innocenti08487112019-10-11 21:14:13 +09001241 ResState res;
1242 res_init(&res, netContext, event);
1243 _resolv_populate_res_for_net(&res);
Luke Huang4973a0d2018-11-19 20:17:26 +08001244 *rcode = NOERROR;
Bernie Innocenti08487112019-10-11 21:14:13 +09001245 return res_nsend(&res, msg, msgLen, ans, ansLen, rcode, flags);
Bernie Innocentiec4219b2019-01-30 11:16:36 +09001246}