radix.c
上传用户:liugui
上传日期:2007-01-04
资源大小:822k
文件大小:27k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: radix.c,v 1.9 1998/11/12 06:30:14 wessels Exp $
  3.  *
  4.  * DEBUG: section 53     Radix tree data structure implementation
  5.  * AUTHOR: NetBSD Derived
  6.  *
  7.  * SQUID Internet Object Cache  http://squid.nlanr.net/Squid/
  8.  * ----------------------------------------------------------
  9.  *
  10.  *  Squid is the result of efforts by numerous individuals from the
  11.  *  Internet community.  Development is led by Duane Wessels of the
  12.  *  National Laboratory for Applied Network Research and funded by the
  13.  *  National Science Foundation.  Squid is Copyrighted (C) 1998 by
  14.  *  Duane Wessels and the University of California San Diego.  Please
  15.  *  see the COPYRIGHT file for full details.  Squid incorporates
  16.  *  software developed and/or copyrighted by other sources.  Please see
  17.  *  the CREDITS file for full details.
  18.  *
  19.  *  This program is free software; you can redistribute it and/or modify
  20.  *  it under the terms of the GNU General Public License as published by
  21.  *  the Free Software Foundation; either version 2 of the License, or
  22.  *  (at your option) any later version.
  23.  *  
  24.  *  This program is distributed in the hope that it will be useful,
  25.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  26.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  27.  *  GNU General Public License for more details.
  28.  *  
  29.  *  You should have received a copy of the GNU General Public License
  30.  *  along with this program; if not, write to the Free Software
  31.  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
  32.  *
  33.  */
  34. /*
  35.  * Copyright (c) 1988, 1989, 1993
  36.  *      The Regents of the University of California.  All rights reserved.
  37.  *
  38.  * Redistribution and use in source and binary forms, with or without
  39.  * modification, are permitted provided that the following conditions
  40.  * are met:
  41.  * 1. Redistributions of source code must retain the above copyright
  42.  *    notice, this list of conditions and the following disclaimer.
  43.  * 2. Redistributions in binary form must reproduce the above copyright
  44.  *    notice, this list of conditions and the following disclaimer in the
  45.  *    documentation and/or other materials provided with the distribution.
  46.  * 3. All advertising materials mentioning features or use of this software
  47.  *    must display the following acknowledgement:
  48.  *      This product includes software developed by the University of
  49.  *      California, Berkeley and its contributors.
  50.  * 4. Neither the name of the University nor the names of its contributors
  51.  *    may be used to endorse or promote products derived from this software
  52.  *    without specific prior written permission.
  53.  *
  54.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  55.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  56.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  57.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  58.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  59.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  60.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  61.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  62.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  63.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  64.  * SUCH DAMAGE.
  65.  *
  66.  *      @(#)radix.c     8.4 (Berkeley) 11/2/94
  67.  */
  68. #include "config.h"
  69. #if HAVE_UNISTD_H
  70. #include <unistd.h>
  71. #endif
  72. #if HAVE_STDLIB_H
  73. #include <stdlib.h>
  74. #endif
  75. #if HAVE_STDIO_H
  76. #include <stdio.h>
  77. #endif
  78. #if HAVE_SYS_TYPES_H
  79. #include <sys/types.h>
  80. #endif
  81. #if HAVE_CTYPE_H
  82. #include <ctype.h>
  83. #endif
  84. #if HAVE_ERRNO_H
  85. #include <errno.h>
  86. #endif
  87. #if HAVE_FCNTL_H
  88. #include <fcntl.h>
  89. #endif
  90. #if HAVE_GRP_H
  91. #include <grp.h>
  92. #endif
  93. #if HAVE_GNUMALLOC_H
  94. #include <gnumalloc.h>
  95. #elif HAVE_MALLOC_H && !defined(_SQUID_FREEBSD_) && !defined(_SQUID_NEXT_)
  96. #include <malloc.h>
  97. #endif
  98. #if HAVE_MEMORY_H
  99. #include <memory.h>
  100. #endif
  101. #if HAVE_SYS_PARAM_H
  102. #include <sys/param.h>
  103. #endif
  104. #if HAVE_ASSERT_H
  105. #include <assert.h>
  106. #endif
  107. #include "util.h"
  108. #include "radix.h"
  109. int max_keylen;
  110. struct radix_mask *rn_mkfreelist;
  111. struct radix_node_head *mask_rnhead;
  112. static char *addmask_key;
  113. static unsigned char normal_chars[] =
  114. {0, 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe, 0xFF};
  115. static char *rn_zeros, *rn_ones;
  116. #define rn_masktop (mask_rnhead->rnh_treetop)
  117. #undef Bcmp
  118. #define Bcmp(a, b, l) (l == 0 ? 0 : memcmp((caddr_t)(a), (caddr_t)(b), (u_long)l))
  119. /*
  120.  * The data structure for the keys is a radix tree with one way
  121.  * branching removed.  The index rn_b at an internal node n represents a bit
  122.  * position to be tested.  The tree is arranged so that all descendants
  123.  * of a node n have keys whose bits all agree up to position rn_b - 1.
  124.  * (We say the index of n is rn_b.)
  125.  *
  126.  * There is at least one descendant which has a one bit at position rn_b,
  127.  * and at least one with a zero there.
  128.  *
  129.  * A route is determined by a pair of key and mask.  We require that the
  130.  * bit-wise logical and of the key and mask to be the key.
  131.  * We define the index of a route to associated with the mask to be
  132.  * the first bit number in the mask where 0 occurs (with bit number 0
  133.  * representing the highest order bit).
  134.  * 
  135.  * We say a mask is normal if every bit is 0, past the index of the mask.
  136.  * If a node n has a descendant (k, m) with index(m) == index(n) == rn_b,
  137.  * and m is a normal mask, then the route applies to every descendant of n.
  138.  * If the index(m) < rn_b, this implies the trailing last few bits of k
  139.  * before bit b are all 0, (and hence consequently true of every descendant
  140.  * of n), so the route applies to all descendants of the node as well.
  141.  * 
  142.  * Similar logic shows that a non-normal mask m such that
  143.  * index(m) <= index(n) could potentially apply to many children of n.
  144.  * Thus, for each non-host route, we attach its mask to a list at an internal
  145.  * node as high in the tree as we can go. 
  146.  *
  147.  * The present version of the code makes use of normal routes in short-
  148.  * circuiting an explict mask and compare operation when testing whether
  149.  * a key satisfies a normal route, and also in remembering the unique leaf
  150.  * that governs a subtree.
  151.  */
  152. struct radix_node *
  153. rn_search(v_arg, head)
  154.      void *v_arg;
  155.      struct radix_node *head;
  156. {
  157.     register struct radix_node *x;
  158.     register caddr_t v;
  159.     for (x = head, v = v_arg; x->rn_b >= 0;) {
  160. if (x->rn_bmask & v[x->rn_off])
  161.     x = x->rn_r;
  162. else
  163.     x = x->rn_l;
  164.     }
  165.     return (x);
  166. }
  167. struct radix_node *
  168. rn_search_m(v_arg, head, m_arg)
  169.      struct radix_node *head;
  170.      void *v_arg, *m_arg;
  171. {
  172.     register struct radix_node *x;
  173.     register caddr_t v = v_arg, m = m_arg;
  174.     for (x = head; x->rn_b >= 0;) {
  175. if ((x->rn_bmask & m[x->rn_off]) &&
  176.     (x->rn_bmask & v[x->rn_off]))
  177.     x = x->rn_r;
  178. else
  179.     x = x->rn_l;
  180.     }
  181.     return x;
  182. }
  183. int
  184. rn_refines(m_arg, n_arg)
  185.      void *m_arg, *n_arg;
  186. {
  187.     register caddr_t m = m_arg, n = n_arg;
  188.     register caddr_t lim, lim2 = lim = n + *(u_char *) n;
  189.     int longer = (*(u_char *) n++) - (int) (*(u_char *) m++);
  190.     int masks_are_equal = 1;
  191.     if (longer > 0)
  192. lim -= longer;
  193.     while (n < lim) {
  194. if (*n & ~(*m))
  195.     return 0;
  196. if (*n++ != *m++)
  197.     masks_are_equal = 0;
  198.     }
  199.     while (n < lim2)
  200. if (*n++)
  201.     return 0;
  202.     if (masks_are_equal && (longer < 0))
  203. for (lim2 = m - longer; m < lim2;)
  204.     if (*m++)
  205. return 1;
  206.     return (!masks_are_equal);
  207. }
  208. struct radix_node *
  209. rn_lookup(v_arg, m_arg, head)
  210.      void *v_arg, *m_arg;
  211.      struct radix_node_head *head;
  212. {
  213.     register struct radix_node *x;
  214.     caddr_t netmask = 0;
  215.     if (m_arg) {
  216. if ((x = rn_addmask(m_arg, 1, head->rnh_treetop->rn_off)) == 0)
  217.     return (0);
  218. netmask = x->rn_key;
  219.     }
  220.     x = rn_match(v_arg, head);
  221.     if (x && netmask) {
  222. while (x && x->rn_mask != netmask)
  223.     x = x->rn_dupedkey;
  224.     }
  225.     return x;
  226. }
  227. static
  228. int
  229. rn_satsifies_leaf(trial, leaf, skip)
  230.      char *trial;
  231.      register struct radix_node *leaf;
  232.      int skip;
  233. {
  234.     register char *cp = trial, *cp2 = leaf->rn_key, *cp3 = leaf->rn_mask;
  235.     char *cplim;
  236.     int length = min(*(u_char *) cp, *(u_char *) cp2);
  237.     if (cp3 == 0)
  238. cp3 = rn_ones;
  239.     else
  240. length = min(length, *(u_char *) cp3);
  241.     cplim = cp + length;
  242.     cp3 += skip;
  243.     cp2 += skip;
  244.     for (cp += skip; cp < cplim; cp++, cp2++, cp3++)
  245. if ((*cp ^ *cp2) & *cp3)
  246.     return 0;
  247.     return 1;
  248. }
  249. struct radix_node *
  250. rn_match(v_arg, head)
  251.      void *v_arg;
  252.      struct radix_node_head *head;
  253. {
  254.     caddr_t v = v_arg;
  255.     register struct radix_node *t = head->rnh_treetop, *x;
  256.     register caddr_t cp = v, cp2;
  257.     caddr_t cplim;
  258.     struct radix_node *saved_t, *top = t;
  259.     int off = t->rn_off, vlen = *(u_char *) cp, matched_off;
  260.     register int test, b, rn_b;
  261.     /*
  262.      * Open code rn_search(v, top) to avoid overhead of extra
  263.      * subroutine call.
  264.      */
  265.     for (; t->rn_b >= 0;) {
  266. if (t->rn_bmask & cp[t->rn_off])
  267.     t = t->rn_r;
  268. else
  269.     t = t->rn_l;
  270.     }
  271.     /*
  272.      * See if we match exactly as a host destination
  273.      * or at least learn how many bits match, for normal mask finesse.
  274.      *
  275.      * It doesn't hurt us to limit how many bytes to check
  276.      * to the length of the mask, since if it matches we had a genuine
  277.      * match and the leaf we have is the most specific one anyway;
  278.      * if it didn't match with a shorter length it would fail
  279.      * with a long one.  This wins big for class B&C netmasks which
  280.      * are probably the most common case...
  281.      */
  282.     if (t->rn_mask)
  283. vlen = *(u_char *) t->rn_mask;
  284.     cp += off;
  285.     cp2 = t->rn_key + off;
  286.     cplim = v + vlen;
  287.     for (; cp < cplim; cp++, cp2++)
  288. if (*cp != *cp2)
  289.     goto on1;
  290.     /*
  291.      * This extra grot is in case we are explicitly asked
  292.      * to look up the default.  Ugh!
  293.      */
  294.     if ((t->rn_flags & RNF_ROOT) && t->rn_dupedkey)
  295. t = t->rn_dupedkey;
  296.     return t;
  297.   on1:
  298.     test = (*cp ^ *cp2) & 0xff; /* find first bit that differs */
  299.     for (b = 7; (test >>= 1) > 0;)
  300. b--;
  301.     matched_off = cp - v;
  302.     b += matched_off << 3;
  303.     rn_b = -1 - b;
  304.     /*
  305.      * If there is a host route in a duped-key chain, it will be first.
  306.      */
  307.     if ((saved_t = t)->rn_mask == 0)
  308. t = t->rn_dupedkey;
  309.     for (; t; t = t->rn_dupedkey)
  310. /*
  311.  * Even if we don't match exactly as a host,
  312.  * we may match if the leaf we wound up at is
  313.  * a route to a net.
  314.  */
  315. if (t->rn_flags & RNF_NORMAL) {
  316.     if (rn_b <= t->rn_b)
  317. return t;
  318. } else if (rn_satsifies_leaf(v, t, matched_off))
  319.     return t;
  320.     t = saved_t;
  321.     /* start searching up the tree */
  322.     do {
  323. register struct radix_mask *m;
  324. t = t->rn_p;
  325. if ((m = t->rn_mklist)) {
  326.     /*
  327.      * If non-contiguous masks ever become important
  328.      * we can restore the masking and open coding of
  329.      * the search and satisfaction test and put the
  330.      * calculation of "off" back before the "do".
  331.      */
  332.     do {
  333. if (m->rm_flags & RNF_NORMAL) {
  334.     if (rn_b <= m->rm_b)
  335. return (m->rm_leaf);
  336. } else {
  337.     off = min(t->rn_off, matched_off);
  338.     x = rn_search_m(v, t, m->rm_mask);
  339.     while (x && x->rn_mask != m->rm_mask)
  340. x = x->rn_dupedkey;
  341.     if (x && rn_satsifies_leaf(v, x, off))
  342. return x;
  343. }
  344.     } while ((m = m->rm_mklist));
  345. }
  346.     } while (t != top);
  347.     return 0;
  348. }
  349. #ifdef RN_DEBUG
  350. int rn_nodenum;
  351. struct radix_node *rn_clist;
  352. int rn_saveinfo;
  353. int rn_debug = 1;
  354. #endif
  355. struct radix_node *
  356. rn_newpair(v, b, nodes)
  357.      void *v;
  358.      int b;
  359.      struct radix_node nodes[2];
  360. {
  361.     register struct radix_node *tt = nodes, *t = tt + 1;
  362.     t->rn_b = b;
  363.     t->rn_bmask = 0x80 >> (b & 7);
  364.     t->rn_l = tt;
  365.     t->rn_off = b >> 3;
  366.     tt->rn_b = -1;
  367.     tt->rn_key = (caddr_t) v;
  368.     tt->rn_p = t;
  369.     tt->rn_flags = t->rn_flags = RNF_ACTIVE;
  370. #ifdef RN_DEBUG
  371.     tt->rn_info = rn_nodenum++;
  372.     t->rn_info = rn_nodenum++;
  373.     tt->rn_twin = t;
  374.     tt->rn_ybro = rn_clist;
  375.     rn_clist = tt;
  376. #endif
  377.     return t;
  378. }
  379. struct radix_node *
  380. rn_insert(v_arg, head, dupentry, nodes)
  381.      void *v_arg;
  382.      struct radix_node_head *head;
  383.      int *dupentry;
  384.      struct radix_node nodes[2];
  385. {
  386.     caddr_t v = v_arg;
  387.     struct radix_node *top = head->rnh_treetop;
  388.     int head_off = top->rn_off, vlen = (int) *((u_char *) v);
  389.     register struct radix_node *t = rn_search(v_arg, top);
  390.     register caddr_t cp = v + head_off;
  391.     register int b;
  392.     struct radix_node *tt;
  393.     /*
  394.      * Find first bit at which v and t->rn_key differ
  395.      */
  396.     {
  397. register caddr_t cp2 = t->rn_key + head_off;
  398. register int cmp_res;
  399. caddr_t cplim = v + vlen;
  400. while (cp < cplim)
  401.     if (*cp2++ != *cp++)
  402. goto on1;
  403. *dupentry = 1;
  404. return t;
  405.       on1:
  406. *dupentry = 0;
  407. cmp_res = (cp[-1] ^ cp2[-1]) & 0xff;
  408. for (b = (cp - v) << 3; cmp_res; b--)
  409.     cmp_res >>= 1;
  410.     }
  411.     {
  412. register struct radix_node *p, *x = top;
  413. cp = v;
  414. do {
  415.     p = x;
  416.     if (cp[x->rn_off] & x->rn_bmask)
  417. x = x->rn_r;
  418.     else
  419. x = x->rn_l;
  420. } while (b > (unsigned) x->rn_b); /* x->rn_b < b && x->rn_b >= 0 */
  421. #ifdef RN_DEBUG
  422. if (rn_debug)
  423.     fprintf(stderr, "rn_insert: Going In:n");
  424. traverse(p);
  425. #endif
  426. t = rn_newpair(v_arg, b, nodes);
  427. tt = t->rn_l;
  428. if ((cp[p->rn_off] & p->rn_bmask) == 0)
  429.     p->rn_l = t;
  430. else
  431.     p->rn_r = t;
  432. x->rn_p = t;
  433. t->rn_p = p; /* frees x, p as temp vars below */
  434. if ((cp[t->rn_off] & t->rn_bmask) == 0) {
  435.     t->rn_r = x;
  436. } else {
  437.     t->rn_r = tt;
  438.     t->rn_l = x;
  439. }
  440. #ifdef RN_DEBUG
  441. if (rn_debug)
  442.     log(LOG_DEBUG, "rn_insert: Coming Out:n"), traverse(p);
  443. #endif
  444.     }
  445.     return (tt);
  446. }
  447. struct radix_node *
  448. rn_addmask(n_arg, search, skip)
  449.      int search, skip;
  450.      void *n_arg;
  451. {
  452.     caddr_t netmask = (caddr_t) n_arg;
  453.     register struct radix_node *x;
  454.     register caddr_t cp, cplim;
  455.     register int b = 0, mlen, j;
  456.     int maskduplicated, m0, isnormal;
  457.     struct radix_node *saved_x;
  458.     static int last_zeroed = 0;
  459.     if ((mlen = *(u_char *) netmask) > max_keylen)
  460. mlen = max_keylen;
  461.     if (skip == 0)
  462. skip = 1;
  463.     if (mlen <= skip)
  464. return (mask_rnhead->rnh_nodes);
  465.     if (skip > 1)
  466. memcpy(addmask_key + 1, rn_ones + 1, skip - 1);
  467.     if ((m0 = mlen) > skip)
  468. memcpy(addmask_key + skip, netmask + skip, mlen - skip);
  469.     /*
  470.      * Trim trailing zeroes.
  471.      */
  472.     for (cp = addmask_key + mlen; (cp > addmask_key) && cp[-1] == 0;)
  473. cp--;
  474.     mlen = cp - addmask_key;
  475.     if (mlen <= skip) {
  476. if (m0 >= last_zeroed)
  477.     last_zeroed = mlen;
  478. return (mask_rnhead->rnh_nodes);
  479.     }
  480.     if (m0 < last_zeroed)
  481. memset(addmask_key + m0, '', last_zeroed - m0);
  482.     *addmask_key = last_zeroed = mlen;
  483.     x = rn_search(addmask_key, rn_masktop);
  484.     if (memcmp(addmask_key, x->rn_key, mlen) != 0)
  485. x = 0;
  486.     if (x || search)
  487. return (x);
  488.     R_Malloc(x, struct radix_node *, max_keylen + 2 * sizeof(*x));
  489.     if ((saved_x = x) == 0)
  490. return (0);
  491.     memset(x, '', max_keylen + 2 * sizeof(*x));
  492.     netmask = cp = (caddr_t) (x + 2);
  493.     memcpy(cp, addmask_key, mlen);
  494.     x = rn_insert(cp, mask_rnhead, &maskduplicated, x);
  495.     if (maskduplicated) {
  496. fprintf(stderr, "rn_addmask: mask impossibly already in tree");
  497. Free(saved_x);
  498. return (x);
  499.     }
  500.     /*
  501.      * Calculate index of mask, and check for normalcy.
  502.      */
  503.     cplim = netmask + mlen;
  504.     isnormal = 1;
  505.     for (cp = netmask + skip; (cp < cplim) && *(u_char *) cp == 0xff;)
  506. cp++;
  507.     if (cp != cplim) {
  508. for (j = 0x80; (j & *cp) != 0; j >>= 1)
  509.     b++;
  510. if (*cp != normal_chars[b] || cp != (cplim - 1))
  511.     isnormal = 0;
  512.     }
  513.     b += (cp - netmask) << 3;
  514.     x->rn_b = -1 - b;
  515.     if (isnormal)
  516. x->rn_flags |= RNF_NORMAL;
  517.     return (x);
  518. }
  519. static int /* XXX: arbitrary ordering for non-contiguous masks */
  520. rn_lexobetter(m_arg, n_arg)
  521.      void *m_arg, *n_arg;
  522. {
  523.     register u_char *mp = m_arg, *np = n_arg, *lim;
  524.     if (*mp > *np)
  525. return 1; /* not really, but need to check longer one first */
  526.     if (*mp == *np)
  527. for (lim = mp + *mp; mp < lim;)
  528.     if (*mp++ > *np++)
  529. return 1;
  530.     return 0;
  531. }
  532. static struct radix_mask *
  533. rn_new_radix_mask(tt, next)
  534.      register struct radix_node *tt;
  535.      register struct radix_mask *next;
  536. {
  537.     register struct radix_mask *m;
  538.     MKGet(m);
  539.     if (m == 0) {
  540. fprintf(stderr, "Mask for route not enteredn");
  541. return (0);
  542.     }
  543.     memset(m, '', sizeof *m);
  544.     m->rm_b = tt->rn_b;
  545.     m->rm_flags = tt->rn_flags;
  546.     if (tt->rn_flags & RNF_NORMAL)
  547. m->rm_leaf = tt;
  548.     else
  549. m->rm_mask = tt->rn_mask;
  550.     m->rm_mklist = next;
  551.     tt->rn_mklist = m;
  552.     return m;
  553. }
  554. struct radix_node *
  555. rn_addroute(v_arg, n_arg, head, treenodes)
  556.      void *v_arg, *n_arg;
  557.      struct radix_node_head *head;
  558.      struct radix_node treenodes[2];
  559. {
  560.     caddr_t v = (caddr_t) v_arg, netmask = (caddr_t) n_arg;
  561.     register struct radix_node *t, *x = NULL, *tt;
  562.     struct radix_node *saved_tt, *top = head->rnh_treetop;
  563.     short b = 0, b_leaf = 0;
  564.     int keyduplicated;
  565.     caddr_t mmask;
  566.     struct radix_mask *m, **mp;
  567.     /*
  568.      * In dealing with non-contiguous masks, there may be
  569.      * many different routes which have the same mask.
  570.      * We will find it useful to have a unique pointer to
  571.      * the mask to speed avoiding duplicate references at
  572.      * nodes and possibly save time in calculating indices.
  573.      */
  574.     if (netmask) {
  575. if ((x = rn_addmask(netmask, 0, top->rn_off)) == 0)
  576.     return (0);
  577. b_leaf = x->rn_b;
  578. b = -1 - x->rn_b;
  579. netmask = x->rn_key;
  580.     }
  581.     /*
  582.      * Deal with duplicated keys: attach node to previous instance
  583.      */
  584.     saved_tt = tt = rn_insert(v, head, &keyduplicated, treenodes);
  585.     if (keyduplicated) {
  586. for (t = tt; tt; t = tt, tt = tt->rn_dupedkey) {
  587.     if (tt->rn_mask == netmask)
  588. return (0);
  589.     if (netmask == 0 ||
  590. (tt->rn_mask &&
  591.     ((b_leaf < tt->rn_b) || /* index(netmask) > node */
  592. rn_refines(netmask, tt->rn_mask) ||
  593. rn_lexobetter(netmask, tt->rn_mask))))
  594. break;
  595. }
  596. /*
  597.  * If the mask is not duplicated, we wouldn't
  598.  * find it among possible duplicate key entries
  599.  * anyway, so the above test doesn't hurt.
  600.  *
  601.  * We sort the masks for a duplicated key the same way as
  602.  * in a masklist -- most specific to least specific.
  603.  * This may require the unfortunate nuisance of relocating
  604.  * the head of the list.
  605.  */
  606. if (tt == saved_tt) {
  607.     struct radix_node *xx = x;
  608.     /* link in at head of list */
  609.     (tt = treenodes)->rn_dupedkey = t;
  610.     tt->rn_flags = t->rn_flags;
  611.     tt->rn_p = x = t->rn_p;
  612.     if (x->rn_l == t)
  613. x->rn_l = tt;
  614.     else
  615. x->rn_r = tt;
  616.     saved_tt = tt;
  617.     x = xx;
  618. } else {
  619.     (tt = treenodes)->rn_dupedkey = t->rn_dupedkey;
  620.     t->rn_dupedkey = tt;
  621. }
  622. #ifdef RN_DEBUG
  623. t = tt + 1;
  624. tt->rn_info = rn_nodenum++;
  625. t->rn_info = rn_nodenum++;
  626. tt->rn_twin = t;
  627. tt->rn_ybro = rn_clist;
  628. rn_clist = tt;
  629. #endif
  630. tt->rn_key = (caddr_t) v;
  631. tt->rn_b = -1;
  632. tt->rn_flags = RNF_ACTIVE;
  633.     }
  634.     /*
  635.      * Put mask in tree.
  636.      */
  637.     if (netmask) {
  638. tt->rn_mask = netmask;
  639. tt->rn_b = x->rn_b;
  640. tt->rn_flags |= x->rn_flags & RNF_NORMAL;
  641.     }
  642.     t = saved_tt->rn_p;
  643.     if (keyduplicated)
  644. goto on2;
  645.     b_leaf = -1 - t->rn_b;
  646.     if (t->rn_r == saved_tt)
  647. x = t->rn_l;
  648.     else
  649. x = t->rn_r;
  650.     /* Promote general routes from below */
  651.     if (x->rn_b < 0) {
  652. for (mp = &t->rn_mklist; x; x = x->rn_dupedkey)
  653.     if (x->rn_mask && (x->rn_b >= b_leaf) && x->rn_mklist == 0) {
  654. if ((*mp = m = rn_new_radix_mask(x, 0)))
  655.     mp = &m->rm_mklist;
  656.     }
  657.     } else if (x->rn_mklist) {
  658. /*
  659.  * Skip over masks whose index is > that of new node
  660.  */
  661. for (mp = &x->rn_mklist; (m = *mp); mp = &m->rm_mklist)
  662.     if (m->rm_b >= b_leaf)
  663. break;
  664. t->rn_mklist = m;
  665. *mp = 0;
  666.     }
  667.   on2:
  668.     /* Add new route to highest possible ancestor's list */
  669.     if ((netmask == 0) || (b > t->rn_b))
  670. return tt; /* can't lift at all */
  671.     b_leaf = tt->rn_b;
  672.     do {
  673. x = t;
  674. t = t->rn_p;
  675.     } while (b <= t->rn_b && x != top);
  676.     /*
  677.      * Search through routes associated with node to
  678.      * insert new route according to index.
  679.      * Need same criteria as when sorting dupedkeys to avoid
  680.      * double loop on deletion.
  681.      */
  682.     for (mp = &x->rn_mklist; (m = *mp); mp = &m->rm_mklist) {
  683. if (m->rm_b < b_leaf)
  684.     continue;
  685. if (m->rm_b > b_leaf)
  686.     break;
  687. if (m->rm_flags & RNF_NORMAL) {
  688.     mmask = m->rm_leaf->rn_mask;
  689.     if (tt->rn_flags & RNF_NORMAL) {
  690. fprintf(stderr,
  691.     "Non-unique normal route, mask not entered");
  692. return tt;
  693.     }
  694. } else
  695.     mmask = m->rm_mask;
  696. if (mmask == netmask) {
  697.     m->rm_refs++;
  698.     tt->rn_mklist = m;
  699.     return tt;
  700. }
  701. if (rn_refines(netmask, mmask) || rn_lexobetter(netmask, mmask))
  702.     break;
  703.     }
  704.     *mp = rn_new_radix_mask(tt, *mp);
  705.     return tt;
  706. }
  707. struct radix_node *
  708. rn_delete(v_arg, netmask_arg, head)
  709.      void *v_arg, *netmask_arg;
  710.      struct radix_node_head *head;
  711. {
  712.     register struct radix_node *t, *p, *x, *tt;
  713.     struct radix_mask *m, *saved_m, **mp;
  714.     struct radix_node *dupedkey, *saved_tt, *top;
  715.     caddr_t v, netmask;
  716.     int b, head_off, vlen;
  717.     v = v_arg;
  718.     netmask = netmask_arg;
  719.     x = head->rnh_treetop;
  720.     tt = rn_search(v, x);
  721.     head_off = x->rn_off;
  722.     vlen = *(u_char *) v;
  723.     saved_tt = tt;
  724.     top = x;
  725.     if (tt == 0 ||
  726. memcmp(v + head_off, tt->rn_key + head_off, vlen - head_off))
  727. return (0);
  728.     /*
  729.      * Delete our route from mask lists.
  730.      */
  731.     if (netmask) {
  732. if ((x = rn_addmask(netmask, 1, head_off)) == 0)
  733.     return (0);
  734. netmask = x->rn_key;
  735. while (tt->rn_mask != netmask)
  736.     if ((tt = tt->rn_dupedkey) == 0)
  737. return (0);
  738.     }
  739.     if (tt->rn_mask == 0 || (saved_m = m = tt->rn_mklist) == 0)
  740. goto on1;
  741.     if (tt->rn_flags & RNF_NORMAL) {
  742. if (m->rm_leaf != tt || m->rm_refs > 0) {
  743.     fprintf(stderr, "rn_delete: inconsistent annotationn");
  744.     return 0; /* dangling ref could cause disaster */
  745. }
  746.     } else {
  747. if (m->rm_mask != tt->rn_mask) {
  748.     fprintf(stderr, "rn_delete: inconsistent annotationn");
  749.     goto on1;
  750. }
  751. if (--m->rm_refs >= 0)
  752.     goto on1;
  753.     }
  754.     b = -1 - tt->rn_b;
  755.     t = saved_tt->rn_p;
  756.     if (b > t->rn_b)
  757. goto on1; /* Wasn't lifted at all */
  758.     do {
  759. x = t;
  760. t = t->rn_p;
  761.     } while (b <= t->rn_b && x != top);
  762.     for (mp = &x->rn_mklist; (m = *mp); mp = &m->rm_mklist)
  763. if (m == saved_m) {
  764.     *mp = m->rm_mklist;
  765.     MKFree(m);
  766.     break;
  767. }
  768.     if (m == 0) {
  769. fprintf(stderr, "rn_delete: couldn't find our annotationn");
  770. if (tt->rn_flags & RNF_NORMAL)
  771.     return (0); /* Dangling ref to us */
  772.     }
  773.   on1:
  774.     /*
  775.      * Eliminate us from tree
  776.      */
  777.     if (tt->rn_flags & RNF_ROOT)
  778. return (0);
  779. #ifdef RN_DEBUG
  780.     /* Get us out of the creation list */
  781.     for (t = rn_clist; t && t->rn_ybro != tt; t = t->rn_ybro) {
  782.     }
  783.     if (t)
  784. t->rn_ybro = tt->rn_ybro;
  785. #endif
  786.     t = tt->rn_p;
  787.     if ((dupedkey = saved_tt->rn_dupedkey)) {
  788. if (tt == saved_tt) {
  789.     x = dupedkey;
  790.     x->rn_p = t;
  791.     if (t->rn_l == tt)
  792. t->rn_l = x;
  793.     else
  794. t->rn_r = x;
  795. } else {
  796.     for (x = p = saved_tt; p && p->rn_dupedkey != tt;)
  797. p = p->rn_dupedkey;
  798.     if (p)
  799. p->rn_dupedkey = tt->rn_dupedkey;
  800.     else
  801. fprintf(stderr, "rn_delete: couldn't find usn");
  802. }
  803. t = tt + 1;
  804. if (t->rn_flags & RNF_ACTIVE) {
  805. #ifndef RN_DEBUG
  806.     *++x = *t;
  807.     p = t->rn_p;
  808. #else
  809.     b = t->rn_info;
  810.     *++x = *t;
  811.     t->rn_info = b;
  812.     p = t->rn_p;
  813. #endif
  814.     if (p->rn_l == t)
  815. p->rn_l = x;
  816.     else
  817. p->rn_r = x;
  818.     x->rn_l->rn_p = x;
  819.     x->rn_r->rn_p = x;
  820. }
  821. goto out;
  822.     }
  823.     if (t->rn_l == tt)
  824. x = t->rn_r;
  825.     else
  826. x = t->rn_l;
  827.     p = t->rn_p;
  828.     if (p->rn_r == t)
  829. p->rn_r = x;
  830.     else
  831. p->rn_l = x;
  832.     x->rn_p = p;
  833.     /*
  834.      * Demote routes attached to us.
  835.      */
  836.     if (t->rn_mklist) {
  837. if (x->rn_b >= 0) {
  838.     for (mp = &x->rn_mklist; (m = *mp);)
  839. mp = &m->rm_mklist;
  840.     *mp = t->rn_mklist;
  841. } else {
  842.     /* If there are any key,mask pairs in a sibling
  843.      * duped-key chain, some subset will appear sorted
  844.      * in the same order attached to our mklist */
  845.     for (m = t->rn_mklist; m && x; x = x->rn_dupedkey)
  846. if (m == x->rn_mklist) {
  847.     struct radix_mask *mm = m->rm_mklist;
  848.     x->rn_mklist = 0;
  849.     if (--(m->rm_refs) < 0)
  850. MKFree(m);
  851.     m = mm;
  852. }
  853. #if RN_DEBUG
  854.     if (m)
  855. fprintf(stderr, "%s %x at %xn",
  856.     "rn_delete: Orphaned Mask", (int) m, (int) x);
  857. #else
  858.     assert(m == NULL);
  859. #endif
  860. }
  861.     }
  862.     /*
  863.      * We may be holding an active internal node in the tree.
  864.      */
  865.     x = tt + 1;
  866.     if (t != x) {
  867. #ifndef RN_DEBUG
  868. *t = *x;
  869. #else
  870. b = t->rn_info;
  871. *t = *x;
  872. t->rn_info = b;
  873. #endif
  874. t->rn_l->rn_p = t;
  875. t->rn_r->rn_p = t;
  876. p = x->rn_p;
  877. if (p->rn_l == x)
  878.     p->rn_l = t;
  879. else
  880.     p->rn_r = t;
  881.     }
  882.   out:
  883.     tt->rn_flags &= ~RNF_ACTIVE;
  884.     tt[1].rn_flags &= ~RNF_ACTIVE;
  885.     return (tt);
  886. }
  887. int
  888. rn_walktree(h, f, w)
  889.      struct radix_node_head *h;
  890.      int (*f) ();
  891.      void *w;
  892. {
  893.     int error;
  894.     struct radix_node *base, *next;
  895.     register struct radix_node *rn = h->rnh_treetop;
  896.     /*
  897.      * This gets complicated because we may delete the node
  898.      * while applying the function f to it, so we need to calculate
  899.      * the successor node in advance.
  900.      */
  901.     /* First time through node, go left */
  902.     while (rn->rn_b >= 0)
  903. rn = rn->rn_l;
  904.     for (;;) {
  905. base = rn;
  906. /* If at right child go back up, otherwise, go right */
  907. while (rn->rn_p->rn_r == rn && (rn->rn_flags & RNF_ROOT) == 0)
  908.     rn = rn->rn_p;
  909. /* Find the next *leaf* since next node might vanish, too */
  910. for (rn = rn->rn_p->rn_r; rn->rn_b >= 0;)
  911.     rn = rn->rn_l;
  912. next = rn;
  913. /* Process leaves */
  914. while ((rn = base)) {
  915.     base = rn->rn_dupedkey;
  916.     if (!(rn->rn_flags & RNF_ROOT) && (error = (*f) (rn, w)))
  917. return (error);
  918. }
  919. rn = next;
  920. if (rn->rn_flags & RNF_ROOT)
  921.     return (0);
  922.     }
  923.     /* NOTREACHED */
  924. }
  925. int
  926. rn_inithead(head, off)
  927.      void **head;
  928.      int off;
  929. {
  930.     register struct radix_node_head *rnh;
  931.     register struct radix_node *t, *tt, *ttt;
  932.     if (*head)
  933. return (1);
  934.     R_Malloc(rnh, struct radix_node_head *, sizeof(*rnh));
  935.     if (rnh == 0)
  936. return (0);
  937.     memset(rnh, '', sizeof(*rnh));
  938.     *head = rnh;
  939.     t = rn_newpair(rn_zeros, off, rnh->rnh_nodes);
  940.     ttt = rnh->rnh_nodes + 2;
  941.     t->rn_r = ttt;
  942.     t->rn_p = t;
  943.     tt = t->rn_l;
  944.     tt->rn_flags = t->rn_flags = RNF_ROOT | RNF_ACTIVE;
  945.     tt->rn_b = -1 - off;
  946.     *ttt = *tt;
  947.     ttt->rn_key = rn_ones;
  948.     rnh->rnh_addaddr = rn_addroute;
  949.     rnh->rnh_deladdr = rn_delete;
  950.     rnh->rnh_matchaddr = rn_match;
  951.     rnh->rnh_lookup = rn_lookup;
  952.     rnh->rnh_walktree = rn_walktree;
  953.     rnh->rnh_treetop = t;
  954.     return (1);
  955. }
  956. void
  957. rn_init()
  958. {
  959.     char *cp, *cplim;
  960. #ifdef KERNEL
  961.     struct domain *dom;
  962.     for (dom = domains; dom; dom = dom->dom_next)
  963. if (dom->dom_maxrtkey > max_keylen)
  964.     max_keylen = dom->dom_maxrtkey;
  965. #endif
  966.     if (max_keylen == 0) {
  967. fprintf(stderr,
  968.     "rn_init: radix functions require max_keylen be setn");
  969. return;
  970.     }
  971.     R_Malloc(rn_zeros, char *, 3 * max_keylen);
  972.     if (rn_zeros == NULL) {
  973. fprintf(stderr, "rn_init failed.n");
  974. exit(-1);
  975.     }
  976.     memset(rn_zeros, '', 3 * max_keylen);
  977.     rn_ones = cp = rn_zeros + max_keylen;
  978.     addmask_key = cplim = rn_ones + max_keylen;
  979.     while (cp < cplim)
  980. *cp++ = -1;
  981.     if (rn_inithead((void **) &mask_rnhead, 0) == 0) {
  982. fprintf(stderr, "rn_init2 failed.n");
  983. exit(-1);
  984.     }
  985. }