Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 1 | /* $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 Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 73 | /* |
| 74 | * Send query to name server and wait for reply. |
| 75 | */ |
| 76 | |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 77 | constexpr bool kVerboseLogging = false; |
| 78 | #define LOG_TAG "res_send" |
| 79 | |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 80 | #include <sys/param.h> |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 81 | #include <sys/socket.h> |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 82 | #include <sys/time.h> |
| 83 | #include <sys/types.h> |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 84 | #include <sys/uio.h> |
| 85 | |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 86 | #include <arpa/inet.h> |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 87 | #include <arpa/nameser.h> |
| 88 | #include <netinet/in.h> |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 89 | |
| 90 | #include <errno.h> |
| 91 | #include <fcntl.h> |
| 92 | #include <netdb.h> |
| 93 | #include <poll.h> |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 94 | #include <signal.h> |
| 95 | #include <stdio.h> |
| 96 | #include <stdlib.h> |
| 97 | #include <string.h> |
| 98 | #include <time.h> |
| 99 | #include <unistd.h> |
| 100 | |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 101 | #include <android-base/logging.h> |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 102 | |
Mike Yu | a46fae7 | 2018-11-01 20:07:00 +0800 | [diff] [blame] | 103 | #include <netdutils/Slice.h> |
Bernie Innocenti | ad4e26e | 2019-01-30 11:16:36 +0900 | [diff] [blame] | 104 | #include "DnsTlsDispatcher.h" |
| 105 | #include "DnsTlsTransport.h" |
| 106 | #include "PrivateDnsConfiguration.h" |
Bernie Innocenti | 189eb50 | 2018-10-01 23:10:18 +0900 | [diff] [blame] | 107 | #include "netd_resolv/resolv.h" |
| 108 | #include "netd_resolv/stats.h" |
Bernie Innocenti | 2fd418e | 2018-08-30 12:04:03 +0900 | [diff] [blame] | 109 | #include "private/android_filesystem_config.h" |
Bernie Innocenti | 189eb50 | 2018-10-01 23:10:18 +0900 | [diff] [blame] | 110 | #include "res_state_ext.h" |
Bernie Innocenti | 2fd418e | 2018-08-30 12:04:03 +0900 | [diff] [blame] | 111 | #include "resolv_cache.h" |
Bernie Innocenti | 2fd418e | 2018-08-30 12:04:03 +0900 | [diff] [blame] | 112 | #include "resolv_private.h" |
Bernie Innocenti | 2fd418e | 2018-08-30 12:04:03 +0900 | [diff] [blame] | 113 | |
Mike Yu | a46fae7 | 2018-11-01 20:07:00 +0800 | [diff] [blame] | 114 | // TODO: use the namespace something like android::netd_resolv for libnetd_resolv |
| 115 | using namespace android::net; |
Bernie Innocenti | ad4e26e | 2019-01-30 11:16:36 +0900 | [diff] [blame] | 116 | using android::netdutils::Slice; |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 117 | |
| 118 | #define VLOG if (!kVerboseLogging) {} else LOG(INFO) |
| 119 | |
| 120 | #ifndef RESOLV_ALLOW_VERBOSE_LOGGING |
| 121 | static_assert(kVerboseLogging == false, |
| 122 | "Verbose logging floods logs at high-rate and exposes privacy-sensitive information. " |
| 123 | "Do not enable in release builds."); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 124 | #endif |
Bernie Innocenti | 2fd418e | 2018-08-30 12:04:03 +0900 | [diff] [blame] | 125 | |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 126 | #ifndef DEBUG |
| 127 | #define Dprint(cond, args) /*empty*/ |
| 128 | #define DprintQ(cond, args, query, size) /*empty*/ |
| 129 | #else |
| 130 | // TODO: convert to Android logging |
| 131 | #define Dprint(cond, args) \ |
| 132 | if (cond) { \ |
| 133 | fprintf args; \ |
| 134 | } else { \ |
| 135 | } |
| 136 | #define DprintQ(cond, args, query, size) \ |
| 137 | if (cond) { \ |
| 138 | fprintf args; \ |
| 139 | res_pquery(statp, query, size, stdout); \ |
| 140 | } else { \ |
| 141 | } |
| 142 | #endif // DEBUG |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 143 | |
Mike Yu | a46fae7 | 2018-11-01 20:07:00 +0800 | [diff] [blame] | 144 | static DnsTlsDispatcher sDnsTlsDispatcher; |
| 145 | |
Bernie Innocenti | 1f4a9fd | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 146 | static int get_salen(const struct sockaddr*); |
| 147 | static struct sockaddr* get_nsaddr(res_state, size_t); |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 148 | static int send_vc(res_state, struct __res_params* params, const u_char*, int, u_char*, int, int*, |
| 149 | int, time_t*, int*, int*); |
| 150 | static int send_dg(res_state, struct __res_params* params, const u_char*, int, u_char*, int, int*, |
| 151 | int, int*, int*, time_t*, int*, int*); |
| 152 | static void Aerror(const res_state, FILE*, const char*, int, const struct sockaddr*, int); |
| 153 | static void Perror(const res_state, FILE*, const char*, int); |
| 154 | static int sock_eq(struct sockaddr*, struct sockaddr*); |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 155 | static int connect_with_timeout(int sock, const struct sockaddr* nsap, socklen_t salen, |
| 156 | const struct timespec timeout); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 157 | static int retrying_poll(const int sock, short events, const struct timespec* finish); |
Luke Huang | 490551d | 2018-11-21 20:37:50 +0800 | [diff] [blame] | 158 | static int res_tls_send(res_state, const Slice query, const Slice answer, int* rcode, |
Mike Yu | 69615f6 | 2018-11-06 15:42:36 +0800 | [diff] [blame] | 159 | bool* fallback); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 160 | |
| 161 | /* BIONIC-BEGIN: implement source port randomization */ |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 162 | |
Bernie Innocenti | f89b351 | 2018-08-30 07:34:37 +0900 | [diff] [blame] | 163 | // BEGIN: Code copied from ISC eventlib |
| 164 | // TODO: move away from this code |
| 165 | |
| 166 | #define BILLION 1000000000 |
| 167 | |
| 168 | static struct timespec evConsTime(time_t sec, long nsec) { |
| 169 | struct timespec x; |
| 170 | |
| 171 | x.tv_sec = sec; |
| 172 | x.tv_nsec = nsec; |
| 173 | return (x); |
| 174 | } |
| 175 | |
| 176 | static struct timespec evAddTime(struct timespec addend1, struct timespec addend2) { |
| 177 | struct timespec x; |
| 178 | |
| 179 | x.tv_sec = addend1.tv_sec + addend2.tv_sec; |
| 180 | x.tv_nsec = addend1.tv_nsec + addend2.tv_nsec; |
| 181 | if (x.tv_nsec >= BILLION) { |
| 182 | x.tv_sec++; |
| 183 | x.tv_nsec -= BILLION; |
| 184 | } |
| 185 | return (x); |
| 186 | } |
| 187 | |
| 188 | static struct timespec evSubTime(struct timespec minuend, struct timespec subtrahend) { |
| 189 | struct timespec x; |
| 190 | |
| 191 | x.tv_sec = minuend.tv_sec - subtrahend.tv_sec; |
| 192 | if (minuend.tv_nsec >= subtrahend.tv_nsec) |
| 193 | x.tv_nsec = minuend.tv_nsec - subtrahend.tv_nsec; |
| 194 | else { |
| 195 | x.tv_nsec = BILLION - subtrahend.tv_nsec + minuend.tv_nsec; |
| 196 | x.tv_sec--; |
| 197 | } |
| 198 | return (x); |
| 199 | } |
| 200 | |
| 201 | static int evCmpTime(struct timespec a, struct timespec b) { |
| 202 | #define SGN(x) ((x) < 0 ? (-1) : (x) > 0 ? (1) : (0)); |
| 203 | time_t s = a.tv_sec - b.tv_sec; |
| 204 | long n; |
| 205 | |
| 206 | if (s != 0) return SGN(s); |
| 207 | |
| 208 | n = a.tv_nsec - b.tv_nsec; |
| 209 | return SGN(n); |
| 210 | } |
| 211 | |
Bernie Innocenti | f89b351 | 2018-08-30 07:34:37 +0900 | [diff] [blame] | 212 | static struct timespec evNowTime(void) { |
Bernie Innocenti | f89b351 | 2018-08-30 07:34:37 +0900 | [diff] [blame] | 213 | struct timespec tsnow; |
Bernie Innocenti | 357339c | 2018-08-31 16:11:41 +0900 | [diff] [blame] | 214 | clock_gettime(CLOCK_REALTIME, &tsnow); |
| 215 | return tsnow; |
Bernie Innocenti | f89b351 | 2018-08-30 07:34:37 +0900 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | static struct iovec evConsIovec(void* buf, size_t cnt) { |
| 219 | struct iovec ret; |
| 220 | |
| 221 | memset(&ret, 0xf5, sizeof ret); |
| 222 | ret.iov_base = buf; |
| 223 | ret.iov_len = cnt; |
Bernie Innocenti | 357339c | 2018-08-31 16:11:41 +0900 | [diff] [blame] | 224 | return ret; |
Bernie Innocenti | f89b351 | 2018-08-30 07:34:37 +0900 | [diff] [blame] | 225 | } |
| 226 | |
| 227 | // END: Code copied from ISC eventlib |
| 228 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 229 | static int random_bind(int s, int family) { |
nuccachen | e172a4e | 2018-10-23 17:10:58 +0800 | [diff] [blame] | 230 | sockaddr_union u; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 231 | int j; |
| 232 | socklen_t slen; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 233 | |
| 234 | /* clear all, this also sets the IP4/6 address to 'any' */ |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 235 | memset(&u, 0, sizeof u); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 236 | |
| 237 | switch (family) { |
| 238 | case AF_INET: |
| 239 | u.sin.sin_family = family; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 240 | slen = sizeof u.sin; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 241 | break; |
| 242 | case AF_INET6: |
| 243 | u.sin6.sin6_family = family; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 244 | slen = sizeof u.sin6; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 245 | break; |
| 246 | default: |
| 247 | errno = EPROTO; |
| 248 | return -1; |
| 249 | } |
| 250 | |
| 251 | /* first try to bind to a random source port a few times */ |
| 252 | for (j = 0; j < 10; j++) { |
| 253 | /* find a random port between 1025 .. 65534 */ |
Luke Huang | 042e942 | 2019-02-13 14:05:02 +0800 | [diff] [blame] | 254 | int port = 1025 + (arc4random_uniform(65535 - 1025)); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 255 | if (family == AF_INET) |
| 256 | u.sin.sin_port = htons(port); |
| 257 | else |
| 258 | u.sin6.sin6_port = htons(port); |
| 259 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 260 | if (!bind(s, &u.sa, slen)) return 0; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 261 | } |
| 262 | |
Bernie Innocenti | 1f4a9fd | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 263 | // nothing after 10 attempts, our network table is probably busy |
| 264 | // let the system decide which port is best |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 265 | if (family == AF_INET) |
| 266 | u.sin.sin_port = 0; |
| 267 | else |
| 268 | u.sin6.sin6_port = 0; |
| 269 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 270 | return bind(s, &u.sa, slen); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 271 | } |
| 272 | /* BIONIC-END */ |
| 273 | |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 274 | /* int |
| 275 | * res_isourserver(ina) |
| 276 | * looks up "ina" in _res.ns_addr_list[] |
| 277 | * returns: |
| 278 | * 0 : not found |
| 279 | * >0 : found |
| 280 | * author: |
| 281 | * paul vixie, 29may94 |
| 282 | */ |
Bernie Innocenti | 4acba1a | 2018-09-26 11:52:04 +0900 | [diff] [blame] | 283 | static int res_ourserver_p(const res_state statp, const sockaddr* sa) { |
| 284 | const sockaddr_in *inp, *srv; |
| 285 | const sockaddr_in6 *in6p, *srv6; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 286 | int ns; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 287 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 288 | switch (sa->sa_family) { |
| 289 | case AF_INET: |
| 290 | inp = (const struct sockaddr_in*) (const void*) sa; |
| 291 | for (ns = 0; ns < statp->nscount; ns++) { |
| 292 | srv = (struct sockaddr_in*) (void*) get_nsaddr(statp, (size_t) ns); |
| 293 | if (srv->sin_family == inp->sin_family && srv->sin_port == inp->sin_port && |
| 294 | (srv->sin_addr.s_addr == INADDR_ANY || |
| 295 | srv->sin_addr.s_addr == inp->sin_addr.s_addr)) |
Bernie Innocenti | 4acba1a | 2018-09-26 11:52:04 +0900 | [diff] [blame] | 296 | return 1; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 297 | } |
| 298 | break; |
| 299 | case AF_INET6: |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 300 | if (statp->_u._ext.ext == NULL) break; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 301 | in6p = (const struct sockaddr_in6*) (const void*) sa; |
| 302 | for (ns = 0; ns < statp->nscount; ns++) { |
| 303 | srv6 = (struct sockaddr_in6*) (void*) get_nsaddr(statp, (size_t) ns); |
| 304 | if (srv6->sin6_family == in6p->sin6_family && srv6->sin6_port == in6p->sin6_port && |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 305 | #ifdef HAVE_SIN6_SCOPE_ID |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 306 | (srv6->sin6_scope_id == 0 || srv6->sin6_scope_id == in6p->sin6_scope_id) && |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 307 | #endif |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 308 | (IN6_IS_ADDR_UNSPECIFIED(&srv6->sin6_addr) || |
| 309 | IN6_ARE_ADDR_EQUAL(&srv6->sin6_addr, &in6p->sin6_addr))) |
Bernie Innocenti | 4acba1a | 2018-09-26 11:52:04 +0900 | [diff] [blame] | 310 | return 1; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 311 | } |
| 312 | break; |
| 313 | default: |
| 314 | break; |
| 315 | } |
Bernie Innocenti | 4acba1a | 2018-09-26 11:52:04 +0900 | [diff] [blame] | 316 | return 0; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | /* int |
Bernie Innocenti | 1f4a9fd | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 320 | * res_nameinquery(name, type, cl, buf, eom) |
| 321 | * look for (name, type, cl) in the query section of packet (buf, eom) |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 322 | * requires: |
| 323 | * buf + HFIXEDSZ <= eom |
| 324 | * returns: |
| 325 | * -1 : format error |
| 326 | * 0 : not found |
| 327 | * >0 : found |
| 328 | * author: |
| 329 | * paul vixie, 29may94 |
| 330 | */ |
Bernie Innocenti | 1f4a9fd | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 331 | int res_nameinquery(const char* name, int type, int cl, const u_char* buf, const u_char* eom) { |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 332 | const u_char* cp = buf + HFIXEDSZ; |
| 333 | int qdcount = ntohs(((const HEADER*) (const void*) buf)->qdcount); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 334 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 335 | while (qdcount-- > 0) { |
| 336 | char tname[MAXDNAME + 1]; |
Bernie Innocenti | 1f4a9fd | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 337 | int n = dn_expand(buf, eom, cp, tname, sizeof tname); |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 338 | if (n < 0) return (-1); |
| 339 | cp += n; |
| 340 | if (cp + 2 * INT16SZ > eom) return (-1); |
Bernie Innocenti | 1f4a9fd | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 341 | int ttype = ns_get16(cp); |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 342 | cp += INT16SZ; |
Bernie Innocenti | 1f4a9fd | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 343 | int tclass = ns_get16(cp); |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 344 | cp += INT16SZ; |
Bernie Innocenti | 1f4a9fd | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 345 | if (ttype == type && tclass == cl && ns_samename(tname, name) == 1) return (1); |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 346 | } |
| 347 | return (0); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | /* int |
| 351 | * res_queriesmatch(buf1, eom1, buf2, eom2) |
| 352 | * is there a 1:1 mapping of (name,type,class) |
| 353 | * in (buf1,eom1) and (buf2,eom2)? |
| 354 | * returns: |
| 355 | * -1 : format error |
| 356 | * 0 : not a 1:1 mapping |
| 357 | * >0 : is a 1:1 mapping |
| 358 | * author: |
| 359 | * paul vixie, 29may94 |
| 360 | */ |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 361 | int res_queriesmatch(const u_char* buf1, const u_char* eom1, const u_char* buf2, |
| 362 | const u_char* eom2) { |
| 363 | const u_char* cp = buf1 + HFIXEDSZ; |
| 364 | int qdcount = ntohs(((const HEADER*) (const void*) buf1)->qdcount); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 365 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 366 | if (buf1 + HFIXEDSZ > eom1 || buf2 + HFIXEDSZ > eom2) return (-1); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 367 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 368 | /* |
| 369 | * Only header section present in replies to |
| 370 | * dynamic update packets. |
| 371 | */ |
| 372 | if ((((const HEADER*) (const void*) buf1)->opcode == ns_o_update) && |
| 373 | (((const HEADER*) (const void*) buf2)->opcode == ns_o_update)) |
| 374 | return (1); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 375 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 376 | if (qdcount != ntohs(((const HEADER*) (const void*) buf2)->qdcount)) return (0); |
| 377 | while (qdcount-- > 0) { |
| 378 | char tname[MAXDNAME + 1]; |
Bernie Innocenti | 1f4a9fd | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 379 | int n = dn_expand(buf1, eom1, cp, tname, sizeof tname); |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 380 | if (n < 0) return (-1); |
| 381 | cp += n; |
| 382 | if (cp + 2 * INT16SZ > eom1) return (-1); |
Bernie Innocenti | 1f4a9fd | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 383 | int ttype = ns_get16(cp); |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 384 | cp += INT16SZ; |
Bernie Innocenti | 1f4a9fd | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 385 | int tclass = ns_get16(cp); |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 386 | cp += INT16SZ; |
| 387 | if (!res_nameinquery(tname, ttype, tclass, buf2, eom2)) return (0); |
| 388 | } |
| 389 | return (1); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 390 | } |
| 391 | |
Luke Huang | 952d094 | 2018-12-26 16:53:03 +0800 | [diff] [blame] | 392 | int res_nsend(res_state statp, const u_char* buf, int buflen, u_char* ans, int anssiz, int* rcode, |
| 393 | uint32_t flags) { |
Bernie Innocenti | 1f4a9fd | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 394 | int gotsomewhere, terrno, v_circuit, resplen, n; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 395 | ResolvCacheStatus cache_status = RESOLV_CACHE_UNSUPPORTED; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 396 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 397 | if (anssiz < HFIXEDSZ) { |
Luke Huang | 8c0e98f | 2018-12-03 15:37:28 +0800 | [diff] [blame] | 398 | // TODO: Remove errno once callers stop using it |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 399 | errno = EINVAL; |
Luke Huang | 8c0e98f | 2018-12-03 15:37:28 +0800 | [diff] [blame] | 400 | return -EINVAL; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 401 | } |
| 402 | DprintQ((statp->options & RES_DEBUG) || (statp->pfcode & RES_PRF_QUERY), |
| 403 | (stdout, ";; res_send()\n"), buf, buflen); |
| 404 | v_circuit = (statp->options & RES_USEVC) || buflen > PACKETSZ; |
| 405 | gotsomewhere = 0; |
| 406 | terrno = ETIMEDOUT; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 407 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 408 | int anslen = 0; |
Luke Huang | 952d094 | 2018-12-26 16:53:03 +0800 | [diff] [blame] | 409 | cache_status = _resolv_cache_lookup(statp->netid, buf, buflen, ans, anssiz, &anslen, flags); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 410 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 411 | if (cache_status == RESOLV_CACHE_FOUND) { |
| 412 | return anslen; |
| 413 | } else if (cache_status != RESOLV_CACHE_UNSUPPORTED) { |
| 414 | // had a cache miss for a known network, so populate the thread private |
| 415 | // data so the normal resolve path can do its thing |
| 416 | _resolv_populate_res_for_net(statp); |
| 417 | } |
| 418 | if (statp->nscount == 0) { |
| 419 | // We have no nameservers configured, so there's no point trying. |
| 420 | // Tell the cache the query failed, or any retries and anyone else asking the same |
| 421 | // question will block for PENDING_REQUEST_TIMEOUT seconds instead of failing fast. |
Luke Huang | 952d094 | 2018-12-26 16:53:03 +0800 | [diff] [blame] | 422 | _resolv_cache_query_failed(statp->netid, buf, buflen, flags); |
Luke Huang | 8c0e98f | 2018-12-03 15:37:28 +0800 | [diff] [blame] | 423 | |
| 424 | // TODO: Remove errno once callers stop using it |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 425 | errno = ESRCH; |
Luke Huang | 8c0e98f | 2018-12-03 15:37:28 +0800 | [diff] [blame] | 426 | return -ESRCH; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 427 | } |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 428 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 429 | /* |
| 430 | * If the ns_addr_list in the resolver context has changed, then |
| 431 | * invalidate our cached copy and the associated timing data. |
| 432 | */ |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 433 | if (statp->_u._ext.nscount != 0) { |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 434 | int needclose = 0; |
| 435 | struct sockaddr_storage peer; |
| 436 | socklen_t peerlen; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 437 | |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 438 | if (statp->_u._ext.nscount != statp->nscount) { |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 439 | needclose++; |
| 440 | } else { |
Bernie Innocenti | 1f4a9fd | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 441 | for (int ns = 0; ns < statp->nscount; ns++) { |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 442 | if (statp->nsaddr_list[ns].sin_family && |
| 443 | !sock_eq((struct sockaddr*) (void*) &statp->nsaddr_list[ns], |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 444 | (struct sockaddr*) (void*) &statp->_u._ext.ext->nsaddrs[ns])) { |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 445 | needclose++; |
| 446 | break; |
| 447 | } |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 448 | |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 449 | if (statp->_u._ext.nssocks[ns] == -1) continue; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 450 | peerlen = sizeof(peer); |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 451 | if (getpeername(statp->_u._ext.nssocks[ns], (struct sockaddr*) (void*) &peer, |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 452 | &peerlen) < 0) { |
| 453 | needclose++; |
| 454 | break; |
| 455 | } |
| 456 | if (!sock_eq((struct sockaddr*) (void*) &peer, get_nsaddr(statp, (size_t) ns))) { |
| 457 | needclose++; |
| 458 | break; |
| 459 | } |
| 460 | } |
| 461 | } |
| 462 | if (needclose) { |
| 463 | res_nclose(statp); |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 464 | statp->_u._ext.nscount = 0; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 465 | } |
| 466 | } |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 467 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 468 | /* |
| 469 | * Maybe initialize our private copy of the ns_addr_list. |
| 470 | */ |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 471 | if (statp->_u._ext.nscount == 0) { |
Bernie Innocenti | 1f4a9fd | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 472 | for (int ns = 0; ns < statp->nscount; ns++) { |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 473 | statp->_u._ext.nstimes[ns] = RES_MAXTIME; |
| 474 | statp->_u._ext.nssocks[ns] = -1; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 475 | if (!statp->nsaddr_list[ns].sin_family) continue; |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 476 | statp->_u._ext.ext->nsaddrs[ns].sin = statp->nsaddr_list[ns]; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 477 | } |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 478 | statp->_u._ext.nscount = statp->nscount; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 479 | } |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 480 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 481 | /* |
| 482 | * Some resolvers want to even out the load on their nameservers. |
| 483 | * Note that RES_BLAST overrides RES_ROTATE. |
| 484 | */ |
| 485 | if ((statp->options & RES_ROTATE) != 0U && (statp->options & RES_BLAST) == 0U) { |
nuccachen | e172a4e | 2018-10-23 17:10:58 +0800 | [diff] [blame] | 486 | sockaddr_union inu; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 487 | struct sockaddr_in ina; |
| 488 | int lastns = statp->nscount - 1; |
| 489 | int fd; |
| 490 | u_int16_t nstime; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 491 | |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 492 | if (statp->_u._ext.ext != NULL) inu = statp->_u._ext.ext->nsaddrs[0]; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 493 | ina = statp->nsaddr_list[0]; |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 494 | fd = statp->_u._ext.nssocks[0]; |
| 495 | nstime = statp->_u._ext.nstimes[0]; |
Bernie Innocenti | 1f4a9fd | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 496 | for (int ns = 0; ns < lastns; ns++) { |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 497 | if (statp->_u._ext.ext != NULL) |
| 498 | statp->_u._ext.ext->nsaddrs[ns] = statp->_u._ext.ext->nsaddrs[ns + 1]; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 499 | statp->nsaddr_list[ns] = statp->nsaddr_list[ns + 1]; |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 500 | statp->_u._ext.nssocks[ns] = statp->_u._ext.nssocks[ns + 1]; |
| 501 | statp->_u._ext.nstimes[ns] = statp->_u._ext.nstimes[ns + 1]; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 502 | } |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 503 | if (statp->_u._ext.ext != NULL) statp->_u._ext.ext->nsaddrs[lastns] = inu; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 504 | statp->nsaddr_list[lastns] = ina; |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 505 | statp->_u._ext.nssocks[lastns] = fd; |
| 506 | statp->_u._ext.nstimes[lastns] = nstime; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 507 | } |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 508 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 509 | /* |
| 510 | * Send request, RETRY times, or until successful. |
| 511 | */ |
Luke Huang | 952d094 | 2018-12-26 16:53:03 +0800 | [diff] [blame] | 512 | int retryTimes = (flags & ANDROID_RESOLV_NO_RETRY) ? 1 : statp->retry; |
| 513 | |
| 514 | for (int attempt = 0; attempt < retryTimes; ++attempt) { |
Bernie Innocenti | 189eb50 | 2018-10-01 23:10:18 +0900 | [diff] [blame] | 515 | struct res_stats stats[MAXNS]; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 516 | struct __res_params params; |
Bernie Innocenti | 189eb50 | 2018-10-01 23:10:18 +0900 | [diff] [blame] | 517 | int revision_id = resolv_cache_get_resolver_stats(statp->netid, ¶ms, stats); |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 518 | bool usable_servers[MAXNS]; |
| 519 | android_net_res_stats_get_usable_servers(¶ms, stats, statp->nscount, usable_servers); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 520 | |
Bernie Innocenti | 1f4a9fd | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 521 | for (int ns = 0; ns < statp->nscount; ns++) { |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 522 | if (!usable_servers[ns]) continue; |
| 523 | struct sockaddr* nsap; |
| 524 | int nsaplen; |
| 525 | time_t now = 0; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 526 | int delay = 0; |
Mike Yu | 69615f6 | 2018-11-06 15:42:36 +0800 | [diff] [blame] | 527 | *rcode = RCODE_INTERNAL_ERROR; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 528 | nsap = get_nsaddr(statp, (size_t) ns); |
| 529 | nsaplen = get_salen(nsap); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 530 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 531 | same_ns: |
Mike Yu | 69615f6 | 2018-11-06 15:42:36 +0800 | [diff] [blame] | 532 | // TODO: Since we expect there is only one DNS server being queried here while this |
| 533 | // function tries to query all of private DNS servers. Consider moving it to other |
| 534 | // reasonable place. In addition, maybe add stats for private DNS. |
| 535 | if (!statp->use_local_nameserver) { |
| 536 | bool fallback = false; |
| 537 | resplen = res_tls_send(statp, Slice(const_cast<u_char*>(buf), buflen), |
| 538 | Slice(ans, anssiz), rcode, &fallback); |
| 539 | if (resplen > 0) { |
| 540 | if (cache_status == RESOLV_CACHE_NOTFOUND) { |
| 541 | _resolv_cache_add(statp->netid, buf, buflen, ans, resplen); |
| 542 | } |
| 543 | return resplen; |
Mike Yu | a46fae7 | 2018-11-01 20:07:00 +0800 | [diff] [blame] | 544 | } |
Mike Yu | 69615f6 | 2018-11-06 15:42:36 +0800 | [diff] [blame] | 545 | if (!fallback) { |
Luke Huang | 952d094 | 2018-12-26 16:53:03 +0800 | [diff] [blame] | 546 | _resolv_cache_query_failed(statp->netid, buf, buflen, flags); |
Luke Huang | 8c0e98f | 2018-12-03 15:37:28 +0800 | [diff] [blame] | 547 | res_nclose(statp); |
| 548 | return -terrno; |
Mike Yu | 69615f6 | 2018-11-06 15:42:36 +0800 | [diff] [blame] | 549 | } |
| 550 | } |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 551 | |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 552 | [[maybe_unused]] static const int niflags = NI_NUMERICHOST | NI_NUMERICSERV; |
| 553 | [[maybe_unused]] char abuf[NI_MAXHOST]; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 554 | Dprint(((statp->options & RES_DEBUG) && |
| 555 | getnameinfo(nsap, (socklen_t) nsaplen, abuf, sizeof(abuf), NULL, 0, niflags) == |
| 556 | 0), |
| 557 | (stdout, ";; Querying server (# %d) address = %s\n", ns + 1, abuf)); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 558 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 559 | if (v_circuit) { |
| 560 | /* Use VC; at most one attempt per server. */ |
Luke Huang | 952d094 | 2018-12-26 16:53:03 +0800 | [diff] [blame] | 561 | bool shouldRecordStats = (attempt == 0); |
| 562 | attempt = retryTimes; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 563 | |
Mike Yu | 69615f6 | 2018-11-06 15:42:36 +0800 | [diff] [blame] | 564 | n = send_vc(statp, ¶ms, buf, buflen, ans, anssiz, &terrno, ns, &now, rcode, |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 565 | &delay); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 566 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 567 | /* |
| 568 | * Only record stats the first time we try a query. This ensures that |
| 569 | * queries that deterministically fail (e.g., a name that always returns |
| 570 | * SERVFAIL or times out) do not unduly affect the stats. |
| 571 | */ |
Luke Huang | 952d094 | 2018-12-26 16:53:03 +0800 | [diff] [blame] | 572 | if (shouldRecordStats) { |
Bernie Innocenti | 189eb50 | 2018-10-01 23:10:18 +0900 | [diff] [blame] | 573 | res_sample sample; |
Mike Yu | 69615f6 | 2018-11-06 15:42:36 +0800 | [diff] [blame] | 574 | _res_stats_set_sample(&sample, now, *rcode, delay); |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 575 | _resolv_cache_add_resolver_stats_sample(statp->netid, revision_id, ns, &sample, |
| 576 | params.max_samples); |
| 577 | } |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 578 | |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 579 | VLOG << "used send_vc " << n; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 580 | |
Luke Huang | 8c0e98f | 2018-12-03 15:37:28 +0800 | [diff] [blame] | 581 | if (n < 0) { |
Luke Huang | 952d094 | 2018-12-26 16:53:03 +0800 | [diff] [blame] | 582 | _resolv_cache_query_failed(statp->netid, buf, buflen, flags); |
Luke Huang | 8c0e98f | 2018-12-03 15:37:28 +0800 | [diff] [blame] | 583 | res_nclose(statp); |
| 584 | return -terrno; |
| 585 | }; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 586 | if (n == 0) goto next_ns; |
| 587 | resplen = n; |
| 588 | } else { |
| 589 | /* Use datagrams. */ |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 590 | VLOG << "using send_dg"; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 591 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 592 | n = send_dg(statp, ¶ms, buf, buflen, ans, anssiz, &terrno, ns, &v_circuit, |
Mike Yu | 69615f6 | 2018-11-06 15:42:36 +0800 | [diff] [blame] | 593 | &gotsomewhere, &now, rcode, &delay); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 594 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 595 | /* Only record stats the first time we try a query. See above. */ |
Bernie Innocenti | 1f4a9fd | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 596 | if (attempt == 0) { |
Bernie Innocenti | 189eb50 | 2018-10-01 23:10:18 +0900 | [diff] [blame] | 597 | res_sample sample; |
Mike Yu | 69615f6 | 2018-11-06 15:42:36 +0800 | [diff] [blame] | 598 | _res_stats_set_sample(&sample, now, *rcode, delay); |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 599 | _resolv_cache_add_resolver_stats_sample(statp->netid, revision_id, ns, &sample, |
| 600 | params.max_samples); |
| 601 | } |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 602 | |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 603 | VLOG << "used send_dg " << n; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 604 | |
Luke Huang | 8c0e98f | 2018-12-03 15:37:28 +0800 | [diff] [blame] | 605 | if (n < 0) { |
Luke Huang | 952d094 | 2018-12-26 16:53:03 +0800 | [diff] [blame] | 606 | _resolv_cache_query_failed(statp->netid, buf, buflen, flags); |
Luke Huang | 8c0e98f | 2018-12-03 15:37:28 +0800 | [diff] [blame] | 607 | res_nclose(statp); |
| 608 | return -terrno; |
| 609 | }; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 610 | if (n == 0) goto next_ns; |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 611 | VLOG << "time=" << time(NULL); |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 612 | if (v_circuit) goto same_ns; |
| 613 | resplen = n; |
| 614 | } |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 615 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 616 | Dprint((statp->options & RES_DEBUG) || |
| 617 | ((statp->pfcode & RES_PRF_REPLY) && (statp->pfcode & RES_PRF_HEAD1)), |
| 618 | (stdout, ";; got answer:\n")); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 619 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 620 | DprintQ((statp->options & RES_DEBUG) || (statp->pfcode & RES_PRF_REPLY), |
| 621 | (stdout, "%s", ""), ans, (resplen > anssiz) ? anssiz : resplen); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 622 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 623 | if (cache_status == RESOLV_CACHE_NOTFOUND) { |
| 624 | _resolv_cache_add(statp->netid, buf, buflen, ans, resplen); |
| 625 | } |
| 626 | /* |
| 627 | * If we have temporarily opened a virtual circuit, |
| 628 | * or if we haven't been asked to keep a socket open, |
| 629 | * close the socket. |
| 630 | */ |
| 631 | if ((v_circuit && (statp->options & RES_USEVC) == 0U) || |
| 632 | (statp->options & RES_STAYOPEN) == 0U) { |
| 633 | res_nclose(statp); |
| 634 | } |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 635 | return (resplen); |
| 636 | next_ns:; |
Bernie Innocenti | 1f4a9fd | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 637 | } // for each ns |
| 638 | } // for each retry |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 639 | res_nclose(statp); |
| 640 | if (!v_circuit) { |
Luke Huang | 8c0e98f | 2018-12-03 15:37:28 +0800 | [diff] [blame] | 641 | if (!gotsomewhere) { |
| 642 | // TODO: Remove errno once callers stop using it |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 643 | errno = ECONNREFUSED; /* no nameservers found */ |
Luke Huang | 8c0e98f | 2018-12-03 15:37:28 +0800 | [diff] [blame] | 644 | terrno = ECONNREFUSED; |
| 645 | } else { |
| 646 | // TODO: Remove errno once callers stop using it |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 647 | errno = ETIMEDOUT; /* no answer obtained */ |
Luke Huang | 8c0e98f | 2018-12-03 15:37:28 +0800 | [diff] [blame] | 648 | terrno = ETIMEDOUT; |
| 649 | } |
| 650 | } else { |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 651 | errno = terrno; |
Luke Huang | 8c0e98f | 2018-12-03 15:37:28 +0800 | [diff] [blame] | 652 | } |
Luke Huang | 952d094 | 2018-12-26 16:53:03 +0800 | [diff] [blame] | 653 | _resolv_cache_query_failed(statp->netid, buf, buflen, flags); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 654 | |
Luke Huang | 8c0e98f | 2018-12-03 15:37:28 +0800 | [diff] [blame] | 655 | return -terrno; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 656 | } |
| 657 | |
| 658 | /* Private */ |
| 659 | |
Bernie Innocenti | 1f4a9fd | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 660 | static int get_salen(const struct sockaddr* sa) { |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 661 | if (sa->sa_family == AF_INET) |
| 662 | return (sizeof(struct sockaddr_in)); |
| 663 | else if (sa->sa_family == AF_INET6) |
| 664 | return (sizeof(struct sockaddr_in6)); |
| 665 | else |
| 666 | return (0); /* unknown, die on connect */ |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 667 | } |
| 668 | |
| 669 | /* |
| 670 | * pick appropriate nsaddr_list for use. see res_init() for initialization. |
| 671 | */ |
Bernie Innocenti | 1f4a9fd | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 672 | static struct sockaddr* get_nsaddr(res_state statp, size_t n) { |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 673 | if (!statp->nsaddr_list[n].sin_family && statp->_u._ext.ext) { |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 674 | /* |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 675 | * - statp->_u._ext.ext->nsaddrs[n] holds an address that is larger |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 676 | * than struct sockaddr, and |
| 677 | * - user code did not update statp->nsaddr_list[n]. |
| 678 | */ |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 679 | return (struct sockaddr*) (void*) &statp->_u._ext.ext->nsaddrs[n]; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 680 | } else { |
| 681 | /* |
| 682 | * - user code updated statp->nsaddr_list[n], or |
| 683 | * - statp->nsaddr_list[n] has the same content as |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 684 | * statp->_u._ext.ext->nsaddrs[n]. |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 685 | */ |
| 686 | return (struct sockaddr*) (void*) &statp->nsaddr_list[n]; |
| 687 | } |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 688 | } |
| 689 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 690 | static struct timespec get_timeout(const res_state statp, const struct __res_params* params, |
| 691 | const int ns) { |
| 692 | int msec; |
| 693 | if (params->base_timeout_msec != 0) { |
| 694 | // TODO: scale the timeout by retry attempt and maybe number of servers |
| 695 | msec = params->base_timeout_msec; |
| 696 | } else { |
| 697 | // Legacy algorithm which scales the timeout by nameserver number. |
| 698 | // For instance, with 4 nameservers: 5s, 2.5s, 5s, 10s |
| 699 | // This has no effect with 1 or 2 nameservers |
| 700 | msec = (statp->retrans * 1000) << ns; |
| 701 | if (ns > 0) { |
| 702 | msec /= statp->nscount; |
| 703 | } |
| 704 | if (msec < 1000) { |
| 705 | msec = 1000; // Use at least 100ms |
| 706 | } |
| 707 | } |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 708 | VLOG << "using timeout of " << msec << " msec"; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 709 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 710 | struct timespec result; |
| 711 | result.tv_sec = msec / 1000; |
| 712 | result.tv_nsec = (msec % 1000) * 1000000; |
| 713 | return result; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 714 | } |
| 715 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 716 | static int send_vc(res_state statp, struct __res_params* params, const u_char* buf, int buflen, |
| 717 | u_char* ans, int anssiz, int* terrno, int ns, time_t* at, int* rcode, |
| 718 | int* delay) { |
| 719 | *at = time(NULL); |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 720 | *delay = 0; |
| 721 | const HEADER* hp = (const HEADER*) (const void*) buf; |
| 722 | HEADER* anhp = (HEADER*) (void*) ans; |
| 723 | struct sockaddr* nsap; |
| 724 | int nsaplen; |
| 725 | int truncating, connreset, resplen, n; |
| 726 | struct iovec iov[2]; |
| 727 | u_short len; |
| 728 | u_char* cp; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 729 | |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 730 | VLOG << "using send_vc"; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 731 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 732 | nsap = get_nsaddr(statp, (size_t) ns); |
| 733 | nsaplen = get_salen(nsap); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 734 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 735 | connreset = 0; |
| 736 | same_ns: |
| 737 | truncating = 0; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 738 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 739 | struct timespec now = evNowTime(); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 740 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 741 | /* Are we still talking to whom we want to talk to? */ |
| 742 | if (statp->_vcsock >= 0 && (statp->_flags & RES_F_VC) != 0) { |
| 743 | struct sockaddr_storage peer; |
| 744 | socklen_t size = sizeof peer; |
| 745 | unsigned old_mark; |
| 746 | socklen_t mark_size = sizeof(old_mark); |
| 747 | if (getpeername(statp->_vcsock, (struct sockaddr*) (void*) &peer, &size) < 0 || |
| 748 | !sock_eq((struct sockaddr*) (void*) &peer, nsap) || |
| 749 | getsockopt(statp->_vcsock, SOL_SOCKET, SO_MARK, &old_mark, &mark_size) < 0 || |
| 750 | old_mark != statp->_mark) { |
| 751 | res_nclose(statp); |
| 752 | statp->_flags &= ~RES_F_VC; |
| 753 | } |
| 754 | } |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 755 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 756 | if (statp->_vcsock < 0 || (statp->_flags & RES_F_VC) == 0) { |
| 757 | if (statp->_vcsock >= 0) res_nclose(statp); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 758 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 759 | statp->_vcsock = socket(nsap->sa_family, SOCK_STREAM | SOCK_CLOEXEC, 0); |
| 760 | if (statp->_vcsock < 0) { |
| 761 | switch (errno) { |
| 762 | case EPROTONOSUPPORT: |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 763 | case EPFNOSUPPORT: |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 764 | case EAFNOSUPPORT: |
| 765 | Perror(statp, stderr, "socket(vc)", errno); |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 766 | return 0; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 767 | default: |
| 768 | *terrno = errno; |
| 769 | Perror(statp, stderr, "socket(vc)", errno); |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 770 | return -1; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 771 | } |
| 772 | } |
| 773 | fchown(statp->_vcsock, AID_DNS, -1); |
| 774 | if (statp->_mark != MARK_UNSET) { |
| 775 | if (setsockopt(statp->_vcsock, SOL_SOCKET, SO_MARK, &statp->_mark, |
| 776 | sizeof(statp->_mark)) < 0) { |
| 777 | *terrno = errno; |
| 778 | Perror(statp, stderr, "setsockopt", errno); |
| 779 | return -1; |
| 780 | } |
| 781 | } |
| 782 | errno = 0; |
| 783 | if (random_bind(statp->_vcsock, nsap->sa_family) < 0) { |
| 784 | *terrno = errno; |
| 785 | Aerror(statp, stderr, "bind/vc", errno, nsap, nsaplen); |
| 786 | res_nclose(statp); |
| 787 | return (0); |
| 788 | } |
| 789 | if (connect_with_timeout(statp->_vcsock, nsap, (socklen_t) nsaplen, |
| 790 | get_timeout(statp, params, ns)) < 0) { |
| 791 | *terrno = errno; |
| 792 | Aerror(statp, stderr, "connect/vc", errno, nsap, nsaplen); |
| 793 | res_nclose(statp); |
| 794 | /* |
| 795 | * The way connect_with_timeout() is implemented prevents us from reliably |
| 796 | * determining whether this was really a timeout or e.g. ECONNREFUSED. Since |
| 797 | * currently both cases are handled in the same way, there is no need to |
| 798 | * change this (yet). If we ever need to reliably distinguish between these |
| 799 | * cases, both connect_with_timeout() and retrying_poll() need to be |
| 800 | * modified, though. |
| 801 | */ |
| 802 | *rcode = RCODE_TIMEOUT; |
| 803 | return (0); |
| 804 | } |
| 805 | statp->_flags |= RES_F_VC; |
| 806 | } |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 807 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 808 | /* |
| 809 | * Send length & message |
| 810 | */ |
| 811 | ns_put16((u_short) buflen, (u_char*) (void*) &len); |
| 812 | iov[0] = evConsIovec(&len, INT16SZ); |
Bernie Innocenti | 1f4a9fd | 2018-09-07 21:10:25 +0900 | [diff] [blame] | 813 | iov[1] = evConsIovec((void*) buf, (size_t) buflen); |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 814 | if (writev(statp->_vcsock, iov, 2) != (INT16SZ + buflen)) { |
| 815 | *terrno = errno; |
| 816 | Perror(statp, stderr, "write failed", errno); |
| 817 | res_nclose(statp); |
| 818 | return (0); |
| 819 | } |
| 820 | /* |
| 821 | * Receive length & response |
| 822 | */ |
| 823 | read_len: |
| 824 | cp = ans; |
| 825 | len = INT16SZ; |
| 826 | while ((n = read(statp->_vcsock, (char*) cp, (size_t) len)) > 0) { |
| 827 | cp += n; |
| 828 | if ((len -= n) == 0) break; |
| 829 | } |
| 830 | if (n <= 0) { |
| 831 | *terrno = errno; |
| 832 | Perror(statp, stderr, "read failed", errno); |
| 833 | res_nclose(statp); |
| 834 | /* |
| 835 | * A long running process might get its TCP |
| 836 | * connection reset if the remote server was |
| 837 | * restarted. Requery the server instead of |
| 838 | * trying a new one. When there is only one |
| 839 | * server, this means that a query might work |
| 840 | * instead of failing. We only allow one reset |
| 841 | * per query to prevent looping. |
| 842 | */ |
| 843 | if (*terrno == ECONNRESET && !connreset) { |
| 844 | connreset = 1; |
| 845 | res_nclose(statp); |
| 846 | goto same_ns; |
| 847 | } |
| 848 | res_nclose(statp); |
| 849 | return (0); |
| 850 | } |
| 851 | resplen = ns_get16(ans); |
| 852 | if (resplen > anssiz) { |
| 853 | Dprint(statp->options & RES_DEBUG, (stdout, ";; response truncated\n")); |
| 854 | truncating = 1; |
| 855 | len = anssiz; |
| 856 | } else |
| 857 | len = resplen; |
| 858 | if (len < HFIXEDSZ) { |
| 859 | /* |
| 860 | * Undersized message. |
| 861 | */ |
| 862 | Dprint(statp->options & RES_DEBUG, (stdout, ";; undersized: %d\n", len)); |
| 863 | *terrno = EMSGSIZE; |
| 864 | res_nclose(statp); |
| 865 | return (0); |
| 866 | } |
| 867 | cp = ans; |
| 868 | while (len != 0 && (n = read(statp->_vcsock, (char*) cp, (size_t) len)) > 0) { |
| 869 | cp += n; |
| 870 | len -= n; |
| 871 | } |
| 872 | if (n <= 0) { |
| 873 | *terrno = errno; |
| 874 | Perror(statp, stderr, "read(vc)", errno); |
| 875 | res_nclose(statp); |
| 876 | return (0); |
| 877 | } |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 878 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 879 | if (truncating) { |
| 880 | /* |
| 881 | * Flush rest of answer so connection stays in synch. |
| 882 | */ |
| 883 | anhp->tc = 1; |
| 884 | len = resplen - anssiz; |
| 885 | while (len != 0) { |
| 886 | char junk[PACKETSZ]; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 887 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 888 | n = read(statp->_vcsock, junk, (len > sizeof junk) ? sizeof junk : len); |
| 889 | if (n > 0) |
| 890 | len -= n; |
| 891 | else |
| 892 | break; |
| 893 | } |
| 894 | } |
| 895 | /* |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 896 | * If the calling application has bailed out of |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 897 | * a previous call and failed to arrange to have |
| 898 | * the circuit closed or the server has got |
| 899 | * itself confused, then drop the packet and |
| 900 | * wait for the correct one. |
| 901 | */ |
| 902 | if (hp->id != anhp->id) { |
| 903 | DprintQ((statp->options & RES_DEBUG) || (statp->pfcode & RES_PRF_REPLY), |
| 904 | (stdout, ";; old answer (unexpected):\n"), ans, |
| 905 | (resplen > anssiz) ? anssiz : resplen); |
| 906 | goto read_len; |
| 907 | } |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 908 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 909 | /* |
| 910 | * All is well, or the error is fatal. Signal that the |
| 911 | * next nameserver ought not be tried. |
| 912 | */ |
| 913 | if (resplen > 0) { |
| 914 | struct timespec done = evNowTime(); |
| 915 | *delay = _res_stats_calculate_rtt(&done, &now); |
| 916 | *rcode = anhp->rcode; |
| 917 | } |
| 918 | return (resplen); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 919 | } |
| 920 | |
| 921 | /* return -1 on error (errno set), 0 on success */ |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 922 | static int connect_with_timeout(int sock, const struct sockaddr* nsap, socklen_t salen, |
| 923 | const struct timespec timeout) { |
| 924 | int res, origflags; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 925 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 926 | origflags = fcntl(sock, F_GETFL, 0); |
| 927 | fcntl(sock, F_SETFL, origflags | O_NONBLOCK); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 928 | |
Bernie Innocenti | f89b351 | 2018-08-30 07:34:37 +0900 | [diff] [blame] | 929 | res = connect(sock, nsap, salen); |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 930 | if (res < 0 && errno != EINPROGRESS) { |
| 931 | res = -1; |
| 932 | goto done; |
| 933 | } |
| 934 | if (res != 0) { |
| 935 | struct timespec now = evNowTime(); |
| 936 | struct timespec finish = evAddTime(now, timeout); |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 937 | VLOG << sock << " send_vc"; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 938 | res = retrying_poll(sock, POLLIN | POLLOUT, &finish); |
| 939 | if (res <= 0) { |
| 940 | res = -1; |
| 941 | } |
| 942 | } |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 943 | done: |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 944 | fcntl(sock, F_SETFL, origflags); |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 945 | VLOG << sock << " connect_with_const timeout returning " << res; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 946 | return res; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 947 | } |
| 948 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 949 | static int retrying_poll(const int sock, const short events, const struct timespec* finish) { |
| 950 | struct timespec now, timeout; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 951 | |
| 952 | retry: |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 953 | VLOG << " " << sock << " retrying_poll"; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 954 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 955 | now = evNowTime(); |
| 956 | if (evCmpTime(*finish, now) > 0) |
| 957 | timeout = evSubTime(*finish, now); |
| 958 | else |
| 959 | timeout = evConsTime(0L, 0L); |
| 960 | struct pollfd fds = {.fd = sock, .events = events}; |
| 961 | int n = ppoll(&fds, 1, &timeout, /*sigmask=*/NULL); |
| 962 | if (n == 0) { |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 963 | VLOG << " " << sock << "retrying_poll timeout"; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 964 | errno = ETIMEDOUT; |
| 965 | return 0; |
| 966 | } |
| 967 | if (n < 0) { |
| 968 | if (errno == EINTR) goto retry; |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 969 | VLOG << " " << sock << " retrying_poll got error " << n; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 970 | return n; |
| 971 | } |
| 972 | if (fds.revents & (POLLIN | POLLOUT | POLLERR)) { |
| 973 | int error; |
| 974 | socklen_t len = sizeof(error); |
| 975 | if (getsockopt(sock, SOL_SOCKET, SO_ERROR, &error, &len) < 0 || error) { |
| 976 | errno = error; |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 977 | VLOG << " " << sock << " retrying_poll dot error2 " << errno; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 978 | return -1; |
| 979 | } |
| 980 | } |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 981 | VLOG << " " << sock << " retrying_poll returning " << n; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 982 | return n; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 983 | } |
| 984 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 985 | static int send_dg(res_state statp, struct __res_params* params, const u_char* buf, int buflen, |
| 986 | u_char* ans, int anssiz, int* terrno, int ns, int* v_circuit, int* gotsomewhere, |
| 987 | time_t* at, int* rcode, int* delay) { |
| 988 | *at = time(NULL); |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 989 | *delay = 0; |
| 990 | const HEADER* hp = (const HEADER*) (const void*) buf; |
| 991 | HEADER* anhp = (HEADER*) (void*) ans; |
| 992 | const struct sockaddr* nsap; |
| 993 | int nsaplen; |
| 994 | struct timespec now, timeout, finish, done; |
| 995 | struct sockaddr_storage from; |
| 996 | socklen_t fromlen; |
| 997 | int resplen, n, s; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 998 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 999 | nsap = get_nsaddr(statp, (size_t) ns); |
| 1000 | nsaplen = get_salen(nsap); |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 1001 | if (statp->_u._ext.nssocks[ns] == -1) { |
| 1002 | statp->_u._ext.nssocks[ns] = socket(nsap->sa_family, SOCK_DGRAM | SOCK_CLOEXEC, 0); |
| 1003 | if (statp->_u._ext.nssocks[ns] < 0) { |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1004 | switch (errno) { |
| 1005 | case EPROTONOSUPPORT: |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1006 | case EPFNOSUPPORT: |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1007 | case EAFNOSUPPORT: |
| 1008 | Perror(statp, stderr, "socket(dg)", errno); |
| 1009 | return (0); |
| 1010 | default: |
| 1011 | *terrno = errno; |
| 1012 | Perror(statp, stderr, "socket(dg)", errno); |
| 1013 | return (-1); |
| 1014 | } |
| 1015 | } |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 1016 | |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 1017 | fchown(statp->_u._ext.nssocks[ns], AID_DNS, -1); |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1018 | if (statp->_mark != MARK_UNSET) { |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 1019 | if (setsockopt(statp->_u._ext.nssocks[ns], SOL_SOCKET, SO_MARK, &(statp->_mark), |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1020 | sizeof(statp->_mark)) < 0) { |
| 1021 | res_nclose(statp); |
| 1022 | return -1; |
| 1023 | } |
| 1024 | } |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 1025 | #ifndef CANNOT_CONNECT_DGRAM |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1026 | /* |
| 1027 | * On a 4.3BSD+ machine (client and server, |
| 1028 | * actually), sending to a nameserver datagram |
| 1029 | * port with no nameserver will cause an |
| 1030 | * ICMP port unreachable message to be returned. |
| 1031 | * If our datagram socket is "connected" to the |
| 1032 | * server, we get an ECONNREFUSED error on the next |
| 1033 | * socket operation, and select returns if the |
| 1034 | * error message is received. We can thus detect |
| 1035 | * the absence of a nameserver without timing out. |
| 1036 | */ |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 1037 | if (random_bind(statp->_u._ext.nssocks[ns], nsap->sa_family) < 0) { |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1038 | Aerror(statp, stderr, "bind(dg)", errno, nsap, nsaplen); |
| 1039 | res_nclose(statp); |
| 1040 | return (0); |
| 1041 | } |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 1042 | if (connect(statp->_u._ext.nssocks[ns], nsap, (socklen_t) nsaplen) < 0) { |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1043 | Aerror(statp, stderr, "connect(dg)", errno, nsap, nsaplen); |
| 1044 | res_nclose(statp); |
| 1045 | return (0); |
| 1046 | } |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 1047 | #endif /* !CANNOT_CONNECT_DGRAM */ |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1048 | Dprint(statp->options & RES_DEBUG, (stdout, ";; new DG socket\n")) |
| 1049 | } |
Ken Chen | cf6ded6 | 2018-10-16 23:12:09 +0800 | [diff] [blame] | 1050 | s = statp->_u._ext.nssocks[ns]; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 1051 | #ifndef CANNOT_CONNECT_DGRAM |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1052 | if (send(s, (const char*) buf, (size_t) buflen, 0) != buflen) { |
| 1053 | Perror(statp, stderr, "send", errno); |
| 1054 | res_nclose(statp); |
| 1055 | return (0); |
| 1056 | } |
| 1057 | #else /* !CANNOT_CONNECT_DGRAM */ |
| 1058 | if (sendto(s, (const char*) buf, buflen, 0, nsap, nsaplen) != buflen) { |
| 1059 | Aerror(statp, stderr, "sendto", errno, nsap, nsaplen); |
| 1060 | res_nclose(statp); |
| 1061 | return (0); |
| 1062 | } |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 1063 | #endif /* !CANNOT_CONNECT_DGRAM */ |
| 1064 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1065 | /* |
| 1066 | * Wait for reply. |
| 1067 | */ |
| 1068 | timeout = get_timeout(statp, params, ns); |
| 1069 | now = evNowTime(); |
| 1070 | finish = evAddTime(now, timeout); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 1071 | retry: |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1072 | n = retrying_poll(s, POLLIN, &finish); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 1073 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1074 | if (n == 0) { |
| 1075 | *rcode = RCODE_TIMEOUT; |
| 1076 | Dprint(statp->options & RES_DEBUG, (stdout, ";; timeout\n")); |
| 1077 | *gotsomewhere = 1; |
| 1078 | return (0); |
| 1079 | } |
| 1080 | if (n < 0) { |
| 1081 | Perror(statp, stderr, "poll", errno); |
| 1082 | res_nclose(statp); |
| 1083 | return (0); |
| 1084 | } |
| 1085 | errno = 0; |
| 1086 | fromlen = sizeof(from); |
| 1087 | resplen = recvfrom(s, (char*) ans, (size_t) anssiz, 0, (struct sockaddr*) (void*) &from, |
| 1088 | &fromlen); |
| 1089 | if (resplen <= 0) { |
| 1090 | Perror(statp, stderr, "recvfrom", errno); |
| 1091 | res_nclose(statp); |
| 1092 | return (0); |
| 1093 | } |
| 1094 | *gotsomewhere = 1; |
| 1095 | if (resplen < HFIXEDSZ) { |
| 1096 | /* |
| 1097 | * Undersized message. |
| 1098 | */ |
| 1099 | Dprint(statp->options & RES_DEBUG, (stdout, ";; undersized: %d\n", resplen)); |
| 1100 | *terrno = EMSGSIZE; |
| 1101 | res_nclose(statp); |
| 1102 | return (0); |
| 1103 | } |
| 1104 | if (hp->id != anhp->id) { |
| 1105 | /* |
| 1106 | * response from old query, ignore it. |
| 1107 | * XXX - potential security hazard could |
| 1108 | * be detected here. |
| 1109 | */ |
| 1110 | DprintQ((statp->options & RES_DEBUG) || (statp->pfcode & RES_PRF_REPLY), |
| 1111 | (stdout, ";; old answer:\n"), ans, (resplen > anssiz) ? anssiz : resplen); |
| 1112 | goto retry; |
| 1113 | } |
| 1114 | if (!(statp->options & RES_INSECURE1) && |
| 1115 | !res_ourserver_p(statp, (struct sockaddr*) (void*) &from)) { |
| 1116 | /* |
| 1117 | * response from wrong server? ignore it. |
| 1118 | * XXX - potential security hazard could |
| 1119 | * be detected here. |
| 1120 | */ |
| 1121 | DprintQ((statp->options & RES_DEBUG) || (statp->pfcode & RES_PRF_REPLY), |
| 1122 | (stdout, ";; not our server:\n"), ans, (resplen > anssiz) ? anssiz : resplen); |
| 1123 | goto retry; |
| 1124 | } |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1125 | if (anhp->rcode == FORMERR && (statp->options & RES_USE_EDNS0) != 0U) { |
| 1126 | /* |
| 1127 | * Do not retry if the server do not understand EDNS0. |
| 1128 | * The case has to be captured here, as FORMERR packet do not |
| 1129 | * carry query section, hence res_queriesmatch() returns 0. |
| 1130 | */ |
| 1131 | DprintQ(statp->options & RES_DEBUG, (stdout, "server rejected query with EDNS0:\n"), ans, |
| 1132 | (resplen > anssiz) ? anssiz : resplen); |
| 1133 | /* record the error */ |
| 1134 | statp->_flags |= RES_F_EDNS0ERR; |
| 1135 | res_nclose(statp); |
| 1136 | return (0); |
| 1137 | } |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1138 | if (!(statp->options & RES_INSECURE2) && |
| 1139 | !res_queriesmatch(buf, buf + buflen, ans, ans + anssiz)) { |
| 1140 | /* |
| 1141 | * response contains wrong query? ignore it. |
| 1142 | * XXX - potential security hazard could |
| 1143 | * be detected here. |
| 1144 | */ |
| 1145 | DprintQ((statp->options & RES_DEBUG) || (statp->pfcode & RES_PRF_REPLY), |
| 1146 | (stdout, ";; wrong query name:\n"), ans, (resplen > anssiz) ? anssiz : resplen); |
| 1147 | goto retry; |
| 1148 | ; |
| 1149 | } |
| 1150 | done = evNowTime(); |
| 1151 | *delay = _res_stats_calculate_rtt(&done, &now); |
| 1152 | if (anhp->rcode == SERVFAIL || anhp->rcode == NOTIMP || anhp->rcode == REFUSED) { |
| 1153 | DprintQ(statp->options & RES_DEBUG, (stdout, "server rejected query:\n"), ans, |
| 1154 | (resplen > anssiz) ? anssiz : resplen); |
| 1155 | res_nclose(statp); |
| 1156 | /* don't retry if called from dig */ |
| 1157 | if (!statp->pfcode) { |
| 1158 | *rcode = anhp->rcode; |
| 1159 | return (0); |
| 1160 | } |
| 1161 | } |
| 1162 | if (!(statp->options & RES_IGNTC) && anhp->tc) { |
| 1163 | /* |
| 1164 | * To get the rest of answer, |
| 1165 | * use TCP with same server. |
| 1166 | */ |
| 1167 | Dprint(statp->options & RES_DEBUG, (stdout, ";; truncated answer\n")); |
| 1168 | *v_circuit = 1; |
| 1169 | res_nclose(statp); |
| 1170 | return (1); |
| 1171 | } |
| 1172 | /* |
| 1173 | * All is well, or the error is fatal. Signal that the |
| 1174 | * next nameserver ought not be tried. |
| 1175 | */ |
| 1176 | if (resplen > 0) { |
| 1177 | *rcode = anhp->rcode; |
| 1178 | } |
| 1179 | return (resplen); |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 1180 | } |
| 1181 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1182 | static void Aerror(const res_state statp, FILE* file, const char* string, int error, |
| 1183 | const struct sockaddr* address, int alen) { |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 1184 | if (!kVerboseLogging) return; |
| 1185 | |
| 1186 | const int save = errno; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1187 | char hbuf[NI_MAXHOST]; |
| 1188 | char sbuf[NI_MAXSERV]; |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 1189 | constexpr int niflags = NI_NUMERICHOST | NI_NUMERICSERV; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 1190 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1191 | if ((statp->options & RES_DEBUG) != 0U) { |
| 1192 | if (getnameinfo(address, (socklen_t) alen, hbuf, sizeof(hbuf), sbuf, sizeof(sbuf), |
| 1193 | niflags)) { |
| 1194 | strncpy(hbuf, "?", sizeof(hbuf) - 1); |
| 1195 | hbuf[sizeof(hbuf) - 1] = '\0'; |
| 1196 | strncpy(sbuf, "?", sizeof(sbuf) - 1); |
| 1197 | sbuf[sizeof(sbuf) - 1] = '\0'; |
| 1198 | } |
| 1199 | fprintf(file, "res_send: %s ([%s].%s): %s\n", string, hbuf, sbuf, strerror(error)); |
| 1200 | } |
| 1201 | errno = save; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 1202 | } |
| 1203 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1204 | static void Perror(const res_state statp, FILE* file, const char* string, int error) { |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 1205 | if (!kVerboseLogging) return; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 1206 | |
Bernie Innocenti | e9ba09c | 2018-09-12 23:20:10 +0900 | [diff] [blame] | 1207 | const int save = errno; |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1208 | if ((statp->options & RES_DEBUG) != 0U) |
| 1209 | fprintf(file, "res_send: %s: %s\n", string, strerror(error)); |
| 1210 | errno = save; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 1211 | } |
| 1212 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1213 | static int sock_eq(struct sockaddr* a, struct sockaddr* b) { |
| 1214 | struct sockaddr_in *a4, *b4; |
| 1215 | struct sockaddr_in6 *a6, *b6; |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 1216 | |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1217 | if (a->sa_family != b->sa_family) return 0; |
| 1218 | switch (a->sa_family) { |
| 1219 | case AF_INET: |
| 1220 | a4 = (struct sockaddr_in*) (void*) a; |
| 1221 | b4 = (struct sockaddr_in*) (void*) b; |
| 1222 | return a4->sin_port == b4->sin_port && a4->sin_addr.s_addr == b4->sin_addr.s_addr; |
| 1223 | case AF_INET6: |
| 1224 | a6 = (struct sockaddr_in6*) (void*) a; |
| 1225 | b6 = (struct sockaddr_in6*) (void*) b; |
| 1226 | return a6->sin6_port == b6->sin6_port && |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 1227 | #ifdef HAVE_SIN6_SCOPE_ID |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1228 | a6->sin6_scope_id == b6->sin6_scope_id && |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 1229 | #endif |
Bernie Innocenti | f12d5bb | 2018-08-31 14:09:46 +0900 | [diff] [blame] | 1230 | IN6_ARE_ADDR_EQUAL(&a6->sin6_addr, &b6->sin6_addr); |
| 1231 | default: |
| 1232 | return 0; |
| 1233 | } |
Bernie Innocenti | 5586419 | 2018-08-30 04:05:20 +0900 | [diff] [blame] | 1234 | } |
Mike Yu | a46fae7 | 2018-11-01 20:07:00 +0800 | [diff] [blame] | 1235 | |
Luke Huang | 490551d | 2018-11-21 20:37:50 +0800 | [diff] [blame] | 1236 | static int res_tls_send(res_state statp, const Slice query, const Slice answer, int* rcode, |
Mike Yu | 69615f6 | 2018-11-06 15:42:36 +0800 | [diff] [blame] | 1237 | bool* fallback) { |
| 1238 | int resplen = 0; |
Mike Yu | a46fae7 | 2018-11-01 20:07:00 +0800 | [diff] [blame] | 1239 | const unsigned netId = statp->netid; |
| 1240 | const unsigned mark = statp->_mark; |
| 1241 | |
Mike Yu | 69615f6 | 2018-11-06 15:42:36 +0800 | [diff] [blame] | 1242 | PrivateDnsStatus privateDnsStatus = gPrivateDnsConfiguration.getStatus(netId); |
| 1243 | |
| 1244 | if (privateDnsStatus.mode == PrivateDnsMode::OFF) { |
| 1245 | *fallback = true; |
| 1246 | return -1; |
Mike Yu | a46fae7 | 2018-11-01 20:07:00 +0800 | [diff] [blame] | 1247 | } |
| 1248 | |
Mike Yu | a46fae7 | 2018-11-01 20:07:00 +0800 | [diff] [blame] | 1249 | if (privateDnsStatus.validatedServers.empty()) { |
| 1250 | if (privateDnsStatus.mode == PrivateDnsMode::OPPORTUNISTIC) { |
Mike Yu | 69615f6 | 2018-11-06 15:42:36 +0800 | [diff] [blame] | 1251 | *fallback = true; |
| 1252 | return -1; |
Mike Yu | a46fae7 | 2018-11-01 20:07:00 +0800 | [diff] [blame] | 1253 | } else { |
| 1254 | // Sleep and iterate some small number of times checking for the |
| 1255 | // arrival of resolved and validated server IP addresses, instead |
| 1256 | // of returning an immediate error. |
Mike Yu | 5b9ffb2 | 2018-12-02 17:54:29 +0900 | [diff] [blame] | 1257 | // This is needed because as soon as a network becomes the default network, apps will |
| 1258 | // send DNS queries on that network. If no servers have yet validated, and we do not |
| 1259 | // block those queries, they would immediately fail, causing application-visible errors. |
| 1260 | // Note that this can happen even before the network validates, since an unvalidated |
| 1261 | // network can become the default network if no validated networks are available. |
| 1262 | // |
| 1263 | // TODO: see if there is a better way to address this problem, such as buffering the |
| 1264 | // queries in a queue or only blocking queries for the first few seconds after a default |
| 1265 | // network change. |
Mike Yu | 69615f6 | 2018-11-06 15:42:36 +0800 | [diff] [blame] | 1266 | for (int i = 0; i < 42; i++) { |
| 1267 | std::this_thread::sleep_for(std::chrono::milliseconds(100)); |
| 1268 | if (!gPrivateDnsConfiguration.getStatus(netId).validatedServers.empty()) { |
| 1269 | privateDnsStatus = gPrivateDnsConfiguration.getStatus(netId); |
| 1270 | break; |
| 1271 | } |
| 1272 | } |
| 1273 | if (privateDnsStatus.validatedServers.empty()) { |
| 1274 | return -1; |
| 1275 | } |
Mike Yu | a46fae7 | 2018-11-01 20:07:00 +0800 | [diff] [blame] | 1276 | } |
| 1277 | } |
| 1278 | |
| 1279 | VLOG << __func__ << ": performing query over TLS"; |
| 1280 | |
| 1281 | const auto response = sDnsTlsDispatcher.query(privateDnsStatus.validatedServers, mark, query, |
Mike Yu | 69615f6 | 2018-11-06 15:42:36 +0800 | [diff] [blame] | 1282 | answer, &resplen); |
Mike Yu | a46fae7 | 2018-11-01 20:07:00 +0800 | [diff] [blame] | 1283 | |
Mike Yu | 69615f6 | 2018-11-06 15:42:36 +0800 | [diff] [blame] | 1284 | VLOG << __func__ << ": TLS query result: " << static_cast<int>(response); |
Mike Yu | a46fae7 | 2018-11-01 20:07:00 +0800 | [diff] [blame] | 1285 | |
| 1286 | if (privateDnsStatus.mode == PrivateDnsMode::OPPORTUNISTIC) { |
| 1287 | // In opportunistic mode, handle falling back to cleartext in some |
| 1288 | // cases (DNS shouldn't fail if a validated opportunistic mode server |
| 1289 | // becomes unreachable for some reason). |
| 1290 | switch (response) { |
Mike Yu | 69615f6 | 2018-11-06 15:42:36 +0800 | [diff] [blame] | 1291 | case DnsTlsTransport::Response::success: |
Luke Huang | 490551d | 2018-11-21 20:37:50 +0800 | [diff] [blame] | 1292 | *rcode = reinterpret_cast<HEADER*>(answer.base())->rcode; |
Mike Yu | 69615f6 | 2018-11-06 15:42:36 +0800 | [diff] [blame] | 1293 | return resplen; |
Mike Yu | a46fae7 | 2018-11-01 20:07:00 +0800 | [diff] [blame] | 1294 | case DnsTlsTransport::Response::network_error: |
Mike Yu | 69615f6 | 2018-11-06 15:42:36 +0800 | [diff] [blame] | 1295 | // No need to set the error timeout here since it will fallback to UDP. |
Mike Yu | a46fae7 | 2018-11-01 20:07:00 +0800 | [diff] [blame] | 1296 | case DnsTlsTransport::Response::internal_error: |
| 1297 | // Note: this will cause cleartext queries to be emitted, with |
| 1298 | // all of the EDNS0 goodness enabled. Fingers crossed. :-/ |
Mike Yu | 69615f6 | 2018-11-06 15:42:36 +0800 | [diff] [blame] | 1299 | *fallback = true; |
| 1300 | [[fallthrough]]; |
Mike Yu | a46fae7 | 2018-11-01 20:07:00 +0800 | [diff] [blame] | 1301 | default: |
Mike Yu | 69615f6 | 2018-11-06 15:42:36 +0800 | [diff] [blame] | 1302 | return -1; |
| 1303 | } |
| 1304 | } else { |
| 1305 | // Strict mode |
| 1306 | switch (response) { |
| 1307 | case DnsTlsTransport::Response::success: |
Luke Huang | 490551d | 2018-11-21 20:37:50 +0800 | [diff] [blame] | 1308 | *rcode = reinterpret_cast<HEADER*>(answer.base())->rcode; |
Mike Yu | 69615f6 | 2018-11-06 15:42:36 +0800 | [diff] [blame] | 1309 | return resplen; |
| 1310 | case DnsTlsTransport::Response::network_error: |
| 1311 | // This case happens when the query stored in DnsTlsTransport is expired since |
| 1312 | // either 1) the query has been tried for 3 times but no response or 2) fail to |
| 1313 | // establish the connection with the server. |
Luke Huang | 490551d | 2018-11-21 20:37:50 +0800 | [diff] [blame] | 1314 | *rcode = RCODE_TIMEOUT; |
Mike Yu | 69615f6 | 2018-11-06 15:42:36 +0800 | [diff] [blame] | 1315 | [[fallthrough]]; |
| 1316 | default: |
| 1317 | return -1; |
Mike Yu | a46fae7 | 2018-11-01 20:07:00 +0800 | [diff] [blame] | 1318 | } |
| 1319 | } |
Mike Yu | a46fae7 | 2018-11-01 20:07:00 +0800 | [diff] [blame] | 1320 | } |
Luke Huang | eefb777 | 2018-11-19 20:17:26 +0800 | [diff] [blame] | 1321 | |
Luke Huang | 952d094 | 2018-12-26 16:53:03 +0800 | [diff] [blame] | 1322 | int resolv_res_nsend(const android_net_context* netContext, const uint8_t* msg, int msgLen, |
| 1323 | uint8_t* ans, int ansLen, int* rcode, uint32_t flags) { |
Luke Huang | eefb777 | 2018-11-19 20:17:26 +0800 | [diff] [blame] | 1324 | res_state res = res_get_state(); |
| 1325 | res_setnetcontext(res, netContext); |
| 1326 | _resolv_populate_res_for_net(res); |
| 1327 | *rcode = NOERROR; |
Luke Huang | 952d094 | 2018-12-26 16:53:03 +0800 | [diff] [blame] | 1328 | return res_nsend(res, msg, msgLen, ans, ansLen, rcode, flags); |
Bernie Innocenti | ad4e26e | 2019-01-30 11:16:36 +0900 | [diff] [blame] | 1329 | } |