Coverage Report

Created: 2026-09-14 07:07

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/curl/lib/vdns/doh.c
Line
Count
Source
1
/***************************************************************************
2
 *                                  _   _ ____  _
3
 *  Project                     ___| | | |  _ \| |
4
 *                             / __| | | | |_) | |
5
 *                            | (__| |_| |  _ <| |___
6
 *                             \___|\___/|_| \_\_____|
7
 *
8
 * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
9
 *
10
 * This software is licensed as described in the file COPYING, which
11
 * you should have received as part of this distribution. The terms
12
 * are also available at https://curl.se/docs/copyright.html.
13
 *
14
 * You may opt to use, copy, modify, merge, publish, distribute and/or sell
15
 * copies of the Software, and permit persons to whom the Software is
16
 * furnished to do so, under the terms of the COPYING file.
17
 *
18
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19
 * KIND, either express or implied.
20
 *
21
 * SPDX-License-Identifier: curl
22
 *
23
 ***************************************************************************/
24
#include "curl_setup.h"
25
26
#ifndef CURL_DISABLE_DOH
27
28
#include "urldata.h"
29
#include "curl_addrinfo.h"
30
#include "curl_trc.h"
31
#include "multiif.h"
32
#include "url.h"
33
#include "connect.h"
34
#include "vdns/doh.h"
35
#include "vdns/httpsrr.h"
36
#include "curlx/strdup.h"
37
#include "curlx/dynbuf.h"
38
#include "escape.h"  /* for Curl_hexencode() */
39
#include "urlapi-int.h"
40
41
0
#define DNS_CLASS_IN 0x01
42
43
static void doh_close(struct Curl_easy *data,
44
                      struct Curl_resolv_async *async);
45
46
#ifdef CURLVERBOSE
47
static const char * const doh_code_str[] = {
48
  "",
49
  "Bad label",
50
  "Out of range",
51
  "Label loop",
52
  "Too small",
53
  "Out of memory",
54
  "RDATA length",
55
  "Malformat",
56
  "Bad RCODE",
57
  "Unexpected TYPE",
58
  "Unexpected CLASS",
59
  "No content",
60
  "Bad ID",
61
  "Name too long",
62
  "No such name",
63
  "Transport failed",
64
  "Out Of Memory"
65
};
66
67
static const char *doh_strerror(DOHcode code)
68
0
{
69
0
  if((size_t)code < CURL_ARRAYSIZE(doh_code_str))
70
0
    return doh_code_str[code];
71
0
  return "bad error code";
72
0
}
73
74
static const char *doh_type2name(DNStype dnstype)
75
0
{
76
0
  switch(dnstype) {
77
0
  case CURL_DNS_TYPE_A:
78
0
    return "A";
79
0
  case CURL_DNS_TYPE_AAAA:
80
0
    return "AAAA";
81
0
#ifdef USE_HTTPSRR
82
0
  case CURL_DNS_TYPE_HTTPS:
83
0
    return "HTTPS";
84
0
#endif
85
0
  default:
86
0
    return "unknown";
87
0
  }
88
0
}
89
90
#endif /* CURLVERBOSE */
91
92
/* @unittest 1655
93
 */
94
UNITTEST DOHcode doh_req_encode(const char *host,
95
                                DNStype dnstype,
96
                                unsigned char *dnsp,  /* buffer */
97
                                size_t len,  /* buffer size */
98
                                size_t *olen);  /* output length */
99
UNITTEST DOHcode doh_req_encode(const char *host,
100
                                DNStype dnstype,
101
                                unsigned char *dnsp, /* buffer */
102
                                size_t len,   /* buffer size */
103
                                size_t *olen) /* output length */
104
0
{
105
0
  const size_t hostlen = strlen(host);
106
0
  unsigned char *orig = dnsp;
107
0
  const char *hostp = host;
108
109
  /* The expected output length is 16 bytes more than the length of
110
   * the QNAME-encoding of the hostname.
111
   *
112
   * A valid DNS name may not contain a zero-length label, except at
113
   * the end. For this reason, a name beginning with a dot, or
114
   * containing a sequence of two or more consecutive dots, is invalid
115
   * and cannot be encoded as a QNAME.
116
   *
117
   * If the hostname ends with a trailing dot, the corresponding
118
   * QNAME-encoding is one byte longer than the hostname. If (as is
119
   * also valid) the hostname is shortened by the omission of the
120
   * trailing dot, then its QNAME-encoding will be two bytes longer
121
   * than the hostname.
122
   *
123
   * Each [ label, dot ] pair is encoded as [ length, label ],
124
   * preserving overall length. A final [ label ] without a dot is
125
   * also encoded as [ length, label ], increasing overall length
126
   * by one. The encoding is completed by appending a zero byte,
127
   * representing the zero-length root label, again increasing
128
   * the overall length by one.
129
   */
130
131
0
  size_t expected_len;
132
0
  DEBUGASSERT(hostlen);
133
0
  expected_len = 12 + 1 + hostlen + 4;
134
0
  if(host[hostlen - 1] != '.')
135
0
    expected_len++;
136
137
0
  if(expected_len > DOH_MAX_DNSREQ_SIZE)
138
0
    return DOH_DNS_NAME_TOO_LONG;
139
140
0
  if(len < expected_len)
141
0
    return DOH_TOO_SMALL_BUFFER;
142
143
0
  *dnsp++ = 0; /* 16-bit id */
144
0
  *dnsp++ = 0;
145
0
  *dnsp++ = 0x01; /* |QR|   Opcode  |AA|TC|RD| Set the RD bit */
146
0
  *dnsp++ = '\0'; /* |RA|   Z    |   RCODE   |                */
147
0
  *dnsp++ = '\0';
148
0
  *dnsp++ = 1;    /* QDCOUNT (number of entries in the question section) */
149
0
  *dnsp++ = '\0';
150
0
  *dnsp++ = '\0'; /* ANCOUNT */
151
0
  *dnsp++ = '\0';
152
0
  *dnsp++ = '\0'; /* NSCOUNT */
153
0
  *dnsp++ = '\0';
154
0
  *dnsp++ = '\0'; /* ARCOUNT */
155
156
  /* encode each label and store it in the QNAME */
157
0
  while(*hostp) {
158
0
    size_t labellen;
159
0
    const char *dot = strchr(hostp, '.');
160
0
    if(dot)
161
0
      labellen = dot - hostp;
162
0
    else
163
0
      labellen = strlen(hostp);
164
0
    if((labellen > 63) || (!labellen)) {
165
      /* label is too long or too short, error out */
166
0
      *olen = 0;
167
0
      return DOH_DNS_BAD_LABEL;
168
0
    }
169
    /* label is non-empty, process it */
170
0
    *dnsp++ = (unsigned char)labellen;
171
0
    memcpy(dnsp, hostp, labellen);
172
0
    dnsp += labellen;
173
0
    hostp += labellen;
174
    /* advance past dot, but only if there is one */
175
0
    if(dot)
176
0
      hostp++;
177
0
  } /* next label */
178
179
0
  *dnsp++ = 0; /* append zero-length label for root */
180
181
  /* There are assigned TYPE codes beyond 255: use range [1..65535] */
182
0
  *dnsp++ = (unsigned char)(255 & (dnstype >> 8)); /* upper 8-bit TYPE */
183
0
  *dnsp++ = (unsigned char)(255 & dnstype);        /* lower 8-bit TYPE */
184
185
0
  *dnsp++ = '\0'; /* upper 8-bit CLASS */
186
0
  *dnsp++ = DNS_CLASS_IN; /* IN - "the Internet" */
187
188
0
  *olen = dnsp - orig;
189
190
  /* verify that our estimation of length is valid, since
191
   * this has led to buffer overflows in this function */
192
0
  DEBUGASSERT(*olen == expected_len);
193
0
  return DOH_OK;
194
0
}
195
196
static size_t doh_probe_write_cb(char *contents, size_t size, size_t nmemb,
197
                                 void *userp)
198
0
{
199
0
  size_t realsize = size * nmemb;
200
0
  struct Curl_easy *data = userp;
201
0
  struct doh_request *doh_req = Curl_meta_get(data, CURL_EZM_DOH_PROBE);
202
0
  if(!doh_req)
203
0
    return CURL_WRITEFUNC_ERROR;
204
205
0
  if(curlx_dyn_addn(&doh_req->resp_body, contents, realsize))
206
0
    return 0;
207
208
0
  return realsize;
209
0
}
210
211
static void doh_probe_done(struct Curl_easy *doh,
212
                           struct Curl_easy *master, CURLcode result);
213
static void doh_probe_dtor(const void *key, size_t klen, void *e)
214
0
{
215
0
  (void)key;
216
0
  (void)klen;
217
0
  if(e) {
218
0
    struct doh_request *doh_req = e;
219
0
    curl_slist_free_all(doh_req->req_hds);
220
0
    curlx_dyn_free(&doh_req->resp_body);
221
0
    curlx_free(e);
222
0
  }
223
0
}
224
225
#define ERROR_CHECK_SETOPT(x, y)                        \
226
0
  do {                                                  \
227
0
    result = curl_easy_setopt((CURL *)doh, x, y);       \
228
0
    if(result &&                                        \
229
0
       result != CURLE_NOT_BUILT_IN &&                  \
230
0
       result != CURLE_UNKNOWN_OPTION)                  \
231
0
      goto error;                                       \
232
0
  } while(0)
233
234
static CURLcode doh_probe_run(struct Curl_easy *data,
235
                              DNStype dnstype,
236
                              const char *host,
237
                              const char *url, CURLM *multi,
238
                              uint32_t resolv_id,
239
                              uint32_t *pmid)
240
0
{
241
0
  struct Curl_easy *doh = NULL;
242
0
  CURLcode result = CURLE_OK;
243
0
  timediff_t timeout_ms;
244
0
  struct doh_request *doh_req;
245
0
  DOHcode d;
246
0
  bool maybe_https = !curl_strnequal(url, STRCONST("http:"));
247
248
0
  *pmid = UINT32_MAX;
249
250
0
  doh_req = curlx_calloc(1, sizeof(*doh_req));
251
0
  if(!doh_req)
252
0
    return CURLE_OUT_OF_MEMORY;
253
0
  doh_req->resolv_id = resolv_id;
254
0
  doh_req->dnstype = dnstype;
255
0
  curlx_dyn_init(&doh_req->resp_body, DYN_DOH_RESPONSE);
256
257
0
  d = doh_req_encode(host, dnstype, doh_req->req_body,
258
0
                     sizeof(doh_req->req_body),
259
0
                     &doh_req->req_body_len);
260
0
  if(d) {
261
0
    failf(data, "Failed to encode DoH packet [%d]", (int)d);
262
0
    result = CURLE_OUT_OF_MEMORY;
263
0
    goto error;
264
0
  }
265
266
0
  timeout_ms = Curl_timeleft_ms(data);
267
0
  if(timeout_ms < 0) {
268
0
    result = CURLE_OPERATION_TIMEDOUT;
269
0
    goto error;
270
0
  }
271
272
0
  doh_req->req_hds =
273
0
    curl_slist_append(NULL, "Content-Type: application/dns-message");
274
0
  if(!doh_req->req_hds) {
275
0
    result = CURLE_OUT_OF_MEMORY;
276
0
    goto error;
277
0
  }
278
279
  /* Curl_open() is the internal version of curl_easy_init() */
280
0
  result = Curl_open(&doh);
281
0
  if(result)
282
0
    goto error;
283
284
  /* pass in the struct pointer via a local variable to please coverity and
285
     the gcc typecheck helpers */
286
0
  VERBOSE(doh->state.feat = &Curl_trc_feat_doh);
287
0
  ERROR_CHECK_SETOPT(CURLOPT_URL, url);
288
0
  ERROR_CHECK_SETOPT(CURLOPT_DEFAULT_PROTOCOL, "https");
289
0
  ERROR_CHECK_SETOPT(CURLOPT_WRITEFUNCTION, doh_probe_write_cb);
290
0
  ERROR_CHECK_SETOPT(CURLOPT_WRITEDATA, doh);
291
0
  ERROR_CHECK_SETOPT(CURLOPT_POSTFIELDS, doh_req->req_body);
292
0
  ERROR_CHECK_SETOPT(CURLOPT_POSTFIELDSIZE, (long)doh_req->req_body_len);
293
0
  ERROR_CHECK_SETOPT(CURLOPT_HTTPHEADER, doh_req->req_hds);
294
0
#ifdef USE_HTTP2
295
0
  if(maybe_https) {
296
0
    ERROR_CHECK_SETOPT(CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2TLS);
297
0
    ERROR_CHECK_SETOPT(CURLOPT_PIPEWAIT, 1L);
298
0
  }
299
0
#endif
300
#ifndef DEBUGBUILD
301
  /* enforce HTTPS if not debug */
302
  ERROR_CHECK_SETOPT(CURLOPT_PROTOCOLS, CURLPROTO_HTTPS);
303
#else
304
  /* in debug mode, also allow http */
305
0
  ERROR_CHECK_SETOPT(CURLOPT_PROTOCOLS, CURLPROTO_HTTP | CURLPROTO_HTTPS);
306
0
#endif
307
0
  ERROR_CHECK_SETOPT(CURLOPT_TIMEOUT_MS, (long)timeout_ms);
308
0
  ERROR_CHECK_SETOPT(CURLOPT_SHARE, (CURLSH *)data->share);
309
0
  if(data->set.err && data->set.err != stderr)
310
0
    ERROR_CHECK_SETOPT(CURLOPT_STDERR, data->set.err);
311
0
  if(Curl_trc_ft_is_verbose(data, &Curl_trc_feat_doh))
312
0
    ERROR_CHECK_SETOPT(CURLOPT_VERBOSE, 1L);
313
0
  if(data->set.no_signal)
314
0
    ERROR_CHECK_SETOPT(CURLOPT_NOSIGNAL, 1L);
315
0
  if(data->set.fdebug)
316
0
    ERROR_CHECK_SETOPT(CURLOPT_DEBUGFUNCTION, data->set.fdebug);
317
0
  if(data->set.debugdata)
318
0
    ERROR_CHECK_SETOPT(CURLOPT_DEBUGDATA, data->set.debugdata);
319
320
0
  if(maybe_https) {
321
0
    ERROR_CHECK_SETOPT(CURLOPT_SSL_VERIFYHOST,
322
0
                       data->set.doh_verifyhost ? 2L : 0L);
323
0
    ERROR_CHECK_SETOPT(CURLOPT_SSL_VERIFYPEER,
324
0
                       data->set.doh_verifypeer ? 1L : 0L);
325
0
    ERROR_CHECK_SETOPT(CURLOPT_SSL_VERIFYSTATUS,
326
0
                       data->set.doh_verifystatus ? 1L : 0L);
327
328
    /* Inherit *some* SSL options from the user's transfer. This is a
329
       best-guess as to which options are needed for compatibility. #3661
330
331
       Note DoH does not inherit the user's proxy server so proxy SSL settings
332
       have no effect and are not inherited. If that changes then two new
333
       options should be added to check doh proxy insecure separately,
334
       CURLOPT_DOH_PROXY_SSL_VERIFYHOST and CURLOPT_DOH_PROXY_SSL_VERIFYPEER.
335
       */
336
0
    doh->set.ssl.custom_cafile = data->set.ssl.custom_cafile;
337
0
    doh->set.ssl.custom_capath = data->set.ssl.custom_capath;
338
0
    doh->set.ssl.custom_cablob = data->set.ssl.custom_cablob;
339
0
    if(CURL_EASY_STR(data, STRING_SSL_CAFILE)) {
340
0
      ERROR_CHECK_SETOPT(CURLOPT_CAINFO,
341
0
                         CURL_EASY_STR(data, STRING_SSL_CAFILE));
342
0
    }
343
0
    if(data->set.blobs[BLOB_CAINFO]) {
344
0
      ERROR_CHECK_SETOPT(CURLOPT_CAINFO_BLOB, data->set.blobs[BLOB_CAINFO]);
345
0
    }
346
0
    if(CURL_EASY_STR(data, STRING_SSL_CAPATH)) {
347
0
      ERROR_CHECK_SETOPT(CURLOPT_CAPATH,
348
0
                         CURL_EASY_STR(data, STRING_SSL_CAPATH));
349
0
    }
350
0
    if(CURL_EASY_STR(data, STRING_SSL_CRLFILE)) {
351
0
      ERROR_CHECK_SETOPT(CURLOPT_CRLFILE,
352
0
                         CURL_EASY_STR(data, STRING_SSL_CRLFILE));
353
0
    }
354
0
    if(data->set.ssl.certinfo)
355
0
      ERROR_CHECK_SETOPT(CURLOPT_CERTINFO, 1L);
356
0
    if(data->set.ssl_fsslctx)
357
0
      ERROR_CHECK_SETOPT(CURLOPT_SSL_CTX_FUNCTION, data->set.ssl_fsslctx);
358
0
    if(data->set.ssl_fsslctxp)
359
0
      ERROR_CHECK_SETOPT(CURLOPT_SSL_CTX_DATA, data->set.ssl_fsslctxp);
360
0
    if(CURL_EASY_STR(data, STRING_SSL_EC_CURVES)) {
361
0
      ERROR_CHECK_SETOPT(CURLOPT_SSL_EC_CURVES,
362
0
                         CURL_EASY_STR(data, STRING_SSL_EC_CURVES));
363
0
    }
364
365
0
    (void)curl_easy_setopt(doh, CURLOPT_SSL_OPTIONS,
366
0
                           ((long)data->set.ssl.ssl_options &
367
0
                            ~CURLSSLOPT_AUTO_CLIENT_CERT));
368
0
  }
369
370
0
  doh->state.internal = TRUE;
371
0
  doh->master_mid = data->mid; /* master transfer of this one */
372
0
  doh->sub_xfer_done = doh_probe_done;
373
374
0
  result = Curl_meta_set(doh, CURL_EZM_DOH_PROBE, doh_req, doh_probe_dtor);
375
0
  doh_req = NULL; /* call took ownership */
376
0
  if(result)
377
0
    goto error;
378
379
  /* DoH handles must not inherit private_data. The handles may be passed to
380
     the user via callbacks and the user will be able to identify them as
381
     internal handles because private data is not set. The user can then set
382
     private_data via CURLOPT_PRIVATE if they so choose. */
383
0
  DEBUGASSERT(!doh->set.private_data);
384
385
0
  if(Curl_multi_add_handle(multi, doh))
386
0
    goto error;
387
388
0
  *pmid = doh->mid;
389
0
  return CURLE_OK;
390
391
0
error:
392
0
  Curl_close(&doh);
393
0
  if(doh_req)
394
0
    doh_probe_dtor(NULL, 0, doh_req);
395
0
  return result;
396
0
}
397
398
/*
399
 * Curl_doh() starts a name resolve using DoH. It resolves a name and returns
400
 * a 'Curl_addrinfo *' with the address information.
401
 */
402
403
CURLcode Curl_doh(struct Curl_easy *data,
404
                  struct Curl_resolv_async *async)
405
0
{
406
0
  CURLcode result = CURLE_OK;
407
0
  struct doh_probes *dohp = NULL;
408
0
  size_t i;
409
410
0
  DEBUGASSERT(!async->doh);
411
0
  DEBUGASSERT(async->peer->hostname[0]);
412
0
  if(async->doh) {
413
0
    DEBUGASSERT(0); /* should not happen */
414
0
    Curl_doh_cleanup(data, async);
415
0
  }
416
417
0
  if(!async->dns_queries)
418
0
    return CURLE_BAD_FUNCTION_ARGUMENT;
419
0
#ifdef USE_HTTPSRR
420
0
  if(CURL_DNSQ_IS_ADDR(async->dns_queries) &&
421
0
     (async->dns_queries & CURL_DNSQ_HTTPS)) {
422
    /* Can't mix those in the same async resolve */
423
0
    DEBUGASSERT(0);
424
0
    return CURLE_BAD_FUNCTION_ARGUMENT;
425
0
  }
426
#else
427
  if(async->dns_queries & CURL_DNSQ_HTTPS) {
428
    DEBUGASSERT(0);
429
    return CURLE_NOT_BUILT_IN;
430
  }
431
#endif
432
433
  /* start clean, consider allocating this struct on demand */
434
0
  async->doh = dohp = curlx_calloc(1, sizeof(struct doh_probes));
435
0
  if(!dohp)
436
0
    return CURLE_OUT_OF_MEMORY;
437
438
0
  for(i = 0; i < DOH_SLOT_COUNT; ++i) {
439
0
    dohp->probe_rc[i] = DOH_OK;
440
0
    dohp->probe_mid[i] = UINT32_MAX;
441
0
  }
442
443
0
#ifdef USE_IPV6
444
  /* AAAA results have preference in happy eyeballing, trigger first */
445
0
  if(async->dns_queries & CURL_DNSQ_AAAA) {
446
    /* create IPv6 DoH request */
447
0
    result = doh_probe_run(data, CURL_DNS_TYPE_AAAA,
448
0
                           async->peer->hostname,
449
0
                           CURL_EASY_STR(data, STRING_DOH),
450
0
                           data->multi, async->id,
451
0
                           &dohp->probe_mid[DOH_SLOT_IPV6]);
452
0
    if(result)
453
0
      goto error;
454
0
    async->queries_ongoing++;
455
0
  }
456
0
#endif
457
458
  /* create IPv4 DoH request */
459
0
  if(async->dns_queries & CURL_DNSQ_A) {
460
0
    result = doh_probe_run(data, CURL_DNS_TYPE_A,
461
0
                           async->peer->hostname,
462
0
                           CURL_EASY_STR(data, STRING_DOH),
463
0
                           data->multi, async->id,
464
0
                           &dohp->probe_mid[DOH_SLOT_IPV4]);
465
0
    if(result)
466
0
      goto error;
467
0
    async->queries_ongoing++;
468
0
  }
469
470
0
#ifdef USE_HTTPSRR
471
0
  if(async->dns_queries & CURL_DNSQ_HTTPS) {
472
0
    char *qname = NULL;
473
0
    if(async->peer->port != PORT_HTTPS) {
474
0
      qname = curl_maprintf("_%u._https.%s",
475
0
                            async->peer->port, async->peer->hostname);
476
0
      if(!qname)
477
0
        goto error;
478
0
    }
479
0
    result = doh_probe_run(data, CURL_DNS_TYPE_HTTPS,
480
0
                           qname ? qname : async->peer->hostname,
481
0
                           CURL_EASY_STR(data, STRING_DOH), data->multi,
482
0
                           async->id,
483
0
                           &dohp->probe_mid[DOH_SLOT_HTTPS_RR]);
484
0
    curlx_free(qname);
485
0
    if(result)
486
0
      goto error;
487
0
    async->queries_ongoing++;
488
0
  }
489
0
#endif
490
0
  return CURLE_OK;
491
492
0
error:
493
0
  Curl_doh_cleanup(data, async);
494
0
  return result;
495
0
}
496
497
static DOHcode doh_skipqname(const unsigned char *doh, size_t dohlen,
498
                             unsigned int *indexp)
499
0
{
500
0
  unsigned char length;
501
0
  do {
502
0
    if(dohlen < (*indexp + 1))
503
0
      return DOH_DNS_OUT_OF_RANGE;
504
0
    length = doh[*indexp];
505
0
    if((length & 0xc0) == 0xc0) {
506
      /* name pointer, advance over it and be done */
507
0
      if(dohlen < (*indexp + 2))
508
0
        return DOH_DNS_OUT_OF_RANGE;
509
0
      *indexp += 2;
510
0
      break;
511
0
    }
512
0
    if(length & 0xc0)
513
0
      return DOH_DNS_BAD_LABEL;
514
0
    if(dohlen < (*indexp + 1 + length))
515
0
      return DOH_DNS_OUT_OF_RANGE;
516
0
    *indexp += (unsigned int)(1 + length);
517
0
  } while(length);
518
0
  return DOH_OK;
519
0
}
520
521
static unsigned short doh_get16bit(const unsigned char *doh,
522
                                   unsigned int index)
523
0
{
524
0
  return (unsigned short)((doh[index] << 8) | doh[index + 1]);
525
0
}
526
527
static unsigned int doh_get32bit(const unsigned char *doh, unsigned int index)
528
0
{
529
  /* make clang and gcc optimize this to bswap by incrementing
530
     the pointer first. */
531
0
  doh += index;
532
533
  /* avoid undefined behavior by casting to unsigned before shifting
534
     24 bits, possibly into the sign bit. codegen is same, but
535
     ub sanitizer will not be upset */
536
0
  return ((unsigned)doh[0] << 24) | ((unsigned)doh[1] << 16) |
537
0
         ((unsigned)doh[2] << 8) | doh[3];
538
0
}
539
540
static void doh_store_a(const unsigned char *doh, int index,
541
                        struct dohentry *d)
542
0
{
543
  /* silently ignore addresses over the limit */
544
0
  if(d->numaddr < DOH_MAX_ADDR) {
545
0
    struct dohaddr *a = &d->addr[d->numaddr];
546
0
    a->type = CURL_DNS_TYPE_A;
547
0
    memcpy(&a->ip.v4, &doh[index], 4);
548
0
    d->numaddr++;
549
0
  }
550
0
}
551
552
static void doh_store_aaaa(const unsigned char *doh, int index,
553
                           struct dohentry *d)
554
0
{
555
  /* silently ignore addresses over the limit */
556
0
  if(d->numaddr < DOH_MAX_ADDR) {
557
0
    struct dohaddr *a = &d->addr[d->numaddr];
558
0
    a->type = CURL_DNS_TYPE_AAAA;
559
0
    memcpy(&a->ip.v6, &doh[index], 16);
560
0
    d->numaddr++;
561
0
  }
562
0
}
563
564
#ifdef USE_HTTPSRR
565
static DOHcode doh_store_https(const unsigned char *doh, int index,
566
                               struct dohentry *d, uint16_t len)
567
0
{
568
  /* silently ignore RRs over the limit */
569
0
  if(d->numhttps_rrs < DOH_MAX_HTTPS) {
570
0
    struct dohhttps_rr *h = &d->https_rrs[d->numhttps_rrs];
571
0
    h->val = curlx_memdup(&doh[index], len);
572
0
    if(!h->val)
573
0
      return DOH_OUT_OF_MEM;
574
0
    h->len = len;
575
0
    d->numhttps_rrs++;
576
0
  }
577
0
  return DOH_OK;
578
0
}
579
#endif
580
581
static DOHcode doh_rdata(const unsigned char *doh,
582
                         unsigned short rdlength,
583
                         unsigned short type,
584
                         int index,
585
                         struct dohentry *d)
586
0
{
587
  /* RDATA
588
     - A (TYPE 1): 4 bytes
589
     - AAAA (TYPE 28): 16 bytes
590
     - HTTPS (TYPE 65): N bytes */
591
0
  switch(type) {
592
0
  case CURL_DNS_TYPE_A:
593
0
    if(rdlength != 4)
594
0
      return DOH_DNS_RDATA_LEN;
595
0
    doh_store_a(doh, index, d);
596
0
    break;
597
0
  case CURL_DNS_TYPE_AAAA:
598
0
    if(rdlength != 16)
599
0
      return DOH_DNS_RDATA_LEN;
600
0
    doh_store_aaaa(doh, index, d);
601
0
    break;
602
0
#ifdef USE_HTTPSRR
603
0
  case CURL_DNS_TYPE_HTTPS:
604
0
    if(rdlength < 3)
605
0
      return DOH_DNS_RDATA_LEN;
606
0
    return doh_store_https(doh, index, d, rdlength);
607
0
#endif
608
0
  default:
609
    /* unsupported type, or type we do not store, skip it */
610
0
    break;
611
0
  }
612
0
  return DOH_OK;
613
0
}
614
615
/* @unittest 1655 */
616
UNITTEST void de_init(struct dohentry *de);
617
UNITTEST void de_init(struct dohentry *de)
618
0
{
619
0
  memset(de, 0, sizeof(*de));
620
0
  de->ttl = INT_MAX;
621
0
}
622
623
/* TTL value cap */
624
0
#define MAX_DNS_TTL 86400U /* 24 hours */
625
/* @unittest 1650 */
626
UNITTEST DOHcode doh_resp_decode(const unsigned char *doh,
627
                                 size_t dohlen,
628
                                 DNStype dnstype,
629
                                 struct dohentry *d);
630
UNITTEST DOHcode doh_resp_decode(const unsigned char *doh,
631
                                 size_t dohlen,
632
                                 DNStype dnstype,
633
                                 struct dohentry *d)
634
0
{
635
0
  unsigned char rcode;
636
0
  unsigned short qdcount;
637
0
  unsigned short ancount;
638
0
  unsigned short type = 0;
639
0
  unsigned short rdlength;
640
0
  unsigned short nscount;
641
0
  unsigned short arcount;
642
0
  unsigned int index = 12;
643
0
  DOHcode rc;
644
645
0
  if(dohlen < 12)
646
0
    return DOH_TOO_SMALL_BUFFER; /* too small */
647
0
  if(!doh || doh[0] || doh[1])
648
0
    return DOH_DNS_BAD_ID; /* bad ID */
649
0
  rcode = doh[3] & 0x0f;
650
0
  if(rcode == 3)
651
0
    return DOH_DNS_NXDOMAIN; /* name does not exist */
652
0
  if(rcode)
653
0
    return DOH_DNS_BAD_RCODE; /* bad rcode */
654
655
0
  qdcount = doh_get16bit(doh, 4);
656
0
  while(qdcount) {
657
0
    rc = doh_skipqname(doh, dohlen, &index);
658
0
    if(rc)
659
0
      return rc; /* bad qname */
660
0
    if(dohlen < (index + 4))
661
0
      return DOH_DNS_OUT_OF_RANGE;
662
0
    index += 4; /* skip question's type and class */
663
0
    qdcount--;
664
0
  }
665
666
0
  ancount = doh_get16bit(doh, 6);
667
0
  while(ancount) {
668
0
    unsigned short dnsclass;
669
0
    unsigned int ttl;
670
671
0
    rc = doh_skipqname(doh, dohlen, &index);
672
0
    if(rc)
673
0
      return rc; /* bad qname */
674
675
0
    if(dohlen < (index + 2))
676
0
      return DOH_DNS_OUT_OF_RANGE;
677
678
0
    type = doh_get16bit(doh, index);
679
0
    if((type != CURL_DNS_TYPE_CNAME) &&  /* may be synthesized from DNAME */
680
0
       (type != CURL_DNS_TYPE_DNAME) &&  /* if present, accept and ignore */
681
0
       (type != dnstype))
682
      /* Not the same type as was asked for, nor CNAME nor DNAME */
683
0
      return DOH_DNS_UNEXPECTED_TYPE;
684
0
    index += 2;
685
686
0
    if(dohlen < (index + 2))
687
0
      return DOH_DNS_OUT_OF_RANGE;
688
0
    dnsclass = doh_get16bit(doh, index);
689
0
    if(DNS_CLASS_IN != dnsclass)
690
0
      return DOH_DNS_UNEXPECTED_CLASS; /* unsupported */
691
0
    index += 2;
692
693
0
    if(dohlen < (index + 4))
694
0
      return DOH_DNS_OUT_OF_RANGE;
695
696
0
    ttl = doh_get32bit(doh, index);
697
0
    if(ttl > MAX_DNS_TTL)
698
0
      ttl = MAX_DNS_TTL;
699
0
    if(ttl < d->ttl)
700
0
      d->ttl = ttl;
701
0
    index += 4;
702
703
0
    if(dohlen < (index + 2))
704
0
      return DOH_DNS_OUT_OF_RANGE;
705
706
0
    rdlength = doh_get16bit(doh, index);
707
0
    index += 2;
708
0
    if(dohlen < (index + rdlength))
709
0
      return DOH_DNS_OUT_OF_RANGE;
710
711
0
    rc = doh_rdata(doh, rdlength, type, (int)index, d);
712
0
    if(rc)
713
0
      return rc;
714
0
    index += rdlength;
715
0
    ancount--;
716
0
  }
717
718
0
  nscount = doh_get16bit(doh, 8);
719
0
  while(nscount) {
720
0
    rc = doh_skipqname(doh, dohlen, &index);
721
0
    if(rc)
722
0
      return rc; /* bad qname */
723
724
0
    if(dohlen < (index + 8))
725
0
      return DOH_DNS_OUT_OF_RANGE;
726
727
0
    index += 2 + 2 + 4; /* type, dnsclass and ttl */
728
729
0
    if(dohlen < (index + 2))
730
0
      return DOH_DNS_OUT_OF_RANGE;
731
732
0
    rdlength = doh_get16bit(doh, index);
733
0
    index += 2;
734
0
    if(dohlen < (index + rdlength))
735
0
      return DOH_DNS_OUT_OF_RANGE;
736
0
    index += rdlength;
737
0
    nscount--;
738
0
  }
739
740
0
  arcount = doh_get16bit(doh, 10);
741
0
  while(arcount) {
742
0
    rc = doh_skipqname(doh, dohlen, &index);
743
0
    if(rc)
744
0
      return rc; /* bad qname */
745
746
0
    if(dohlen < (index + 8))
747
0
      return DOH_DNS_OUT_OF_RANGE;
748
749
0
    index += 2 + 2 + 4; /* type, dnsclass and ttl */
750
751
0
    if(dohlen < (index + 2))
752
0
      return DOH_DNS_OUT_OF_RANGE;
753
754
0
    rdlength = doh_get16bit(doh, index);
755
0
    index += 2;
756
0
    if(dohlen < (index + rdlength))
757
0
      return DOH_DNS_OUT_OF_RANGE;
758
0
    index += rdlength;
759
0
    arcount--;
760
0
  }
761
762
0
  if(index != dohlen)
763
0
    return DOH_DNS_MALFORMAT; /* something is wrong */
764
765
0
  return DOH_OK; /* ok */
766
0
}
767
768
/*
769
 * This function returns a pointer to the first element of a newly allocated
770
 * Curl_addrinfo struct linked list filled with the data from a set of DoH
771
 * lookups. Curl_addrinfo is meant to work like the addrinfo struct does for
772
 * an IPv6 stack, but usable also for IPv4, all hosts and environments.
773
 *
774
 * The memory allocated by this function *MUST* be free'd later on calling
775
 * Curl_freeaddrinfo(). For each successful call to this function there
776
 * must be an associated call later to Curl_freeaddrinfo().
777
 */
778
static CURLcode doh2ai(const struct dohentry *de, const char *hostname,
779
                       int port, struct Curl_addrinfo **aip)
780
0
{
781
0
  struct Curl_addrinfo *ai;
782
0
  struct Curl_addrinfo *prevai = NULL;
783
0
  struct Curl_addrinfo *firstai = NULL;
784
0
  struct sockaddr_in *addr;
785
0
#ifdef USE_IPV6
786
0
  struct sockaddr_in6 *addr6;
787
0
#endif
788
0
  size_t hostlen = strlen(hostname) + 1; /* include null-terminator */
789
0
  CURLcode result = CURLE_OK;
790
0
  int i;
791
792
0
  for(i = 0; i < de->numaddr; i++) {
793
0
    size_t ss_size;
794
0
    CURL_SA_FAMILY_T addrtype;
795
0
    if(de->addr[i].type == CURL_DNS_TYPE_AAAA) {
796
#ifndef USE_IPV6
797
      /* we cannot handle IPv6 addresses */
798
      continue;
799
#else
800
0
      ss_size = sizeof(struct sockaddr_in6);
801
0
      addrtype = AF_INET6;
802
0
#endif
803
0
    }
804
0
    else {
805
0
      ss_size = sizeof(struct sockaddr_in);
806
0
      addrtype = AF_INET;
807
0
    }
808
809
0
    ai = curlx_calloc(1, sizeof(struct Curl_addrinfo) + ss_size + hostlen);
810
0
    if(!ai) {
811
0
      result = CURLE_OUT_OF_MEMORY;
812
0
      break;
813
0
    }
814
0
    ai->ai_addr = (void *)((char *)ai + sizeof(struct Curl_addrinfo));
815
0
    ai->ai_canonname = (void *)((char *)ai->ai_addr + ss_size);
816
0
    memcpy(ai->ai_canonname, hostname, hostlen);
817
818
0
    if(!firstai)
819
      /* store the pointer we want to return from this function */
820
0
      firstai = ai;
821
822
0
    if(prevai)
823
      /* make the previous entry point to this */
824
0
      prevai->ai_next = ai;
825
826
0
    ai->ai_family = addrtype;
827
828
    /* we return all names as STREAM, so when using this address for TFTP
829
       the type must be ignored and conn->socktype be used instead! */
830
0
    ai->ai_socktype = SOCK_STREAM;
831
832
0
    ai->ai_addrlen = (curl_socklen_t)ss_size;
833
834
    /* leave the rest of the struct filled with zero */
835
836
0
    switch(ai->ai_family) {
837
0
    case AF_INET:
838
0
      addr = (void *)ai->ai_addr; /* storage area for this info */
839
0
      DEBUGASSERT(sizeof(struct in_addr) == sizeof(de->addr[i].ip.v4));
840
0
      memcpy(&addr->sin_addr, &de->addr[i].ip.v4, sizeof(struct in_addr));
841
0
      addr->sin_family = addrtype;
842
0
      addr->sin_port = htons((unsigned short)port);
843
0
      break;
844
845
0
#ifdef USE_IPV6
846
0
    case AF_INET6:
847
0
      addr6 = (void *)ai->ai_addr; /* storage area for this info */
848
0
      DEBUGASSERT(sizeof(struct in6_addr) == sizeof(de->addr[i].ip.v6));
849
0
      memcpy(&addr6->sin6_addr, &de->addr[i].ip.v6, sizeof(struct in6_addr));
850
0
      addr6->sin6_family = addrtype;
851
0
      addr6->sin6_port = htons((unsigned short)port);
852
0
      break;
853
0
#endif
854
0
    }
855
856
0
    prevai = ai;
857
0
  }
858
859
0
  if(result) {
860
0
    Curl_freeaddrinfo(firstai);
861
0
    firstai = NULL;
862
0
  }
863
0
  *aip = firstai;
864
865
0
  return result;
866
0
}
867
868
/* @unittest 1655 */
869
UNITTEST void de_cleanup(struct dohentry *d);
870
UNITTEST void de_cleanup(struct dohentry *d)
871
0
{
872
0
#ifdef USE_HTTPSRR
873
0
  int i = 0;
874
0
  for(i = 0; i < d->numhttps_rrs; i++)
875
0
    curlx_safefree(d->https_rrs[i].val);
876
#else
877
  (void)d;
878
#endif
879
0
}
880
881
#ifdef USE_HTTPSRR
882
883
/*
884
 * @brief decode the DNS name in a binary RRData
885
 * @param buf points to the buffer (in/out)
886
 * @param remaining points to the remaining buffer length (in/out)
887
 * @param dnsname returns the string form name on success
888
 * @return is 1 for success, error otherwise
889
 *
890
 * The encoding here is defined in
891
 * https://datatracker.ietf.org/doc/html/rfc1035#section-3.1
892
 *
893
 * The input buffer pointer will be modified so it points to after the end of
894
 * the DNS name encoding on output. (that is why it is an "unsigned char
895
 * **" :-)
896
 */
897
static CURLcode doh_decode_rdata_name(const unsigned char **buf,
898
                                      size_t *remaining, char **dnsname)
899
0
{
900
0
  const unsigned char *cp = NULL;
901
0
  size_t rem = 0;
902
0
  unsigned char clen = 0; /* chunk len */
903
0
  struct dynbuf thename;
904
905
0
  DEBUGASSERT(buf && remaining && dnsname);
906
0
  if(!buf || !remaining || !dnsname || !*remaining)
907
0
    return CURLE_OUT_OF_MEMORY;
908
0
  curlx_dyn_init(&thename, CURL_MAXLEN_HOST_NAME);
909
0
  rem = *remaining;
910
0
  cp = *buf;
911
0
  clen = *cp++;
912
  /* RFC 9460 says it must be uncompressed */
913
0
  if(clen > 63)
914
0
    return CURLE_WEIRD_SERVER_REPLY;
915
916
0
  if(clen == 0) {
917
    /* special case - return "." as name */
918
0
    if(curlx_dyn_addn(&thename, ".", 1))
919
0
      return CURLE_OUT_OF_MEMORY;
920
0
  }
921
0
  while(clen) {
922
0
    if(clen >= rem) {
923
0
      curlx_dyn_free(&thename);
924
0
      return CURLE_OUT_OF_MEMORY;
925
0
    }
926
0
    if(curlx_dyn_addn(&thename, cp, clen) ||
927
0
       curlx_dyn_addn(&thename, ".", 1))
928
0
      return CURLE_TOO_LARGE;
929
930
0
    cp += clen;
931
0
    rem -= (clen + 1);
932
0
    if(rem <= 0) {
933
0
      curlx_dyn_free(&thename);
934
0
      return CURLE_OUT_OF_MEMORY;
935
0
    }
936
0
    clen = *cp++;
937
0
    if(clen > 63) {
938
      /* invalid format */
939
0
      curlx_dyn_free(&thename);
940
0
      return CURLE_WEIRD_SERVER_REPLY;
941
0
    }
942
0
  }
943
0
  *buf = cp;
944
0
  *remaining = rem - 1;
945
0
  *dnsname = curlx_dyn_ptr(&thename);
946
0
  return CURLE_OK;
947
0
}
948
949
/* scan for byte values <= 32 or 127 */
950
static CURLcode junkscan(const char *url)
951
0
{
952
0
  const unsigned char *p = (const unsigned char *)url;
953
0
  while(*p) {
954
0
    if(*p <= 0x20 || *p == 127)
955
0
      return CURLE_WEIRD_SERVER_REPLY;
956
0
    p++;
957
0
  }
958
0
  return CURLE_OK;
959
0
}
960
961
/* @unittest 1658 */
962
UNITTEST CURLcode doh_resp_decode_httpsrr(struct Curl_easy *data,
963
                                          const unsigned char *cp, size_t len,
964
                                          struct Curl_https_rrinfo **hrr);
965
UNITTEST CURLcode doh_resp_decode_httpsrr(struct Curl_easy *data,
966
                                          const unsigned char *cp, size_t len,
967
                                          struct Curl_https_rrinfo **hrr)
968
0
{
969
0
  uint16_t pcode = 0, plen = 0;
970
0
  uint32_t expected_min_pcode = 0;
971
0
  struct Curl_https_rrinfo *lhrr = NULL;
972
0
  char *dnsname = NULL;
973
0
  CURLcode result = CURLE_OUT_OF_MEMORY;
974
975
0
  (void)data;
976
0
  *hrr = NULL;
977
0
  if(len <= 2)
978
0
    return CURLE_BAD_FUNCTION_ARGUMENT;
979
0
  lhrr = curlx_calloc(1, sizeof(struct Curl_https_rrinfo));
980
0
  if(!lhrr)
981
0
    return CURLE_OUT_OF_MEMORY;
982
0
  lhrr->priority = doh_get16bit(cp, 0);
983
0
  cp += 2;
984
0
  len -= 2;
985
0
  if(doh_decode_rdata_name(&cp, &len, &dnsname) != CURLE_OK)
986
0
    goto err;
987
0
  lhrr->target = dnsname;
988
0
  result = junkscan(dnsname);
989
0
  if(result) {
990
    /* unacceptable hostname content */
991
0
    goto err;
992
0
  }
993
0
  while(len >= 4) {
994
0
    pcode = doh_get16bit(cp, 0);
995
0
    plen = doh_get16bit(cp, 2);
996
0
    cp += 4;
997
0
    len -= 4;
998
0
    if(pcode < expected_min_pcode || plen > len) {
999
0
      result = CURLE_WEIRD_SERVER_REPLY;
1000
0
      goto err;
1001
0
    }
1002
0
    result = Curl_httpsrr_set(lhrr, pcode, cp, plen);
1003
0
    if(result)
1004
0
      goto err;
1005
0
    Curl_httpsrr_trace(data, lhrr);
1006
0
    cp += plen;
1007
0
    len -= plen;
1008
0
    expected_min_pcode = pcode + 1;
1009
0
  }
1010
0
  *hrr = lhrr;
1011
0
  return CURLE_OK;
1012
0
err:
1013
0
  Curl_httpsrr_destroy(lhrr);
1014
0
  return result;
1015
0
}
1016
1017
#endif /* USE_HTTPSRR */
1018
1019
/* called from multi when a sub transfer, e.g. doh probe, is done.
1020
 * Parse the response and set the results in the `async` context
1021
 * of master, using the id from the probe's CURL_EZM_DOH_PROBE
1022
 * meta data. */
1023
static void doh_probe_done(struct Curl_easy *doh,
1024
                           struct Curl_easy *master, CURLcode result)
1025
0
{
1026
0
  struct Curl_resolv_async *async = NULL;
1027
0
  struct doh_probes *dohp = NULL;
1028
0
  struct doh_request *doh_req = NULL;
1029
0
  struct Curl_addrinfo **pdest_ai;
1030
0
  struct dohentry de;
1031
0
  int slot, httpcode;
1032
1033
0
  de_init(&de);
1034
0
  doh_req = Curl_meta_get(doh, CURL_EZM_DOH_PROBE);
1035
0
  if(!doh_req) {
1036
    /* transfer `doh` is not a DoH probe. */
1037
0
    DEBUGASSERT(0);
1038
0
    goto out;
1039
0
  }
1040
1041
0
  async = Curl_async_get(master, doh_req->resolv_id);
1042
0
  if(!async) {
1043
0
    CURL_TRC_DNS(master, "[%u] ignoring outdated DoH response",
1044
0
                 doh_req->resolv_id);
1045
0
    goto out;
1046
0
  }
1047
0
  dohp = async->doh;
1048
1049
0
  for(slot = 0; slot < DOH_SLOT_COUNT; ++slot) {
1050
0
    if(dohp->probe_mid[slot] == doh->mid)
1051
0
      break;
1052
0
  }
1053
  /* We really should have found the slot where to store the response */
1054
0
  if(slot >= DOH_SLOT_COUNT) {
1055
0
    failf(master, "DoH: unknown sub request done");
1056
0
    DEBUGASSERT(0);
1057
0
    goto out;
1058
0
  }
1059
1060
0
  async->queries_ongoing--;
1061
0
  dohp = async->doh;
1062
0
  httpcode = doh->info.httpcode;
1063
0
  switch(slot) {
1064
0
  case DOH_SLOT_IPV4:
1065
0
    async->dns_responses |= CURL_DNSQ_A;
1066
0
    break;
1067
0
#ifdef USE_IPV6
1068
0
  case DOH_SLOT_IPV6:
1069
0
    async->dns_responses |= CURL_DNSQ_AAAA;
1070
0
    break;
1071
0
#endif
1072
0
#ifdef USE_HTTPSRR
1073
0
  case DOH_SLOT_HTTPS_RR:
1074
0
    async->dns_responses |= CURL_DNSQ_HTTPS;
1075
0
    break;
1076
0
#endif
1077
0
  default:
1078
0
    DEBUGASSERT(0);
1079
0
    break;
1080
0
  }
1081
1082
0
  if(result) {
1083
0
    dohp->probe_rc[slot] = DOH_HTTP_FAILED;
1084
0
    infof(doh, "[DoH] [%s] error: %s",
1085
0
          doh_type2name(doh_req->dnstype), curl_easy_strerror(result));
1086
0
    goto out;
1087
0
  }
1088
0
  else if((httpcode < 200) || (httpcode >= 300)) {
1089
0
    dohp->probe_rc[slot] = DOH_HTTP_FAILED;
1090
0
    infof(doh, "[DoH] [%s] error: HTTP status %d",
1091
0
          doh_type2name(doh_req->dnstype), httpcode);
1092
0
    goto out;
1093
0
  }
1094
1095
0
  dohp->probe_rc[slot] = doh_resp_decode(curlx_dyn_uptr(&doh_req->resp_body),
1096
0
                                         curlx_dyn_len(&doh_req->resp_body),
1097
0
                                         doh_req->dnstype, &de);
1098
0
  if(dohp->probe_rc[slot]) {
1099
0
#ifdef USE_HTTPSRR
1100
0
    if((dohp->probe_rc[slot] == DOH_NO_CONTENT) &&
1101
0
       (doh_req->dnstype == CURL_DNS_TYPE_HTTPS)) {
1102
0
      dohp->probe_rc[slot] = DOH_DNS_NXDOMAIN;
1103
0
    }
1104
0
#endif
1105
0
    infof(doh, "[DoH] [%s] error decoding response: %s",
1106
0
          doh_type2name(doh_req->dnstype),
1107
0
          doh_strerror(dohp->probe_rc[slot]));
1108
0
    goto out;
1109
0
  }
1110
1111
0
  if(doh_req->dnstype == CURL_DNS_TYPE_A)
1112
0
    pdest_ai = &async->ai_A;
1113
0
  else if(doh_req->dnstype == CURL_DNS_TYPE_AAAA)
1114
0
    pdest_ai = &async->ai_AAAA;
1115
0
  else
1116
0
    pdest_ai = NULL;
1117
1118
0
  if(pdest_ai && de.numaddr) {
1119
0
    if(*pdest_ai) {
1120
0
      Curl_freeaddrinfo(*pdest_ai);
1121
0
      *pdest_ai = NULL;
1122
0
    }
1123
0
    result = doh2ai(&de, async->peer->hostname, async->peer->port, pdest_ai);
1124
0
    if(result) { /* hard failure on our side, fail completely */
1125
0
      infof(doh, "[DoH] [%s] error creating addrinfo: %s",
1126
0
            doh_type2name(doh_req->dnstype), curl_easy_strerror(result));
1127
0
      dohp->probe_rc[slot] = DOH_OOM;
1128
0
      async->result = result;
1129
0
    }
1130
0
  }
1131
0
#ifdef USE_HTTPSRR
1132
0
  else if((doh_req->dnstype == CURL_DNS_TYPE_HTTPS) && de.numhttps_rrs) {
1133
0
    CURL_TRC_DNS(doh, "[HTTPS] got %d records", de.numhttps_rrs);
1134
0
    result = doh_resp_decode_httpsrr(doh, de.https_rrs->val,
1135
0
                                     de.https_rrs->len, &async->httpsrr);
1136
0
    if(result) {
1137
0
      dohp->probe_rc[slot] = DOH_HTTP_FAILED;
1138
0
      infof(doh, "[DoH] error decoding HTTPS RR: %s",
1139
0
            curl_easy_strerror(result));
1140
0
      goto out;
1141
0
    }
1142
0
  }
1143
0
#endif /* USE_HTTPSRR */
1144
1145
  /* DoH request complete, run master to act on results */
1146
0
  infof(doh, "DoH request complete, %u to go", async->queries_ongoing);
1147
1148
0
out:
1149
0
  Curl_multi_mark_dirty(master);
1150
0
  de_cleanup(&de);
1151
0
  Curl_meta_remove(doh, CURL_EZM_DOH_PROBE);
1152
0
}
1153
1154
CURLcode Curl_doh_take_result(struct Curl_easy *data,
1155
                              struct Curl_resolv_async *async,
1156
                              struct Curl_dns_entry **pdns)
1157
0
{
1158
0
  struct doh_probes *dohp = async->doh;
1159
0
  CURLcode result = CURLE_OK;
1160
1161
0
  *pdns = NULL; /* defaults to no response */
1162
0
  if(!dohp)
1163
0
    return CURLE_OUT_OF_MEMORY;
1164
1165
0
  async->negative_answer = FALSE;
1166
0
  if(async->result) {
1167
0
    result = async->result;
1168
0
    goto out;
1169
0
  }
1170
1171
0
  if(CURL_DNSQ_IS_ADDR(async->dns_queries) &&
1172
0
     dohp->probe_mid[DOH_SLOT_IPV4] == UINT32_MAX &&
1173
0
     dohp->probe_mid[DOH_SLOT_IPV6] == UINT32_MAX) {
1174
0
    failf(data, "Could not DoH-resolve: %s", async->peer->hostname);
1175
0
    return async->for_proxy ?
1176
0
      CURLE_COULDNT_RESOLVE_PROXY : CURLE_COULDNT_RESOLVE_HOST;
1177
0
  }
1178
0
  else if(!async->queries_ongoing) {
1179
0
    struct Curl_dns_entry *dns = NULL;
1180
0
    bool negative = TRUE;
1181
0
    int slot;
1182
1183
    /* remove DoH handles from multi handle and close them */
1184
0
    doh_close(data, async);
1185
    /* parse the responses, create the struct and return it! */
1186
0
    for(slot = 0; slot < DOH_SLOT_COUNT; slot++) {
1187
      /* Failing without an NXDOMAIN answer - a SERVFAIL-class rcode or
1188
         an undecodable response - says nothing about the name. Such a
1189
         failure must not be cached as a negative entry. */
1190
0
      if(dohp->probe_rc[slot] && (dohp->probe_rc[slot] != DOH_DNS_NXDOMAIN))
1191
0
        negative = FALSE;
1192
0
    } /* next slot */
1193
1194
0
    if(async->ai_A || async->ai_AAAA) {
1195
0
      dns = Curl_dnsc_mk_addr2(
1196
0
        data, async->dns_queries, &async->ai_A, &async->ai_AAAA, async->peer);
1197
0
      if(!dns) {
1198
0
        result = CURLE_OUT_OF_MEMORY;
1199
0
        goto out;
1200
0
      }
1201
0
    }
1202
0
#ifdef USE_HTTPSRR
1203
0
    else if((async->dns_queries & CURL_DNSQ_HTTPS) &&
1204
0
            !dohp->probe_rc[DOH_SLOT_HTTPS_RR]) {
1205
0
      Curl_httpsrr_trace(data, async->httpsrr);
1206
0
      dns = Curl_dnsc_mk_https(data, &async->httpsrr, async->peer);
1207
0
      if(!dns) {
1208
0
        result = CURLE_OUT_OF_MEMORY;
1209
0
        goto out;
1210
0
      }
1211
0
    }
1212
0
#endif /* USE_HTTPSRR */
1213
0
    else {
1214
      /* every query failed. Only NXDOMAIN answers for all of them
1215
         make this a negative answer, eligible for caching. */
1216
0
      async->negative_answer = negative;
1217
0
      result = async->for_proxy ?
1218
0
        CURLE_COULDNT_RESOLVE_PROXY : CURLE_COULDNT_RESOLVE_HOST;
1219
0
    }
1220
1221
    /* and add the entry to the cache */
1222
0
    if(dns)
1223
0
      result = Curl_dnscache_add(data, dns);
1224
0
    *pdns = dns;
1225
0
  } /* !async->queries_ongoing */
1226
0
  else
1227
    /* wait for pending DoH transactions to complete */
1228
0
    return CURLE_AGAIN;
1229
1230
0
out:
1231
0
  Curl_doh_cleanup(data, async);
1232
0
  return result;
1233
0
}
1234
1235
static void doh_close(struct Curl_easy *data,
1236
                      struct Curl_resolv_async *async)
1237
0
{
1238
0
  struct doh_probes *doh = async ? async->doh : NULL;
1239
0
  if(doh && data->multi) {
1240
0
    struct Curl_easy *probe_data;
1241
0
    uint32_t mid;
1242
0
    size_t slot;
1243
0
    for(slot = 0; slot < DOH_SLOT_COUNT; slot++) {
1244
0
      mid = doh->probe_mid[slot];
1245
0
      if(mid == UINT32_MAX)
1246
0
        continue;
1247
0
      doh->probe_mid[slot] = UINT32_MAX;
1248
      /* should have been called before data is removed from multi handle */
1249
0
      DEBUGASSERT(data->multi);
1250
0
      probe_data = data->multi ? Curl_multi_get_easy(data->multi, mid) : NULL;
1251
0
      if(!probe_data) {
1252
0
        DEBUGF(infof(data, "Curl_doh_close: xfer for mid=%u not found!", mid));
1253
0
        continue;
1254
0
      }
1255
0
      probe_data->sub_xfer_done = NULL; /* No longer interested in result */
1256
      /* data->multi might already be reset at this time */
1257
0
      Curl_multi_remove_handle(data->multi, probe_data);
1258
0
      Curl_close(&probe_data);
1259
0
    }
1260
0
    CURL_TRC_DNS(data, "[DoH] probe done");
1261
0
  }
1262
0
}
1263
1264
void Curl_doh_cleanup(struct Curl_easy *data,
1265
                      struct Curl_resolv_async *async)
1266
0
{
1267
0
  struct doh_probes *dohp = async->doh;
1268
0
  if(dohp) {
1269
0
    doh_close(data, async);
1270
    curlx_safefree(async->doh);
1271
0
  }
1272
0
}
1273
1274
#endif /* CURL_DISABLE_DOH */