1999-09-21 22:46:42 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 1999 Internet Software Consortium.
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM DISCLAIMS
|
|
|
|
* ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
|
|
|
|
* CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
|
|
* PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
|
|
|
|
* ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
|
|
|
|
* SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
1999-09-23 00:43:10 +00:00
|
|
|
/*
|
|
|
|
* Implementation notes
|
|
|
|
* --------------------
|
|
|
|
*
|
|
|
|
* In handles, if task == NULL, no events will be generated, and no events
|
|
|
|
* have been sent. If task != NULL but taskaction == NULL, an event has been
|
|
|
|
* posted but not yet freed. If neigher are NULL, no event was posted.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-09-21 22:46:42 +00:00
|
|
|
#include <config.h>
|
|
|
|
|
1999-09-22 00:26:20 +00:00
|
|
|
#include <isc/assertions.h>
|
1999-09-25 01:25:46 +00:00
|
|
|
#include <isc/magic.h>
|
1999-09-22 01:01:14 +00:00
|
|
|
#include <isc/mutex.h>
|
1999-09-24 23:54:42 +00:00
|
|
|
#include <isc/mutexblock.h>
|
1999-09-23 00:43:10 +00:00
|
|
|
#include <isc/event.h>
|
1999-09-22 00:26:20 +00:00
|
|
|
|
1999-09-21 22:46:42 +00:00
|
|
|
#include <dns/address.h>
|
1999-09-23 00:43:10 +00:00
|
|
|
#include <dns/name.h>
|
|
|
|
|
|
|
|
#include "../isc/util.h"
|
1999-09-21 22:46:42 +00:00
|
|
|
|
1999-09-25 01:25:46 +00:00
|
|
|
#define DNS_ADB_MAGIC 0x44616462 /* Dadb. */
|
|
|
|
#define DNS_ADB_VALID(x) ISC_MAGIC_VALID(x, DNS_ADB_MAGIC)
|
|
|
|
#define DNS_ADBNAME_MAGIC 0x6164624e /* adbN. */
|
|
|
|
#define DNS_ADBNAME_VALID(x) ISC_MAGIC_VALID(x, DNS_ADBNAME_MAGIC)
|
|
|
|
#define DNS_ADBNAMEHOOK_MAGIC 0x61644e48 /* adNH. */
|
|
|
|
#define DNS_ADBNAMEHOOK_VALID(x) ISC_MAGIC_VALID(x, DNS_ADBNAMEHOOK_MAGIC)
|
|
|
|
#define DNS_ADBZONEINFO_MAGIC 0x6164625a /* adbZ. */
|
|
|
|
#define DNS_ADBZONEINFO_VALID(x) ISC_MAGIC_VALID(x, DNS_ADBZONEINFO_MAGIC)
|
|
|
|
#define DNS_ADBENTRY_MAGIC 0x61646245 /* adbE. */
|
|
|
|
#define DNS_ADBENTRY_VALID(x) ISC_MAGIC_VALID(x, DNS_ADBENTRY_MAGIC)
|
1999-09-22 00:26:20 +00:00
|
|
|
|
1999-09-23 00:43:10 +00:00
|
|
|
/*
|
|
|
|
* Lengths of lists needs to be powers of two.
|
|
|
|
*/
|
|
|
|
#define DNS_ADBNAMELIST_LENGTH 16 /* how many buckets for names */
|
|
|
|
#define DNS_ADBENTRYLIST_LENGTH 16 /* how many buckets for addresses */
|
|
|
|
|
|
|
|
#define FREE_ITEMS 16 /* free count for memory pools */
|
|
|
|
#define FILL_COUNT 8 /* fill count for memory pools */
|
1999-09-22 01:01:14 +00:00
|
|
|
|
1999-09-22 00:26:20 +00:00
|
|
|
typedef struct dns_adbname dns_adbname_t;
|
1999-09-22 01:01:14 +00:00
|
|
|
typedef ISC_LIST(dns_adbname_t) dns_adbnamelist_t;
|
1999-09-22 00:26:20 +00:00
|
|
|
typedef struct dns_adbnamehook dns_adbnamehook_t;
|
|
|
|
typedef struct dns_adbzoneinfo dns_adbzoneinfo_t;
|
1999-09-23 00:43:10 +00:00
|
|
|
typedef ISC_LIST(dns_adbentry_t) dns_adbentrylist_t;
|
1999-09-21 22:46:42 +00:00
|
|
|
|
|
|
|
struct dns_adb {
|
1999-09-22 00:26:20 +00:00
|
|
|
unsigned int magic;
|
|
|
|
|
|
|
|
isc_mutex_t lock;
|
|
|
|
isc_mem_t *mctx;
|
|
|
|
|
1999-09-23 00:43:10 +00:00
|
|
|
isc_mutex_t mplock;
|
1999-09-22 00:26:20 +00:00
|
|
|
isc_mempool_t *nmp; /* dns_adbname_t */
|
|
|
|
isc_mempool_t *nhmp; /* dns_adbnamehook_t */
|
|
|
|
isc_mempool_t *zimp; /* dns_adbzoneinfo_t */
|
|
|
|
isc_mempool_t *emp; /* dns_adbentry_t */
|
|
|
|
isc_mempool_t *ahmp; /* dns_adbhandle_t */
|
|
|
|
isc_mempool_t *aimp; /* dns_adbaddrinfo_t */
|
|
|
|
|
1999-09-22 01:01:14 +00:00
|
|
|
/*
|
|
|
|
* Bucketized locks and lists for names.
|
|
|
|
*/
|
|
|
|
dns_adbnamelist_t names[DNS_ADBNAMELIST_LENGTH];
|
|
|
|
isc_mutex_t namelocks[DNS_ADBNAMELIST_LENGTH];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Bucketized locks for entries.
|
|
|
|
*/
|
1999-09-23 00:43:10 +00:00
|
|
|
dns_adbentrylist_t entries[DNS_ADBENTRYLIST_LENGTH];
|
|
|
|
isc_mutex_t entrylocks[DNS_ADBENTRYLIST_LENGTH];
|
1999-09-22 01:01:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* List of running and idle handles.
|
|
|
|
*/
|
|
|
|
ISC_LIST(dns_adbhandle_t) running_handles;
|
|
|
|
ISC_LIST(dns_adbhandle_t) idle_handles;
|
1999-09-21 22:46:42 +00:00
|
|
|
};
|
|
|
|
|
1999-09-22 00:26:20 +00:00
|
|
|
struct dns_adbname {
|
|
|
|
unsigned int magic;
|
1999-09-23 00:43:10 +00:00
|
|
|
dns_name_t name;
|
1999-09-22 00:26:20 +00:00
|
|
|
ISC_LIST(dns_adbnamehook_t) namehooks;
|
1999-09-23 00:43:10 +00:00
|
|
|
ISC_LINK(dns_adbname_t) link;
|
1999-09-22 00:26:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* dns_adbnamehook_t
|
|
|
|
*
|
|
|
|
* This is a small widget that dangles off a dns_adbname_t. It contains a
|
|
|
|
* pointer to the address information about this host, and a link to the next
|
|
|
|
* namehook that will contain the next address this host has.
|
|
|
|
*/
|
|
|
|
struct dns_adbnamehook {
|
|
|
|
unsigned int magic;
|
1999-09-23 00:43:10 +00:00
|
|
|
dns_adbentry_t *entry;
|
1999-09-22 00:26:20 +00:00
|
|
|
ISC_LINK(dns_adbnamehook_t) link;
|
1999-09-21 22:46:42 +00:00
|
|
|
};
|
|
|
|
|
1999-09-22 00:26:20 +00:00
|
|
|
/*
|
|
|
|
* dns_adbzoneinfo_t
|
|
|
|
*
|
|
|
|
* This is a small widget that holds zone-specific information about an
|
|
|
|
* address. Currently limited to lameness, but could just as easily be
|
|
|
|
* extended to other types of information about zones.
|
|
|
|
*/
|
|
|
|
struct dns_adbzoneinfo {
|
|
|
|
unsigned int magic;
|
|
|
|
|
|
|
|
dns_name_t *zone;
|
|
|
|
unsigned int lame_timer;
|
|
|
|
|
|
|
|
ISC_LINK(dns_adbzoneinfo_t) link;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* An address entry. It holds quite a bit of information about addresses,
|
|
|
|
* including edns state, rtt, and of course the address of the host.
|
|
|
|
*/
|
1999-09-21 22:46:42 +00:00
|
|
|
struct dns_adbentry {
|
1999-09-22 00:26:20 +00:00
|
|
|
unsigned int magic;
|
|
|
|
|
1999-09-23 00:43:10 +00:00
|
|
|
int lock_bucket;
|
1999-09-22 00:26:20 +00:00
|
|
|
unsigned int refcount;
|
|
|
|
|
|
|
|
unsigned int flags;
|
|
|
|
int goodness; /* bad <= 0 < good */
|
|
|
|
unsigned int srtt;
|
|
|
|
isc_sockaddr_t sockaddr;
|
|
|
|
|
|
|
|
ISC_LIST(dns_adbzoneinfo_t) zoneinfo;
|
1999-09-23 00:43:10 +00:00
|
|
|
ISC_LINK(dns_adbentry_t) link;
|
1999-09-21 22:46:42 +00:00
|
|
|
};
|
|
|
|
|
1999-09-22 00:26:20 +00:00
|
|
|
/*
|
1999-09-23 00:43:10 +00:00
|
|
|
* Internal functions (and prototypes).
|
|
|
|
*/
|
|
|
|
static dns_adbname_t *new_adbname(dns_adb_t *);
|
|
|
|
static dns_adbnamehook_t *new_adbnamehook(dns_adb_t *, dns_adbentry_t *);
|
|
|
|
static dns_adbzoneinfo_t *new_adbzoneinfo(dns_adb_t *);
|
|
|
|
static dns_adbentry_t *new_adbentry(dns_adb_t *);
|
|
|
|
static dns_adbhandle_t *new_adbhandle(dns_adb_t *);
|
|
|
|
static dns_adbaddrinfo_t *new_adbaddrinfo(dns_adb_t *, dns_adbentry_t *);
|
|
|
|
static dns_adbname_t *find_name_and_lock(dns_adb_t *, dns_name_t *, int *);
|
|
|
|
static dns_adbentry_t *find_entry_and_lock(dns_adb_t *, isc_sockaddr_t *,
|
|
|
|
int *);
|
|
|
|
|
|
|
|
static dns_adbname_t *
|
|
|
|
new_adbname(dns_adb_t *adb)
|
|
|
|
{
|
|
|
|
dns_adbname_t *name;
|
|
|
|
|
|
|
|
name = isc_mempool_get(adb->nmp);
|
|
|
|
if (name == NULL)
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
name->magic = DNS_ADBNAME_MAGIC;
|
|
|
|
dns_name_init(&name->name, NULL);
|
|
|
|
ISC_LIST_INIT(name->namehooks);
|
|
|
|
ISC_LINK_INIT(name, link);
|
|
|
|
|
|
|
|
return (name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static dns_adbnamehook_t *
|
|
|
|
new_adbnamehook(dns_adb_t *adb, dns_adbentry_t *entry)
|
|
|
|
{
|
|
|
|
dns_adbnamehook_t *nh;
|
|
|
|
|
|
|
|
nh = isc_mempool_get(adb->nhmp);
|
|
|
|
if (nh == NULL)
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
nh->magic = DNS_ADBNAMEHOOK_MAGIC;
|
|
|
|
nh->entry = entry;
|
|
|
|
ISC_LINK_INIT(nh, link);
|
|
|
|
|
|
|
|
return (nh);
|
|
|
|
}
|
|
|
|
|
|
|
|
static dns_adbzoneinfo_t *
|
|
|
|
new_adbzoneinfo(dns_adb_t *adb)
|
|
|
|
{
|
|
|
|
dns_adbzoneinfo_t *zi;
|
|
|
|
|
|
|
|
zi = isc_mempool_get(adb->zimp);
|
|
|
|
if (zi == NULL)
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
zi->magic = DNS_ADBZONEINFO_MAGIC;
|
|
|
|
zi->zone = NULL;
|
|
|
|
zi->lame_timer = 0;
|
|
|
|
ISC_LINK_INIT(zi, link);
|
|
|
|
|
|
|
|
return (zi);
|
|
|
|
}
|
|
|
|
|
|
|
|
static dns_adbentry_t *
|
|
|
|
new_adbentry(dns_adb_t *adb)
|
|
|
|
{
|
|
|
|
dns_adbentry_t *e;
|
|
|
|
|
|
|
|
e = isc_mempool_get(adb->emp);
|
|
|
|
if (e == NULL)
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
e->magic = DNS_ADBENTRY_MAGIC;
|
|
|
|
e->lock_bucket = -1;
|
|
|
|
e->refcount = 0;
|
|
|
|
e->flags = 0;
|
|
|
|
e->goodness = 0;
|
|
|
|
e->srtt = 0;
|
|
|
|
ISC_LIST_INIT(e->zoneinfo);
|
|
|
|
ISC_LINK_INIT(e, link);
|
|
|
|
|
|
|
|
return (e);
|
|
|
|
}
|
|
|
|
|
|
|
|
static dns_adbhandle_t *
|
|
|
|
new_adbhandle(dns_adb_t *adb)
|
|
|
|
{
|
|
|
|
dns_adbhandle_t *h;
|
|
|
|
|
|
|
|
h = isc_mempool_get(adb->ahmp);
|
|
|
|
if (h == NULL)
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
h->magic = DNS_ADBHANDLE_MAGIC;
|
|
|
|
h->adb = adb;
|
|
|
|
h->task = NULL;
|
|
|
|
h->taskaction = NULL;
|
|
|
|
h->arg = NULL;
|
|
|
|
dns_name_init(&h->zone, NULL);
|
|
|
|
ISC_LIST_INIT(h->list);
|
|
|
|
ISC_LINK_INIT(h, link);
|
|
|
|
|
|
|
|
ISC_EVENT_INIT(&h->event, sizeof (isc_event_t), 0, 0, 0, NULL, NULL,
|
|
|
|
NULL, NULL, h);
|
|
|
|
|
|
|
|
return (h);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copy bits from the entry into the newly allocated addrinfo. The entry
|
|
|
|
* must be locked, and the reference count must be bumped up by one
|
|
|
|
* if this function returns a valid pointer.
|
1999-09-22 00:26:20 +00:00
|
|
|
*/
|
1999-09-23 00:43:10 +00:00
|
|
|
static dns_adbaddrinfo_t *
|
|
|
|
new_adbaddrinfo(dns_adb_t *adb, dns_adbentry_t *entry)
|
|
|
|
{
|
|
|
|
dns_adbaddrinfo_t *ai;
|
|
|
|
|
|
|
|
ai = isc_mempool_get(adb->aimp);
|
|
|
|
if (ai == NULL)
|
|
|
|
return (NULL);
|
|
|
|
|
|
|
|
ai->magic = DNS_ADBADDRINFO_MAGIC;
|
|
|
|
ai->sockaddr = &entry->sockaddr;
|
|
|
|
ai->goodness = entry->goodness;
|
|
|
|
ai->srtt = entry->srtt;
|
|
|
|
ai->flags = entry->flags;
|
|
|
|
ai->entry = entry;
|
|
|
|
ISC_LINK_INIT(ai, link);
|
|
|
|
|
|
|
|
return (ai);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Search for the name. NOTE: The bucket is kept locked on both
|
|
|
|
* success and failure, so it must always be unlocked by the caller!
|
|
|
|
*/
|
|
|
|
static dns_adbname_t *
|
|
|
|
find_name_and_lock(dns_adb_t *adb, dns_name_t *name, int *bucketp)
|
|
|
|
{
|
|
|
|
dns_adbname_t *adbname;
|
|
|
|
unsigned int bucket;
|
|
|
|
|
|
|
|
bucket = dns_name_hash(name, ISC_FALSE);
|
|
|
|
bucket &= (DNS_ADBNAMELIST_LENGTH - 1);
|
|
|
|
|
|
|
|
LOCK(&adb->namelocks[bucket]);
|
|
|
|
*bucketp = (int)bucket;
|
|
|
|
|
|
|
|
adbname = ISC_LIST_HEAD(adb->names[bucket]);
|
|
|
|
while (adbname != NULL) {
|
|
|
|
if (dns_name_equal(name, &adbname->name))
|
|
|
|
return (adbname);
|
|
|
|
adbname = ISC_LIST_NEXT(adbname, link);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Search for the address. NOTE: The bucket is kept locked on both
|
|
|
|
* success and failure, so it must always be unlocked by the caller!
|
|
|
|
*/
|
|
|
|
static dns_adbentry_t *
|
|
|
|
find_entry_and_lock(dns_adb_t *adb, isc_sockaddr_t *addr, int *bucketp)
|
|
|
|
{
|
|
|
|
dns_adbentry_t *entry;
|
|
|
|
unsigned int bucket;
|
|
|
|
|
|
|
|
bucket = isc_sockaddr_hash(addr, ISC_TRUE);
|
|
|
|
bucket &= (DNS_ADBENTRYLIST_LENGTH - 1);
|
|
|
|
|
|
|
|
LOCK(&adb->entrylocks[bucket]);
|
|
|
|
*bucketp = (int)bucket;
|
|
|
|
|
|
|
|
entry = ISC_LIST_HEAD(adb->entries[bucket]);
|
|
|
|
while (entry != NULL) {
|
|
|
|
if (isc_sockaddr_equal(addr, &entry->sockaddr))
|
|
|
|
return (entry);
|
|
|
|
entry = ISC_LIST_NEXT(entry, link);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (NULL);
|
|
|
|
}
|
1999-09-22 00:26:20 +00:00
|
|
|
|
1999-09-24 23:54:42 +00:00
|
|
|
static void
|
|
|
|
destroy(dns_adb_t *adb)
|
|
|
|
{
|
|
|
|
adb->magic = 0;
|
|
|
|
|
|
|
|
isc_mempool_destroy(&adb->nmp);
|
|
|
|
isc_mempool_destroy(&adb->nhmp);
|
|
|
|
isc_mempool_destroy(&adb->zimp);
|
|
|
|
isc_mempool_destroy(&adb->emp);
|
|
|
|
isc_mempool_destroy(&adb->ahmp);
|
|
|
|
isc_mempool_destroy(&adb->aimp);
|
|
|
|
|
|
|
|
isc_mutexblock_destroy(adb->entrylocks, DNS_ADBENTRYLIST_LENGTH);
|
|
|
|
isc_mutexblock_destroy(adb->namelocks, DNS_ADBNAMELIST_LENGTH);
|
|
|
|
|
|
|
|
isc_mutex_destroy(&adb->lock);
|
|
|
|
isc_mutex_destroy(&adb->mplock);
|
|
|
|
|
|
|
|
isc_mem_put(adb->mctx, adb, sizeof (dns_adb_t));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-09-22 00:26:20 +00:00
|
|
|
/*
|
|
|
|
* Public functions.
|
|
|
|
*/
|
|
|
|
|
1999-09-21 22:46:42 +00:00
|
|
|
isc_result_t
|
|
|
|
dns_adb_create(isc_mem_t *mem, dns_adb_t **newadb)
|
|
|
|
{
|
1999-09-23 00:43:10 +00:00
|
|
|
dns_adb_t *adb;
|
|
|
|
isc_result_t result;
|
|
|
|
int i;
|
|
|
|
|
1999-09-22 00:26:20 +00:00
|
|
|
REQUIRE(mem != NULL);
|
|
|
|
REQUIRE(newadb != NULL && *newadb == NULL);
|
|
|
|
|
1999-09-23 00:43:10 +00:00
|
|
|
adb = isc_mem_get(mem, sizeof (dns_adb_t));
|
|
|
|
if (adb == NULL)
|
|
|
|
return (ISC_R_NOMEMORY);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize things here that cannot fail, and especially things
|
|
|
|
* that must be NULL for the error return to work properly.
|
|
|
|
*/
|
|
|
|
adb->magic = 0;
|
|
|
|
adb->nmp = NULL;
|
|
|
|
adb->nhmp = NULL;
|
|
|
|
adb->zimp = NULL;
|
|
|
|
adb->emp = NULL;
|
|
|
|
adb->ahmp = NULL;
|
|
|
|
adb->aimp = NULL;
|
|
|
|
|
|
|
|
result = isc_mutex_init(&adb->lock);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
goto fail1;
|
|
|
|
result = isc_mutex_init(&adb->mplock);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
goto fail1;
|
|
|
|
|
|
|
|
/*
|
1999-09-24 23:54:42 +00:00
|
|
|
* Initialize the bucket locks for names and elements.
|
|
|
|
* May as well initialize the list heads, too.
|
1999-09-23 00:43:10 +00:00
|
|
|
*/
|
1999-09-24 23:54:42 +00:00
|
|
|
result = isc_mutexblock_init(adb->namelocks, DNS_ADBNAMELIST_LENGTH);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
goto fail1;
|
|
|
|
for (i = 0 ; i < DNS_ADBNAMELIST_LENGTH ; i++)
|
1999-09-23 00:43:10 +00:00
|
|
|
ISC_LIST_INIT(adb->names[i]);
|
1999-09-24 23:54:42 +00:00
|
|
|
for (i = 0 ; i < DNS_ADBENTRYLIST_LENGTH ; i++)
|
1999-09-23 00:43:10 +00:00
|
|
|
ISC_LIST_INIT(adb->entries[i]);
|
1999-09-24 23:54:42 +00:00
|
|
|
result = isc_mutexblock_init(adb->entrylocks, DNS_ADBENTRYLIST_LENGTH);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
goto fail2;
|
1999-09-23 00:43:10 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Memory pools
|
|
|
|
*/
|
|
|
|
#define MPINIT(t, p) do { \
|
|
|
|
result = isc_mempool_create(mem, sizeof (t), &(p)); \
|
|
|
|
if (result != ISC_R_SUCCESS) \
|
|
|
|
goto fail3; \
|
|
|
|
isc_mempool_setfreemax((p), FREE_ITEMS); \
|
|
|
|
isc_mempool_setfillcount((p), FILL_COUNT); \
|
|
|
|
} while (0)
|
|
|
|
#define MPINIT_LOCKED(t, p) do { \
|
|
|
|
MPINIT(t, p); \
|
|
|
|
isc_mempool_associatelock((p), &adb->mplock); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
MPINIT_LOCKED(dns_adbname_t, adb->nmp);
|
|
|
|
MPINIT_LOCKED(dns_adbnamehook_t, adb->nhmp);
|
|
|
|
MPINIT_LOCKED(dns_adbzoneinfo_t, adb->zimp);
|
|
|
|
MPINIT_LOCKED(dns_adbentry_t, adb->emp);
|
|
|
|
MPINIT_LOCKED(dns_adbhandle_t, adb->ahmp);
|
|
|
|
MPINIT_LOCKED(dns_adbaddrinfo_t, adb->aimp);
|
|
|
|
|
|
|
|
#undef MPINIT
|
|
|
|
#undef MPINIT_LOCKED
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Normal return.
|
|
|
|
*/
|
|
|
|
adb->mctx = mem;
|
|
|
|
adb->magic = DNS_ADB_MAGIC;
|
|
|
|
*newadb = adb;
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
fail3: /* clean up entrylocks */
|
1999-09-24 23:54:42 +00:00
|
|
|
isc_mutexblock_destroy(adb->entrylocks, DNS_ADBENTRYLIST_LENGTH);
|
1999-09-23 00:43:10 +00:00
|
|
|
|
|
|
|
fail2: /* clean up namelocks */
|
1999-09-24 23:54:42 +00:00
|
|
|
isc_mutexblock_destroy(adb->namelocks, DNS_ADBNAMELIST_LENGTH);
|
1999-09-23 00:43:10 +00:00
|
|
|
|
|
|
|
fail1: /* clean up only allocated memory */
|
|
|
|
if (adb->nmp != NULL)
|
|
|
|
isc_mempool_destroy(&adb->nmp);
|
|
|
|
if (adb->nhmp != NULL)
|
|
|
|
isc_mempool_destroy(&adb->nhmp);
|
|
|
|
if (adb->zimp != NULL)
|
|
|
|
isc_mempool_destroy(&adb->zimp);
|
|
|
|
if (adb->emp != NULL)
|
|
|
|
isc_mempool_destroy(&adb->emp);
|
|
|
|
if (adb->ahmp != NULL)
|
|
|
|
isc_mempool_destroy(&adb->ahmp);
|
|
|
|
if (adb->aimp != NULL)
|
|
|
|
isc_mempool_destroy(&adb->aimp);
|
|
|
|
|
|
|
|
isc_mutex_destroy(&adb->lock);
|
|
|
|
isc_mutex_destroy(&adb->mplock);
|
|
|
|
|
|
|
|
isc_mem_put(mem, adb, sizeof (dns_adb_t));
|
|
|
|
|
|
|
|
return (result);
|
1999-09-21 22:46:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1999-09-23 00:43:10 +00:00
|
|
|
dns_adb_destroy(dns_adb_t **adbx)
|
1999-09-21 22:46:42 +00:00
|
|
|
{
|
1999-09-23 00:43:10 +00:00
|
|
|
dns_adb_t *adb;
|
|
|
|
|
|
|
|
REQUIRE(adbx != NULL && DNS_ADB_VALID(*adbx));
|
|
|
|
|
|
|
|
adb = *adbx;
|
|
|
|
*adbx = NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX Need to wait here until the adb is fully shut down.
|
|
|
|
*/
|
|
|
|
|
1999-09-24 23:54:42 +00:00
|
|
|
/*
|
|
|
|
* If all lists are empty, destroy the memory used by this
|
|
|
|
* adb. XXX Need to implement this.
|
|
|
|
*/
|
1999-09-22 00:26:20 +00:00
|
|
|
|
1999-09-24 23:54:42 +00:00
|
|
|
destroy(adb);
|
1999-09-21 22:46:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
isc_result_t
|
|
|
|
dns_adb_lookup(dns_adb_t *adb, isc_task_t *task, isc_taskaction_t *action,
|
1999-09-22 00:26:20 +00:00
|
|
|
void *arg, dns_rdataset_t *nsrdataset, dns_name_t *zone,
|
1999-09-21 22:46:42 +00:00
|
|
|
dns_adbhandle_t **handle)
|
|
|
|
{
|
1999-09-22 00:26:20 +00:00
|
|
|
REQUIRE(DNS_ADB_VALID(adb));
|
|
|
|
if (task != NULL) {
|
|
|
|
REQUIRE(action != NULL);
|
|
|
|
}
|
|
|
|
REQUIRE(nsrdataset != NULL);
|
|
|
|
REQUIRE(zone != NULL);
|
|
|
|
REQUIRE(handle != NULL && *handle == NULL);
|
|
|
|
|
1999-09-21 22:46:42 +00:00
|
|
|
return (ISC_R_NOTIMPLEMENTED);
|
|
|
|
}
|
|
|
|
|
1999-09-23 00:43:10 +00:00
|
|
|
isc_result_t
|
|
|
|
dns_adb_insert(dns_adb_t *adb, dns_name_t *host, isc_sockaddr_t *addr)
|
|
|
|
{
|
|
|
|
dns_adbname_t *name;
|
|
|
|
isc_boolean_t free_name, free_namedata;
|
|
|
|
dns_adbentry_t *entry;
|
|
|
|
isc_boolean_t free_entry;
|
|
|
|
dns_adbnamehook_t *namehook;
|
|
|
|
isc_boolean_t free_namehook;
|
|
|
|
int name_bucket, addr_bucket; /* unlock if != -1 */
|
|
|
|
isc_result_t result;
|
|
|
|
|
|
|
|
REQUIRE(DNS_ADB_VALID(adb));
|
|
|
|
REQUIRE(host != NULL);
|
|
|
|
REQUIRE(addr != NULL);
|
|
|
|
|
|
|
|
name = NULL;
|
|
|
|
free_name = ISC_FALSE;
|
|
|
|
free_namedata = ISC_FALSE;
|
|
|
|
entry = NULL;
|
|
|
|
free_entry = ISC_FALSE;
|
|
|
|
namehook = NULL;
|
|
|
|
free_namehook = ISC_FALSE;
|
|
|
|
name_bucket = -1;
|
|
|
|
addr_bucket = -1;
|
|
|
|
result = ISC_R_UNEXPECTED;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* First, see if the host is already in the database. If it is,
|
|
|
|
* don't make a new host entry. If not, copy the name and name's
|
|
|
|
* contents into our structure and allocate what we'll need
|
|
|
|
* to attach things together.
|
|
|
|
*/
|
|
|
|
name = find_name_and_lock(adb, host, &name_bucket);
|
|
|
|
if (name == NULL) {
|
|
|
|
name = new_adbname(adb);
|
|
|
|
if (name == NULL) {
|
|
|
|
result = ISC_R_NOMEMORY;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
free_name = ISC_TRUE;
|
|
|
|
result = dns_name_dup(host, adb->mctx, &name->name);
|
|
|
|
if (result != ISC_R_SUCCESS)
|
|
|
|
goto out;
|
|
|
|
free_namedata = ISC_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now, while keeping the name locked, search for the address.
|
|
|
|
* Three possibilities: One, the address doesn't exist.
|
|
|
|
* Two, the address exists, but we aren't linked to it.
|
|
|
|
* Three, the address exists and we are linked to it.
|
|
|
|
* (1) causes a new entry and namehook to be created.
|
|
|
|
* (2) causes only a new namehook.
|
|
|
|
* (3) is an error.
|
|
|
|
*/
|
|
|
|
entry = find_entry_and_lock(adb, addr, &addr_bucket);
|
|
|
|
/*
|
|
|
|
* Case (1): new entry and namehook.
|
|
|
|
*/
|
|
|
|
if (entry == NULL) {
|
|
|
|
entry = new_adbentry(adb);
|
|
|
|
if (entry == NULL) {
|
|
|
|
result = ISC_R_NOMEMORY;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
free_entry = ISC_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Case (3): entry exists, we're linked.
|
|
|
|
*/
|
|
|
|
namehook = ISC_LIST_HEAD(name->namehooks);
|
|
|
|
while (namehook != NULL) {
|
|
|
|
if (namehook->entry == entry) {
|
|
|
|
result = ISC_R_EXISTS;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Case (2): New namehook, link to entry from above.
|
|
|
|
*/
|
|
|
|
namehook = new_adbnamehook(adb, entry);
|
|
|
|
if (namehook == NULL) {
|
|
|
|
result = ISC_R_NOMEMORY;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
free_namehook = ISC_TRUE;
|
|
|
|
ISC_LIST_APPEND(name->namehooks, namehook, link);
|
|
|
|
|
|
|
|
entry->refcount++;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If needed, string up the name and entry. Do the name last, since
|
|
|
|
* adding multiple addresses is simplified in that case.
|
|
|
|
*/
|
|
|
|
if (!ISC_LINK_LINKED(name, link))
|
|
|
|
ISC_LIST_PREPEND(adb->names[name_bucket], name, link);
|
|
|
|
if (!ISC_LINK_LINKED(entry, link))
|
|
|
|
ISC_LIST_PREPEND(adb->entries[addr_bucket], entry, link);
|
|
|
|
UNLOCK(&adb->namelocks[name_bucket]);
|
|
|
|
UNLOCK(&adb->entrylocks[addr_bucket]);
|
|
|
|
|
|
|
|
return (ISC_R_SUCCESS);
|
|
|
|
|
|
|
|
out:
|
|
|
|
if (free_namedata)
|
|
|
|
dns_name_free(&name->name, adb->mctx);
|
|
|
|
if (free_name)
|
|
|
|
isc_mempool_put(adb->nmp, name);
|
|
|
|
if (free_entry)
|
|
|
|
isc_mempool_put(adb->emp, entry);
|
|
|
|
if (free_namehook)
|
|
|
|
isc_mempool_put(adb->nhmp, namehook);
|
|
|
|
if (name_bucket != -1)
|
|
|
|
UNLOCK(&adb->namelocks[name_bucket]);
|
|
|
|
if (addr_bucket != -1)
|
|
|
|
UNLOCK(&adb->entrylocks[addr_bucket]);
|
|
|
|
|
|
|
|
return (result);
|
|
|
|
}
|
|
|
|
|
1999-09-21 22:46:42 +00:00
|
|
|
void
|
1999-09-22 00:26:20 +00:00
|
|
|
dns_adb_cancel(dns_adb_t *adb, dns_adbhandle_t **handle)
|
1999-09-21 22:46:42 +00:00
|
|
|
{
|
1999-09-22 00:26:20 +00:00
|
|
|
REQUIRE(DNS_ADB_VALID(adb));
|
|
|
|
REQUIRE(handle != NULL && DNS_ADBHANDLE_VALID(*handle));
|
|
|
|
|
|
|
|
INSIST(1 == 0);
|
1999-09-21 22:46:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1999-09-22 00:26:20 +00:00
|
|
|
dns_adb_done(dns_adb_t *adb, dns_adbhandle_t **handle)
|
1999-09-21 22:46:42 +00:00
|
|
|
{
|
1999-09-22 00:26:20 +00:00
|
|
|
REQUIRE(DNS_ADB_VALID(adb));
|
|
|
|
REQUIRE(handle != NULL && DNS_ADBHANDLE_VALID(*handle));
|
|
|
|
|
|
|
|
INSIST(1 == 0);
|
1999-09-21 22:46:42 +00:00
|
|
|
}
|