1999-06-16 01:32:31 +00:00
|
|
|
/*
|
2000-02-03 23:50:32 +00:00
|
|
|
* Copyright (C) 1999, 2000 Internet Software Consortium.
|
1999-06-16 01:32:31 +00:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
|
|
|
|
* ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
|
|
|
|
* CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
|
|
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
|
|
|
|
* ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
|
|
|
* SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
1999-12-15 03:11:00 +00:00
|
|
|
#include <isc/lfsr.h>
|
2000-05-10 21:34:50 +00:00
|
|
|
#include <isc/list.h>
|
1999-06-18 02:01:42 +00:00
|
|
|
#include <isc/mem.h>
|
2000-05-10 21:34:50 +00:00
|
|
|
#include <isc/mutex.h>
|
2000-05-08 14:38:29 +00:00
|
|
|
#include <isc/print.h>
|
2000-04-28 03:53:48 +00:00
|
|
|
#include <isc/task.h>
|
1999-12-16 22:24:22 +00:00
|
|
|
#include <isc/util.h>
|
1999-06-16 01:32:31 +00:00
|
|
|
|
|
|
|
#include <dns/dispatch.h>
|
2000-04-29 00:45:26 +00:00
|
|
|
#include <dns/events.h>
|
|
|
|
#include <dns/log.h>
|
1999-06-30 01:33:11 +00:00
|
|
|
#include <dns/message.h>
|
1999-07-12 23:44:31 +00:00
|
|
|
#include <dns/tcpmsg.h>
|
2000-05-10 21:34:50 +00:00
|
|
|
#include <dns/types.h>
|
|
|
|
|
|
|
|
struct dns_dispatchmgr {
|
|
|
|
/* Unlocked. */
|
|
|
|
unsigned int magic;
|
|
|
|
isc_mem_t *mctx;
|
|
|
|
|
|
|
|
/* Locked by "lock". */
|
|
|
|
isc_mutex_t lock;
|
|
|
|
unsigned int state;
|
|
|
|
ISC_LIST(dns_dispatch_t) list;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define MGR_SHUTTINGDOWN 0x00000001U
|
|
|
|
#define MGR_IS_SHUTTINGDOWN(l) (((l)->state & MGR_SHUTTINGDOWN) != 0)
|
|
|
|
|
|
|
|
#define IS_PRIVATE(d) (((d)->attributes & DNS_DISPATCHATTR_PRIVATE) != 0)
|
1999-07-08 02:50:00 +00:00
|
|
|
|
1999-07-06 19:32:40 +00:00
|
|
|
struct dns_dispentry {
|
1999-06-18 02:01:42 +00:00
|
|
|
unsigned int magic;
|
2000-01-07 01:17:47 +00:00
|
|
|
isc_uint32_t id;
|
1999-06-18 02:01:42 +00:00
|
|
|
unsigned int bucket;
|
1999-07-06 19:32:40 +00:00
|
|
|
isc_sockaddr_t host;
|
1999-06-16 01:32:31 +00:00
|
|
|
isc_task_t *task;
|
|
|
|
isc_taskaction_t action;
|
|
|
|
void *arg;
|
1999-07-08 02:50:00 +00:00
|
|
|
isc_boolean_t item_out;
|
1999-07-06 19:32:40 +00:00
|
|
|
ISC_LIST(dns_dispatchevent_t) items;
|
1999-07-08 02:50:00 +00:00
|
|
|
ISC_LINK(dns_dispentry_t) link;
|
1999-06-16 01:32:31 +00:00
|
|
|
};
|
1999-07-06 19:32:40 +00:00
|
|
|
|
1999-12-15 17:14:52 +00:00
|
|
|
#define INVALID_BUCKET (0xffffdead)
|
1999-06-16 01:32:31 +00:00
|
|
|
|
1999-07-09 00:51:08 +00:00
|
|
|
typedef ISC_LIST(dns_dispentry_t) dns_displist_t;
|
|
|
|
|
1999-06-16 01:32:31 +00:00
|
|
|
struct dns_dispatch {
|
|
|
|
/* Unlocked. */
|
|
|
|
unsigned int magic; /* magic */
|
2000-05-10 21:34:50 +00:00
|
|
|
dns_dispatchmgr_t *mgr; /* dispatch manager */
|
1999-06-16 01:32:31 +00:00
|
|
|
isc_task_t *task; /* internal task */
|
|
|
|
isc_socket_t *socket; /* isc socket attached to */
|
|
|
|
unsigned int buffersize; /* size of each buffer */
|
1999-07-09 02:47:55 +00:00
|
|
|
unsigned int maxrequests; /* max requests */
|
|
|
|
unsigned int maxbuffers; /* max buffers */
|
1999-06-16 01:32:31 +00:00
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
/* Locked by mgr->lock. */
|
|
|
|
unsigned int attributes;
|
|
|
|
ISC_LINK(dns_dispatch_t) link;
|
|
|
|
|
|
|
|
/* Locked by "lock". */
|
1999-06-16 01:32:31 +00:00
|
|
|
isc_mutex_t lock; /* locks all below */
|
|
|
|
unsigned int refcount; /* number of users */
|
|
|
|
isc_mempool_t *epool; /* memory pool for events */
|
|
|
|
isc_mempool_t *bpool; /* memory pool for buffers */
|
1999-07-06 19:32:40 +00:00
|
|
|
isc_mempool_t *rpool; /* memory pool request/reply */
|
1999-07-08 02:50:00 +00:00
|
|
|
dns_dispatchevent_t *failsafe_ev; /* failsafe cancel event */
|
|
|
|
unsigned int recvs; /* recv() calls outstanding */
|
|
|
|
unsigned int recvs_wanted; /* recv() calls wanted */
|
|
|
|
unsigned int shutting_down : 1,
|
|
|
|
shutdown_out : 1;
|
1999-07-22 01:34:31 +00:00
|
|
|
isc_result_t shutdown_why;
|
1999-07-09 00:51:08 +00:00
|
|
|
unsigned int requests; /* how many requests we have */
|
1999-07-09 02:47:55 +00:00
|
|
|
unsigned int buffers; /* allocated buffers */
|
1999-07-06 19:32:40 +00:00
|
|
|
ISC_LIST(dns_dispentry_t) rq_handlers; /* request handler list */
|
|
|
|
ISC_LIST(dns_dispatchevent_t) rq_events; /* holder for rq events */
|
1999-07-12 23:44:31 +00:00
|
|
|
dns_tcpmsg_t tcpmsg; /* for tcp streams */
|
2000-01-07 01:17:47 +00:00
|
|
|
dns_dispatchmethods_t methods; /* methods to use */
|
1999-12-16 00:07:21 +00:00
|
|
|
isc_lfsr_t qid_lfsr1; /* state generator info */
|
|
|
|
isc_lfsr_t qid_lfsr2; /* state generator info */
|
1999-12-15 17:14:52 +00:00
|
|
|
unsigned int qid_nbuckets; /* hash table size */
|
|
|
|
unsigned int qid_increment; /* id increment on collision */
|
1999-07-09 00:51:08 +00:00
|
|
|
dns_displist_t *qid_table; /* the table itself */
|
1999-06-16 01:32:31 +00:00
|
|
|
};
|
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
#define REQUEST_MAGIC ISC_MAGIC('D', 'r', 'q', 's')
|
|
|
|
#define VALID_REQUEST(e) ISC_MAGIC_VALID((e), REQUEST_MAGIC)
|
|
|
|
|
|
|
|
#define RESPONSE_MAGIC ISC_MAGIC('D', 'r', 's', 'p')
|
|
|
|
#define VALID_RESPONSE(e) ISC_MAGIC_VALID((e), RESPONSE_MAGIC)
|
1999-06-18 02:01:42 +00:00
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
#define DISPATCH_MAGIC ISC_MAGIC('D', 'i', 's', 'p')
|
|
|
|
#define VALID_DISPATCH(e) ISC_MAGIC_VALID((e), DISPATCH_MAGIC)
|
1999-06-18 02:01:42 +00:00
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
#define DNS_DISPATCHMGR_MAGIC ISC_MAGIC('D', 'M', 'g', 'r')
|
|
|
|
#define VALID_DISPATCHMGR(e) ISC_MAGIC_VALID((e), DNS_DISPATCHMGR_MAGIC)
|
1999-06-18 02:01:42 +00:00
|
|
|
|
1999-06-30 01:33:11 +00:00
|
|
|
/*
|
|
|
|
* statics.
|
|
|
|
*/
|
1999-12-15 03:11:00 +00:00
|
|
|
static dns_dispentry_t *bucket_search(dns_dispatch_t *, isc_sockaddr_t *,
|
|
|
|
dns_messageid_t, unsigned int);
|
2000-05-10 21:34:50 +00:00
|
|
|
static void destroy_disp(dns_dispatch_t *);
|
1999-12-15 03:11:00 +00:00
|
|
|
static void udp_recv(isc_task_t *, isc_event_t *);
|
|
|
|
static void tcp_recv(isc_task_t *, isc_event_t *);
|
|
|
|
static inline void startrecv(dns_dispatch_t *);
|
2000-01-07 01:17:47 +00:00
|
|
|
static isc_uint32_t dns_randomid(dns_dispatch_t *);
|
|
|
|
static isc_uint32_t dns_hash(dns_dispatch_t *, isc_sockaddr_t *, isc_uint32_t);
|
1999-12-15 03:11:00 +00:00
|
|
|
static void free_buffer(dns_dispatch_t *disp, void *buf, unsigned int len);
|
|
|
|
static void *allocate_buffer(dns_dispatch_t *disp, unsigned int len);
|
|
|
|
static inline void free_event(dns_dispatch_t *disp, dns_dispatchevent_t *ev);
|
|
|
|
static inline dns_dispatchevent_t *allocate_event(dns_dispatch_t *disp);
|
|
|
|
static void do_next_request(dns_dispatch_t *disp, dns_dispentry_t *resp);
|
|
|
|
static void do_next_response(dns_dispatch_t *disp, dns_dispentry_t *resp);
|
|
|
|
static void do_cancel(dns_dispatch_t *disp, dns_dispentry_t *resp);
|
|
|
|
static dns_dispentry_t *linear_first(dns_dispatch_t *disp);
|
|
|
|
static dns_dispentry_t *linear_next(dns_dispatch_t *disp,
|
|
|
|
dns_dispentry_t *resp);
|
1999-07-08 02:50:00 +00:00
|
|
|
|
2000-04-29 00:45:26 +00:00
|
|
|
#define LVL(x) \
|
|
|
|
DNS_LOGCATEGORY_DISPATCH, DNS_LOGMODULE_DISPATCH, \
|
|
|
|
ISC_LOG_DEBUG(x)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Format a human-readable representation of the socket address '*sa'
|
|
|
|
* into the character array 'array', which is of size 'size'.
|
|
|
|
* The resulting string is guaranteed to be null-terminated.
|
|
|
|
*/
|
|
|
|
static void
|
2000-05-10 21:34:50 +00:00
|
|
|
sockaddr_format(isc_sockaddr_t *sa, char *array, unsigned int size)
|
|
|
|
{
|
2000-04-29 00:45:26 +00:00
|
|
|
isc_result_t result;
|
|
|
|
isc_buffer_t buf;
|
|
|
|
|
|
|
|
isc_buffer_init(&buf, array, size);
|
|
|
|
result = isc_sockaddr_totext(sa, &buf);
|
|
|
|
if (result != ISC_R_SUCCESS) {
|
|
|
|
snprintf(array, size,
|
|
|
|
"<unknown address, family %u>",
|
|
|
|
sa->type.sa.sa_family);
|
|
|
|
array[size - 1] = '\0';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
dispatch_log(dns_dispatch_t *disp,
|
|
|
|
isc_logcategory_t *category, isc_logmodule_t *module, int level,
|
|
|
|
const char *fmt, ...)
|
|
|
|
{
|
|
|
|
char msgbuf[2048];
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
vsnprintf(msgbuf, sizeof(msgbuf), fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
isc_log_write(dns_lctx, category, module, level,
|
|
|
|
"dispatch %p: %s", disp, msgbuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
request_log(dns_dispatch_t *disp, dns_dispentry_t *resp,
|
|
|
|
isc_logcategory_t *category, isc_logmodule_t *module, int level,
|
|
|
|
const char *fmt, ...)
|
|
|
|
{
|
|
|
|
char msgbuf[2048];
|
|
|
|
char peerbuf[256];
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
vsnprintf(msgbuf, sizeof(msgbuf), fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
if (VALID_RESPONSE(resp)) {
|
|
|
|
sockaddr_format(&resp->host, peerbuf, sizeof peerbuf);
|
|
|
|
isc_log_write(dns_lctx, category, module, level,
|
|
|
|
"dispatch %p request %p %s: %s", disp, resp,
|
|
|
|
peerbuf, msgbuf);
|
|
|
|
} else if (VALID_REQUEST(resp)) {
|
|
|
|
isc_log_write(dns_lctx, category, module, level,
|
|
|
|
"dispatch %p response %p: %s", disp, resp,
|
|
|
|
msgbuf);
|
|
|
|
} else {
|
|
|
|
REQUIRE(VALID_REQUEST(resp) || VALID_RESPONSE(resp));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-12-16 00:07:21 +00:00
|
|
|
static void
|
2000-05-10 21:34:50 +00:00
|
|
|
reseed_lfsr(isc_lfsr_t *lfsr, void *arg)
|
|
|
|
{
|
1999-12-16 00:07:21 +00:00
|
|
|
UNUSED(arg);
|
|
|
|
|
|
|
|
lfsr->count = (random() & 0x1f) + 32; /* From 32 to 63 states */
|
|
|
|
|
|
|
|
lfsr->state = random();
|
|
|
|
}
|
|
|
|
|
1999-12-15 03:11:00 +00:00
|
|
|
/*
|
|
|
|
* Return an unpredictable message ID.
|
|
|
|
*/
|
2000-01-07 01:17:47 +00:00
|
|
|
static isc_uint32_t
|
2000-05-10 21:34:50 +00:00
|
|
|
dns_randomid(dns_dispatch_t *disp)
|
|
|
|
{
|
1999-12-15 03:11:00 +00:00
|
|
|
isc_uint32_t id;
|
1999-07-08 02:50:00 +00:00
|
|
|
|
1999-12-16 00:07:21 +00:00
|
|
|
id = isc_lfsr_generate32(&disp->qid_lfsr1, &disp->qid_lfsr2);
|
1999-07-08 02:50:00 +00:00
|
|
|
|
2000-01-07 01:17:47 +00:00
|
|
|
return (id & 0x0000ffffU);
|
1999-12-15 03:11:00 +00:00
|
|
|
}
|
1999-07-08 02:50:00 +00:00
|
|
|
|
2000-01-07 01:17:47 +00:00
|
|
|
/*
|
|
|
|
* Return a hash of the destination and message id.
|
|
|
|
*/
|
|
|
|
static isc_uint32_t
|
2000-05-10 21:34:50 +00:00
|
|
|
dns_hash(dns_dispatch_t *disp, isc_sockaddr_t *dest, isc_uint32_t id)
|
|
|
|
{
|
2000-01-07 01:17:47 +00:00
|
|
|
unsigned int ret;
|
|
|
|
|
|
|
|
ret = isc_sockaddr_hash(dest, ISC_TRUE);
|
|
|
|
ret ^= (id & 0x0000ffff); /* important to mask off garbage bits */
|
|
|
|
ret %= disp->qid_nbuckets;
|
|
|
|
|
|
|
|
INSIST(ret < disp->qid_nbuckets);
|
|
|
|
|
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
static dns_dispatchmethods_t dns_wire_methods = {
|
|
|
|
dns_randomid,
|
|
|
|
dns_hash
|
|
|
|
};
|
|
|
|
|
1999-07-08 02:50:00 +00:00
|
|
|
static dns_dispentry_t *
|
2000-05-10 21:34:50 +00:00
|
|
|
linear_first(dns_dispatch_t *disp)
|
|
|
|
{
|
1999-07-08 02:50:00 +00:00
|
|
|
dns_dispentry_t *ret;
|
|
|
|
unsigned int bucket;
|
|
|
|
|
|
|
|
bucket = 0;
|
|
|
|
|
1999-12-15 17:14:52 +00:00
|
|
|
while (bucket < disp->qid_nbuckets) {
|
1999-07-08 02:50:00 +00:00
|
|
|
ret = ISC_LIST_HEAD(disp->qid_table[bucket]);
|
|
|
|
if (ret != NULL)
|
|
|
|
return (ret);
|
|
|
|
bucket++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static dns_dispentry_t *
|
2000-05-10 21:34:50 +00:00
|
|
|
linear_next(dns_dispatch_t *disp, dns_dispentry_t *resp)
|
|
|
|
{
|
1999-07-08 02:50:00 +00:00
|
|
|
dns_dispentry_t *ret;
|
|
|
|
unsigned int bucket;
|
|
|
|
|
|
|
|
ret = ISC_LIST_NEXT(resp, link);
|
|
|
|
if (ret != NULL)
|
|
|
|
return (ret);
|
|
|
|
|
|
|
|
bucket = resp->bucket;
|
1999-12-15 17:14:52 +00:00
|
|
|
while (bucket < disp->qid_nbuckets) {
|
1999-07-08 02:50:00 +00:00
|
|
|
ret = ISC_LIST_HEAD(disp->qid_table[bucket]);
|
|
|
|
if (ret != NULL)
|
|
|
|
return (ret);
|
|
|
|
bucket++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (NULL);
|
|
|
|
}
|
1999-06-30 01:33:11 +00:00
|
|
|
|
|
|
|
/*
|
2000-05-10 21:34:50 +00:00
|
|
|
* Called when refcount reaches 0 (and safe to destroy).
|
|
|
|
*
|
|
|
|
* The dispatch lock must NOT be locked, and the manager lock MUST be
|
|
|
|
* locked.
|
1999-06-30 01:33:11 +00:00
|
|
|
*/
|
|
|
|
static void
|
2000-05-10 21:34:50 +00:00
|
|
|
destroy_disp(dns_dispatch_t *disp)
|
|
|
|
{
|
1999-07-08 02:50:00 +00:00
|
|
|
dns_dispatchevent_t *ev;
|
2000-05-10 21:34:50 +00:00
|
|
|
dns_dispatchmgr_t *mgr;
|
|
|
|
|
|
|
|
mgr = disp->mgr;
|
|
|
|
disp->mgr = NULL;
|
|
|
|
|
|
|
|
ISC_LIST_UNLINK(mgr->list, disp, link);
|
1999-07-08 02:50:00 +00:00
|
|
|
|
1999-06-30 01:33:11 +00:00
|
|
|
disp->magic = 0;
|
|
|
|
|
1999-07-12 23:44:31 +00:00
|
|
|
dns_tcpmsg_invalidate(&disp->tcpmsg);
|
|
|
|
|
2000-04-29 00:45:26 +00:00
|
|
|
dispatch_log(disp, LVL(90),
|
|
|
|
"shutting down; detaching from sock %p, task %p",
|
|
|
|
disp->socket, disp->task);
|
1999-06-30 01:33:11 +00:00
|
|
|
|
1999-07-08 02:50:00 +00:00
|
|
|
/*
|
|
|
|
* Final cleanup of packets on the request list.
|
|
|
|
*/
|
|
|
|
ev = ISC_LIST_HEAD(disp->rq_events);
|
|
|
|
while (ev != NULL) {
|
2000-04-17 19:22:44 +00:00
|
|
|
ISC_LIST_UNLINK(disp->rq_events, ev, ev_link);
|
1999-07-08 02:50:00 +00:00
|
|
|
free_buffer(disp, ev->buffer.base, ev->buffer.length);
|
|
|
|
free_event(disp, ev);
|
|
|
|
ev = ISC_LIST_HEAD(disp->rq_events);
|
|
|
|
}
|
|
|
|
|
1999-07-09 02:47:55 +00:00
|
|
|
INSIST(disp->buffers == 0);
|
|
|
|
INSIST(disp->requests == 0);
|
|
|
|
INSIST(disp->recvs == 0);
|
|
|
|
|
2000-01-06 23:01:07 +00:00
|
|
|
isc_socket_detach(&disp->socket);
|
|
|
|
isc_task_detach(&disp->task);
|
|
|
|
|
1999-07-08 02:50:00 +00:00
|
|
|
isc_mempool_put(disp->epool, disp->failsafe_ev);
|
|
|
|
disp->failsafe_ev = NULL;
|
|
|
|
|
1999-06-30 01:33:11 +00:00
|
|
|
isc_mempool_destroy(&disp->rpool);
|
|
|
|
isc_mempool_destroy(&disp->bpool);
|
|
|
|
isc_mempool_destroy(&disp->epool);
|
2000-05-10 21:34:50 +00:00
|
|
|
isc_mem_put(mgr->mctx, disp->qid_table,
|
1999-12-15 17:14:52 +00:00
|
|
|
disp->qid_nbuckets * sizeof(dns_displist_t));
|
1999-06-30 01:33:11 +00:00
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
isc_mem_put(mgr->mctx, disp, sizeof(dns_dispatch_t));
|
1999-06-30 01:33:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-07-06 19:32:40 +00:00
|
|
|
static dns_dispentry_t *
|
1999-06-30 01:33:11 +00:00
|
|
|
bucket_search(dns_dispatch_t *disp, isc_sockaddr_t *dest, dns_messageid_t id,
|
|
|
|
unsigned int bucket)
|
|
|
|
{
|
1999-07-06 19:32:40 +00:00
|
|
|
dns_dispentry_t *res;
|
1999-06-30 01:33:11 +00:00
|
|
|
|
1999-12-15 17:14:52 +00:00
|
|
|
REQUIRE(bucket < disp->qid_nbuckets);
|
1999-07-09 20:34:26 +00:00
|
|
|
|
1999-06-30 01:33:11 +00:00
|
|
|
res = ISC_LIST_HEAD(disp->qid_table[bucket]);
|
|
|
|
|
|
|
|
while (res != NULL) {
|
1999-07-06 19:32:40 +00:00
|
|
|
if ((res->id == id) && isc_sockaddr_equal(dest, &res->host))
|
1999-06-30 01:33:11 +00:00
|
|
|
return (res);
|
|
|
|
res = ISC_LIST_NEXT(res, link);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
1999-07-08 02:50:00 +00:00
|
|
|
static void
|
2000-05-10 21:34:50 +00:00
|
|
|
free_buffer(dns_dispatch_t *disp, void *buf, unsigned int len)
|
|
|
|
{
|
1999-07-12 23:44:31 +00:00
|
|
|
isc_sockettype_t socktype;
|
|
|
|
|
1999-07-22 01:34:31 +00:00
|
|
|
INSIST(buf != NULL && len != 0);
|
1999-07-09 02:47:55 +00:00
|
|
|
INSIST(disp->buffers > 0);
|
|
|
|
disp->buffers--;
|
|
|
|
|
1999-07-12 23:44:31 +00:00
|
|
|
socktype = isc_socket_gettype(disp->socket);
|
|
|
|
|
|
|
|
switch (socktype) {
|
1999-07-13 01:49:33 +00:00
|
|
|
case isc_sockettype_tcp:
|
2000-05-10 21:34:50 +00:00
|
|
|
isc_mem_put(disp->mgr->mctx, buf, len);
|
1999-07-12 23:44:31 +00:00
|
|
|
break;
|
1999-07-13 01:49:33 +00:00
|
|
|
case isc_sockettype_udp:
|
1999-07-12 23:44:31 +00:00
|
|
|
if (len == disp->buffersize)
|
|
|
|
isc_mempool_put(disp->bpool, buf);
|
|
|
|
else
|
2000-05-10 21:34:50 +00:00
|
|
|
isc_mem_put(disp->mgr->mctx, buf, len);
|
1999-07-12 23:44:31 +00:00
|
|
|
break;
|
|
|
|
default:
|
1999-07-22 01:34:31 +00:00
|
|
|
INSIST(0);
|
1999-07-12 23:44:31 +00:00
|
|
|
break;
|
|
|
|
}
|
1999-07-08 02:50:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void *
|
2000-05-10 21:34:50 +00:00
|
|
|
allocate_buffer(dns_dispatch_t *disp, unsigned int len)
|
|
|
|
{
|
1999-07-08 02:50:00 +00:00
|
|
|
void *temp;
|
|
|
|
|
|
|
|
INSIST(len > 0);
|
|
|
|
|
|
|
|
if (len == disp->buffersize)
|
|
|
|
temp = isc_mempool_get(disp->bpool);
|
|
|
|
else
|
2000-05-10 21:34:50 +00:00
|
|
|
temp = isc_mem_get(disp->mgr->mctx, len);
|
1999-07-08 02:50:00 +00:00
|
|
|
|
2000-04-29 00:45:26 +00:00
|
|
|
if (temp != NULL)
|
1999-07-09 02:47:55 +00:00
|
|
|
disp->buffers++;
|
|
|
|
|
1999-07-08 02:50:00 +00:00
|
|
|
return (temp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
2000-05-10 21:34:50 +00:00
|
|
|
free_event(dns_dispatch_t *disp, dns_dispatchevent_t *ev)
|
|
|
|
{
|
1999-07-08 02:50:00 +00:00
|
|
|
if (disp->failsafe_ev == ev) {
|
|
|
|
INSIST(disp->shutdown_out == 1);
|
|
|
|
disp->shutdown_out = 0;
|
2000-04-29 00:45:26 +00:00
|
|
|
|
1999-07-08 02:50:00 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
isc_mempool_put(disp->epool, ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline dns_dispatchevent_t *
|
2000-05-10 21:34:50 +00:00
|
|
|
allocate_event(dns_dispatch_t *disp)
|
|
|
|
{
|
1999-07-08 02:50:00 +00:00
|
|
|
dns_dispatchevent_t *ev;
|
|
|
|
|
|
|
|
ev = isc_mempool_get(disp->epool);
|
|
|
|
|
|
|
|
return (ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* General flow:
|
|
|
|
*
|
|
|
|
* If I/O result == CANCELED, free the buffer and notify everyone as
|
|
|
|
* the various queues drain.
|
|
|
|
*
|
|
|
|
* If I/O is error (not canceled and not success) log it, free the buffer,
|
|
|
|
* and restart.
|
|
|
|
*
|
|
|
|
* If query:
|
|
|
|
* if no listeners: free the buffer, restart.
|
|
|
|
* if listener: allocate event, fill in details.
|
|
|
|
* If cannot allocate, free buffer, restart.
|
|
|
|
* if rq event queue is not empty, queue. else, send.
|
|
|
|
* restart.
|
|
|
|
*
|
|
|
|
* If response:
|
|
|
|
* Allocate event, fill in details.
|
|
|
|
* If cannot allocate, free buffer, restart.
|
|
|
|
* find target. If not found, free buffer, restart.
|
|
|
|
* if event queue is not empty, queue. else, send.
|
|
|
|
* restart.
|
|
|
|
*/
|
1999-06-30 01:33:11 +00:00
|
|
|
static void
|
2000-05-10 21:34:50 +00:00
|
|
|
udp_recv(isc_task_t *task, isc_event_t *ev_in)
|
|
|
|
{
|
1999-06-30 01:33:11 +00:00
|
|
|
isc_socketevent_t *ev = (isc_socketevent_t *)ev_in;
|
2000-04-17 19:22:44 +00:00
|
|
|
dns_dispatch_t *disp = ev_in->ev_arg;
|
1999-06-30 01:33:11 +00:00
|
|
|
dns_messageid_t id;
|
1999-07-22 01:34:31 +00:00
|
|
|
isc_result_t dres;
|
1999-06-30 01:33:11 +00:00
|
|
|
isc_buffer_t source;
|
|
|
|
unsigned int flags;
|
1999-07-08 02:50:00 +00:00
|
|
|
dns_dispentry_t *resp;
|
|
|
|
dns_dispatchevent_t *rev;
|
|
|
|
unsigned int bucket;
|
1999-07-09 00:51:08 +00:00
|
|
|
isc_boolean_t killit;
|
1999-07-09 01:57:55 +00:00
|
|
|
isc_boolean_t queue_request;
|
|
|
|
isc_boolean_t queue_response;
|
1999-06-30 01:33:11 +00:00
|
|
|
|
2000-04-17 19:22:44 +00:00
|
|
|
UNUSED(task);
|
1999-06-30 01:33:11 +00:00
|
|
|
|
|
|
|
LOCK(&disp->lock);
|
|
|
|
|
2000-04-29 00:45:26 +00:00
|
|
|
dispatch_log(disp, LVL(90),
|
|
|
|
"Got packet: requests %d, buffers %d, recvs %d",
|
|
|
|
disp->requests, disp->buffers, disp->recvs);
|
1999-07-22 01:34:31 +00:00
|
|
|
|
1999-07-08 22:12:37 +00:00
|
|
|
INSIST(disp->recvs > 0);
|
|
|
|
disp->recvs--;
|
|
|
|
|
2000-02-02 23:29:47 +00:00
|
|
|
if (disp->refcount == 0) {
|
|
|
|
/*
|
|
|
|
* This dispatcher is shutting down.
|
|
|
|
*/
|
|
|
|
free_buffer(disp, ev->region.base, ev->region.length);
|
|
|
|
|
|
|
|
killit = ISC_FALSE;
|
|
|
|
if (disp->recvs == 0 && disp->refcount == 0)
|
|
|
|
killit = ISC_TRUE;
|
|
|
|
|
|
|
|
UNLOCK(&disp->lock);
|
|
|
|
|
|
|
|
if (killit)
|
2000-05-10 21:34:50 +00:00
|
|
|
destroy_disp(disp);
|
2000-02-02 23:29:47 +00:00
|
|
|
|
|
|
|
isc_event_free(&ev_in);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1999-06-30 01:33:11 +00:00
|
|
|
if (ev->result != ISC_R_SUCCESS) {
|
2000-02-02 23:29:47 +00:00
|
|
|
free_buffer(disp, ev->region.base, ev->region.length);
|
|
|
|
|
1999-06-30 01:33:11 +00:00
|
|
|
/*
|
|
|
|
* If the recv() was canceled pass the word on.
|
|
|
|
*/
|
|
|
|
if (ev->result == ISC_R_CANCELED) {
|
1999-07-09 00:51:08 +00:00
|
|
|
UNLOCK(&disp->lock);
|
|
|
|
isc_event_free(&ev_in);
|
1999-06-30 01:33:11 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* otherwise, on strange error, log it and restart.
|
1999-07-06 19:32:40 +00:00
|
|
|
* XXXMLG
|
1999-06-30 01:33:11 +00:00
|
|
|
*/
|
|
|
|
goto restart;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Peek into the buffer to see what we can see.
|
|
|
|
*/
|
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_init(&source, ev->region.base, ev->region.length);
|
1999-07-08 22:12:37 +00:00
|
|
|
isc_buffer_add(&source, ev->n);
|
1999-06-30 01:33:11 +00:00
|
|
|
dres = dns_message_peekheader(&source, &id, &flags);
|
2000-04-06 22:03:35 +00:00
|
|
|
if (dres != ISC_R_SUCCESS) {
|
1999-07-08 02:50:00 +00:00
|
|
|
free_buffer(disp, ev->region.base, ev->region.length);
|
2000-04-29 00:45:26 +00:00
|
|
|
dispatch_log(disp, LVL(10), "Got garbage packet");
|
1999-06-30 01:33:11 +00:00
|
|
|
goto restart;
|
|
|
|
}
|
|
|
|
|
2000-04-29 00:45:26 +00:00
|
|
|
dispatch_log(disp, LVL(92),
|
|
|
|
"Got valid DNS message header, /QR %c, id %u",
|
|
|
|
((flags & DNS_MESSAGEFLAG_QR) ? '1' : '0'), id);
|
1999-07-08 22:12:37 +00:00
|
|
|
|
1999-06-30 01:33:11 +00:00
|
|
|
/*
|
|
|
|
* Look at flags. If query, check to see if we have someone handling
|
|
|
|
* them. If response, look to see where it goes.
|
|
|
|
*/
|
1999-07-09 01:57:55 +00:00
|
|
|
queue_request = ISC_FALSE;
|
|
|
|
queue_response = ISC_FALSE;
|
1999-07-06 19:32:40 +00:00
|
|
|
if ((flags & DNS_MESSAGEFLAG_QR) == 0) {
|
1999-07-08 02:50:00 +00:00
|
|
|
resp = ISC_LIST_HEAD(disp->rq_handlers);
|
1999-07-09 01:57:55 +00:00
|
|
|
while (resp != NULL) {
|
|
|
|
if (resp->item_out == ISC_FALSE)
|
|
|
|
break;
|
|
|
|
resp = ISC_LIST_NEXT(resp, link);
|
1999-07-08 02:50:00 +00:00
|
|
|
}
|
1999-07-09 01:57:55 +00:00
|
|
|
if (resp == NULL)
|
|
|
|
queue_request = ISC_TRUE;
|
1999-07-08 02:50:00 +00:00
|
|
|
rev = allocate_event(disp);
|
|
|
|
if (rev == NULL) {
|
|
|
|
free_buffer(disp, ev->region.base, ev->region.length);
|
|
|
|
goto restart;
|
|
|
|
}
|
|
|
|
/* query */
|
1999-07-06 19:32:40 +00:00
|
|
|
} else {
|
1999-07-08 02:50:00 +00:00
|
|
|
/* response */
|
2000-01-07 01:17:47 +00:00
|
|
|
bucket = disp->methods.hash(disp, &ev->address, id);
|
1999-07-08 02:50:00 +00:00
|
|
|
resp = bucket_search(disp, &ev->address, id, bucket);
|
2000-04-29 00:45:26 +00:00
|
|
|
dispatch_log(disp, LVL(90),
|
|
|
|
"Search for response in bucket %d: %s",
|
|
|
|
bucket, (resp == NULL ? "NOT FOUND" : "FOUND"));
|
1999-07-09 20:32:12 +00:00
|
|
|
|
1999-07-08 02:50:00 +00:00
|
|
|
if (resp == NULL) {
|
|
|
|
free_buffer(disp, ev->region.base, ev->region.length);
|
|
|
|
goto restart;
|
|
|
|
}
|
1999-07-09 01:57:55 +00:00
|
|
|
queue_response = resp->item_out;
|
1999-07-08 22:12:37 +00:00
|
|
|
rev = allocate_event(disp);
|
|
|
|
if (rev == NULL) {
|
|
|
|
free_buffer(disp, ev->region.base, ev->region.length);
|
|
|
|
goto restart;
|
|
|
|
}
|
1999-07-06 19:32:40 +00:00
|
|
|
}
|
1999-06-30 01:33:11 +00:00
|
|
|
|
1999-07-08 22:12:37 +00:00
|
|
|
/*
|
|
|
|
* At this point, rev contains the event we want to fill in, and
|
|
|
|
* resp contains the information on the place to send it to.
|
|
|
|
* Send the event off.
|
|
|
|
*/
|
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_init(&rev->buffer, ev->region.base, ev->region.length);
|
1999-07-08 22:12:37 +00:00
|
|
|
isc_buffer_add(&rev->buffer, ev->n);
|
2000-04-06 22:03:35 +00:00
|
|
|
rev->result = ISC_R_SUCCESS;
|
1999-07-09 00:51:08 +00:00
|
|
|
rev->id = id;
|
|
|
|
rev->addr = ev->address;
|
2000-04-17 19:22:44 +00:00
|
|
|
rev->pktinfo = ev->pktinfo;
|
|
|
|
rev->attributes = ev->attributes;
|
1999-07-09 01:57:55 +00:00
|
|
|
if (queue_request) {
|
2000-04-17 19:22:44 +00:00
|
|
|
ISC_LIST_APPEND(disp->rq_events, rev, ev_link);
|
1999-07-09 01:57:55 +00:00
|
|
|
} else if (queue_response) {
|
2000-04-17 19:22:44 +00:00
|
|
|
ISC_LIST_APPEND(resp->items, rev, ev_link);
|
1999-07-09 01:57:55 +00:00
|
|
|
} else {
|
2000-04-17 19:22:44 +00:00
|
|
|
ISC_EVENT_INIT(rev, sizeof(*rev), 0, NULL,
|
2000-03-14 03:30:52 +00:00
|
|
|
DNS_EVENT_DISPATCH,
|
1999-07-09 01:57:55 +00:00
|
|
|
resp->action, resp->arg, resp, NULL, NULL);
|
2000-04-29 00:45:26 +00:00
|
|
|
request_log(disp, resp, LVL(90),
|
|
|
|
"[a] Sent event %p buffer %p len %d to task %p",
|
|
|
|
rev, rev->buffer.base, rev->buffer.length,
|
|
|
|
resp->task);
|
1999-07-09 01:57:55 +00:00
|
|
|
resp->item_out = ISC_TRUE;
|
1999-09-23 21:31:03 +00:00
|
|
|
isc_task_send(resp->task, (isc_event_t **)&rev);
|
1999-07-09 01:57:55 +00:00
|
|
|
}
|
1999-07-08 22:12:37 +00:00
|
|
|
|
1999-06-30 01:33:11 +00:00
|
|
|
/*
|
1999-07-06 19:32:40 +00:00
|
|
|
* Restart recv() to get the next packet.
|
1999-06-30 01:33:11 +00:00
|
|
|
*/
|
|
|
|
restart:
|
1999-07-08 02:50:00 +00:00
|
|
|
startrecv(disp);
|
1999-06-30 01:33:11 +00:00
|
|
|
|
|
|
|
UNLOCK(&disp->lock);
|
|
|
|
|
|
|
|
isc_event_free(&ev_in);
|
|
|
|
}
|
|
|
|
|
1999-07-12 23:44:31 +00:00
|
|
|
/*
|
|
|
|
* General flow:
|
|
|
|
*
|
|
|
|
* If I/O result == CANCELED, free the buffer and notify everyone as
|
|
|
|
* the various queues drain.
|
|
|
|
*
|
|
|
|
* If I/O is error (not canceled and not success) log it, free the buffer,
|
|
|
|
* and restart.
|
|
|
|
*
|
|
|
|
* If query:
|
|
|
|
* if no listeners: free the buffer, restart.
|
|
|
|
* if listener: allocate event, fill in details.
|
|
|
|
* If cannot allocate, free buffer, restart.
|
|
|
|
* if rq event queue is not empty, queue. else, send.
|
|
|
|
* restart.
|
|
|
|
*
|
|
|
|
* If response:
|
|
|
|
* Allocate event, fill in details.
|
|
|
|
* If cannot allocate, free buffer, restart.
|
|
|
|
* find target. If not found, free buffer, restart.
|
|
|
|
* if event queue is not empty, queue. else, send.
|
|
|
|
* restart.
|
|
|
|
*/
|
|
|
|
static void
|
2000-05-10 21:34:50 +00:00
|
|
|
tcp_recv(isc_task_t *task, isc_event_t *ev_in)
|
|
|
|
{
|
2000-04-17 19:22:44 +00:00
|
|
|
dns_dispatch_t *disp = ev_in->ev_arg;
|
1999-07-12 23:44:31 +00:00
|
|
|
dns_tcpmsg_t *tcpmsg = &disp->tcpmsg;
|
|
|
|
dns_messageid_t id;
|
1999-07-22 01:34:31 +00:00
|
|
|
isc_result_t dres;
|
1999-07-12 23:44:31 +00:00
|
|
|
unsigned int flags;
|
|
|
|
dns_dispentry_t *resp;
|
|
|
|
dns_dispatchevent_t *rev;
|
|
|
|
unsigned int bucket;
|
|
|
|
isc_boolean_t killit;
|
|
|
|
isc_boolean_t queue_request;
|
|
|
|
isc_boolean_t queue_response;
|
|
|
|
|
2000-04-17 19:22:44 +00:00
|
|
|
UNUSED(task);
|
1999-07-12 23:44:31 +00:00
|
|
|
|
1999-11-16 21:05:09 +00:00
|
|
|
REQUIRE(VALID_DISPATCH(disp));
|
|
|
|
|
2000-04-29 00:45:26 +00:00
|
|
|
dispatch_log(disp, LVL(90),
|
|
|
|
"Got TCP packet: requests %d, buffers %d, recvs %d",
|
|
|
|
disp->requests, disp->buffers, disp->recvs);
|
1999-07-12 23:44:31 +00:00
|
|
|
|
|
|
|
LOCK(&disp->lock);
|
|
|
|
|
|
|
|
INSIST(disp->recvs > 0);
|
|
|
|
disp->recvs--;
|
|
|
|
|
2000-02-02 23:29:47 +00:00
|
|
|
if (disp->refcount == 0) {
|
|
|
|
/*
|
|
|
|
* This dispatcher is shutting down. Force cancelation.
|
|
|
|
*/
|
|
|
|
tcpmsg->result = ISC_R_CANCELED;
|
|
|
|
}
|
|
|
|
|
1999-07-12 23:44:31 +00:00
|
|
|
switch (tcpmsg->result) {
|
|
|
|
case ISC_R_SUCCESS:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ISC_R_EOF:
|
2000-04-29 00:45:26 +00:00
|
|
|
dispatch_log(disp, LVL(90), "Shutting down on EOF");
|
1999-07-12 23:44:31 +00:00
|
|
|
disp->shutdown_why = ISC_R_EOF;
|
|
|
|
disp->shutting_down = 1;
|
|
|
|
do_cancel(disp, NULL);
|
|
|
|
/* FALLTHROUGH */
|
2000-04-29 00:45:26 +00:00
|
|
|
|
1999-07-12 23:44:31 +00:00
|
|
|
case ISC_R_CANCELED:
|
|
|
|
/*
|
|
|
|
* If the recv() was canceled pass the word on.
|
|
|
|
*/
|
|
|
|
killit = ISC_FALSE;
|
|
|
|
if (disp->recvs == 0 && disp->refcount == 0)
|
|
|
|
killit = ISC_TRUE;
|
|
|
|
|
|
|
|
UNLOCK(&disp->lock);
|
|
|
|
|
1999-11-16 21:05:09 +00:00
|
|
|
/*
|
|
|
|
* The event is statically allocated in the tcpmsg
|
2000-05-10 21:34:50 +00:00
|
|
|
* structure, and destroy_disp() frees the tcpmsg, so we must
|
|
|
|
* free the event *before* calling destroy_disp().
|
1999-11-16 21:05:09 +00:00
|
|
|
*/
|
|
|
|
isc_event_free(&ev_in);
|
|
|
|
|
1999-07-12 23:44:31 +00:00
|
|
|
if (killit)
|
2000-05-10 21:34:50 +00:00
|
|
|
destroy_disp(disp);
|
1999-07-12 23:44:31 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/*
|
|
|
|
* otherwise, on strange error, log it and restart.
|
|
|
|
* XXXMLG
|
|
|
|
*/
|
|
|
|
goto restart;
|
|
|
|
}
|
|
|
|
|
2000-04-29 00:45:26 +00:00
|
|
|
dispatch_log(disp, LVL(90), "result %d, length == %d, addr = %p",
|
|
|
|
tcpmsg->result,
|
|
|
|
tcpmsg->buffer.length, tcpmsg->buffer.base);
|
1999-07-12 23:44:31 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Peek into the buffer to see what we can see.
|
|
|
|
*/
|
|
|
|
dres = dns_message_peekheader(&tcpmsg->buffer, &id, &flags);
|
2000-04-06 22:03:35 +00:00
|
|
|
if (dres != ISC_R_SUCCESS) {
|
2000-04-29 00:45:26 +00:00
|
|
|
dispatch_log(disp, LVL(10), "Got garbage packet");
|
1999-07-12 23:44:31 +00:00
|
|
|
goto restart;
|
|
|
|
}
|
|
|
|
|
2000-04-29 00:45:26 +00:00
|
|
|
dispatch_log(disp, LVL(92),
|
|
|
|
"Got valid DNS message header, /QR %c, id %u",
|
|
|
|
((flags & DNS_MESSAGEFLAG_QR) ? '1' : '0'), id);
|
1999-07-12 23:44:31 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate an event to send to the query or response client, and
|
|
|
|
* allocate a new buffer for our use.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Look at flags. If query, check to see if we have someone handling
|
|
|
|
* them. If response, look to see where it goes.
|
|
|
|
*/
|
|
|
|
queue_request = ISC_FALSE;
|
|
|
|
queue_response = ISC_FALSE;
|
|
|
|
if ((flags & DNS_MESSAGEFLAG_QR) == 0) {
|
|
|
|
resp = ISC_LIST_HEAD(disp->rq_handlers);
|
|
|
|
while (resp != NULL) {
|
|
|
|
if (resp->item_out == ISC_FALSE)
|
|
|
|
break;
|
|
|
|
resp = ISC_LIST_NEXT(resp, link);
|
|
|
|
}
|
|
|
|
if (resp == NULL)
|
|
|
|
queue_request = ISC_TRUE;
|
|
|
|
rev = allocate_event(disp);
|
|
|
|
if (rev == NULL)
|
|
|
|
goto restart;
|
|
|
|
/* query */
|
|
|
|
} else {
|
|
|
|
/* response */
|
2000-01-07 01:17:47 +00:00
|
|
|
bucket = disp->methods.hash(disp, &tcpmsg->address, id);
|
1999-07-12 23:44:31 +00:00
|
|
|
resp = bucket_search(disp, &tcpmsg->address, id, bucket);
|
2000-04-29 00:45:26 +00:00
|
|
|
dispatch_log(disp, LVL(90),
|
|
|
|
"Search for response in bucket %d: %s",
|
|
|
|
bucket, (resp == NULL ? "NOT FOUND" : "FOUND"));
|
1999-07-12 23:44:31 +00:00
|
|
|
|
|
|
|
if (resp == NULL)
|
|
|
|
goto restart;
|
|
|
|
queue_response = resp->item_out;
|
|
|
|
rev = allocate_event(disp);
|
|
|
|
if (rev == NULL)
|
|
|
|
goto restart;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* At this point, rev contains the event we want to fill in, and
|
|
|
|
* resp contains the information on the place to send it to.
|
|
|
|
* Send the event off.
|
|
|
|
*/
|
|
|
|
dns_tcpmsg_keepbuffer(tcpmsg, &rev->buffer);
|
|
|
|
disp->buffers++;
|
2000-04-06 22:03:35 +00:00
|
|
|
rev->result = ISC_R_SUCCESS;
|
1999-07-12 23:44:31 +00:00
|
|
|
rev->id = id;
|
|
|
|
rev->addr = tcpmsg->address;
|
|
|
|
if (queue_request) {
|
2000-04-17 19:22:44 +00:00
|
|
|
ISC_LIST_APPEND(disp->rq_events, rev, ev_link);
|
1999-07-12 23:44:31 +00:00
|
|
|
} else if (queue_response) {
|
2000-04-17 19:22:44 +00:00
|
|
|
ISC_LIST_APPEND(resp->items, rev, ev_link);
|
1999-07-12 23:44:31 +00:00
|
|
|
} else {
|
|
|
|
ISC_EVENT_INIT(rev, sizeof(*rev), 0, NULL, DNS_EVENT_DISPATCH,
|
|
|
|
resp->action, resp->arg, resp, NULL, NULL);
|
2000-04-29 00:45:26 +00:00
|
|
|
request_log(disp, resp, LVL(90),
|
|
|
|
"[b] Sent event %p buffer %p len %d to task %p",
|
|
|
|
rev, rev->buffer.base, rev->buffer.length,
|
|
|
|
resp->task);
|
1999-07-12 23:44:31 +00:00
|
|
|
resp->item_out = ISC_TRUE;
|
1999-09-23 21:31:03 +00:00
|
|
|
isc_task_send(resp->task, (isc_event_t **)&rev);
|
1999-07-12 23:44:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Restart recv() to get the next packet.
|
|
|
|
*/
|
|
|
|
restart:
|
|
|
|
startrecv(disp);
|
|
|
|
|
|
|
|
UNLOCK(&disp->lock);
|
|
|
|
|
|
|
|
isc_event_free(&ev_in);
|
|
|
|
}
|
|
|
|
|
1999-06-30 01:33:11 +00:00
|
|
|
/*
|
2000-05-08 14:38:29 +00:00
|
|
|
* disp must be locked.
|
1999-06-30 01:33:11 +00:00
|
|
|
*/
|
1999-07-08 02:50:00 +00:00
|
|
|
static void
|
2000-05-10 21:34:50 +00:00
|
|
|
startrecv(dns_dispatch_t *disp)
|
|
|
|
{
|
1999-06-30 01:33:11 +00:00
|
|
|
isc_sockettype_t socktype;
|
|
|
|
isc_result_t res;
|
|
|
|
isc_region_t region;
|
1999-07-09 00:51:08 +00:00
|
|
|
unsigned int wanted;
|
1999-06-30 01:33:11 +00:00
|
|
|
|
1999-07-08 02:50:00 +00:00
|
|
|
if (disp->shutting_down == 1)
|
|
|
|
return;
|
|
|
|
|
1999-07-09 00:51:08 +00:00
|
|
|
wanted = ISC_MIN(disp->recvs_wanted, disp->requests + 2);
|
|
|
|
if (wanted == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (disp->recvs >= wanted)
|
1999-07-08 02:50:00 +00:00
|
|
|
return;
|
|
|
|
|
1999-07-09 02:47:55 +00:00
|
|
|
if (disp->buffers >= disp->maxbuffers)
|
|
|
|
return;
|
1999-07-08 22:12:37 +00:00
|
|
|
|
1999-06-30 01:33:11 +00:00
|
|
|
socktype = isc_socket_gettype(disp->socket);
|
|
|
|
|
1999-07-09 00:51:08 +00:00
|
|
|
while (disp->recvs < wanted) {
|
1999-07-08 02:50:00 +00:00
|
|
|
switch (socktype) {
|
|
|
|
/*
|
|
|
|
* UDP reads are always maximal.
|
|
|
|
*/
|
1999-07-13 01:49:33 +00:00
|
|
|
case isc_sockettype_udp:
|
1999-07-08 02:50:00 +00:00
|
|
|
region.length = disp->buffersize;
|
|
|
|
region.base = allocate_buffer(disp, disp->buffersize);
|
|
|
|
if (region.base == NULL)
|
|
|
|
return;
|
1999-07-28 21:30:37 +00:00
|
|
|
res = isc_socket_recv(disp->socket, ®ion, 1,
|
1999-07-08 02:50:00 +00:00
|
|
|
disp->task, udp_recv, disp);
|
|
|
|
if (res != ISC_R_SUCCESS) {
|
|
|
|
disp->shutdown_why = res;
|
1999-07-22 01:34:31 +00:00
|
|
|
disp->shutting_down = 1;
|
1999-07-08 02:50:00 +00:00
|
|
|
do_cancel(disp, NULL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
disp->recvs++;
|
|
|
|
break;
|
1999-06-30 01:33:11 +00:00
|
|
|
|
1999-07-13 01:49:33 +00:00
|
|
|
case isc_sockettype_tcp:
|
1999-07-12 23:44:31 +00:00
|
|
|
res = dns_tcpmsg_readmessage(&disp->tcpmsg,
|
|
|
|
disp->task, tcp_recv,
|
|
|
|
disp);
|
|
|
|
if (res != ISC_R_SUCCESS) {
|
|
|
|
disp->shutdown_why = res;
|
1999-07-22 01:34:31 +00:00
|
|
|
disp->shutting_down = 1;
|
1999-07-12 23:44:31 +00:00
|
|
|
do_cancel(disp, NULL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
disp->recvs++;
|
1999-07-08 02:50:00 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1999-06-30 01:33:11 +00:00
|
|
|
}
|
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
/*
|
|
|
|
* Mgr must be locked when calling this function.
|
|
|
|
*/
|
|
|
|
static isc_boolean_t
|
|
|
|
destroy_mgr_ok(dns_dispatchmgr_t *mgr)
|
|
|
|
{
|
|
|
|
if (!MGR_IS_SHUTTINGDOWN(mgr))
|
|
|
|
return (ISC_FALSE);
|
|
|
|
if (!ISC_LIST_EMPTY(mgr->list))
|
|
|
|
return (ISC_FALSE);
|
|
|
|
|
|
|
|
return (ISC_TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Mgr must be unlocked when calling this function.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
destroy_mgr(dns_dispatchmgr_t **mgrp)
|
|
|
|
{
|
|
|
|
isc_mem_t *mctx;
|
|
|
|
dns_dispatchmgr_t *mgr;
|
|
|
|
|
|
|
|
mgr = *mgrp;
|
|
|
|
*mgrp = NULL;
|
|
|
|
|
|
|
|
mctx = mgr->mctx;
|
|
|
|
|
|
|
|
mgr->magic = 0;
|
|
|
|
mgr->mctx = 0;
|
|
|
|
isc_mutex_destroy(&mgr->lock);
|
|
|
|
mgr->state = 0;
|
|
|
|
|
|
|
|
isc_mem_put(mctx, mgr, sizeof(dns_dispatchmgr_t));
|
|
|
|
isc_mem_detach(&mctx);
|
|
|
|
}
|
|
|
|
|
1999-06-30 01:33:11 +00:00
|
|
|
/*
|
|
|
|
* Publics.
|
|
|
|
*/
|
|
|
|
|
1999-07-22 01:34:31 +00:00
|
|
|
isc_result_t
|
2000-05-10 21:34:50 +00:00
|
|
|
dns_dispatchmgr_create(isc_mem_t *mctx, dns_dispatchmgr_t **mgrp)
|
|
|
|
{
|
|
|
|
dns_dispatchmgr_t *mgr;
|
|
|
|
isc_result_t result;
|
|
|
|
|
|
|
|
REQUIRE(mctx != NULL);
|
|
|
|
REQUIRE(mgrp != NULL && *mgrp == NULL);
|
|
|
|
|
|
|
|
mgr = isc_mem_get(mctx, sizeof(dns_dispatchmgr_t));
|
|
|
|
if (mgr == NULL)
|
|
|
|
return (ISC_R_NOMEMORY);
|
|
|
|
|
|
|
|
result = isc_mutex_init(&mgr->lock);
|
|
|
|
if (result != ISC_R_SUCCESS) {
|
|
|
|
isc_mem_put(mctx, mgr, sizeof(dns_dispatchmgr_t));
|
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
|
|
|
mgr->magic = DNS_DISPATCHMGR_MAGIC;
|
|
|
|
mgr->state = 0;
|
|
|
|
mgr->mctx = NULL;
|
|
|
|
isc_mem_attach(mctx, &mgr->mctx);
|
|
|
|
ISC_LIST_INIT(mgr->list);
|
|
|
|
|
|
|
|
*mgrp = mgr;
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
dns_dispatchmgr_destroy(dns_dispatchmgr_t **mgrp)
|
|
|
|
{
|
|
|
|
dns_dispatchmgr_t *mgr;
|
|
|
|
isc_boolean_t killit;
|
|
|
|
|
|
|
|
REQUIRE(mgrp != NULL);
|
|
|
|
REQUIRE(VALID_DISPATCHMGR(*mgrp));
|
|
|
|
|
|
|
|
mgr = *mgrp;
|
|
|
|
*mgrp = NULL;
|
|
|
|
|
|
|
|
LOCK(&mgr->lock);
|
|
|
|
mgr->state |= MGR_SHUTTINGDOWN;
|
|
|
|
killit = destroy_mgr_ok(mgr);
|
|
|
|
UNLOCK(&mgr->lock);
|
|
|
|
|
|
|
|
if (killit)
|
|
|
|
destroy_mgr(&mgr);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define ATTRMATCH(_a1, _a2, _mask) (((_a1) & (_mask)) == ((_a2) & (_mask)))
|
|
|
|
|
|
|
|
isc_result_t
|
|
|
|
dns_dispatchmgr_find(dns_dispatchmgr_t *mgr, unsigned int attributes,
|
|
|
|
unsigned int mask, dns_dispatch_t **dispp)
|
|
|
|
{
|
|
|
|
dns_dispatch_t *disp;
|
|
|
|
isc_result_t result;
|
|
|
|
|
|
|
|
REQUIRE(VALID_DISPATCHMGR(mgr));
|
|
|
|
REQUIRE(dispp != NULL && *dispp == NULL);
|
|
|
|
|
|
|
|
LOCK(&mgr->lock);
|
|
|
|
disp = ISC_LIST_HEAD(mgr->list);
|
|
|
|
while (disp != NULL) {
|
|
|
|
if (!IS_PRIVATE(disp)
|
|
|
|
&& ATTRMATCH(disp->attributes, attributes, mask))
|
|
|
|
break;
|
|
|
|
disp = ISC_LIST_NEXT(disp, link);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (disp == NULL) {
|
|
|
|
result = ISC_R_NOTFOUND;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
dns_dispatch_attach(disp, dispp);
|
|
|
|
|
|
|
|
result = ISC_R_SUCCESS;
|
|
|
|
|
|
|
|
out:
|
|
|
|
UNLOCK(&mgr->lock);
|
|
|
|
|
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
isc_result_t
|
|
|
|
dns_dispatch_create(dns_dispatchmgr_t *mgr, isc_socket_t *sock,
|
|
|
|
isc_task_t *task, unsigned int maxbuffersize,
|
1999-06-18 23:54:59 +00:00
|
|
|
unsigned int maxbuffers, unsigned int maxrequests,
|
1999-12-15 17:14:52 +00:00
|
|
|
unsigned int buckets, unsigned int increment,
|
2000-05-10 21:34:50 +00:00
|
|
|
dns_dispatchmethods_t *methods, unsigned int attributes,
|
1999-07-10 00:15:41 +00:00
|
|
|
dns_dispatch_t **dispp)
|
1999-06-16 01:32:31 +00:00
|
|
|
{
|
1999-06-18 23:54:59 +00:00
|
|
|
dns_dispatch_t *disp;
|
1999-07-22 01:34:31 +00:00
|
|
|
isc_result_t res;
|
1999-06-30 01:33:11 +00:00
|
|
|
isc_sockettype_t socktype;
|
1999-07-09 00:51:08 +00:00
|
|
|
unsigned int i;
|
1999-06-18 02:01:42 +00:00
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
REQUIRE(VALID_DISPATCHMGR(mgr));
|
1999-06-18 23:54:59 +00:00
|
|
|
REQUIRE(sock != NULL);
|
|
|
|
REQUIRE(task != NULL);
|
1999-12-15 17:14:52 +00:00
|
|
|
REQUIRE(buckets < 2097169); /* next prime > 65536 * 32 */
|
|
|
|
REQUIRE(increment > buckets);
|
1999-07-06 19:32:40 +00:00
|
|
|
REQUIRE(maxbuffersize >= 512 && maxbuffersize < (64 * 1024));
|
1999-06-18 23:54:59 +00:00
|
|
|
REQUIRE(maxbuffers > 0);
|
|
|
|
REQUIRE(dispp != NULL && *dispp == NULL);
|
1999-06-18 02:01:42 +00:00
|
|
|
|
1999-06-30 01:33:11 +00:00
|
|
|
socktype = isc_socket_gettype(sock);
|
1999-07-13 01:49:33 +00:00
|
|
|
REQUIRE(socktype == isc_sockettype_udp ||
|
|
|
|
socktype == isc_sockettype_tcp);
|
1999-06-30 01:33:11 +00:00
|
|
|
|
2000-04-06 22:03:35 +00:00
|
|
|
res = ISC_R_SUCCESS;
|
1999-06-18 02:01:42 +00:00
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
disp = isc_mem_get(mgr->mctx, sizeof(dns_dispatch_t));
|
1999-06-18 23:54:59 +00:00
|
|
|
if (disp == NULL)
|
2000-04-06 22:03:35 +00:00
|
|
|
return (ISC_R_NOMEMORY);
|
1999-06-18 02:01:42 +00:00
|
|
|
|
1999-06-18 23:54:59 +00:00
|
|
|
disp->magic = 0;
|
|
|
|
disp->buffersize = maxbuffersize;
|
1999-07-09 02:47:55 +00:00
|
|
|
disp->maxrequests = maxrequests;
|
|
|
|
disp->maxbuffers = maxbuffers;
|
2000-05-10 21:34:50 +00:00
|
|
|
disp->attributes = attributes;
|
|
|
|
ISC_LINK_INIT(disp, link);
|
1999-06-18 23:54:59 +00:00
|
|
|
disp->refcount = 1;
|
1999-07-08 02:50:00 +00:00
|
|
|
disp->recvs = 0;
|
1999-07-13 01:49:33 +00:00
|
|
|
if (socktype == isc_sockettype_udp) {
|
1999-07-09 02:47:55 +00:00
|
|
|
disp->recvs_wanted = 4; /* XXXMLG config option */
|
1999-07-10 00:15:41 +00:00
|
|
|
} else {
|
1999-07-09 00:51:08 +00:00
|
|
|
disp->recvs_wanted = 1;
|
1999-07-10 00:15:41 +00:00
|
|
|
}
|
1999-07-08 02:50:00 +00:00
|
|
|
disp->shutting_down = 0;
|
|
|
|
disp->shutdown_out = 0;
|
|
|
|
disp->shutdown_why = ISC_R_UNEXPECTED;
|
1999-07-09 00:51:08 +00:00
|
|
|
disp->requests = 0;
|
1999-07-09 02:47:55 +00:00
|
|
|
disp->buffers = 0;
|
1999-07-06 19:32:40 +00:00
|
|
|
ISC_LIST_INIT(disp->rq_handlers);
|
|
|
|
ISC_LIST_INIT(disp->rq_events);
|
1999-06-18 23:54:59 +00:00
|
|
|
|
2000-01-07 01:17:47 +00:00
|
|
|
if (methods == NULL)
|
|
|
|
disp->methods = dns_wire_methods;
|
|
|
|
else
|
|
|
|
disp->methods = *methods;
|
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
disp->qid_table = isc_mem_get(mgr->mctx,
|
1999-12-15 17:14:52 +00:00
|
|
|
buckets * sizeof(dns_displist_t));
|
1999-06-18 23:54:59 +00:00
|
|
|
if (disp->qid_table == NULL) {
|
2000-04-06 22:03:35 +00:00
|
|
|
res = ISC_R_NOMEMORY;
|
1999-06-18 23:54:59 +00:00
|
|
|
goto out1;
|
|
|
|
}
|
|
|
|
|
1999-12-15 17:14:52 +00:00
|
|
|
for (i = 0 ; i < buckets ; i++)
|
1999-07-09 00:51:08 +00:00
|
|
|
ISC_LIST_INIT(disp->qid_table[i]);
|
|
|
|
|
1999-12-15 17:14:52 +00:00
|
|
|
disp->qid_nbuckets = buckets;
|
|
|
|
disp->qid_increment = increment;
|
1999-06-18 23:54:59 +00:00
|
|
|
|
|
|
|
if (isc_mutex_init(&disp->lock) != ISC_R_SUCCESS) {
|
2000-04-06 22:03:35 +00:00
|
|
|
res = ISC_R_UNEXPECTED;
|
1999-06-18 23:54:59 +00:00
|
|
|
UNEXPECTED_ERROR(__FILE__, __LINE__, "isc_mutex_init failed");
|
|
|
|
goto out2;
|
|
|
|
}
|
|
|
|
|
1999-07-08 22:12:37 +00:00
|
|
|
disp->epool = NULL;
|
2000-05-10 21:34:50 +00:00
|
|
|
if (isc_mempool_create(mgr->mctx, sizeof(dns_dispatchevent_t),
|
1999-06-18 23:54:59 +00:00
|
|
|
&disp->epool) != ISC_R_SUCCESS) {
|
2000-04-06 22:03:35 +00:00
|
|
|
res = ISC_R_NOMEMORY;
|
1999-06-18 23:54:59 +00:00
|
|
|
goto out3;
|
|
|
|
}
|
1999-10-22 05:18:35 +00:00
|
|
|
isc_mempool_setname(disp->epool, "disp_epool");
|
1999-06-18 23:54:59 +00:00
|
|
|
|
1999-07-08 22:12:37 +00:00
|
|
|
disp->bpool = NULL;
|
2000-05-10 21:34:50 +00:00
|
|
|
if (isc_mempool_create(mgr->mctx, maxbuffersize,
|
1999-06-18 23:54:59 +00:00
|
|
|
&disp->bpool) != ISC_R_SUCCESS) {
|
2000-04-06 22:03:35 +00:00
|
|
|
res = ISC_R_NOMEMORY;
|
1999-06-18 23:54:59 +00:00
|
|
|
goto out4;
|
|
|
|
}
|
1999-07-09 02:47:55 +00:00
|
|
|
isc_mempool_setmaxalloc(disp->bpool, maxbuffers);
|
1999-10-22 05:18:35 +00:00
|
|
|
isc_mempool_setname(disp->bpool, "disp_bpool");
|
1999-06-18 23:54:59 +00:00
|
|
|
|
1999-07-08 22:12:37 +00:00
|
|
|
disp->rpool = NULL;
|
2000-05-10 21:34:50 +00:00
|
|
|
if (isc_mempool_create(mgr->mctx, sizeof(dns_dispentry_t),
|
1999-06-18 23:54:59 +00:00
|
|
|
&disp->rpool) != ISC_R_SUCCESS) {
|
2000-04-06 22:03:35 +00:00
|
|
|
res = ISC_R_NOMEMORY;
|
1999-06-18 23:54:59 +00:00
|
|
|
goto out5;
|
|
|
|
}
|
1999-10-22 05:18:35 +00:00
|
|
|
isc_mempool_setname(disp->rpool, "disp_rpool");
|
1999-06-18 23:54:59 +00:00
|
|
|
|
1999-07-08 02:50:00 +00:00
|
|
|
/*
|
|
|
|
* Keep some number of items around. This should be a config
|
|
|
|
* option. For now, keep 8, but later keep at least two even
|
|
|
|
* if the caller wants less. This allows us to ensure certain
|
|
|
|
* things, like an event can be "freed" and the next allocation
|
|
|
|
* will always succeed.
|
|
|
|
*
|
|
|
|
* Note that if limits are placed on anything here, we use one
|
|
|
|
* event internally, so the actual limit should be "wanted + 1."
|
|
|
|
*
|
|
|
|
* XXXMLG
|
|
|
|
*/
|
|
|
|
isc_mempool_setfreemax(disp->epool, 8);
|
|
|
|
isc_mempool_setfreemax(disp->bpool, 8);
|
|
|
|
isc_mempool_setfreemax(disp->rpool, 8);
|
|
|
|
|
|
|
|
disp->failsafe_ev = allocate_event(disp);
|
|
|
|
if (disp->failsafe_ev == NULL) {
|
2000-04-06 22:03:35 +00:00
|
|
|
res = ISC_R_NOMEMORY;
|
1999-07-08 02:50:00 +00:00
|
|
|
goto out6;
|
|
|
|
}
|
|
|
|
|
1999-06-18 23:54:59 +00:00
|
|
|
/*
|
1999-12-16 00:07:21 +00:00
|
|
|
* Initialize to a 32-bit LFSR. Both of these are from Applied
|
|
|
|
* Cryptography.
|
|
|
|
*
|
|
|
|
* lfsr1:
|
|
|
|
* x^32 + x^7 + x^5 + x^3 + x^2 + x + 1
|
|
|
|
*
|
|
|
|
* lfsr2:
|
|
|
|
* x^32 + x^7 + x^6 + x^2 + 1
|
1999-06-18 23:54:59 +00:00
|
|
|
*/
|
1999-12-16 00:07:21 +00:00
|
|
|
isc_lfsr_init(&disp->qid_lfsr1, 0, 32, 0x80000057U,
|
|
|
|
0, reseed_lfsr, disp);
|
|
|
|
isc_lfsr_init(&disp->qid_lfsr2, 0, 32, 0x800000c2U,
|
|
|
|
0, reseed_lfsr, disp);
|
1999-06-18 23:54:59 +00:00
|
|
|
|
|
|
|
disp->magic = DISPATCH_MAGIC;
|
2000-05-10 21:34:50 +00:00
|
|
|
disp->mgr = mgr;
|
1999-06-18 23:54:59 +00:00
|
|
|
|
1999-07-09 00:51:08 +00:00
|
|
|
disp->task = NULL;
|
1999-06-18 23:54:59 +00:00
|
|
|
isc_task_attach(task, &disp->task);
|
2000-04-29 00:45:26 +00:00
|
|
|
dispatch_log(disp, LVL(90), "attaching to task %p", disp->task);
|
1999-07-09 00:51:08 +00:00
|
|
|
disp->socket = NULL;
|
1999-06-18 23:54:59 +00:00
|
|
|
isc_socket_attach(sock, &disp->socket);
|
2000-04-29 00:45:26 +00:00
|
|
|
dispatch_log(disp, LVL(90), "attaching to socket %p", disp->socket);
|
1999-06-18 23:54:59 +00:00
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
dns_tcpmsg_init(mgr->mctx, disp->socket, &disp->tcpmsg);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Append it to the dispatcher list.
|
|
|
|
*/
|
|
|
|
LOCK(&mgr->lock);
|
|
|
|
ISC_LIST_APPEND(mgr->list, disp, link);
|
|
|
|
UNLOCK(&mgr->lock);
|
1999-07-12 23:44:31 +00:00
|
|
|
|
1999-06-18 23:54:59 +00:00
|
|
|
*dispp = disp;
|
1999-06-30 01:33:11 +00:00
|
|
|
|
2000-04-06 22:03:35 +00:00
|
|
|
return (ISC_R_SUCCESS);
|
1999-06-18 23:54:59 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* error returns
|
|
|
|
*/
|
1999-07-06 19:32:40 +00:00
|
|
|
out6:
|
1999-07-08 02:50:00 +00:00
|
|
|
isc_mempool_destroy(&disp->rpool);
|
1999-06-18 23:54:59 +00:00
|
|
|
out5:
|
|
|
|
isc_mempool_destroy(&disp->bpool);
|
1999-07-06 19:32:40 +00:00
|
|
|
out4:
|
1999-06-18 23:54:59 +00:00
|
|
|
isc_mempool_destroy(&disp->epool);
|
1999-07-06 19:32:40 +00:00
|
|
|
out3:
|
|
|
|
isc_mutex_destroy(&disp->lock);
|
1999-06-18 23:54:59 +00:00
|
|
|
out2:
|
2000-05-10 21:34:50 +00:00
|
|
|
isc_mem_put(mgr->mctx, disp->mgr->mctx,
|
|
|
|
disp->qid_nbuckets * sizeof(void *));
|
1999-06-18 23:54:59 +00:00
|
|
|
out1:
|
2000-05-10 21:34:50 +00:00
|
|
|
isc_mem_put(mgr->mctx, disp, sizeof(dns_dispatch_t));
|
1999-06-18 23:54:59 +00:00
|
|
|
|
|
|
|
return (res);
|
1999-06-16 01:32:31 +00:00
|
|
|
}
|
|
|
|
|
1999-06-18 23:54:59 +00:00
|
|
|
void
|
2000-05-10 21:34:50 +00:00
|
|
|
dns_dispatch_attach(dns_dispatch_t *disp, dns_dispatch_t **dispp)
|
|
|
|
{
|
1999-07-13 00:25:21 +00:00
|
|
|
REQUIRE(VALID_DISPATCH(disp));
|
|
|
|
REQUIRE(dispp != NULL && *dispp == NULL);
|
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
LOCK(&disp->lock);
|
1999-07-13 00:25:21 +00:00
|
|
|
disp->refcount++;
|
2000-05-10 21:34:50 +00:00
|
|
|
UNLOCK(&disp->lock);
|
1999-07-13 00:25:21 +00:00
|
|
|
|
|
|
|
*dispp = disp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2000-05-10 21:34:50 +00:00
|
|
|
dns_dispatch_detach(dns_dispatch_t **dispp)
|
|
|
|
{
|
1999-06-18 23:54:59 +00:00
|
|
|
dns_dispatch_t *disp;
|
|
|
|
isc_boolean_t killit;
|
2000-05-10 21:34:50 +00:00
|
|
|
dns_dispatchmgr_t *mgr;
|
1999-06-18 23:54:59 +00:00
|
|
|
|
|
|
|
REQUIRE(dispp != NULL && VALID_DISPATCH(*dispp));
|
|
|
|
|
|
|
|
disp = *dispp;
|
|
|
|
*dispp = NULL;
|
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
mgr = disp->mgr;
|
|
|
|
|
|
|
|
LOCK(&mgr->lock);
|
1999-06-18 23:54:59 +00:00
|
|
|
LOCK(&disp->lock);
|
|
|
|
|
|
|
|
INSIST(disp->refcount > 0);
|
|
|
|
disp->refcount--;
|
1999-07-09 00:51:08 +00:00
|
|
|
killit = ISC_FALSE;
|
|
|
|
if (disp->refcount == 0) {
|
|
|
|
if (disp->recvs > 0)
|
|
|
|
isc_socket_cancel(disp->socket, NULL,
|
|
|
|
ISC_SOCKCANCEL_RECV);
|
|
|
|
else
|
|
|
|
killit = ISC_TRUE;
|
|
|
|
}
|
|
|
|
|
2000-04-29 00:45:26 +00:00
|
|
|
dispatch_log(disp, LVL(90), "detach: refcount %d", disp->refcount);
|
1999-06-18 23:54:59 +00:00
|
|
|
|
|
|
|
UNLOCK(&disp->lock);
|
|
|
|
|
|
|
|
if (killit)
|
2000-05-10 21:34:50 +00:00
|
|
|
destroy_disp(disp);
|
|
|
|
|
|
|
|
killit = destroy_mgr_ok(mgr);
|
|
|
|
|
|
|
|
UNLOCK(&mgr->lock);
|
|
|
|
|
|
|
|
if (killit)
|
|
|
|
destroy_mgr(&mgr);
|
1999-06-16 01:32:31 +00:00
|
|
|
}
|
|
|
|
|
1999-07-22 01:34:31 +00:00
|
|
|
isc_result_t
|
1999-06-18 02:01:42 +00:00
|
|
|
dns_dispatch_addresponse(dns_dispatch_t *disp, isc_sockaddr_t *dest,
|
|
|
|
isc_task_t *task, isc_taskaction_t action, void *arg,
|
1999-07-06 19:32:40 +00:00
|
|
|
dns_messageid_t *idp, dns_dispentry_t **resp)
|
1999-06-16 01:32:31 +00:00
|
|
|
{
|
1999-07-06 19:32:40 +00:00
|
|
|
dns_dispentry_t *res;
|
1999-06-18 02:01:42 +00:00
|
|
|
unsigned int bucket;
|
|
|
|
dns_messageid_t id;
|
|
|
|
int i;
|
|
|
|
isc_boolean_t ok;
|
|
|
|
|
|
|
|
REQUIRE(VALID_DISPATCH(disp));
|
|
|
|
REQUIRE(task != NULL);
|
|
|
|
REQUIRE(dest != NULL);
|
|
|
|
REQUIRE(resp != NULL && *resp == NULL);
|
|
|
|
REQUIRE(idp != NULL);
|
|
|
|
|
|
|
|
LOCK(&disp->lock);
|
|
|
|
|
1999-07-14 22:16:19 +00:00
|
|
|
if (disp->shutting_down == 1) {
|
|
|
|
UNLOCK(&disp->lock);
|
|
|
|
return (ISC_R_SHUTTINGDOWN);
|
|
|
|
}
|
|
|
|
|
1999-07-09 02:47:55 +00:00
|
|
|
if (disp->requests == disp->maxrequests) {
|
|
|
|
UNLOCK(&disp->lock);
|
1999-07-10 00:15:41 +00:00
|
|
|
return (ISC_R_QUOTA);
|
1999-07-09 02:47:55 +00:00
|
|
|
}
|
|
|
|
|
1999-06-18 02:01:42 +00:00
|
|
|
/*
|
|
|
|
* Try somewhat hard to find an unique ID.
|
|
|
|
*/
|
2000-01-07 01:17:47 +00:00
|
|
|
id = disp->methods.randomid(disp);
|
|
|
|
bucket = disp->methods.hash(disp, dest, id);
|
1999-06-18 02:01:42 +00:00
|
|
|
ok = ISC_FALSE;
|
|
|
|
for (i = 0 ; i < 64 ; i++) {
|
1999-06-30 01:33:11 +00:00
|
|
|
if (bucket_search(disp, dest, id, bucket) == NULL) {
|
1999-06-18 02:01:42 +00:00
|
|
|
ok = ISC_TRUE;
|
|
|
|
break;
|
|
|
|
}
|
1999-12-15 17:14:52 +00:00
|
|
|
id += disp->qid_increment;
|
|
|
|
id &= 0x0000ffff;
|
2000-01-07 01:17:47 +00:00
|
|
|
bucket = disp->methods.hash(disp, dest, id);
|
1999-06-18 02:01:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!ok) {
|
|
|
|
UNLOCK(&disp->lock);
|
2000-04-06 22:03:35 +00:00
|
|
|
return (ISC_R_NOMORE);
|
1999-06-18 02:01:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
res = isc_mempool_get(disp->rpool);
|
|
|
|
if (res == NULL) {
|
|
|
|
UNLOCK(&disp->lock);
|
2000-04-06 22:03:35 +00:00
|
|
|
return (ISC_R_NOMEMORY);
|
1999-06-18 02:01:42 +00:00
|
|
|
}
|
|
|
|
|
1999-07-09 00:51:08 +00:00
|
|
|
disp->refcount++;
|
|
|
|
disp->requests++;
|
|
|
|
res->task = NULL;
|
|
|
|
isc_task_attach(task, &res->task);
|
1999-06-18 02:01:42 +00:00
|
|
|
res->magic = RESPONSE_MAGIC;
|
|
|
|
res->id = id;
|
|
|
|
res->bucket = bucket;
|
1999-07-06 19:32:40 +00:00
|
|
|
res->host = *dest;
|
1999-06-18 02:01:42 +00:00
|
|
|
res->action = action;
|
|
|
|
res->arg = arg;
|
1999-07-08 02:50:00 +00:00
|
|
|
res->item_out = ISC_FALSE;
|
1999-07-06 19:32:40 +00:00
|
|
|
ISC_LIST_INIT(res->items);
|
1999-06-18 02:01:42 +00:00
|
|
|
ISC_LINK_INIT(res, link);
|
|
|
|
ISC_LIST_APPEND(disp->qid_table[bucket], res, link);
|
|
|
|
|
2000-04-29 00:45:26 +00:00
|
|
|
request_log(disp, res, LVL(90),
|
|
|
|
"attached to task %p", res->task);
|
1999-07-09 20:32:12 +00:00
|
|
|
|
1999-07-09 00:51:08 +00:00
|
|
|
startrecv(disp);
|
|
|
|
|
1999-06-18 02:01:42 +00:00
|
|
|
UNLOCK(&disp->lock);
|
|
|
|
|
|
|
|
*idp = id;
|
|
|
|
*resp = res;
|
|
|
|
|
2000-04-06 22:03:35 +00:00
|
|
|
return (ISC_R_SUCCESS);
|
1999-06-16 01:32:31 +00:00
|
|
|
}
|
|
|
|
|
1999-06-18 02:01:42 +00:00
|
|
|
void
|
1999-07-06 19:32:40 +00:00
|
|
|
dns_dispatch_removeresponse(dns_dispatch_t *disp, dns_dispentry_t **resp,
|
1999-06-18 02:01:42 +00:00
|
|
|
dns_dispatchevent_t **sockevent)
|
1999-06-16 01:32:31 +00:00
|
|
|
{
|
1999-07-06 19:32:40 +00:00
|
|
|
dns_dispentry_t *res;
|
1999-06-18 02:01:42 +00:00
|
|
|
dns_dispatchevent_t *ev;
|
|
|
|
unsigned int bucket;
|
1999-06-18 23:54:59 +00:00
|
|
|
isc_boolean_t killit;
|
1999-10-07 19:38:39 +00:00
|
|
|
unsigned int n;
|
|
|
|
isc_eventlist_t events;
|
1999-06-18 02:01:42 +00:00
|
|
|
|
|
|
|
REQUIRE(VALID_DISPATCH(disp));
|
|
|
|
REQUIRE(resp != NULL);
|
|
|
|
REQUIRE(VALID_RESPONSE(*resp));
|
|
|
|
|
|
|
|
res = *resp;
|
|
|
|
*resp = NULL;
|
|
|
|
|
|
|
|
if (sockevent != NULL) {
|
|
|
|
REQUIRE(*sockevent != NULL);
|
|
|
|
ev = *sockevent;
|
|
|
|
*sockevent = NULL;
|
|
|
|
} else {
|
|
|
|
ev = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOCK(&disp->lock);
|
|
|
|
|
1999-07-09 00:51:08 +00:00
|
|
|
INSIST(disp->requests > 0);
|
|
|
|
disp->requests--;
|
1999-06-18 23:54:59 +00:00
|
|
|
INSIST(disp->refcount > 0);
|
|
|
|
disp->refcount--;
|
1999-07-09 00:51:08 +00:00
|
|
|
killit = ISC_FALSE;
|
|
|
|
if (disp->refcount == 0) {
|
|
|
|
if (disp->recvs > 0)
|
|
|
|
isc_socket_cancel(disp->socket, NULL,
|
|
|
|
ISC_SOCKCANCEL_RECV);
|
|
|
|
else
|
|
|
|
killit = ISC_TRUE;
|
|
|
|
}
|
1999-06-18 23:54:59 +00:00
|
|
|
|
1999-06-18 02:01:42 +00:00
|
|
|
bucket = res->bucket;
|
|
|
|
|
|
|
|
ISC_LIST_UNLINK(disp->qid_table[bucket], res, link);
|
|
|
|
|
1999-10-07 19:38:39 +00:00
|
|
|
if (ev == NULL && res->item_out) {
|
|
|
|
/*
|
|
|
|
* We've posted our event, but the caller hasn't gotten it
|
|
|
|
* yet. Take it back.
|
|
|
|
*/
|
|
|
|
ISC_LIST_INIT(events);
|
|
|
|
n = isc_task_unsend(res->task, res, DNS_EVENT_DISPATCH,
|
|
|
|
NULL, &events);
|
|
|
|
/*
|
|
|
|
* We had better have gotten it back.
|
|
|
|
*/
|
|
|
|
INSIST(n == 1);
|
|
|
|
ev = (dns_dispatchevent_t *)ISC_LIST_HEAD(events);
|
|
|
|
}
|
1999-07-09 00:51:08 +00:00
|
|
|
|
1999-07-08 02:50:00 +00:00
|
|
|
if (ev != NULL) {
|
1999-07-22 01:34:31 +00:00
|
|
|
REQUIRE(res->item_out == ISC_TRUE);
|
1999-07-09 01:57:55 +00:00
|
|
|
res->item_out = ISC_FALSE;
|
1999-07-22 01:34:31 +00:00
|
|
|
if (ev->buffer.base != NULL)
|
|
|
|
free_buffer(disp, ev->buffer.base, ev->buffer.length);
|
1999-07-08 02:50:00 +00:00
|
|
|
free_event(disp, ev);
|
|
|
|
}
|
1999-07-22 01:34:31 +00:00
|
|
|
|
2000-04-29 00:45:26 +00:00
|
|
|
request_log(disp, res, LVL(90), "detaching from task %p", res->task);
|
1999-10-07 19:38:39 +00:00
|
|
|
isc_task_detach(&res->task);
|
|
|
|
|
1999-07-22 01:34:31 +00:00
|
|
|
/*
|
|
|
|
* Free any buffered requests as well
|
|
|
|
*/
|
|
|
|
ev = ISC_LIST_HEAD(res->items);
|
|
|
|
while (ev != NULL) {
|
2000-04-17 19:22:44 +00:00
|
|
|
ISC_LIST_UNLINK(res->items, ev, ev_link);
|
1999-07-22 01:34:31 +00:00
|
|
|
if (ev->buffer.base != NULL)
|
|
|
|
free_buffer(disp, ev->buffer.base, ev->buffer.length);
|
|
|
|
free_event(disp, ev);
|
|
|
|
ev = ISC_LIST_HEAD(res->items);
|
|
|
|
}
|
2000-04-29 00:45:26 +00:00
|
|
|
res->magic = 0;
|
1999-07-09 02:47:55 +00:00
|
|
|
isc_mempool_put(disp->rpool, res);
|
1999-07-08 02:50:00 +00:00
|
|
|
if (disp->shutting_down == 1)
|
|
|
|
do_cancel(disp, NULL);
|
1999-07-22 01:34:31 +00:00
|
|
|
else
|
|
|
|
startrecv(disp);
|
1999-06-18 02:01:42 +00:00
|
|
|
|
|
|
|
UNLOCK(&disp->lock);
|
1999-06-18 23:54:59 +00:00
|
|
|
|
|
|
|
if (killit)
|
2000-05-10 21:34:50 +00:00
|
|
|
destroy_disp(disp);
|
1999-06-16 01:32:31 +00:00
|
|
|
}
|
|
|
|
|
1999-07-22 01:34:31 +00:00
|
|
|
isc_result_t
|
1999-06-18 02:01:42 +00:00
|
|
|
dns_dispatch_addrequest(dns_dispatch_t *disp,
|
|
|
|
isc_task_t *task, isc_taskaction_t action, void *arg,
|
1999-07-06 19:32:40 +00:00
|
|
|
dns_dispentry_t **resp)
|
1999-06-16 01:32:31 +00:00
|
|
|
{
|
1999-07-06 19:32:40 +00:00
|
|
|
dns_dispentry_t *res;
|
1999-06-18 02:01:42 +00:00
|
|
|
|
|
|
|
REQUIRE(VALID_DISPATCH(disp));
|
|
|
|
REQUIRE(task != NULL);
|
|
|
|
REQUIRE(resp != NULL && *resp == NULL);
|
|
|
|
|
|
|
|
LOCK(&disp->lock);
|
|
|
|
|
1999-07-14 22:16:19 +00:00
|
|
|
if (disp->shutting_down == 1) {
|
|
|
|
UNLOCK(&disp->lock);
|
|
|
|
return (ISC_R_SHUTTINGDOWN);
|
|
|
|
}
|
|
|
|
|
1999-07-09 02:47:55 +00:00
|
|
|
if (disp->requests == disp->maxrequests) {
|
|
|
|
UNLOCK(&disp->lock);
|
1999-07-10 00:15:41 +00:00
|
|
|
return (ISC_R_QUOTA);
|
1999-07-09 02:47:55 +00:00
|
|
|
}
|
|
|
|
|
1999-06-18 02:01:42 +00:00
|
|
|
res = isc_mempool_get(disp->rpool);
|
|
|
|
if (res == NULL) {
|
|
|
|
UNLOCK(&disp->lock);
|
2000-04-06 22:03:35 +00:00
|
|
|
return (ISC_R_NOMEMORY);
|
1999-06-18 02:01:42 +00:00
|
|
|
}
|
|
|
|
|
1999-07-09 00:51:08 +00:00
|
|
|
disp->refcount++;
|
|
|
|
disp->requests++;
|
|
|
|
res->task = NULL;
|
|
|
|
isc_task_attach(task, &res->task);
|
|
|
|
|
1999-06-18 02:01:42 +00:00
|
|
|
res->magic = REQUEST_MAGIC;
|
|
|
|
res->bucket = INVALID_BUCKET;
|
|
|
|
res->action = action;
|
|
|
|
res->arg = arg;
|
1999-07-08 02:50:00 +00:00
|
|
|
res->item_out = ISC_FALSE;
|
1999-07-06 19:32:40 +00:00
|
|
|
ISC_LIST_INIT(res->items);
|
1999-06-18 02:01:42 +00:00
|
|
|
ISC_LINK_INIT(res, link);
|
|
|
|
ISC_LIST_APPEND(disp->rq_handlers, res, link);
|
|
|
|
|
2000-04-29 00:45:26 +00:00
|
|
|
request_log(disp, res, LVL(90), "attaching task %p", res->task);
|
|
|
|
|
1999-07-09 01:57:55 +00:00
|
|
|
/*
|
|
|
|
* If there are queries waiting to be processed, give this critter
|
|
|
|
* one of them.
|
|
|
|
*/
|
|
|
|
do_next_request(disp, res);
|
|
|
|
|
1999-07-09 00:51:08 +00:00
|
|
|
startrecv(disp);
|
|
|
|
|
1999-06-18 02:01:42 +00:00
|
|
|
UNLOCK(&disp->lock);
|
|
|
|
|
|
|
|
*resp = res;
|
|
|
|
|
2000-04-06 22:03:35 +00:00
|
|
|
return (ISC_R_SUCCESS);
|
1999-06-16 01:32:31 +00:00
|
|
|
}
|
|
|
|
|
1999-06-18 02:01:42 +00:00
|
|
|
void
|
1999-07-06 19:32:40 +00:00
|
|
|
dns_dispatch_removerequest(dns_dispatch_t *disp, dns_dispentry_t **resp,
|
1999-06-18 02:01:42 +00:00
|
|
|
dns_dispatchevent_t **sockevent)
|
1999-06-16 01:32:31 +00:00
|
|
|
{
|
1999-07-06 19:32:40 +00:00
|
|
|
dns_dispentry_t *res;
|
1999-06-18 02:01:42 +00:00
|
|
|
dns_dispatchevent_t *ev;
|
1999-06-18 23:54:59 +00:00
|
|
|
isc_boolean_t killit;
|
1999-10-07 19:38:39 +00:00
|
|
|
unsigned int n;
|
|
|
|
isc_eventlist_t events;
|
1999-06-18 02:01:42 +00:00
|
|
|
|
|
|
|
REQUIRE(VALID_DISPATCH(disp));
|
|
|
|
REQUIRE(resp != NULL);
|
|
|
|
REQUIRE(VALID_REQUEST(*resp));
|
|
|
|
|
|
|
|
res = *resp;
|
|
|
|
*resp = NULL;
|
|
|
|
|
|
|
|
if (sockevent != NULL) {
|
|
|
|
REQUIRE(*sockevent != NULL);
|
|
|
|
ev = *sockevent;
|
|
|
|
*sockevent = NULL;
|
|
|
|
} else {
|
|
|
|
ev = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
LOCK(&disp->lock);
|
|
|
|
|
1999-07-09 00:51:08 +00:00
|
|
|
INSIST(disp->requests > 0);
|
|
|
|
disp->requests--;
|
1999-06-18 23:54:59 +00:00
|
|
|
INSIST(disp->refcount > 0);
|
|
|
|
disp->refcount--;
|
1999-07-09 00:51:08 +00:00
|
|
|
killit = ISC_FALSE;
|
|
|
|
if (disp->refcount == 0) {
|
|
|
|
if (disp->recvs > 0)
|
|
|
|
isc_socket_cancel(disp->socket, NULL,
|
|
|
|
ISC_SOCKCANCEL_RECV);
|
|
|
|
else
|
|
|
|
killit = ISC_TRUE;
|
|
|
|
}
|
1999-06-18 23:54:59 +00:00
|
|
|
|
1999-06-18 02:01:42 +00:00
|
|
|
ISC_LIST_UNLINK(disp->rq_handlers, res, link);
|
|
|
|
|
1999-10-07 19:38:39 +00:00
|
|
|
if (ev == NULL && res->item_out) {
|
|
|
|
/*
|
|
|
|
* We've posted our event, but the caller hasn't gotten it
|
|
|
|
* yet. Take it back.
|
|
|
|
*/
|
|
|
|
ISC_LIST_INIT(events);
|
|
|
|
n = isc_task_unsend(res->task, res, DNS_EVENT_DISPATCH,
|
|
|
|
NULL, &events);
|
|
|
|
/*
|
|
|
|
* We had better have gotten it back.
|
|
|
|
*/
|
|
|
|
INSIST(n == 1);
|
|
|
|
ev = (dns_dispatchevent_t *)ISC_LIST_HEAD(events);
|
|
|
|
}
|
1999-07-09 00:51:08 +00:00
|
|
|
|
1999-07-08 02:50:00 +00:00
|
|
|
if (ev != NULL) {
|
1999-07-22 01:34:31 +00:00
|
|
|
REQUIRE(res->item_out == ISC_TRUE);
|
1999-07-09 01:57:55 +00:00
|
|
|
res->item_out = ISC_FALSE;
|
1999-07-22 01:34:31 +00:00
|
|
|
if (ev->buffer.base != NULL)
|
1999-07-08 02:50:00 +00:00
|
|
|
free_buffer(disp, ev->buffer.base, ev->buffer.length);
|
|
|
|
free_event(disp, ev);
|
|
|
|
}
|
1999-10-07 19:38:39 +00:00
|
|
|
|
2000-04-29 00:45:26 +00:00
|
|
|
request_log(disp, res, LVL(90), "detaching from task %p", res->task);
|
1999-10-07 19:38:39 +00:00
|
|
|
isc_task_detach(&res->task);
|
|
|
|
|
2000-04-29 00:45:26 +00:00
|
|
|
res->magic = 0;
|
1999-07-22 01:34:31 +00:00
|
|
|
isc_mempool_put(disp->rpool, res);
|
|
|
|
if (disp->shutting_down == 1)
|
|
|
|
do_cancel(disp, NULL);
|
|
|
|
else
|
|
|
|
startrecv(disp);
|
1999-06-18 02:01:42 +00:00
|
|
|
|
|
|
|
UNLOCK(&disp->lock);
|
1999-06-18 23:54:59 +00:00
|
|
|
|
|
|
|
if (killit)
|
2000-05-10 21:34:50 +00:00
|
|
|
destroy_disp(disp);
|
1999-06-16 01:32:31 +00:00
|
|
|
}
|
1999-07-08 02:50:00 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
dns_dispatch_freeevent(dns_dispatch_t *disp, dns_dispentry_t *resp,
|
|
|
|
dns_dispatchevent_t **sockevent)
|
|
|
|
{
|
|
|
|
dns_dispatchevent_t *ev;
|
|
|
|
isc_boolean_t response;
|
|
|
|
|
|
|
|
REQUIRE(VALID_DISPATCH(disp));
|
|
|
|
REQUIRE(sockevent != NULL && *sockevent != NULL);
|
|
|
|
|
|
|
|
ev = *sockevent;
|
|
|
|
*sockevent = NULL;
|
|
|
|
|
|
|
|
response = ISC_FALSE;
|
|
|
|
if (VALID_RESPONSE(resp)) {
|
|
|
|
response = ISC_TRUE;
|
|
|
|
} else {
|
|
|
|
REQUIRE(VALID_RESPONSE(resp) || VALID_REQUEST(resp));
|
|
|
|
}
|
|
|
|
|
|
|
|
LOCK(&disp->lock);
|
|
|
|
REQUIRE(ev != disp->failsafe_ev);
|
1999-07-22 01:34:31 +00:00
|
|
|
REQUIRE(resp->item_out == ISC_TRUE);
|
|
|
|
REQUIRE(ev->result == ISC_R_SUCCESS);
|
1999-07-09 01:57:55 +00:00
|
|
|
resp->item_out = ISC_FALSE;
|
1999-07-08 02:50:00 +00:00
|
|
|
|
1999-07-22 01:34:31 +00:00
|
|
|
if (ev->buffer.base != NULL)
|
|
|
|
free_buffer(disp, ev->buffer.base, ev->buffer.length);
|
1999-07-08 02:50:00 +00:00
|
|
|
free_event(disp, ev);
|
|
|
|
|
|
|
|
if (response)
|
|
|
|
do_next_response(disp, resp);
|
|
|
|
else
|
|
|
|
do_next_request(disp, resp);
|
|
|
|
|
1999-07-22 01:34:31 +00:00
|
|
|
if (disp->shutting_down == 0)
|
|
|
|
startrecv(disp);
|
1999-07-08 02:50:00 +00:00
|
|
|
|
|
|
|
UNLOCK(&disp->lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-05-10 21:34:50 +00:00
|
|
|
do_next_response(dns_dispatch_t *disp, dns_dispentry_t *resp)
|
|
|
|
{
|
1999-07-08 02:50:00 +00:00
|
|
|
dns_dispatchevent_t *ev;
|
|
|
|
|
|
|
|
INSIST(resp->item_out == ISC_FALSE);
|
|
|
|
|
|
|
|
ev = ISC_LIST_HEAD(resp->items);
|
|
|
|
if (ev == NULL) {
|
|
|
|
if (disp->shutting_down == 1)
|
1999-07-22 01:34:31 +00:00
|
|
|
do_cancel(disp, NULL); /* was resp */
|
1999-07-08 02:50:00 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-04-17 19:22:44 +00:00
|
|
|
ISC_LIST_UNLINK(disp->rq_events, ev, ev_link);
|
1999-07-08 02:50:00 +00:00
|
|
|
|
1999-07-10 00:55:07 +00:00
|
|
|
ISC_EVENT_INIT(ev, sizeof(*ev), 0, NULL, DNS_EVENT_DISPATCH,
|
1999-07-09 00:51:08 +00:00
|
|
|
resp->action, resp->arg, resp, NULL, NULL);
|
1999-07-08 02:50:00 +00:00
|
|
|
resp->item_out = ISC_TRUE;
|
2000-04-29 00:45:26 +00:00
|
|
|
request_log(disp, resp, LVL(90),
|
|
|
|
"[c] Sent event %p buffer %p len %d to task %p",
|
|
|
|
ev, ev->buffer.base, ev->buffer.length,
|
|
|
|
resp->task);
|
1999-09-23 21:31:03 +00:00
|
|
|
isc_task_send(resp->task, (isc_event_t **)&ev);
|
1999-07-08 02:50:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-05-10 21:34:50 +00:00
|
|
|
do_next_request(dns_dispatch_t *disp, dns_dispentry_t *resp)
|
|
|
|
{
|
1999-07-08 02:50:00 +00:00
|
|
|
dns_dispatchevent_t *ev;
|
|
|
|
|
|
|
|
INSIST(resp->item_out == ISC_FALSE);
|
|
|
|
|
|
|
|
ev = ISC_LIST_HEAD(disp->rq_events);
|
|
|
|
if (ev == NULL) {
|
|
|
|
if (disp->shutting_down == 1)
|
1999-07-22 01:34:31 +00:00
|
|
|
do_cancel(disp, NULL); /* was resp */
|
1999-07-08 02:50:00 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-04-17 19:22:44 +00:00
|
|
|
ISC_LIST_UNLINK(disp->rq_events, ev, ev_link);
|
1999-07-08 02:50:00 +00:00
|
|
|
|
1999-07-10 00:55:07 +00:00
|
|
|
ISC_EVENT_INIT(ev, sizeof(*ev), 0, NULL, DNS_EVENT_DISPATCH,
|
1999-07-09 00:51:08 +00:00
|
|
|
resp->action, resp->arg, resp, NULL, NULL);
|
1999-07-08 02:50:00 +00:00
|
|
|
resp->item_out = ISC_TRUE;
|
2000-04-29 00:45:26 +00:00
|
|
|
request_log(disp, resp, LVL(90),
|
|
|
|
"[d] Sent event %p buffer %p len %d to task %p",
|
|
|
|
ev, ev->buffer.base, ev->buffer.length, resp->task);
|
1999-09-23 21:31:03 +00:00
|
|
|
isc_task_send(resp->task, (isc_event_t **)&ev);
|
1999-07-08 02:50:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2000-05-10 21:34:50 +00:00
|
|
|
do_cancel(dns_dispatch_t *disp, dns_dispentry_t *resp)
|
|
|
|
{
|
1999-07-09 00:51:08 +00:00
|
|
|
dns_dispatchevent_t *ev;
|
|
|
|
|
2000-04-29 00:45:26 +00:00
|
|
|
if (disp->shutdown_out == 1)
|
1999-07-08 02:50:00 +00:00
|
|
|
return;
|
2000-04-29 00:45:26 +00:00
|
|
|
|
|
|
|
request_log(disp, resp, LVL(90), "cancel");
|
1999-07-08 02:50:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If no target given, find the first request handler. If
|
|
|
|
* there are packets waiting for any handler, however, don't
|
|
|
|
* kill them.
|
|
|
|
*/
|
|
|
|
if (resp == NULL) {
|
1999-07-22 01:34:31 +00:00
|
|
|
if (ISC_LIST_EMPTY(disp->rq_events)) {
|
|
|
|
resp = ISC_LIST_HEAD(disp->rq_handlers);
|
|
|
|
while (resp != NULL) {
|
|
|
|
if (resp->item_out == ISC_FALSE)
|
|
|
|
break;
|
|
|
|
resp = ISC_LIST_NEXT(resp, link);
|
|
|
|
}
|
|
|
|
}
|
1999-07-08 02:50:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1999-07-22 01:34:31 +00:00
|
|
|
* Search for the first response handler without packets outstanding.
|
1999-07-08 02:50:00 +00:00
|
|
|
*/
|
|
|
|
if (resp == NULL) {
|
1999-07-09 00:51:08 +00:00
|
|
|
resp = linear_first(disp);
|
|
|
|
if (resp == NULL) /* no first item? */
|
1999-07-08 02:50:00 +00:00
|
|
|
return;
|
|
|
|
do {
|
|
|
|
if (resp->item_out == ISC_FALSE)
|
|
|
|
break;
|
|
|
|
|
|
|
|
resp = linear_next(disp, resp);
|
|
|
|
} while (resp != NULL);
|
|
|
|
}
|
|
|
|
|
1999-07-22 01:34:31 +00:00
|
|
|
/*
|
|
|
|
* No one to send the cancel event to, so nothing to do.
|
|
|
|
*/
|
|
|
|
if (resp == NULL)
|
|
|
|
return;
|
|
|
|
|
1999-07-08 02:50:00 +00:00
|
|
|
/*
|
1999-07-09 00:51:08 +00:00
|
|
|
* Send the shutdown failsafe event to this resp.
|
1999-07-08 02:50:00 +00:00
|
|
|
*/
|
1999-07-09 00:51:08 +00:00
|
|
|
ev = disp->failsafe_ev;
|
1999-07-10 00:55:07 +00:00
|
|
|
ISC_EVENT_INIT(ev, sizeof (*ev), 0, NULL, DNS_EVENT_DISPATCH,
|
1999-07-09 00:51:08 +00:00
|
|
|
resp->action, resp->arg, resp, NULL, NULL);
|
1999-07-12 23:44:31 +00:00
|
|
|
ev->result = disp->shutdown_why;
|
1999-07-09 00:51:08 +00:00
|
|
|
ev->buffer.base = NULL;
|
|
|
|
ev->buffer.length = 0;
|
1999-07-12 23:44:31 +00:00
|
|
|
disp->shutdown_out = 1;
|
2000-04-29 00:45:26 +00:00
|
|
|
request_log(disp, resp, LVL(10),
|
|
|
|
"sent failsafe event %p to task %p", ev, resp->task);
|
1999-07-22 01:34:31 +00:00
|
|
|
resp->item_out = ISC_TRUE;
|
1999-09-23 21:31:03 +00:00
|
|
|
isc_task_send(resp->task, (isc_event_t **)&ev);
|
1999-07-08 02:50:00 +00:00
|
|
|
}
|
1999-07-09 20:32:12 +00:00
|
|
|
|
|
|
|
isc_socket_t *
|
2000-05-10 21:34:50 +00:00
|
|
|
dns_dispatch_getsocket(dns_dispatch_t *disp)
|
|
|
|
{
|
1999-07-09 20:32:12 +00:00
|
|
|
REQUIRE(VALID_DISPATCH(disp));
|
|
|
|
|
|
|
|
return (disp->socket);
|
|
|
|
}
|
1999-07-22 01:34:31 +00:00
|
|
|
|
|
|
|
void
|
2000-05-10 21:34:50 +00:00
|
|
|
dns_dispatch_cancel(dns_dispatch_t *disp)
|
|
|
|
{
|
1999-07-22 01:34:31 +00:00
|
|
|
REQUIRE(VALID_DISPATCH(disp));
|
|
|
|
|
|
|
|
LOCK(&disp->lock);
|
|
|
|
|
|
|
|
if (disp->shutting_down == 1) {
|
|
|
|
UNLOCK(&disp->lock);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
disp->shutdown_why = ISC_R_CANCELED;
|
|
|
|
disp->shutting_down = 1;
|
|
|
|
do_cancel(disp, NULL);
|
|
|
|
|
|
|
|
UNLOCK(&disp->lock);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2000-05-10 21:34:50 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
dns_dispatch_changeattributes(dns_dispatch_t *disp,
|
|
|
|
unsigned int attributes, unsigned int mask)
|
|
|
|
{
|
|
|
|
LOCK(&disp->mgr->lock);
|
|
|
|
LOCK(&disp->lock);
|
|
|
|
disp->attributes &= ~mask;
|
|
|
|
disp->attributes |= (attributes & mask);
|
|
|
|
UNLOCK(&disp->lock);
|
|
|
|
UNLOCK(&disp->mgr->lock);
|
|
|
|
}
|