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