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