2004-04-22 Ralf Corsepius <ralf_corsepius@rtems.org>

* libnetworking/net/radix.h, libnetworking/net/radix.c: Partial
	update from FreeBSD.
This commit is contained in:
Ralf Corsepius
2004-04-22 08:48:23 +00:00
parent f1a744e780
commit 5e3745fb40
3 changed files with 241 additions and 186 deletions

View File

@@ -1,3 +1,8 @@
2004-04-22 Ralf Corsepius <ralf_corsepius@rtems.org>
* libnetworking/net/radix.h, libnetworking/net/radix.c: Partial
update from FreeBSD.
2004-04-22 Ralf Corsepius <ralf_corsepius@rtems.org> 2004-04-22 Ralf Corsepius <ralf_corsepius@rtems.org>
* libnetworking/sys/socket.h: Further update from FreeBSD * libnetworking/sys/socket.h: Further update from FreeBSD

View File

@@ -30,8 +30,8 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * SUCH DAMAGE.
* *
* @(#)radix.c 8.4 (Berkeley) 11/2/94 * @(#)radix.c 8.5 (Berkeley) 5/19/95
* $Id$ * $FreeBSD: src/sys/net/radix.c,v 1.32 2003/09/22 23:24:18 peter Exp $
*/ */
/* /*
@@ -51,19 +51,15 @@
#include <net/radix.h> #include <net/radix.h>
#endif #endif
static struct radix_node * static int rn_walktree_from(struct radix_node_head *h, void *a, void *m,
rn_lookup __P((void *v_arg, void *m_arg, walktree_f_t *f, void *w);
struct radix_node_head *head)); static int rn_walktree(struct radix_node_head *, walktree_f_t *, void *);
static int rn_walktree_from __P((struct radix_node_head *h, void *a,
void *m, walktree_f_t *f, void *w));
static int rn_walktree __P((struct radix_node_head *, walktree_f_t *, void *));
static struct radix_node static struct radix_node
*rn_delete __P((void *, void *, struct radix_node_head *)), *rn_insert(void *, struct radix_node_head *, int *,
*rn_insert __P((void *, struct radix_node_head *, int *, struct radix_node [2]),
struct radix_node [2])), *rn_newpair(void *, int, struct radix_node[2]),
*rn_newpair __P((void *, int, struct radix_node[2])), *rn_search(void *, struct radix_node *),
*rn_search __P((void *, struct radix_node *)), *rn_search_m(void *, struct radix_node *, void *);
*rn_search_m __P((void *, struct radix_node *, void *));
static int max_keylen; static int max_keylen;
static struct radix_mask *rn_mkfreelist; static struct radix_mask *rn_mkfreelist;
@@ -74,23 +70,24 @@ static char *rn_zeros, *rn_ones;
#define rn_masktop (mask_rnhead->rnh_treetop) #define rn_masktop (mask_rnhead->rnh_treetop)
#undef Bcmp #undef Bcmp
#define Bcmp(a, b, l) (l == 0 ? 0 : bcmp((caddr_t)(a), (caddr_t)(b), (u_long)l)) #define Bcmp(a, b, l) \
(l == 0 ? 0 : bcmp((caddr_t)(a), (caddr_t)(b), (u_long)l))
static int rn_lexobetter __P((void *m_arg, void *n_arg)); static int rn_lexobetter(void *m_arg, void *n_arg);
static struct radix_mask * static struct radix_mask *
rn_new_radix_mask __P((struct radix_node *tt, rn_new_radix_mask(struct radix_node *tt,
struct radix_mask *next)); struct radix_mask *next);
static int rn_satsifies_leaf __P((char *trial, struct radix_node *leaf, static int rn_satisfies_leaf(char *trial, struct radix_node *leaf,
int skip)); int skip);
/* /*
* The data structure for the keys is a radix tree with one way * The data structure for the keys is a radix tree with one way
* branching removed. The index rn_b at an internal node n represents a bit * branching removed. The index rn_bit at an internal node n represents a bit
* position to be tested. The tree is arranged so that all descendants * position to be tested. The tree is arranged so that all descendants
* of a node n have keys whose bits all agree up to position rn_b - 1. * of a node n have keys whose bits all agree up to position rn_bit - 1.
* (We say the index of n is rn_b.) * (We say the index of n is rn_bit.)
* *
* There is at least one descendant which has a one bit at position rn_b, * There is at least one descendant which has a one bit at position rn_bit,
* and at least one with a zero there. * and at least one with a zero there.
* *
* A route is determined by a pair of key and mask. We require that the * A route is determined by a pair of key and mask. We require that the
@@ -100,9 +97,9 @@ static int rn_satsifies_leaf __P((char *trial, struct radix_node *leaf,
* representing the highest order bit). * representing the highest order bit).
* *
* We say a mask is normal if every bit is 0, past the index of the mask. * We say a mask is normal if every bit is 0, past the index of the mask.
* If a node n has a descendant (k, m) with index(m) == index(n) == rn_b, * If a node n has a descendant (k, m) with index(m) == index(n) == rn_bit,
* and m is a normal mask, then the route applies to every descendant of n. * and m is a normal mask, then the route applies to every descendant of n.
* If the index(m) < rn_b, this implies the trailing last few bits of k * If the index(m) < rn_bit, this implies the trailing last few bits of k
* before bit b are all 0, (and hence consequently true of every descendant * before bit b are all 0, (and hence consequently true of every descendant
* of n), so the route applies to all descendants of the node as well. * of n), so the route applies to all descendants of the node as well.
* *
@@ -125,14 +122,14 @@ rn_search(v_arg, head)
register struct radix_node *x; register struct radix_node *x;
register caddr_t v; register caddr_t v;
for (x = head, v = v_arg; x->rn_b >= 0;) { for (x = head, v = v_arg; x->rn_bit >= 0;) {
if (x->rn_bmask & v[x->rn_off]) if (x->rn_bmask & v[x->rn_offset])
x = x->rn_r; x = x->rn_right;
else else
x = x->rn_l; x = x->rn_left;
} }
return (x); return (x);
}; }
static struct radix_node * static struct radix_node *
rn_search_m(v_arg, head, m_arg) rn_search_m(v_arg, head, m_arg)
@@ -142,15 +139,15 @@ rn_search_m(v_arg, head, m_arg)
register struct radix_node *x; register struct radix_node *x;
register caddr_t v = v_arg, m = m_arg; register caddr_t v = v_arg, m = m_arg;
for (x = head; x->rn_b >= 0;) { for (x = head; x->rn_bit >= 0;) {
if ((x->rn_bmask & m[x->rn_off]) && if ((x->rn_bmask & m[x->rn_offset]) &&
(x->rn_bmask & v[x->rn_off])) (x->rn_bmask & v[x->rn_offset]))
x = x->rn_r; x = x->rn_right;
else else
x = x->rn_l; x = x->rn_left;
} }
return x; return x;
}; }
int int
rn_refines(m_arg, n_arg) rn_refines(m_arg, n_arg)
@@ -188,7 +185,8 @@ rn_lookup(v_arg, m_arg, head)
caddr_t netmask = 0; caddr_t netmask = 0;
if (m_arg) { if (m_arg) {
if ((x = rn_addmask(m_arg, 1, head->rnh_treetop->rn_off)) == 0) x = rn_addmask(m_arg, 1, head->rnh_treetop->rn_offset);
if (x == 0)
return (0); return (0);
netmask = x->rn_key; netmask = x->rn_key;
} }
@@ -201,7 +199,7 @@ rn_lookup(v_arg, m_arg, head)
} }
static int static int
rn_satsifies_leaf(trial, leaf, skip) rn_satisfies_leaf(trial, leaf, skip)
char *trial; char *trial;
register struct radix_node *leaf; register struct radix_node *leaf;
int skip; int skip;
@@ -231,18 +229,18 @@ rn_match(v_arg, head)
register caddr_t cp = v, cp2; register caddr_t cp = v, cp2;
caddr_t cplim; caddr_t cplim;
struct radix_node *saved_t, *top = t; struct radix_node *saved_t, *top = t;
int off = t->rn_off, vlen = *(u_char *)cp, matched_off; int off = t->rn_offset, vlen = *(u_char *)cp, matched_off;
register int test, b, rn_b; register int test, b, rn_bit;
/* /*
* Open code rn_search(v, top) to avoid overhead of extra * Open code rn_search(v, top) to avoid overhead of extra
* subroutine call. * subroutine call.
*/ */
for (; t->rn_b >= 0; ) { for (; t->rn_bit >= 0; ) {
if (t->rn_bmask & cp[t->rn_off]) if (t->rn_bmask & cp[t->rn_offset])
t = t->rn_r; t = t->rn_right;
else else
t = t->rn_l; t = t->rn_left;
} }
/* /*
* See if we match exactly as a host destination * See if we match exactly as a host destination
@@ -277,7 +275,7 @@ on1:
b--; b--;
matched_off = cp - v; matched_off = cp - v;
b += matched_off << 3; b += matched_off << 3;
rn_b = -1 - b; rn_bit = -1 - b;
/* /*
* If there is a host route in a duped-key chain, it will be first. * If there is a host route in a duped-key chain, it will be first.
*/ */
@@ -290,15 +288,15 @@ on1:
* a route to a net. * a route to a net.
*/ */
if (t->rn_flags & RNF_NORMAL) { if (t->rn_flags & RNF_NORMAL) {
if (rn_b <= t->rn_b) if (rn_bit <= t->rn_bit)
return t; return t;
} else if (rn_satsifies_leaf(v, t, matched_off)) } else if (rn_satisfies_leaf(v, t, matched_off))
return t; return t;
t = saved_t; t = saved_t;
/* start searching up the tree */ /* start searching up the tree */
do { do {
register struct radix_mask *m; register struct radix_mask *m;
t = t->rn_p; t = t->rn_parent;
m = t->rn_mklist; m = t->rn_mklist;
if (m) { if (m) {
/* /*
@@ -309,14 +307,14 @@ on1:
*/ */
do { do {
if (m->rm_flags & RNF_NORMAL) { if (m->rm_flags & RNF_NORMAL) {
if (rn_b <= m->rm_b) if (rn_bit <= m->rm_bit)
return (m->rm_leaf); return (m->rm_leaf);
} else { } else {
off = min(t->rn_off, matched_off); off = min(t->rn_offset, matched_off);
x = rn_search_m(v, t, m->rm_mask); x = rn_search_m(v, t, m->rm_mask);
while (x && x->rn_mask != m->rm_mask) while (x && x->rn_mask != m->rm_mask)
x = x->rn_dupedkey; x = x->rn_dupedkey;
if (x && rn_satsifies_leaf(v, x, off)) if (x && rn_satisfies_leaf(v, x, off))
return x; return x;
} }
m = m->rm_mklist; m = m->rm_mklist;
@@ -324,7 +322,7 @@ on1:
} }
} while (t != top); } while (t != top);
return 0; return 0;
}; }
#ifdef RN_DEBUG #ifdef RN_DEBUG
int rn_nodenum; int rn_nodenum;
@@ -340,13 +338,19 @@ rn_newpair(v, b, nodes)
struct radix_node nodes[2]; struct radix_node nodes[2];
{ {
register struct radix_node *tt = nodes, *t = tt + 1; register struct radix_node *tt = nodes, *t = tt + 1;
t->rn_b = b; t->rn_bmask = 0x80 >> (b & 7); t->rn_bit = b;
t->rn_l = tt; t->rn_off = b >> 3; t->rn_bmask = 0x80 >> (b & 7);
tt->rn_b = -1; tt->rn_key = (caddr_t)v; tt->rn_p = t; t->rn_left = tt;
t->rn_offset = b >> 3;
tt->rn_bit = -1;
tt->rn_key = (caddr_t)v;
tt->rn_parent = t;
tt->rn_flags = t->rn_flags = RNF_ACTIVE; tt->rn_flags = t->rn_flags = RNF_ACTIVE;
#ifdef RN_DEBUG #ifdef RN_DEBUG
tt->rn_info = rn_nodenum++; t->rn_info = rn_nodenum++; tt->rn_info = rn_nodenum++; t->rn_info = rn_nodenum++;
tt->rn_twin = t; tt->rn_ybro = rn_clist; rn_clist = tt; tt->rn_twin = t;
tt->rn_ybro = rn_clist;
rn_clist = tt;
#endif #endif
return t; return t;
} }
@@ -360,7 +364,7 @@ rn_insert(v_arg, head, dupentry, nodes)
{ {
caddr_t v = v_arg; caddr_t v = v_arg;
struct radix_node *top = head->rnh_treetop; struct radix_node *top = head->rnh_treetop;
int head_off = top->rn_off, vlen = (int)*((u_char *)v); int head_off = top->rn_offset, vlen = (int)*((u_char *)v);
register struct radix_node *t = rn_search(v_arg, top); register struct radix_node *t = rn_search(v_arg, top);
register caddr_t cp = v + head_off; register caddr_t cp = v + head_off;
register int b; register int b;
@@ -389,24 +393,29 @@ on1:
cp = v; cp = v;
do { do {
p = x; p = x;
if (cp[x->rn_off] & x->rn_bmask) if (cp[x->rn_offset] & x->rn_bmask)
x = x->rn_r; x = x->rn_right;
else x = x->rn_l; else
} while (b > (unsigned) x->rn_b); /* x->rn_b < b && x->rn_b >= 0 */ x = x->rn_left;
} while (b > (unsigned) x->rn_bit);
/* x->rn_bit < b && x->rn_bit >= 0 */
#ifdef RN_DEBUG #ifdef RN_DEBUG
if (rn_debug) if (rn_debug)
log(LOG_DEBUG, "rn_insert: Going In:\n"), traverse(p); log(LOG_DEBUG, "rn_insert: Going In:\n"), traverse(p);
#endif #endif
t = rn_newpair(v_arg, b, nodes); tt = t->rn_l; t = rn_newpair(v_arg, b, nodes);
if ((cp[p->rn_off] & p->rn_bmask) == 0) tt = t->rn_left;
p->rn_l = t; if ((cp[p->rn_offset] & p->rn_bmask) == 0)
p->rn_left = t;
else else
p->rn_r = t; p->rn_right = t;
x->rn_p = t; t->rn_p = p; /* frees x, p as temp vars below */ x->rn_parent = t;
if ((cp[t->rn_off] & t->rn_bmask) == 0) { t->rn_parent = p; /* frees x, p as temp vars below */
t->rn_r = x; if ((cp[t->rn_offset] & t->rn_bmask) == 0) {
t->rn_right = x;
} else { } else {
t->rn_r = tt; t->rn_l = x; t->rn_right = tt;
t->rn_left = x;
} }
#ifdef RN_DEBUG #ifdef RN_DEBUG
if (rn_debug) if (rn_debug)
@@ -483,7 +492,7 @@ rn_addmask(n_arg, search, skip)
isnormal = 0; isnormal = 0;
} }
b += (cp - netmask) << 3; b += (cp - netmask) << 3;
x->rn_b = -1 - b; x->rn_bit = -1 - b;
if (isnormal) if (isnormal)
x->rn_flags |= RNF_NORMAL; x->rn_flags |= RNF_NORMAL;
return (x); return (x);
@@ -517,7 +526,7 @@ rn_new_radix_mask(tt, next)
return (0); return (0);
} }
Bzero(m, sizeof *m); Bzero(m, sizeof *m);
m->rm_b = tt->rn_b; m->rm_bit = tt->rn_bit;
m->rm_flags = tt->rn_flags; m->rm_flags = tt->rn_flags;
if (tt->rn_flags & RNF_NORMAL) if (tt->rn_flags & RNF_NORMAL)
m->rm_leaf = tt; m->rm_leaf = tt;
@@ -550,10 +559,10 @@ rn_addroute(v_arg, n_arg, head, treenodes)
* nodes and possibly save time in calculating indices. * nodes and possibly save time in calculating indices.
*/ */
if (netmask) { if (netmask) {
if ((x = rn_addmask(netmask, 0, top->rn_off)) == 0) if ((x = rn_addmask(netmask, 0, top->rn_offset)) == 0)
return (0); return (0);
b_leaf = x->rn_b; b_leaf = x->rn_bit;
b = -1 - x->rn_b; b = -1 - x->rn_bit;
netmask = x->rn_key; netmask = x->rn_key;
} }
/* /*
@@ -566,9 +575,9 @@ rn_addroute(v_arg, n_arg, head, treenodes)
return (0); return (0);
if (netmask == 0 || if (netmask == 0 ||
(tt->rn_mask && (tt->rn_mask &&
((b_leaf < tt->rn_b) || /* index(netmask) > node */ ((b_leaf < tt->rn_bit) /* index(netmask) > node */
rn_refines(netmask, tt->rn_mask) || || rn_refines(netmask, tt->rn_mask)
rn_lexobetter(netmask, tt->rn_mask)))) || rn_lexobetter(netmask, tt->rn_mask))))
break; break;
} }
/* /*
@@ -580,29 +589,35 @@ rn_addroute(v_arg, n_arg, head, treenodes)
* in a masklist -- most specific to least specific. * in a masklist -- most specific to least specific.
* This may require the unfortunate nuisance of relocating * This may require the unfortunate nuisance of relocating
* the head of the list. * the head of the list.
*
* We also reverse, or doubly link the list through the
* parent pointer.
*/ */
if (tt == saved_tt) { if (tt == saved_tt) {
struct radix_node *xx = x; struct radix_node *xx = x;
/* link in at head of list */ /* link in at head of list */
(tt = treenodes)->rn_dupedkey = t; (tt = treenodes)->rn_dupedkey = t;
tt->rn_flags = t->rn_flags; tt->rn_flags = t->rn_flags;
tt->rn_p = x = t->rn_p; tt->rn_parent = x = t->rn_parent;
t->rn_p = tt; /* parent */ t->rn_parent = tt; /* parent */
if (x->rn_l == t) x->rn_l = tt; else x->rn_r = tt; if (x->rn_left == t)
x->rn_left = tt;
else
x->rn_right = tt;
saved_tt = tt; x = xx; saved_tt = tt; x = xx;
} else { } else {
(tt = treenodes)->rn_dupedkey = t->rn_dupedkey; (tt = treenodes)->rn_dupedkey = t->rn_dupedkey;
t->rn_dupedkey = tt; t->rn_dupedkey = tt;
tt->rn_p = t; /* parent */ tt->rn_parent = t; /* parent */
if (tt->rn_dupedkey) /* parent */ if (tt->rn_dupedkey) /* parent */
tt->rn_dupedkey->rn_p = tt; /* parent */ tt->rn_dupedkey->rn_parent = tt; /* parent */
} }
#ifdef RN_DEBUG #ifdef RN_DEBUG
t=tt+1; tt->rn_info = rn_nodenum++; t->rn_info = rn_nodenum++; t=tt+1; tt->rn_info = rn_nodenum++; t->rn_info = rn_nodenum++;
tt->rn_twin = t; tt->rn_ybro = rn_clist; rn_clist = tt; tt->rn_twin = t; tt->rn_ybro = rn_clist; rn_clist = tt;
#endif #endif
tt->rn_key = (caddr_t) v; tt->rn_key = (caddr_t) v;
tt->rn_b = -1; tt->rn_bit = -1;
tt->rn_flags = RNF_ACTIVE; tt->rn_flags = RNF_ACTIVE;
} }
/* /*
@@ -610,18 +625,21 @@ rn_addroute(v_arg, n_arg, head, treenodes)
*/ */
if (netmask) { if (netmask) {
tt->rn_mask = netmask; tt->rn_mask = netmask;
tt->rn_b = x->rn_b; tt->rn_bit = x->rn_bit;
tt->rn_flags |= x->rn_flags & RNF_NORMAL; tt->rn_flags |= x->rn_flags & RNF_NORMAL;
} }
t = saved_tt->rn_p; t = saved_tt->rn_parent;
if (keyduplicated) if (keyduplicated)
goto on2; goto on2;
b_leaf = -1 - t->rn_b; b_leaf = -1 - t->rn_bit;
if (t->rn_r == saved_tt) x = t->rn_l; else x = t->rn_r; if (t->rn_right == saved_tt)
x = t->rn_left;
else
x = t->rn_right;
/* Promote general routes from below */ /* Promote general routes from below */
if (x->rn_b < 0) { if (x->rn_bit < 0) {
for (mp = &t->rn_mklist; x; x = x->rn_dupedkey) for (mp = &t->rn_mklist; x; x = x->rn_dupedkey)
if (x->rn_mask && (x->rn_b >= b_leaf) && x->rn_mklist == 0) { if (x->rn_mask && (x->rn_bit >= b_leaf) && x->rn_mklist == 0) {
*mp = m = rn_new_radix_mask(x, 0); *mp = m = rn_new_radix_mask(x, 0);
if (m) if (m)
mp = &m->rm_mklist; mp = &m->rm_mklist;
@@ -631,19 +649,19 @@ rn_addroute(v_arg, n_arg, head, treenodes)
* Skip over masks whose index is > that of new node * Skip over masks whose index is > that of new node
*/ */
for (mp = &x->rn_mklist; (m = *mp); mp = &m->rm_mklist) for (mp = &x->rn_mklist; (m = *mp); mp = &m->rm_mklist)
if (m->rm_b >= b_leaf) if (m->rm_bit >= b_leaf)
break; break;
t->rn_mklist = m; *mp = 0; t->rn_mklist = m; *mp = 0;
} }
on2: on2:
/* Add new route to highest possible ancestor's list */ /* Add new route to highest possible ancestor's list */
if ((netmask == 0) || (b > t->rn_b )) if ((netmask == 0) || (b > t->rn_bit ))
return tt; /* can't lift at all */ return tt; /* can't lift at all */
b_leaf = tt->rn_b; b_leaf = tt->rn_bit;
do { do {
x = t; x = t;
t = t->rn_p; t = t->rn_parent;
} while (b <= t->rn_b && x != top); } while (b <= t->rn_bit && x != top);
/* /*
* Search through routes associated with node to * Search through routes associated with node to
* insert new route according to index. * insert new route according to index.
@@ -651,15 +669,15 @@ on2:
* double loop on deletion. * double loop on deletion.
*/ */
for (mp = &x->rn_mklist; (m = *mp); mp = &m->rm_mklist) { for (mp = &x->rn_mklist; (m = *mp); mp = &m->rm_mklist) {
if (m->rm_b < b_leaf) if (m->rm_bit < b_leaf)
continue; continue;
if (m->rm_b > b_leaf) if (m->rm_bit > b_leaf)
break; break;
if (m->rm_flags & RNF_NORMAL) { if (m->rm_flags & RNF_NORMAL) {
mmask = m->rm_leaf->rn_mask; mmask = m->rm_leaf->rn_mask;
if (tt->rn_flags & RNF_NORMAL) { if (tt->rn_flags & RNF_NORMAL) {
log(LOG_ERR, log(LOG_ERR,
"Non-unique normal route, mask not entered"); "Non-unique normal route, mask not entered\n");
return tt; return tt;
} }
} else } else
@@ -669,14 +687,15 @@ on2:
tt->rn_mklist = m; tt->rn_mklist = m;
return tt; return tt;
} }
if (rn_refines(netmask, mmask) || rn_lexobetter(netmask, mmask)) if (rn_refines(netmask, mmask)
|| rn_lexobetter(netmask, mmask))
break; break;
} }
*mp = rn_new_radix_mask(tt, *mp); *mp = rn_new_radix_mask(tt, *mp);
return tt; return tt;
} }
static struct radix_node * struct radix_node *
rn_delete(v_arg, netmask_arg, head) rn_delete(v_arg, netmask_arg, head)
void *v_arg, *netmask_arg; void *v_arg, *netmask_arg;
struct radix_node_head *head; struct radix_node_head *head;
@@ -691,7 +710,7 @@ rn_delete(v_arg, netmask_arg, head)
netmask = netmask_arg; netmask = netmask_arg;
x = head->rnh_treetop; x = head->rnh_treetop;
tt = rn_search(v, x); tt = rn_search(v, x);
head_off = x->rn_off; head_off = x->rn_offset;
vlen = *(u_char *)v; vlen = *(u_char *)v;
saved_tt = tt; saved_tt = tt;
top = x; top = x;
@@ -724,14 +743,14 @@ rn_delete(v_arg, netmask_arg, head)
if (--m->rm_refs >= 0) if (--m->rm_refs >= 0)
goto on1; goto on1;
} }
b = -1 - tt->rn_b; b = -1 - tt->rn_bit;
t = saved_tt->rn_p; t = saved_tt->rn_parent;
if (b > t->rn_b) if (b > t->rn_bit)
goto on1; /* Wasn't lifted at all */ goto on1; /* Wasn't lifted at all */
do { do {
x = t; x = t;
t = t->rn_p; t = t->rn_parent;
} while (b <= t->rn_b && x != top); } while (b <= t->rn_bit && x != top);
for (mp = &x->rn_mklist; (m = *mp); mp = &m->rm_mklist) for (mp = &x->rn_mklist; (m = *mp); mp = &m->rm_mklist)
if (m == saved_m) { if (m == saved_m) {
*mp = m->rm_mklist; *mp = m->rm_mklist;
@@ -754,17 +773,20 @@ on1:
for (t = rn_clist; t && t->rn_ybro != tt; t = t->rn_ybro) {} for (t = rn_clist; t && t->rn_ybro != tt; t = t->rn_ybro) {}
if (t) t->rn_ybro = tt->rn_ybro; if (t) t->rn_ybro = tt->rn_ybro;
#endif #endif
t = tt->rn_p; t = tt->rn_parent;
dupedkey = saved_tt->rn_dupedkey; dupedkey = saved_tt->rn_dupedkey;
if (dupedkey) { if (dupedkey) {
/* /*
* at this point, tt is the deletion target and saved_tt * Here, tt is the deletion target and
* is the head of the dupekey chain * saved_tt is the head of the dupekey chain.
*/ */
if (tt == saved_tt) { if (tt == saved_tt) {
/* remove from head of chain */ /* remove from head of chain */
x = dupedkey; x->rn_p = t; x = dupedkey; x->rn_parent = t;
if (t->rn_l == tt) t->rn_l = x; else t->rn_r = x; if (t->rn_left == tt)
t->rn_left = x;
else
t->rn_right = x;
} else { } else {
/* find node in front of tt on the chain */ /* find node in front of tt on the chain */
for (x = p = saved_tt; p && p->rn_dupedkey != tt;) for (x = p = saved_tt; p && p->rn_dupedkey != tt;)
@@ -772,30 +794,45 @@ on1:
if (p) { if (p) {
p->rn_dupedkey = tt->rn_dupedkey; p->rn_dupedkey = tt->rn_dupedkey;
if (tt->rn_dupedkey) /* parent */ if (tt->rn_dupedkey) /* parent */
tt->rn_dupedkey->rn_p = p; /* parent */ tt->rn_dupedkey->rn_parent = p;
/* parent */
} else log(LOG_ERR, "rn_delete: couldn't find us\n"); } else log(LOG_ERR, "rn_delete: couldn't find us\n");
} }
t = tt + 1; t = tt + 1;
if (t->rn_flags & RNF_ACTIVE) { if (t->rn_flags & RNF_ACTIVE) {
#ifndef RN_DEBUG #ifndef RN_DEBUG
*++x = *t; p = t->rn_p; *++x = *t;
p = t->rn_parent;
#else #else
b = t->rn_info; *++x = *t; t->rn_info = b; p = t->rn_p; b = t->rn_info;
*++x = *t;
t->rn_info = b;
p = t->rn_parent;
#endif #endif
if (p->rn_l == t) p->rn_l = x; else p->rn_r = x; if (p->rn_left == t)
x->rn_l->rn_p = x; x->rn_r->rn_p = x; p->rn_left = x;
else
p->rn_right = x;
x->rn_left->rn_parent = x;
x->rn_right->rn_parent = x;
} }
goto out; goto out;
} }
if (t->rn_l == tt) x = t->rn_r; else x = t->rn_l; if (t->rn_left == tt)
p = t->rn_p; x = t->rn_right;
if (p->rn_r == t) p->rn_r = x; else p->rn_l = x; else
x->rn_p = p; x = t->rn_left;
p = t->rn_parent;
if (p->rn_right == t)
p->rn_right = x;
else
p->rn_left = x;
x->rn_parent = p;
/* /*
* Demote routes attached to us. * Demote routes attached to us.
*/ */
if (t->rn_mklist) { if (t->rn_mklist) {
if (x->rn_b >= 0) { if (x->rn_bit >= 0) {
for (mp = &x->rn_mklist; (m = *mp);) for (mp = &x->rn_mklist; (m = *mp);)
mp = &m->rm_mklist; mp = &m->rm_mklist;
*mp = t->rn_mklist; *mp = t->rn_mklist;
@@ -812,8 +849,9 @@ on1:
m = mm; m = mm;
} }
if (m) if (m)
log(LOG_ERR, "%s %p at %x\n", log(LOG_ERR,
"rn_delete: Orphaned Mask", m, x); "rn_delete: Orphaned Mask %p at %p\n",
(void *)m, (void *)x);
} }
} }
/* /*
@@ -824,11 +862,17 @@ on1:
#ifndef RN_DEBUG #ifndef RN_DEBUG
*t = *x; *t = *x;
#else #else
b = t->rn_info; *t = *x; t->rn_info = b; b = t->rn_info;
*t = *x;
t->rn_info = b;
#endif #endif
t->rn_l->rn_p = t; t->rn_r->rn_p = t; t->rn_left->rn_parent = t;
p = x->rn_p; t->rn_right->rn_parent = t;
if (p->rn_l == x) p->rn_l = t; else p->rn_r = t; p = x->rn_parent;
if (p->rn_left == x)
p->rn_left = t;
else
p->rn_right = t;
} }
out: out:
tt->rn_flags &= ~RNF_ACTIVE; tt->rn_flags &= ~RNF_ACTIVE;
@@ -859,17 +903,17 @@ rn_walktree_from(h, a, m, f, w)
* rn_search_m is sort-of-open-coded here. * rn_search_m is sort-of-open-coded here.
*/ */
/* printf("about to search\n"); */ /* printf("about to search\n"); */
for (rn = h->rnh_treetop; rn->rn_b >= 0; ) { for (rn = h->rnh_treetop; rn->rn_bit >= 0; ) {
last = rn; last = rn;
/* printf("rn_b %d, rn_bmask %x, xm[rn_off] %x\n", /* printf("rn_bit %d, rn_bmask %x, xm[rn_offset] %x\n",
rn->rn_b, rn->rn_bmask, xm[rn->rn_off]); */ rn->rn_bit, rn->rn_bmask, xm[rn->rn_offset]); */
if (!(rn->rn_bmask & xm[rn->rn_off])) { if (!(rn->rn_bmask & xm[rn->rn_offset])) {
break; break;
} }
if (rn->rn_bmask & xa[rn->rn_off]) { if (rn->rn_bmask & xa[rn->rn_offset]) {
rn = rn->rn_r; rn = rn->rn_right;
} else { } else {
rn = rn->rn_l; rn = rn->rn_left;
} }
} }
/* printf("done searching\n"); */ /* printf("done searching\n"); */
@@ -881,7 +925,7 @@ rn_walktree_from(h, a, m, f, w)
* Either way, last is the node we want to start from. * Either way, last is the node we want to start from.
*/ */
rn = last; rn = last;
lastb = rn->rn_b; lastb = rn->rn_bit;
/* printf("rn %p, lastb %d\n", rn, lastb);*/ /* printf("rn %p, lastb %d\n", rn, lastb);*/
@@ -890,26 +934,27 @@ rn_walktree_from(h, a, m, f, w)
* while applying the function f to it, so we need to calculate * while applying the function f to it, so we need to calculate
* the successor node in advance. * the successor node in advance.
*/ */
while (rn->rn_b >= 0) while (rn->rn_bit >= 0)
rn = rn->rn_l; rn = rn->rn_left;
while (!stopping) { while (!stopping) {
/* printf("node %p (%d)\n", rn, rn->rn_b); */ /* printf("node %p (%d)\n", rn, rn->rn_bit); */
base = rn; base = rn;
/* If at right child go back up, otherwise, go right */ /* If at right child go back up, otherwise, go right */
while (rn->rn_p->rn_r == rn && !(rn->rn_flags & RNF_ROOT)) { while (rn->rn_parent->rn_right == rn
rn = rn->rn_p; && !(rn->rn_flags & RNF_ROOT)) {
rn = rn->rn_parent;
/* if went up beyond last, stop */ /* if went up beyond last, stop */
if (rn->rn_b < lastb) { if (rn->rn_bit < lastb) {
stopping = 1; stopping = 1;
/* printf("up too far\n"); */ /* printf("up too far\n"); */
} }
} }
/* Find the next *leaf* since next node might vanish, too */ /* Find the next *leaf* since next node might vanish, too */
for (rn = rn->rn_p->rn_r; rn->rn_b >= 0;) for (rn = rn->rn_parent->rn_right; rn->rn_bit >= 0;)
rn = rn->rn_l; rn = rn->rn_left;
next = rn; next = rn;
/* Process leaves */ /* Process leaves */
while ((rn = base) != 0) { while ((rn = base) != 0) {
@@ -945,21 +990,23 @@ rn_walktree(h, f, w)
* the successor node in advance. * the successor node in advance.
*/ */
/* First time through node, go left */ /* First time through node, go left */
while (rn->rn_b >= 0) while (rn->rn_bit >= 0)
rn = rn->rn_l; rn = rn->rn_left;
for (;;) { for (;;) {
base = rn; base = rn;
/* If at right child go back up, otherwise, go right */ /* If at right child go back up, otherwise, go right */
while (rn->rn_p->rn_r == rn && (rn->rn_flags & RNF_ROOT) == 0) while (rn->rn_parent->rn_right == rn
rn = rn->rn_p; && (rn->rn_flags & RNF_ROOT) == 0)
rn = rn->rn_parent;
/* Find the next *leaf* since next node might vanish, too */ /* Find the next *leaf* since next node might vanish, too */
for (rn = rn->rn_p->rn_r; rn->rn_b >= 0;) for (rn = rn->rn_parent->rn_right; rn->rn_bit >= 0;)
rn = rn->rn_l; rn = rn->rn_left;
next = rn; next = rn;
/* Process leaves */ /* Process leaves */
while ((rn = base)) { while ((rn = base)) {
base = rn->rn_dupedkey; base = rn->rn_dupedkey;
if (!(rn->rn_flags & RNF_ROOT) && (error = (*f)(rn, w))) if (!(rn->rn_flags & RNF_ROOT)
&& (error = (*f)(rn, w)))
return (error); return (error);
} }
rn = next; rn = next;
@@ -985,11 +1032,11 @@ rn_inithead(head, off)
*head = rnh; *head = rnh;
t = rn_newpair(rn_zeros, off, rnh->rnh_nodes); t = rn_newpair(rn_zeros, off, rnh->rnh_nodes);
ttt = rnh->rnh_nodes + 2; ttt = rnh->rnh_nodes + 2;
t->rn_r = ttt; t->rn_right = ttt;
t->rn_p = t; t->rn_parent = t;
tt = t->rn_l; tt = t->rn_left;
tt->rn_flags = t->rn_flags = RNF_ROOT | RNF_ACTIVE; tt->rn_flags = t->rn_flags = RNF_ROOT | RNF_ACTIVE;
tt->rn_b = -1 - off; tt->rn_bit = -1 - off;
*ttt = *tt; *ttt = *tt;
ttt->rn_key = rn_ones; ttt->rn_key = rn_ones;
rnh->rnh_addaddr = rn_addroute; rnh->rnh_addaddr = rn_addroute;
@@ -1026,6 +1073,6 @@ rn_init()
addmask_key = cplim = rn_ones + max_keylen; addmask_key = cplim = rn_ones + max_keylen;
while (cp < cplim) while (cp < cplim)
*cp++ = -1; *cp++ = -1;
if (rn_inithead((void *)&mask_rnhead, 0) == 0) if (rn_inithead((void **)(void*)&mask_rnhead, 0) == 0)
panic("rn_init 2"); panic("rn_init 2");
} }

View File

@@ -31,7 +31,7 @@
* SUCH DAMAGE. * SUCH DAMAGE.
* *
* @(#)radix.h 8.2 (Berkeley) 10/31/94 * @(#)radix.h 8.2 (Berkeley) 10/31/94
* $Id$ * $FreeBSD: src/sys/net/radix.h,v 1.23 2003/08/19 17:23:07 sam Exp $
*/ */
#ifndef _RADIX_H_ #ifndef _RADIX_H_
@@ -43,8 +43,8 @@
struct radix_node { struct radix_node {
struct radix_mask *rn_mklist; /* list of masks contained in subtree */ struct radix_mask *rn_mklist; /* list of masks contained in subtree */
struct radix_node *rn_p; /* parent */ struct radix_node *rn_parent; /* parent */
short rn_b; /* bit offset; -1-index(netmask) */ short rn_bit; /* bit offset; -1-index(netmask) */
char rn_bmask; /* node: mask for bit test*/ char rn_bmask; /* node: mask for bit test*/
u_char rn_flags; /* enumerated next */ u_char rn_flags; /* enumerated next */
#define RNF_NORMAL 1 /* leaf contains normal route */ #define RNF_NORMAL 1 /* leaf contains normal route */
@@ -72,16 +72,16 @@ struct radix_node {
#define rn_dupedkey rn_u.rn_leaf.rn_Dupedkey #define rn_dupedkey rn_u.rn_leaf.rn_Dupedkey
#define rn_key rn_u.rn_leaf.rn_Key #define rn_key rn_u.rn_leaf.rn_Key
#define rn_mask rn_u.rn_leaf.rn_Mask #define rn_mask rn_u.rn_leaf.rn_Mask
#define rn_off rn_u.rn_node.rn_Off #define rn_offset rn_u.rn_node.rn_Off
#define rn_l rn_u.rn_node.rn_L #define rn_left rn_u.rn_node.rn_L
#define rn_r rn_u.rn_node.rn_R #define rn_right rn_u.rn_node.rn_R
/* /*
* Annotations to tree concerning potential routes applying to subtrees. * Annotations to tree concerning potential routes applying to subtrees.
*/ */
extern struct radix_mask { struct radix_mask {
short rm_b; /* bit offset; -1-index(netmask) */ short rm_bit; /* bit offset; -1-index(netmask) */
char rm_unused; /* cf. rn_bmask */ char rm_unused; /* cf. rn_bmask */
u_char rm_flags; /* cf. rn_flags */ u_char rm_flags; /* cf. rn_flags */
struct radix_mask *rm_mklist; /* more masks to try */ struct radix_mask *rm_mklist; /* more masks to try */
@@ -90,7 +90,7 @@ extern struct radix_mask {
struct radix_node *rmu_leaf; /* for normal routes */ struct radix_node *rmu_leaf; /* for normal routes */
} rm_rmu; } rm_rmu;
int rm_refs; /* # of references to this struct */ int rm_refs; /* # of references to this struct */
} *rn_mkfreelist; };
#define rm_mask rm_rmu.rmu_mask #define rm_mask rm_rmu.rmu_mask
#define rm_leaf rm_rmu.rmu_leaf /* extra field would make 32 bytes */ #define rm_leaf rm_rmu.rmu_leaf /* extra field would make 32 bytes */
@@ -104,35 +104,35 @@ extern struct radix_mask {
#define MKFree(m) { (m)->rm_mklist = rn_mkfreelist; rn_mkfreelist = (m);} #define MKFree(m) { (m)->rm_mklist = rn_mkfreelist; rn_mkfreelist = (m);}
typedef int walktree_f_t __P((struct radix_node *, void *)); typedef int walktree_f_t(struct radix_node *, void *);
struct radix_node_head { struct radix_node_head {
struct radix_node *rnh_treetop; struct radix_node *rnh_treetop;
int rnh_addrsize; /* permit, but not require fixed keys */ int rnh_addrsize; /* permit, but not require fixed keys */
int rnh_pktsize; /* permit, but not require fixed keys */ int rnh_pktsize; /* permit, but not require fixed keys */
struct radix_node *(*rnh_addaddr) /* add based on sockaddr */ struct radix_node *(*rnh_addaddr) /* add based on sockaddr */
__P((void *v, void *mask, (void *v, void *mask,
struct radix_node_head *head, struct radix_node nodes[])); struct radix_node_head *head, struct radix_node nodes[]);
struct radix_node *(*rnh_addpkt) /* add based on packet hdr */ struct radix_node *(*rnh_addpkt) /* add based on packet hdr */
__P((void *v, void *mask, (void *v, void *mask,
struct radix_node_head *head, struct radix_node nodes[])); struct radix_node_head *head, struct radix_node nodes[]);
struct radix_node *(*rnh_deladdr) /* remove based on sockaddr */ struct radix_node *(*rnh_deladdr) /* remove based on sockaddr */
__P((void *v, void *mask, struct radix_node_head *head)); (void *v, void *mask, struct radix_node_head *head);
struct radix_node *(*rnh_delpkt) /* remove based on packet hdr */ struct radix_node *(*rnh_delpkt) /* remove based on packet hdr */
__P((void *v, void *mask, struct radix_node_head *head)); (void *v, void *mask, struct radix_node_head *head);
struct radix_node *(*rnh_matchaddr) /* locate based on sockaddr */ struct radix_node *(*rnh_matchaddr) /* locate based on sockaddr */
__P((void *v, struct radix_node_head *head)); (void *v, struct radix_node_head *head);
struct radix_node *(*rnh_lookup) /* locate based on sockaddr */ struct radix_node *(*rnh_lookup) /* locate based on sockaddr */
__P((void *v, void *mask, struct radix_node_head *head)); (void *v, void *mask, struct radix_node_head *head);
struct radix_node *(*rnh_matchpkt) /* locate based on packet hdr */ struct radix_node *(*rnh_matchpkt) /* locate based on packet hdr */
__P((void *v, struct radix_node_head *head)); (void *v, struct radix_node_head *head);
int (*rnh_walktree) /* traverse tree */ int (*rnh_walktree) /* traverse tree */
__P((struct radix_node_head *head, walktree_f_t *f, void *w)); (struct radix_node_head *head, walktree_f_t *f, void *w);
int (*rnh_walktree_from) /* traverse tree below a */ int (*rnh_walktree_from) /* traverse tree below a */
__P((struct radix_node_head *head, void *a, void *m, (struct radix_node_head *head, void *a, void *m,
walktree_f_t *f, void *w)); walktree_f_t *f, void *w);
void (*rnh_close) /* do something when the last ref drops */ void (*rnh_close) /* do something when the last ref drops */
__P((struct radix_node *rn, struct radix_node_head *head)); (struct radix_node *rn, struct radix_node_head *head);
struct radix_node rnh_nodes[3]; /* empty tree for common case */ struct radix_node rnh_nodes[3]; /* empty tree for common case */
}; };
@@ -141,6 +141,7 @@ struct radix_node_head {
#define Bcopy(a, b, n) bcopy(((char *)(a)), ((char *)(b)), (unsigned)(n)) #define Bcopy(a, b, n) bcopy(((char *)(a)), ((char *)(b)), (unsigned)(n))
#define Bzero(p, n) bzero((char *)(p), (int)(n)); #define Bzero(p, n) bzero((char *)(p), (int)(n));
#define R_Malloc(p, t, n) (p = (t) malloc((unsigned int)(n))) #define R_Malloc(p, t, n) (p = (t) malloc((unsigned int)(n)))
#define R_Zalloc(p, t, n) (p = (t) calloc(1,(unsigned int)(n)))
#define Free(p) free((char *)p); #define Free(p) free((char *)p);
#else #else
#define Bcmp(a, b, n) bcmp(((caddr_t)(a)), ((caddr_t)(b)), (unsigned)(n)) #define Bcmp(a, b, n) bcmp(((caddr_t)(a)), ((caddr_t)(b)), (unsigned)(n))
@@ -152,14 +153,16 @@ struct radix_node_head {
extern struct radix_node_head *mask_rnhead; extern struct radix_node_head *mask_rnhead;
void rn_init __P((void)); void rn_init(void);
int rn_inithead __P((void **, int)); int rn_inithead(void **, int);
int rn_refines __P((void *, void *)); int rn_refines(void *, void *);
struct radix_node struct radix_node
*rn_addmask __P((void *, int, int)), *rn_addmask(void *, int, int),
*rn_addroute __P((void *, void *, struct radix_node_head *, *rn_addroute (void *, void *, struct radix_node_head *,
struct radix_node [2])), struct radix_node [2]),
*rn_match __P((void *, struct radix_node_head *)); *rn_delete(void *, void *, struct radix_node_head *),
*rn_lookup (void *v_arg, void *m_arg,
struct radix_node_head *head),
*rn_match(void *, struct radix_node_head *);
#endif /* _RADIX_H_ */ #endif /* _RADIX_H_ */