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