2000-02-24 14:31:43 +00:00
|
|
|
/*
|
2012-02-07 23:47:24 +00:00
|
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
2000-02-24 14:31:43 +00:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MPL-2.0
|
2021-06-03 08:37:05 +02:00
|
|
|
*
|
2000-02-24 14:31:43 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
2018-02-23 09:53:12 +01:00
|
|
|
*
|
2000-02-24 14:31:43 +00:00
|
|
|
* See the COPYRIGHT file distributed with this work for additional
|
2001-08-08 22:54:55 +00:00
|
|
|
* information regarding copyright ownership.
|
2000-02-24 14:31:43 +00:00
|
|
|
*/
|
|
|
|
|
2005-04-27 04:57:32 +00:00
|
|
|
/*! \file */
|
2000-06-22 22:00:42 +00:00
|
|
|
|
2018-03-28 14:19:37 +02:00
|
|
|
#include <inttypes.h>
|
2018-04-17 08:29:14 -07:00
|
|
|
#include <stdbool.h>
|
2018-03-28 14:19:37 +02:00
|
|
|
|
2001-06-04 19:33:39 +00:00
|
|
|
#include <isc/magic.h>
|
2000-05-08 14:38:29 +00:00
|
|
|
#include <isc/mem.h>
|
2021-04-22 18:58:01 -07:00
|
|
|
#include <isc/netmgr.h>
|
2021-10-04 17:14:53 +02:00
|
|
|
#include <isc/result.h>
|
2000-03-13 20:43:39 +00:00
|
|
|
#include <isc/task.h>
|
2022-03-03 13:30:24 +01:00
|
|
|
#include <isc/thread.h>
|
2022-09-19 11:04:22 +00:00
|
|
|
#include <isc/tls.h>
|
2000-03-13 20:43:39 +00:00
|
|
|
#include <isc/util.h>
|
|
|
|
|
2000-11-03 02:45:55 +00:00
|
|
|
#include <dns/acl.h>
|
2001-03-05 21:15:47 +00:00
|
|
|
#include <dns/compress.h>
|
2000-03-13 20:43:39 +00:00
|
|
|
#include <dns/dispatch.h>
|
|
|
|
#include <dns/events.h>
|
2000-05-09 05:12:49 +00:00
|
|
|
#include <dns/log.h>
|
2000-03-13 20:43:39 +00:00
|
|
|
#include <dns/message.h>
|
2000-05-24 17:30:41 +00:00
|
|
|
#include <dns/rdata.h>
|
|
|
|
#include <dns/rdatastruct.h>
|
2000-02-24 14:31:43 +00:00
|
|
|
#include <dns/request.h>
|
2022-09-19 11:04:22 +00:00
|
|
|
#include <dns/transport.h>
|
2000-05-24 17:30:41 +00:00
|
|
|
#include <dns/tsig.h>
|
2000-02-24 14:31:43 +00:00
|
|
|
|
2001-06-04 19:33:39 +00:00
|
|
|
#define REQUESTMGR_MAGIC ISC_MAGIC('R', 'q', 'u', 'M')
|
|
|
|
#define VALID_REQUESTMGR(mgr) ISC_MAGIC_VALID(mgr, REQUESTMGR_MAGIC)
|
2000-02-24 14:31:43 +00:00
|
|
|
|
2001-06-04 19:33:39 +00:00
|
|
|
#define REQUEST_MAGIC ISC_MAGIC('R', 'q', 'u', '!')
|
|
|
|
#define VALID_REQUEST(request) ISC_MAGIC_VALID(request, REQUEST_MAGIC)
|
2000-02-24 14:31:43 +00:00
|
|
|
|
2000-03-20 12:22:02 +00:00
|
|
|
typedef ISC_LIST(dns_request_t) dns_requestlist_t;
|
|
|
|
|
2000-03-22 07:00:39 +00:00
|
|
|
#define DNS_REQUEST_NLOCKS 7
|
|
|
|
|
2000-02-24 14:31:43 +00:00
|
|
|
struct dns_requestmgr {
|
2001-08-28 03:58:29 +00:00
|
|
|
unsigned int magic;
|
2021-05-25 22:54:17 -07:00
|
|
|
isc_refcount_t references;
|
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
isc_mutex_t lock;
|
|
|
|
isc_mem_t *mctx;
|
2000-02-24 14:31:43 +00:00
|
|
|
|
|
|
|
/* locked */
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
isc_taskmgr_t *taskmgr;
|
2000-05-10 21:34:50 +00:00
|
|
|
dns_dispatchmgr_t *dispatchmgr;
|
|
|
|
dns_dispatch_t *dispatchv4;
|
|
|
|
dns_dispatch_t *dispatchv6;
|
2021-05-25 22:54:17 -07:00
|
|
|
atomic_bool exiting;
|
2000-05-10 21:34:50 +00:00
|
|
|
unsigned int hash;
|
|
|
|
isc_mutex_t locks[DNS_REQUEST_NLOCKS];
|
|
|
|
dns_requestlist_t requests;
|
2000-02-24 14:31:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct dns_request {
|
2001-08-28 03:58:29 +00:00
|
|
|
unsigned int magic;
|
2021-05-25 22:54:17 -07:00
|
|
|
isc_refcount_t references;
|
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
unsigned int hash;
|
|
|
|
isc_mem_t *mctx;
|
2018-03-28 14:19:37 +02:00
|
|
|
int32_t flags;
|
2000-05-10 21:34:50 +00:00
|
|
|
ISC_LINK(dns_request_t) link;
|
|
|
|
isc_buffer_t *query;
|
|
|
|
isc_buffer_t *answer;
|
|
|
|
dns_requestevent_t *event;
|
|
|
|
dns_dispatch_t *dispatch;
|
|
|
|
dns_dispentry_t *dispentry;
|
|
|
|
dns_requestmgr_t *requestmgr;
|
2000-05-30 23:14:57 +00:00
|
|
|
isc_buffer_t *tsig;
|
2000-05-24 17:30:41 +00:00
|
|
|
dns_tsigkey_t *tsigkey;
|
2001-10-18 06:09:39 +00:00
|
|
|
isc_sockaddr_t destaddr;
|
2021-04-22 18:58:01 -07:00
|
|
|
unsigned int timeout;
|
2002-11-12 23:58:14 +00:00
|
|
|
unsigned int udpcount;
|
2013-03-22 12:27:54 -07:00
|
|
|
isc_dscp_t dscp;
|
2000-03-13 20:43:39 +00:00
|
|
|
};
|
2000-02-24 14:31:43 +00:00
|
|
|
|
2000-03-20 12:22:02 +00:00
|
|
|
#define DNS_REQUEST_F_CONNECTING 0x0001
|
2000-12-31 05:05:34 +00:00
|
|
|
#define DNS_REQUEST_F_SENDING 0x0002
|
2021-04-22 18:58:01 -07:00
|
|
|
#define DNS_REQUEST_F_CANCELED 0x0004
|
|
|
|
#define DNS_REQUEST_F_TCP 0x0010
|
|
|
|
|
2000-03-20 12:22:02 +00:00
|
|
|
#define DNS_REQUEST_CANCELED(r) (((r)->flags & DNS_REQUEST_F_CANCELED) != 0)
|
|
|
|
#define DNS_REQUEST_CONNECTING(r) (((r)->flags & DNS_REQUEST_F_CONNECTING) != 0)
|
2000-12-31 05:05:34 +00:00
|
|
|
#define DNS_REQUEST_SENDING(r) (((r)->flags & DNS_REQUEST_F_SENDING) != 0)
|
2000-03-20 12:22:02 +00:00
|
|
|
|
2000-02-24 14:31:43 +00:00
|
|
|
/***
|
|
|
|
*** Forward
|
|
|
|
***/
|
|
|
|
|
2000-03-20 12:22:02 +00:00
|
|
|
static void
|
|
|
|
mgr_destroy(dns_requestmgr_t *requestmgr);
|
2000-03-22 07:00:39 +00:00
|
|
|
static unsigned int
|
|
|
|
mgr_gethash(dns_requestmgr_t *requestmgr);
|
2000-05-18 02:59:20 +00:00
|
|
|
static isc_result_t
|
|
|
|
req_render(dns_message_t *message, isc_buffer_t **buffer, unsigned int options,
|
|
|
|
isc_mem_t *mctx);
|
2000-03-20 12:22:02 +00:00
|
|
|
static void
|
2021-08-03 15:27:06 +02:00
|
|
|
req_response(isc_result_t result, isc_region_t *region, void *arg);
|
2000-03-20 12:22:02 +00:00
|
|
|
static void
|
2021-08-03 15:27:06 +02:00
|
|
|
req_senddone(isc_result_t eresult, isc_region_t *region, void *arg);
|
2000-03-20 12:22:02 +00:00
|
|
|
static void
|
|
|
|
req_sendevent(dns_request_t *request, isc_result_t result);
|
|
|
|
static void
|
2021-08-03 15:27:06 +02:00
|
|
|
req_connected(isc_result_t eresult, isc_region_t *region, void *arg);
|
2000-03-20 12:22:02 +00:00
|
|
|
static void
|
2021-09-09 15:25:08 -07:00
|
|
|
req_attach(dns_request_t *source, dns_request_t **targetp);
|
2021-05-25 22:54:17 -07:00
|
|
|
static void
|
2021-09-09 15:25:08 -07:00
|
|
|
req_detach(dns_request_t **requestp);
|
2021-05-25 22:54:17 -07:00
|
|
|
static void
|
2000-03-20 12:22:02 +00:00
|
|
|
req_destroy(dns_request_t *request);
|
2001-08-08 22:54:55 +00:00
|
|
|
static void
|
|
|
|
req_log(int level, const char *fmt, ...) ISC_FORMAT_PRINTF(2, 3);
|
2021-04-22 18:58:01 -07:00
|
|
|
void
|
|
|
|
request_cancel(dns_request_t *request);
|
2000-02-24 14:31:43 +00:00
|
|
|
|
|
|
|
/***
|
|
|
|
*** Public
|
|
|
|
***/
|
|
|
|
|
|
|
|
isc_result_t
|
2021-01-14 13:02:57 -08:00
|
|
|
dns_requestmgr_create(isc_mem_t *mctx, isc_taskmgr_t *taskmgr,
|
2000-05-10 21:34:50 +00:00
|
|
|
dns_dispatchmgr_t *dispatchmgr,
|
2000-03-20 12:22:02 +00:00
|
|
|
dns_dispatch_t *dispatchv4, dns_dispatch_t *dispatchv6,
|
|
|
|
dns_requestmgr_t **requestmgrp) {
|
2000-02-24 14:31:43 +00:00
|
|
|
dns_requestmgr_t *requestmgr;
|
2000-03-22 07:00:39 +00:00
|
|
|
int i;
|
2000-02-24 14:31:43 +00:00
|
|
|
|
2000-05-09 05:12:49 +00:00
|
|
|
req_log(ISC_LOG_DEBUG(3), "dns_requestmgr_create");
|
2000-04-18 08:27:48 +00:00
|
|
|
|
2000-02-24 14:31:43 +00:00
|
|
|
REQUIRE(requestmgrp != NULL && *requestmgrp == NULL);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
REQUIRE(taskmgr != NULL);
|
2000-05-10 21:34:50 +00:00
|
|
|
REQUIRE(dispatchmgr != NULL);
|
2020-08-06 12:21:50 +10:00
|
|
|
|
2000-02-24 14:31:43 +00:00
|
|
|
requestmgr = isc_mem_get(mctx, sizeof(*requestmgr));
|
2021-08-03 18:24:27 -07:00
|
|
|
*requestmgr = (dns_requestmgr_t){ 0 };
|
2000-02-24 14:31:43 +00:00
|
|
|
|
2021-08-03 18:24:27 -07:00
|
|
|
isc_taskmgr_attach(taskmgr, &requestmgr->taskmgr);
|
|
|
|
dns_dispatchmgr_attach(dispatchmgr, &requestmgr->dispatchmgr);
|
2018-11-16 15:33:22 +01:00
|
|
|
isc_mutex_init(&requestmgr->lock);
|
|
|
|
|
2000-03-22 07:00:39 +00:00
|
|
|
for (i = 0; i < DNS_REQUEST_NLOCKS; i++) {
|
2018-11-16 15:33:22 +01:00
|
|
|
isc_mutex_init(&requestmgr->locks[i]);
|
2000-03-22 07:00:39 +00:00
|
|
|
}
|
2000-03-13 20:43:39 +00:00
|
|
|
if (dispatchv4 != NULL) {
|
|
|
|
dns_dispatch_attach(dispatchv4, &requestmgr->dispatchv4);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-02-24 14:31:43 +00:00
|
|
|
if (dispatchv6 != NULL) {
|
2000-03-13 20:43:39 +00:00
|
|
|
dns_dispatch_attach(dispatchv6, &requestmgr->dispatchv6);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-04-18 08:27:48 +00:00
|
|
|
isc_mem_attach(mctx, &requestmgr->mctx);
|
2021-08-03 18:24:27 -07:00
|
|
|
|
2021-05-25 22:54:17 -07:00
|
|
|
isc_refcount_init(&requestmgr->references, 1);
|
2021-08-03 18:24:27 -07:00
|
|
|
|
2000-03-20 12:22:02 +00:00
|
|
|
ISC_LIST_INIT(requestmgr->requests);
|
2021-08-03 18:24:27 -07:00
|
|
|
|
2021-05-25 22:54:17 -07:00
|
|
|
atomic_init(&requestmgr->exiting, false);
|
2021-08-03 18:24:27 -07:00
|
|
|
|
2000-02-24 14:31:43 +00:00
|
|
|
requestmgr->magic = REQUESTMGR_MAGIC;
|
|
|
|
|
2000-05-09 05:12:49 +00:00
|
|
|
req_log(ISC_LOG_DEBUG(3), "dns_requestmgr_create: %p", requestmgr);
|
|
|
|
|
|
|
|
*requestmgrp = requestmgr;
|
2000-02-24 14:31:43 +00:00
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
dns_requestmgr_shutdown(dns_requestmgr_t *requestmgr) {
|
2021-05-25 22:54:17 -07:00
|
|
|
dns_request_t *request;
|
|
|
|
|
2000-12-11 19:24:30 +00:00
|
|
|
REQUIRE(VALID_REQUESTMGR(requestmgr));
|
2000-02-24 14:31:43 +00:00
|
|
|
|
2000-05-09 05:12:49 +00:00
|
|
|
req_log(ISC_LOG_DEBUG(3), "dns_requestmgr_shutdown: %p", requestmgr);
|
2000-04-18 08:27:48 +00:00
|
|
|
|
2021-05-25 22:54:17 -07:00
|
|
|
if (!atomic_compare_exchange_strong(&requestmgr->exiting,
|
|
|
|
&(bool){ false }, true))
|
|
|
|
{
|
|
|
|
return;
|
2000-04-18 08:27:48 +00:00
|
|
|
}
|
2000-05-09 05:12:49 +00:00
|
|
|
|
2000-04-18 08:27:48 +00:00
|
|
|
LOCK(&requestmgr->lock);
|
2021-05-25 22:54:17 -07:00
|
|
|
for (request = ISC_LIST_HEAD(requestmgr->requests); request != NULL;
|
|
|
|
request = ISC_LIST_NEXT(request, link))
|
|
|
|
{
|
|
|
|
dns_request_cancel(request);
|
|
|
|
}
|
|
|
|
UNLOCK(&requestmgr->lock);
|
2000-02-24 14:31:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-09-09 15:25:08 -07:00
|
|
|
dns_requestmgr_attach(dns_requestmgr_t *source, dns_requestmgr_t **targetp) {
|
2021-05-25 22:54:17 -07:00
|
|
|
uint_fast32_t ref;
|
|
|
|
|
2000-12-11 19:24:30 +00:00
|
|
|
REQUIRE(VALID_REQUESTMGR(source));
|
|
|
|
REQUIRE(targetp != NULL && *targetp == NULL);
|
2000-02-24 14:31:43 +00:00
|
|
|
|
2021-05-25 22:54:17 -07:00
|
|
|
REQUIRE(!atomic_load_acquire(&source->exiting));
|
2000-05-09 05:12:49 +00:00
|
|
|
|
2021-05-25 22:54:17 -07:00
|
|
|
ref = isc_refcount_increment(&source->references);
|
|
|
|
|
|
|
|
req_log(ISC_LOG_DEBUG(3),
|
|
|
|
"dns_requestmgr_attach: %p: references = %" PRIuFAST32, source,
|
|
|
|
ref + 1);
|
|
|
|
|
|
|
|
*targetp = source;
|
2000-02-24 14:31:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2021-09-09 15:25:08 -07:00
|
|
|
dns_requestmgr_detach(dns_requestmgr_t **requestmgrp) {
|
2021-05-25 22:54:17 -07:00
|
|
|
dns_requestmgr_t *requestmgr = NULL;
|
|
|
|
uint_fast32_t ref;
|
|
|
|
|
|
|
|
REQUIRE(requestmgrp != NULL && VALID_REQUESTMGR(*requestmgrp));
|
2000-02-24 14:31:43 +00:00
|
|
|
|
2000-03-13 20:43:39 +00:00
|
|
|
requestmgr = *requestmgrp;
|
2020-02-08 04:37:54 -08:00
|
|
|
*requestmgrp = NULL;
|
2000-02-24 14:31:43 +00:00
|
|
|
|
2021-05-25 22:54:17 -07:00
|
|
|
ref = isc_refcount_decrement(&requestmgr->references);
|
2000-05-09 05:12:49 +00:00
|
|
|
|
2021-05-25 22:54:17 -07:00
|
|
|
req_log(ISC_LOG_DEBUG(3),
|
|
|
|
"dns_requestmgr_detach: %p: references = %" PRIuFAST32,
|
|
|
|
requestmgr, ref - 1);
|
2000-02-24 14:31:43 +00:00
|
|
|
|
2021-05-25 22:54:17 -07:00
|
|
|
if (ref == 1) {
|
|
|
|
INSIST(ISC_LIST_EMPTY(requestmgr->requests));
|
2000-03-20 12:22:02 +00:00
|
|
|
mgr_destroy(requestmgr);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-02-24 14:31:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-03-20 12:22:02 +00:00
|
|
|
mgr_destroy(dns_requestmgr_t *requestmgr) {
|
2000-03-22 07:00:39 +00:00
|
|
|
int i;
|
2000-04-18 08:27:48 +00:00
|
|
|
|
2000-05-09 05:12:49 +00:00
|
|
|
req_log(ISC_LOG_DEBUG(3), "mgr_destroy");
|
2000-03-22 07:00:39 +00:00
|
|
|
|
2021-05-25 22:54:17 -07:00
|
|
|
isc_refcount_destroy(&requestmgr->references);
|
2000-03-20 12:22:02 +00:00
|
|
|
|
2018-11-19 10:31:09 +00:00
|
|
|
isc_mutex_destroy(&requestmgr->lock);
|
2000-03-22 07:00:39 +00:00
|
|
|
for (i = 0; i < DNS_REQUEST_NLOCKS; i++) {
|
2018-11-19 10:31:09 +00:00
|
|
|
isc_mutex_destroy(&requestmgr->locks[i]);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-02-24 14:31:43 +00:00
|
|
|
if (requestmgr->dispatchv4 != NULL) {
|
|
|
|
dns_dispatch_detach(&requestmgr->dispatchv4);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-04-18 08:27:48 +00:00
|
|
|
if (requestmgr->dispatchv6 != NULL) {
|
|
|
|
dns_dispatch_detach(&requestmgr->dispatchv6);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2021-08-03 18:24:27 -07:00
|
|
|
if (requestmgr->dispatchmgr != NULL) {
|
|
|
|
dns_dispatchmgr_detach(&requestmgr->dispatchmgr);
|
|
|
|
}
|
|
|
|
if (requestmgr->taskmgr != NULL) {
|
|
|
|
isc_taskmgr_detach(&requestmgr->taskmgr);
|
|
|
|
}
|
2000-03-13 20:43:39 +00:00
|
|
|
requestmgr->magic = 0;
|
2019-07-23 17:16:57 -04:00
|
|
|
isc_mem_putanddetach(&requestmgr->mctx, requestmgr,
|
|
|
|
sizeof(*requestmgr));
|
2000-02-24 14:31:43 +00:00
|
|
|
}
|
|
|
|
|
2000-03-22 07:00:39 +00:00
|
|
|
static unsigned int
|
|
|
|
mgr_gethash(dns_requestmgr_t *requestmgr) {
|
2000-05-09 05:12:49 +00:00
|
|
|
req_log(ISC_LOG_DEBUG(3), "mgr_gethash");
|
2000-03-22 07:00:39 +00:00
|
|
|
/*
|
|
|
|
* Locked by caller.
|
|
|
|
*/
|
|
|
|
requestmgr->hash++;
|
2001-01-23 02:00:56 +00:00
|
|
|
return (requestmgr->hash % DNS_REQUEST_NLOCKS);
|
2000-03-22 07:00:39 +00:00
|
|
|
}
|
|
|
|
|
2021-10-11 13:43:12 +02:00
|
|
|
static void
|
2021-01-14 13:02:57 -08:00
|
|
|
req_send(dns_request_t *request) {
|
2021-01-04 23:03:50 -08:00
|
|
|
isc_region_t r;
|
2000-03-20 12:22:02 +00:00
|
|
|
|
2000-05-09 05:12:49 +00:00
|
|
|
req_log(ISC_LOG_DEBUG(3), "req_send: request %p", request);
|
|
|
|
|
2000-04-28 22:07:29 +00:00
|
|
|
REQUIRE(VALID_REQUEST(request));
|
2020-12-16 01:32:06 -08:00
|
|
|
|
103. [func] libisc buffer API changes for <isc/buffer.h>:
Added:
isc_buffer_base(b) (pointer)
isc_buffer_current(b) (pointer)
isc_buffer_active(b) (pointer)
isc_buffer_used(b) (pointer)
isc_buffer_length(b) (int)
isc_buffer_usedlength(b) (int)
isc_buffer_consumedlength(b) (int)
isc_buffer_remaininglength(b) (int)
isc_buffer_activelength(b) (int)
isc_buffer_availablelength(b) (int)
Removed:
ISC_BUFFER_USEDCOUNT(b)
ISC_BUFFER_AVAILABLECOUNT(b)
isc_buffer_type(b)
Changed names:
isc_buffer_used(b, r) ->
isc_buffer_usedregion(b, r)
isc_buffer_available(b, r) ->
isc_buffer_available_region(b, r)
isc_buffer_consumed(b, r) ->
isc_buffer_consumedregion(b, r)
isc_buffer_active(b, r) ->
isc_buffer_activeregion(b, r)
isc_buffer_remaining(b, r) ->
isc_buffer_remainingregion(b, r)
Buffer types were removed, so the ISC_BUFFERTYPE_*
macros are no more, and the type argument to
isc_buffer_init and isc_buffer_allocate were removed.
isc_buffer_putstr is now void (instead of isc_result_t)
and requires that the caller ensure that there
is enough available buffer space for the string.
2000-04-27 00:03:12 +00:00
|
|
|
isc_buffer_usedregion(request->query, &r);
|
Dispatch API simplification
- Many dispatch attributes can be set implicitly instead of being passed
in. we can infer whether to set DNS_DISPATCHATTR_TCP or _UDP from
whether we're calling dns_dispatch_createtcp() or _createudp(). we
can also infer DNS_DISPATCHATTR_IPV4 or _IPV6 from the addresses or
the socket that were passed in.
- We no longer use dup'd sockets in UDP dispatches, so the 'dup_socket'
parameter has been removed from dns_dispatch_createudp(), along with
the code implementing it. also removed isc_socket_dup() since it no
longer has any callers.
- The 'buffersize' parameter was ignored and has now been removed;
buffersize is now fixed at 4096.
- Maxbuffers and maxrequests don't need to be passed in on every call to
dns_dispatch_createtcp() and _createudp().
In all current uses, the value for mgr->maxbuffers will either be
raised once from its default of 20000 to 32768, or else left
alone. (passing in a value lower than 20000 does not lower it.) there
isn't enough difference between these values for there to be any need
to configure this.
The value for disp->maxrequests controls both the quota of concurrent
requests for a dispatch and also the size of the dispatch socket
memory pool. it's not clear that this quota is necessary at all. the
memory pool size currently starts at 32768, but is sometimes lowered
to 4096, which is definitely unnecessary.
This commit sets both values permanently to 32768.
- Previously TCP dispatches allocated their own separate QID table,
which didn't incorporate a port table. this commit removes
per-dispatch QID tables and shares the same table between all
dispatches. since dispatches are created for each TCP socket, this may
speed up the dispatch allocation process. there may be a slight
increase in lock contention since all dispatches are sharing a single
QID table, but since TCP sockets are used less often than UDP
sockets (which were already sharing a QID table), it should not be a
substantial change.
- The dispatch port table was being used to determine whether a port was
already in use; if so, then a UDP socket would be bound with
REUSEADDR. this commit removes the port table, and always binds UDP
sockets that way.
2020-12-17 00:43:00 -08:00
|
|
|
|
2016-12-14 10:31:26 +11:00
|
|
|
request->flags |= DNS_REQUEST_F_SENDING;
|
2022-03-03 13:30:24 +01:00
|
|
|
|
|
|
|
/* detached in req_senddone() */
|
|
|
|
req_attach(request, &(dns_request_t *){ NULL });
|
2021-01-14 13:02:57 -08:00
|
|
|
dns_dispatch_send(request->dispentry, &r, request->dscp);
|
2000-03-20 12:22:02 +00:00
|
|
|
}
|
|
|
|
|
2001-01-23 19:50:10 +00:00
|
|
|
static isc_result_t
|
2009-09-01 00:22:28 +00:00
|
|
|
new_request(isc_mem_t *mctx, dns_request_t **requestp) {
|
2021-05-25 22:54:17 -07:00
|
|
|
dns_request_t *request = NULL;
|
2001-01-23 19:50:10 +00:00
|
|
|
|
|
|
|
request = isc_mem_get(mctx, sizeof(*request));
|
Dispatch API simplification
- Many dispatch attributes can be set implicitly instead of being passed
in. we can infer whether to set DNS_DISPATCHATTR_TCP or _UDP from
whether we're calling dns_dispatch_createtcp() or _createudp(). we
can also infer DNS_DISPATCHATTR_IPV4 or _IPV6 from the addresses or
the socket that were passed in.
- We no longer use dup'd sockets in UDP dispatches, so the 'dup_socket'
parameter has been removed from dns_dispatch_createudp(), along with
the code implementing it. also removed isc_socket_dup() since it no
longer has any callers.
- The 'buffersize' parameter was ignored and has now been removed;
buffersize is now fixed at 4096.
- Maxbuffers and maxrequests don't need to be passed in on every call to
dns_dispatch_createtcp() and _createudp().
In all current uses, the value for mgr->maxbuffers will either be
raised once from its default of 20000 to 32768, or else left
alone. (passing in a value lower than 20000 does not lower it.) there
isn't enough difference between these values for there to be any need
to configure this.
The value for disp->maxrequests controls both the quota of concurrent
requests for a dispatch and also the size of the dispatch socket
memory pool. it's not clear that this quota is necessary at all. the
memory pool size currently starts at 32768, but is sometimes lowered
to 4096, which is definitely unnecessary.
This commit sets both values permanently to 32768.
- Previously TCP dispatches allocated their own separate QID table,
which didn't incorporate a port table. this commit removes
per-dispatch QID tables and shares the same table between all
dispatches. since dispatches are created for each TCP socket, this may
speed up the dispatch allocation process. there may be a slight
increase in lock contention since all dispatches are sharing a single
QID table, but since TCP sockets are used less often than UDP
sockets (which were already sharing a QID table), it should not be a
substantial change.
- The dispatch port table was being used to determine whether a port was
already in use; if so, then a UDP socket would be bound with
REUSEADDR. this commit removes the port table, and always binds UDP
sockets that way.
2020-12-17 00:43:00 -08:00
|
|
|
*request = (dns_request_t){ .dscp = -1 };
|
2001-01-23 19:50:10 +00:00
|
|
|
ISC_LINK_INIT(request, link);
|
|
|
|
|
2021-05-25 22:54:17 -07:00
|
|
|
isc_refcount_init(&request->references, 1);
|
2001-01-23 19:50:10 +00:00
|
|
|
isc_mem_attach(mctx, &request->mctx);
|
|
|
|
|
2001-04-16 18:50:32 +00:00
|
|
|
request->magic = REQUEST_MAGIC;
|
2001-01-23 19:50:10 +00:00
|
|
|
*requestp = request;
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
}
|
|
|
|
|
2018-04-17 08:29:14 -07:00
|
|
|
static bool
|
2016-12-30 15:45:08 +11:00
|
|
|
isblackholed(dns_dispatchmgr_t *dispatchmgr, const isc_sockaddr_t *destaddr) {
|
2001-02-09 00:23:16 +00:00
|
|
|
dns_acl_t *blackhole;
|
2001-01-23 07:36:06 +00:00
|
|
|
isc_netaddr_t netaddr;
|
|
|
|
char netaddrstr[ISC_NETADDR_FORMATSIZE];
|
2021-05-25 22:54:17 -07:00
|
|
|
int match;
|
|
|
|
isc_result_t result;
|
2001-01-23 07:36:06 +00:00
|
|
|
|
2001-02-09 00:23:16 +00:00
|
|
|
blackhole = dns_dispatchmgr_getblackhole(dispatchmgr);
|
2021-05-25 22:54:17 -07:00
|
|
|
if (blackhole == NULL) {
|
|
|
|
return (false);
|
2001-01-23 07:36:06 +00:00
|
|
|
}
|
2021-05-25 22:54:17 -07:00
|
|
|
|
|
|
|
isc_netaddr_fromsockaddr(&netaddr, destaddr);
|
|
|
|
result = dns_acl_match(&netaddr, NULL, blackhole, NULL, &match, NULL);
|
2022-02-16 15:46:33 -08:00
|
|
|
if (result != ISC_R_SUCCESS || match <= 0) {
|
2021-05-25 22:54:17 -07:00
|
|
|
return (false);
|
2001-01-23 07:36:06 +00:00
|
|
|
}
|
2021-05-25 22:54:17 -07:00
|
|
|
|
|
|
|
isc_netaddr_format(&netaddr, netaddrstr, sizeof(netaddrstr));
|
|
|
|
req_log(ISC_LOG_DEBUG(10), "blackholed address %s", netaddrstr);
|
|
|
|
|
|
|
|
return (true);
|
2001-01-23 07:36:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static isc_result_t
|
Dispatch API simplification
- Many dispatch attributes can be set implicitly instead of being passed
in. we can infer whether to set DNS_DISPATCHATTR_TCP or _UDP from
whether we're calling dns_dispatch_createtcp() or _createudp(). we
can also infer DNS_DISPATCHATTR_IPV4 or _IPV6 from the addresses or
the socket that were passed in.
- We no longer use dup'd sockets in UDP dispatches, so the 'dup_socket'
parameter has been removed from dns_dispatch_createudp(), along with
the code implementing it. also removed isc_socket_dup() since it no
longer has any callers.
- The 'buffersize' parameter was ignored and has now been removed;
buffersize is now fixed at 4096.
- Maxbuffers and maxrequests don't need to be passed in on every call to
dns_dispatch_createtcp() and _createudp().
In all current uses, the value for mgr->maxbuffers will either be
raised once from its default of 20000 to 32768, or else left
alone. (passing in a value lower than 20000 does not lower it.) there
isn't enough difference between these values for there to be any need
to configure this.
The value for disp->maxrequests controls both the quota of concurrent
requests for a dispatch and also the size of the dispatch socket
memory pool. it's not clear that this quota is necessary at all. the
memory pool size currently starts at 32768, but is sometimes lowered
to 4096, which is definitely unnecessary.
This commit sets both values permanently to 32768.
- Previously TCP dispatches allocated their own separate QID table,
which didn't incorporate a port table. this commit removes
per-dispatch QID tables and shares the same table between all
dispatches. since dispatches are created for each TCP socket, this may
speed up the dispatch allocation process. there may be a slight
increase in lock contention since all dispatches are sharing a single
QID table, but since TCP sockets are used less often than UDP
sockets (which were already sharing a QID table), it should not be a
substantial change.
- The dispatch port table was being used to determine whether a port was
already in use; if so, then a UDP socket would be bound with
REUSEADDR. this commit removes the port table, and always binds UDP
sockets that way.
2020-12-17 00:43:00 -08:00
|
|
|
tcp_dispatch(bool newtcp, dns_requestmgr_t *requestmgr,
|
|
|
|
const isc_sockaddr_t *srcaddr, const isc_sockaddr_t *destaddr,
|
|
|
|
isc_dscp_t dscp, bool *connected, dns_dispatch_t **dispatchp) {
|
2001-01-23 07:36:06 +00:00
|
|
|
isc_result_t result;
|
|
|
|
|
2020-12-11 15:20:33 -08:00
|
|
|
if (!newtcp) {
|
2018-04-03 14:35:07 +02:00
|
|
|
result = dns_dispatch_gettcp(requestmgr->dispatchmgr, destaddr,
|
|
|
|
srcaddr, connected, dispatchp);
|
2015-01-20 17:22:31 -08:00
|
|
|
if (result == ISC_R_SUCCESS) {
|
|
|
|
char peer[ISC_SOCKADDR_FORMATSIZE];
|
|
|
|
|
|
|
|
isc_sockaddr_format(destaddr, peer, sizeof(peer));
|
|
|
|
req_log(ISC_LOG_DEBUG(1),
|
|
|
|
"attached to %s TCP "
|
|
|
|
"connection to %s",
|
|
|
|
*connected ? "existing" : "pending", peer);
|
|
|
|
return (result);
|
|
|
|
}
|
2014-09-04 10:37:45 +10:00
|
|
|
}
|
|
|
|
|
2021-07-26 20:23:18 -07:00
|
|
|
result = dns_dispatch_createtcp(requestmgr->dispatchmgr, srcaddr,
|
2021-08-03 18:24:27 -07:00
|
|
|
destaddr, dscp, dispatchp);
|
2001-01-23 07:36:06 +00:00
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static isc_result_t
|
Dispatch API simplification
- Many dispatch attributes can be set implicitly instead of being passed
in. we can infer whether to set DNS_DISPATCHATTR_TCP or _UDP from
whether we're calling dns_dispatch_createtcp() or _createudp(). we
can also infer DNS_DISPATCHATTR_IPV4 or _IPV6 from the addresses or
the socket that were passed in.
- We no longer use dup'd sockets in UDP dispatches, so the 'dup_socket'
parameter has been removed from dns_dispatch_createudp(), along with
the code implementing it. also removed isc_socket_dup() since it no
longer has any callers.
- The 'buffersize' parameter was ignored and has now been removed;
buffersize is now fixed at 4096.
- Maxbuffers and maxrequests don't need to be passed in on every call to
dns_dispatch_createtcp() and _createudp().
In all current uses, the value for mgr->maxbuffers will either be
raised once from its default of 20000 to 32768, or else left
alone. (passing in a value lower than 20000 does not lower it.) there
isn't enough difference between these values for there to be any need
to configure this.
The value for disp->maxrequests controls both the quota of concurrent
requests for a dispatch and also the size of the dispatch socket
memory pool. it's not clear that this quota is necessary at all. the
memory pool size currently starts at 32768, but is sometimes lowered
to 4096, which is definitely unnecessary.
This commit sets both values permanently to 32768.
- Previously TCP dispatches allocated their own separate QID table,
which didn't incorporate a port table. this commit removes
per-dispatch QID tables and shares the same table between all
dispatches. since dispatches are created for each TCP socket, this may
speed up the dispatch allocation process. there may be a slight
increase in lock contention since all dispatches are sharing a single
QID table, but since TCP sockets are used less often than UDP
sockets (which were already sharing a QID table), it should not be a
substantial change.
- The dispatch port table was being used to determine whether a port was
already in use; if so, then a UDP socket would be bound with
REUSEADDR. this commit removes the port table, and always binds UDP
sockets that way.
2020-12-17 00:43:00 -08:00
|
|
|
udp_dispatch(dns_requestmgr_t *requestmgr, const isc_sockaddr_t *srcaddr,
|
|
|
|
const isc_sockaddr_t *destaddr, dns_dispatch_t **dispatchp) {
|
2001-01-23 07:36:06 +00:00
|
|
|
dns_dispatch_t *disp = NULL;
|
|
|
|
|
|
|
|
if (srcaddr == NULL) {
|
|
|
|
switch (isc_sockaddr_pf(destaddr)) {
|
|
|
|
case PF_INET:
|
|
|
|
disp = requestmgr->dispatchv4;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PF_INET6:
|
|
|
|
disp = requestmgr->dispatchv6;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return (ISC_R_NOTIMPLEMENTED);
|
|
|
|
}
|
|
|
|
if (disp == NULL) {
|
|
|
|
return (ISC_R_FAMILYNOSUPPORT);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2001-01-23 07:36:06 +00:00
|
|
|
dns_dispatch_attach(disp, dispatchp);
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
}
|
2020-12-16 01:32:06 -08:00
|
|
|
|
2021-08-03 18:24:27 -07:00
|
|
|
return (dns_dispatch_createudp(requestmgr->dispatchmgr, srcaddr,
|
2021-01-14 13:02:57 -08:00
|
|
|
dispatchp));
|
2001-01-23 07:36:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static isc_result_t
|
2020-12-11 15:20:33 -08:00
|
|
|
get_dispatch(bool tcp, bool newtcp, dns_requestmgr_t *requestmgr,
|
2016-12-30 15:45:08 +11:00
|
|
|
const isc_sockaddr_t *srcaddr, const isc_sockaddr_t *destaddr,
|
2018-04-17 08:29:14 -07:00
|
|
|
isc_dscp_t dscp, bool *connected, dns_dispatch_t **dispatchp) {
|
2001-01-23 07:36:06 +00:00
|
|
|
isc_result_t result;
|
2014-09-04 10:37:45 +10:00
|
|
|
|
2001-01-23 07:36:06 +00:00
|
|
|
if (tcp) {
|
Dispatch API simplification
- Many dispatch attributes can be set implicitly instead of being passed
in. we can infer whether to set DNS_DISPATCHATTR_TCP or _UDP from
whether we're calling dns_dispatch_createtcp() or _createudp(). we
can also infer DNS_DISPATCHATTR_IPV4 or _IPV6 from the addresses or
the socket that were passed in.
- We no longer use dup'd sockets in UDP dispatches, so the 'dup_socket'
parameter has been removed from dns_dispatch_createudp(), along with
the code implementing it. also removed isc_socket_dup() since it no
longer has any callers.
- The 'buffersize' parameter was ignored and has now been removed;
buffersize is now fixed at 4096.
- Maxbuffers and maxrequests don't need to be passed in on every call to
dns_dispatch_createtcp() and _createudp().
In all current uses, the value for mgr->maxbuffers will either be
raised once from its default of 20000 to 32768, or else left
alone. (passing in a value lower than 20000 does not lower it.) there
isn't enough difference between these values for there to be any need
to configure this.
The value for disp->maxrequests controls both the quota of concurrent
requests for a dispatch and also the size of the dispatch socket
memory pool. it's not clear that this quota is necessary at all. the
memory pool size currently starts at 32768, but is sometimes lowered
to 4096, which is definitely unnecessary.
This commit sets both values permanently to 32768.
- Previously TCP dispatches allocated their own separate QID table,
which didn't incorporate a port table. this commit removes
per-dispatch QID tables and shares the same table between all
dispatches. since dispatches are created for each TCP socket, this may
speed up the dispatch allocation process. there may be a slight
increase in lock contention since all dispatches are sharing a single
QID table, but since TCP sockets are used less often than UDP
sockets (which were already sharing a QID table), it should not be a
substantial change.
- The dispatch port table was being used to determine whether a port was
already in use; if so, then a UDP socket would be bound with
REUSEADDR. this commit removes the port table, and always binds UDP
sockets that way.
2020-12-17 00:43:00 -08:00
|
|
|
result = tcp_dispatch(newtcp, requestmgr, srcaddr, destaddr,
|
|
|
|
dscp, connected, dispatchp);
|
2001-01-23 07:36:06 +00:00
|
|
|
} else {
|
Dispatch API simplification
- Many dispatch attributes can be set implicitly instead of being passed
in. we can infer whether to set DNS_DISPATCHATTR_TCP or _UDP from
whether we're calling dns_dispatch_createtcp() or _createudp(). we
can also infer DNS_DISPATCHATTR_IPV4 or _IPV6 from the addresses or
the socket that were passed in.
- We no longer use dup'd sockets in UDP dispatches, so the 'dup_socket'
parameter has been removed from dns_dispatch_createudp(), along with
the code implementing it. also removed isc_socket_dup() since it no
longer has any callers.
- The 'buffersize' parameter was ignored and has now been removed;
buffersize is now fixed at 4096.
- Maxbuffers and maxrequests don't need to be passed in on every call to
dns_dispatch_createtcp() and _createudp().
In all current uses, the value for mgr->maxbuffers will either be
raised once from its default of 20000 to 32768, or else left
alone. (passing in a value lower than 20000 does not lower it.) there
isn't enough difference between these values for there to be any need
to configure this.
The value for disp->maxrequests controls both the quota of concurrent
requests for a dispatch and also the size of the dispatch socket
memory pool. it's not clear that this quota is necessary at all. the
memory pool size currently starts at 32768, but is sometimes lowered
to 4096, which is definitely unnecessary.
This commit sets both values permanently to 32768.
- Previously TCP dispatches allocated their own separate QID table,
which didn't incorporate a port table. this commit removes
per-dispatch QID tables and shares the same table between all
dispatches. since dispatches are created for each TCP socket, this may
speed up the dispatch allocation process. there may be a slight
increase in lock contention since all dispatches are sharing a single
QID table, but since TCP sockets are used less often than UDP
sockets (which were already sharing a QID table), it should not be a
substantial change.
- The dispatch port table was being used to determine whether a port was
already in use; if so, then a UDP socket would be bound with
REUSEADDR. this commit removes the port table, and always binds UDP
sockets that way.
2020-12-17 00:43:00 -08:00
|
|
|
result = udp_dispatch(requestmgr, srcaddr, destaddr, dispatchp);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2001-01-23 07:36:06 +00:00
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
2000-09-11 06:35:57 +00:00
|
|
|
isc_result_t
|
|
|
|
dns_request_createraw(dns_requestmgr_t *requestmgr, isc_buffer_t *msgbuf,
|
2016-12-30 15:45:08 +11:00
|
|
|
const isc_sockaddr_t *srcaddr,
|
2022-09-19 11:04:22 +00:00
|
|
|
const isc_sockaddr_t *destaddr,
|
|
|
|
dns_transport_t *transport,
|
|
|
|
isc_tlsctx_cache_t *tlsctx_cache, isc_dscp_t dscp,
|
2018-04-03 15:12:27 +02:00
|
|
|
unsigned int options, unsigned int timeout,
|
|
|
|
unsigned int udptimeout, unsigned int udpretries,
|
|
|
|
isc_task_t *task, isc_taskaction_t action, void *arg,
|
2000-09-11 06:35:57 +00:00
|
|
|
dns_request_t **requestp) {
|
|
|
|
dns_request_t *request = NULL;
|
|
|
|
isc_result_t result;
|
2021-07-26 20:23:18 -07:00
|
|
|
isc_mem_t *mctx = NULL;
|
2000-09-11 06:35:57 +00:00
|
|
|
dns_messageid_t id;
|
2018-04-17 08:29:14 -07:00
|
|
|
bool tcp = false;
|
|
|
|
bool newtcp = false;
|
2000-09-11 06:35:57 +00:00
|
|
|
isc_region_t r;
|
2018-04-17 08:29:14 -07:00
|
|
|
bool connected = false;
|
2014-10-01 07:24:16 +10:00
|
|
|
unsigned int dispopt = 0;
|
2000-09-11 06:35:57 +00:00
|
|
|
|
|
|
|
REQUIRE(VALID_REQUESTMGR(requestmgr));
|
|
|
|
REQUIRE(msgbuf != NULL);
|
|
|
|
REQUIRE(destaddr != NULL);
|
|
|
|
REQUIRE(task != NULL);
|
|
|
|
REQUIRE(action != NULL);
|
|
|
|
REQUIRE(requestp != NULL && *requestp == NULL);
|
|
|
|
REQUIRE(timeout > 0);
|
2008-06-23 23:47:11 +00:00
|
|
|
if (srcaddr != NULL) {
|
2000-10-30 05:08:07 +00:00
|
|
|
REQUIRE(isc_sockaddr_pf(srcaddr) == isc_sockaddr_pf(destaddr));
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-09-11 06:35:57 +00:00
|
|
|
|
|
|
|
mctx = requestmgr->mctx;
|
|
|
|
|
|
|
|
req_log(ISC_LOG_DEBUG(3), "dns_request_createraw");
|
|
|
|
|
2021-05-25 22:54:17 -07:00
|
|
|
if (atomic_load_acquire(&requestmgr->exiting)) {
|
|
|
|
return (ISC_R_SHUTTINGDOWN);
|
|
|
|
}
|
|
|
|
|
2001-01-23 07:36:06 +00:00
|
|
|
if (isblackholed(requestmgr->dispatchmgr, destaddr)) {
|
|
|
|
return (DNS_R_BLACKHOLED);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-11-03 02:45:55 +00:00
|
|
|
|
2022-03-03 13:30:24 +01:00
|
|
|
/* detached in dns_request_destroy() */
|
2001-01-23 19:50:10 +00:00
|
|
|
result = new_request(mctx, &request);
|
|
|
|
if (result != ISC_R_SUCCESS) {
|
|
|
|
return (result);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-09-11 06:35:57 +00:00
|
|
|
|
2006-08-21 00:35:36 +00:00
|
|
|
request->udpcount = udpretries;
|
2013-03-22 12:27:54 -07:00
|
|
|
request->dscp = dscp;
|
2002-11-12 23:58:14 +00:00
|
|
|
|
2000-09-11 06:35:57 +00:00
|
|
|
request->event = (dns_requestevent_t *)isc_event_allocate(
|
|
|
|
mctx, task, DNS_EVENT_REQUESTDONE, action, arg,
|
2001-11-12 19:05:39 +00:00
|
|
|
sizeof(dns_requestevent_t));
|
2022-03-03 13:30:24 +01:00
|
|
|
isc_task_attach(task, &(isc_task_t *){ NULL });
|
2000-09-11 06:35:57 +00:00
|
|
|
request->event->ev_sender = task;
|
|
|
|
request->event->request = request;
|
|
|
|
request->event->result = ISC_R_FAILURE;
|
|
|
|
|
|
|
|
isc_buffer_usedregion(msgbuf, &r);
|
|
|
|
if (r.length < DNS_MESSAGE_HEADERLEN || r.length > 65535) {
|
|
|
|
result = DNS_R_FORMERR;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2008-06-23 23:47:11 +00:00
|
|
|
|
2000-09-11 06:35:57 +00:00
|
|
|
if ((options & DNS_REQUESTOPT_TCP) != 0 || r.length > 512) {
|
2018-04-17 08:29:14 -07:00
|
|
|
tcp = true;
|
2021-04-22 18:58:01 -07:00
|
|
|
request->timeout = timeout * 1000;
|
|
|
|
} else {
|
2022-04-01 13:46:39 +01:00
|
|
|
if (udptimeout == 0) {
|
2021-04-22 18:58:01 -07:00
|
|
|
udptimeout = timeout / (udpretries + 1);
|
|
|
|
}
|
|
|
|
if (udptimeout == 0) {
|
|
|
|
udptimeout = 1;
|
|
|
|
}
|
|
|
|
request->timeout = udptimeout * 1000;
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-09-11 06:35:57 +00:00
|
|
|
|
2021-05-25 22:54:17 -07:00
|
|
|
isc_buffer_allocate(mctx, &request->query, r.length + (tcp ? 2 : 0));
|
|
|
|
result = isc_buffer_copyregion(request->query, &r);
|
|
|
|
if (result != ISC_R_SUCCESS) {
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2022-03-03 13:30:24 +01:00
|
|
|
/* detached in req_connected() */
|
|
|
|
req_attach(request, &(dns_request_t *){ NULL });
|
|
|
|
|
2014-10-01 07:24:16 +10:00
|
|
|
again:
|
2022-03-03 13:30:24 +01:00
|
|
|
|
2020-12-11 15:20:33 -08:00
|
|
|
result = get_dispatch(tcp, newtcp, requestmgr, srcaddr, destaddr, dscp,
|
|
|
|
&connected, &request->dispatch);
|
2001-01-23 07:36:06 +00:00
|
|
|
if (result != ISC_R_SUCCESS) {
|
2022-03-07 11:24:09 +00:00
|
|
|
goto detach;
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2001-01-23 07:36:06 +00:00
|
|
|
|
2014-10-01 07:24:16 +10:00
|
|
|
if ((options & DNS_REQUESTOPT_FIXEDID) != 0) {
|
|
|
|
id = (r.base[0] << 8) | r.base[1];
|
|
|
|
dispopt |= DNS_DISPATCHOPT_FIXEDID;
|
|
|
|
}
|
|
|
|
|
2021-10-03 15:15:50 -07:00
|
|
|
result = dns_dispatch_add(request->dispatch, dispopt, request->timeout,
|
2022-09-19 11:04:22 +00:00
|
|
|
destaddr, transport, tlsctx_cache,
|
|
|
|
req_connected, req_senddone, req_response,
|
|
|
|
request, &id, &request->dispentry);
|
2014-10-01 07:24:16 +10:00
|
|
|
if (result != ISC_R_SUCCESS) {
|
|
|
|
if ((options & DNS_REQUESTOPT_FIXEDID) != 0 && !newtcp) {
|
2018-04-17 08:29:14 -07:00
|
|
|
newtcp = true;
|
|
|
|
connected = false;
|
2014-10-01 07:24:16 +10:00
|
|
|
dns_dispatch_detach(&request->dispatch);
|
|
|
|
goto again;
|
|
|
|
}
|
2022-03-03 13:30:24 +01:00
|
|
|
|
|
|
|
goto detach;
|
2014-10-01 07:24:16 +10:00
|
|
|
}
|
2000-09-11 06:35:57 +00:00
|
|
|
|
|
|
|
/* Add message ID. */
|
|
|
|
isc_buffer_usedregion(request->query, &r);
|
|
|
|
r.base[0] = (id >> 8) & 0xff;
|
|
|
|
r.base[1] = id & 0xff;
|
|
|
|
|
|
|
|
LOCK(&requestmgr->lock);
|
2021-05-25 22:54:17 -07:00
|
|
|
dns_requestmgr_attach(requestmgr, &request->requestmgr);
|
2000-09-11 06:35:57 +00:00
|
|
|
request->hash = mgr_gethash(requestmgr);
|
|
|
|
ISC_LIST_APPEND(requestmgr->requests, request, link);
|
|
|
|
UNLOCK(&requestmgr->lock);
|
|
|
|
|
2001-10-18 06:09:39 +00:00
|
|
|
request->destaddr = *destaddr;
|
2021-08-03 18:24:27 -07:00
|
|
|
if (tcp && connected) {
|
|
|
|
req_send(request);
|
2022-03-03 13:30:24 +01:00
|
|
|
|
|
|
|
/* no need to call req_connected(), detach here */
|
|
|
|
req_detach(&(dns_request_t *){ request });
|
2021-08-03 18:24:27 -07:00
|
|
|
} else {
|
|
|
|
request->flags |= DNS_REQUEST_F_CONNECTING;
|
|
|
|
if (tcp) {
|
|
|
|
request->flags |= DNS_REQUEST_F_TCP;
|
|
|
|
}
|
2021-08-04 13:14:11 -07:00
|
|
|
|
|
|
|
result = dns_dispatch_connect(request->dispentry);
|
|
|
|
if (result != ISC_R_SUCCESS) {
|
|
|
|
goto unlink;
|
|
|
|
}
|
2000-09-11 06:35:57 +00:00
|
|
|
}
|
|
|
|
|
2001-01-23 19:50:10 +00:00
|
|
|
req_log(ISC_LOG_DEBUG(3), "dns_request_createraw: request %p", request);
|
2000-09-11 06:35:57 +00:00
|
|
|
*requestp = request;
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
unlink:
|
|
|
|
LOCK(&requestmgr->lock);
|
|
|
|
ISC_LIST_UNLINK(requestmgr->requests, request, link);
|
|
|
|
UNLOCK(&requestmgr->lock);
|
|
|
|
|
2022-03-03 13:30:24 +01:00
|
|
|
detach:
|
|
|
|
/* connect failed, detach here */
|
|
|
|
req_detach(&(dns_request_t *){ request });
|
|
|
|
|
2000-09-11 06:35:57 +00:00
|
|
|
cleanup:
|
2022-03-03 13:30:24 +01:00
|
|
|
isc_task_detach(&(isc_task_t *){ task });
|
|
|
|
/* final detach to shut down request */
|
2021-05-25 22:54:17 -07:00
|
|
|
req_detach(&request);
|
2001-01-23 19:50:10 +00:00
|
|
|
req_log(ISC_LOG_DEBUG(3), "dns_request_createraw: failed %s",
|
2021-10-04 17:14:53 +02:00
|
|
|
isc_result_totext(result));
|
2000-09-11 06:35:57 +00:00
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
2000-02-24 14:31:43 +00:00
|
|
|
isc_result_t
|
|
|
|
dns_request_create(dns_requestmgr_t *requestmgr, dns_message_t *message,
|
2022-09-08 11:43:41 -07:00
|
|
|
const isc_sockaddr_t *srcaddr,
|
2022-09-19 11:04:22 +00:00
|
|
|
const isc_sockaddr_t *destaddr, dns_transport_t *transport,
|
|
|
|
isc_tlsctx_cache_t *tlsctx_cache, isc_dscp_t dscp,
|
2022-09-08 11:43:41 -07:00
|
|
|
unsigned int options, dns_tsigkey_t *key,
|
|
|
|
unsigned int timeout, unsigned int udptimeout,
|
|
|
|
unsigned int udpretries, isc_task_t *task,
|
2000-02-24 14:31:43 +00:00
|
|
|
isc_taskaction_t action, void *arg,
|
|
|
|
dns_request_t **requestp) {
|
2000-03-13 20:43:39 +00:00
|
|
|
dns_request_t *request = NULL;
|
|
|
|
isc_result_t result;
|
2021-07-26 20:23:18 -07:00
|
|
|
isc_mem_t *mctx = NULL;
|
2000-03-20 12:22:02 +00:00
|
|
|
dns_messageid_t id;
|
2021-04-22 18:58:01 -07:00
|
|
|
bool tcp = false;
|
2018-04-17 08:29:14 -07:00
|
|
|
bool connected = false;
|
2000-02-24 14:31:43 +00:00
|
|
|
|
|
|
|
REQUIRE(VALID_REQUESTMGR(requestmgr));
|
|
|
|
REQUIRE(message != NULL);
|
2000-10-31 01:17:19 +00:00
|
|
|
REQUIRE(destaddr != NULL);
|
2000-02-24 14:31:43 +00:00
|
|
|
REQUIRE(task != NULL);
|
|
|
|
REQUIRE(action != NULL);
|
|
|
|
REQUIRE(requestp != NULL && *requestp == NULL);
|
|
|
|
REQUIRE(timeout > 0);
|
|
|
|
|
2000-03-13 20:43:39 +00:00
|
|
|
mctx = requestmgr->mctx;
|
|
|
|
|
2022-09-08 11:43:41 -07:00
|
|
|
req_log(ISC_LOG_DEBUG(3), "dns_request_create");
|
2000-05-09 05:12:49 +00:00
|
|
|
|
2021-05-25 22:54:17 -07:00
|
|
|
if (atomic_load_acquire(&requestmgr->exiting)) {
|
|
|
|
return (ISC_R_SHUTTINGDOWN);
|
|
|
|
}
|
|
|
|
|
2013-01-23 15:39:05 -08:00
|
|
|
if (srcaddr != NULL &&
|
|
|
|
isc_sockaddr_pf(srcaddr) != isc_sockaddr_pf(destaddr)) {
|
|
|
|
return (ISC_R_FAMILYMISMATCH);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2013-01-23 15:39:05 -08:00
|
|
|
|
2001-01-23 07:36:06 +00:00
|
|
|
if (isblackholed(requestmgr->dispatchmgr, destaddr)) {
|
|
|
|
return (DNS_R_BLACKHOLED);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-11-03 02:45:55 +00:00
|
|
|
|
2022-03-03 13:30:24 +01:00
|
|
|
/* detached in dns_request_destroy() */
|
2001-01-23 19:50:10 +00:00
|
|
|
result = new_request(mctx, &request);
|
|
|
|
if (result != ISC_R_SUCCESS) {
|
|
|
|
return (result);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-03-13 20:43:39 +00:00
|
|
|
|
2006-08-21 00:35:36 +00:00
|
|
|
request->udpcount = udpretries;
|
2013-03-22 12:27:54 -07:00
|
|
|
request->dscp = dscp;
|
2002-11-12 23:58:14 +00:00
|
|
|
|
2000-03-20 12:22:02 +00:00
|
|
|
request->event = (dns_requestevent_t *)isc_event_allocate(
|
2000-03-13 20:43:39 +00:00
|
|
|
mctx, task, DNS_EVENT_REQUESTDONE, action, arg,
|
2001-11-12 19:05:39 +00:00
|
|
|
sizeof(dns_requestevent_t));
|
2022-03-03 13:30:24 +01:00
|
|
|
isc_task_attach(task, &(isc_task_t *){ NULL });
|
2000-04-17 19:22:44 +00:00
|
|
|
request->event->ev_sender = task;
|
2000-03-20 12:22:02 +00:00
|
|
|
request->event->request = request;
|
|
|
|
request->event->result = ISC_R_FAILURE;
|
2022-03-03 13:30:24 +01:00
|
|
|
|
2000-07-21 23:00:31 +00:00
|
|
|
if (key != NULL) {
|
|
|
|
dns_tsigkey_attach(key, &request->tsigkey);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-08-01 01:33:37 +00:00
|
|
|
|
2021-05-25 22:54:17 -07:00
|
|
|
result = dns_message_settsigkey(message, request->tsigkey);
|
|
|
|
if (result != ISC_R_SUCCESS) {
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2021-04-22 18:58:01 -07:00
|
|
|
if ((options & DNS_REQUESTOPT_TCP) != 0) {
|
|
|
|
tcp = true;
|
|
|
|
request->timeout = timeout * 1000;
|
|
|
|
} else {
|
|
|
|
if (udptimeout == 0 && udpretries != 0) {
|
|
|
|
udptimeout = timeout / (udpretries + 1);
|
|
|
|
}
|
|
|
|
if (udptimeout == 0) {
|
|
|
|
udptimeout = 1;
|
|
|
|
}
|
|
|
|
request->timeout = udptimeout * 1000;
|
|
|
|
}
|
|
|
|
|
2022-03-03 13:30:24 +01:00
|
|
|
/* detached in req_connected() */
|
|
|
|
req_attach(request, &(dns_request_t *){ NULL });
|
|
|
|
|
|
|
|
again:
|
2020-12-11 15:20:33 -08:00
|
|
|
result = get_dispatch(tcp, false, requestmgr, srcaddr, destaddr, dscp,
|
|
|
|
&connected, &request->dispatch);
|
2001-01-23 07:36:06 +00:00
|
|
|
if (result != ISC_R_SUCCESS) {
|
2022-03-03 13:30:24 +01:00
|
|
|
goto detach;
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2001-01-23 07:36:06 +00:00
|
|
|
|
2022-09-19 11:04:22 +00:00
|
|
|
result = dns_dispatch_add(request->dispatch, 0, request->timeout,
|
|
|
|
destaddr, transport, tlsctx_cache,
|
|
|
|
req_connected, req_senddone, req_response,
|
|
|
|
request, &id, &request->dispentry);
|
2000-03-13 20:43:39 +00:00
|
|
|
if (result != ISC_R_SUCCESS) {
|
2022-03-03 13:30:24 +01:00
|
|
|
goto detach;
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-03-13 20:43:39 +00:00
|
|
|
|
2000-03-20 12:22:02 +00:00
|
|
|
message->id = id;
|
2000-06-20 23:54:01 +00:00
|
|
|
result = req_render(message, &request->query, options, mctx);
|
2021-05-25 22:54:17 -07:00
|
|
|
if (result == DNS_R_USETCP && !tcp) {
|
2000-03-20 12:22:02 +00:00
|
|
|
/*
|
|
|
|
* Try again using TCP.
|
|
|
|
*/
|
|
|
|
dns_message_renderreset(message);
|
2021-10-03 15:15:50 -07:00
|
|
|
dns_dispatch_done(&request->dispentry);
|
2000-03-20 12:22:02 +00:00
|
|
|
dns_dispatch_detach(&request->dispatch);
|
|
|
|
options |= DNS_REQUESTOPT_TCP;
|
2021-05-25 22:54:17 -07:00
|
|
|
tcp = true;
|
2022-03-03 13:30:24 +01:00
|
|
|
goto again;
|
2000-03-20 12:22:02 +00:00
|
|
|
}
|
2000-06-20 23:54:01 +00:00
|
|
|
if (result != ISC_R_SUCCESS) {
|
2022-03-03 13:30:24 +01:00
|
|
|
goto detach;
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-05-30 23:14:57 +00:00
|
|
|
|
|
|
|
result = dns_message_getquerytsig(message, mctx, &request->tsig);
|
|
|
|
if (result != ISC_R_SUCCESS) {
|
2022-03-03 13:30:24 +01:00
|
|
|
goto detach;
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-05-30 23:14:57 +00:00
|
|
|
|
2000-03-20 12:22:02 +00:00
|
|
|
LOCK(&requestmgr->lock);
|
2021-05-25 22:54:17 -07:00
|
|
|
dns_requestmgr_attach(requestmgr, &request->requestmgr);
|
2000-03-22 07:00:39 +00:00
|
|
|
request->hash = mgr_gethash(requestmgr);
|
2000-03-20 12:22:02 +00:00
|
|
|
ISC_LIST_APPEND(requestmgr->requests, request, link);
|
|
|
|
UNLOCK(&requestmgr->lock);
|
2000-03-13 20:43:39 +00:00
|
|
|
|
2001-10-18 06:09:39 +00:00
|
|
|
request->destaddr = *destaddr;
|
2021-08-03 18:24:27 -07:00
|
|
|
if (tcp && connected) {
|
|
|
|
req_send(request);
|
2022-03-03 13:30:24 +01:00
|
|
|
|
|
|
|
/* no need to call req_connected(), detach here */
|
|
|
|
req_detach(&(dns_request_t *){ request });
|
2021-08-03 18:24:27 -07:00
|
|
|
} else {
|
|
|
|
request->flags |= DNS_REQUEST_F_CONNECTING;
|
|
|
|
if (tcp) {
|
|
|
|
request->flags |= DNS_REQUEST_F_TCP;
|
|
|
|
}
|
2021-08-04 13:14:11 -07:00
|
|
|
|
|
|
|
result = dns_dispatch_connect(request->dispentry);
|
|
|
|
if (result != ISC_R_SUCCESS) {
|
|
|
|
goto unlink;
|
|
|
|
}
|
2000-03-20 12:22:02 +00:00
|
|
|
}
|
|
|
|
|
2022-09-08 11:43:41 -07:00
|
|
|
req_log(ISC_LOG_DEBUG(3), "dns_request_create: request %p", request);
|
2000-03-20 12:22:02 +00:00
|
|
|
*requestp = request;
|
2000-02-24 14:31:43 +00:00
|
|
|
return (ISC_R_SUCCESS);
|
2000-03-13 20:43:39 +00:00
|
|
|
|
2000-04-18 08:27:48 +00:00
|
|
|
unlink:
|
|
|
|
LOCK(&requestmgr->lock);
|
|
|
|
ISC_LIST_UNLINK(requestmgr->requests, request, link);
|
|
|
|
UNLOCK(&requestmgr->lock);
|
|
|
|
|
2022-03-03 13:30:24 +01:00
|
|
|
detach:
|
|
|
|
/* connect failed, detach here */
|
|
|
|
req_detach(&(dns_request_t *){ request });
|
|
|
|
|
2000-03-13 20:43:39 +00:00
|
|
|
cleanup:
|
2022-03-03 13:30:24 +01:00
|
|
|
isc_task_detach(&(isc_task_t *){ task });
|
|
|
|
/* final detach to shut down request */
|
2021-05-25 22:54:17 -07:00
|
|
|
req_detach(&request);
|
2022-09-08 11:43:41 -07:00
|
|
|
req_log(ISC_LOG_DEBUG(3), "dns_request_create: failed %s",
|
2021-10-04 17:14:53 +02:00
|
|
|
isc_result_totext(result));
|
2000-03-13 20:43:39 +00:00
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
|
|
|
static isc_result_t
|
2000-06-20 23:54:01 +00:00
|
|
|
req_render(dns_message_t *message, isc_buffer_t **bufferp, unsigned int options,
|
|
|
|
isc_mem_t *mctx) {
|
2000-03-13 20:43:39 +00:00
|
|
|
isc_buffer_t *buf1 = NULL;
|
|
|
|
isc_buffer_t *buf2 = NULL;
|
|
|
|
isc_result_t result;
|
|
|
|
isc_region_t r;
|
2001-03-05 21:15:47 +00:00
|
|
|
dns_compress_t cctx;
|
2018-04-17 08:29:14 -07:00
|
|
|
bool cleanup_cctx = false;
|
2000-03-13 20:43:39 +00:00
|
|
|
|
|
|
|
REQUIRE(bufferp != NULL && *bufferp == NULL);
|
|
|
|
|
2000-05-09 05:12:49 +00:00
|
|
|
req_log(ISC_LOG_DEBUG(3), "request_render");
|
2000-03-20 12:22:02 +00:00
|
|
|
|
2000-03-13 20:43:39 +00:00
|
|
|
/*
|
|
|
|
* Create buffer able to hold largest possible message.
|
|
|
|
*/
|
2020-02-02 08:35:46 +01:00
|
|
|
isc_buffer_allocate(mctx, &buf1, 65535);
|
2000-03-13 20:43:39 +00:00
|
|
|
|
2022-05-04 17:35:39 +01:00
|
|
|
result = dns_compress_init(&cctx, mctx);
|
2001-03-05 21:15:47 +00:00
|
|
|
if (result != ISC_R_SUCCESS) {
|
|
|
|
return (result);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2018-04-17 08:29:14 -07:00
|
|
|
cleanup_cctx = true;
|
2001-03-05 21:15:47 +00:00
|
|
|
|
2010-03-04 05:24:56 +00:00
|
|
|
if ((options & DNS_REQUESTOPT_CASE) != 0) {
|
2018-04-17 08:29:14 -07:00
|
|
|
dns_compress_setsensitive(&cctx, true);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2010-03-04 05:24:56 +00:00
|
|
|
|
2000-03-13 20:43:39 +00:00
|
|
|
/*
|
|
|
|
* Render message.
|
|
|
|
*/
|
2001-03-05 21:15:47 +00:00
|
|
|
result = dns_message_renderbegin(message, &cctx, buf1);
|
2000-04-06 22:03:35 +00:00
|
|
|
if (result != ISC_R_SUCCESS) {
|
2000-03-13 20:43:39 +00:00
|
|
|
goto cleanup;
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-03-13 20:43:39 +00:00
|
|
|
result = dns_message_rendersection(message, DNS_SECTION_QUESTION, 0);
|
2000-04-06 22:03:35 +00:00
|
|
|
if (result != ISC_R_SUCCESS) {
|
2000-03-13 20:43:39 +00:00
|
|
|
goto cleanup;
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-03-13 20:43:39 +00:00
|
|
|
result = dns_message_rendersection(message, DNS_SECTION_ANSWER, 0);
|
2000-04-06 22:03:35 +00:00
|
|
|
if (result != ISC_R_SUCCESS) {
|
2000-03-13 20:43:39 +00:00
|
|
|
goto cleanup;
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-03-13 20:43:39 +00:00
|
|
|
result = dns_message_rendersection(message, DNS_SECTION_AUTHORITY, 0);
|
2000-04-06 22:03:35 +00:00
|
|
|
if (result != ISC_R_SUCCESS) {
|
2000-03-13 20:43:39 +00:00
|
|
|
goto cleanup;
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-03-13 20:43:39 +00:00
|
|
|
result = dns_message_rendersection(message, DNS_SECTION_ADDITIONAL, 0);
|
2000-04-06 22:03:35 +00:00
|
|
|
if (result != ISC_R_SUCCESS) {
|
2000-03-13 20:43:39 +00:00
|
|
|
goto cleanup;
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-03-13 20:43:39 +00:00
|
|
|
result = dns_message_renderend(message);
|
2000-04-06 22:03:35 +00:00
|
|
|
if (result != ISC_R_SUCCESS) {
|
2000-03-13 20:43:39 +00:00
|
|
|
goto cleanup;
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-03-13 20:43:39 +00:00
|
|
|
|
2001-03-05 21:15:47 +00:00
|
|
|
dns_compress_invalidate(&cctx);
|
2018-04-17 08:29:14 -07:00
|
|
|
cleanup_cctx = false;
|
2001-03-05 21:15:47 +00:00
|
|
|
|
2000-03-13 20:43:39 +00:00
|
|
|
/*
|
|
|
|
* Copy rendered message to exact sized buffer.
|
|
|
|
*/
|
103. [func] libisc buffer API changes for <isc/buffer.h>:
Added:
isc_buffer_base(b) (pointer)
isc_buffer_current(b) (pointer)
isc_buffer_active(b) (pointer)
isc_buffer_used(b) (pointer)
isc_buffer_length(b) (int)
isc_buffer_usedlength(b) (int)
isc_buffer_consumedlength(b) (int)
isc_buffer_remaininglength(b) (int)
isc_buffer_activelength(b) (int)
isc_buffer_availablelength(b) (int)
Removed:
ISC_BUFFER_USEDCOUNT(b)
ISC_BUFFER_AVAILABLECOUNT(b)
isc_buffer_type(b)
Changed names:
isc_buffer_used(b, r) ->
isc_buffer_usedregion(b, r)
isc_buffer_available(b, r) ->
isc_buffer_available_region(b, r)
isc_buffer_consumed(b, r) ->
isc_buffer_consumedregion(b, r)
isc_buffer_active(b, r) ->
isc_buffer_activeregion(b, r)
isc_buffer_remaining(b, r) ->
isc_buffer_remainingregion(b, r)
Buffer types were removed, so the ISC_BUFFERTYPE_*
macros are no more, and the type argument to
isc_buffer_init and isc_buffer_allocate were removed.
isc_buffer_putstr is now void (instead of isc_result_t)
and requires that the caller ensure that there
is enough available buffer space for the string.
2000-04-27 00:03:12 +00:00
|
|
|
isc_buffer_usedregion(buf1, &r);
|
2021-01-14 13:02:57 -08:00
|
|
|
if ((options & DNS_REQUESTOPT_TCP) == 0 && r.length > 512) {
|
2000-06-20 23:54:01 +00:00
|
|
|
result = DNS_R_USETCP;
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2021-01-14 13:02:57 -08:00
|
|
|
isc_buffer_allocate(mctx, &buf2, r.length);
|
2000-03-13 20:43:39 +00:00
|
|
|
result = isc_buffer_copyregion(buf2, &r);
|
|
|
|
if (result != ISC_R_SUCCESS) {
|
|
|
|
goto cleanup;
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-03-13 20:43:39 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Cleanup and return.
|
|
|
|
*/
|
|
|
|
isc_buffer_free(&buf1);
|
|
|
|
*bufferp = buf2;
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
cleanup:
|
2000-03-20 12:22:02 +00:00
|
|
|
dns_message_renderreset(message);
|
2000-03-13 20:43:39 +00:00
|
|
|
if (buf1 != NULL) {
|
|
|
|
isc_buffer_free(&buf1);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-03-13 20:43:39 +00:00
|
|
|
if (buf2 != NULL) {
|
|
|
|
isc_buffer_free(&buf2);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2001-03-05 21:15:47 +00:00
|
|
|
if (cleanup_cctx) {
|
|
|
|
dns_compress_invalidate(&cctx);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-03-13 20:43:39 +00:00
|
|
|
return (result);
|
2000-02-24 14:31:43 +00:00
|
|
|
}
|
|
|
|
|
2021-04-22 18:58:01 -07:00
|
|
|
void
|
|
|
|
request_cancel(dns_request_t *request) {
|
2001-08-29 23:52:28 +00:00
|
|
|
if (!DNS_REQUEST_CANCELED(request)) {
|
2021-08-04 13:14:11 -07:00
|
|
|
req_log(ISC_LOG_DEBUG(3), "request_cancel: request %p",
|
|
|
|
request);
|
2021-04-22 18:58:01 -07:00
|
|
|
|
|
|
|
request->flags |= DNS_REQUEST_F_CANCELED;
|
|
|
|
request->flags &= ~DNS_REQUEST_F_CONNECTING;
|
|
|
|
|
|
|
|
if (request->dispentry != NULL) {
|
2021-10-03 15:15:50 -07:00
|
|
|
dns_dispatch_cancel(&request->dispentry);
|
2021-04-22 18:58:01 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
dns_dispatch_detach(&request->dispatch);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2001-02-13 02:49:07 +00:00
|
|
|
}
|
|
|
|
|
2001-11-30 01:59:49 +00:00
|
|
|
void
|
2000-02-24 14:31:43 +00:00
|
|
|
dns_request_cancel(dns_request_t *request) {
|
2000-03-20 12:22:02 +00:00
|
|
|
REQUIRE(VALID_REQUEST(request));
|
2000-03-13 20:43:39 +00:00
|
|
|
|
2000-05-09 05:12:49 +00:00
|
|
|
req_log(ISC_LOG_DEBUG(3), "dns_request_cancel: request %p", request);
|
2000-03-22 07:00:39 +00:00
|
|
|
LOCK(&request->requestmgr->locks[request->hash]);
|
2021-04-22 18:58:01 -07:00
|
|
|
request_cancel(request);
|
2021-10-03 17:24:35 -07:00
|
|
|
req_sendevent(request, ISC_R_CANCELED);
|
2000-03-22 07:00:39 +00:00
|
|
|
UNLOCK(&request->requestmgr->locks[request->hash]);
|
2000-02-24 14:31:43 +00:00
|
|
|
}
|
2000-03-13 20:43:39 +00:00
|
|
|
|
2000-02-24 14:31:43 +00:00
|
|
|
isc_result_t
|
2000-05-18 02:59:20 +00:00
|
|
|
dns_request_getresponse(dns_request_t *request, dns_message_t *message,
|
2000-10-06 18:58:30 +00:00
|
|
|
unsigned int options) {
|
2000-07-21 20:33:13 +00:00
|
|
|
isc_result_t result;
|
|
|
|
|
2000-03-13 20:43:39 +00:00
|
|
|
REQUIRE(VALID_REQUEST(request));
|
|
|
|
REQUIRE(request->answer != NULL);
|
|
|
|
|
2000-05-09 05:12:49 +00:00
|
|
|
req_log(ISC_LOG_DEBUG(3), "dns_request_getresponse: request %p",
|
|
|
|
request);
|
2000-04-18 08:27:48 +00:00
|
|
|
|
2022-07-29 12:40:45 +00:00
|
|
|
dns_message_setquerytsig(message, request->tsig);
|
2001-11-30 01:59:49 +00:00
|
|
|
result = dns_message_settsigkey(message, request->tsigkey);
|
|
|
|
if (result != ISC_R_SUCCESS) {
|
|
|
|
return (result);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-10-06 18:58:30 +00:00
|
|
|
result = dns_message_parse(message, request->answer, options);
|
2000-07-21 20:33:13 +00:00
|
|
|
if (result != ISC_R_SUCCESS) {
|
|
|
|
return (result);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-07-21 20:33:13 +00:00
|
|
|
if (request->tsigkey != NULL) {
|
2000-07-21 22:22:55 +00:00
|
|
|
result = dns_tsig_verify(request->answer, message, NULL, NULL);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-07-21 20:33:13 +00:00
|
|
|
return (result);
|
2000-02-24 14:31:43 +00:00
|
|
|
}
|
|
|
|
|
2019-07-20 14:35:59 -04:00
|
|
|
isc_buffer_t *
|
|
|
|
dns_request_getanswer(dns_request_t *request) {
|
|
|
|
REQUIRE(VALID_REQUEST(request));
|
|
|
|
|
|
|
|
return (request->answer);
|
|
|
|
}
|
|
|
|
|
2018-04-17 08:29:14 -07:00
|
|
|
bool
|
2000-06-06 02:07:13 +00:00
|
|
|
dns_request_usedtcp(dns_request_t *request) {
|
|
|
|
REQUIRE(VALID_REQUEST(request));
|
|
|
|
|
2018-10-11 11:57:57 +02:00
|
|
|
return ((request->flags & DNS_REQUEST_F_TCP) != 0);
|
2000-06-06 02:07:13 +00:00
|
|
|
}
|
|
|
|
|
2000-02-24 14:31:43 +00:00
|
|
|
void
|
|
|
|
dns_request_destroy(dns_request_t **requestp) {
|
2000-03-20 12:22:02 +00:00
|
|
|
dns_request_t *request;
|
2000-08-01 01:33:37 +00:00
|
|
|
|
2000-03-20 12:22:02 +00:00
|
|
|
REQUIRE(requestp != NULL && VALID_REQUEST(*requestp));
|
2000-04-18 08:27:48 +00:00
|
|
|
|
2000-03-20 12:22:02 +00:00
|
|
|
request = *requestp;
|
2020-02-08 04:37:54 -08:00
|
|
|
*requestp = NULL;
|
2000-05-09 05:12:49 +00:00
|
|
|
|
|
|
|
req_log(ISC_LOG_DEBUG(3), "dns_request_destroy: request %p", request);
|
|
|
|
|
2001-08-29 21:15:56 +00:00
|
|
|
LOCK(&request->requestmgr->lock);
|
2000-03-22 07:00:39 +00:00
|
|
|
LOCK(&request->requestmgr->locks[request->hash]);
|
2001-08-29 21:15:56 +00:00
|
|
|
ISC_LIST_UNLINK(request->requestmgr->requests, request, link);
|
2000-03-22 07:00:39 +00:00
|
|
|
UNLOCK(&request->requestmgr->locks[request->hash]);
|
2001-08-29 21:15:56 +00:00
|
|
|
UNLOCK(&request->requestmgr->lock);
|
2000-03-22 07:00:39 +00:00
|
|
|
|
2001-02-13 02:49:07 +00:00
|
|
|
/*
|
2021-04-22 18:58:01 -07:00
|
|
|
* These should have been cleaned up before the completion
|
|
|
|
* event was sent.
|
2001-02-13 02:49:07 +00:00
|
|
|
*/
|
|
|
|
INSIST(request->dispentry == NULL);
|
|
|
|
INSIST(request->dispatch == NULL);
|
|
|
|
|
2022-03-03 13:30:24 +01:00
|
|
|
/* final detach to shut down request */
|
2021-05-25 22:54:17 -07:00
|
|
|
req_detach(&request);
|
2000-02-24 14:31:43 +00:00
|
|
|
}
|
2000-03-20 12:22:02 +00:00
|
|
|
|
2000-03-13 20:43:39 +00:00
|
|
|
static void
|
2021-08-03 15:27:06 +02:00
|
|
|
req_connected(isc_result_t eresult, isc_region_t *region, void *arg) {
|
2021-01-14 13:02:57 -08:00
|
|
|
dns_request_t *request = (dns_request_t *)arg;
|
|
|
|
|
2021-08-03 15:27:06 +02:00
|
|
|
UNUSED(region);
|
2000-03-13 20:43:39 +00:00
|
|
|
|
2021-05-25 22:54:17 -07:00
|
|
|
req_log(ISC_LOG_DEBUG(3), "req_connected: request %p: %s", request,
|
|
|
|
isc_result_totext(eresult));
|
|
|
|
|
2000-04-28 22:07:29 +00:00
|
|
|
REQUIRE(VALID_REQUEST(request));
|
2021-08-04 13:14:11 -07:00
|
|
|
REQUIRE(DNS_REQUEST_CONNECTING(request) ||
|
|
|
|
DNS_REQUEST_CANCELED(request));
|
2000-03-20 12:22:02 +00:00
|
|
|
|
2000-12-19 03:36:48 +00:00
|
|
|
LOCK(&request->requestmgr->locks[request->hash]);
|
2000-03-20 12:22:02 +00:00
|
|
|
request->flags &= ~DNS_REQUEST_F_CONNECTING;
|
|
|
|
|
2021-04-22 18:58:01 -07:00
|
|
|
if (eresult == ISC_R_TIMEDOUT) {
|
2021-10-03 15:15:50 -07:00
|
|
|
dns_dispatch_done(&request->dispentry);
|
2021-04-22 18:58:01 -07:00
|
|
|
dns_dispatch_detach(&request->dispatch);
|
2021-10-03 17:24:35 -07:00
|
|
|
req_sendevent(request, eresult);
|
2021-04-22 18:58:01 -07:00
|
|
|
} else if (DNS_REQUEST_CANCELED(request)) {
|
2021-10-03 17:24:35 -07:00
|
|
|
req_sendevent(request, ISC_R_CANCELED);
|
2021-04-22 18:58:01 -07:00
|
|
|
} else if (eresult == ISC_R_SUCCESS) {
|
|
|
|
req_send(request);
|
2000-03-20 12:22:02 +00:00
|
|
|
} else {
|
2021-04-22 18:58:01 -07:00
|
|
|
request_cancel(request);
|
2021-10-03 17:24:35 -07:00
|
|
|
req_sendevent(request, ISC_R_CANCELED);
|
2000-03-20 12:22:02 +00:00
|
|
|
}
|
2000-12-19 03:36:48 +00:00
|
|
|
UNLOCK(&request->requestmgr->locks[request->hash]);
|
2021-05-25 22:54:17 -07:00
|
|
|
|
2022-09-08 11:43:41 -07:00
|
|
|
/* attached in dns_request_create/_createraw() */
|
2022-03-03 13:30:24 +01:00
|
|
|
req_detach(&(dns_request_t *){ request });
|
2000-03-20 12:22:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-08-03 15:27:06 +02:00
|
|
|
req_senddone(isc_result_t eresult, isc_region_t *region, void *arg) {
|
2021-01-14 13:02:57 -08:00
|
|
|
dns_request_t *request = (dns_request_t *)arg;
|
2000-03-20 12:22:02 +00:00
|
|
|
|
2000-04-28 22:07:29 +00:00
|
|
|
REQUIRE(VALID_REQUEST(request));
|
2000-12-31 05:05:34 +00:00
|
|
|
REQUIRE(DNS_REQUEST_SENDING(request));
|
2000-03-20 12:22:02 +00:00
|
|
|
|
2021-08-03 15:27:06 +02:00
|
|
|
UNUSED(region);
|
2000-05-09 05:12:49 +00:00
|
|
|
|
2021-01-14 13:02:57 -08:00
|
|
|
req_log(ISC_LOG_DEBUG(3), "req_senddone: request %p", request);
|
2000-03-13 20:43:39 +00:00
|
|
|
|
2000-12-31 05:05:34 +00:00
|
|
|
LOCK(&request->requestmgr->locks[request->hash]);
|
|
|
|
request->flags &= ~DNS_REQUEST_F_SENDING;
|
|
|
|
|
|
|
|
if (DNS_REQUEST_CANCELED(request)) {
|
2021-04-22 18:58:01 -07:00
|
|
|
if (eresult == ISC_R_TIMEDOUT) {
|
2021-10-03 17:24:35 -07:00
|
|
|
req_sendevent(request, eresult);
|
2000-12-31 05:05:34 +00:00
|
|
|
} else {
|
2021-10-03 17:24:35 -07:00
|
|
|
req_sendevent(request, ISC_R_CANCELED);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2021-01-14 13:02:57 -08:00
|
|
|
} else if (eresult != ISC_R_SUCCESS) {
|
2021-04-22 18:58:01 -07:00
|
|
|
request_cancel(request);
|
2021-10-03 17:24:35 -07:00
|
|
|
req_sendevent(request, ISC_R_CANCELED);
|
2000-12-31 05:05:34 +00:00
|
|
|
}
|
2000-03-13 20:43:39 +00:00
|
|
|
|
2021-01-14 13:02:57 -08:00
|
|
|
UNLOCK(&request->requestmgr->locks[request->hash]);
|
2022-03-03 13:30:24 +01:00
|
|
|
|
|
|
|
/* attached in req_send() */
|
|
|
|
req_detach(&request);
|
2000-03-13 20:43:39 +00:00
|
|
|
}
|
|
|
|
|
2021-04-22 18:58:01 -07:00
|
|
|
static void
|
2021-08-03 15:27:06 +02:00
|
|
|
req_response(isc_result_t result, isc_region_t *region, void *arg) {
|
2021-04-22 18:58:01 -07:00
|
|
|
dns_request_t *request = (dns_request_t *)arg;
|
|
|
|
|
2021-08-04 13:14:11 -07:00
|
|
|
req_log(ISC_LOG_DEBUG(3), "req_response: request %p: %s", request,
|
2021-10-04 17:14:53 +02:00
|
|
|
isc_result_totext(result));
|
2021-08-04 13:14:11 -07:00
|
|
|
|
2022-02-09 14:56:04 -08:00
|
|
|
if (result == ISC_R_CANCELED) {
|
2021-08-03 15:27:06 +02:00
|
|
|
return;
|
2021-04-22 18:58:01 -07:00
|
|
|
}
|
|
|
|
|
2021-08-03 15:27:06 +02:00
|
|
|
if (result == ISC_R_TIMEDOUT) {
|
|
|
|
LOCK(&request->requestmgr->locks[request->hash]);
|
2022-04-01 13:46:39 +01:00
|
|
|
if (request->udpcount != 0) {
|
|
|
|
request->udpcount -= 1;
|
2021-08-03 18:24:27 -07:00
|
|
|
dns_dispatch_resume(request->dispentry,
|
|
|
|
request->timeout);
|
2021-08-03 15:27:06 +02:00
|
|
|
if (!DNS_REQUEST_SENDING(request)) {
|
|
|
|
req_send(request);
|
|
|
|
}
|
|
|
|
UNLOCK(&request->requestmgr->locks[request->hash]);
|
|
|
|
return;
|
|
|
|
}
|
2021-07-26 20:23:18 -07:00
|
|
|
|
2021-08-03 15:27:06 +02:00
|
|
|
/* The lock is unlocked below */
|
|
|
|
goto done;
|
2021-07-26 20:23:18 -07:00
|
|
|
}
|
2000-03-13 20:43:39 +00:00
|
|
|
|
2021-07-26 20:23:18 -07:00
|
|
|
REQUIRE(VALID_REQUEST(request));
|
2000-08-01 01:33:37 +00:00
|
|
|
|
2000-03-22 07:00:39 +00:00
|
|
|
LOCK(&request->requestmgr->locks[request->hash]);
|
2021-08-03 15:27:06 +02:00
|
|
|
|
2000-03-20 12:22:02 +00:00
|
|
|
if (result != ISC_R_SUCCESS) {
|
2000-03-13 20:43:39 +00:00
|
|
|
goto done;
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-03-13 20:43:39 +00:00
|
|
|
|
|
|
|
/*
|
2021-07-26 20:23:18 -07:00
|
|
|
* Copy region to request.
|
2000-03-13 20:43:39 +00:00
|
|
|
*/
|
2021-07-26 20:23:18 -07:00
|
|
|
isc_buffer_allocate(request->mctx, &request->answer, region->length);
|
|
|
|
result = isc_buffer_copyregion(request->answer, region);
|
2000-03-20 12:22:02 +00:00
|
|
|
if (result != ISC_R_SUCCESS) {
|
|
|
|
isc_buffer_free(&request->answer);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2021-08-04 13:14:11 -07:00
|
|
|
|
2000-03-13 20:43:39 +00:00
|
|
|
done:
|
2000-03-20 12:22:02 +00:00
|
|
|
/*
|
|
|
|
* Cleanup.
|
|
|
|
*/
|
2021-08-04 13:14:11 -07:00
|
|
|
if (request->dispentry != NULL) {
|
2021-10-03 15:15:50 -07:00
|
|
|
dns_dispatch_done(&request->dispentry);
|
2021-08-04 13:14:11 -07:00
|
|
|
}
|
2021-04-22 18:58:01 -07:00
|
|
|
request_cancel(request);
|
|
|
|
|
2000-03-20 12:22:02 +00:00
|
|
|
/*
|
|
|
|
* Send completion event.
|
|
|
|
*/
|
2021-10-03 17:24:35 -07:00
|
|
|
req_sendevent(request, result);
|
2000-03-22 07:00:39 +00:00
|
|
|
UNLOCK(&request->requestmgr->locks[request->hash]);
|
2000-03-13 20:43:39 +00:00
|
|
|
}
|
|
|
|
|
2000-03-20 12:22:02 +00:00
|
|
|
static void
|
|
|
|
req_sendevent(dns_request_t *request, isc_result_t result) {
|
2021-10-03 17:24:35 -07:00
|
|
|
isc_task_t *task = NULL;
|
2000-03-20 12:22:02 +00:00
|
|
|
|
2000-04-28 22:07:29 +00:00
|
|
|
REQUIRE(VALID_REQUEST(request));
|
2000-05-09 05:12:49 +00:00
|
|
|
|
2021-10-03 17:24:35 -07:00
|
|
|
if (request->event == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-05-09 05:12:49 +00:00
|
|
|
req_log(ISC_LOG_DEBUG(3), "req_sendevent: request %p", request);
|
2000-04-18 08:27:48 +00:00
|
|
|
|
2000-03-22 07:00:39 +00:00
|
|
|
/*
|
|
|
|
* Lock held by caller.
|
|
|
|
*/
|
2000-04-17 19:22:44 +00:00
|
|
|
task = request->event->ev_sender;
|
|
|
|
request->event->ev_sender = request;
|
2000-03-20 12:22:02 +00:00
|
|
|
request->event->result = result;
|
2022-03-03 13:30:24 +01:00
|
|
|
|
2000-03-20 12:22:02 +00:00
|
|
|
isc_task_sendanddetach(&task, (isc_event_t **)&request->event);
|
|
|
|
}
|
|
|
|
|
2021-05-25 22:54:17 -07:00
|
|
|
static void
|
2021-09-09 15:25:08 -07:00
|
|
|
req_attach(dns_request_t *source, dns_request_t **targetp) {
|
2021-05-25 22:54:17 -07:00
|
|
|
REQUIRE(VALID_REQUEST(source));
|
|
|
|
REQUIRE(targetp != NULL && *targetp == NULL);
|
|
|
|
|
2021-09-09 15:25:08 -07:00
|
|
|
isc_refcount_increment(&source->references);
|
2021-05-25 22:54:17 -07:00
|
|
|
|
|
|
|
*targetp = source;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2021-09-09 15:25:08 -07:00
|
|
|
req_detach(dns_request_t **requestp) {
|
2021-05-25 22:54:17 -07:00
|
|
|
dns_request_t *request = NULL;
|
|
|
|
|
|
|
|
REQUIRE(requestp != NULL && VALID_REQUEST(*requestp));
|
|
|
|
|
|
|
|
request = *requestp;
|
|
|
|
*requestp = NULL;
|
|
|
|
|
2022-05-11 13:55:01 -07:00
|
|
|
if (isc_refcount_decrement(&request->references) == 1) {
|
2021-05-25 22:54:17 -07:00
|
|
|
req_destroy(request);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-03-20 12:22:02 +00:00
|
|
|
static void
|
|
|
|
req_destroy(dns_request_t *request) {
|
2000-04-28 22:07:29 +00:00
|
|
|
REQUIRE(VALID_REQUEST(request));
|
2000-05-09 05:12:49 +00:00
|
|
|
|
|
|
|
req_log(ISC_LOG_DEBUG(3), "req_destroy: request %p", request);
|
2000-03-20 12:22:02 +00:00
|
|
|
|
2021-05-25 22:54:17 -07:00
|
|
|
isc_refcount_destroy(&request->references);
|
|
|
|
|
2000-03-20 12:22:02 +00:00
|
|
|
request->magic = 0;
|
|
|
|
if (request->query != NULL) {
|
|
|
|
isc_buffer_free(&request->query);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-03-20 12:22:02 +00:00
|
|
|
if (request->answer != NULL) {
|
|
|
|
isc_buffer_free(&request->answer);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-03-20 12:22:02 +00:00
|
|
|
if (request->event != NULL) {
|
|
|
|
isc_event_free((isc_event_t **)&request->event);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-03-20 12:22:02 +00:00
|
|
|
if (request->dispentry != NULL) {
|
2021-10-03 15:15:50 -07:00
|
|
|
dns_dispatch_done(&request->dispentry);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-03-20 12:22:02 +00:00
|
|
|
if (request->dispatch != NULL) {
|
|
|
|
dns_dispatch_detach(&request->dispatch);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-05-30 23:14:57 +00:00
|
|
|
if (request->tsig != NULL) {
|
|
|
|
isc_buffer_free(&request->tsig);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2000-07-21 23:00:31 +00:00
|
|
|
if (request->tsigkey != NULL) {
|
|
|
|
dns_tsigkey_detach(&request->tsigkey);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2001-01-23 19:50:10 +00:00
|
|
|
if (request->requestmgr != NULL) {
|
2021-05-25 22:54:17 -07:00
|
|
|
dns_requestmgr_detach(&request->requestmgr);
|
2020-02-13 21:48:23 +01:00
|
|
|
}
|
2019-07-23 17:16:57 -04:00
|
|
|
isc_mem_putanddetach(&request->mctx, request, sizeof(*request));
|
2000-03-20 12:22:02 +00:00
|
|
|
}
|
|
|
|
|
2000-05-09 05:12:49 +00:00
|
|
|
static void
|
|
|
|
req_log(int level, const char *fmt, ...) {
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
isc_log_vwrite(dns_lctx, DNS_LOGCATEGORY_GENERAL, DNS_LOGMODULE_REQUEST,
|
|
|
|
level, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|