radix.c
上传用户:nvosite88
上传日期:2007-01-17
资源大小:4983k
文件大小:31k
源码类别:

VxWorks

开发平台:

C/C++

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