1999-06-16 01:32:31 +00:00
|
|
|
/*
|
2000-02-03 23:50:32 +00:00
|
|
|
* Copyright (C) 1999, 2000 Internet Software Consortium.
|
2000-08-01 01:33:37 +00:00
|
|
|
*
|
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.
|
2000-08-01 01:33:37 +00:00
|
|
|
*
|
2000-07-27 09:55:03 +00:00
|
|
|
* 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.
|
1999-06-16 01:32:31 +00:00
|
|
|
*/
|
|
|
|
|
2000-09-08 22:02:21 +00:00
|
|
|
/* $Id: dispatch.c,v 1.68 2000/09/08 22:02:21 gson Exp $ */
|
2000-06-22 22:00:42 +00:00
|
|
|
|
1999-06-16 01:32:31 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2000-06-21 21:34:43 +00:00
|
|
|
#include <isc/entropy.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>
|
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-05-13 21:57:02 +00:00
|
|
|
#include <isc/string.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;
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
|
|
|
|
/* Locked internally. */
|
|
|
|
isc_mutex_t pool_lock;
|
|
|
|
isc_mempool_t *epool; /* memory pool for events */
|
|
|
|
isc_mempool_t *rpool; /* memory pool request/reply */
|
|
|
|
isc_mempool_t *dpool; /* dispatch allocations */
|
2000-06-21 21:34:43 +00:00
|
|
|
|
|
|
|
isc_entropy_t *entropy; /* entropy source */
|
2000-05-10 21:34:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#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;
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
dns_dispatch_t *disp;
|
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 */
|
2000-05-11 07:33:17 +00:00
|
|
|
isc_sockaddr_t local; /* local address */
|
1999-06-16 01:32:31 +00:00
|
|
|
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. */
|
|
|
|
ISC_LINK(dns_dispatch_t) link;
|
|
|
|
|
|
|
|
/* Locked by "lock". */
|
1999-06-16 01:32:31 +00:00
|
|
|
isc_mutex_t lock; /* locks all below */
|
2000-06-16 00:52:05 +00:00
|
|
|
isc_sockettype_t socktype;
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
unsigned int attributes;
|
1999-06-16 01:32:31 +00:00
|
|
|
unsigned int refcount; /* number of users */
|
|
|
|
isc_mempool_t *bpool; /* memory pool for buffers */
|
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,
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
shutdown_out : 1,
|
|
|
|
connected : 1,
|
|
|
|
tcpmsg_valid : 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 */
|
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
|
|
|
/*
|
2000-05-13 21:57:02 +00:00
|
|
|
* Statics.
|
1999-06-30 01:33:11 +00:00
|
|
|
*/
|
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);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
static isc_boolean_t destroy_disp_ok(dns_dispatch_t *);
|
|
|
|
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);
|
2000-06-20 17:24:47 +00:00
|
|
|
static void *allocate_udp_buffer(dns_dispatch_t *disp);
|
1999-12-15 03:11:00 +00:00
|
|
|
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);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
static void dispatch_free(dns_dispatch_t **dispp);
|
|
|
|
static isc_result_t dispatch_createudp(dns_dispatchmgr_t *mgr,
|
|
|
|
isc_socketmgr_t *sockmgr,
|
|
|
|
isc_taskmgr_t *taskmgr,
|
|
|
|
isc_sockaddr_t *localaddr,
|
|
|
|
unsigned int buffersize,
|
|
|
|
unsigned int maxbuffers,
|
|
|
|
unsigned int maxrequests,
|
|
|
|
unsigned int buckets,
|
|
|
|
unsigned int increment,
|
|
|
|
unsigned int attributes,
|
|
|
|
dns_dispatch_t **dispp);
|
|
|
|
static isc_boolean_t destroy_mgr_ok(dns_dispatchmgr_t *mgr);
|
|
|
|
static void destroy_mgr(dns_dispatchmgr_t **mgrp);
|
|
|
|
|
|
|
|
#define LVL(x) ISC_LOG_DEBUG(x)
|
1999-07-08 02:50:00 +00:00
|
|
|
|
2000-04-29 00:45:26 +00:00
|
|
|
static void
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
mgr_log(dns_dispatchmgr_t *mgr, int level, const char *fmt, ...) {
|
2000-04-29 00:45:26 +00:00
|
|
|
char msgbuf[2048];
|
|
|
|
va_list ap;
|
|
|
|
|
2000-07-17 23:25:35 +00:00
|
|
|
if (! isc_log_wouldlog(dns_lctx, level))
|
|
|
|
return;
|
|
|
|
|
2000-04-29 00:45:26 +00:00
|
|
|
va_start(ap, fmt);
|
|
|
|
vsnprintf(msgbuf, sizeof(msgbuf), fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
isc_log_write(dns_lctx,
|
|
|
|
DNS_LOGCATEGORY_DISPATCH, DNS_LOGMODULE_DISPATCH,
|
|
|
|
level, "dispatchmgr %p: %s", mgr, msgbuf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
dispatch_log(dns_dispatch_t *disp, int level, const char *fmt, ...) {
|
|
|
|
char msgbuf[2048];
|
|
|
|
va_list ap;
|
|
|
|
|
2000-07-13 01:16:22 +00:00
|
|
|
if (! isc_log_wouldlog(dns_lctx, level))
|
|
|
|
return;
|
2000-08-01 01:33:37 +00:00
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
va_start(ap, fmt);
|
|
|
|
vsnprintf(msgbuf, sizeof(msgbuf), fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
isc_log_write(dns_lctx,
|
|
|
|
DNS_LOGCATEGORY_DISPATCH, DNS_LOGMODULE_DISPATCH,
|
|
|
|
level, "dispatch %p: %s", disp, msgbuf);
|
2000-04-29 00:45:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
request_log(dns_dispatch_t *disp, dns_dispentry_t *resp,
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
int level, const char *fmt, ...)
|
2000-04-29 00:45:26 +00:00
|
|
|
{
|
|
|
|
char msgbuf[2048];
|
|
|
|
char peerbuf[256];
|
|
|
|
va_list ap;
|
|
|
|
|
2000-07-17 23:25:35 +00:00
|
|
|
if (! isc_log_wouldlog(dns_lctx, level))
|
|
|
|
return;
|
|
|
|
|
2000-04-29 00:45:26 +00:00
|
|
|
va_start(ap, fmt);
|
|
|
|
vsnprintf(msgbuf, sizeof(msgbuf), fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
if (VALID_RESPONSE(resp)) {
|
2000-05-14 20:52:35 +00:00
|
|
|
isc_sockaddr_format(&resp->host, peerbuf, sizeof peerbuf);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
isc_log_write(dns_lctx, DNS_LOGCATEGORY_DISPATCH,
|
|
|
|
DNS_LOGMODULE_DISPATCH, level,
|
2000-08-24 16:56:48 +00:00
|
|
|
"dispatch %p response %p %s: %s", disp, resp,
|
2000-04-29 00:45:26 +00:00
|
|
|
peerbuf, msgbuf);
|
|
|
|
} else if (VALID_REQUEST(resp)) {
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
isc_log_write(dns_lctx, DNS_LOGCATEGORY_DISPATCH,
|
|
|
|
DNS_LOGMODULE_DISPATCH, level,
|
2000-08-24 16:56:48 +00:00
|
|
|
"dispatch %p request %p: %s", disp, resp,
|
2000-04-29 00:45:26 +00:00
|
|
|
msgbuf);
|
|
|
|
} else {
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
isc_log_write(dns_lctx, DNS_LOGCATEGORY_DISPATCH,
|
|
|
|
DNS_LOGMODULE_DISPATCH, level,
|
|
|
|
"dispatch %p req/resp %p: %s", disp, resp,
|
|
|
|
msgbuf);
|
2000-04-29 00:45:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
2000-06-21 21:34:43 +00:00
|
|
|
dns_dispatch_t *disp = (dns_dispatch_t *)arg;
|
|
|
|
dns_dispatchmgr_t *mgr = disp->mgr;
|
|
|
|
isc_result_t result;
|
|
|
|
isc_uint32_t val;
|
|
|
|
|
|
|
|
if (mgr->entropy != NULL) {
|
|
|
|
result = isc_entropy_getdata(mgr->entropy, &val, sizeof val,
|
|
|
|
NULL, 0);
|
2000-06-21 22:12:23 +00:00
|
|
|
INSIST(result == ISC_R_SUCCESS);
|
|
|
|
lfsr->count = (val & 0x1f) + 32;
|
|
|
|
lfsr->state = val;
|
|
|
|
return;
|
2000-06-21 21:34:43 +00:00
|
|
|
}
|
1999-12-16 00:07:21 +00:00
|
|
|
|
|
|
|
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-13 21:57:02 +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-13 21:57:02 +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);
|
|
|
|
}
|
|
|
|
|
1999-07-08 02:50:00 +00:00
|
|
|
static dns_dispentry_t *
|
2000-05-13 21:57:02 +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-13 21:57:02 +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
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
/*
|
|
|
|
* The dispatch must be locked.
|
|
|
|
*/
|
|
|
|
static isc_boolean_t
|
|
|
|
destroy_disp_ok(dns_dispatch_t *disp)
|
|
|
|
{
|
|
|
|
if (disp->refcount != 0)
|
|
|
|
return (ISC_FALSE);
|
|
|
|
|
|
|
|
if (disp->recvs > 0)
|
|
|
|
return (ISC_FALSE);
|
|
|
|
|
|
|
|
if (disp->shutting_down == 0)
|
|
|
|
return (ISC_FALSE);
|
|
|
|
|
|
|
|
return (ISC_TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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).
|
|
|
|
*
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
* The dispatcher must not be locked.
|
|
|
|
* The manager must be locked.
|
1999-06-30 01:33:11 +00:00
|
|
|
*/
|
|
|
|
static void
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
destroy_disp(dns_dispatch_t **dispp) {
|
2000-05-10 21:34:50 +00:00
|
|
|
dns_dispatchmgr_t *mgr;
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
dns_dispatch_t *disp;
|
2000-05-10 21:34:50 +00:00
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
disp = *dispp;
|
|
|
|
*dispp = NULL;
|
2000-05-10 21:34:50 +00:00
|
|
|
mgr = disp->mgr;
|
|
|
|
|
|
|
|
ISC_LIST_UNLINK(mgr->list, disp, link);
|
1999-07-08 02:50:00 +00:00
|
|
|
|
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
|
|
|
|
2000-01-06 23:01:07 +00:00
|
|
|
isc_socket_detach(&disp->socket);
|
|
|
|
isc_task_detach(&disp->task);
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
dispatch_free(&disp);
|
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-13 21:57:02 +00:00
|
|
|
free_buffer(dns_dispatch_t *disp, void *buf, unsigned int len) {
|
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--;
|
|
|
|
|
2000-06-16 00:52:05 +00:00
|
|
|
switch (disp->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:
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
INSIST(len == disp->buffersize);
|
|
|
|
isc_mempool_put(disp->bpool, buf);
|
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-06-20 17:24:47 +00:00
|
|
|
allocate_udp_buffer(dns_dispatch_t *disp) {
|
1999-07-08 02:50:00 +00:00
|
|
|
void *temp;
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
temp = isc_mempool_get(disp->bpool);
|
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-13 21:57:02 +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;
|
|
|
|
}
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
isc_mempool_put(disp->mgr->epool, ev);
|
1999-07-08 02:50:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline dns_dispatchevent_t *
|
2000-05-13 21:57:02 +00:00
|
|
|
allocate_event(dns_dispatch_t *disp) {
|
1999-07-08 02:50:00 +00:00
|
|
|
dns_dispatchevent_t *ev;
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
ev = isc_mempool_get(disp->mgr->epool);
|
1999-07-08 02:50:00 +00:00
|
|
|
|
|
|
|
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-13 21:57:02 +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;
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
dns_dispatchmgr_t *mgr;
|
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);
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
mgr = disp->mgr;
|
|
|
|
|
2000-04-29 00:45:26 +00:00
|
|
|
dispatch_log(disp, LVL(90),
|
2000-06-16 15:51:58 +00:00
|
|
|
"got packet: requests %d, buffers %d, recvs %d",
|
2000-04-29 00:45:26 +00:00
|
|
|
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--;
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
if (disp->shutting_down) {
|
2000-02-02 23:29:47 +00:00
|
|
|
/*
|
|
|
|
* This dispatcher is shutting down.
|
|
|
|
*/
|
|
|
|
free_buffer(disp, ev->region.base, ev->region.length);
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
isc_event_free(&ev_in);
|
|
|
|
ev = NULL;
|
2000-02-02 23:29:47 +00:00
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
killit = destroy_disp_ok(disp);
|
2000-02-02 23:29:47 +00:00
|
|
|
UNLOCK(&disp->lock);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
if (killit) {
|
|
|
|
LOCK(&mgr->lock);
|
|
|
|
destroy_disp(&disp);
|
|
|
|
killit = destroy_mgr_ok(mgr);
|
|
|
|
UNLOCK(&mgr->lock);
|
|
|
|
if (killit)
|
|
|
|
destroy_mgr(&mgr);
|
|
|
|
}
|
2000-02-02 23:29:47 +00:00
|
|
|
|
|
|
|
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
|
|
|
*/
|
2000-09-07 01:53:31 +00:00
|
|
|
dispatch_log(disp, ISC_LOG_ERROR,
|
2000-09-01 22:41:46 +00:00
|
|
|
"odd socket result in udp_recv(): %s",
|
|
|
|
isc_result_totext(ev->result));
|
|
|
|
|
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-06-16 15:51:58 +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),
|
2000-06-16 15:51:58 +00:00
|
|
|
"got valid DNS message header, /QR %c, id %u",
|
2000-04-29 00:45:26 +00:00
|
|
|
((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 */
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
bucket = dns_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),
|
2000-06-16 15:51:58 +00:00
|
|
|
"search for response in bucket %d: %s",
|
2000-04-29 00:45:26 +00:00
|
|
|
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:
|
|
|
|
*
|
2000-09-08 22:02:21 +00:00
|
|
|
* If I/O result == CANCELED, EOF, or error, free the buffer
|
|
|
|
* and notify everyone as the various queues drain.
|
1999-07-12 23:44:31 +00:00
|
|
|
*
|
|
|
|
* 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-13 21:57:02 +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;
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
dns_dispatchmgr_t *mgr;
|
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));
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
mgr = disp->mgr;
|
|
|
|
|
2000-04-29 00:45:26 +00:00
|
|
|
dispatch_log(disp, LVL(90),
|
2000-06-16 15:51:58 +00:00
|
|
|
"got TCP packet: requests %d, buffers %d, recvs %d",
|
2000-04-29 00:45:26 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2000-09-08 22:02:21 +00:00
|
|
|
if (tcpmsg->result != ISC_R_SUCCESS) {
|
|
|
|
switch (tcpmsg->result) {
|
|
|
|
case ISC_R_CANCELED:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ISC_R_EOF:
|
|
|
|
dispatch_log(disp, LVL(90), "shutting down on EOF");
|
|
|
|
disp->shutdown_why = ISC_R_EOF;
|
|
|
|
disp->shutting_down = 1;
|
|
|
|
do_cancel(disp, NULL);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
dispatch_log(disp, ISC_LOG_ERROR,
|
|
|
|
"shutting down due to TCP "
|
|
|
|
"receive error: %s",
|
|
|
|
isc_result_totext(tcpmsg->result));
|
|
|
|
disp->shutdown_why = ISC_R_EOF;
|
|
|
|
disp->shutting_down = 1;
|
|
|
|
do_cancel(disp, NULL);
|
|
|
|
break;
|
|
|
|
}
|
2000-04-29 00:45:26 +00:00
|
|
|
|
1999-11-16 21:05:09 +00:00
|
|
|
/*
|
2000-08-01 01:33:37 +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);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
disp->shutting_down = 1;
|
1999-11-16 21:05:09 +00:00
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
/*
|
|
|
|
* If the recv() was canceled pass the word on.
|
|
|
|
*/
|
|
|
|
killit = destroy_disp_ok(disp);
|
|
|
|
UNLOCK(&disp->lock);
|
|
|
|
if (killit) {
|
|
|
|
LOCK(&mgr->lock);
|
|
|
|
destroy_disp(&disp);
|
|
|
|
killit = destroy_mgr_ok(mgr);
|
|
|
|
UNLOCK(&mgr->lock);
|
|
|
|
if (killit)
|
|
|
|
destroy_mgr(&mgr);
|
|
|
|
}
|
1999-07-12 23:44:31 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
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-06-16 15:51:58 +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),
|
2000-06-16 15:51:58 +00:00
|
|
|
"got valid DNS message header, /QR %c, id %u",
|
2000-04-29 00:45:26 +00:00
|
|
|
((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) {
|
2000-07-04 01:48:13 +00:00
|
|
|
/*
|
|
|
|
* Query.
|
|
|
|
*/
|
1999-07-12 23:44:31 +00:00
|
|
|
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;
|
|
|
|
} else {
|
2000-07-04 01:48:13 +00:00
|
|
|
/*
|
|
|
|
* Response.
|
|
|
|
*/
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
bucket = dns_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),
|
2000-06-16 15:51:58 +00:00
|
|
|
"search for response in bucket %d: %s",
|
2000-04-29 00:45:26 +00:00
|
|
|
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-13 21:57:02 +00:00
|
|
|
startrecv(dns_dispatch_t *disp) {
|
1999-06-30 01:33:11 +00:00
|
|
|
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-07-09 00:51:08 +00:00
|
|
|
while (disp->recvs < wanted) {
|
2000-06-16 00:52:05 +00:00
|
|
|
switch (disp->socktype) {
|
1999-07-08 02:50:00 +00:00
|
|
|
/*
|
|
|
|
* 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;
|
2000-06-20 17:24:47 +00:00
|
|
|
region.base = allocate_udp_buffer(disp);
|
1999-07-08 02:50:00 +00:00
|
|
|
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
|
2000-05-13 21:57:02 +00:00
|
|
|
destroy_mgr_ok(dns_dispatchmgr_t *mgr) {
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
mgr_log(mgr, LVL(90),
|
|
|
|
"destroy_mgr_ok: shuttingdown=%d, listnonempty=%d, "
|
|
|
|
"epool=%d, rpool=%d, dpool=%d",
|
|
|
|
MGR_IS_SHUTTINGDOWN(mgr), !ISC_LIST_EMPTY(mgr->list),
|
|
|
|
isc_mempool_getallocated(mgr->epool),
|
|
|
|
isc_mempool_getallocated(mgr->rpool),
|
|
|
|
isc_mempool_getallocated(mgr->dpool));
|
2000-05-10 21:34:50 +00:00
|
|
|
if (!MGR_IS_SHUTTINGDOWN(mgr))
|
|
|
|
return (ISC_FALSE);
|
|
|
|
if (!ISC_LIST_EMPTY(mgr->list))
|
|
|
|
return (ISC_FALSE);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
if (isc_mempool_getallocated(mgr->epool) != 0)
|
|
|
|
return (ISC_FALSE);
|
|
|
|
if (isc_mempool_getallocated(mgr->rpool) != 0)
|
|
|
|
return (ISC_FALSE);
|
|
|
|
if (isc_mempool_getallocated(mgr->dpool) != 0)
|
|
|
|
return (ISC_FALSE);
|
2000-05-10 21:34:50 +00:00
|
|
|
|
|
|
|
return (ISC_TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Mgr must be unlocked when calling this function.
|
|
|
|
*/
|
|
|
|
static void
|
2000-05-13 21:57:02 +00:00
|
|
|
destroy_mgr(dns_dispatchmgr_t **mgrp) {
|
2000-05-10 21:34:50 +00:00
|
|
|
isc_mem_t *mctx;
|
|
|
|
dns_dispatchmgr_t *mgr;
|
|
|
|
|
|
|
|
mgr = *mgrp;
|
|
|
|
*mgrp = NULL;
|
|
|
|
|
|
|
|
mctx = mgr->mctx;
|
|
|
|
|
|
|
|
mgr->magic = 0;
|
|
|
|
mgr->mctx = 0;
|
2000-08-26 01:37:00 +00:00
|
|
|
DESTROYLOCK(&mgr->lock);
|
2000-05-10 21:34:50 +00:00
|
|
|
mgr->state = 0;
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
isc_mempool_destroy(&mgr->epool);
|
|
|
|
isc_mempool_destroy(&mgr->rpool);
|
|
|
|
isc_mempool_destroy(&mgr->dpool);
|
|
|
|
|
2000-08-26 01:37:00 +00:00
|
|
|
DESTROYLOCK(&mgr->pool_lock);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
|
2000-06-21 21:34:43 +00:00
|
|
|
if (mgr->entropy != NULL)
|
|
|
|
isc_entropy_detach(&mgr->entropy);
|
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
isc_mem_put(mctx, mgr, sizeof(dns_dispatchmgr_t));
|
|
|
|
isc_mem_detach(&mctx);
|
|
|
|
}
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
static isc_result_t
|
|
|
|
create_socket(isc_socketmgr_t *mgr, isc_sockaddr_t *local,
|
|
|
|
isc_socket_t **sockp)
|
|
|
|
{
|
|
|
|
isc_socket_t *sock;
|
|
|
|
isc_result_t result;
|
|
|
|
|
|
|
|
sock = NULL;
|
|
|
|
result = isc_socket_create(mgr, isc_sockaddr_pf(local),
|
|
|
|
isc_sockettype_udp, &sock);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
return (result);
|
|
|
|
|
|
|
|
result = isc_socket_bind(sock, local);
|
|
|
|
if (result != ISC_R_SUCCESS) {
|
|
|
|
isc_socket_detach(&sock);
|
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
|
|
|
*sockp = sock;
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
}
|
|
|
|
|
1999-06-30 01:33:11 +00:00
|
|
|
/*
|
|
|
|
* Publics.
|
|
|
|
*/
|
|
|
|
|
1999-07-22 01:34:31 +00:00
|
|
|
isc_result_t
|
2000-06-21 21:34:43 +00:00
|
|
|
dns_dispatchmgr_create(isc_mem_t *mctx, isc_entropy_t *entropy,
|
|
|
|
dns_dispatchmgr_t **mgrp)
|
|
|
|
{
|
2000-05-10 21:34:50 +00:00
|
|
|
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);
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
mgr->mctx = NULL;
|
|
|
|
isc_mem_attach(mctx, &mgr->mctx);
|
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
result = isc_mutex_init(&mgr->lock);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
goto deallocate;
|
|
|
|
|
|
|
|
result = isc_mutex_init(&mgr->pool_lock);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
goto kill_lock;
|
|
|
|
|
|
|
|
mgr->epool = NULL;
|
|
|
|
if (isc_mempool_create(mgr->mctx, sizeof(dns_dispatchevent_t),
|
|
|
|
&mgr->epool) != ISC_R_SUCCESS) {
|
|
|
|
result = ISC_R_NOMEMORY;
|
|
|
|
goto kill_pool_lock;
|
|
|
|
}
|
|
|
|
|
|
|
|
mgr->rpool = NULL;
|
|
|
|
if (isc_mempool_create(mgr->mctx, sizeof(dns_dispentry_t),
|
|
|
|
&mgr->rpool) != ISC_R_SUCCESS) {
|
|
|
|
result = ISC_R_NOMEMORY;
|
|
|
|
goto kill_epool;
|
|
|
|
}
|
|
|
|
|
|
|
|
mgr->dpool = NULL;
|
|
|
|
if (isc_mempool_create(mgr->mctx, sizeof(dns_dispatch_t),
|
|
|
|
&mgr->dpool) != ISC_R_SUCCESS) {
|
|
|
|
result = ISC_R_NOMEMORY;
|
|
|
|
goto kill_rpool;
|
2000-05-10 21:34:50 +00:00
|
|
|
}
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
isc_mempool_setname(mgr->epool, "dispmgr_epool");
|
|
|
|
isc_mempool_setfreemax(mgr->epool, 1024);
|
|
|
|
isc_mempool_associatelock(mgr->epool, &mgr->pool_lock);
|
|
|
|
|
|
|
|
isc_mempool_setname(mgr->rpool, "dispmgr_rpool");
|
|
|
|
isc_mempool_setfreemax(mgr->rpool, 1024);
|
|
|
|
isc_mempool_associatelock(mgr->rpool, &mgr->pool_lock);
|
|
|
|
|
|
|
|
isc_mempool_setname(mgr->dpool, "dispmgr_dpool");
|
|
|
|
isc_mempool_setfreemax(mgr->dpool, 1024);
|
|
|
|
isc_mempool_associatelock(mgr->dpool, &mgr->pool_lock);
|
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
mgr->magic = DNS_DISPATCHMGR_MAGIC;
|
|
|
|
mgr->state = 0;
|
|
|
|
ISC_LIST_INIT(mgr->list);
|
|
|
|
|
2000-06-21 21:34:43 +00:00
|
|
|
mgr->entropy = NULL;
|
|
|
|
if (entropy != NULL)
|
|
|
|
isc_entropy_attach(entropy, &mgr->entropy);
|
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
*mgrp = mgr;
|
|
|
|
return (ISC_R_SUCCESS);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
kill_dpool:
|
|
|
|
isc_mempool_destroy(&mgr->dpool);
|
|
|
|
#endif
|
|
|
|
kill_rpool:
|
|
|
|
isc_mempool_destroy(&mgr->rpool);
|
|
|
|
kill_epool:
|
|
|
|
isc_mempool_destroy(&mgr->epool);
|
|
|
|
kill_pool_lock:
|
2000-08-26 01:37:00 +00:00
|
|
|
DESTROYLOCK(&mgr->pool_lock);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
kill_lock:
|
2000-08-26 01:37:00 +00:00
|
|
|
DESTROYLOCK(&mgr->lock);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
deallocate:
|
|
|
|
isc_mem_put(mctx, mgr, sizeof(dns_dispatchmgr_t));
|
|
|
|
isc_mem_detach(&mgr->mctx);
|
|
|
|
|
|
|
|
return (result);
|
2000-05-10 21:34:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
2000-05-13 21:57:02 +00:00
|
|
|
dns_dispatchmgr_destroy(dns_dispatchmgr_t **mgrp) {
|
2000-05-10 21:34:50 +00:00
|
|
|
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;
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
killit = destroy_mgr_ok(mgr);
|
|
|
|
UNLOCK(&mgr->lock);
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
mgr_log(mgr, LVL(90), "destroy: killit=%d", killit);
|
2000-08-01 01:33:37 +00:00
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
if (killit)
|
|
|
|
destroy_mgr(&mgr);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#define ATTRMATCH(_a1, _a2, _mask) (((_a1) & (_mask)) == ((_a2) & (_mask)))
|
|
|
|
|
2000-05-11 07:33:17 +00:00
|
|
|
static isc_boolean_t
|
2000-05-13 21:57:02 +00:00
|
|
|
local_addr_match(dns_dispatch_t *disp, isc_sockaddr_t *addr) {
|
2000-05-11 07:33:17 +00:00
|
|
|
in_port_t port;
|
|
|
|
|
|
|
|
if (addr == NULL)
|
|
|
|
return (ISC_TRUE);
|
|
|
|
|
|
|
|
port = isc_sockaddr_getport(addr);
|
|
|
|
if (port == 0)
|
|
|
|
return (isc_sockaddr_eqaddr(&disp->local, addr));
|
|
|
|
else
|
|
|
|
return (isc_sockaddr_equal(&disp->local, addr));
|
|
|
|
}
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
/*
|
|
|
|
* Requires mgr be locked.
|
|
|
|
*
|
|
|
|
* No dispatcher can be locked by this thread when calling this function.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* NOTE:
|
|
|
|
* If a matching dispatcher is found, it is locked after this function
|
|
|
|
* returns, and must be unlocked by the caller.
|
|
|
|
*/
|
|
|
|
static isc_result_t
|
|
|
|
dispatch_find(dns_dispatchmgr_t *mgr, isc_sockaddr_t *local,
|
|
|
|
unsigned int attributes, unsigned int mask,
|
|
|
|
dns_dispatch_t **dispp)
|
2000-05-10 21:34:50 +00:00
|
|
|
{
|
|
|
|
dns_dispatch_t *disp;
|
|
|
|
isc_result_t result;
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
/*
|
|
|
|
* Make certain that we will not match a private dispatch.
|
|
|
|
*/
|
|
|
|
attributes &= ~DNS_DISPATCHATTR_PRIVATE;
|
|
|
|
mask |= DNS_DISPATCHATTR_PRIVATE;
|
2000-05-10 21:34:50 +00:00
|
|
|
|
|
|
|
disp = ISC_LIST_HEAD(mgr->list);
|
|
|
|
while (disp != NULL) {
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
LOCK(&disp->lock);
|
|
|
|
if ((disp->shutting_down == 0)
|
2000-05-11 07:33:17 +00:00
|
|
|
&& ATTRMATCH(disp->attributes, attributes, mask)
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
&& local_addr_match(disp, local))
|
2000-05-10 21:34:50 +00:00
|
|
|
break;
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
UNLOCK(&disp->lock);
|
2000-05-10 21:34:50 +00:00
|
|
|
disp = ISC_LIST_NEXT(disp, link);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (disp == NULL) {
|
|
|
|
result = ISC_R_NOTFOUND;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
*dispp = disp;
|
2000-05-10 21:34:50 +00:00
|
|
|
result = ISC_R_SUCCESS;
|
|
|
|
out:
|
|
|
|
|
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
/*
|
|
|
|
* Allocate and set important limits.
|
|
|
|
*/
|
|
|
|
static isc_result_t
|
|
|
|
dispatch_allocate(dns_dispatchmgr_t *mgr, unsigned int buffersize,
|
|
|
|
unsigned int maxbuffers, unsigned int maxrequests,
|
|
|
|
unsigned int buckets, unsigned int increment,
|
|
|
|
dns_dispatch_t **dispp)
|
1999-06-16 01:32:31 +00:00
|
|
|
{
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
unsigned int i;
|
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-18 02:01:42 +00:00
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
REQUIRE(VALID_DISPATCHMGR(mgr));
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
REQUIRE(buffersize >= 512 && buffersize < (64 * 1024));
|
|
|
|
REQUIRE(maxbuffers > 0);
|
1999-12-15 17:14:52 +00:00
|
|
|
REQUIRE(buckets < 2097169); /* next prime > 65536 * 32 */
|
|
|
|
REQUIRE(increment > buckets);
|
1999-06-18 23:54:59 +00:00
|
|
|
REQUIRE(dispp != NULL && *dispp == NULL);
|
1999-06-18 02:01:42 +00:00
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
/*
|
|
|
|
* Set up the dispatcher, mostly. Don't bother setting some of
|
|
|
|
* the options that are controlled by tcp vs. udp, etc.
|
|
|
|
*/
|
1999-06-18 02:01:42 +00:00
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
disp = isc_mempool_get(mgr->dpool);
|
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;
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
disp->mgr = mgr;
|
|
|
|
disp->buffersize = buffersize;
|
1999-07-09 02:47:55 +00:00
|
|
|
disp->maxrequests = maxrequests;
|
|
|
|
disp->maxbuffers = maxbuffers;
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
disp->attributes = 0;
|
2000-05-10 21:34:50 +00:00
|
|
|
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;
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
memset(&disp->local, 0, sizeof disp->local);
|
1999-07-08 02:50:00 +00:00
|
|
|
disp->shutting_down = 0;
|
|
|
|
disp->shutdown_out = 0;
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
disp->connected = 0;
|
|
|
|
disp->tcpmsg_valid = 0;
|
1999-07-08 02:50:00 +00:00
|
|
|
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-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;
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
goto deallocate;
|
1999-06-18 23:54:59 +00:00
|
|
|
}
|
|
|
|
|
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");
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
goto deallocate_qidtable;
|
1999-06-18 23:54:59 +00:00
|
|
|
}
|
|
|
|
|
1999-07-08 22:12:37 +00:00
|
|
|
disp->bpool = NULL;
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
if (isc_mempool_create(mgr->mctx, buffersize,
|
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;
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
goto kill_lock;
|
1999-06-18 23:54:59 +00:00
|
|
|
}
|
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 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->bpool, 8);
|
|
|
|
|
|
|
|
disp->failsafe_ev = allocate_event(disp);
|
|
|
|
if (disp->failsafe_ev == NULL) {
|
2000-04-06 22:03:35 +00:00
|
|
|
res = ISC_R_NOMEMORY;
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
goto kill_bpool;
|
1999-07-08 02:50:00 +00:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
*dispp = disp;
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* error returns
|
|
|
|
*/
|
|
|
|
kill_bpool:
|
|
|
|
isc_mempool_destroy(&disp->bpool);
|
|
|
|
kill_lock:
|
2000-08-26 01:37:00 +00:00
|
|
|
DESTROYLOCK(&disp->lock);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
deallocate_qidtable:
|
|
|
|
isc_mem_put(mgr->mctx, disp->qid_table,
|
|
|
|
disp->qid_nbuckets * sizeof(dns_displist_t));
|
|
|
|
deallocate:
|
|
|
|
isc_mempool_put(mgr->dpool, disp);
|
|
|
|
|
|
|
|
return (res);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* MUST be unlocked, and not used by anthing.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
dispatch_free(dns_dispatch_t **dispp)
|
|
|
|
{
|
|
|
|
dns_dispatch_t *disp;
|
|
|
|
dns_dispatchmgr_t *mgr;
|
|
|
|
dns_dispatchevent_t *ev;
|
|
|
|
|
|
|
|
REQUIRE(VALID_DISPATCH(*dispp));
|
|
|
|
disp = *dispp;
|
|
|
|
*dispp = NULL;
|
|
|
|
|
|
|
|
mgr = disp->mgr;
|
|
|
|
REQUIRE(VALID_DISPATCHMGR(mgr));
|
|
|
|
|
|
|
|
if (disp->tcpmsg_valid) {
|
|
|
|
dns_tcpmsg_invalidate(&disp->tcpmsg);
|
|
|
|
disp->tcpmsg_valid = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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, ev_link);
|
|
|
|
free_buffer(disp, ev->buffer.base, ev->buffer.length);
|
|
|
|
free_event(disp, ev);
|
|
|
|
ev = ISC_LIST_HEAD(disp->rq_events);
|
|
|
|
}
|
|
|
|
|
|
|
|
INSIST(disp->buffers == 0);
|
|
|
|
INSIST(disp->requests == 0);
|
|
|
|
INSIST(disp->recvs == 0);
|
|
|
|
|
|
|
|
isc_mempool_put(mgr->epool, disp->failsafe_ev);
|
|
|
|
disp->failsafe_ev = NULL;
|
|
|
|
|
|
|
|
isc_mempool_destroy(&disp->bpool);
|
2000-08-26 01:37:00 +00:00
|
|
|
DESTROYLOCK(&disp->lock);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
isc_mem_put(mgr->mctx, disp->qid_table,
|
|
|
|
disp->qid_nbuckets * sizeof(dns_displist_t));
|
|
|
|
disp->mgr = NULL;
|
|
|
|
disp->magic = 0;
|
|
|
|
isc_mempool_put(mgr->dpool, disp);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
isc_result_t
|
|
|
|
dns_dispatch_createtcp(dns_dispatchmgr_t *mgr, isc_socket_t *sock,
|
|
|
|
isc_taskmgr_t *taskmgr, unsigned int buffersize,
|
|
|
|
unsigned int maxbuffers, unsigned int maxrequests,
|
|
|
|
unsigned int buckets, unsigned int increment,
|
|
|
|
unsigned int attributes, dns_dispatch_t **dispp)
|
|
|
|
{
|
|
|
|
isc_result_t result;
|
|
|
|
dns_dispatch_t *disp;
|
|
|
|
|
|
|
|
REQUIRE(VALID_DISPATCHMGR(mgr));
|
|
|
|
REQUIRE(isc_socket_gettype(sock) == isc_sockettype_tcp);
|
|
|
|
REQUIRE((attributes & DNS_DISPATCHATTR_TCP) != 0);
|
2000-07-04 01:48:13 +00:00
|
|
|
REQUIRE((attributes & DNS_DISPATCHATTR_UDP) == 0);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
|
|
|
|
attributes |= DNS_DISPATCHATTR_PRIVATE; /* XXXMLG */
|
|
|
|
|
|
|
|
LOCK(&mgr->lock);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* dispatch_allocate() checks mgr, buffersize, maxbuffers,
|
|
|
|
* buckets, and increment for us.
|
|
|
|
*/
|
|
|
|
disp = NULL;
|
|
|
|
result = dispatch_allocate(mgr, buffersize, maxbuffers, maxrequests,
|
|
|
|
buckets, increment, &disp);
|
|
|
|
if (result != ISC_R_SUCCESS) {
|
|
|
|
UNLOCK(&mgr->lock);
|
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
2000-06-16 00:52:05 +00:00
|
|
|
disp->socktype = isc_sockettype_tcp;
|
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);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
|
|
|
|
disp->recvs_wanted = 1;
|
|
|
|
|
|
|
|
disp->task = NULL;
|
|
|
|
result = isc_task_create(taskmgr, 0, &disp->task);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
goto kill_socket;
|
1999-06-18 23:54:59 +00:00
|
|
|
|
2000-06-01 22:00:09 +00:00
|
|
|
isc_task_setname(disp->task, "tcpdispatch", disp);
|
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
dns_tcpmsg_init(mgr->mctx, disp->socket, &disp->tcpmsg);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
disp->tcpmsg_valid = 1;
|
|
|
|
|
|
|
|
disp->attributes = attributes;
|
2000-05-10 21:34:50 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Append it to the dispatcher list.
|
|
|
|
*/
|
|
|
|
ISC_LIST_APPEND(mgr->list, disp, link);
|
|
|
|
UNLOCK(&mgr->lock);
|
1999-07-12 23:44:31 +00:00
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
mgr_log(mgr, LVL(90), "created TCP dispatcher %p", disp);
|
|
|
|
dispatch_log(disp, LVL(90), "created task %p", disp->task);
|
|
|
|
|
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
|
|
|
|
|
|
|
/*
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
* Error returns.
|
1999-06-18 23:54:59 +00:00
|
|
|
*/
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
kill_socket:
|
|
|
|
isc_socket_detach(&disp->socket);
|
|
|
|
dispatch_free(&disp);
|
1999-06-18 23:54:59 +00:00
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
UNLOCK(&mgr->lock);
|
|
|
|
|
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
|
|
|
isc_result_t
|
|
|
|
dns_dispatch_getudp(dns_dispatchmgr_t *mgr, isc_socketmgr_t *sockmgr,
|
|
|
|
isc_taskmgr_t *taskmgr, isc_sockaddr_t *localaddr,
|
|
|
|
unsigned int buffersize,
|
|
|
|
unsigned int maxbuffers, unsigned int maxrequests,
|
|
|
|
unsigned int buckets, unsigned int increment,
|
|
|
|
unsigned int attributes, unsigned int mask,
|
|
|
|
dns_dispatch_t **dispp)
|
|
|
|
{
|
|
|
|
isc_result_t result;
|
|
|
|
dns_dispatch_t *disp;
|
|
|
|
|
|
|
|
REQUIRE(VALID_DISPATCHMGR(mgr));
|
|
|
|
REQUIRE(sockmgr != NULL);
|
|
|
|
REQUIRE(localaddr != NULL);
|
|
|
|
REQUIRE(taskmgr != NULL);
|
|
|
|
REQUIRE(buffersize >= 512 && buffersize < (64 * 1024));
|
|
|
|
REQUIRE(maxbuffers > 0);
|
|
|
|
REQUIRE(buckets < 2097169); /* next prime > 65536 * 32 */
|
|
|
|
REQUIRE(increment > buckets);
|
|
|
|
REQUIRE(dispp != NULL && *dispp == NULL);
|
|
|
|
REQUIRE((attributes & DNS_DISPATCHATTR_TCP) == 0);
|
|
|
|
|
|
|
|
LOCK(&mgr->lock);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* First, see if we have a dispatcher that matches.
|
|
|
|
*/
|
|
|
|
disp = NULL;
|
|
|
|
result = dispatch_find(mgr, localaddr, attributes, mask, &disp);
|
|
|
|
if (result == ISC_R_SUCCESS) {
|
|
|
|
disp->refcount++;
|
|
|
|
|
|
|
|
if (disp->maxbuffers < maxbuffers) {
|
|
|
|
isc_mempool_setmaxalloc(disp->bpool, maxbuffers);
|
|
|
|
disp->maxbuffers = maxbuffers;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (disp->maxrequests < maxrequests)
|
|
|
|
disp->maxrequests = maxrequests;
|
|
|
|
|
|
|
|
UNLOCK(&disp->lock);
|
|
|
|
UNLOCK(&mgr->lock);
|
|
|
|
|
|
|
|
*dispp = disp;
|
|
|
|
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Nope, create one.
|
|
|
|
*/
|
|
|
|
result = dispatch_createudp(mgr, sockmgr, taskmgr, localaddr,
|
|
|
|
buffersize, maxbuffers, maxrequests,
|
|
|
|
buckets, increment, attributes, &disp);
|
|
|
|
if (result != ISC_R_SUCCESS) {
|
|
|
|
UNLOCK(&mgr->lock);
|
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
|
|
|
UNLOCK(&mgr->lock);
|
|
|
|
*dispp = disp;
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* mgr should be locked.
|
|
|
|
*/
|
|
|
|
static isc_result_t
|
|
|
|
dispatch_createudp(dns_dispatchmgr_t *mgr, isc_socketmgr_t *sockmgr,
|
|
|
|
isc_taskmgr_t *taskmgr,
|
|
|
|
isc_sockaddr_t *localaddr, unsigned int buffersize,
|
|
|
|
unsigned int maxbuffers, unsigned int maxrequests,
|
|
|
|
unsigned int buckets, unsigned int increment,
|
2000-06-21 21:34:43 +00:00
|
|
|
unsigned int attributes,
|
|
|
|
dns_dispatch_t **dispp)
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
{
|
|
|
|
isc_result_t result;
|
|
|
|
dns_dispatch_t *disp;
|
|
|
|
isc_socket_t *sock;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* dispatch_allocate() checks mgr, buffersize, maxbuffers,
|
|
|
|
* buckets, and increment for us.
|
|
|
|
*/
|
|
|
|
disp = NULL;
|
|
|
|
result = dispatch_allocate(mgr, buffersize, maxbuffers, maxrequests,
|
|
|
|
buckets, increment, &disp);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
return (result);
|
|
|
|
|
|
|
|
result = create_socket(sockmgr, localaddr, &sock);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
goto deallocate_dispatch;
|
|
|
|
|
|
|
|
disp->local = *localaddr;
|
|
|
|
disp->socket = sock;
|
2000-06-16 00:52:05 +00:00
|
|
|
disp->socktype = isc_sockettype_udp;
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
|
|
|
|
disp->recvs_wanted = 4; /* XXXMLG config option */
|
|
|
|
|
|
|
|
|
|
|
|
disp->task = NULL;
|
|
|
|
result = isc_task_create(taskmgr, 0, &disp->task);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
goto kill_socket;
|
|
|
|
|
2000-06-01 22:00:09 +00:00
|
|
|
isc_task_setname(disp->task, "udpdispatch", disp);
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
attributes &= ~DNS_DISPATCHATTR_TCP;
|
|
|
|
attributes |= DNS_DISPATCHATTR_UDP;
|
|
|
|
disp->attributes = attributes;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Append it to the dispatcher list.
|
|
|
|
*/
|
|
|
|
ISC_LIST_APPEND(mgr->list, disp, link);
|
|
|
|
|
|
|
|
mgr_log(mgr, LVL(90), "created UDP dispatcher %p", disp);
|
|
|
|
dispatch_log(disp, LVL(90), "created task %p", disp->task);
|
|
|
|
dispatch_log(disp, LVL(90), "created socket %p", disp->socket);
|
|
|
|
|
|
|
|
*dispp = disp;
|
|
|
|
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Error returns.
|
|
|
|
*/
|
|
|
|
kill_socket:
|
|
|
|
isc_socket_detach(&disp->socket);
|
|
|
|
deallocate_dispatch:
|
|
|
|
dispatch_free(&disp);
|
|
|
|
|
|
|
|
return (result);
|
1999-06-16 01:32:31 +00:00
|
|
|
}
|
|
|
|
|
1999-06-18 23:54:59 +00:00
|
|
|
void
|
2000-05-13 21:57:02 +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;
|
|
|
|
}
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
/*
|
|
|
|
* It is important to lock the manager while we are deleting the dispatch,
|
|
|
|
* since dns_dispatch_getudp will call dispatch_find, which returns to
|
|
|
|
* the caller a dispatch but does not attach to it until later. _getudp
|
|
|
|
* locks the manager, however, so locking it here will keep us from attaching
|
|
|
|
* to a dispatcher that is in the process of going away.
|
|
|
|
*/
|
1999-07-13 00:25:21 +00:00
|
|
|
void
|
2000-05-13 21:57:02 +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;
|
|
|
|
|
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);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
disp->shutting_down = 1;
|
1999-07-09 00:51:08 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
killit = destroy_disp_ok(disp);
|
1999-06-18 23:54:59 +00:00
|
|
|
UNLOCK(&disp->lock);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
if (killit) {
|
|
|
|
LOCK(&mgr->lock);
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
if (disp->requests >= disp->maxrequests) {
|
1999-07-09 02:47:55 +00:00
|
|
|
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.
|
|
|
|
*/
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
id = dns_randomid(disp);
|
|
|
|
bucket = dns_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;
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
bucket = dns_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
|
|
|
}
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
res = isc_mempool_get(disp->mgr->rpool);
|
1999-06-18 02:01:42 +00:00
|
|
|
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);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
res->disp = disp;
|
1999-06-18 02:01:42 +00:00
|
|
|
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);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
res->magic = RESPONSE_MAGIC;
|
1999-06-18 02:01:42 +00:00
|
|
|
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
|
|
|
|
2000-06-20 23:52:54 +00:00
|
|
|
if (((disp->attributes & DNS_DISPATCHATTR_UDP) != 0) ||
|
|
|
|
((disp->attributes & DNS_DISPATCHATTR_CONNECTED) != 0))
|
|
|
|
startrecv(disp);
|
1999-07-09 00:51:08 +00:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2000-06-20 23:52:54 +00:00
|
|
|
void
|
|
|
|
dns_dispatch_starttcp(dns_dispatch_t *disp) {
|
|
|
|
|
|
|
|
REQUIRE(VALID_DISPATCH(disp));
|
2000-08-01 01:33:37 +00:00
|
|
|
|
2000-06-20 23:52:54 +00:00
|
|
|
dispatch_log(disp, LVL(90), "starttcp %p", disp->task);
|
|
|
|
|
|
|
|
LOCK(&disp->lock);
|
|
|
|
disp->attributes |= DNS_DISPATCHATTR_CONNECTED;
|
|
|
|
startrecv(disp);
|
|
|
|
UNLOCK(&disp->lock);
|
|
|
|
}
|
|
|
|
|
1999-06-18 02:01:42 +00:00
|
|
|
void
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
dns_dispatch_removeresponse(dns_dispentry_t **resp,
|
1999-06-18 02:01:42 +00:00
|
|
|
dns_dispatchevent_t **sockevent)
|
1999-06-16 01:32:31 +00:00
|
|
|
{
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
dns_dispatchmgr_t *mgr;
|
|
|
|
dns_dispatch_t *disp;
|
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(resp != NULL);
|
|
|
|
REQUIRE(VALID_RESPONSE(*resp));
|
|
|
|
|
|
|
|
res = *resp;
|
|
|
|
*resp = NULL;
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
disp = res->disp;
|
|
|
|
REQUIRE(VALID_DISPATCH(disp));
|
|
|
|
mgr = disp->mgr;
|
|
|
|
REQUIRE(VALID_DISPATCHMGR(mgr));
|
|
|
|
|
1999-06-18 02:01:42 +00:00
|
|
|
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);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
disp->shutting_down = 1;
|
1999-07-09 00:51:08 +00:00
|
|
|
}
|
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;
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
isc_mempool_put(disp->mgr->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
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
killit = destroy_disp_ok(disp);
|
1999-06-18 02:01:42 +00:00
|
|
|
UNLOCK(&disp->lock);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
if (killit) {
|
|
|
|
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_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);
|
|
|
|
}
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
if (disp->requests >= disp->maxrequests) {
|
1999-07-09 02:47:55 +00:00
|
|
|
UNLOCK(&disp->lock);
|
1999-07-10 00:15:41 +00:00
|
|
|
return (ISC_R_QUOTA);
|
1999-07-09 02:47:55 +00:00
|
|
|
}
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
res = isc_mempool_get(disp->mgr->rpool);
|
1999-06-18 02:01:42 +00:00
|
|
|
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;
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
res->disp = disp;
|
1999-06-18 02:01:42 +00:00
|
|
|
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
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
dns_dispatch_removerequest(dns_dispentry_t **resp,
|
1999-06-18 02:01:42 +00:00
|
|
|
dns_dispatchevent_t **sockevent)
|
1999-06-16 01:32:31 +00:00
|
|
|
{
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
dns_dispatchmgr_t *mgr;
|
|
|
|
dns_dispatch_t *disp;
|
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(resp != NULL);
|
|
|
|
REQUIRE(VALID_REQUEST(*resp));
|
|
|
|
|
|
|
|
res = *resp;
|
|
|
|
*resp = NULL;
|
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
disp = res->disp;
|
|
|
|
REQUIRE(VALID_DISPATCH(disp));
|
|
|
|
mgr = disp->mgr;
|
|
|
|
REQUIRE(VALID_DISPATCHMGR(mgr));
|
|
|
|
|
1999-06-18 02:01:42 +00:00
|
|
|
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);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
disp->shutting_down = 1;
|
1999-07-09 00:51:08 +00:00
|
|
|
}
|
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;
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
isc_mempool_put(disp->mgr->rpool, res);
|
1999-07-22 01:34:31 +00:00
|
|
|
if (disp->shutting_down == 1)
|
|
|
|
do_cancel(disp, NULL);
|
|
|
|
else
|
|
|
|
startrecv(disp);
|
1999-06-18 02:01:42 +00:00
|
|
|
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
killit = destroy_disp_ok(disp);
|
1999-06-18 02:01:42 +00:00
|
|
|
UNLOCK(&disp->lock);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
if (killit) {
|
|
|
|
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-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-13 21:57:02 +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)
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
do_cancel(disp, NULL);
|
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-13 21:57:02 +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)
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
do_cancel(disp, NULL);
|
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-13 21:57:02 +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
|
|
|
|
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),
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
"cancel: failsafe event %p -> 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-13 21:57:02 +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-13 21:57:02 +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)
|
|
|
|
{
|
2000-09-01 07:16:06 +00:00
|
|
|
REQUIRE(VALID_DISPATCH(disp));
|
|
|
|
|
|
|
|
/* XXXMLG
|
|
|
|
* Should check for valid attributes here!
|
|
|
|
*/
|
|
|
|
|
2000-05-10 21:34:50 +00:00
|
|
|
LOCK(&disp->lock);
|
|
|
|
disp->attributes &= ~mask;
|
|
|
|
disp->attributes |= (attributes & mask);
|
|
|
|
UNLOCK(&disp->lock);
|
|
|
|
}
|
2000-05-11 07:33:17 +00:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
void
|
2000-05-13 21:57:02 +00:00
|
|
|
dns_dispatchmgr_dump(dns_dispatchmgr_t *mgr) {
|
2000-05-11 07:33:17 +00:00
|
|
|
dns_dispatch_t *disp;
|
|
|
|
char foo[1024];
|
|
|
|
|
|
|
|
disp = ISC_LIST_HEAD(mgr->list);
|
|
|
|
while (disp != NULL) {
|
2000-05-14 20:52:35 +00:00
|
|
|
isc_sockaddr_format(&disp->local, foo, sizeof foo);
|
Merge the mlg-20000518 branch onto the mainline. Change summary:
dns_dispatch_create() no longer exists. dns_dispatch_createtcp()
and dns_dispatch_getudp() are the replacements. _createtcp() takes
a bound, connected TCP socket, while _getudp() will search for
a sharable UDP socket, and if found, attach to it and return a
pointer to it. If one is not found, it will create a udp socket,
bind it to a supplied local address, and create a new dispatcher
around it.
dns_dispatch_remove{request,response}() no longer take the dispatch
as an argument.
query-source can now be set per view.
The dispatch manager holds onto three memory pools, one for
allocating dispatchers from, one for events, and one for
requests/replies. The free list on these pools is hard-coded,
but set to 1024. This keeps us from having to dig into the
isc_mem_t the pools draw from as often.
dns_resolver_create() and dns_view_createresolver() require that
valid dispatchers be passed in; dispatchers are no longer created
for the caller.
2000-05-19 21:46:46 +00:00
|
|
|
printf("\tdispatch %p, addr %s\n", disp, foo);
|
2000-05-11 07:33:17 +00:00
|
|
|
disp = ISC_LIST_NEXT(disp, link);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|