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