1999-06-16 01:32:31 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 1999 Internet Software Consortium.
|
|
|
|
*
|
|
|
|
* 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 <ctype.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <isc/assertions.h>
|
|
|
|
#include <isc/error.h>
|
1999-12-15 03:11:00 +00:00
|
|
|
#include <isc/lfsr.h>
|
1999-06-18 02:01:42 +00:00
|
|
|
#include <isc/mem.h>
|
1999-06-16 01:32:31 +00:00
|
|
|
#include <isc/mutex.h>
|
|
|
|
#include <isc/socket.h>
|
1999-12-16 22:24:22 +00:00
|
|
|
#include <isc/util.h>
|
1999-06-16 01:32:31 +00:00
|
|
|
|
1999-07-08 22:12:37 +00:00
|
|
|
#include <dns/events.h>
|
1999-06-16 01:32:31 +00:00
|
|
|
#include <dns/types.h>
|
|
|
|
#include <dns/result.h>
|
|
|
|
#include <dns/dispatch.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>
|
1999-06-16 01:32:31 +00:00
|
|
|
|
1999-07-09 20:42:55 +00:00
|
|
|
#ifdef DISPATCH_DEBUG
|
|
|
|
#define XDEBUG(x) printf x
|
|
|
|
#else
|
|
|
|
#define XDEBUG(x)
|
|
|
|
#endif
|
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 */
|
|
|
|
isc_mem_t *mctx; /* memory context */
|
|
|
|
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
|
|
|
|
|
|
|
/* Locked. */
|
|
|
|
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
|
|
|
};
|
|
|
|
|
1999-06-18 02:01:42 +00:00
|
|
|
#define REQUEST_MAGIC 0x53912051 /* "random" value */
|
|
|
|
#define VALID_REQUEST(e) ((e) != NULL && (e)->magic == REQUEST_MAGIC)
|
|
|
|
|
|
|
|
#define RESPONSE_MAGIC 0x15021935 /* "random" value */
|
|
|
|
#define VALID_RESPONSE(e) ((e) != NULL && (e)->magic == RESPONSE_MAGIC)
|
|
|
|
|
|
|
|
#define DISPATCH_MAGIC 0x69385829 /* "random" value */
|
|
|
|
#define VALID_DISPATCH(e) ((e) != NULL && (e)->magic == DISPATCH_MAGIC)
|
|
|
|
|
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);
|
|
|
|
static void destroy(dns_dispatch_t *);
|
|
|
|
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
|
|
|
|
1999-12-16 00:07:21 +00:00
|
|
|
static void
|
|
|
|
reseed_lfsr(isc_lfsr_t *lfsr, void *arg)
|
|
|
|
{
|
|
|
|
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
|
|
|
|
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
|
|
|
|
dns_hash(dns_dispatch_t *disp, isc_sockaddr_t *dest, isc_uint32_t id)
|
|
|
|
{
|
|
|
|
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 *
|
|
|
|
linear_first(dns_dispatch_t *disp)
|
|
|
|
{
|
|
|
|
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 *
|
|
|
|
linear_next(dns_dispatch_t *disp, dns_dispentry_t *resp)
|
|
|
|
{
|
|
|
|
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
|
|
|
|
|
|
|
/*
|
1999-07-09 20:32:12 +00:00
|
|
|
* Called when refcount reaches 0 (and safe to destroy)
|
1999-06-30 01:33:11 +00:00
|
|
|
*/
|
|
|
|
static void
|
|
|
|
destroy(dns_dispatch_t *disp)
|
|
|
|
{
|
1999-07-08 02:50:00 +00:00
|
|
|
dns_dispatchevent_t *ev;
|
|
|
|
|
1999-06-30 01:33:11 +00:00
|
|
|
disp->magic = 0;
|
|
|
|
|
1999-07-12 23:44:31 +00:00
|
|
|
dns_tcpmsg_invalidate(&disp->tcpmsg);
|
|
|
|
|
1999-07-28 23:04:33 +00:00
|
|
|
XDEBUG(("dispatch::destroy: detaching from sock %p and task %p\n",
|
|
|
|
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) {
|
|
|
|
ISC_LIST_UNLINK(disp->rq_events, ev, link);
|
|
|
|
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);
|
|
|
|
isc_mem_put(disp->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
|
|
|
|
|
|
|
isc_mem_put(disp->mctx, disp, sizeof(dns_dispatch_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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);
|
1999-07-09 20:42:55 +00:00
|
|
|
XDEBUG(("lengths (%d, %d), ids (%d, %d)\n",
|
|
|
|
dest->length, res->host.length,
|
|
|
|
res->id, id));
|
1999-06-30 01:33:11 +00:00
|
|
|
res = ISC_LIST_NEXT(res, link);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
1999-07-08 02:50:00 +00:00
|
|
|
static void
|
|
|
|
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:
|
1999-07-08 02:50:00 +00:00
|
|
|
isc_mem_put(disp->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
|
|
|
XDEBUG(("Freeing buffer %p, length %d, into %s, %d remain\n",
|
|
|
|
buf, len,
|
|
|
|
(len == disp->buffersize ? "mempool" : "mctx"),
|
|
|
|
disp->buffers));
|
|
|
|
if (len == disp->buffersize)
|
|
|
|
isc_mempool_put(disp->bpool, buf);
|
|
|
|
else
|
|
|
|
isc_mem_put(disp->mctx, buf, len);
|
|
|
|
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 *
|
|
|
|
allocate_buffer(dns_dispatch_t *disp, unsigned int len)
|
|
|
|
{
|
|
|
|
void *temp;
|
|
|
|
|
|
|
|
INSIST(len > 0);
|
|
|
|
|
|
|
|
if (len == disp->buffersize)
|
|
|
|
temp = isc_mempool_get(disp->bpool);
|
|
|
|
else
|
|
|
|
temp = isc_mem_get(disp->mctx, len);
|
|
|
|
|
1999-07-09 02:47:55 +00:00
|
|
|
if (temp != NULL) {
|
|
|
|
disp->buffers++;
|
|
|
|
|
1999-07-09 20:42:55 +00:00
|
|
|
XDEBUG(("Allocated buffer %p, length %d, from %s, %d total\n",
|
|
|
|
temp, len,
|
|
|
|
(len == disp->buffersize ? "mempool" : "mctx"),
|
|
|
|
disp->buffers));
|
1999-07-09 02:47:55 +00:00
|
|
|
}
|
|
|
|
|
1999-07-08 02:50:00 +00:00
|
|
|
return (temp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
free_event(dns_dispatch_t *disp, dns_dispatchevent_t *ev)
|
|
|
|
{
|
|
|
|
if (disp->failsafe_ev == ev) {
|
|
|
|
INSIST(disp->shutdown_out == 1);
|
|
|
|
disp->shutdown_out = 0;
|
1999-07-22 01:34:31 +00:00
|
|
|
XDEBUG(("Returning failsafe event to dispatcher\n"));
|
1999-07-08 02:50:00 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
isc_mempool_put(disp->epool, ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline dns_dispatchevent_t *
|
|
|
|
allocate_event(dns_dispatch_t *disp)
|
|
|
|
{
|
|
|
|
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
|
|
|
|
udp_recv(isc_task_t *task, isc_event_t *ev_in)
|
|
|
|
{
|
|
|
|
isc_socketevent_t *ev = (isc_socketevent_t *)ev_in;
|
|
|
|
dns_dispatch_t *disp = ev_in->arg;
|
|
|
|
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
|
|
|
|
|
|
|
(void)task; /* shut up compiler */
|
|
|
|
|
1999-07-09 20:42:55 +00:00
|
|
|
XDEBUG(("Got packet!\n"));
|
1999-07-08 22:12:37 +00:00
|
|
|
|
1999-06-30 01:33:11 +00:00
|
|
|
LOCK(&disp->lock);
|
|
|
|
|
1999-07-22 01:34:31 +00:00
|
|
|
XDEBUG(("requests: %d, buffers: %d, recvs: %d\n",
|
|
|
|
disp->requests, disp->buffers, disp->recvs));
|
|
|
|
|
1999-07-08 22:12:37 +00:00
|
|
|
INSIST(disp->recvs > 0);
|
|
|
|
disp->recvs--;
|
|
|
|
|
1999-06-30 01:33:11 +00:00
|
|
|
if (ev->result != ISC_R_SUCCESS) {
|
1999-12-04 01:27:44 +00:00
|
|
|
XDEBUG(("recv result %d (%s)\n", ev->result,
|
|
|
|
isc_result_totext(ev->result)));
|
|
|
|
|
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-08 02:50:00 +00:00
|
|
|
free_buffer(disp, ev->region.base, ev->region.length);
|
|
|
|
|
1999-07-09 00:51:08 +00:00
|
|
|
killit = ISC_FALSE;
|
|
|
|
if (disp->recvs == 0 && disp->refcount == 0)
|
|
|
|
killit = ISC_TRUE;
|
|
|
|
|
|
|
|
UNLOCK(&disp->lock);
|
|
|
|
|
|
|
|
if (killit)
|
|
|
|
destroy(disp);
|
|
|
|
|
|
|
|
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
|
|
|
*/
|
1999-07-08 02:50:00 +00:00
|
|
|
free_buffer(disp, ev->region.base, ev->region.length);
|
1999-06-30 01:33:11 +00:00
|
|
|
goto restart;
|
|
|
|
}
|
|
|
|
|
1999-07-09 20:42:55 +00:00
|
|
|
XDEBUG(("length == %d, buflen = %d, addr = %p\n",
|
|
|
|
ev->n, ev->region.length, ev->region.base));
|
1999-07-08 22:12:37 +00:00
|
|
|
|
1999-06-30 01:33:11 +00:00
|
|
|
/*
|
|
|
|
* Peek into the buffer to see what we can see.
|
|
|
|
*/
|
|
|
|
isc_buffer_init(&source, ev->region.base, ev->region.length,
|
|
|
|
ISC_BUFFERTYPE_BINARY);
|
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);
|
|
|
|
if (dres != DNS_R_SUCCESS) {
|
1999-07-08 02:50:00 +00:00
|
|
|
free_buffer(disp, ev->region.base, ev->region.length);
|
1999-07-09 20:42:55 +00:00
|
|
|
XDEBUG(("dns_message_peekheader(): %s\n",
|
|
|
|
isc_result_totext(dres)));
|
1999-06-30 01:33:11 +00:00
|
|
|
/* XXXMLG log something here... */
|
|
|
|
goto restart;
|
|
|
|
}
|
|
|
|
|
1999-07-09 20:42:55 +00:00
|
|
|
XDEBUG(("Got valid DNS message header, /QR %c, id %d\n",
|
|
|
|
((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);
|
1999-07-09 20:42:55 +00:00
|
|
|
XDEBUG(("Search for response in bucket %d: %s\n",
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
isc_buffer_init(&rev->buffer, ev->region.base, ev->region.length,
|
|
|
|
ISC_BUFFERTYPE_BINARY);
|
|
|
|
isc_buffer_add(&rev->buffer, ev->n);
|
1999-07-09 00:51:08 +00:00
|
|
|
rev->result = DNS_R_SUCCESS;
|
|
|
|
rev->id = id;
|
|
|
|
rev->addr = ev->address;
|
1999-07-09 01:57:55 +00:00
|
|
|
if (queue_request) {
|
|
|
|
ISC_LIST_APPEND(disp->rq_events, rev, link);
|
|
|
|
} else if (queue_response) {
|
|
|
|
ISC_LIST_APPEND(resp->items, rev, link);
|
|
|
|
} else {
|
1999-07-10 00:55:07 +00:00
|
|
|
ISC_EVENT_INIT(rev, sizeof(*rev), 0, NULL, DNS_EVENT_DISPATCH,
|
1999-07-09 01:57:55 +00:00
|
|
|
resp->action, resp->arg, resp, NULL, NULL);
|
1999-07-22 01:34:31 +00:00
|
|
|
XDEBUG(("Sent event %p buffer %p len %d to task %p, resp %p\n",
|
|
|
|
rev, rev->buffer.base, rev->buffer.length,
|
|
|
|
resp->task, resp));
|
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
|
|
|
|
tcp_recv(isc_task_t *task, isc_event_t *ev_in)
|
|
|
|
{
|
|
|
|
dns_dispatch_t *disp = ev_in->arg;
|
|
|
|
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;
|
|
|
|
|
|
|
|
(void)task; /* shut up compiler */
|
|
|
|
|
1999-11-16 21:05:09 +00:00
|
|
|
REQUIRE(VALID_DISPATCH(disp));
|
|
|
|
|
1999-07-12 23:44:31 +00:00
|
|
|
XDEBUG(("Got TCP packet!\n"));
|
|
|
|
|
|
|
|
LOCK(&disp->lock);
|
|
|
|
|
|
|
|
INSIST(disp->recvs > 0);
|
|
|
|
disp->recvs--;
|
|
|
|
|
|
|
|
switch (tcpmsg->result) {
|
|
|
|
case ISC_R_SUCCESS:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ISC_R_EOF:
|
|
|
|
XDEBUG(("Shutting down on EOF\n"));
|
|
|
|
disp->shutdown_why = ISC_R_EOF;
|
|
|
|
disp->shutting_down = 1;
|
|
|
|
do_cancel(disp, NULL);
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
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
|
|
|
|
* structure, and destroy() frees the tcpmsg, so we must
|
|
|
|
* free the event *before* calling destroy().
|
|
|
|
*/
|
|
|
|
isc_event_free(&ev_in);
|
|
|
|
|
1999-07-12 23:44:31 +00:00
|
|
|
if (killit)
|
|
|
|
destroy(disp);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/*
|
|
|
|
* otherwise, on strange error, log it and restart.
|
|
|
|
* XXXMLG
|
|
|
|
*/
|
|
|
|
goto restart;
|
|
|
|
}
|
|
|
|
|
|
|
|
XDEBUG(("result %d, length == %d, addr = %p\n",
|
|
|
|
tcpmsg->result,
|
|
|
|
tcpmsg->buffer.length, tcpmsg->buffer.base));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Peek into the buffer to see what we can see.
|
|
|
|
*/
|
|
|
|
dres = dns_message_peekheader(&tcpmsg->buffer, &id, &flags);
|
|
|
|
if (dres != DNS_R_SUCCESS) {
|
|
|
|
XDEBUG(("dns_message_peekheader(): %s\n",
|
|
|
|
isc_result_totext(dres)));
|
|
|
|
/* XXXMLG log something here... */
|
|
|
|
goto restart;
|
|
|
|
}
|
|
|
|
|
|
|
|
XDEBUG(("Got valid DNS message header, /QR %c, id %d\n",
|
|
|
|
((flags & DNS_MESSAGEFLAG_QR) ? '1' : '0'), id));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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);
|
|
|
|
XDEBUG(("Search for response in bucket %d: %s\n",
|
|
|
|
bucket, (resp == NULL ? "NOT FOUND" : "FOUND")));
|
|
|
|
|
|
|
|
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++;
|
|
|
|
rev->result = DNS_R_SUCCESS;
|
|
|
|
rev->id = id;
|
|
|
|
rev->addr = tcpmsg->address;
|
|
|
|
if (queue_request) {
|
|
|
|
ISC_LIST_APPEND(disp->rq_events, rev, link);
|
|
|
|
} else if (queue_response) {
|
|
|
|
ISC_LIST_APPEND(resp->items, rev, link);
|
|
|
|
} else {
|
|
|
|
ISC_EVENT_INIT(rev, sizeof(*rev), 0, NULL, DNS_EVENT_DISPATCH,
|
|
|
|
resp->action, resp->arg, resp, NULL, NULL);
|
1999-07-22 01:34:31 +00:00
|
|
|
XDEBUG(("Sent event %p buffer %p len %d to task %p, resp %p\n",
|
|
|
|
rev, rev->buffer.base, rev->buffer.length,
|
|
|
|
resp->task, resp));
|
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
|
|
|
/*
|
|
|
|
* disp must be locked
|
|
|
|
*/
|
1999-07-08 02:50:00 +00:00
|
|
|
static void
|
1999-06-30 01:33:11 +00:00
|
|
|
startrecv(dns_dispatch_t *disp)
|
|
|
|
{
|
|
|
|
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-09 20:42:55 +00:00
|
|
|
XDEBUG(("Recv into %p, length %d\n", region.base,
|
|
|
|
region.length));
|
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
|
|
|
XDEBUG(("Starting tcp receive\n"));
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Publics.
|
|
|
|
*/
|
|
|
|
|
1999-07-22 01:34:31 +00:00
|
|
|
isc_result_t
|
1999-06-18 23:54:59 +00:00
|
|
|
dns_dispatch_create(isc_mem_t *mctx, isc_socket_t *sock, isc_task_t *task,
|
|
|
|
unsigned int maxbuffersize,
|
|
|
|
unsigned int maxbuffers, unsigned int maxrequests,
|
1999-12-15 17:14:52 +00:00
|
|
|
unsigned int buckets, unsigned int increment,
|
2000-01-07 01:17:47 +00:00
|
|
|
dns_dispatchmethods_t *methods,
|
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
|
|
|
|
1999-06-18 23:54:59 +00:00
|
|
|
REQUIRE(mctx != NULL);
|
|
|
|
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
|
|
|
|
1999-06-18 23:54:59 +00:00
|
|
|
res = DNS_R_SUCCESS;
|
1999-06-18 02:01:42 +00:00
|
|
|
|
1999-06-18 23:54:59 +00:00
|
|
|
disp = isc_mem_get(mctx, sizeof(dns_dispatch_t));
|
|
|
|
if (disp == NULL)
|
1999-06-18 02:01:42 +00:00
|
|
|
return (DNS_R_NOMEMORY);
|
|
|
|
|
1999-06-18 23:54:59 +00:00
|
|
|
disp->magic = 0;
|
|
|
|
disp->mctx = mctx;
|
|
|
|
disp->buffersize = maxbuffersize;
|
1999-07-09 02:47:55 +00:00
|
|
|
disp->maxrequests = maxrequests;
|
|
|
|
disp->maxbuffers = maxbuffers;
|
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;
|
|
|
|
|
1999-07-09 00:51:08 +00:00
|
|
|
disp->qid_table = isc_mem_get(disp->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) {
|
|
|
|
res = DNS_R_NOMEMORY;
|
|
|
|
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) {
|
|
|
|
res = DNS_R_UNEXPECTED;
|
|
|
|
UNEXPECTED_ERROR(__FILE__, __LINE__, "isc_mutex_init failed");
|
|
|
|
goto out2;
|
|
|
|
}
|
|
|
|
|
1999-07-08 22:12:37 +00:00
|
|
|
disp->epool = NULL;
|
1999-06-18 23:54:59 +00:00
|
|
|
if (isc_mempool_create(mctx, sizeof(dns_dispatchevent_t),
|
|
|
|
&disp->epool) != ISC_R_SUCCESS) {
|
|
|
|
res = DNS_R_NOMEMORY;
|
|
|
|
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;
|
1999-06-18 23:54:59 +00:00
|
|
|
if (isc_mempool_create(mctx, maxbuffersize,
|
|
|
|
&disp->bpool) != ISC_R_SUCCESS) {
|
|
|
|
res = DNS_R_NOMEMORY;
|
|
|
|
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;
|
1999-07-06 19:32:40 +00:00
|
|
|
if (isc_mempool_create(mctx, sizeof(dns_dispentry_t),
|
1999-06-18 23:54:59 +00:00
|
|
|
&disp->rpool) != ISC_R_SUCCESS) {
|
|
|
|
res = DNS_R_NOMEMORY;
|
|
|
|
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) {
|
|
|
|
res = DNS_R_NOMEMORY;
|
|
|
|
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;
|
|
|
|
|
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);
|
1999-07-28 23:04:33 +00:00
|
|
|
XDEBUG(("dns_dispatch_create: attaching to task %p\n", 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);
|
1999-07-28 23:04:33 +00:00
|
|
|
XDEBUG(("dns_dispatch_create: attaching to socket %p\n",
|
|
|
|
disp->socket));
|
1999-06-18 23:54:59 +00:00
|
|
|
|
1999-07-12 23:44:31 +00:00
|
|
|
dns_tcpmsg_init(disp->mctx, disp->socket, &disp->tcpmsg);
|
|
|
|
|
1999-06-18 23:54:59 +00:00
|
|
|
*dispp = disp;
|
1999-06-30 01:33:11 +00:00
|
|
|
|
1999-06-18 02:01:42 +00:00
|
|
|
return (DNS_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:
|
1999-12-15 17:14:52 +00:00
|
|
|
isc_mem_put(mctx, disp->mctx, disp->qid_nbuckets * sizeof(void *));
|
1999-06-18 23:54:59 +00:00
|
|
|
out1:
|
|
|
|
isc_mem_put(mctx, disp, sizeof(dns_dispatch_t));
|
|
|
|
|
|
|
|
return (res);
|
1999-06-16 01:32:31 +00:00
|
|
|
}
|
|
|
|
|
1999-06-18 23:54:59 +00:00
|
|
|
void
|
1999-07-13 00:25:21 +00:00
|
|
|
dns_dispatch_attach(dns_dispatch_t *disp, dns_dispatch_t **dispp)
|
|
|
|
{
|
|
|
|
REQUIRE(VALID_DISPATCH(disp));
|
|
|
|
REQUIRE(dispp != NULL && *dispp == NULL);
|
|
|
|
|
|
|
|
disp->refcount++;
|
|
|
|
|
|
|
|
*dispp = disp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
dns_dispatch_detach(dns_dispatch_t **dispp)
|
1999-06-18 23:54:59 +00:00
|
|
|
{
|
|
|
|
dns_dispatch_t *disp;
|
|
|
|
isc_boolean_t killit;
|
|
|
|
|
|
|
|
REQUIRE(dispp != NULL && VALID_DISPATCH(*dispp));
|
|
|
|
|
|
|
|
disp = *dispp;
|
|
|
|
*dispp = NULL;
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
1999-11-16 21:05:09 +00:00
|
|
|
XDEBUG(("dns_dispatch_detach: refcount = %d\n", disp->refcount));
|
1999-06-18 23:54:59 +00:00
|
|
|
|
|
|
|
UNLOCK(&disp->lock);
|
|
|
|
|
|
|
|
if (killit)
|
|
|
|
destroy(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_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);
|
|
|
|
return (DNS_R_NOMORE);
|
|
|
|
}
|
|
|
|
|
|
|
|
res = isc_mempool_get(disp->rpool);
|
|
|
|
if (res == NULL) {
|
|
|
|
UNLOCK(&disp->lock);
|
|
|
|
return (DNS_R_NOMEMORY);
|
|
|
|
}
|
|
|
|
|
1999-07-09 00:51:08 +00:00
|
|
|
disp->refcount++;
|
|
|
|
disp->requests++;
|
|
|
|
res->task = NULL;
|
|
|
|
isc_task_attach(task, &res->task);
|
1999-07-28 23:04:33 +00:00
|
|
|
XDEBUG(("dns_dispatch_addresponse: attaching to task %p\n",
|
|
|
|
res->task));
|
1999-07-09 00:51:08 +00:00
|
|
|
|
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);
|
|
|
|
|
1999-07-09 20:42:55 +00:00
|
|
|
XDEBUG(("Inserted response into bucket %d\n", bucket));
|
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;
|
|
|
|
|
|
|
|
return (DNS_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
|
|
|
res->magic = 0;
|
|
|
|
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
|
|
|
|
1999-10-07 19:38:39 +00:00
|
|
|
XDEBUG(("dns_dispatch_removeresponse: detaching from task %p\n",
|
|
|
|
res->task));
|
|
|
|
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) {
|
|
|
|
ISC_LIST_UNLINK(res->items, ev, link);
|
|
|
|
if (ev->buffer.base != NULL)
|
|
|
|
free_buffer(disp, ev->buffer.base, ev->buffer.length);
|
|
|
|
free_event(disp, ev);
|
|
|
|
ev = ISC_LIST_HEAD(res->items);
|
|
|
|
}
|
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)
|
|
|
|
destroy(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);
|
|
|
|
return (DNS_R_NOMEMORY);
|
|
|
|
}
|
|
|
|
|
1999-07-09 00:51:08 +00:00
|
|
|
disp->refcount++;
|
|
|
|
disp->requests++;
|
|
|
|
res->task = NULL;
|
|
|
|
isc_task_attach(task, &res->task);
|
1999-07-28 23:04:33 +00:00
|
|
|
XDEBUG(("dns_dispatch_addrequest: attaching to task %p\n",
|
|
|
|
res->task));
|
1999-07-09 00:51:08 +00:00
|
|
|
|
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);
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
return (DNS_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
|
|
|
res->magic = 0;
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
XDEBUG(("dns_dispatch_removerequest: detaching from task %p\n",
|
|
|
|
res->task));
|
|
|
|
isc_task_detach(&res->task);
|
|
|
|
|
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)
|
|
|
|
destroy(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
|
|
|
|
do_next_response(dns_dispatch_t *disp, dns_dispentry_t *resp)
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
ISC_LIST_UNLINK(disp->rq_events, ev, link);
|
|
|
|
|
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;
|
1999-07-22 01:34:31 +00:00
|
|
|
XDEBUG(("Sent event %p for buffer %p (len %d) to task %p, resp %p\n",
|
|
|
|
ev, ev->buffer.base, ev->buffer.length, resp->task, resp));
|
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
|
|
|
|
do_next_request(dns_dispatch_t *disp, dns_dispentry_t *resp)
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
ISC_LIST_UNLINK(disp->rq_events, ev, link);
|
|
|
|
|
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;
|
1999-07-22 01:34:31 +00:00
|
|
|
XDEBUG(("Sent event %p for buffer %p (len %d) to task %p, resp %p\n",
|
|
|
|
ev, ev->buffer.base, ev->buffer.length, resp->task, resp));
|
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
|
|
|
|
do_cancel(dns_dispatch_t *disp, dns_dispentry_t *resp)
|
|
|
|
{
|
1999-07-09 00:51:08 +00:00
|
|
|
dns_dispatchevent_t *ev;
|
|
|
|
|
1999-07-12 23:44:31 +00:00
|
|
|
if (disp->shutdown_out == 1) {
|
|
|
|
XDEBUG(("do_cancel() call ignored\n"));
|
1999-07-08 02:50:00 +00:00
|
|
|
return;
|
1999-07-12 23:44:31 +00:00
|
|
|
}
|
1999-07-22 01:34:31 +00:00
|
|
|
XDEBUG(("do_cancel: disp = %p, resp = %p\n", disp, resp));
|
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
|
|
|
XDEBUG(("do_cancel: passed a NULL response, searching...\n"));
|
|
|
|
if (ISC_LIST_EMPTY(disp->rq_events)) {
|
|
|
|
XDEBUG(("do_cancel: non-empty request list.\n"));
|
|
|
|
resp = ISC_LIST_HEAD(disp->rq_handlers);
|
|
|
|
while (resp != NULL) {
|
|
|
|
XDEBUG(("do_cancel: resp %p, item_out %s\n",
|
|
|
|
resp,
|
|
|
|
(resp->item_out ? "TRUE" : "FALSE")));
|
|
|
|
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;
|
1999-07-22 01:34:31 +00:00
|
|
|
XDEBUG(("Sending failsafe event %p to task %p, resp %p\n",
|
|
|
|
ev, resp->task, resp));
|
|
|
|
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 *
|
|
|
|
dns_dispatch_getsocket(dns_dispatch_t *disp)
|
|
|
|
{
|
|
|
|
REQUIRE(VALID_DISPATCH(disp));
|
|
|
|
|
|
|
|
return (disp->socket);
|
|
|
|
}
|
1999-07-22 01:34:31 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
dns_dispatch_cancel(dns_dispatch_t *disp)
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|