rbt.c revision 8e6b386ab7e2d1bd8efedecbb8f4efb6b572a866
/*
* Copyright (C) 2004, 2005, 2007-2009, 2011, 2012 Internet Systems Consortium, Inc. ("ISC")
* Copyright (C) 1999-2003 Internet Software Consortium.
*
* 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 ISC DISCLAIMS ALL WARRANTIES WITH
* REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS. IN NO EVENT SHALL ISC 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.
*/
/* $Id$ */
/*! \file */
/* Principal Authors: DCL */
#include <config.h>
#include <isc/platform.h>
#include <isc/refcount.h>
/*%
* This define is so dns/name.h (included by dns/fixedname.h) uses more
* efficient macro calls instead of functions for a few operations.
*/
#define DNS_NAME_USEINLINE 1
#include <dns/fixedname.h>
#include <unistd.h>
#define CHECK(x) \
do { \
result = (x); \
if (result != ISC_R_SUCCESS) \
goto cleanup; \
} while (0)
/*
* XXXDCL Since parent pointers were added in again, I could remove all of the
* chain junk, and replace with dns_rbt_firstnode, _previousnode, _nextnode,
* _lastnode. This would involve pretty major change to the API.
*/
#define RBT_HASH_SIZE 64
#ifdef RBT_MEM_TEST
#endif
struct dns_rbt {
unsigned int magic;
void (*data_deleter)(void *, void *);
void * deleter_arg;
unsigned int nodecount;
unsigned int hashsize;
void * mmap_location;
};
#define RED 0
#define BLACK 1
/*
* This is the header for fast-format RBT images. It is populated,
* and then written, as the LAST thing done to the file before returning.
* Writing this last (with zeros in the header area initially) will ensure
* that the header is only valid when the RBT image is also valid.
*/
typedef struct file_header file_header_t;
/* Pad to 32 bytes */
/* Header length, always the same size regardless of structure size */
const unsigned int HEADER_LENGTH = 1024;
struct file_header {
char version1[32];
/*
* information about the system on which the fast file was generated
* will be used to tell if we can load the fast file or not
*/
unsigned int nodecount; /* shadow from rbt structure */
};
/*
* The following declarations are for the serialization of an RBT:
*
* step one: write out a zeroed header of 1024 bytes
* step two: walk the tree in a depth-first, left-right-down order, writing
* out the nodes, reserving space as we go, correcting addresses to point
* at the proper offset in the file, and setting a flag for each pointer to
* indicate that it is a reference to a location in the file, rather than in
* memory.
* step three: write out the header, adding the information that will be
* needed to re-create the tree object itself.
*
* The RBTDB object will do this three times, once for each of the three
* RBT objects it contains.
*
* Note: 'file' must point an actual open file that can be mmapped
* and fseeked, not to a pipe or stream
*/
static isc_result_t
static isc_result_t
static isc_result_t
static isc_result_t
/*
* The following functions allow you to get the actual address of a pointer
* without having to use an if statement to check to see if that address is
* relative or not
*/
static inline dns_rbtnode_t *
return ((dns_rbtnode_t *)adjusted_address);
}
static inline dns_rbtnode_t *
return ((dns_rbtnode_t *)adjusted_address);
}
static inline dns_rbtnode_t *
return ((dns_rbtnode_t *)adjusted_address);
}
static inline dns_rbtnode_t *
return ((dns_rbtnode_t *)adjusted_address);
}
static inline dns_rbtnode_t *
return ((dns_rbtnode_t *)adjusted_address);
}
/*%
* Elements of the rbtnode structure.
*/
/*%
* Structure elements from the rbtdb.c, not
* used as part of the rbt.c algorithms.
*/
/*%
* The variable length stuff stored after the node has the following
* structure.
*
* <name_data>{1..255}<oldoffsetlen>{1}<offsets>{1..128}
*
* <name_data> contains the name of the node when it was created.
* <oldoffsetlen> contains the length of <offsets> when the node was created.
* <offsets> contains the offets into name for each label when the node was
* created.
*/
/*%
* Color management.
*/
/*%
* Chain management.
*
* The "ancestors" member of chains were removed, with their job now
* being wholly handled by parent pointers (which didn't exist, because
* of memory concerns, when chains were first implemented).
*/
/*%
* The following macros directly access normally private name variables.
* These macros are used to avoid a lot of function calls in the critical
* path of the tree traversal code.
*/
static inline void
{
}
#ifdef DNS_RBT_USEHASH
static isc_result_t
#endif
#ifdef DEBUG
#define inline
/*
* A little something to help out in GDB.
*/
return (name);
}
#endif
static inline dns_rbtnode_t *
/*
* Return the node in the level above the argument node that points
* to the level the argument node is in. If the argument node is in
* the top level, the return value is NULL.
*/
; /* Nothing. */
}
/*
* Forward declarations.
*/
static isc_result_t
#ifdef DNS_RBT_USEHASH
static inline void
static inline void
#else
#endif
static inline void
static inline void
static void
dns_rbtnode_t **rootp);
static void
static void
void (*data_fixer)(dns_rbtnode_t *));
static isc_result_t
static void
static void
static void
/*
* Write out a zeroed header as a placeholder. Doing this ensures
* that the file will not read while it is partially written, should
* writing fail or be interrupted.
*/
char buffer[HEADER_LENGTH];
if (result != ISC_R_SUCCESS)
return (result);
if (result != ISC_R_SUCCESS)
return (result);
return (ISC_R_SUCCESS);
}
/*
* Write out the real header, including NodeDump version information
* and the offset of the first node.
*
* Any information stored in the rbt object itself should be stored
* here.
*/
static isc_result_t
if (FILE_VERSION[0] == '\0') {
}
#ifdef DNS_RDATASET_FIXED
#else
header.rdataset_fixed = 0;
#endif
SEEK_SET));
/* Ensure we are always at the end of the file. */
return (result);
}
static isc_result_t
{
unsigned char *node_data;
/*
* If the next node is not NULL, calculate the next node's location
* in the file. Note that this will have to change when the data
* structure changes, and it also assumes that we always write the
* nodes out in list order (which we currently do.)
*/
}
}
}
}
}
return (result);
}
static isc_result_t
{
*where = 0;
return (ISC_R_SUCCESS);
}
/* Reserve space for current node */
SEEK_SET));
/* Serialize the rest of the tree */
SEEK_SET));
}
/* Seek back to reserved space */
/* Serialize the current node */
/* Ensure we are always at the end of the file. */
return (result);
}
inline isc_uint64_t
if (offset == 0)
return (target);
else
}
{
/* Write dummy header */
/* Serialize nodes */
if (node_position == end_position) {
*offset = 0;
return (ISC_R_SUCCESS);
}
/* Serialize header */
/* Ensure we are always at the end of the file. */
return (result);
}
static void
void (*data_fixer)(dns_rbtnode_t *))
{
if (n == NULL)
return;
if (!dns_name_isabsolute(&nodename)) {
/* XXX: we need to catch errors better than this */
}
n->right_is_relative = 0;
n->left_is_relative = 0;
n->down_is_relative = 0;
n->parent_is_relative = 0;
n->data_is_relative = 0;
data_fixer(n);
}
void (*deleter)(void *, void *),
void *deleter_arg,
void (*data_fixer)(dns_rbtnode_t *),
{
if (result != ISC_R_SUCCESS)
return (result);
#ifdef DNS_RDATASET_FIXED
return (ISC_R_INVALIDFILE);
}
#else
if (header->rdataset_fixed != 0) {
return (ISC_R_INVALIDFILE);
}
#endif
return (ISC_R_INVALIDFILE);
}
return (ISC_R_INVALIDFILE);
}
/* Copy other data items from the header into our rbt. */
return (ISC_R_SUCCESS);
}
/*
*/
{
#ifdef DNS_RBT_USEHASH
#endif
return (ISC_R_NOMEMORY);
#ifdef DNS_RBT_USEHASH
if (result != ISC_R_SUCCESS) {
return (result);
}
#endif
return (ISC_R_SUCCESS);
}
/*
*/
void
}
return (ISC_R_QUOTA);
return (ISC_R_SUCCESS);
}
unsigned int
}
unsigned int
}
static inline isc_result_t
{
int i;
if (result != ISC_R_SUCCESS)
return (result);
} else
if (result != ISC_R_SUCCESS)
return (result);
}
return (result);
}
static inline isc_result_t
do {
/*
* Go as far right and then down as much as possible,
* as long as the rightmost node has a down pointer.
*/
break;
} while (1);
return (ISC_R_SUCCESS);
}
/*
* Add 'name' to tree, initializing its data pointer with 'data'.
*/
/*
* Does this thing have too many variables or what?
*/
unsigned int common_labels;
int order;
/*
* Create a copy of the name so the original name structure is
* not modified.
*/
if (result == ISC_R_SUCCESS) {
*nodep = new_current;
}
return (result);
}
hlabels = 0;
do {
&order, &common_labels);
if (compared == dns_namereln_equal) {
break;
}
if (compared == dns_namereln_none) {
if (order < 0) {
} else if (order > 0) {
}
} else {
/*
* This name has some suffix in common with the
* name at the current node. If the name at
* the current node is shorter, that means the
* new name should be in a subtree. If the
* name at the current node is longer, that means
* the down pointer to this tree should point
* to a new tree that has the common suffix, and
* the non-common parts of these two names should
* start a new tree.
*/
hlabels += common_labels;
if (compared == dns_namereln_subdomain) {
/*
* All of the existing labels are in common,
* so the new name is in a subtree.
* Whack off the common labels for the
* not-in-common part to be searched for
* in the next level.
*/
/*
* Follow the down pointer (possibly NULL).
*/
} else {
/*
* The number of labels in common is fewer
* than the number of labels at the current
* node, so the current node must be adjusted
* to have just the common suffix, and a down
* pointer made to a new tree.
*/
|| compared == dns_namereln_contains);
/*
* Ensure the number of levels in the tree
* does not exceed the number of logical
* levels allowed by DNSSEC.
*
* XXXDCL need a better error result?
*
* XXXDCL Since chain ancestors were removed,
* no longer used by addonlevel(),
* this is the only real use of chains in the
* function. It could be done instead with
* a simple integer variable, but I am pressed
* for time.
*/
if (chain.level_count ==
break;
}
/*
* Split the name into two parts, a prefix
* which is the not-in-common parts of the
* two names and a suffix that is the common
* parts of them.
*/
&new_current);
if (result != ISC_R_SUCCESS)
break;
/*
* Reproduce the tree attributes of the
* current node.
*/
else
/*
* Fix pointers that were to the current node.
*/
else
}
*root = new_current;
/*
* Set up the new root of the next level.
* By definition it will not be the top
* level tree, so clear DNS_NAMEATTR_ABSOLUTE.
*/
if (common_labels ==
/*
* The name has been added by pushing
* the not-in-common parts down to
* a new level.
*/
*nodep = new_current;
return (ISC_R_SUCCESS);
} else {
/*
* The current node has no data,
* because it is just a placeholder.
* Its data pointer is already NULL
* from create_node()), so there's
* nothing more to do to it.
*/
/*
* The not-in-common parts of the new
* name will be inserted into the new
* level following this loop (unless
* result != ISC_R_SUCCESS, which
* is tested after the loop ends).
*/
break;
}
}
}
if (result == ISC_R_SUCCESS)
if (result == ISC_R_SUCCESS) {
*nodep = new_current;
}
return (result);
}
/*
* Add a name to the tree of trees, associating it with some data.
*/
/*
* dns_rbt_addnode will report the node exists even when
* it does not have data associated with it, but the
* dns_rbt_*name functions all behave depending on whether
* there is data associated with a node.
*/
if (result == ISC_R_SUCCESS ||
}
return (result);
}
/*
* Find the node for "name" in the tree of trees.
*/
void *callback_arg)
{
unsigned int common_labels;
unsigned int hlabels = 0;
int order;
/*
* If there is a chain it needs to appear to be in a sane state,
* otherwise a chain is still needed to generate foundname and
* callback_name.
*/
chain = &localchain;
} else
return (ISC_R_NOTFOUND);
else {
/*
* Appease GCC about variables it incorrectly thinks are
* possibly used uninitialized.
*/
order = 0;
}
/*
* search_name is the name segment being sought in each tree level.
* By using a fixedname, the search_name will definitely have offsets
* for use by any splitting.
* By using dns_name_clone, no name data should be copied thanks to
* the lack of bitstring labels.
*/
&order, &common_labels);
if (compared == dns_namereln_equal)
break;
if (compared == dns_namereln_none) {
#ifdef DNS_RBT_USEHASH
unsigned int nlabels;
unsigned int tlabels = 1;
unsigned int hash;
/*
* If there is no hash table, hashing can't be done.
*/
goto nohash;
/*
* The case of current != current_root, that
* means a left or right pointer was followed,
* only happens when the algorithm fell through to
* the traditional binary search because of a
* bitstring label. Since we dropped the bitstring
* support, this should not happen.
*/
/*
* current_root is the root of the current level, so
* it's parent is the same as it's "up" pointer.
*/
/*
* Hash includes tail.
*/
&hash_name);
{
continue;
continue;
break;
}
/*
* This is an optimization. If hashing found
* the right node, the next call to
* dns_name_fullcompare() would obviously
* return _equal or _subdomain. Determine
* which of those would be the case by
* checking if the full name was hashed. Then
* make it look like dns_name_fullcompare
* was called and jump to the right place.
*/
break;
} else {
goto subdomain;
}
}
goto hashagain;
/*
* All of the labels have been tried against the hash
* table. Since we dropped the support of bitstring
* labels, the name isn't in the table.
*/
continue;
#endif /* DNS_RBT_USEHASH */
/*
* Standard binary search tree movement.
*/
if (order < 0)
else
} else {
/*
* The names have some common suffix labels.
*
* If the number in common are equal in length to
* the current node's name length, then follow the
* down pointer and search in the new tree.
*/
if (compared == dns_namereln_subdomain) {
#ifdef DNS_RBT_USEHASH
#endif
/*
* Whack off the current node's common parts
* for the name to search in the next level.
*/
search_name, NULL);
hlabels += common_labels;
/*
* This might be the closest enclosing name.
*/
(options & DNS_RBTFIND_EMPTYDATA) != 0)
/*
* Point the chain to the next level. This
* needs to be done before 'current' is pointed
* there because the callback in the next
* block of code needs the current 'current',
* but in the event the callback requests that
* the search be stopped then the
* DNS_R_PARTIALMATCH code at the end of this
* function needs the chain pointed to the
* next level.
*/
/*
* The caller may want to interrupt the
* downward search when certain special nodes
* are traversed. If this is a special node,
* the callback is used to learn what the
* caller wants to do.
*/
FINDCALLBACK(current)) {
if (result != ISC_R_SUCCESS) {
return (result);
}
if (result != DNS_R_CONTINUE) {
/*
* Treat this node as if it
* had no down pointer.
*/
break;
}
}
/*
* Finally, head to the next tree level.
*/
} else {
/*
* Though there are labels in common, the
* entire name at this node is not common
* with the search name so the search
* name does not exist in the tree.
*/
|| compared == dns_namereln_contains);
}
}
}
/*
* If current is not NULL, NOEXACT is not disallowing exact matches,
* and either the node has data or an empty node is ok, return
* ISC_R_SUCCESS to indicate an exact match.
*/
(options & DNS_RBTFIND_EMPTYDATA) != 0)) {
/*
* Found an exact match.
*/
else
if (result == ISC_R_SUCCESS) {
} else
} else {
/*
* Did not find an exact match (or did not want one).
*/
/*
* ... but found a partially matching superdomain.
* Unwind the chain to the partial match node
* to set level_matches to the level above the node,
* and then to derive the name.
*
* chain->level_count is guaranteed to be at least 1
* here because by definition of finding a superdomain,
* the chain is pointed to at least the first subtree.
*/
chain->level_matches--;
}
} else
if (result == ISC_R_SUCCESS)
} else
/*
* There was an exact match but either
* DNS_RBTFIND_NOEXACT was set, or
* DNS_RBTFIND_EMPTYDATA was set and the node had no
* data. A policy decision was made to set the
* chain to the exact match, but this is subject
* to change if it becomes apparent that something
* else would be more useful. It is important that
* this case is handled here, because the predecessor
* setting code below assumes the match was not exact.
*/
((options & DNS_RBTFIND_EMPTYDATA) == 0 &&
} else if ((options & DNS_RBTFIND_NOPREDECESSOR) != 0) {
/*
* Ensure the chain points nowhere.
*/
} else {
/*
* Since there was no exact match, the chain argument
* needs to be pointed at the DNSSEC predecessor of
* the search name.
*/
if (compared == dns_namereln_subdomain) {
/*
* Attempted to follow a down pointer that was
* NULL, which means the searched for name was
* a subdomain of a terminal name in the tree.
* Since there are no existing subdomains to
* order against, the terminal name is the
* predecessor.
*/
chain->level_count);
} else {
/*
* Point current to the node that stopped
* the search.
*
* With the hashing modification that has been
* added to the algorithm, the stop node of a
* standard binary search is not known. So it
* has to be found. There is probably a more
* clever way of doing this.
*
* The assignment of current to NULL when
* the relationship is *not* dns_namereln_none,
* even though it later gets set to the same
* last_compared anyway, is simply to not push
* the while loop in one more level of
* indentation.
*/
if (compared == dns_namereln_none)
else
&order,
/*
* Standard binary search movement.
*/
if (order < 0)
else
}
/*
* Reached a point within a level tree that
* positively indicates the name is not
* present, but the stop node could be either
* less than the desired name (order > 0) or
* greater than the desired name (order < 0).
*
* If the stop node is less, it is not
* necessarily the predecessor. If the stop
* node has a down pointer, then the real
* predecessor is at the end of a level below
* (not necessarily the next level).
* Move down levels until the rightmost node
* does not have a down pointer.
*
* When the stop node is greater, it is
* the successor. All the logic for finding
* the predecessor is handily encapsulated
* in dns_rbtnodechain_prev. In the event
* that the search name is less than anything
* else in the tree, the chain is reset.
* XXX DCL What is the best way for the caller
* to know that the search name has
* no predecessor?
*/
if (order > 0) {
result2 =
if (result2 != ISC_R_SUCCESS)
} else
/*
* Ah, the pure and simple
* case. The stop node is the
* predecessor.
*/
} else {
NULL,
NULL);
if (result2 == ISC_R_SUCCESS ||
; /* Nothing. */
else if (result2 == ISC_R_NOMORE)
/*
* There is no predecessor.
*/
else
}
}
}
}
return (result);
}
/*
* Get the data pointer associated with 'name'.
*/
else
return (result);
}
/*
* Delete a name from the tree of trees.
*/
/*
* First, find the node.
*
* When searching, the name might not have an exact match:
* elements of a tree, which would make layer 1 a single
* node tree of "b.a.com" and layer 2 a three node tree of
* a, b, and c. Deleting a.com would find only a partial depth
* match in the first layer. Should it be a requirement that
* that the name to be deleted have data? For now, it is.
*
* ->dirty, ->locknum and ->references are ignored; they are
* solely the province of rbtdb.c.
*/
if (result == ISC_R_SUCCESS) {
else
} else if (result == DNS_R_PARTIALMATCH)
return (result);
}
/*
* Remove a node from the tree of trees.
*
* NOTE WELL: deletion is *not* symmetric with addition; that is, reversing
* a sequence of additions to be deletions will not generally get the
* tree back to the state it started in. For example, if the addition
* then the subsequent deletion of "b.c" will not cause "a" to be pulled up,
* restoring "a.b.c". The RBT *used* to do this kind of rejoining, but it
* turned out to be a bad idea because it could corrupt an active nodechain
* that had "b.c" as one of its levels -- and the RBT has no idea what
* nodechains are in use by callers, so it can't even *try* to helpfully
* fix them up (which would probably be doomed to failure anyway).
*
* Similarly, it is possible to leave the tree in a state where a supposedly
* deleted node still exists. The first case of this is obvious; take
* It was just established in the previous paragraph why we can't pull "a"
* back up to its parent level. But what happens when "a" then gets deleted?
* "b.c" is left hanging around without data or children. This condition
* is actually pretty easy to detect, but ... should it really be removed?
* Is a chain pointing to it? An iterator? Who knows! (Note that the
* references structure member cannot be looked at because it is private to
* rbtdb.) This is ugly and makes me unhappy, but after hours of trying to
* make it more aesthetically proper and getting nowhere, this is the way it
* is going to stay until such time as it proves to be a *real* problem.
*
* Finally, for reference, note that the original routine that did node
* joining was called join_nodes(). It has been excised, living now only
* in the CVS history, but comments have been left behind that point to it just
* in case someone wants to muck with this some more.
*
* The one positive aspect of all of this is that joining used to have a
* case where it might fail. Without trying to join, now this function always
* succeeds. It still returns isc_result_t, though, so the API wouldn't change.
*/
{
if (recurse)
== ISC_R_SUCCESS);
else {
/*
* Since there is at least one node below this one and
* no recursion was requested, the deletion is
* complete. The down node from this node might be all
* by itself on a single level, so join_nodes() could
* be used to collapse the tree (with all the caveats
* of the comment at the start of this function).
*/
return (ISC_R_SUCCESS);
}
}
/*
* Note the node that points to the level of the node that is being
* deleted. If the deleted node is the top level, parent will be set
* to NULL.
*/
/*
* This node now has no down pointer (either because it didn't
* have one to start, or because it was recursively removed).
* So now the node needs to be removed from this level.
*/
#if DNS_RBT_USEMAGIC
#endif
/*
* There are now two special cases that can exist that would
* not have existed if the tree had been created using only
* the names that now exist in it. (This is all related to
* join_nodes() as described in this function's introductory comment.)
* Both cases exist when the deleted node's parent (the node
* that pointed to the deleted node's level) is not null but
* it has no data: parent != NULL && DATA(parent) == NULL.
*
* The first case is that the deleted node was the last on its level:
* DOWN(parent) == NULL. This case can only exist if the parent was
* previously deleted -- and so now, apparently, the parent should go
* away. That can't be done though because there might be external
* references to it, such as through a nodechain.
*
* The other case also involves a parent with no data, but with the
* deleted node being the next-to-last node instead of the last:
* LEFT(DOWN(parent)) == NULL && RIGHT(DOWN(parent)) == NULL.
* Presumably now the remaining node on the level should be joined
* with the parent, but it's already been described why that can't be
* done.
*/
/*
* This function never fails.
*/
return (ISC_R_SUCCESS);
}
void
}
do {
if (result != ISC_R_SUCCESS)
break;
} while (! dns_name_isabsolute(name));
return (result);
}
char *
{
if (result == ISC_R_SUCCESS)
else
return (printname);
}
static isc_result_t
unsigned int labels;
/*
* Allocate space for the node structure, the name, and the offsets.
*/
return (ISC_R_NOMEMORY);
node->is_mmapped = 0;
node->down_is_relative = 0;
node->left_is_relative = 0;
node->right_is_relative = 0;
node->parent_is_relative = 0;
node->data_is_relative = 0;
#ifdef DNS_RBT_USEHASH
#endif
dns_rbtnode_refinit(node, 0);
node->find_callback = 0;
/*
* The following is stored to make reconstructing a name from the
* stored value in the node easy: the length of the name, the number
* of labels, whether the name is absolute or not, the name itself,
* and the name's offsets table.
*
* XXX RTH
* The offsets table could be made smaller by eliminating the
* first offset, which is always 0. This requires changes to
*
* Note: OLDOFFSETLEN *must* be assigned *after* OLDNAMELEN is assigned
* as it uses OLDNAMELEN.
*/
#if DNS_RBT_USEMAGIC
#endif
return (ISC_R_SUCCESS);
}
#ifdef DNS_RBT_USEHASH
static inline void
unsigned int hash;
}
static isc_result_t
unsigned int bytes;
return (ISC_R_NOMEMORY);
return (ISC_R_SUCCESS);
}
static void
unsigned int oldsize;
unsigned int hash;
unsigned int i;
return;
}
for (i = 0; i < oldsize; i++) {
}
}
}
static inline void
}
static inline void
unsigned int bucket;
if (bucket_node == node)
else {
}
}
}
}
#endif /* DNS_RBT_USEHASH */
static inline void
} else {
else
}
}
static inline void
} else {
else
}
}
/*
* This is the real workhorse of the insertion code, because it does the
*/
static void
{
/*
* First node of a level.
*/
return;
}
if (order < 0) {
} else {
}
/*
* XXXDCL could do away with separate parent and grandparent
* variables. They are vestiges of the days before parent
* pointers. However, they make the code a little clearer.
*/
node = grandparent;
} else {
}
}
} else {
node = grandparent;
} else {
}
}
}
}
return;
}
/*
* This is the real workhorse of the deletion code, because it does the
*/
static void
/*
* Verify that the parent history is (apparently) correct.
*/
/*
* This is the only item in the tree.
*/
return;
}
} else
/*
* This node has one child, on the right.
*/
/*
* This node has one child, on the left.
*/
else {
/*
* This node has two children, so it cannot be directly
* deleted. Find its immediate in-order successor and
* move it to this location, then do the deletion at the
* old site of the successor.
*/
/*
* The successor cannot possibly have a left child;
* if there is any child, it is on the right.
*/
/*
* Swap the two nodes; it would be simpler to just replace
* the value being deleted with that of the successor,
* but this rigamarole is done so the caller has complete
* control over the pointers (and memory allocation) of
* all of nodes. If just the key value were removed from
* the tree, the pointer to the node would be unchanged.
*/
/*
* First, put the successor in the tree location of the
* node to be deleted. Save its existing tree pointer
* information, which will be needed when linking up
* delete to the successor's old location.
*/
} else
else
/*
* Now relink the node to be deleted into the
* successor's previous tree location. PARENT(tmp)
* is the successor's original parent.
*/
/*
* Node being deleted was successor's parent.
*/
} else {
}
/*
* Original location of successor node has no left.
*/
}
/*
* Remove the node by removing the links from its parent.
*/
else
} else {
/*
* This is the root being deleted, and at this point
* it is known to have just one child.
*/
}
/*
* Fix color violations.
*/
}
} else {
}
}
} else {
/*
* Child is parent's right child.
* Everything is done the same as above,
* except mirrored.
*/
}
} else {
}
}
}
}
}
}
/*
* This should only be used on the root of a tree, because no color fixup
* is done at all.
*
* NOTE: No root pointer maintenance is done, because the function is only
* used for two cases:
* + deleting everything DOWN from a node that is itself being deleted, and
* + deleting the entire tree of trees from dns_rbt_destroy.
* In each case, the root pointer is no longer relevant, so there
* is no need for a root parameter to this function.
*
* If the function is ever intended to be used to delete something where
* a pointer needs to be told that this tree no longer exists,
* this function would need to adjusted accordingly.
*/
static isc_result_t
return (result);
if (result != ISC_R_SUCCESS)
goto done;
}
if (result != ISC_R_SUCCESS)
goto done;
}
if (result != ISC_R_SUCCESS)
goto done;
}
done:
if (result != ISC_R_SUCCESS)
return (result);
#if DNS_RBT_USEMAGIC
#endif
return (result);
}
static void
if (node->is_mmapped == 0) {
}
}
static void
return;
}
goto traverse;
}
goto traverse;
}
/*
* Note: we don't call unhash_node() here as we are destroying
* the complete rbt tree.
*/
#if DNS_RBT_USEMAGIC
#endif
} else
return;
}
goto again;
}
static void
dns_rbt_indent(int depth) {
int i;
for (i = 0; i < depth; i++)
printf("- ");
}
void
printf("Node info for nodename: ");
printnodename(n);
printf("\n");
printf("n = %p\n", n);
printf("Relative pointers: %s%s%s%s%s\n",
}
static void
isc_region_t r;
char buffer[DNS_NAME_FORMATSIZE];
dns_name_fromregion(&name, &r);
}
static void
void (*data_printer)(FILE *, void *))
{
printf(" (BAD parent pointer! -> ");
else
printf("NULL");
printf(")");
}
printf(")");
}
printf("\n");
depth++;
} else {
}
}
void
}
/*
* Chain Functions
*/
void
/*
* Initialize 'chain'.
*/
chain->level_count = 0;
chain->level_matches = 0;
}
{
return (ISC_R_NOTFOUND);
if (chain->level_count == 0) {
/*
* Names in the top level tree are all absolute.
* Always make 'name' relative.
*/
/*
* This is cheaper than dns_name_getlabelsequence().
*/
}
}
if (chain->level_count > 0)
else
}
return (result);
}
{
predecessor = NULL;
/*
* Moving left one then right as far as possible is the
* previous node, at least for this level.
*/
} else {
/*
* No left links, so move toward the root. If at any point on
* the way there the link from parent to child is a right
* link, then the parent is the previous node, at least
* for this level.
*/
break;
}
}
}
if (predecessor != NULL) {
/*
* Found a predecessor node in this level. It might not
* really be the predecessor, however.
*/
/*
* The predecessor is really down at least one level.
* Go down and as far right as possible, and repeat
* as long as the rightmost node has a down pointer.
*/
do {
/*
* XXX DCL Need to do something about origins
* here. See whether to go down, and if so
* whether it is truly what Bob calls a
* new origin.
*/
/* XXX DCL duplicated from above; clever
* way to unduplicate? */
/* XXX DCL probably needs work on the concept */
}
} else if (chain->level_count > 0) {
/*
* Dang, didn't find a predecessor in this level.
* Got to the root of this level without having traversed
* any right links. Ascend the tree one level; the
* node that points to this tree is the predecessor.
*/
/* XXX DCL probably needs work on the concept */
/*
* Don't declare an origin change when the new origin is "."
* at the top level tree, because "." is declared as the origin
* for the second level tree.
*/
}
if (predecessor != NULL) {
if (new_origin) {
NULL);
if (result == ISC_R_SUCCESS)
} else
NULL);
} else
return (result);
}
{
/*
* Don't declare an origin change when the new origin is "."
* at the second level tree, because "." is already declared
* as the origin for the top level tree.
*/
if (chain->level_count > 0 ||
}
/*
* It is not necessary to use dns_rbtnodechain_current like
* the other functions because this function will never
* find a node in the topmost level. This is because the
* root level will never be more than one name, and everything
* in the megatree is a successor to that node, down at
* the second level or below.
*/
if (new_origin) {
if (result == ISC_R_SUCCESS)
} else
} else
return (result);
}
break;
}
}
} else {
}
} else
return (result);
}
{
/*
* If there is a level below this node, the next node is the leftmost
* node of the next level.
*/
/*
* Don't declare an origin change when the new origin is "."
* at the second level tree, because "." is already declared
* as the origin for the top level tree.
*/
if (chain->level_count > 0 ||
/*
* The successor is up, either in this level or a previous one.
* Head back toward the root of the tree, looking for any path
* that was via a left link; the successor is the node that has
* that left link. In the event the root of the level is
* reached without having traversed any left links, ascend one
* level and look for either a right link off the point of
* ascent, or search for a left link upward again, repeating
* ascends until either case is true.
*/
do {
break;
}
}
/*
* Reached the root without having traversed
* any left pointers, so this level is done.
*/
if (chain->level_count == 0)
break;
break;
}
}
}
/*
* It is not necessary to use dns_rbtnodechain_current like
* the other functions because this function will never
* find a node in the topmost level. This is because the
* root level will never be more than one name, and everything
* in the megatree is a successor to that node, down at
* the second level or below.
*/
if (new_origin) {
if (result == ISC_R_SUCCESS)
} else
} else
return (result);
}
{
if (result == ISC_R_SUCCESS)
return (result);
}
{
if (result != ISC_R_SUCCESS)
return (result);
if (result == ISC_R_SUCCESS)
return (result);
}
void
/*
* Free any dynamic storage associated with 'chain', and then
* reinitialize 'chain'.
*/
chain->level_count = 0;
chain->level_matches = 0;
}
void
/*
* Free any dynamic storage associated with 'chain', and then
* invalidate 'chain'.
*/
}