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 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 | /* * Copyright (c) 2000-2019 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) 1980, 1986, 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. * * @(#)if.c 8.3 (Berkeley) 1/4/94 * $FreeBSD: src/sys/net/if.c,v 1.85.2.9 2001/07/24 19:10:17 brooks Exp $ */ /* * NOTICE: This file was modified by SPARTA, Inc. in 2006 to introduce * support for mandatory and extensible security protections. This notice * is included in support of clause 2.2 (b) of the Apple Public License, * Version 2.0. */ #include <kern/locks.h> #include <sys/param.h> #include <sys/malloc.h> #include <sys/mbuf.h> #include <sys/systm.h> #include <sys/proc.h> #include <sys/socket.h> #include <sys/socketvar.h> #include <sys/protosw.h> #include <sys/kernel.h> #include <sys/sockio.h> #include <sys/syslog.h> #include <sys/sysctl.h> #include <sys/mcache.h> #include <sys/kauth.h> #include <sys/priv.h> #include <kern/zalloc.h> #include <mach/boolean.h> #include <machine/endian.h> #include <pexpert/pexpert.h> #include <net/if.h> #include <net/if_arp.h> #include <net/if_dl.h> #include <net/if_types.h> #include <net/if_var.h> #include <net/if_media.h> #include <net/if_ppp.h> #include <net/ethernet.h> #include <net/network_agent.h> #include <net/pktsched/pktsched_netem.h> #include <net/radix.h> #include <net/route.h> #include <net/dlil.h> #include <net/nwk_wq.h> #include <sys/domain.h> #include <libkern/OSAtomic.h> #if INET || INET6 #include <netinet/in.h> #include <netinet/in_var.h> #include <netinet/in_tclass.h> #include <netinet/ip_var.h> #include <netinet/ip.h> #include <netinet/ip6.h> #include <netinet/ip_var.h> #include <netinet/tcp.h> #include <netinet/tcp_var.h> #include <netinet/udp.h> #include <netinet/udp_var.h> #if INET6 #include <netinet6/in6_var.h> #include <netinet6/in6_ifattach.h> #include <netinet6/ip6_var.h> #include <netinet6/nd6.h> #endif /* INET6 */ #endif /* INET || INET6 */ #if CONFIG_MACF_NET #include <security/mac_framework.h> #endif #include <os/log.h> /* * System initialization */ extern char *proc_name_address(void *); /* Lock group and attribute for ifaddr lock */ lck_attr_t *ifa_mtx_attr; lck_grp_t *ifa_mtx_grp; static lck_grp_attr_t *ifa_mtx_grp_attr; static int ifioctl_ifreq(struct socket *, u_long, struct ifreq *, struct proc *); static int ifioctl_ifconf(u_long, caddr_t); static int ifioctl_ifclone(u_long, caddr_t); static int ifioctl_iforder(u_long, caddr_t); static int ifioctl_ifdesc(struct ifnet *, u_long, caddr_t, struct proc *); static int ifioctl_linkparams(struct ifnet *, u_long, caddr_t, struct proc *); static int ifioctl_qstats(struct ifnet *, u_long, caddr_t); static int ifioctl_throttle(struct ifnet *, u_long, caddr_t, struct proc *); static int ifioctl_netsignature(struct ifnet *, u_long, caddr_t); static int ifconf(u_long cmd, user_addr_t ifrp, int * ret_space); __private_extern__ void link_rtrequest(int, struct rtentry *, struct sockaddr *); void if_rtproto_del(struct ifnet *ifp, int protocol); static int if_addmulti_common(struct ifnet *, const struct sockaddr *, struct ifmultiaddr **, int); static int if_delmulti_common(struct ifmultiaddr *, struct ifnet *, const struct sockaddr *, int); static struct ifnet *ifunit_common(const char *, boolean_t); static int if_rtmtu(struct radix_node *, void *); static void if_rtmtu_update(struct ifnet *); static int if_clone_list(int, int *, user_addr_t); MALLOC_DEFINE(M_IFADDR, "ifaddr", "interface address"); struct ifnethead ifnet_head = TAILQ_HEAD_INITIALIZER(ifnet_head); /* ifnet_ordered_head and if_ordered_count are protected by the ifnet_head lock */ struct ifnethead ifnet_ordered_head = TAILQ_HEAD_INITIALIZER(ifnet_ordered_head); static u_int32_t if_ordered_count = 0; static int if_cloners_count; LIST_HEAD(, if_clone) if_cloners = LIST_HEAD_INITIALIZER(if_cloners); static struct ifaddr *ifa_ifwithnet_common(const struct sockaddr *, unsigned int); static void if_attach_ifa_common(struct ifnet *, struct ifaddr *, int); static void if_detach_ifa_common(struct ifnet *, struct ifaddr *, int); static void if_attach_ifma(struct ifnet *, struct ifmultiaddr *, int); static int if_detach_ifma(struct ifnet *, struct ifmultiaddr *, int); static struct ifmultiaddr *ifma_alloc(int); static void ifma_free(struct ifmultiaddr *); static void ifma_trace(struct ifmultiaddr *, int); #if DEBUG static unsigned int ifma_debug = 1; /* debugging (enabled) */ #else static unsigned int ifma_debug; /* debugging (disabled) */ #endif /* !DEBUG */ static unsigned int ifma_size; /* size of zone element */ static struct zone *ifma_zone; /* zone for ifmultiaddr */ #define IFMA_TRACE_HIST_SIZE 32 /* size of trace history */ /* For gdb */ __private_extern__ unsigned int ifma_trace_hist_size = IFMA_TRACE_HIST_SIZE; struct ifmultiaddr_dbg { struct ifmultiaddr ifma; /* ifmultiaddr */ u_int16_t ifma_refhold_cnt; /* # of ref */ u_int16_t ifma_refrele_cnt; /* # of rele */ /* * Circular lists of IFA_ADDREF and IFA_REMREF callers. */ ctrace_t ifma_refhold[IFMA_TRACE_HIST_SIZE]; ctrace_t ifma_refrele[IFMA_TRACE_HIST_SIZE]; /* * Trash list linkage */ TAILQ_ENTRY(ifmultiaddr_dbg) ifma_trash_link; }; /* List of trash ifmultiaddr entries protected by ifma_trash_lock */ static TAILQ_HEAD(, ifmultiaddr_dbg) ifma_trash_head; static decl_lck_mtx_data(, ifma_trash_lock); #define IFMA_ZONE_MAX 64 /* maximum elements in zone */ #define IFMA_ZONE_NAME "ifmultiaddr" /* zone name */ #if INET6 /* * XXX: declare here to avoid to include many inet6 related files.. * should be more generalized? */ extern void nd6_setmtu(struct ifnet *); extern lck_mtx_t *nd6_mutex; #endif SYSCTL_NODE(_net, PF_LINK, link, CTLFLAG_RW | CTLFLAG_LOCKED, 0, "Link layers"); SYSCTL_NODE(_net_link, 0, generic, CTLFLAG_RW | CTLFLAG_LOCKED, 0, "Generic link-management"); SYSCTL_DECL(_net_link_generic_system); static uint32_t if_verbose = 0; SYSCTL_INT(_net_link_generic_system, OID_AUTO, if_verbose, CTLFLAG_RW | CTLFLAG_LOCKED, &if_verbose, 0, ""); #if (DEBUG || DEVELOPMENT) static uint32_t default_tcp_kao_max = 0; SYSCTL_INT(_net_link_generic_system, OID_AUTO, default_tcp_kao_max, CTLFLAG_RW | CTLFLAG_LOCKED, &default_tcp_kao_max, 0, ""); #else static const uint32_t default_tcp_kao_max = 0; #endif /* (DEBUG || DEVELOPMENT) */ boolean_t intcoproc_unrestricted; /* Eventhandler context for interface events */ struct eventhandler_lists_ctxt ifnet_evhdlr_ctxt; void ifa_init(void) { /* Setup lock group and attribute for ifaddr */ ifa_mtx_grp_attr = lck_grp_attr_alloc_init(); ifa_mtx_grp = lck_grp_alloc_init("ifaddr", ifa_mtx_grp_attr); ifa_mtx_attr = lck_attr_alloc_init(); PE_parse_boot_argn("ifa_debug", &ifma_debug, sizeof(ifma_debug)); ifma_size = (ifma_debug == 0) ? sizeof(struct ifmultiaddr) : sizeof(struct ifmultiaddr_dbg); ifma_zone = zinit(ifma_size, IFMA_ZONE_MAX * ifma_size, 0, IFMA_ZONE_NAME); if (ifma_zone == NULL) { panic("%s: failed allocating %s", __func__, IFMA_ZONE_NAME); /* NOTREACHED */ } zone_change(ifma_zone, Z_EXPAND, TRUE); zone_change(ifma_zone, Z_CALLERACCT, FALSE); lck_mtx_init(&ifma_trash_lock, ifa_mtx_grp, ifa_mtx_attr); TAILQ_INIT(&ifma_trash_head); PE_parse_boot_argn("intcoproc_unrestricted", &intcoproc_unrestricted, sizeof(intcoproc_unrestricted)); } /* * Network interface utility routines. * * Routines with ifa_ifwith* names take sockaddr *'s as * parameters. */ int if_index; struct ifaddr **ifnet_addrs; struct ifnet **ifindex2ifnet; __private_extern__ void if_attach_ifa(struct ifnet *ifp, struct ifaddr *ifa) { if_attach_ifa_common(ifp, ifa, 0); } __private_extern__ void if_attach_link_ifa(struct ifnet *ifp, struct ifaddr *ifa) { if_attach_ifa_common(ifp, ifa, 1); } static void if_attach_ifa_common(struct ifnet *ifp, struct ifaddr *ifa, int link) { ifnet_lock_assert(ifp, IFNET_LCK_ASSERT_EXCLUSIVE); IFA_LOCK_ASSERT_HELD(ifa); if (ifa->ifa_ifp != ifp) { panic("%s: Mismatch ifa_ifp=%p != ifp=%p", __func__, ifa->ifa_ifp, ifp); /* NOTREACHED */ } else if (ifa->ifa_debug & IFD_ATTACHED) { panic("%s: Attempt to attach an already attached ifa=%p", __func__, ifa); /* NOTREACHED */ } else if (link && !(ifa->ifa_debug & IFD_LINK)) { panic("%s: Unexpected non-link address ifa=%p", __func__, ifa); /* NOTREACHED */ } else if (!link && (ifa->ifa_debug & IFD_LINK)) { panic("%s: Unexpected link address ifa=%p", __func__, ifa); /* NOTREACHED */ } IFA_ADDREF_LOCKED(ifa); ifa->ifa_debug |= IFD_ATTACHED; if (link) { TAILQ_INSERT_HEAD(&ifp->if_addrhead, ifa, ifa_link); } else { TAILQ_INSERT_TAIL(&ifp->if_addrhead, ifa, ifa_link); } if (ifa->ifa_attached != NULL) { (*ifa->ifa_attached)(ifa); } } __private_extern__ void if_detach_ifa(struct ifnet *ifp, struct ifaddr *ifa) { if_detach_ifa_common(ifp, ifa, 0); } __private_extern__ void if_detach_link_ifa(struct ifnet *ifp, struct ifaddr *ifa) { if_detach_ifa_common(ifp, ifa, 1); } static void if_detach_ifa_common(struct ifnet *ifp, struct ifaddr *ifa, int link) { ifnet_lock_assert(ifp, IFNET_LCK_ASSERT_EXCLUSIVE); IFA_LOCK_ASSERT_HELD(ifa); if (link && !(ifa->ifa_debug & IFD_LINK)) { panic("%s: Unexpected non-link address ifa=%p", __func__, ifa); /* NOTREACHED */ } else if (link && ifa != TAILQ_FIRST(&ifp->if_addrhead)) { panic("%s: Link address ifa=%p not first", __func__, ifa); /* NOTREACHED */ } else if (!link && (ifa->ifa_debug & IFD_LINK)) { panic("%s: Unexpected link address ifa=%p", __func__, ifa); /* NOTREACHED */ } else if (!(ifa->ifa_debug & IFD_ATTACHED)) { panic("%s: Attempt to detach an unattached address ifa=%p", __func__, ifa); /* NOTREACHED */ } else if (ifa->ifa_ifp != ifp) { panic("%s: Mismatch ifa_ifp=%p, ifp=%p", __func__, ifa->ifa_ifp, ifp); /* NOTREACHED */ } else if (ifa->ifa_debug & IFD_DEBUG) { struct ifaddr *ifa2; TAILQ_FOREACH(ifa2, &ifp->if_addrhead, ifa_link) { if (ifa2 == ifa) { break; } } if (ifa2 != ifa) { panic("%s: Attempt to detach a stray address ifa=%p", __func__, ifa); /* NOTREACHED */ } } TAILQ_REMOVE(&ifp->if_addrhead, ifa, ifa_link); /* This must not be the last reference to the ifaddr */ if (IFA_REMREF_LOCKED(ifa) == NULL) { panic("%s: unexpected (missing) refcnt ifa=%p", __func__, ifa); /* NOTREACHED */ } ifa->ifa_debug &= ~IFD_ATTACHED; if (ifa->ifa_detached != NULL) { (*ifa->ifa_detached)(ifa); } } #define INITIAL_IF_INDEXLIM 8 /* * Function: if_next_index * Purpose: * Return the next available interface index. * Grow the ifnet_addrs[] and ifindex2ifnet[] arrays to accomodate the * added entry when necessary. * * Note: * ifnet_addrs[] is indexed by (if_index - 1), whereas * ifindex2ifnet[] is indexed by ifp->if_index. That requires us to * always allocate one extra element to hold ifindex2ifnet[0], which * is unused. */ int if_next_index(void); __private_extern__ int if_next_index(void) { static int if_indexlim = 0; int new_index; new_index = ++if_index; if (if_index > if_indexlim) { unsigned n; int new_if_indexlim; caddr_t new_ifnet_addrs; caddr_t new_ifindex2ifnet; caddr_t old_ifnet_addrs; old_ifnet_addrs = (caddr_t)ifnet_addrs; if (ifnet_addrs == NULL) { new_if_indexlim = INITIAL_IF_INDEXLIM; } else { new_if_indexlim = if_indexlim << 1; } /* allocate space for the larger arrays */ n = (2 * new_if_indexlim + 1) * sizeof(caddr_t); new_ifnet_addrs = _MALLOC(n, M_IFADDR, M_WAITOK | M_ZERO); if (new_ifnet_addrs == NULL) { --if_index; return -1; } new_ifindex2ifnet = new_ifnet_addrs + new_if_indexlim * sizeof(caddr_t); if (ifnet_addrs != NULL) { /* copy the existing data */ bcopy((caddr_t)ifnet_addrs, new_ifnet_addrs, if_indexlim * sizeof(caddr_t)); bcopy((caddr_t)ifindex2ifnet, new_ifindex2ifnet, (if_indexlim + 1) * sizeof(caddr_t)); } /* switch to the new tables and size */ ifnet_addrs = (struct ifaddr **)(void *)new_ifnet_addrs; ifindex2ifnet = (struct ifnet **)(void *)new_ifindex2ifnet; if_indexlim = new_if_indexlim; /* release the old data */ if (old_ifnet_addrs != NULL) { _FREE((caddr_t)old_ifnet_addrs, M_IFADDR); } } return new_index; } /* * Create a clone network interface. */ static int if_clone_create(char *name, int len, void *params) { struct if_clone *ifc; char *dp; int wildcard; u_int32_t bytoff, bitoff; u_int32_t unit; int err; ifc = if_clone_lookup(name, &unit); if (ifc == NULL) { return EINVAL; } if (ifunit(name) != NULL) { return EEXIST; } bytoff = bitoff = 0; wildcard = (unit == UINT32_MAX); /* * Find a free unit if none was given. */ if (wildcard) { while ((bytoff < ifc->ifc_bmlen) && (ifc->ifc_units[bytoff] == 0xff)) { bytoff++; } if (bytoff >= ifc->ifc_bmlen) { return ENOSPC; } while ((ifc->ifc_units[bytoff] & (1 << bitoff)) != 0) { bitoff++; } unit = (bytoff << 3) + bitoff; } if (unit > ifc->ifc_maxunit) { return ENXIO; } lck_mtx_lock(&ifc->ifc_mutex); err = (*ifc->ifc_create)(ifc, unit, params); if (err != 0) { lck_mtx_unlock(&ifc->ifc_mutex); return err; } if (!wildcard) { bytoff = unit >> 3; bitoff = unit - (bytoff << 3); } /* * Allocate the unit in the bitmap. */ KASSERT((ifc->ifc_units[bytoff] & (1 << bitoff)) == 0, ("%s: bit is already set", __func__)); ifc->ifc_units[bytoff] |= (1 << bitoff); /* In the wildcard case, we need to update the name. */ if (wildcard) { for (dp = name; *dp != '\0'; dp++) { ; } if (snprintf(dp, len - (dp - name), "%d", unit) > len - (dp - name) - 1) { /* * This can only be a programmer error and * there's no straightforward way to recover if * it happens. */ panic("%s: interface name too long", __func__); /* NOTREACHED */ } } lck_mtx_unlock(&ifc->ifc_mutex); return 0; } /* * Destroy a clone network interface. */ static int if_clone_destroy(const char *name) { struct if_clone *ifc = NULL; struct ifnet *ifp = NULL; int bytoff, bitoff; u_int32_t unit; int error = 0; ifc = if_clone_lookup(name, &unit); if (ifc == NULL) { error = EINVAL; goto done; } if (unit < ifc->ifc_minifs) { error = EINVAL; goto done; } ifp = ifunit_ref(name); if (ifp == NULL) { error = ENXIO; goto done; } if (ifc->ifc_destroy == NULL) { error = EOPNOTSUPP; goto done; } lck_mtx_lock(&ifc->ifc_mutex); error = (*ifc->ifc_destroy)(ifp); if (error) { lck_mtx_unlock(&ifc->ifc_mutex); goto done; } /* Compute offset in the bitmap and deallocate the unit. */ bytoff = unit >> 3; bitoff = unit - (bytoff << 3); KASSERT((ifc->ifc_units[bytoff] & (1 << bitoff)) != 0, ("%s: bit is already cleared", __func__)); ifc->ifc_units[bytoff] &= ~(1 << bitoff); lck_mtx_unlock(&ifc->ifc_mutex); done: if (ifp != NULL) { ifnet_decr_iorefcnt(ifp); } return error; } /* * Look up a network interface cloner. */ __private_extern__ struct if_clone * if_clone_lookup(const char *name, u_int32_t *unitp) { struct if_clone *ifc; const char *cp; u_int32_t i; for (ifc = LIST_FIRST(&if_cloners); ifc != NULL;) { for (cp = name, i = 0; i < ifc->ifc_namelen; i++, cp++) { if (ifc->ifc_name[i] != *cp) { goto next_ifc; } } goto found_name; next_ifc: ifc = LIST_NEXT(ifc, ifc_list); } /* No match. */ return (struct if_clone *)NULL; found_name: if (*cp == '\0') { i = UINT32_MAX; } else { for (i = 0; *cp != '\0'; cp++) { if (*cp < '0' || *cp > '9') { /* Bogus unit number. */ return NULL; } i = (i * 10) + (*cp - '0'); } } if (unitp != NULL) { *unitp = i; } return ifc; } void * if_clone_softc_allocate(const struct if_clone *ifc) { void *p_clone = NULL; VERIFY(ifc != NULL); p_clone = zalloc(ifc->ifc_zone); if (p_clone != NULL) { bzero(p_clone, ifc->ifc_softc_size); } return p_clone; } void if_clone_softc_deallocate(const struct if_clone *ifc, void *p_softc) { VERIFY(ifc != NULL && p_softc != NULL); bzero(p_softc, ifc->ifc_softc_size); zfree(ifc->ifc_zone, p_softc); } /* * Register a network interface cloner. */ int if_clone_attach(struct if_clone *ifc) { int bytoff, bitoff; int err; int len, maxclone; u_int32_t unit; KASSERT(ifc->ifc_minifs - 1 <= ifc->ifc_maxunit, ("%s: %s requested more units then allowed (%d > %d)", __func__, ifc->ifc_name, ifc->ifc_minifs, ifc->ifc_maxunit + 1)); /* * Compute bitmap size and allocate it. */ maxclone = ifc->ifc_maxunit + 1; len = maxclone >> 3; if ((len << 3) < maxclone) { len++; } ifc->ifc_units = _MALLOC(len, M_CLONE, M_WAITOK | M_ZERO); if (ifc->ifc_units == NULL) { return ENOBUFS; } ifc->ifc_bmlen = len; lck_mtx_init(&ifc->ifc_mutex, ifnet_lock_group, ifnet_lock_attr); if (ifc->ifc_softc_size != 0) { ifc->ifc_zone = zinit(ifc->ifc_softc_size, ifc->ifc_zone_max_elem * ifc->ifc_softc_size, 0, ifc->ifc_name); if (ifc->ifc_zone == NULL) { FREE(ifc->ifc_units, M_CLONE); return ENOBUFS; } zone_change(ifc->ifc_zone, Z_EXPAND, TRUE); zone_change(ifc->ifc_zone, Z_CALLERACCT, FALSE); } LIST_INSERT_HEAD(&if_cloners, ifc, ifc_list); if_cloners_count++; for (unit = 0; unit < ifc->ifc_minifs; unit++) { err = (*ifc->ifc_create)(ifc, unit, NULL); KASSERT(err == 0, ("%s: failed to create required interface %s%d", __func__, ifc->ifc_name, unit)); /* Allocate the unit in the bitmap. */ bytoff = unit >> 3; bitoff = unit - (bytoff << 3); ifc->ifc_units[bytoff] |= (1 << bitoff); } return 0; } /* * Unregister a network interface cloner. */ void if_clone_detach(struct if_clone *ifc) { LIST_REMOVE(ifc, ifc_list); FREE(ifc->ifc_units, M_CLONE); if (ifc->ifc_softc_size != 0) { zdestroy(ifc->ifc_zone); } lck_mtx_destroy(&ifc->ifc_mutex, ifnet_lock_group); if_cloners_count--; } /* * Provide list of interface cloners to userspace. */ static int if_clone_list(int count, int *ret_total, user_addr_t dst) { char outbuf[IFNAMSIZ]; struct if_clone *ifc; int error = 0; *ret_total = if_cloners_count; if (dst == USER_ADDR_NULL) { /* Just asking how many there are. */ return 0; } if (count < 0) { return EINVAL; } count = (if_cloners_count < count) ? if_cloners_count : count; for (ifc = LIST_FIRST(&if_cloners); ifc != NULL && count != 0; ifc = LIST_NEXT(ifc, ifc_list), count--, dst += IFNAMSIZ) { bzero(outbuf, sizeof(outbuf)); strlcpy(outbuf, ifc->ifc_name, IFNAMSIZ); error = copyout(outbuf, dst, IFNAMSIZ); if (error) { break; } } return error; } u_int32_t if_functional_type(struct ifnet *ifp, bool exclude_delegate) { u_int32_t ret = IFRTYPE_FUNCTIONAL_UNKNOWN; if (ifp != NULL) { if (ifp->if_flags & IFF_LOOPBACK) { ret = IFRTYPE_FUNCTIONAL_LOOPBACK; } else if (IFNET_IS_COMPANION_LINK(ifp)) { ret = IFRTYPE_FUNCTIONAL_COMPANIONLINK; } else if ((exclude_delegate && (ifp->if_family == IFNET_FAMILY_ETHERNET && ifp->if_subfamily == IFNET_SUBFAMILY_WIFI)) || (!exclude_delegate && IFNET_IS_WIFI(ifp))) { if (ifp->if_eflags & IFEF_AWDL) { ret = IFRTYPE_FUNCTIONAL_WIFI_AWDL; } else { ret = IFRTYPE_FUNCTIONAL_WIFI_INFRA; } } else if ((exclude_delegate && (ifp->if_type == IFT_CELLULAR)) || (!exclude_delegate && IFNET_IS_CELLULAR(ifp))) { ret = IFRTYPE_FUNCTIONAL_CELLULAR; } else if (IFNET_IS_INTCOPROC(ifp)) { ret = IFRTYPE_FUNCTIONAL_INTCOPROC; } else if ((exclude_delegate && (ifp->if_family == IFNET_FAMILY_ETHERNET || ifp->if_family == IFNET_FAMILY_BOND || ifp->if_family == IFNET_FAMILY_VLAN || ifp->if_family == IFNET_FAMILY_FIREWIRE)) || (!exclude_delegate && IFNET_IS_WIRED(ifp))) { ret = IFRTYPE_FUNCTIONAL_WIRED; } } return ret; } /* * Similar to ifa_ifwithaddr, except that this is IPv4 specific * and that it matches only the local (not broadcast) address. */ __private_extern__ struct in_ifaddr * ifa_foraddr(unsigned int addr) { return ifa_foraddr_scoped(addr, IFSCOPE_NONE); } /* * Similar to ifa_foraddr, except with the added interface scope * constraint (unless the caller passes in IFSCOPE_NONE in which * case there is no scope restriction). */ __private_extern__ struct in_ifaddr * ifa_foraddr_scoped(unsigned int addr, unsigned int scope) { struct in_ifaddr *ia = NULL; lck_rw_lock_shared(in_ifaddr_rwlock); TAILQ_FOREACH(ia, INADDR_HASH(addr), ia_hash) { IFA_LOCK_SPIN(&ia->ia_ifa); if (ia->ia_addr.sin_addr.s_addr == addr && (scope == IFSCOPE_NONE || ia->ia_ifp->if_index == scope)) { IFA_ADDREF_LOCKED(&ia->ia_ifa); /* for caller */ IFA_UNLOCK(&ia->ia_ifa); break; } IFA_UNLOCK(&ia->ia_ifa); } lck_rw_done(in_ifaddr_rwlock); return ia; } #if INET6 /* * Similar to ifa_foraddr, except that this for IPv6. */ __private_extern__ struct in6_ifaddr * ifa_foraddr6(struct in6_addr *addr6) { return ifa_foraddr6_scoped(addr6, IFSCOPE_NONE); } __private_extern__ struct in6_ifaddr * ifa_foraddr6_scoped(struct in6_addr *addr6, unsigned int scope) { struct in6_ifaddr *ia = NULL; lck_rw_lock_shared(&in6_ifaddr_rwlock); for (ia = in6_ifaddrs; ia; ia = ia->ia_next) { IFA_LOCK(&ia->ia_ifa); if (IN6_ARE_ADDR_EQUAL(&ia->ia_addr.sin6_addr, addr6) && (scope == IFSCOPE_NONE || ia->ia_ifp->if_index == scope)) { IFA_ADDREF_LOCKED(&ia->ia_ifa); /* for caller */ IFA_UNLOCK(&ia->ia_ifa); break; } IFA_UNLOCK(&ia->ia_ifa); } lck_rw_done(&in6_ifaddr_rwlock); return ia; } #endif /* INET6 */ /* * Return the first (primary) address of a given family on an interface. */ __private_extern__ struct ifaddr * ifa_ifpgetprimary(struct ifnet *ifp, int family) { struct ifaddr *ifa; ifnet_lock_shared(ifp); TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) { IFA_LOCK_SPIN(ifa); if (ifa->ifa_addr->sa_family == family) { IFA_ADDREF_LOCKED(ifa); /* for caller */ IFA_UNLOCK(ifa); break; } IFA_UNLOCK(ifa); } ifnet_lock_done(ifp); return ifa; } static inline int ifa_equal(const struct sockaddr *sa1, const struct sockaddr *sa2) { if (!sa1 || !sa2) { return 0; } if (sa1->sa_len != sa2->sa_len) { return 0; } return bcmp(sa1, sa2, sa1->sa_len) == 0; } /* * Locate an interface based on a complete address. */ struct ifaddr * ifa_ifwithaddr_locked(const struct sockaddr *addr) { struct ifnet *ifp; struct ifaddr *ifa; struct ifaddr *result = NULL; for (ifp = ifnet_head.tqh_first; ifp && !result; ifp = ifp->if_link.tqe_next) { ifnet_lock_shared(ifp); for (ifa = ifp->if_addrhead.tqh_first; ifa; ifa = ifa->ifa_link.tqe_next) { IFA_LOCK_SPIN(ifa); if (ifa->ifa_addr->sa_family != addr->sa_family) { IFA_UNLOCK(ifa); continue; } if (ifa_equal(addr, ifa->ifa_addr)) { result = ifa; IFA_ADDREF_LOCKED(ifa); /* for caller */ IFA_UNLOCK(ifa); break; } if ((ifp->if_flags & IFF_BROADCAST) && ifa->ifa_broadaddr != NULL && /* IP6 doesn't have broadcast */ ifa->ifa_broadaddr->sa_len != 0 && ifa_equal(ifa->ifa_broadaddr, addr)) { result = ifa; IFA_ADDREF_LOCKED(ifa); /* for caller */ IFA_UNLOCK(ifa); break; } IFA_UNLOCK(ifa); } ifnet_lock_done(ifp); } return result; } struct ifaddr * ifa_ifwithaddr(const struct sockaddr *addr) { struct ifaddr *result = NULL; ifnet_head_lock_shared(); result = ifa_ifwithaddr_locked(addr); ifnet_head_done(); return result; } /* * Locate the point to point interface with a given destination address. */ /*ARGSUSED*/ struct ifaddr * ifa_ifwithdstaddr(const struct sockaddr *addr) { struct ifnet *ifp; struct ifaddr *ifa; struct ifaddr *result = NULL; ifnet_head_lock_shared(); for (ifp = ifnet_head.tqh_first; ifp && !result; ifp = ifp->if_link.tqe_next) { if ((ifp->if_flags & IFF_POINTOPOINT)) { ifnet_lock_shared(ifp); for (ifa = ifp->if_addrhead.tqh_first; ifa; ifa = ifa->ifa_link.tqe_next) { IFA_LOCK_SPIN(ifa); if (ifa->ifa_addr->sa_family != addr->sa_family) { IFA_UNLOCK(ifa); continue; } if (ifa_equal(addr, ifa->ifa_dstaddr)) { result = ifa; IFA_ADDREF_LOCKED(ifa); /* for caller */ IFA_UNLOCK(ifa); break; } IFA_UNLOCK(ifa); } ifnet_lock_done(ifp); } } ifnet_head_done(); return result; } /* * Locate the source address of an interface based on a complete address. */ struct ifaddr * ifa_ifwithaddr_scoped_locked(const struct sockaddr *addr, unsigned int ifscope) { struct ifaddr *result = NULL; struct ifnet *ifp; if (ifscope == IFSCOPE_NONE) { return ifa_ifwithaddr_locked(addr); } if (ifscope > (unsigned int)if_index) { return NULL; } ifp = ifindex2ifnet[ifscope]; if (ifp != NULL) { struct ifaddr *ifa = NULL; /* * This is suboptimal; there should be a better way * to search for a given address of an interface * for any given address family. */ ifnet_lock_shared(ifp); for (ifa = ifp->if_addrhead.tqh_first; ifa != NULL; ifa = ifa->ifa_link.tqe_next) { IFA_LOCK_SPIN(ifa); if (ifa->ifa_addr->sa_family != addr->sa_family) { IFA_UNLOCK(ifa); continue; } if (ifa_equal(addr, ifa->ifa_addr)) { result = ifa; IFA_ADDREF_LOCKED(ifa); /* for caller */ IFA_UNLOCK(ifa); break; } if ((ifp->if_flags & IFF_BROADCAST) && ifa->ifa_broadaddr != NULL && /* IP6 doesn't have broadcast */ ifa->ifa_broadaddr->sa_len != 0 && ifa_equal(ifa->ifa_broadaddr, addr)) { result = ifa; IFA_ADDREF_LOCKED(ifa); /* for caller */ IFA_UNLOCK(ifa); break; } IFA_UNLOCK(ifa); } ifnet_lock_done(ifp); } return result; } struct ifaddr * ifa_ifwithaddr_scoped(const struct sockaddr *addr, unsigned int ifscope) { struct ifaddr *result = NULL; ifnet_head_lock_shared(); result = ifa_ifwithaddr_scoped_locked(addr, ifscope); ifnet_head_done(); return result; } struct ifaddr * ifa_ifwithnet(const struct sockaddr *addr) { return ifa_ifwithnet_common(addr, IFSCOPE_NONE); } struct ifaddr * ifa_ifwithnet_scoped(const struct sockaddr *addr, unsigned int ifscope) { return ifa_ifwithnet_common(addr, ifscope); } /* * Find an interface on a specific network. If many, choice * is most specific found. */ static struct ifaddr * ifa_ifwithnet_common(const struct sockaddr *addr, unsigned int ifscope) { struct ifnet *ifp; struct ifaddr *ifa = NULL; struct ifaddr *ifa_maybe = NULL; u_int af = addr->sa_family; const char *addr_data = addr->sa_data, *cplim; #if INET6 if (af != AF_INET && af != AF_INET6) { #else if (af != AF_INET) { #endif /* !INET6 */ ifscope = IFSCOPE_NONE; } ifnet_head_lock_shared(); /* * AF_LINK addresses can be looked up directly by their index number, * so do that if we can. */ if (af == AF_LINK) { const struct sockaddr_dl *sdl = (const struct sockaddr_dl *)(uintptr_t)(size_t)addr; if (sdl->sdl_index && sdl->sdl_index <= if_index) { ifa = ifnet_addrs[sdl->sdl_index - 1]; if (ifa != NULL) { IFA_ADDREF(ifa); } ifnet_head_done(); return ifa; } } /* * Scan though each interface, looking for ones that have * addresses in this address family. */ for (ifp = ifnet_head.tqh_first; ifp; ifp = ifp->if_link.tqe_next) { ifnet_lock_shared(ifp); for (ifa = ifp->if_addrhead.tqh_first; ifa; ifa = ifa->ifa_link.tqe_next) { const char *cp, *cp2, *cp3; IFA_LOCK(ifa); if (ifa->ifa_addr == NULL || ifa->ifa_addr->sa_family != af) { next: IFA_UNLOCK(ifa); continue; } /* * If we're looking up with a scope, * find using a matching interface. */ if (ifscope != IFSCOPE_NONE && ifp->if_index != ifscope) { IFA_UNLOCK(ifa); continue; } /* * Scan all the bits in the ifa's address. * If a bit dissagrees with what we are * looking for, mask it with the netmask * to see if it really matters. * (A byte at a time) */ if (ifa->ifa_netmask == 0) { IFA_UNLOCK(ifa); continue; } cp = addr_data; cp2 = ifa->ifa_addr->sa_data; cp3 = ifa->ifa_netmask->sa_data; cplim = ifa->ifa_netmask->sa_len + (char *)ifa->ifa_netmask; while (cp3 < cplim) { if ((*cp++ ^ *cp2++) & *cp3++) { goto next; /* next address! */ } } /* * If the netmask of what we just found * is more specific than what we had before * (if we had one) then remember the new one * before continuing to search * for an even better one. */ if (ifa_maybe == NULL || rn_refines((caddr_t)ifa->ifa_netmask, (caddr_t)ifa_maybe->ifa_netmask)) { IFA_ADDREF_LOCKED(ifa); /* ifa_maybe */ IFA_UNLOCK(ifa); if (ifa_maybe != NULL) { IFA_REMREF(ifa_maybe); } ifa_maybe = ifa; } else { IFA_UNLOCK(ifa); } IFA_LOCK_ASSERT_NOTHELD(ifa); } ifnet_lock_done(ifp); if (ifa != NULL) { break; } } ifnet_head_done(); if (ifa == NULL) { ifa = ifa_maybe; } else if (ifa_maybe != NULL) { IFA_REMREF(ifa_maybe); } return ifa; } /* * Find an interface address specific to an interface best matching * a given address applying same source address selection rules * as done in the kernel for implicit source address binding */ struct ifaddr * ifaof_ifpforaddr_select(const struct sockaddr *addr, struct ifnet *ifp) { u_int af = addr->sa_family; if (af == AF_INET6) { return in6_selectsrc_core_ifa(__DECONST(struct sockaddr_in6 *, addr), ifp, 0); } return ifaof_ifpforaddr(addr, ifp); } /* * Find an interface address specific to an interface best matching * a given address without regards to source address selection. * * This is appropriate for use-cases where we just want to update/init * some data structure like routing table entries. */ struct ifaddr * ifaof_ifpforaddr(const struct sockaddr *addr, struct ifnet *ifp) { struct ifaddr *ifa = NULL; const char *cp, *cp2, *cp3; char *cplim; struct ifaddr *ifa_maybe = NULL; struct ifaddr *better_ifa_maybe = NULL; u_int af = addr->sa_family; if (af >= AF_MAX) { return NULL; } ifnet_lock_shared(ifp); for (ifa = ifp->if_addrhead.tqh_first; ifa; ifa = ifa->ifa_link.tqe_next) { IFA_LOCK(ifa); if (ifa->ifa_addr->sa_family != af) { IFA_UNLOCK(ifa); continue; } if (ifa_maybe == NULL) { IFA_ADDREF_LOCKED(ifa); /* for ifa_maybe */ ifa_maybe = ifa; } if (ifa->ifa_netmask == 0) { if (ifa_equal(addr, ifa->ifa_addr) || ifa_equal(addr, ifa->ifa_dstaddr)) { IFA_ADDREF_LOCKED(ifa); /* for caller */ IFA_UNLOCK(ifa); break; } IFA_UNLOCK(ifa); continue; } if (ifp->if_flags & IFF_POINTOPOINT) { if (ifa_equal(addr, ifa->ifa_dstaddr)) { IFA_ADDREF_LOCKED(ifa); /* for caller */ IFA_UNLOCK(ifa); break; } } else { if (ifa_equal(addr, ifa->ifa_addr)) { /* exact match */ IFA_ADDREF_LOCKED(ifa); /* for caller */ IFA_UNLOCK(ifa); break; } cp = addr->sa_data; cp2 = ifa->ifa_addr->sa_data; cp3 = ifa->ifa_netmask->sa_data; cplim = ifa->ifa_netmask->sa_len + (char *)ifa->ifa_netmask; for (; cp3 < cplim; cp3++) { if ((*cp++ ^ *cp2++) & *cp3) { break; } } if (cp3 == cplim) { /* subnet match */ if (better_ifa_maybe == NULL) { /* for better_ifa_maybe */ IFA_ADDREF_LOCKED(ifa); better_ifa_maybe = ifa; } } } IFA_UNLOCK(ifa); } if (ifa == NULL) { if (better_ifa_maybe != NULL) { ifa = better_ifa_maybe; better_ifa_maybe = NULL; } else { ifa = ifa_maybe; ifa_maybe = NULL; } } ifnet_lock_done(ifp); if (better_ifa_maybe != NULL) { IFA_REMREF(better_ifa_maybe); } if (ifa_maybe != NULL) { IFA_REMREF(ifa_maybe); } return ifa; } #include <net/route.h> /* * Default action when installing a route with a Link Level gateway. * Lookup an appropriate real ifa to point to. * This should be moved to /sys/net/link.c eventually. */ void link_rtrequest(int cmd, struct rtentry *rt, struct sockaddr *sa) { struct ifaddr *ifa; struct sockaddr *dst; struct ifnet *ifp; void (*ifa_rtrequest)(int, struct rtentry *, struct sockaddr *); LCK_MTX_ASSERT(rnh_lock, LCK_MTX_ASSERT_OWNED); RT_LOCK_ASSERT_HELD(rt); if (cmd != RTM_ADD || ((ifa = rt->rt_ifa) == 0) || ((ifp = ifa->ifa_ifp) == 0) || ((dst = rt_key(rt)) == 0)) { return; } /* Become a regular mutex, just in case */ RT_CONVERT_LOCK(rt); ifa = ifaof_ifpforaddr(dst, ifp); if (ifa) { rtsetifa(rt, ifa); IFA_LOCK_SPIN(ifa); ifa_rtrequest = ifa->ifa_rtrequest; IFA_UNLOCK(ifa); if (ifa_rtrequest != NULL && ifa_rtrequest != link_rtrequest) { ifa_rtrequest(cmd, rt, sa); } IFA_REMREF(ifa); } } /* * if_updown will set the interface up or down. It will * prevent other up/down events from occurring until this * up/down event has completed. * * Caller must lock ifnet. This function will drop the * lock. This allows ifnet_set_flags to set the rest of * the flags after we change the up/down state without * dropping the interface lock between setting the * up/down state and updating the rest of the flags. */ __private_extern__ void if_updown( struct ifnet *ifp, int up) { int i; struct ifaddr **ifa; struct timespec tv; struct ifclassq *ifq = &ifp->if_snd; /* Wait until no one else is changing the up/down state */ while ((ifp->if_eflags & IFEF_UPDOWNCHANGE) != 0) { tv.tv_sec = 0; tv.tv_nsec = NSEC_PER_SEC / 10; ifnet_lock_done(ifp); msleep(&ifp->if_eflags, NULL, 0, "if_updown", &tv); ifnet_lock_exclusive(ifp); } /* Verify that the interface isn't already in the right state */ if ((!up && (ifp->if_flags & IFF_UP) == 0) || (up && (ifp->if_flags & IFF_UP) == IFF_UP)) { return; } /* Indicate that the up/down state is changing */ ifp->if_eflags |= IFEF_UPDOWNCHANGE; /* Mark interface up or down */ if (up) { ifp->if_flags |= IFF_UP; } else { ifp->if_flags &= ~IFF_UP; } ifnet_touch_lastchange(ifp); ifnet_touch_lastupdown(ifp); /* Drop the lock to notify addresses and route */ ifnet_lock_done(ifp); IFCQ_LOCK(ifq); if_qflush(ifp, 1); /* Inform all transmit queues about the new link state */ ifnet_update_sndq(ifq, up ? CLASSQ_EV_LINK_UP : CLASSQ_EV_LINK_DOWN); IFCQ_UNLOCK(ifq); if (ifnet_get_address_list(ifp, &ifa) == 0) { for (i = 0; ifa[i] != 0; i++) { pfctlinput(up ? PRC_IFUP : PRC_IFDOWN, ifa[i]->ifa_addr); } ifnet_free_address_list(ifa); } rt_ifmsg(ifp); /* Aquire the lock to clear the changing flag */ ifnet_lock_exclusive(ifp); ifp->if_eflags &= ~IFEF_UPDOWNCHANGE; wakeup(&ifp->if_eflags); } /* * Mark an interface down and notify protocols of * the transition. */ void if_down( struct ifnet *ifp) { ifnet_lock_exclusive(ifp); if_updown(ifp, 0); ifnet_lock_done(ifp); } /* * Mark an interface up and notify protocols of * the transition. */ void if_up( struct ifnet *ifp) { ifnet_lock_exclusive(ifp); if_updown(ifp, 1); ifnet_lock_done(ifp); } /* * Flush an interface queue. */ void if_qflush(struct ifnet *ifp, int ifq_locked) { struct ifclassq *ifq = &ifp->if_snd; if (!ifq_locked) { IFCQ_LOCK(ifq); } if (IFCQ_IS_ENABLED(ifq)) { IFCQ_PURGE(ifq); } VERIFY(IFCQ_IS_EMPTY(ifq)); if (!ifq_locked) { IFCQ_UNLOCK(ifq); } } void if_qflush_sc(struct ifnet *ifp, mbuf_svc_class_t sc, u_int32_t flow, u_int32_t *packets, u_int32_t *bytes, int ifq_locked) { struct ifclassq *ifq = &ifp->if_snd; u_int32_t cnt = 0, len = 0; u_int32_t a_cnt = 0, a_len = 0; VERIFY(sc == MBUF_SC_UNSPEC || MBUF_VALID_SC(sc)); VERIFY(flow != 0); if (!ifq_locked) { IFCQ_LOCK(ifq); } if (IFCQ_IS_ENABLED(ifq)) { IFCQ_PURGE_SC(ifq, sc, flow, cnt, len); } if (!ifq_locked) { IFCQ_UNLOCK(ifq); } if (packets != NULL) { *packets = cnt + a_cnt; } if (bytes != NULL) { *bytes = len + a_len; } } /* * Extracts interface unit number and name from string, returns -1 upon failure. * Upon success, returns extracted unit number, and interface name in dst. */ int ifunit_extract(const char *src, char *dst, size_t dstlen, int *unit) { const char *cp; size_t len, m; char c; int u; if (src == NULL || dst == NULL || dstlen == 0 || unit == NULL) { return -1; } len = strlen(src); if (len < 2 || len > dstlen) { return -1; } cp = src + len - 1; c = *cp; if (c < '0' || c > '9') { return -1; /* trailing garbage */ } u = 0; m = 1; do { if (cp == src) { return -1; /* no interface name */ } u += (c - '0') * m; if (u > 1000000) { return -1; /* number is unreasonable */ } m *= 10; c = *--cp; } while (c >= '0' && c <= '9'); len = cp - src + 1; bcopy(src, dst, len); dst[len] = '\0'; *unit = u; return 0; } /* * Map interface name to * interface structure pointer. */ static struct ifnet * ifunit_common(const char *name, boolean_t hold) { char namebuf[IFNAMSIZ + 1]; struct ifnet *ifp; int unit; if (ifunit_extract(name, namebuf, sizeof(namebuf), &unit) < 0) { return NULL; } /* for safety, since we use strcmp() below */ namebuf[sizeof(namebuf) - 1] = '\0'; /* * Now search all the interfaces for this name/number */ ifnet_head_lock_shared(); TAILQ_FOREACH(ifp, &ifnet_head, if_link) { /* * Use strcmp() rather than strncmp() here, * since we want to match the entire string. */ if (strcmp(ifp->if_name, namebuf)) { continue; } if (unit == ifp->if_unit) { break; } } /* if called from ifunit_ref() and ifnet is not attached, bail */ if (hold && ifp != NULL && !ifnet_is_attached(ifp, 1)) { ifp = NULL; } ifnet_head_done(); return ifp; } struct ifnet * ifunit(const char *name) { return ifunit_common(name, FALSE); } /* * Similar to ifunit(), except that we hold an I/O reference count on an * attached interface, which must later be released via ifnet_decr_iorefcnt(). * Will return NULL unless interface exists and is fully attached. */ struct ifnet * ifunit_ref(const char *name) { return ifunit_common(name, TRUE); } /* * Map interface name in a sockaddr_dl to * interface structure pointer. */ struct ifnet * if_withname(struct sockaddr *sa) { char ifname[IFNAMSIZ + 1]; struct sockaddr_dl *sdl = (struct sockaddr_dl *)(void *)sa; if ((sa->sa_family != AF_LINK) || (sdl->sdl_nlen == 0) || (sdl->sdl_nlen > IFNAMSIZ)) { return NULL; } /* * ifunit wants a null-terminated name. It may not be null-terminated * in the sockaddr. We don't want to change the caller's sockaddr, * and there might not be room to put the trailing null anyway, so we * make a local copy that we know we can null terminate safely. */ bcopy(sdl->sdl_data, ifname, sdl->sdl_nlen); ifname[sdl->sdl_nlen] = '\0'; return ifunit(ifname); } static __attribute__((noinline)) int ifioctl_ifconf(u_long cmd, caddr_t data) { int error = 0; switch (cmd) { case OSIOCGIFCONF32: /* struct ifconf32 */ case SIOCGIFCONF32: { /* struct ifconf32 */ struct ifconf32 ifc; bcopy(data, &ifc, sizeof(ifc)); error = ifconf(cmd, CAST_USER_ADDR_T(ifc.ifc_req), &ifc.ifc_len); bcopy(&ifc, data, sizeof(ifc)); break; } case SIOCGIFCONF64: /* struct ifconf64 */ case OSIOCGIFCONF64: { /* struct ifconf64 */ struct ifconf64 ifc; bcopy(data, &ifc, sizeof(ifc)); error = ifconf(cmd, ifc.ifc_req, &ifc.ifc_len); bcopy(&ifc, data, sizeof(ifc)); break; } default: VERIFY(0); /* NOTREACHED */ } return error; } static __attribute__((noinline)) int ifioctl_ifclone(u_long cmd, caddr_t data) { int error = 0; switch (cmd) { case SIOCIFGCLONERS32: { /* struct if_clonereq32 */ struct if_clonereq32 ifcr; bcopy(data, &ifcr, sizeof(ifcr)); error = if_clone_list(ifcr.ifcr_count, &ifcr.ifcr_total, CAST_USER_ADDR_T(ifcr.ifcru_buffer)); bcopy(&ifcr, data, sizeof(ifcr)); break; } case SIOCIFGCLONERS64: { /* struct if_clonereq64 */ struct if_clonereq64 ifcr; bcopy(data, &ifcr, sizeof(ifcr)); error = if_clone_list(ifcr.ifcr_count, &ifcr.ifcr_total, ifcr.ifcru_buffer); bcopy(&ifcr, data, sizeof(ifcr)); break; } default: VERIFY(0); /* NOTREACHED */ } return error; } static __attribute__((noinline)) int ifioctl_ifdesc(struct ifnet *ifp, u_long cmd, caddr_t data, struct proc *p) { struct if_descreq *ifdr = (struct if_descreq *)(void *)data; u_int32_t ifdr_len; int error = 0; VERIFY(ifp != NULL); switch (cmd) { case SIOCSIFDESC: { /* struct if_descreq */ if ((error = proc_suser(p)) != 0) { break; } ifnet_lock_exclusive(ifp); bcopy(&ifdr->ifdr_len, &ifdr_len, sizeof(ifdr_len)); if (ifdr_len > sizeof(ifdr->ifdr_desc) || ifdr_len > ifp->if_desc.ifd_maxlen) { error = EINVAL; ifnet_lock_done(ifp); break; } bzero(ifp->if_desc.ifd_desc, ifp->if_desc.ifd_maxlen); if ((ifp->if_desc.ifd_len = ifdr_len) > 0) { bcopy(ifdr->ifdr_desc, ifp->if_desc.ifd_desc, MIN(ifdr_len, ifp->if_desc.ifd_maxlen)); } ifnet_lock_done(ifp); break; } case SIOCGIFDESC: { /* struct if_descreq */ ifnet_lock_shared(ifp); ifdr_len = MIN(ifp->if_desc.ifd_len, sizeof(ifdr->ifdr_desc)); bcopy(&ifdr_len, &ifdr->ifdr_len, sizeof(ifdr_len)); bzero(&ifdr->ifdr_desc, sizeof(ifdr->ifdr_desc)); if (ifdr_len > 0) { bcopy(ifp->if_desc.ifd_desc, ifdr->ifdr_desc, ifdr_len); } ifnet_lock_done(ifp); break; } default: VERIFY(0); /* NOTREACHED */ } return error; } static __attribute__((noinline)) int ifioctl_linkparams(struct ifnet *ifp, u_long cmd, caddr_t data, struct proc *p) { struct if_linkparamsreq *iflpr = (struct if_linkparamsreq *)(void *)data; struct ifclassq *ifq; int error = 0; VERIFY(ifp != NULL); ifq = &ifp->if_snd; switch (cmd) { case SIOCSIFLINKPARAMS: { /* struct if_linkparamsreq */ struct tb_profile tb = { .rate = 0, .percent = 0, .depth = 0 }; if ((error = proc_suser(p)) != 0) { break; } char netem_name[32]; (void) snprintf(netem_name, sizeof(netem_name), "if_output_netem_%s", if_name(ifp)); error = netem_config(&ifp->if_output_netem, netem_name, &iflpr->iflpr_output_netem, (void *)ifp, ifnet_enqueue_netem, NETEM_MAX_BATCH_SIZE); if (error != 0) { break; } IFCQ_LOCK(ifq); if (!IFCQ_IS_READY(ifq)) { error = ENXIO; IFCQ_UNLOCK(ifq); break; } bcopy(&iflpr->iflpr_output_tbr_rate, &tb.rate, sizeof(tb.rate)); bcopy(&iflpr->iflpr_output_tbr_percent, &tb.percent, sizeof(tb.percent)); error = ifclassq_tbr_set(ifq, &tb, TRUE); IFCQ_UNLOCK(ifq); break; } case SIOCGIFLINKPARAMS: { /* struct if_linkparamsreq */ u_int32_t sched_type = PKTSCHEDT_NONE, flags = 0; u_int64_t tbr_bw = 0, tbr_pct = 0; IFCQ_LOCK(ifq); if (IFCQ_IS_ENABLED(ifq)) { sched_type = ifq->ifcq_type; } bcopy(&sched_type, &iflpr->iflpr_output_sched, sizeof(iflpr->iflpr_output_sched)); if (IFCQ_TBR_IS_ENABLED(ifq)) { tbr_bw = ifq->ifcq_tbr.tbr_rate_raw; tbr_pct = ifq->ifcq_tbr.tbr_percent; } bcopy(&tbr_bw, &iflpr->iflpr_output_tbr_rate, sizeof(iflpr->iflpr_output_tbr_rate)); bcopy(&tbr_pct, &iflpr->iflpr_output_tbr_percent, sizeof(iflpr->iflpr_output_tbr_percent)); IFCQ_UNLOCK(ifq); if (ifp->if_output_sched_model == IFNET_SCHED_MODEL_DRIVER_MANAGED) { flags |= IFLPRF_DRVMANAGED; } bcopy(&flags, &iflpr->iflpr_flags, sizeof(iflpr->iflpr_flags)); bcopy(&ifp->if_output_bw, &iflpr->iflpr_output_bw, sizeof(iflpr->iflpr_output_bw)); bcopy(&ifp->if_input_bw, &iflpr->iflpr_input_bw, sizeof(iflpr->iflpr_input_bw)); bcopy(&ifp->if_output_lt, &iflpr->iflpr_output_lt, sizeof(iflpr->iflpr_output_lt)); bcopy(&ifp->if_input_lt, &iflpr->iflpr_input_lt, sizeof(iflpr->iflpr_input_lt)); if (ifp->if_output_netem != NULL) { netem_get_params(ifp->if_output_netem, &iflpr->iflpr_output_netem); } break; } default: VERIFY(0); /* NOTREACHED */ } return error; } static __attribute__((noinline)) int ifioctl_qstats(struct ifnet *ifp, u_long cmd, caddr_t data) { struct if_qstatsreq *ifqr = (struct if_qstatsreq *)(void *)data; u_int32_t ifqr_len, ifqr_slot; int error = 0; VERIFY(ifp != NULL); switch (cmd) { case SIOCGIFQUEUESTATS: { /* struct if_qstatsreq */ bcopy(&ifqr->ifqr_slot, &ifqr_slot, sizeof(ifqr_slot)); bcopy(&ifqr->ifqr_len, &ifqr_len, sizeof(ifqr_len)); error = ifclassq_getqstats(&ifp->if_snd, ifqr_slot, ifqr->ifqr_buf, &ifqr_len); if (error != 0) { ifqr_len = 0; } bcopy(&ifqr_len, &ifqr->ifqr_len, sizeof(ifqr_len)); break; } default: VERIFY(0); /* NOTREACHED */ } return error; } static __attribute__((noinline)) int ifioctl_throttle(struct ifnet *ifp, u_long cmd, caddr_t data, struct proc *p) { struct if_throttlereq *ifthr = (struct if_throttlereq *)(void *)data; u_int32_t ifthr_level; int error = 0; VERIFY(ifp != NULL); switch (cmd) { case SIOCSIFTHROTTLE: { /* struct if_throttlereq */ /* * XXX: Use priv_check_cred() instead of root check? */ if ((error = proc_suser(p)) != 0) { break; } bcopy(&ifthr->ifthr_level, &ifthr_level, sizeof(ifthr_level)); error = ifnet_set_throttle(ifp, ifthr_level); if (error == EALREADY) { error = 0; } break; } case SIOCGIFTHROTTLE: { /* struct if_throttlereq */ if ((error = ifnet_get_throttle(ifp, &ifthr_level)) == 0) { bcopy(&ifthr_level, &ifthr->ifthr_level, sizeof(ifthr_level)); } break; } default: VERIFY(0); /* NOTREACHED */ } return error; } static int ifioctl_getnetagents(struct ifnet *ifp, u_int32_t *count, user_addr_t uuid_p) { int error = 0; u_int32_t index = 0; u_int32_t valid_netagent_count = 0; *count = 0; ifnet_lock_assert(ifp, IFNET_LCK_ASSERT_SHARED); if (ifp->if_agentids != NULL) { for (index = 0; index < ifp->if_agentcount; index++) { uuid_t *netagent_uuid = &(ifp->if_agentids[index]); if (!uuid_is_null(*netagent_uuid)) { if (uuid_p != USER_ADDR_NULL) { error = copyout(netagent_uuid, uuid_p + sizeof(uuid_t) * valid_netagent_count, sizeof(uuid_t)); if (error != 0) { return error; } } valid_netagent_count++; } } } *count = valid_netagent_count; return 0; } #define IF_MAXAGENTS 64 #define IF_AGENT_INCREMENT 8 int if_add_netagent_locked(struct ifnet *ifp, uuid_t new_agent_uuid) { VERIFY(ifp != NULL); uuid_t *first_empty_slot = NULL; u_int32_t index = 0; bool already_added = FALSE; if (ifp->if_agentids != NULL) { for (index = 0; index < ifp->if_agentcount; index++) { uuid_t *netagent_uuid = &(ifp->if_agentids[index]); if (uuid_compare(*netagent_uuid, new_agent_uuid) == 0) { /* Already present, ignore */ already_added = TRUE; break; } if (first_empty_slot == NULL && uuid_is_null(*netagent_uuid)) { first_empty_slot = netagent_uuid; } } } if (already_added) { /* Already added agent, don't return an error */ return 0; } if (first_empty_slot == NULL) { if (ifp->if_agentcount >= IF_MAXAGENTS) { /* No room for another netagent UUID, bail */ return ENOMEM; } else { /* Calculate new array size */ u_int32_t new_agent_count = MIN(ifp->if_agentcount + IF_AGENT_INCREMENT, IF_MAXAGENTS); /* Reallocate array */ uuid_t *new_agent_array = _REALLOC(ifp->if_agentids, sizeof(uuid_t) * new_agent_count, M_NETAGENT, M_WAITOK | M_ZERO); if (new_agent_array == NULL) { return ENOMEM; } /* Save new array */ ifp->if_agentids = new_agent_array; /* Set first empty slot */ first_empty_slot = &(ifp->if_agentids[ifp->if_agentcount]); /* Save new array length */ ifp->if_agentcount = new_agent_count; } } uuid_copy(*first_empty_slot, new_agent_uuid); netagent_post_updated_interfaces(new_agent_uuid); return 0; } int if_add_netagent(struct ifnet *ifp, uuid_t new_agent_uuid) { VERIFY(ifp != NULL); ifnet_lock_exclusive(ifp); int error = if_add_netagent_locked(ifp, new_agent_uuid); ifnet_lock_done(ifp); return error; } static int if_delete_netagent_locked(struct ifnet *ifp, uuid_t remove_agent_uuid) { u_int32_t index = 0; bool removed_agent_id = FALSE; if (ifp->if_agentids != NULL) { for (index = 0; index < ifp->if_agentcount; index++) { uuid_t *netagent_uuid = &(ifp->if_agentids[index]); if (uuid_compare(*netagent_uuid, remove_agent_uuid) == 0) { uuid_clear(*netagent_uuid); removed_agent_id = TRUE; break; } } } if (removed_agent_id) { netagent_post_updated_interfaces(remove_agent_uuid); } return 0; } int if_delete_netagent(struct ifnet *ifp, uuid_t remove_agent_uuid) { VERIFY(ifp != NULL); ifnet_lock_exclusive(ifp); int error = if_delete_netagent_locked(ifp, remove_agent_uuid); ifnet_lock_done(ifp); return error; } boolean_t if_check_netagent(struct ifnet *ifp, uuid_t find_agent_uuid) { boolean_t found = FALSE; if (!ifp || uuid_is_null(find_agent_uuid)) { return FALSE; } ifnet_lock_shared(ifp); if (ifp->if_agentids != NULL) { for (uint32_t index = 0; index < ifp->if_agentcount; index++) { if (uuid_compare(ifp->if_agentids[index], find_agent_uuid) == 0) { found = TRUE; break; } } } ifnet_lock_done(ifp); return found; } static __attribute__((noinline)) int ifioctl_netagent(struct ifnet *ifp, u_long cmd, caddr_t data, struct proc *p) { struct if_agentidreq *ifar = (struct if_agentidreq *)(void *)data; union { struct if_agentidsreq32 s32; struct if_agentidsreq64 s64; } u; int error = 0; VERIFY(ifp != NULL); /* Get an io ref count if the interface is attached */ if (!ifnet_is_attached(ifp, 1)) { return EOPNOTSUPP; } if (cmd == SIOCAIFAGENTID || cmd == SIOCDIFAGENTID) { ifnet_lock_exclusive(ifp); } else { ifnet_lock_shared(ifp); } switch (cmd) { case SIOCAIFAGENTID: { /* struct if_agentidreq */ // TODO: Use priv_check_cred() instead of root check if ((error = proc_suser(p)) != 0) { break; } error = if_add_netagent_locked(ifp, ifar->ifar_uuid); break; } case SIOCDIFAGENTID: { /* struct if_agentidreq */ // TODO: Use priv_check_cred() instead of root check if ((error = proc_suser(p)) != 0) { break; } error = if_delete_netagent_locked(ifp, ifar->ifar_uuid); break; } case SIOCGIFAGENTIDS32: { /* struct if_agentidsreq32 */ bcopy(data, &u.s32, sizeof(u.s32)); error = ifioctl_getnetagents(ifp, &u.s32.ifar_count, u.s32.ifar_uuids); if (error == 0) { bcopy(&u.s32, data, sizeof(u.s32)); } break; } case SIOCGIFAGENTIDS64: { /* struct if_agentidsreq64 */ bcopy(data, &u.s64, sizeof(u.s64)); error = ifioctl_getnetagents(ifp, &u.s64.ifar_count, u.s64.ifar_uuids); if (error == 0) { bcopy(&u.s64, data, sizeof(u.s64)); } break; } default: VERIFY(0); /* NOTREACHED */ } ifnet_lock_done(ifp); ifnet_decr_iorefcnt(ifp); return error; } void ifnet_clear_netagent(uuid_t netagent_uuid) { struct ifnet *ifp = NULL; u_int32_t index = 0; ifnet_head_lock_shared(); TAILQ_FOREACH(ifp, &ifnet_head, if_link) { ifnet_lock_shared(ifp); if (ifp->if_agentids != NULL) { for (index = 0; index < ifp->if_agentcount; index++) { uuid_t *ifp_netagent_uuid = &(ifp->if_agentids[index]); if (uuid_compare(*ifp_netagent_uuid, netagent_uuid) == 0) { uuid_clear(*ifp_netagent_uuid); } } } ifnet_lock_done(ifp); } ifnet_head_done(); } void ifnet_increment_generation(ifnet_t interface) { OSIncrementAtomic(&interface->if_generation); } u_int32_t ifnet_get_generation(ifnet_t interface) { return interface->if_generation; } void ifnet_remove_from_ordered_list(struct ifnet *ifp) { ifnet_head_assert_exclusive(); // Remove from list TAILQ_REMOVE(&ifnet_ordered_head, ifp, if_ordered_link); ifp->if_ordered_link.tqe_next = NULL; ifp->if_ordered_link.tqe_prev = NULL; // Update ordered count VERIFY(if_ordered_count > 0); if_ordered_count--; } static int ifnet_reset_order(u_int32_t *ordered_indices, u_int32_t count) { struct ifnet *ifp = NULL; int error = 0; ifnet_head_lock_exclusive(); for (u_int32_t order_index = 0; order_index < count; order_index++) { if (ordered_indices[order_index] == IFSCOPE_NONE || ordered_indices[order_index] > (uint32_t)if_index) { error = EINVAL; ifnet_head_done(); return error; } } // Flush current ordered list for (ifp = TAILQ_FIRST(&ifnet_ordered_head); ifp != NULL; ifp = TAILQ_FIRST(&ifnet_ordered_head)) { ifnet_lock_exclusive(ifp); ifnet_remove_from_ordered_list(ifp); ifnet_lock_done(ifp); } VERIFY(if_ordered_count == 0); for (u_int32_t order_index = 0; order_index < count; order_index++) { u_int32_t interface_index = ordered_indices[order_index]; ifp = ifindex2ifnet[interface_index]; if (ifp == NULL) { continue; } ifnet_lock_exclusive(ifp); TAILQ_INSERT_TAIL(&ifnet_ordered_head, ifp, if_ordered_link); ifnet_lock_done(ifp); if_ordered_count++; } ifnet_head_done(); necp_update_all_clients(); return error; } int if_set_qosmarking_mode(struct ifnet *ifp, u_int32_t mode) { int error = 0; u_int32_t old_mode = ifp->if_qosmarking_mode; switch (mode) { case IFRTYPE_QOSMARKING_MODE_NONE: ifp->if_qosmarking_mode = IFRTYPE_QOSMARKING_MODE_NONE; break; case IFRTYPE_QOSMARKING_FASTLANE: case IFRTYPE_QOSMARKING_RFC4594: ifp->if_qosmarking_mode = mode; break; default: error = EINVAL; break; } if (error == 0 && old_mode != ifp->if_qosmarking_mode) { dlil_post_msg(ifp, KEV_DL_SUBCLASS, KEV_DL_QOS_MODE_CHANGED, NULL, 0); } return error; } static __attribute__((noinline)) int ifioctl_iforder(u_long cmd, caddr_t data) { int error = 0; u_int32_t *ordered_indices = NULL; if (data == NULL) { return EINVAL; } switch (cmd) { case SIOCSIFORDER: { /* struct if_order */ struct if_order *ifo = (struct if_order *)(void *)data; if (ifo->ifo_count > (u_int32_t)if_index) { error = EINVAL; break; } size_t length = (ifo->ifo_count * sizeof(u_int32_t)); if (length > 0) { if (ifo->ifo_ordered_indices == USER_ADDR_NULL) { error = EINVAL; break; } ordered_indices = _MALLOC(length, M_NECP, M_WAITOK); if (ordered_indices == NULL) { error = ENOMEM; break; } error = copyin(ifo->ifo_ordered_indices, ordered_indices, length); if (error != 0) { break; } /* ordered_indices should not contain duplicates */ bool found_duplicate = FALSE; for (uint32_t i = 0; i < (ifo->ifo_count - 1) && !found_duplicate; i++) { for (uint32_t j = i + 1; j < ifo->ifo_count && !found_duplicate; j++) { if (ordered_indices[j] == ordered_indices[i]) { error = EINVAL; found_duplicate = TRUE; break; } } } if (found_duplicate) { break; } error = ifnet_reset_order(ordered_indices, ifo->ifo_count); } else { // Clear the list error = ifnet_reset_order(NULL, 0); } break; } default: { VERIFY(0); /* NOTREACHED */ } } if (ordered_indices != NULL) { _FREE(ordered_indices, M_NECP); } return error; } static __attribute__((noinline)) int ifioctl_netsignature(struct ifnet *ifp, u_long cmd, caddr_t data) { struct if_nsreq *ifnsr = (struct if_nsreq *)(void *)data; u_int16_t flags; int error = 0; VERIFY(ifp != NULL); switch (cmd) { case SIOCSIFNETSIGNATURE: /* struct if_nsreq */ if (ifnsr->ifnsr_len > sizeof(ifnsr->ifnsr_data)) { error = EINVAL; break; } bcopy(&ifnsr->ifnsr_flags, &flags, sizeof(flags)); error = ifnet_set_netsignature(ifp, ifnsr->ifnsr_family, ifnsr->ifnsr_len, flags, ifnsr->ifnsr_data); break; case SIOCGIFNETSIGNATURE: /* struct if_nsreq */ ifnsr->ifnsr_len = sizeof(ifnsr->ifnsr_data); error = ifnet_get_netsignature(ifp, ifnsr->ifnsr_family, &ifnsr->ifnsr_len, &flags, ifnsr->ifnsr_data); if (error == 0) { bcopy(&flags, &ifnsr->ifnsr_flags, sizeof(flags)); } else { ifnsr->ifnsr_len = 0; } break; default: VERIFY(0); /* NOTREACHED */ } return error; } #if INET6 static __attribute__((noinline)) int ifioctl_nat64prefix(struct ifnet *ifp, u_long cmd, caddr_t data) { struct if_nat64req *ifnat64 = (struct if_nat64req *)(void *)data; int error = 0; VERIFY(ifp != NULL); switch (cmd) { case SIOCSIFNAT64PREFIX: /* struct if_nat64req */ error = ifnet_set_nat64prefix(ifp, ifnat64->ifnat64_prefixes); if (error != 0) { ip6stat.ip6s_clat464_plat64_pfx_setfail++; } break; case SIOCGIFNAT64PREFIX: /* struct if_nat64req */ error = ifnet_get_nat64prefix(ifp, ifnat64->ifnat64_prefixes); if (error != 0) { ip6stat.ip6s_clat464_plat64_pfx_getfail++; } break; default: VERIFY(0); /* NOTREACHED */ } return error; } static __attribute__((noinline)) int ifioctl_clat46addr(struct ifnet *ifp, u_long cmd, caddr_t data) { struct if_clat46req *ifclat46 = (struct if_clat46req *)(void *)data; struct in6_ifaddr *ia6_clat = NULL; int error = 0; VERIFY(ifp != NULL); switch (cmd) { case SIOCGIFCLAT46ADDR: ia6_clat = in6ifa_ifpwithflag(ifp, IN6_IFF_CLAT46); if (ia6_clat == NULL) { error = ENOENT; break; } bcopy(&ia6_clat->ia_addr.sin6_addr, &ifclat46->ifclat46_addr.v6_address, sizeof(ifclat46->ifclat46_addr.v6_address)); ifclat46->ifclat46_addr.v6_prefixlen = ia6_clat->ia_plen; IFA_REMREF(&ia6_clat->ia_ifa); break; default: VERIFY(0); /* NOTREACHED */ } return error; } #endif static int ifioctl_get_protolist(struct ifnet *ifp, u_int32_t * ret_count, user_addr_t ifpl) { u_int32_t actual_count; u_int32_t count; int error = 0; u_int32_t *list = NULL; /* find out how many */ count = if_get_protolist(ifp, NULL, 0); if (ifpl == USER_ADDR_NULL) { goto done; } /* copy out how many there's space for */ if (*ret_count < count) { count = *ret_count; } if (count == 0) { goto done; } list = _MALLOC(count * sizeof(*list), M_TEMP, M_WAITOK | M_ZERO); if (list == NULL) { error = ENOMEM; goto done; } actual_count = if_get_protolist(ifp, list, count); if (actual_count < count) { count = actual_count; } if (count != 0) { error = copyout((caddr_t)list, ifpl, count * sizeof(*list)); } done: if (list != NULL) { if_free_protolist(list); } *ret_count = count; return error; } static __attribute__((noinline)) int ifioctl_protolist(struct ifnet *ifp, u_long cmd, caddr_t data) { int error = 0; switch (cmd) { case SIOCGIFPROTOLIST32: { /* struct if_protolistreq32 */ struct if_protolistreq32 ifpl; bcopy(data, &ifpl, sizeof(ifpl)); if (ifpl.ifpl_reserved != 0) { error = EINVAL; break; } error = ifioctl_get_protolist(ifp, &ifpl.ifpl_count, CAST_USER_ADDR_T(ifpl.ifpl_list)); bcopy(&ifpl, data, sizeof(ifpl)); break; } case SIOCGIFPROTOLIST64: { /* struct if_protolistreq64 */ struct if_protolistreq64 ifpl; bcopy(data, &ifpl, sizeof(ifpl)); if (ifpl.ifpl_reserved != 0) { error = EINVAL; break; } error = ifioctl_get_protolist(ifp, &ifpl.ifpl_count, ifpl.ifpl_list); bcopy(&ifpl, data, sizeof(ifpl)); break; } default: VERIFY(0); /* NOTREACHED */ } return error; } /* * List the ioctl()s we can perform on restricted INTCOPROC interfaces. */ static bool ifioctl_restrict_intcoproc(unsigned long cmd, const char *ifname, struct ifnet *ifp, struct proc *p) { if (intcoproc_unrestricted == TRUE) { return false; } if (proc_pid(p) == 0) { return false; } if (ifname) { ifp = ifunit(ifname); } if (ifp == NULL) { return false; } if (!IFNET_IS_INTCOPROC(ifp)) { return false; } switch (cmd) { case SIOCGIFBRDADDR: case SIOCGIFCONF32: case SIOCGIFCONF64: case SIOCGIFFLAGS: case SIOCGIFEFLAGS: case SIOCGIFCAP: case SIOCGIFMAC: case SIOCGIFMETRIC: case SIOCGIFMTU: case SIOCGIFPHYS: case SIOCGIFTYPE: case SIOCGIFFUNCTIONALTYPE: case SIOCGIFPSRCADDR: case SIOCGIFPDSTADDR: case SIOCGIFGENERIC: case SIOCGIFDEVMTU: case SIOCGIFVLAN: case SIOCGIFBOND: case SIOCGIFWAKEFLAGS: case SIOCGIFGETRTREFCNT: case SIOCGIFOPPORTUNISTIC: case SIOCGIFLINKQUALITYMETRIC: case SIOCGIFLOG: case SIOCGIFDELEGATE: case SIOCGIFEXPENSIVE: case SIOCGIFINTERFACESTATE: case SIOCGIFPROBECONNECTIVITY: case SIOCGIFTIMESTAMPENABLED: case SIOCGECNMODE: case SIOCGQOSMARKINGMODE: case SIOCGQOSMARKINGENABLED: case SIOCGIFLOWINTERNET: case SIOCGIFSTATUS: case SIOCGIFMEDIA32: case SIOCGIFMEDIA64: case SIOCGIFXMEDIA32: case SIOCGIFXMEDIA64: case SIOCGIFDESC: case SIOCGIFLINKPARAMS: case SIOCGIFQUEUESTATS: case SIOCGIFTHROTTLE: case SIOCGIFAGENTIDS32: case SIOCGIFAGENTIDS64: case SIOCGIFNETSIGNATURE: case SIOCGIFINFO_IN6: case SIOCGIFAFLAG_IN6: case SIOCGNBRINFO_IN6: case SIOCGIFALIFETIME_IN6: case SIOCGIFNETMASK_IN6: case SIOCGIFPROTOLIST32: case SIOCGIFPROTOLIST64: case SIOCGIFXFLAGS: return false; default: #if (DEBUG || DEVELOPMENT) printf("%s: cmd 0x%lx not allowed (pid %u)\n", __func__, cmd, proc_pid(p)); #endif return true; } return false; } /* * Given a media word, return one suitable for an application * using the original encoding. */ static int compat_media(int media) { if (IFM_TYPE(media) == IFM_ETHER && IFM_SUBTYPE(media) > IFM_OTHER) { media &= ~IFM_TMASK; media |= IFM_OTHER; } return media; } static int compat_ifmu_ulist(struct ifnet *ifp, u_long cmd, void *data) { struct ifmediareq *ifmr = (struct ifmediareq *)data; user_addr_t user_addr; int i; int *media_list = NULL; int error = 0; bool list_modified = false; user_addr = (cmd == SIOCGIFMEDIA64) ? ((struct ifmediareq64 *)ifmr)->ifmu_ulist : CAST_USER_ADDR_T(((struct ifmediareq32 *)ifmr)->ifmu_ulist); if (user_addr == USER_ADDR_NULL || ifmr->ifm_count == 0) { return 0; } MALLOC(media_list, int *, ifmr->ifm_count * sizeof(int), M_TEMP, M_WAITOK | M_ZERO); if (media_list == NULL) { os_log_error(OS_LOG_DEFAULT, "%s: %s MALLOC() failed", __func__, ifp->if_xname); error = ENOMEM; goto done; } error = copyin(user_addr, media_list, ifmr->ifm_count * sizeof(int)); if (error != 0) { os_log_error(OS_LOG_DEFAULT, "%s: %s copyin() error %d", __func__, ifp->if_xname, error); goto done; } for (i = 0; i < ifmr->ifm_count; i++) { int old_media, new_media; old_media = media_list[i]; new_media = compat_media(old_media); if (new_media == old_media) { continue; } if (if_verbose != 0) { os_log_info(OS_LOG_DEFAULT, "%s: %s converted extended media %08x to compat media %08x", __func__, ifp->if_xname, old_media, new_media); } media_list[i] = new_media; list_modified = true; } if (list_modified) { error = copyout(media_list, user_addr, ifmr->ifm_count * sizeof(int)); if (error != 0) { os_log_error(OS_LOG_DEFAULT, "%s: %s copyout() error %d", __func__, ifp->if_xname, error); goto done; } } done: if (media_list != NULL) { FREE(media_list, M_TEMP); } return error; } static int compat_ifmediareq(struct ifnet *ifp, u_long cmd, void *data) { struct ifmediareq *ifmr = (struct ifmediareq *)data; int error; ifmr->ifm_active = compat_media(ifmr->ifm_active); ifmr->ifm_current = compat_media(ifmr->ifm_current); error = compat_ifmu_ulist(ifp, cmd, data); return error; } static int ifioctl_get_media(struct ifnet *ifp, struct socket *so, u_long cmd, caddr_t data) { int error = 0; /* * An ifnet must not implement SIOCGIFXMEDIA as it gets the extended * media subtypes macros from <net/if_media.h> */ switch (cmd) { case SIOCGIFMEDIA32: case SIOCGIFXMEDIA32: error = ifnet_ioctl(ifp, SOCK_DOM(so), SIOCGIFMEDIA32, data); break; case SIOCGIFMEDIA64: case SIOCGIFXMEDIA64: error = ifnet_ioctl(ifp, SOCK_DOM(so), SIOCGIFMEDIA64, data); break; } if (if_verbose != 0 && error != 0) { os_log(OS_LOG_DEFAULT, "%s: first ifnet_ioctl(%s, %08lx) error %d", __func__, ifp->if_xname, cmd, error); } if (error == 0 && (cmd == SIOCGIFMEDIA32 || cmd == SIOCGIFMEDIA64)) { error = compat_ifmediareq(ifp, cmd, data); } return error; } /* * Interface ioctls. * * Most of the routines called to handle the ioctls would end up being * tail-call optimized, which unfortunately causes this routine to * consume too much stack space; this is the reason for the "noinline" * attribute used on those routines. */ int ifioctl(struct socket *so, u_long cmd, caddr_t data, struct proc *p) { char ifname[IFNAMSIZ + 1]; struct ifnet *ifp = NULL; struct ifstat *ifs = NULL; int error = 0; bzero(ifname, sizeof(ifname)); /* * ioctls which don't require ifp, or ifreq ioctls */ switch (cmd) { case OSIOCGIFCONF32: /* struct ifconf32 */ case SIOCGIFCONF32: /* struct ifconf32 */ case SIOCGIFCONF64: /* struct ifconf64 */ case OSIOCGIFCONF64: /* struct ifconf64 */ error = ifioctl_ifconf(cmd, data); goto done; case SIOCIFGCLONERS32: /* struct if_clonereq32 */ case SIOCIFGCLONERS64: /* struct if_clonereq64 */ error = ifioctl_ifclone(cmd, data); goto done; case SIOCGIFAGENTDATA32: /* struct netagent_req32 */ case SIOCGIFAGENTDATA64: /* struct netagent_req64 */ case SIOCGIFAGENTLIST32: /* struct netagentlist_req32 */ case SIOCGIFAGENTLIST64: /* struct netagentlist_req64 */ error = netagent_ioctl(cmd, data); goto done; case SIOCSIFORDER: /* struct if_order */ error = ifioctl_iforder(cmd, data); goto done; case SIOCSIFDSTADDR: /* struct ifreq */ case SIOCSIFADDR: /* struct ifreq */ case SIOCSIFBRDADDR: /* struct ifreq */ case SIOCSIFNETMASK: /* struct ifreq */ case OSIOCGIFADDR: /* struct ifreq */ case OSIOCGIFDSTADDR: /* struct ifreq */ case OSIOCGIFBRDADDR: /* struct ifreq */ case OSIOCGIFNETMASK: /* struct ifreq */ case SIOCSIFKPI: /* struct ifreq */ if (so->so_proto == NULL) { error = EOPNOTSUPP; goto done; } /* FALLTHRU */ case SIOCIFCREATE: /* struct ifreq */ case SIOCIFCREATE2: /* struct ifreq */ case SIOCIFDESTROY: /* struct ifreq */ case SIOCGIFFLAGS: /* struct ifreq */ case SIOCGIFEFLAGS: /* struct ifreq */ case SIOCGIFCAP: /* struct ifreq */ #if CONFIG_MACF_NET case SIOCGIFMAC: /* struct ifreq */ case SIOCSIFMAC: /* struct ifreq */ #endif /* CONFIG_MACF_NET */ case SIOCGIFMETRIC: /* struct ifreq */ case SIOCGIFMTU: /* struct ifreq */ case SIOCGIFPHYS: /* struct ifreq */ case SIOCSIFFLAGS: /* struct ifreq */ case SIOCSIFCAP: /* struct ifreq */ case SIOCSIFMETRIC: /* struct ifreq */ case SIOCSIFPHYS: /* struct ifreq */ case SIOCSIFMTU: /* struct ifreq */ case SIOCADDMULTI: /* struct ifreq */ case SIOCDELMULTI: /* struct ifreq */ case SIOCDIFPHYADDR: /* struct ifreq */ case SIOCSIFMEDIA: /* struct ifreq */ case SIOCSIFGENERIC: /* struct ifreq */ case SIOCSIFLLADDR: /* struct ifreq */ case SIOCSIFALTMTU: /* struct ifreq */ case SIOCSIFVLAN: /* struct ifreq */ case SIOCSIFBOND: /* struct ifreq */ case SIOCGIFLLADDR: /* struct ifreq */ case SIOCGIFTYPE: /* struct ifreq */ case SIOCGIFFUNCTIONALTYPE: /* struct ifreq */ case SIOCGIFPSRCADDR: /* struct ifreq */ case SIOCGIFPDSTADDR: /* struct ifreq */ case SIOCGIFGENERIC: /* struct ifreq */ case SIOCGIFDEVMTU: /* struct ifreq */ case SIOCGIFVLAN: /* struct ifreq */ case SIOCGIFBOND: /* struct ifreq */ case SIOCGIFWAKEFLAGS: /* struct ifreq */ case SIOCGIFGETRTREFCNT: /* struct ifreq */ case SIOCSIFOPPORTUNISTIC: /* struct ifreq */ case SIOCGIFOPPORTUNISTIC: /* struct ifreq */ case SIOCGIFLINKQUALITYMETRIC: /* struct ifreq */ case SIOCSIFLOG: /* struct ifreq */ case SIOCGIFLOG: /* struct ifreq */ case SIOCGIFDELEGATE: /* struct ifreq */ case SIOCGIFEXPENSIVE: /* struct ifreq */ case SIOCSIFEXPENSIVE: /* struct ifreq */ case SIOCSIF2KCL: /* struct ifreq */ case SIOCGIF2KCL: /* struct ifreq */ case SIOCSIFINTERFACESTATE: /* struct ifreq */ case SIOCGIFINTERFACESTATE: /* struct ifreq */ case SIOCSIFPROBECONNECTIVITY: /* struct ifreq */ case SIOCGIFPROBECONNECTIVITY: /* struct ifreq */ case SIOCGSTARTDELAY: /* struct ifreq */ case SIOCSIFTIMESTAMPENABLE: /* struct ifreq */ case SIOCSIFTIMESTAMPDISABLE: /* struct ifreq */ case SIOCGIFTIMESTAMPENABLED: /* struct ifreq */ #if (DEBUG || DEVELOPMENT) case SIOCSIFDISABLEOUTPUT: /* struct ifreq */ #endif /* (DEBUG || DEVELOPMENT) */ case SIOCGECNMODE: /* struct ifreq */ case SIOCSECNMODE: case SIOCSQOSMARKINGMODE: /* struct ifreq */ case SIOCSQOSMARKINGENABLED: /* struct ifreq */ case SIOCGQOSMARKINGMODE: /* struct ifreq */ case SIOCGQOSMARKINGENABLED: /* struct ifreq */ case SIOCSIFLOWINTERNET: /* struct ifreq */ case SIOCGIFLOWINTERNET: /* struct ifreq */ case SIOCGIFLOWPOWER: /* struct ifreq */ case SIOCSIFLOWPOWER: /* struct ifreq */ case SIOCSIF6LOWPAN: /* struct ifreq */ case SIOCGIF6LOWPAN: /* struct ifreq */ case SIOCGIFMPKLOG: /* struct ifreq */ case SIOCSIFMPKLOG: /* struct ifreq */ case SIOCGIFCONSTRAINED: /* struct ifreq */ case SIOCSIFCONSTRAINED: /* struct ifreq */ case SIOCGIFXFLAGS: /* struct ifreq */ case SIOCGIFNOACKPRIO: /* struct ifreq */ case SIOCSIFNOACKPRIO: /* struct ifreq */ { /* struct ifreq */ struct ifreq ifr; bcopy(data, &ifr, sizeof(ifr)); ifr.ifr_name[IFNAMSIZ - 1] = '\0'; bcopy(&ifr.ifr_name, ifname, IFNAMSIZ); if (ifioctl_restrict_intcoproc(cmd, ifname, NULL, p) == true) { error = EPERM; goto done; } error = ifioctl_ifreq(so, cmd, &ifr, p); bcopy(&ifr, data, sizeof(ifr)); goto done; } } /* * ioctls which require ifp. Note that we acquire dlil_ifnet_lock * here to ensure that the ifnet, if found, has been fully attached. */ dlil_if_lock(); switch (cmd) { case SIOCSIFPHYADDR: /* struct {if,in_}aliasreq */ bcopy(((struct in_aliasreq *)(void *)data)->ifra_name, ifname, IFNAMSIZ); ifp = ifunit_ref(ifname); break; #if INET6 case SIOCSIFPHYADDR_IN6_32: /* struct in6_aliasreq_32 */ bcopy(((struct in6_aliasreq_32 *)(void *)data)->ifra_name, ifname, IFNAMSIZ); ifp = ifunit_ref(ifname); break; case SIOCSIFPHYADDR_IN6_64: /* struct in6_aliasreq_64 */ bcopy(((struct in6_aliasreq_64 *)(void *)data)->ifra_name, ifname, IFNAMSIZ); ifp = ifunit_ref(ifname); break; #endif /* INET6 */ case SIOCGIFSTATUS: /* struct ifstat */ ifs = _MALLOC(sizeof(*ifs), M_DEVBUF, M_WAITOK); if (ifs == NULL) { error = ENOMEM; dlil_if_unlock(); goto done; } bcopy(data, ifs, sizeof(*ifs)); ifs->ifs_name[IFNAMSIZ - 1] = '\0'; bcopy(ifs->ifs_name, ifname, IFNAMSIZ); ifp = ifunit_ref(ifname); break; case SIOCGIFMEDIA32: /* struct ifmediareq32 */ case SIOCGIFXMEDIA32: /* struct ifmediareq32 */ bcopy(((struct ifmediareq32 *)(void *)data)->ifm_name, ifname, IFNAMSIZ); ifp = ifunit_ref(ifname); break; case SIOCGIFMEDIA64: /* struct ifmediareq64 */ case SIOCGIFXMEDIA64: /* struct ifmediareq64 */ bcopy(((struct ifmediareq64 *)(void *)data)->ifm_name, ifname, IFNAMSIZ); ifp = ifunit_ref(ifname); break; case SIOCSIFDESC: /* struct if_descreq */ case SIOCGIFDESC: /* struct if_descreq */ bcopy(((struct if_descreq *)(void *)data)->ifdr_name, ifname, IFNAMSIZ); ifp = ifunit_ref(ifname); break; case SIOCSIFLINKPARAMS: /* struct if_linkparamsreq */ case SIOCGIFLINKPARAMS: /* struct if_linkparamsreq */ bcopy(((struct if_linkparamsreq *)(void *)data)->iflpr_name, ifname, IFNAMSIZ); ifp = ifunit_ref(ifname); break; case SIOCGIFQUEUESTATS: /* struct if_qstatsreq */ bcopy(((struct if_qstatsreq *)(void *)data)->ifqr_name, ifname, IFNAMSIZ); ifp = ifunit_ref(ifname); break; case SIOCSIFTHROTTLE: /* struct if_throttlereq */ case SIOCGIFTHROTTLE: /* struct if_throttlereq */ bcopy(((struct if_throttlereq *)(void *)data)->ifthr_name, ifname, IFNAMSIZ); ifp = ifunit_ref(ifname); break; case SIOCAIFAGENTID: /* struct if_agentidreq */ case SIOCDIFAGENTID: /* struct if_agentidreq */ case SIOCGIFAGENTIDS32: /* struct if_agentidsreq32 */ case SIOCGIFAGENTIDS64: /* struct if_agentidsreq64 */ bcopy(((struct if_agentidreq *)(void *)data)->ifar_name, ifname, IFNAMSIZ); ifp = ifunit_ref(ifname); break; case SIOCSIFNETSIGNATURE: /* struct if_nsreq */ case SIOCGIFNETSIGNATURE: /* struct if_nsreq */ bcopy(((struct if_nsreq *)(void *)data)->ifnsr_name, ifname, IFNAMSIZ); ifp = ifunit_ref(ifname); break; case SIOCGIFPROTOLIST32: /* struct if_protolistreq32 */ case SIOCGIFPROTOLIST64: /* struct if_protolistreq64 */ bcopy(((struct if_protolistreq *)(void *)data)->ifpl_name, ifname, IFNAMSIZ); ifp = ifunit_ref(ifname); break; default: /* * This is a bad assumption, but the code seems to * have been doing this in the past; caveat emptor. */ bcopy(((struct ifreq *)(void *)data)->ifr_name, ifname, IFNAMSIZ); ifp = ifunit_ref(ifname); break; } dlil_if_unlock(); if (ifp == NULL) { error = ENXIO; goto done; } if (ifioctl_restrict_intcoproc(cmd, NULL, ifp, p) == true) { error = EPERM; goto done; } switch (cmd) { case SIOCSIFPHYADDR: /* struct {if,in_}aliasreq */ #if INET6 case SIOCSIFPHYADDR_IN6_32: /* struct in6_aliasreq_32 */ case SIOCSIFPHYADDR_IN6_64: /* struct in6_aliasreq_64 */ #endif /* INET6 */ error = proc_suser(p); if (error != 0) { break; } error = ifnet_ioctl(ifp, SOCK_DOM(so), cmd, data); if (error != 0) { break; } ifnet_touch_lastchange(ifp); break; case SIOCGIFSTATUS: /* struct ifstat */ VERIFY(ifs != NULL); ifs->ascii[0] = '\0'; error = ifnet_ioctl(ifp, SOCK_DOM(so), cmd, (caddr_t)ifs); bcopy(ifs, data, sizeof(*ifs)); break; case SIOCGIFMEDIA32: /* struct ifmediareq32 */ case SIOCGIFMEDIA64: /* struct ifmediareq64 */ case SIOCGIFXMEDIA32: /* struct ifmediareq32 */ case SIOCGIFXMEDIA64: /* struct ifmediareq64 */ error = ifioctl_get_media(ifp, so, cmd, data); break; case SIOCSIFDESC: /* struct if_descreq */ case SIOCGIFDESC: /* struct if_descreq */ error = ifioctl_ifdesc(ifp, cmd, data, p); break; case SIOCSIFLINKPARAMS: /* struct if_linkparamsreq */ case SIOCGIFLINKPARAMS: /* struct if_linkparamsreq */ error = ifioctl_linkparams(ifp, cmd, data, p); break; case SIOCGIFQUEUESTATS: /* struct if_qstatsreq */ error = ifioctl_qstats(ifp, cmd, data); break; case SIOCSIFTHROTTLE: /* struct if_throttlereq */ case SIOCGIFTHROTTLE: /* struct if_throttlereq */ error = ifioctl_throttle(ifp, cmd, data, p); break; case SIOCAIFAGENTID: /* struct if_agentidreq */ case SIOCDIFAGENTID: /* struct if_agentidreq */ case SIOCGIFAGENTIDS32: /* struct if_agentidsreq32 */ case SIOCGIFAGENTIDS64: /* struct if_agentidsreq64 */ error = ifioctl_netagent(ifp, cmd, data, p); break; case SIOCSIFNETSIGNATURE: /* struct if_nsreq */ case SIOCGIFNETSIGNATURE: /* struct if_nsreq */ error = ifioctl_netsignature(ifp, cmd, data); break; #if INET6 case SIOCSIFNAT64PREFIX: /* struct if_nat64req */ case SIOCGIFNAT64PREFIX: /* struct if_nat64req */ error = ifioctl_nat64prefix(ifp, cmd, data); break; case SIOCGIFCLAT46ADDR: /* struct if_clat46req */ error = ifioctl_clat46addr(ifp, cmd, data); break; #endif case SIOCGIFPROTOLIST32: /* struct if_protolistreq32 */ case SIOCGIFPROTOLIST64: /* struct if_protolistreq64 */ error = ifioctl_protolist(ifp, cmd, data); break; default: if (so->so_proto == NULL) { error = EOPNOTSUPP; break; } socket_lock(so, 1); error = ((*so->so_proto->pr_usrreqs->pru_control)(so, cmd, data, ifp, p)); socket_unlock(so, 1); // Don't allow to call SIOCAIFADDR and SIOCDIFADDR with // ifreq as the code expects ifaddr if ((error == EOPNOTSUPP || error == ENOTSUP) && !(cmd == SIOCAIFADDR || cmd == SIOCDIFADDR)) { error = ifnet_ioctl(ifp, SOCK_DOM(so), cmd, data); } break; } done: if (ifs != NULL) { _FREE(ifs, M_DEVBUF); } if (if_verbose) { if (ifname[0] == '\0') { (void) snprintf(ifname, sizeof(ifname), "%s", "NULL"); } else if (ifp != NULL) { (void) snprintf(ifname, sizeof(ifname), "%s", if_name(ifp)); } if (error != 0) { printf("%s[%s,%d]: ifp %s cmd 0x%08lx (%c%c [%lu] " "%c %lu) error %d\n", __func__, proc_name_address(p), proc_pid(p), ifname, cmd, (cmd & IOC_IN) ? 'I' : ' ', (cmd & IOC_OUT) ? 'O' : ' ', IOCPARM_LEN(cmd), (char)IOCGROUP(cmd), cmd & 0xff, error); } else if (if_verbose > 1) { printf("%s[%s,%d]: ifp %s cmd 0x%08lx (%c%c [%lu] " "%c %lu) OK\n", __func__, proc_name_address(p), proc_pid(p), ifname, cmd, (cmd & IOC_IN) ? 'I' : ' ', (cmd & IOC_OUT) ? 'O' : ' ', IOCPARM_LEN(cmd), (char)IOCGROUP(cmd), cmd & 0xff); } } if (ifp != NULL) { ifnet_decr_iorefcnt(ifp); } return error; } static __attribute__((noinline)) int ifioctl_ifreq(struct socket *so, u_long cmd, struct ifreq *ifr, struct proc *p) { struct ifnet *ifp; u_long ocmd = cmd; int error = 0; struct kev_msg ev_msg; struct net_event_data ev_data; bzero(&ev_data, sizeof(struct net_event_data)); bzero(&ev_msg, sizeof(struct kev_msg)); switch (cmd) { case SIOCIFCREATE: case SIOCIFCREATE2: error = proc_suser(p); if (error) { return error; } return if_clone_create(ifr->ifr_name, sizeof(ifr->ifr_name), cmd == SIOCIFCREATE2 ? ifr->ifr_data : NULL); case SIOCIFDESTROY: error = proc_suser(p); if (error) { return error; } return if_clone_destroy(ifr->ifr_name); } /* * ioctls which require ifp. Note that we acquire dlil_ifnet_lock * here to ensure that the ifnet, if found, has been fully attached. */ dlil_if_lock(); ifp = ifunit(ifr->ifr_name); dlil_if_unlock(); if (ifp == NULL) { return ENXIO; } switch (cmd) { case SIOCGIFFLAGS: ifnet_lock_shared(ifp); ifr->ifr_flags = ifp->if_flags; ifnet_lock_done(ifp); break; case SIOCGIFEFLAGS: ifnet_lock_shared(ifp); ifr->ifr_eflags = ifp->if_eflags; ifnet_lock_done(ifp); break; case SIOCGIFXFLAGS: ifnet_lock_shared(ifp); ifr->ifr_xflags = ifp->if_xflags; ifnet_lock_done(ifp); break; case SIOCGIFCAP: ifnet_lock_shared(ifp); ifr->ifr_reqcap = ifp->if_capabilities; ifr->ifr_curcap = ifp->if_capenable; ifnet_lock_done(ifp); break; #if CONFIG_MACF_NET case SIOCGIFMAC: error = mac_ifnet_label_get(kauth_cred_get(), ifr, ifp); break; case SIOCSIFMAC: error = mac_ifnet_label_set(kauth_cred_get(), ifr, ifp); break; #endif /* CONFIG_MACF_NET */ case SIOCGIFMETRIC: ifnet_lock_shared(ifp); ifr->ifr_metric = ifp->if_metric; ifnet_lock_done(ifp); break; case SIOCGIFMTU: ifnet_lock_shared(ifp); ifr->ifr_mtu = ifp->if_mtu; ifnet_lock_done(ifp); break; case SIOCGIFPHYS: ifnet_lock_shared(ifp); ifr->ifr_phys = ifp->if_physical; ifnet_lock_done(ifp); break; case SIOCSIFFLAGS: error = proc_suser(p); if (error != 0) { break; } (void) ifnet_set_flags(ifp, ifr->ifr_flags, (u_int16_t)~IFF_CANTCHANGE); /* * Note that we intentionally ignore any error from below * for the SIOCSIFFLAGS case. */ (void) ifnet_ioctl(ifp, SOCK_DOM(so), cmd, (caddr_t)ifr); /* * Send the event even upon error from the driver because * we changed the flags. */ dlil_post_sifflags_msg(ifp); ifnet_touch_lastchange(ifp); break; case SIOCSIFCAP: error = proc_suser(p); if (error != 0) { break; } if ((ifr->ifr_reqcap & ~ifp->if_capabilities)) { error = EINVAL; break; } error = ifnet_ioctl(ifp, SOCK_DOM(so), cmd, (caddr_t)ifr); ifnet_touch_lastchange(ifp); break; case SIOCSIFMETRIC: error = proc_suser(p); if (error != 0) { break; } ifp->if_metric = ifr->ifr_metric; ev_msg.vendor_code = KEV_VENDOR_APPLE; ev_msg.kev_class = KEV_NETWORK_CLASS; ev_msg.kev_subclass = KEV_DL_SUBCLASS; ev_msg.event_code = KEV_DL_SIFMETRICS; strlcpy(&ev_data.if_name[0], ifp->if_name, IFNAMSIZ); ev_data.if_family = ifp->if_family; ev_data.if_unit = (u_int32_t) ifp->if_unit; ev_msg.dv[0].data_length = sizeof(struct net_event_data); ev_msg.dv[0].data_ptr = &ev_data; ev_msg.dv[1].data_length = 0; dlil_post_complete_msg(ifp, &ev_msg); ifnet_touch_lastchange(ifp); break; case SIOCSIFPHYS: error = proc_suser(p); if (error != 0) { break; } error = ifnet_ioctl(ifp, SOCK_DOM(so), cmd, (caddr_t)ifr); if (error != 0) { break; } ev_msg.vendor_code = KEV_VENDOR_APPLE; ev_msg.kev_class = KEV_NETWORK_CLASS; ev_msg.kev_subclass = KEV_DL_SUBCLASS; ev_msg.event_code = KEV_DL_SIFPHYS; strlcpy(&ev_data.if_name[0], ifp->if_name, IFNAMSIZ); ev_data.if_family = ifp->if_family; ev_data.if_unit = (u_int32_t) ifp->if_unit; ev_msg.dv[0].data_length = sizeof(struct net_event_data); ev_msg.dv[0].data_ptr = &ev_data; ev_msg.dv[1].data_length = 0; dlil_post_complete_msg(ifp, &ev_msg); ifnet_touch_lastchange(ifp); break; case SIOCSIFMTU: { u_int32_t oldmtu = ifp->if_mtu; struct ifclassq *ifq = &ifp->if_snd; error = proc_suser(p); if (error != 0) { break; } if (ifp->if_ioctl == NULL) { error = EOPNOTSUPP; break; } if (ifr->ifr_mtu < IF_MINMTU || ifr->ifr_mtu > IF_MAXMTU) { error = EINVAL; break; } error = ifnet_ioctl(ifp, SOCK_DOM(so), cmd, (caddr_t)ifr); if (error != 0) { break; } ev_msg.vendor_code = KEV_VENDOR_APPLE; ev_msg.kev_class = KEV_NETWORK_CLASS; ev_msg.kev_subclass = KEV_DL_SUBCLASS; ev_msg.event_code = KEV_DL_SIFMTU; strlcpy(&ev_data.if_name[0], ifp->if_name, IFNAMSIZ); ev_data.if_family = ifp->if_family; ev_data.if_unit = (u_int32_t) ifp->if_unit; ev_msg.dv[0].data_length = sizeof(struct net_event_data); ev_msg.dv[0].data_ptr = &ev_data; ev_msg.dv[1].data_length = 0; dlil_post_complete_msg(ifp, &ev_msg); ifnet_touch_lastchange(ifp); rt_ifmsg(ifp); /* * If the link MTU changed, do network layer specific procedure * and update all route entries associated with the interface, * so that their MTU metric gets updated. */ if (ifp->if_mtu != oldmtu) { if_rtmtu_update(ifp); #if INET6 nd6_setmtu(ifp); #endif /* INET6 */ /* Inform all transmit queues about the new MTU */ IFCQ_LOCK(ifq); ifnet_update_sndq(ifq, CLASSQ_EV_LINK_MTU); IFCQ_UNLOCK(ifq); } break; } case SIOCADDMULTI: case SIOCDELMULTI: error = proc_suser(p); if (error != 0) { break; } /* Don't allow group membership on non-multicast interfaces. */ if ((ifp->if_flags & IFF_MULTICAST) == 0) { error = EOPNOTSUPP; break; } /* Don't let users screw up protocols' entries. */ if (ifr->ifr_addr.sa_family != AF_UNSPEC && ifr->ifr_addr.sa_family != AF_LINK) { error = EINVAL; break; } /* * User is permitted to anonymously join a particular link * multicast group via SIOCADDMULTI. Subsequent join requested * for the same record which has an outstanding refcnt from a * past if_addmulti_anon() will not result in EADDRINUSE error * (unlike other BSDs.) Anonymously leaving a group is also * allowed only as long as there is an outstanding refcnt held * by a previous anonymous request, or else ENOENT (even if the * link-layer multicast membership exists for a network-layer * membership.) */ if (cmd == SIOCADDMULTI) { error = if_addmulti_anon(ifp, &ifr->ifr_addr, NULL); ev_msg.event_code = KEV_DL_ADDMULTI; } else { error = if_delmulti_anon(ifp, &ifr->ifr_addr); ev_msg.event_code = KEV_DL_DELMULTI; } if (error != 0) { break; } ev_msg.vendor_code = KEV_VENDOR_APPLE; ev_msg.kev_class = KEV_NETWORK_CLASS; ev_msg.kev_subclass = KEV_DL_SUBCLASS; strlcpy(&ev_data.if_name[0], ifp->if_name, IFNAMSIZ); ev_data.if_family = ifp->if_family; ev_data.if_unit = (u_int32_t) ifp->if_unit; ev_msg.dv[0].data_length = sizeof(struct net_event_data); ev_msg.dv[0].data_ptr = &ev_data; ev_msg.dv[1].data_length = 0; dlil_post_complete_msg(ifp, &ev_msg); ifnet_touch_lastchange(ifp); break; case SIOCSIFMEDIA: error = proc_suser(p); if (error != 0) { break; } /* * Silently ignore setting IFM_OTHER */ if (ifr->ifr_media == IFM_OTHER) { os_log_info(OS_LOG_DEFAULT, "%s: %s SIOCSIFMEDIA ignore IFM_OTHER", __func__, ifp->if_xname); error = 0; break; } error = ifnet_ioctl(ifp, SOCK_DOM(so), cmd, (caddr_t)ifr); if (error != 0) { break; } ifnet_touch_lastchange(ifp); break; case SIOCDIFPHYADDR: case SIOCSIFGENERIC: case SIOCSIFLLADDR: case SIOCSIFALTMTU: case SIOCSIFVLAN: case SIOCSIFBOND: case SIOCSIF6LOWPAN: error = proc_suser(p); if (error != 0) { break; } error = ifnet_ioctl(ifp, SOCK_DOM(so), cmd, (caddr_t)ifr); if (error != 0) { break; } ifnet_touch_lastchange(ifp); break; case SIOCGIFLLADDR: { struct sockaddr_dl *sdl = SDL(ifp->if_lladdr->ifa_addr); if (sdl->sdl_alen == 0) { error = EADDRNOTAVAIL; break; } /* If larger than 14-bytes we'll need another mechanism */ if (sdl->sdl_alen > sizeof(ifr->ifr_addr.sa_data)) { error = EMSGSIZE; break; } /* Follow the same convention used by SIOCSIFLLADDR */ bzero(&ifr->ifr_addr, sizeof(ifr->ifr_addr)); ifr->ifr_addr.sa_family = AF_LINK; ifr->ifr_addr.sa_len = sdl->sdl_alen; error = ifnet_guarded_lladdr_copy_bytes(ifp, &ifr->ifr_addr.sa_data, sdl->sdl_alen); break; } case SIOCGIFTYPE: ifr->ifr_type.ift_type = ifp->if_type; ifr->ifr_type.ift_family = ifp->if_family; ifr->ifr_type.ift_subfamily = ifp->if_subfamily; break; case SIOCGIFFUNCTIONALTYPE: ifr->ifr_functional_type = if_functional_type(ifp, FALSE); break; case SIOCGIFPSRCADDR: case SIOCGIFPDSTADDR: case SIOCGIFGENERIC: case SIOCGIFDEVMTU: case SIOCGIFVLAN: case SIOCGIFBOND: case SIOCGIF6LOWPAN: error = ifnet_ioctl(ifp, SOCK_DOM(so), cmd, (caddr_t)ifr); break; case SIOCGIFWAKEFLAGS: ifnet_lock_shared(ifp); ifr->ifr_wake_flags = ifnet_get_wake_flags(ifp); ifnet_lock_done(ifp); break; case SIOCGIFGETRTREFCNT: ifnet_lock_shared(ifp); ifr->ifr_route_refcnt = ifp->if_route_refcnt; ifnet_lock_done(ifp); break; case SIOCSIFOPPORTUNISTIC: case SIOCGIFOPPORTUNISTIC: error = ifnet_getset_opportunistic(ifp, cmd, ifr, p); break; case SIOCGIFLINKQUALITYMETRIC: ifnet_lock_shared(ifp); if ((ifp->if_interface_state.valid_bitmask & IF_INTERFACE_STATE_LQM_STATE_VALID)) { ifr->ifr_link_quality_metric = ifp->if_interface_state.lqm_state; } else if (IF_FULLY_ATTACHED(ifp)) { ifr->ifr_link_quality_metric = IFNET_LQM_THRESH_UNKNOWN; } else { ifr->ifr_link_quality_metric = IFNET_LQM_THRESH_OFF; } ifnet_lock_done(ifp); break; case SIOCSIFLOG: case SIOCGIFLOG: error = ifnet_getset_log(ifp, cmd, ifr, p); break; case SIOCGIFDELEGATE: ifnet_lock_shared(ifp); ifr->ifr_delegated = ((ifp->if_delegated.ifp != NULL) ? ifp->if_delegated.ifp->if_index : 0); ifnet_lock_done(ifp); break; case SIOCGIFEXPENSIVE: ifnet_lock_shared(ifp); if (ifp->if_eflags & IFEF_EXPENSIVE) { ifr->ifr_expensive = 1; } else { ifr->ifr_expensive = 0; } ifnet_lock_done(ifp); break; case SIOCSIFEXPENSIVE: { struct ifnet *difp; if ((error = priv_check_cred(kauth_cred_get(), PRIV_NET_INTERFACE_CONTROL, 0)) != 0) { return error; } ifnet_lock_exclusive(ifp); if (ifr->ifr_expensive) { ifp->if_eflags |= IFEF_EXPENSIVE; } else { ifp->if_eflags &= ~IFEF_EXPENSIVE; } ifnet_increment_generation(ifp); ifnet_lock_done(ifp); /* * Update the expensive bit in the delegated interface * structure. */ ifnet_head_lock_shared(); TAILQ_FOREACH(difp, &ifnet_head, if_link) { ifnet_lock_exclusive(difp); if (difp->if_delegated.ifp == ifp) { difp->if_delegated.expensive = ifp->if_eflags & IFEF_EXPENSIVE ? 1 : 0; ifnet_increment_generation(difp); } ifnet_lock_done(difp); } ifnet_head_done(); necp_update_all_clients(); break; } case SIOCGIFCONSTRAINED: ifnet_lock_shared(ifp); if (ifp->if_xflags & IFXF_CONSTRAINED) { ifr->ifr_constrained = 1; } else { ifr->ifr_constrained = 0; } ifnet_lock_done(ifp); break; case SIOCSIFCONSTRAINED: { struct ifnet *difp; if ((error = priv_check_cred(kauth_cred_get(), PRIV_NET_INTERFACE_CONTROL, 0)) != 0) { return error; } ifnet_lock_exclusive(ifp); if (ifr->ifr_constrained) { ifp->if_xflags |= IFXF_CONSTRAINED; } else { ifp->if_xflags &= ~IFXF_CONSTRAINED; } ifnet_increment_generation(ifp); ifnet_lock_done(ifp); /* * Update the constrained bit in the delegated interface * structure. */ ifnet_head_lock_shared(); TAILQ_FOREACH(difp, &ifnet_head, if_link) { ifnet_lock_exclusive(difp); if (difp->if_delegated.ifp == ifp) { difp->if_delegated.constrained = ifp->if_xflags & IFXF_CONSTRAINED ? 1 : 0; ifnet_increment_generation(difp); } ifnet_lock_done(difp); } ifnet_head_done(); necp_update_all_clients(); break; } case SIOCGIF2KCL: ifnet_lock_shared(ifp); if (ifp->if_eflags & IFEF_2KCL) { ifr->ifr_2kcl = 1; } else { ifr->ifr_2kcl = 0; } ifnet_lock_done(ifp); break; case SIOCSIF2KCL: if ((error = priv_check_cred(kauth_cred_get(), PRIV_NET_INTERFACE_CONTROL, 0)) != 0) { return error; } ifnet_lock_exclusive(ifp); if (ifr->ifr_2kcl) { ifp->if_eflags |= IFEF_2KCL; } else { ifp->if_eflags &= ~IFEF_2KCL; } ifnet_lock_done(ifp); break; case SIOCGSTARTDELAY: ifnet_lock_shared(ifp); if (ifp->if_eflags & IFEF_ENQUEUE_MULTI) { ifr->ifr_start_delay_qlen = ifp->if_start_delay_qlen; ifr->ifr_start_delay_timeout = ifp->if_start_delay_timeout; } else { ifr->ifr_start_delay_qlen = 0; ifr->ifr_start_delay_timeout = 0; } ifnet_lock_done(ifp); break; case SIOCSIFDSTADDR: case SIOCSIFADDR: case SIOCSIFBRDADDR: case SIOCSIFNETMASK: case OSIOCGIFADDR: case OSIOCGIFDSTADDR: case OSIOCGIFBRDADDR: case OSIOCGIFNETMASK: case SIOCSIFKPI: VERIFY(so->so_proto != NULL); if (cmd == SIOCSIFDSTADDR || cmd == SIOCSIFADDR || cmd == SIOCSIFBRDADDR || cmd == SIOCSIFNETMASK) { #if BYTE_ORDER != BIG_ENDIAN if (ifr->ifr_addr.sa_family == 0 && ifr->ifr_addr.sa_len < 16) { ifr->ifr_addr.sa_family = ifr->ifr_addr.sa_len; ifr->ifr_addr.sa_len = 16; } #else if (ifr->ifr_addr.sa_len == 0) { ifr->ifr_addr.sa_len = 16; } #endif } else if (cmd == OSIOCGIFADDR) { cmd = SIOCGIFADDR; /* struct ifreq */ } else if (cmd == OSIOCGIFDSTADDR) { cmd = SIOCGIFDSTADDR; /* struct ifreq */ } else if (cmd == OSIOCGIFBRDADDR) { cmd = SIOCGIFBRDADDR; /* struct ifreq */ } else if (cmd == OSIOCGIFNETMASK) { cmd = SIOCGIFNETMASK; /* struct ifreq */ } socket_lock(so, 1); error = ((*so->so_proto->pr_usrreqs->pru_control)(so, cmd, (caddr_t)ifr, ifp, p)); socket_unlock(so, 1); switch (ocmd) { case OSIOCGIFADDR: case OSIOCGIFDSTADDR: case OSIOCGIFBRDADDR: case OSIOCGIFNETMASK: bcopy(&ifr->ifr_addr.sa_family, &ifr->ifr_addr, sizeof(u_short)); } if (cmd == SIOCSIFKPI) { int temperr = proc_suser(p); if (temperr != 0) { error = temperr; } } // Don't allow to call SIOCSIFADDR and SIOCSIFDSTADDR // with ifreq as the code expects ifaddr if ((error == EOPNOTSUPP || error == ENOTSUP) && !(cmd == SIOCSIFADDR || cmd == SIOCSIFDSTADDR)) { error = ifnet_ioctl(ifp, SOCK_DOM(so), cmd, (caddr_t)ifr); } break; case SIOCGIFINTERFACESTATE: if_get_state(ifp, &ifr->ifr_interface_state); break; case SIOCSIFINTERFACESTATE: if ((error = priv_check_cred(kauth_cred_get(), PRIV_NET_INTERFACE_CONTROL, 0)) != 0) { return error; } error = if_state_update(ifp, &ifr->ifr_interface_state); break; case SIOCSIFPROBECONNECTIVITY: if ((error = priv_check_cred(kauth_cred_get(), PRIV_NET_INTERFACE_CONTROL, 0)) != 0) { return error; } error = if_probe_connectivity(ifp, ifr->ifr_probe_connectivity); break; case SIOCGIFPROBECONNECTIVITY: if ((error = priv_check_cred(kauth_cred_get(), PRIV_NET_INTERFACE_CONTROL, 0)) != 0) { return error; } if (ifp->if_eflags & IFEF_PROBE_CONNECTIVITY) { ifr->ifr_probe_connectivity = 1; } else { ifr->ifr_probe_connectivity = 0; } break; case SIOCGECNMODE: if ((ifp->if_eflags & (IFEF_ECN_ENABLE | IFEF_ECN_DISABLE)) == IFEF_ECN_ENABLE) { ifr->ifr_ecn_mode = IFRTYPE_ECN_ENABLE; } else if ((ifp->if_eflags & (IFEF_ECN_ENABLE | IFEF_ECN_DISABLE)) == IFEF_ECN_DISABLE) { ifr->ifr_ecn_mode = IFRTYPE_ECN_DISABLE; } else { ifr->ifr_ecn_mode = IFRTYPE_ECN_DEFAULT; } break; case SIOCSECNMODE: if ((error = priv_check_cred(kauth_cred_get(), PRIV_NET_INTERFACE_CONTROL, 0)) != 0) { return error; } if (ifr->ifr_ecn_mode == IFRTYPE_ECN_DEFAULT) { ifp->if_eflags &= ~(IFEF_ECN_ENABLE | IFEF_ECN_DISABLE); } else if (ifr->ifr_ecn_mode == IFRTYPE_ECN_ENABLE) { ifp->if_eflags |= IFEF_ECN_ENABLE; ifp->if_eflags &= ~IFEF_ECN_DISABLE; } else if (ifr->ifr_ecn_mode == IFRTYPE_ECN_DISABLE) { ifp->if_eflags |= IFEF_ECN_DISABLE; ifp->if_eflags &= ~IFEF_ECN_ENABLE; } else { error = EINVAL; } break; case SIOCSIFTIMESTAMPENABLE: case SIOCSIFTIMESTAMPDISABLE: error = proc_suser(p); if (error != 0) { break; } ifnet_lock_exclusive(ifp); if ((cmd == SIOCSIFTIMESTAMPENABLE && (ifp->if_xflags & IFXF_TIMESTAMP_ENABLED) != 0) || (cmd == SIOCSIFTIMESTAMPDISABLE && (ifp->if_xflags & IFXF_TIMESTAMP_ENABLED) == 0)) { ifnet_lock_done(ifp); break; } if (cmd == SIOCSIFTIMESTAMPENABLE) { ifp->if_xflags |= IFXF_TIMESTAMP_ENABLED; } else { ifp->if_xflags &= ~IFXF_TIMESTAMP_ENABLED; } ifnet_lock_done(ifp); /* * Pass the setting to the interface if it supports either * software or hardware time stamping */ if (ifp->if_capabilities & (IFCAP_HW_TIMESTAMP | IFCAP_SW_TIMESTAMP)) { error = ifnet_ioctl(ifp, SOCK_DOM(so), cmd, (caddr_t)ifr); } break; case SIOCGIFTIMESTAMPENABLED: { if ((ifp->if_xflags & IFXF_TIMESTAMP_ENABLED) != 0) { ifr->ifr_intval = 1; } else { ifr->ifr_intval = 0; } break; } case SIOCSQOSMARKINGMODE: if ((error = priv_check_cred(kauth_cred_get(), PRIV_NET_INTERFACE_CONTROL, 0)) != 0) { return error; } error = if_set_qosmarking_mode(ifp, ifr->ifr_qosmarking_mode); break; case SIOCGQOSMARKINGMODE: ifr->ifr_qosmarking_mode = ifp->if_qosmarking_mode; break; case SIOCSQOSMARKINGENABLED: if ((error = priv_check_cred(kauth_cred_get(), PRIV_NET_INTERFACE_CONTROL, 0)) != 0) { return error; } if (ifr->ifr_qosmarking_enabled != 0) { ifp->if_eflags |= IFEF_QOSMARKING_ENABLED; } else { ifp->if_eflags &= ~IFEF_QOSMARKING_ENABLED; } break; case SIOCGQOSMARKINGENABLED: ifr->ifr_qosmarking_enabled = (ifp->if_eflags & IFEF_QOSMARKING_ENABLED) ? 1 : 0; break; case SIOCSIFDISABLEOUTPUT: #if (DEBUG || DEVELOPMENT) if (ifr->ifr_disable_output == 1) { error = ifnet_disable_output(ifp); } else if (ifr->ifr_disable_output == 0) { error = ifnet_enable_output(ifp); } else { error = EINVAL; } #else error = EINVAL; #endif /* (DEBUG || DEVELOPMENT) */ break; case SIOCSIFSUBFAMILY: if ((error = priv_check_cred(kauth_cred_get(), PRIV_NET_INTERFACE_CONTROL, 0)) != 0) { return error; } error = ifnet_ioctl(ifp, SOCK_DOM(so), cmd, (caddr_t)ifr); break; case SIOCSIFLOWINTERNET: if ((error = priv_check_cred(kauth_cred_get(), PRIV_NET_INTERFACE_CONTROL, 0)) != 0) { return error; } ifnet_lock_exclusive(ifp); if (ifr->ifr_low_internet & IFRTYPE_LOW_INTERNET_ENABLE_UL) { ifp->if_xflags |= IFXF_LOW_INTERNET_UL; } else { ifp->if_xflags &= ~(IFXF_LOW_INTERNET_UL); } if (ifr->ifr_low_internet & IFRTYPE_LOW_INTERNET_ENABLE_DL) { ifp->if_xflags |= IFXF_LOW_INTERNET_DL; } else { ifp->if_xflags &= ~(IFXF_LOW_INTERNET_DL); } ifnet_lock_done(ifp); break; case SIOCGIFLOWINTERNET: ifnet_lock_shared(ifp); ifr->ifr_low_internet = 0; if (ifp->if_xflags & IFXF_LOW_INTERNET_UL) { ifr->ifr_low_internet |= IFRTYPE_LOW_INTERNET_ENABLE_UL; } if (ifp->if_xflags & IFXF_LOW_INTERNET_DL) { ifr->ifr_low_internet |= IFRTYPE_LOW_INTERNET_ENABLE_DL; } ifnet_lock_done(ifp); break; case SIOCGIFLOWPOWER: ifr->ifr_low_power_mode = !!(ifp->if_xflags & IFXF_LOW_POWER); break; case SIOCSIFLOWPOWER: #if (DEVELOPMENT || DEBUG) error = if_set_low_power(ifp, !!(ifr->ifr_low_power_mode)); #else /* DEVELOPMENT || DEBUG */ error = EOPNOTSUPP; #endif /* DEVELOPMENT || DEBUG */ break; case SIOCGIFMPKLOG: ifr->ifr_mpk_log = !!(ifp->if_xflags & IFXF_MPK_LOG); break; case SIOCSIFMPKLOG: if (ifr->ifr_mpk_log) { ifp->if_xflags |= IFXF_MPK_LOG; } else { ifp->if_xflags &= ~IFXF_MPK_LOG; } break; case SIOCGIFNOACKPRIO: ifnet_lock_shared(ifp); if (ifp->if_eflags & IFEF_NOACKPRI) { ifr->ifr_noack_prio = 1; } else { ifr->ifr_noack_prio = 0; } ifnet_lock_done(ifp); break; case SIOCSIFNOACKPRIO: if ((error = priv_check_cred(kauth_cred_get(), PRIV_NET_INTERFACE_CONTROL, 0)) != 0) { return error; } ifnet_lock_exclusive(ifp); if (ifr->ifr_noack_prio) { ifp->if_eflags |= IFEF_NOACKPRI; } else { ifp->if_eflags &= ~IFEF_NOACKPRI; } ifnet_lock_done(ifp); break; default: VERIFY(0); /* NOTREACHED */ } return error; } int ifioctllocked(struct socket *so, u_long cmd, caddr_t data, struct proc *p) { int error; socket_unlock(so, 0); error = ifioctl(so, cmd, data, p); socket_lock(so, 0); return error; } /* * Set/clear promiscuous mode on interface ifp based on the truth value * of pswitch. The calls are reference counted so that only the first * "on" request actually has an effect, as does the final "off" request. * Results are undefined if the "off" and "on" requests are not matched. */ errno_t ifnet_set_promiscuous( ifnet_t ifp, int pswitch) { int error = 0; int oldflags = 0; int newflags = 0; ifnet_lock_exclusive(ifp); oldflags = ifp->if_flags; ifp->if_pcount += pswitch ? 1 : -1; if (ifp->if_pcount > 0) { ifp->if_flags |= IFF_PROMISC; } else { ifp->if_flags &= ~IFF_PROMISC; } newflags = ifp->if_flags; ifnet_lock_done(ifp); if (newflags != oldflags && (newflags & IFF_UP) != 0) { error = ifnet_ioctl(ifp, 0, SIOCSIFFLAGS, NULL); if (error == 0) { rt_ifmsg(ifp); } else { ifnet_lock_exclusive(ifp); // revert the flags ifp->if_pcount -= pswitch ? 1 : -1; if (ifp->if_pcount > 0) { ifp->if_flags |= IFF_PROMISC; } else { ifp->if_flags &= ~IFF_PROMISC; } ifnet_lock_done(ifp); } } if (newflags != oldflags) { log(LOG_INFO, "%s: promiscuous mode %s%s\n", if_name(ifp), (newflags & IFF_PROMISC) != 0 ? "enable" : "disable", error != 0 ? " failed" : " succeeded"); } return error; } /* * Return interface configuration * of system. List may be used * in later ioctl's (above) to get * other information. */ /*ARGSUSED*/ static int ifconf(u_long cmd, user_addr_t ifrp, int *ret_space) { struct ifnet *ifp = NULL; struct ifaddr *ifa; struct ifreq ifr; int error = 0; size_t space; net_thread_marks_t marks; marks = net_thread_marks_push(NET_THREAD_CKREQ_LLADDR); /* * Zero the ifr buffer to make sure we don't * disclose the contents of the stack. */ bzero(&ifr, sizeof(struct ifreq)); space = *ret_space; ifnet_head_lock_shared(); for (ifp = ifnet_head.tqh_first; space > sizeof(ifr) && ifp; ifp = ifp->if_link.tqe_next) { char workbuf[64]; size_t ifnlen, addrs; ifnlen = snprintf(workbuf, sizeof(workbuf), "%s", if_name(ifp)); if (ifnlen + 1 > sizeof(ifr.ifr_name)) { error = ENAMETOOLONG; break; } else { strlcpy(ifr.ifr_name, workbuf, IFNAMSIZ); } ifnet_lock_shared(ifp); addrs = 0; ifa = ifp->if_addrhead.tqh_first; for (; space > sizeof(ifr) && ifa; ifa = ifa->ifa_link.tqe_next) { struct sockaddr *sa; union { struct sockaddr sa; struct sockaddr_dl sdl; uint8_t buf[SOCK_MAXADDRLEN + 1]; } u; /* * Make sure to accomodate the largest possible * size of SA(if_lladdr)->sa_len. */ _CASSERT(sizeof(u) == (SOCK_MAXADDRLEN + 1)); IFA_LOCK(ifa); sa = ifa->ifa_addr; addrs++; if (ifa == ifp->if_lladdr) { VERIFY(sa->sa_family == AF_LINK); bcopy(sa, &u, sa->sa_len); IFA_UNLOCK(ifa); ifnet_guarded_lladdr_copy_bytes(ifp, LLADDR(&u.sdl), u.sdl.sdl_alen); IFA_LOCK(ifa); sa = &u.sa; } if (cmd == OSIOCGIFCONF32 || cmd == OSIOCGIFCONF64) { struct osockaddr *osa = (struct osockaddr *)(void *)&ifr.ifr_addr; ifr.ifr_addr = *sa; osa->sa_family = sa->sa_family; error = copyout((caddr_t)&ifr, ifrp, sizeof(ifr)); ifrp += sizeof(struct ifreq); } else if (sa->sa_len <= sizeof(*sa)) { ifr.ifr_addr = *sa; error = copyout((caddr_t)&ifr, ifrp, sizeof(ifr)); ifrp += sizeof(struct ifreq); } else { if (space < sizeof(ifr) + sa->sa_len - sizeof(*sa)) { IFA_UNLOCK(ifa); break; } space -= sa->sa_len - sizeof(*sa); error = copyout((caddr_t)&ifr, ifrp, sizeof(ifr.ifr_name)); if (error == 0) { error = copyout((caddr_t)sa, (ifrp + offsetof(struct ifreq, ifr_addr)), sa->sa_len); } ifrp += (sa->sa_len + offsetof(struct ifreq, ifr_addr)); } IFA_UNLOCK(ifa); if (error) { break; } space -= sizeof(ifr); } ifnet_lock_done(ifp); if (error) { break; } if (!addrs) { bzero((caddr_t)&ifr.ifr_addr, sizeof(ifr.ifr_addr)); error = copyout((caddr_t)&ifr, ifrp, sizeof(ifr)); if (error) { break; } space -= sizeof(ifr); ifrp += sizeof(struct ifreq); } } ifnet_head_done(); *ret_space -= space; net_thread_marks_pop(marks); return error; } /* * Just like if_promisc(), but for all-multicast-reception mode. */ int if_allmulti(struct ifnet *ifp, int onswitch) { int error = 0; int modified = 0; ifnet_lock_exclusive(ifp); if (onswitch) { if (ifp->if_amcount++ == 0) { ifp->if_flags |= IFF_ALLMULTI; modified = 1; } } else { if (ifp->if_amcount > 1) { ifp->if_amcount--; } else { ifp->if_amcount = 0; ifp->if_flags &= ~IFF_ALLMULTI; modified = 1; } } ifnet_lock_done(ifp); if (modified) { error = ifnet_ioctl(ifp, 0, SIOCSIFFLAGS, NULL); } if (error == 0) { rt_ifmsg(ifp); } return error; } static struct ifmultiaddr * ifma_alloc(int how) { struct ifmultiaddr *ifma; ifma = (how == M_WAITOK) ? zalloc(ifma_zone) : zalloc_noblock(ifma_zone); if (ifma != NULL) { bzero(ifma, ifma_size); lck_mtx_init(&ifma->ifma_lock, ifa_mtx_grp, ifa_mtx_attr); ifma->ifma_debug |= IFD_ALLOC; if (ifma_debug != 0) { ifma->ifma_debug |= IFD_DEBUG; ifma->ifma_trace = ifma_trace; } } return ifma; } static void ifma_free(struct ifmultiaddr *ifma) { IFMA_LOCK(ifma); if (ifma->ifma_protospec != NULL) { panic("%s: Protospec not NULL for ifma=%p", __func__, ifma); /* NOTREACHED */ } else if ((ifma->ifma_flags & IFMAF_ANONYMOUS) || ifma->ifma_anoncnt != 0) { panic("%s: Freeing ifma=%p with outstanding anon req", __func__, ifma); /* NOTREACHED */ } else if (ifma->ifma_debug & IFD_ATTACHED) { panic("%s: ifma=%p attached to ifma_ifp=%p is being freed", __func__, ifma, ifma->ifma_ifp); /* NOTREACHED */ } else if (!(ifma->ifma_debug & IFD_ALLOC)) { panic("%s: ifma %p cannot be freed", __func__, ifma); /* NOTREACHED */ } else if (ifma->ifma_refcount != 0) { panic("%s: non-zero refcount ifma=%p", __func__, ifma); /* NOTREACHED */ } else if (ifma->ifma_reqcnt != 0) { panic("%s: non-zero reqcnt ifma=%p", __func__, ifma); /* NOTREACHED */ } else if (ifma->ifma_ifp != NULL) { panic("%s: non-NULL ifma_ifp=%p for ifma=%p", __func__, ifma->ifma_ifp, ifma); /* NOTREACHED */ } else if (ifma->ifma_ll != NULL) { panic("%s: non-NULL ifma_ll=%p for ifma=%p", __func__, ifma->ifma_ll, ifma); /* NOTREACHED */ } ifma->ifma_debug &= ~IFD_ALLOC; if ((ifma->ifma_debug & (IFD_DEBUG | IFD_TRASHED)) == (IFD_DEBUG | IFD_TRASHED)) { lck_mtx_lock(&ifma_trash_lock); TAILQ_REMOVE(&ifma_trash_head, (struct ifmultiaddr_dbg *)ifma, ifma_trash_link); lck_mtx_unlock(&ifma_trash_lock); ifma->ifma_debug &= ~IFD_TRASHED; } IFMA_UNLOCK(ifma); if (ifma->ifma_addr != NULL) { FREE(ifma->ifma_addr, M_IFADDR); ifma->ifma_addr = NULL; } lck_mtx_destroy(&ifma->ifma_lock, ifa_mtx_grp); zfree(ifma_zone, ifma); } static void ifma_trace(struct ifmultiaddr *ifma, int refhold) { struct ifmultiaddr_dbg *ifma_dbg = (struct ifmultiaddr_dbg *)ifma; ctrace_t *tr; u_int32_t idx; u_int16_t *cnt; if (!(ifma->ifma_debug & IFD_DEBUG)) { panic("%s: ifma %p has no debug structure", __func__, ifma); /* NOTREACHED */ } if (refhold) { cnt = &ifma_dbg->ifma_refhold_cnt; tr = ifma_dbg->ifma_refhold; } else { cnt = &ifma_dbg->ifma_refrele_cnt; tr = ifma_dbg->ifma_refrele; } idx = atomic_add_16_ov(cnt, 1) % IFMA_TRACE_HIST_SIZE; ctrace_record(&tr[idx]); } void ifma_addref(struct ifmultiaddr *ifma, int locked) { if (!locked) { IFMA_LOCK(ifma); } else { IFMA_LOCK_ASSERT_HELD(ifma); } if (++ifma->ifma_refcount == 0) { panic("%s: ifma=%p wraparound refcnt", __func__, ifma); /* NOTREACHED */ } else if (ifma->ifma_trace != NULL) { (*ifma->ifma_trace)(ifma, TRUE); } if (!locked) { IFMA_UNLOCK(ifma); } } void ifma_remref(struct ifmultiaddr *ifma) { struct ifmultiaddr *ll; IFMA_LOCK(ifma); if (ifma->ifma_refcount == 0) { panic("%s: ifma=%p negative refcnt", __func__, ifma); /* NOTREACHED */ } else if (ifma->ifma_trace != NULL) { (*ifma->ifma_trace)(ifma, FALSE); } --ifma->ifma_refcount; if (ifma->ifma_refcount > 0) { IFMA_UNLOCK(ifma); return; } ll = ifma->ifma_ll; ifma->ifma_ifp = NULL; ifma->ifma_ll = NULL; IFMA_UNLOCK(ifma); ifma_free(ifma); /* deallocate it */ if (ll != NULL) { IFMA_REMREF(ll); } } static void if_attach_ifma(struct ifnet *ifp, struct ifmultiaddr *ifma, int anon) { ifnet_lock_assert(ifp, IFNET_LCK_ASSERT_EXCLUSIVE); IFMA_LOCK_ASSERT_HELD(ifma); if (ifma->ifma_ifp != ifp) { panic("%s: Mismatch ifma_ifp=%p != ifp=%p", __func__, ifma->ifma_ifp, ifp); /* NOTREACHED */ } else if (ifma->ifma_debug & IFD_ATTACHED) { panic("%s: Attempt to attach an already attached ifma=%p", __func__, ifma); /* NOTREACHED */ } else if (anon && (ifma->ifma_flags & IFMAF_ANONYMOUS)) { panic("%s: ifma=%p unexpected IFMAF_ANONYMOUS", __func__, ifma); /* NOTREACHED */ } else if (ifma->ifma_debug & IFD_TRASHED) { panic("%s: Attempt to reattach a detached ifma=%p", __func__, ifma); /* NOTREACHED */ } ifma->ifma_reqcnt++; VERIFY(ifma->ifma_reqcnt == 1); IFMA_ADDREF_LOCKED(ifma); ifma->ifma_debug |= IFD_ATTACHED; if (anon) { ifma->ifma_anoncnt++; VERIFY(ifma->ifma_anoncnt == 1); ifma->ifma_flags |= IFMAF_ANONYMOUS; } LIST_INSERT_HEAD(&ifp->if_multiaddrs, ifma, ifma_link); } static int if_detach_ifma(struct ifnet *ifp, struct ifmultiaddr *ifma, int anon) { ifnet_lock_assert(ifp, IFNET_LCK_ASSERT_EXCLUSIVE); IFMA_LOCK_ASSERT_HELD(ifma); if (ifma->ifma_reqcnt == 0) { panic("%s: ifma=%p negative reqcnt", __func__, ifma); /* NOTREACHED */ } else if (anon && !(ifma->ifma_flags & IFMAF_ANONYMOUS)) { panic("%s: ifma=%p missing IFMAF_ANONYMOUS", __func__, ifma); /* NOTREACHED */ } else if (anon && ifma->ifma_anoncnt == 0) { panic("%s: ifma=%p negative anonreqcnt", __func__, ifma); /* NOTREACHED */ } else if (ifma->ifma_ifp != ifp) { panic("%s: Mismatch ifma_ifp=%p, ifp=%p", __func__, ifma->ifma_ifp, ifp); /* NOTREACHED */ } if (anon) { --ifma->ifma_anoncnt; if (ifma->ifma_anoncnt > 0) { return 0; } ifma->ifma_flags &= ~IFMAF_ANONYMOUS; } --ifma->ifma_reqcnt; if (ifma->ifma_reqcnt > 0) { return 0; } if (ifma->ifma_protospec != NULL) { panic("%s: Protospec not NULL for ifma=%p", __func__, ifma); /* NOTREACHED */ } else if ((ifma->ifma_flags & IFMAF_ANONYMOUS) || ifma->ifma_anoncnt != 0) { panic("%s: Detaching ifma=%p with outstanding anon req", __func__, ifma); /* NOTREACHED */ } else if (!(ifma->ifma_debug & IFD_ATTACHED)) { panic("%s: Attempt to detach an unattached address ifma=%p", __func__, ifma); /* NOTREACHED */ } else if (ifma->ifma_debug & IFD_TRASHED) { panic("%s: ifma %p is already in trash list", __func__, ifma); /* NOTREACHED */ } /* * NOTE: Caller calls IFMA_REMREF */ ifma->ifma_debug &= ~IFD_ATTACHED; LIST_REMOVE(ifma, ifma_link); if (LIST_EMPTY(&ifp->if_multiaddrs)) { ifp->if_updatemcasts = 0; } if (ifma->ifma_debug & IFD_DEBUG) { /* Become a regular mutex, just in case */ IFMA_CONVERT_LOCK(ifma); lck_mtx_lock(&ifma_trash_lock); TAILQ_INSERT_TAIL(&ifma_trash_head, (struct ifmultiaddr_dbg *)ifma, ifma_trash_link); lck_mtx_unlock(&ifma_trash_lock); ifma->ifma_debug |= IFD_TRASHED; } return 1; } /* * Find an ifmultiaddr that matches a socket address on an interface. * * Caller is responsible for holding the ifnet_lock while calling * this function. */ static int if_addmulti_doesexist(struct ifnet *ifp, const struct sockaddr *sa, struct ifmultiaddr **retifma, int anon) { struct ifmultiaddr *ifma; for (ifma = LIST_FIRST(&ifp->if_multiaddrs); ifma != NULL; ifma = LIST_NEXT(ifma, ifma_link)) { IFMA_LOCK_SPIN(ifma); if (!ifa_equal(sa, ifma->ifma_addr)) { IFMA_UNLOCK(ifma); continue; } if (anon) { VERIFY(!(ifma->ifma_flags & IFMAF_ANONYMOUS) || ifma->ifma_anoncnt != 0); VERIFY((ifma->ifma_flags & IFMAF_ANONYMOUS) || ifma->ifma_anoncnt == 0); ifma->ifma_anoncnt++; if (!(ifma->ifma_flags & IFMAF_ANONYMOUS)) { VERIFY(ifma->ifma_anoncnt == 1); ifma->ifma_flags |= IFMAF_ANONYMOUS; } } if (!anon || ifma->ifma_anoncnt == 1) { ifma->ifma_reqcnt++; VERIFY(ifma->ifma_reqcnt > 1); } if (retifma != NULL) { *retifma = ifma; IFMA_ADDREF_LOCKED(ifma); } IFMA_UNLOCK(ifma); return 0; } return ENOENT; } /* * Radar 3642395, make sure all multicasts are in a standard format. */ static struct sockaddr * copy_and_normalize(const struct sockaddr *original) { int alen = 0; const u_char *aptr = NULL; struct sockaddr *copy = NULL; struct sockaddr_dl *sdl_new = NULL; int len = 0; if (original->sa_family != AF_LINK && original->sa_family != AF_UNSPEC) { /* Just make a copy */ MALLOC(copy, struct sockaddr *, original->sa_len, M_IFADDR, M_WAITOK); if (copy != NULL) { bcopy(original, copy, original->sa_len); } return copy; } switch (original->sa_family) { case AF_LINK: { const struct sockaddr_dl *sdl_original = (struct sockaddr_dl *)(uintptr_t)(size_t)original; if (sdl_original->sdl_nlen + sdl_original->sdl_alen + sdl_original->sdl_slen + offsetof(struct sockaddr_dl, sdl_data) > sdl_original->sdl_len) { return NULL; } alen = sdl_original->sdl_alen; aptr = CONST_LLADDR(sdl_original); } break; case AF_UNSPEC: { if (original->sa_len < ETHER_ADDR_LEN + offsetof(struct sockaddr, sa_data)) { return NULL; } alen = ETHER_ADDR_LEN; aptr = (const u_char *)original->sa_data; } break; } if (alen == 0 || aptr == NULL) { return NULL; } len = alen + offsetof(struct sockaddr_dl, sdl_data); MALLOC(sdl_new, struct sockaddr_dl *, len, M_IFADDR, M_WAITOK); if (sdl_new != NULL) { bzero(sdl_new, len); sdl_new->sdl_len = len; sdl_new->sdl_family = AF_LINK; sdl_new->sdl_alen = alen; bcopy(aptr, LLADDR(sdl_new), alen); } return (struct sockaddr *)sdl_new; } /* * Network-layer protocol domains which hold references to the underlying * link-layer record must use this routine. */ int if_addmulti(struct ifnet *ifp, const struct sockaddr *sa, struct ifmultiaddr **retifma) { return if_addmulti_common(ifp, sa, retifma, 0); } /* * Anything other than network-layer protocol domains which hold references * to the underlying link-layer record must use this routine: SIOCADDMULTI * ioctl, ifnet_add_multicast(), if_bond. */ int if_addmulti_anon(struct ifnet *ifp, const struct sockaddr *sa, struct ifmultiaddr **retifma) { return if_addmulti_common(ifp, sa, retifma, 1); } /* * Register an additional multicast address with a network interface. * * - If the address is already present, bump the reference count on the * address and return. * - If the address is not link-layer, look up a link layer address. * - Allocate address structures for one or both addresses, and attach to the * multicast address list on the interface. If automatically adding a link * layer address, the protocol address will own a reference to the link * layer address, to be freed when it is freed. * - Notify the network device driver of an addition to the multicast address * list. * * 'sa' points to caller-owned memory with the desired multicast address. * * 'retifma' will be used to return a pointer to the resulting multicast * address reference, if desired. * * 'anon' indicates a link-layer address with no protocol address reference * made to it. Anything other than network-layer protocol domain requests * are considered as anonymous. */ static int if_addmulti_common(struct ifnet *ifp, const struct sockaddr *sa, struct ifmultiaddr **retifma, int anon) { struct sockaddr_storage storage; struct sockaddr *llsa = NULL; struct sockaddr *dupsa = NULL; int error = 0, ll_firstref = 0, lladdr; struct ifmultiaddr *ifma = NULL; struct ifmultiaddr *llifma = NULL; /* Only AF_UNSPEC/AF_LINK is allowed for an "anonymous" address */ VERIFY(!anon || sa->sa_family == AF_UNSPEC || sa->sa_family == AF_LINK); /* If sa is a AF_LINK or AF_UNSPEC, duplicate and normalize it */ if (sa->sa_family == AF_LINK || sa->sa_family == AF_UNSPEC) { dupsa = copy_and_normalize(sa); if (dupsa == NULL) { error = ENOMEM; goto cleanup; } sa = dupsa; } ifnet_lock_exclusive(ifp); if (!(ifp->if_flags & IFF_MULTICAST)) { error = EADDRNOTAVAIL; ifnet_lock_done(ifp); goto cleanup; } /* If the address is already present, return a new reference to it */ error = if_addmulti_doesexist(ifp, sa, retifma, anon); ifnet_lock_done(ifp); if (error == 0) { goto cleanup; } /* * The address isn't already present; give the link layer a chance * to accept/reject it, and also find out which AF_LINK address this * maps to, if it isn't one already. */ error = dlil_resolve_multi(ifp, sa, (struct sockaddr *)&storage, sizeof(storage)); if (error == 0 && storage.ss_len != 0) { llsa = copy_and_normalize((struct sockaddr *)&storage); if (llsa == NULL) { error = ENOMEM; goto cleanup; } llifma = ifma_alloc(M_WAITOK); if (llifma == NULL) { error = ENOMEM; goto cleanup; } } /* to be similar to FreeBSD */ if (error == EOPNOTSUPP) { error = 0; } else if (error != 0) { goto cleanup; } /* Allocate while we aren't holding any locks */ if (dupsa == NULL) { dupsa = copy_and_normalize(sa); if (dupsa == NULL) { error = ENOMEM; goto cleanup; } } ifma = ifma_alloc(M_WAITOK); if (ifma == NULL) { error = ENOMEM; goto cleanup; } ifnet_lock_exclusive(ifp); /* * Check again for the matching multicast. */ error = if_addmulti_doesexist(ifp, sa, retifma, anon); if (error == 0) { ifnet_lock_done(ifp); goto cleanup; } if (llifma != NULL) { VERIFY(!anon); /* must not get here if "anonymous" */ if (if_addmulti_doesexist(ifp, llsa, &ifma->ifma_ll, 0) == 0) { FREE(llsa, M_IFADDR); llsa = NULL; ifma_free(llifma); llifma = NULL; VERIFY(ifma->ifma_ll->ifma_ifp == ifp); } else { ll_firstref = 1; llifma->ifma_addr = llsa; llifma->ifma_ifp = ifp; IFMA_LOCK(llifma); if_attach_ifma(ifp, llifma, 0); /* add extra refcnt for ifma */ IFMA_ADDREF_LOCKED(llifma); IFMA_UNLOCK(llifma); ifma->ifma_ll = llifma; } } /* "anonymous" request should not result in network address */ VERIFY(!anon || ifma->ifma_ll == NULL); ifma->ifma_addr = dupsa; ifma->ifma_ifp = ifp; IFMA_LOCK(ifma); if_attach_ifma(ifp, ifma, anon); IFMA_ADDREF_LOCKED(ifma); /* for this routine */ if (retifma != NULL) { *retifma = ifma; IFMA_ADDREF_LOCKED(*retifma); /* for caller */ } lladdr = (ifma->ifma_addr->sa_family == AF_UNSPEC || ifma->ifma_addr->sa_family == AF_LINK); IFMA_UNLOCK(ifma); ifnet_lock_done(ifp); rt_newmaddrmsg(RTM_NEWMADDR, ifma); IFMA_REMREF(ifma); /* for this routine */ /* * We are certain we have added something, so call down to the * interface to let them know about it. Do this only for newly- * added AF_LINK/AF_UNSPEC address in the if_multiaddrs set. */ if (lladdr || ll_firstref) { (void) ifnet_ioctl(ifp, 0, SIOCADDMULTI, NULL); } if (ifp->if_updatemcasts > 0) { ifp->if_updatemcasts = 0; } return 0; cleanup: if (ifma != NULL) { ifma_free(ifma); } if (dupsa != NULL) { FREE(dupsa, M_IFADDR); } if (llifma != NULL) { ifma_free(llifma); } if (llsa != NULL) { FREE(llsa, M_IFADDR); } return error; } /* * Delete a multicast group membership by network-layer group address. * This routine is deprecated. */ int if_delmulti(struct ifnet *ifp, const struct sockaddr *sa) { return if_delmulti_common(NULL, ifp, sa, 0); } /* * Delete a multicast group membership by group membership pointer. * Network-layer protocol domains must use this routine. */ int if_delmulti_ifma(struct ifmultiaddr *ifma) { return if_delmulti_common(ifma, NULL, NULL, 0); } /* * Anything other than network-layer protocol domains which hold references * to the underlying link-layer record must use this routine: SIOCDELMULTI * ioctl, ifnet_remove_multicast(), if_bond. */ int if_delmulti_anon(struct ifnet *ifp, const struct sockaddr *sa) { return if_delmulti_common(NULL, ifp, sa, 1); } /* * Delete a multicast group membership by network-layer group address. * * Returns ENOENT if the entry could not be found. */ static int if_delmulti_common(struct ifmultiaddr *ifma, struct ifnet *ifp, const struct sockaddr *sa, int anon) { struct sockaddr *dupsa = NULL; int lastref, ll_lastref = 0, lladdr; struct ifmultiaddr *ll = NULL; /* sanity check for callers */ VERIFY(ifma != NULL || (ifp != NULL && sa != NULL)); if (ifma != NULL) { ifp = ifma->ifma_ifp; } if (sa != NULL && (sa->sa_family == AF_LINK || sa->sa_family == AF_UNSPEC)) { dupsa = copy_and_normalize(sa); if (dupsa == NULL) { return ENOMEM; } sa = dupsa; } ifnet_lock_exclusive(ifp); if (ifma == NULL) { for (ifma = LIST_FIRST(&ifp->if_multiaddrs); ifma != NULL; ifma = LIST_NEXT(ifma, ifma_link)) { IFMA_LOCK(ifma); if (!ifa_equal(sa, ifma->ifma_addr) || (anon && !(ifma->ifma_flags & IFMAF_ANONYMOUS))) { VERIFY(!(ifma->ifma_flags & IFMAF_ANONYMOUS) || ifma->ifma_anoncnt != 0); IFMA_UNLOCK(ifma); continue; } /* found; keep it locked */ break; } if (ifma == NULL) { if (dupsa != NULL) { FREE(dupsa, M_IFADDR); } ifnet_lock_done(ifp); return ENOENT; } } else { IFMA_LOCK(ifma); } IFMA_LOCK_ASSERT_HELD(ifma); IFMA_ADDREF_LOCKED(ifma); /* for this routine */ lastref = if_detach_ifma(ifp, ifma, anon); VERIFY(!lastref || (!(ifma->ifma_debug & IFD_ATTACHED) && ifma->ifma_reqcnt == 0)); VERIFY(!anon || ifma->ifma_ll == NULL); ll = ifma->ifma_ll; lladdr = (ifma->ifma_addr->sa_family == AF_UNSPEC || ifma->ifma_addr->sa_family == AF_LINK); IFMA_UNLOCK(ifma); if (lastref && ll != NULL) { IFMA_LOCK(ll); ll_lastref = if_detach_ifma(ifp, ll, 0); IFMA_UNLOCK(ll); } ifnet_lock_done(ifp); if (lastref) { rt_newmaddrmsg(RTM_DELMADDR, ifma); } if ((ll == NULL && lastref && lladdr) || ll_lastref) { /* * Make sure the interface driver is notified in the * case of a link layer mcast group being left. Do * this only for a AF_LINK/AF_UNSPEC address that has * been removed from the if_multiaddrs set. */ ifnet_ioctl(ifp, 0, SIOCDELMULTI, NULL); } if (lastref) { IFMA_REMREF(ifma); /* for if_multiaddrs list */ } if (ll_lastref) { IFMA_REMREF(ll); /* for if_multiaddrs list */ } IFMA_REMREF(ifma); /* for this routine */ if (dupsa != NULL) { FREE(dupsa, M_IFADDR); } return 0; } /* * Shutdown all network activity. Used boot() when halting * system. */ int if_down_all(void) { struct ifnet **ifp; u_int32_t count; u_int32_t i; if (ifnet_list_get_all(IFNET_FAMILY_ANY, &ifp, &count) == 0) { for (i = 0; i < count; i++) { if_down(ifp[i]); dlil_proto_unplumb_all(ifp[i]); } ifnet_list_free(ifp); } return 0; } /* * Delete Routes for a Network Interface * * Called for each routing entry via the rnh->rnh_walktree() call above * to delete all route entries referencing a detaching network interface. * * Arguments: * rn pointer to node in the routing table * arg argument passed to rnh->rnh_walktree() - detaching interface * * Returns: * 0 successful * errno failed - reason indicated * */ static int if_rtdel(struct radix_node *rn, void *arg) { struct rtentry *rt = (struct rtentry *)rn; struct ifnet *ifp = arg; int err; if (rt == NULL) { return 0; } /* * Checking against RTF_UP protects against walktree * recursion problems with cloned routes. */ RT_LOCK(rt); if (rt->rt_ifp == ifp && (rt->rt_flags & RTF_UP)) { /* * Safe to drop rt_lock and use rt_key, rt_gateway, * since holding rnh_lock here prevents another thread * from calling rt_setgate() on this route. */ RT_UNLOCK(rt); err = rtrequest_locked(RTM_DELETE, rt_key(rt), rt->rt_gateway, rt_mask(rt), rt->rt_flags, NULL); if (err) { log(LOG_WARNING, "if_rtdel: error %d\n", err); } } else { RT_UNLOCK(rt); } return 0; } /* * Removes routing table reference to a given interface * for a given protocol family */ void if_rtproto_del(struct ifnet *ifp, int protocol) { struct radix_node_head *rnh; if ((protocol <= AF_MAX) && (protocol >= 0) && ((rnh = rt_tables[protocol]) != NULL) && (ifp != NULL)) { lck_mtx_lock(rnh_lock); (void) rnh->rnh_walktree(rnh, if_rtdel, ifp); lck_mtx_unlock(rnh_lock); } } static int if_rtmtu(struct radix_node *rn, void *arg) { struct rtentry *rt = (struct rtentry *)rn; struct ifnet *ifp = arg; RT_LOCK(rt); if (rt->rt_ifp == ifp) { /* * Update the MTU of this entry only if the MTU * has not been locked (RTV_MTU is not set) and * if it was non-zero to begin with. */ if (!(rt->rt_rmx.rmx_locks & RTV_MTU) && rt->rt_rmx.rmx_mtu) { rt->rt_rmx.rmx_mtu = ifp->if_mtu; if (rt_key(rt)->sa_family == AF_INET && INTF_ADJUST_MTU_FOR_CLAT46(ifp)) { rt->rt_rmx.rmx_mtu = IN6_LINKMTU(ifp); /* Further adjust the size for CLAT46 expansion */ rt->rt_rmx.rmx_mtu -= CLAT46_HDR_EXPANSION_OVERHD; } } } RT_UNLOCK(rt); return 0; } /* * Update the MTU metric of all route entries in all protocol tables * associated with a particular interface; this is called when the * MTU of that interface has changed. */ static void if_rtmtu_update(struct ifnet *ifp) { struct radix_node_head *rnh; int p; for (p = 0; p < AF_MAX + 1; p++) { if ((rnh = rt_tables[p]) == NULL) { continue; } lck_mtx_lock(rnh_lock); (void) rnh->rnh_walktree(rnh, if_rtmtu, ifp); lck_mtx_unlock(rnh_lock); } routegenid_update(); } __private_extern__ void if_data_internal_to_if_data(struct ifnet *ifp, const struct if_data_internal *if_data_int, struct if_data *if_data) { #pragma unused(ifp) #define COPYFIELD(fld) if_data->fld = if_data_int->fld #define COPYFIELD32(fld) if_data->fld = (u_int32_t)(if_data_int->fld) /* compiler will cast down to 32-bit */ #define COPYFIELD32_ATOMIC(fld) do { \ atomic_get_64(if_data->fld, \ (u_int64_t *)(void *)(uintptr_t)&if_data_int->fld); \ } while (0) COPYFIELD(ifi_type); COPYFIELD(ifi_typelen); COPYFIELD(ifi_physical); COPYFIELD(ifi_addrlen); COPYFIELD(ifi_hdrlen); COPYFIELD(ifi_recvquota); COPYFIELD(ifi_xmitquota); if_data->ifi_unused1 = 0; COPYFIELD(ifi_mtu); COPYFIELD(ifi_metric); if (if_data_int->ifi_baudrate & 0xFFFFFFFF00000000LL) { if_data->ifi_baudrate = 0xFFFFFFFF; } else { COPYFIELD32(ifi_baudrate); } COPYFIELD32_ATOMIC(ifi_ipackets); COPYFIELD32_ATOMIC(ifi_ierrors); COPYFIELD32_ATOMIC(ifi_opackets); COPYFIELD32_ATOMIC(ifi_oerrors); COPYFIELD32_ATOMIC(ifi_collisions); COPYFIELD32_ATOMIC(ifi_ibytes); COPYFIELD32_ATOMIC(ifi_obytes); COPYFIELD32_ATOMIC(ifi_imcasts); COPYFIELD32_ATOMIC(ifi_omcasts); COPYFIELD32_ATOMIC(ifi_iqdrops); COPYFIELD32_ATOMIC(ifi_noproto); COPYFIELD(ifi_recvtiming); COPYFIELD(ifi_xmittiming); if_data->ifi_lastchange.tv_sec = if_data_int->ifi_lastchange.tv_sec; if_data->ifi_lastchange.tv_usec = if_data_int->ifi_lastchange.tv_usec; if_data->ifi_lastchange.tv_sec += boottime_sec(); if_data->ifi_unused2 = 0; COPYFIELD(ifi_hwassist); if_data->ifi_reserved1 = 0; if_data->ifi_reserved2 = 0; #undef COPYFIELD32_ATOMIC #undef COPYFIELD32 #undef COPYFIELD } __private_extern__ void if_data_internal_to_if_data64(struct ifnet *ifp, const struct if_data_internal *if_data_int, struct if_data64 *if_data64) { #pragma unused(ifp) #define COPYFIELD64(fld) if_data64->fld = if_data_int->fld #define COPYFIELD64_ATOMIC(fld) do { \ atomic_get_64(if_data64->fld, \ (u_int64_t *)(void *)(uintptr_t)&if_data_int->fld); \ } while (0) COPYFIELD64(ifi_type); COPYFIELD64(ifi_typelen); COPYFIELD64(ifi_physical); COPYFIELD64(ifi_addrlen); COPYFIELD64(ifi_hdrlen); COPYFIELD64(ifi_recvquota); COPYFIELD64(ifi_xmitquota); if_data64->ifi_unused1 = 0; COPYFIELD64(ifi_mtu); COPYFIELD64(ifi_metric); COPYFIELD64(ifi_baudrate); COPYFIELD64_ATOMIC(ifi_ipackets); COPYFIELD64_ATOMIC(ifi_ierrors); COPYFIELD64_ATOMIC(ifi_opackets); COPYFIELD64_ATOMIC(ifi_oerrors); COPYFIELD64_ATOMIC(ifi_collisions); COPYFIELD64_ATOMIC(ifi_ibytes); COPYFIELD64_ATOMIC(ifi_obytes); COPYFIELD64_ATOMIC(ifi_imcasts); COPYFIELD64_ATOMIC(ifi_omcasts); COPYFIELD64_ATOMIC(ifi_iqdrops); COPYFIELD64_ATOMIC(ifi_noproto); /* * Note these two fields are actually 32 bit, so doing * COPYFIELD64_ATOMIC will cause them to be misaligned */ COPYFIELD64(ifi_recvtiming); COPYFIELD64(ifi_xmittiming); if_data64->ifi_lastchange.tv_sec = if_data_int->ifi_lastchange.tv_sec; if_data64->ifi_lastchange.tv_usec = if_data_int->ifi_lastchange.tv_usec; if_data64->ifi_lastchange.tv_sec += boottime_sec(); #undef COPYFIELD64 } __private_extern__ void if_copy_traffic_class(struct ifnet *ifp, struct if_traffic_class *if_tc) { #define COPY_IF_TC_FIELD64_ATOMIC(fld) do { \ atomic_get_64(if_tc->fld, \ (u_int64_t *)(void *)(uintptr_t)&ifp->if_tc.fld); \ } while (0) bzero(if_tc, sizeof(*if_tc)); COPY_IF_TC_FIELD64_ATOMIC(ifi_ibepackets); COPY_IF_TC_FIELD64_ATOMIC(ifi_ibebytes); COPY_IF_TC_FIELD64_ATOMIC(ifi_obepackets); COPY_IF_TC_FIELD64_ATOMIC(ifi_obebytes); COPY_IF_TC_FIELD64_ATOMIC(ifi_ibkpackets); COPY_IF_TC_FIELD64_ATOMIC(ifi_ibkbytes); COPY_IF_TC_FIELD64_ATOMIC(ifi_obkpackets); COPY_IF_TC_FIELD64_ATOMIC(ifi_obkbytes); COPY_IF_TC_FIELD64_ATOMIC(ifi_ivipackets); COPY_IF_TC_FIELD64_ATOMIC(ifi_ivibytes); COPY_IF_TC_FIELD64_ATOMIC(ifi_ovipackets); COPY_IF_TC_FIELD64_ATOMIC(ifi_ovibytes); COPY_IF_TC_FIELD64_ATOMIC(ifi_ivopackets); COPY_IF_TC_FIELD64_ATOMIC(ifi_ivobytes); COPY_IF_TC_FIELD64_ATOMIC(ifi_ovopackets); COPY_IF_TC_FIELD64_ATOMIC(ifi_ovobytes); COPY_IF_TC_FIELD64_ATOMIC(ifi_ipvpackets); COPY_IF_TC_FIELD64_ATOMIC(ifi_ipvbytes); COPY_IF_TC_FIELD64_ATOMIC(ifi_opvpackets); COPY_IF_TC_FIELD64_ATOMIC(ifi_opvbytes); #undef COPY_IF_TC_FIELD64_ATOMIC } void if_copy_data_extended(struct ifnet *ifp, struct if_data_extended *if_de) { #define COPY_IF_DE_FIELD64_ATOMIC(fld) do { \ atomic_get_64(if_de->fld, \ (u_int64_t *)(void *)(uintptr_t)&ifp->if_data.fld); \ } while (0) bzero(if_de, sizeof(*if_de)); COPY_IF_DE_FIELD64_ATOMIC(ifi_alignerrs); COPY_IF_DE_FIELD64_ATOMIC(ifi_dt_bytes); COPY_IF_DE_FIELD64_ATOMIC(ifi_fpackets); COPY_IF_DE_FIELD64_ATOMIC(ifi_fbytes); #undef COPY_IF_DE_FIELD64_ATOMIC } void if_copy_packet_stats(struct ifnet *ifp, struct if_packet_stats *if_ps) { #define COPY_IF_PS_TCP_FIELD64_ATOMIC(fld) do { \ atomic_get_64(if_ps->ifi_tcp_##fld, \ (u_int64_t *)(void *)(uintptr_t)&ifp->if_tcp_stat->fld); \ } while (0) #define COPY_IF_PS_UDP_FIELD64_ATOMIC(fld) do { \ atomic_get_64(if_ps->ifi_udp_##fld, \ (u_int64_t *)(void *)(uintptr_t)&ifp->if_udp_stat->fld); \ } while (0) COPY_IF_PS_TCP_FIELD64_ATOMIC(badformat); COPY_IF_PS_TCP_FIELD64_ATOMIC(unspecv6); COPY_IF_PS_TCP_FIELD64_ATOMIC(synfin); COPY_IF_PS_TCP_FIELD64_ATOMIC(badformatipsec); COPY_IF_PS_TCP_FIELD64_ATOMIC(noconnnolist); COPY_IF_PS_TCP_FIELD64_ATOMIC(noconnlist); COPY_IF_PS_TCP_FIELD64_ATOMIC(listbadsyn); COPY_IF_PS_TCP_FIELD64_ATOMIC(icmp6unreach); COPY_IF_PS_TCP_FIELD64_ATOMIC(deprecate6); COPY_IF_PS_TCP_FIELD64_ATOMIC(ooopacket); COPY_IF_PS_TCP_FIELD64_ATOMIC(rstinsynrcv); COPY_IF_PS_TCP_FIELD64_ATOMIC(dospacket); COPY_IF_PS_TCP_FIELD64_ATOMIC(cleanup); COPY_IF_PS_TCP_FIELD64_ATOMIC(synwindow); COPY_IF_PS_UDP_FIELD64_ATOMIC(port_unreach); COPY_IF_PS_UDP_FIELD64_ATOMIC(faithprefix); COPY_IF_PS_UDP_FIELD64_ATOMIC(port0); COPY_IF_PS_UDP_FIELD64_ATOMIC(badlength); COPY_IF_PS_UDP_FIELD64_ATOMIC(badchksum); COPY_IF_PS_UDP_FIELD64_ATOMIC(badmcast); COPY_IF_PS_UDP_FIELD64_ATOMIC(cleanup); COPY_IF_PS_UDP_FIELD64_ATOMIC(badipsec); #undef COPY_IF_PS_TCP_FIELD64_ATOMIC #undef COPY_IF_PS_UDP_FIELD64_ATOMIC } void if_copy_rxpoll_stats(struct ifnet *ifp, struct if_rxpoll_stats *if_rs) { bzero(if_rs, sizeof(*if_rs)); if (!(ifp->if_eflags & IFEF_RXPOLL) || !ifnet_is_attached(ifp, 1)) { return; } bcopy(&ifp->if_poll_pstats, if_rs, sizeof(*if_rs)); /* Release the IO refcnt */ ifnet_decr_iorefcnt(ifp); } void if_copy_netif_stats(struct ifnet *ifp, struct if_netif_stats *if_ns) { bzero(if_ns, sizeof(*if_ns)); #pragma unused(ifp) } struct ifaddr * ifa_remref(struct ifaddr *ifa, int locked) { if (!locked) { IFA_LOCK_SPIN(ifa); } else { IFA_LOCK_ASSERT_HELD(ifa); } if (ifa->ifa_refcnt == 0) { panic("%s: ifa %p negative refcnt\n", __func__, ifa); } else if (ifa->ifa_trace != NULL) { (*ifa->ifa_trace)(ifa, FALSE); } if (--ifa->ifa_refcnt == 0) { if (ifa->ifa_debug & IFD_ATTACHED) { panic("ifa %p attached to ifp is being freed\n", ifa); } /* * Some interface addresses are allocated either statically * or carved out of a larger block. Only free it if it was * allocated via MALLOC or via the corresponding per-address * family allocator. Otherwise, leave it alone. */ if (ifa->ifa_debug & IFD_ALLOC) { if (ifa->ifa_free == NULL) { IFA_UNLOCK(ifa); FREE(ifa, M_IFADDR); } else { /* Become a regular mutex */ IFA_CONVERT_LOCK(ifa); /* callee will unlock */ (*ifa->ifa_free)(ifa); } } else { IFA_UNLOCK(ifa); } ifa = NULL; } if (!locked && ifa != NULL) { IFA_UNLOCK(ifa); } return ifa; } void ifa_addref(struct ifaddr *ifa, int locked) { if (!locked) { IFA_LOCK_SPIN(ifa); } else { IFA_LOCK_ASSERT_HELD(ifa); } if (++ifa->ifa_refcnt == 0) { panic("%s: ifa %p wraparound refcnt\n", __func__, ifa); /* NOTREACHED */ } else if (ifa->ifa_trace != NULL) { (*ifa->ifa_trace)(ifa, TRUE); } if (!locked) { IFA_UNLOCK(ifa); } } void ifa_lock_init(struct ifaddr *ifa) { lck_mtx_init(&ifa->ifa_lock, ifa_mtx_grp, ifa_mtx_attr); } void ifa_lock_destroy(struct ifaddr *ifa) { IFA_LOCK_ASSERT_NOTHELD(ifa); lck_mtx_destroy(&ifa->ifa_lock, ifa_mtx_grp); } /* * 'i' group ioctls. * * The switch statement below does nothing at runtime, as it serves as a * compile time check to ensure that all of the socket 'i' ioctls (those * in the 'i' group going thru soo_ioctl) that are made available by the * networking stack is unique. This works as long as this routine gets * updated each time a new interface ioctl gets added. * * Any failures at compile time indicates duplicated ioctl values. */ static __attribute__((unused)) void ifioctl_cassert(void) { /* * This is equivalent to _CASSERT() and the compiler wouldn't * generate any instructions, thus for compile time only. */ switch ((u_long)0) { case 0: /* bsd/net/if_ppp.h */ case SIOCGPPPSTATS: case SIOCGPPPCSTATS: #if INET6 /* bsd/netinet6/in6_var.h */ case SIOCSIFADDR_IN6: case SIOCGIFADDR_IN6: case SIOCSIFDSTADDR_IN6: case SIOCSIFNETMASK_IN6: case SIOCGIFDSTADDR_IN6: case SIOCGIFNETMASK_IN6: case SIOCDIFADDR_IN6: case SIOCAIFADDR_IN6_32: case SIOCAIFADDR_IN6_64: case SIOCSIFPHYADDR_IN6_32: case SIOCSIFPHYADDR_IN6_64: case SIOCGIFPSRCADDR_IN6: case SIOCGIFPDSTADDR_IN6: case SIOCGIFAFLAG_IN6: case SIOCGDRLST_IN6_32: case SIOCGDRLST_IN6_64: case SIOCGPRLST_IN6_32: case SIOCGPRLST_IN6_64: case OSIOCGIFINFO_IN6: case SIOCGIFINFO_IN6: case SIOCSNDFLUSH_IN6: case SIOCGNBRINFO_IN6_32: case SIOCGNBRINFO_IN6_64: case SIOCSPFXFLUSH_IN6: case SIOCSRTRFLUSH_IN6: case SIOCGIFALIFETIME_IN6: case SIOCSIFALIFETIME_IN6: case SIOCGIFSTAT_IN6: case SIOCGIFSTAT_ICMP6: case SIOCSDEFIFACE_IN6_32: case SIOCSDEFIFACE_IN6_64: case SIOCGDEFIFACE_IN6_32: case SIOCGDEFIFACE_IN6_64: case SIOCSIFINFO_FLAGS: case SIOCSSCOPE6: case SIOCGSCOPE6: case SIOCGSCOPE6DEF: case SIOCSIFPREFIX_IN6: case SIOCGIFPREFIX_IN6: case SIOCDIFPREFIX_IN6: case SIOCAIFPREFIX_IN6: case SIOCCIFPREFIX_IN6: case SIOCSGIFPREFIX_IN6: case SIOCPROTOATTACH_IN6_32: case SIOCPROTOATTACH_IN6_64: case SIOCPROTODETACH_IN6: case SIOCLL_START_32: case SIOCLL_START_64: case SIOCLL_STOP: case SIOCAUTOCONF_START: case SIOCAUTOCONF_STOP: case SIOCSETROUTERMODE_IN6: case SIOCLL_CGASTART_32: case SIOCLL_CGASTART_64: case SIOCGIFCGAPREP_IN6: case SIOCSIFCGAPREP_IN6: #endif /* INET6 */ /* bsd/sys/sockio.h */ case SIOCSIFADDR: case OSIOCGIFADDR: case SIOCSIFDSTADDR: case OSIOCGIFDSTADDR: case SIOCSIFFLAGS: case SIOCGIFFLAGS: case OSIOCGIFBRDADDR: case SIOCSIFBRDADDR: case OSIOCGIFCONF32: case OSIOCGIFCONF64: case OSIOCGIFNETMASK: case SIOCSIFNETMASK: case SIOCGIFMETRIC: case SIOCSIFMETRIC: case SIOCDIFADDR: case SIOCAIFADDR: case SIOCGIFADDR: case SIOCGIFDSTADDR: case SIOCGIFBRDADDR: case SIOCGIFCONF32: case SIOCGIFCONF64: case SIOCGIFNETMASK: case SIOCAUTOADDR: case SIOCAUTONETMASK: case SIOCARPIPLL: case SIOCADDMULTI: case SIOCDELMULTI: case SIOCGIFMTU: case SIOCSIFMTU: case SIOCGIFPHYS: case SIOCSIFPHYS: case SIOCSIFMEDIA: case SIOCGIFMEDIA32: case SIOCGIFMEDIA64: case SIOCGIFXMEDIA32: case SIOCGIFXMEDIA64: case SIOCSIFGENERIC: case SIOCGIFGENERIC: case SIOCRSLVMULTI: case SIOCSIFLLADDR: case SIOCGIFSTATUS: case SIOCSIFPHYADDR: case SIOCGIFPSRCADDR: case SIOCGIFPDSTADDR: case SIOCDIFPHYADDR: case SIOCGIFDEVMTU: case SIOCSIFALTMTU: case SIOCGIFALTMTU: case SIOCSIFBOND: case SIOCGIFBOND: case SIOCPROTOATTACH: case SIOCPROTODETACH: case SIOCSIFCAP: case SIOCGIFCAP: case SIOCIFCREATE: case SIOCIFDESTROY: case SIOCIFCREATE2: case SIOCSDRVSPEC32: case SIOCGDRVSPEC32: case SIOCSDRVSPEC64: case SIOCGDRVSPEC64: case SIOCSIFVLAN: case SIOCGIFVLAN: case SIOCIFGCLONERS32: case SIOCIFGCLONERS64: case SIOCGIFASYNCMAP: case SIOCSIFASYNCMAP: #if CONFIG_MACF_NET case SIOCGIFMAC: case SIOCSIFMAC: #endif /* CONFIG_MACF_NET */ case SIOCSIFKPI: case SIOCGIFKPI: case SIOCGIFWAKEFLAGS: case SIOCGIFGETRTREFCNT: case SIOCGIFLINKQUALITYMETRIC: case SIOCSIFOPPORTUNISTIC: case SIOCGIFOPPORTUNISTIC: case SIOCSETROUTERMODE: case SIOCGIFEFLAGS: case SIOCSIFDESC: case SIOCGIFDESC: case SIOCSIFLINKPARAMS: case SIOCGIFLINKPARAMS: case SIOCGIFQUEUESTATS: case SIOCSIFTHROTTLE: case SIOCGIFTHROTTLE: case SIOCGASSOCIDS32: case SIOCGASSOCIDS64: case SIOCGCONNIDS32: case SIOCGCONNIDS64: case SIOCGCONNINFO32: case SIOCGCONNINFO64: case SIOCSCONNORDER: case SIOCGCONNORDER: case SIOCSIFLOG: case SIOCGIFLOG: case SIOCGIFDELEGATE: case SIOCGIFLLADDR: case SIOCGIFTYPE: case SIOCGIFEXPENSIVE: case SIOCSIFEXPENSIVE: case SIOCGIF2KCL: case SIOCSIF2KCL: case SIOCGSTARTDELAY: case SIOCAIFAGENTID: case SIOCDIFAGENTID: case SIOCGIFAGENTIDS32: case SIOCGIFAGENTIDS64: case SIOCGIFAGENTDATA32: case SIOCGIFAGENTDATA64: case SIOCSIFINTERFACESTATE: case SIOCGIFINTERFACESTATE: case SIOCSIFPROBECONNECTIVITY: case SIOCGIFPROBECONNECTIVITY: case SIOCGIFFUNCTIONALTYPE: case SIOCSIFNETSIGNATURE: case SIOCGIFNETSIGNATURE: case SIOCGECNMODE: case SIOCSECNMODE: case SIOCSIFORDER: case SIOCSQOSMARKINGMODE: case SIOCSQOSMARKINGENABLED: case SIOCGQOSMARKINGMODE: case SIOCGQOSMARKINGENABLED: case SIOCSIFTIMESTAMPENABLE: case SIOCSIFTIMESTAMPDISABLE: case SIOCGIFTIMESTAMPENABLED: case SIOCSIFDISABLEOUTPUT: case SIOCSIFSUBFAMILY: case SIOCGIFAGENTLIST32: case SIOCGIFAGENTLIST64: case SIOCSIFLOWINTERNET: case SIOCGIFLOWINTERNET: #if INET6 case SIOCGIFNAT64PREFIX: case SIOCSIFNAT64PREFIX: case SIOCGIFCLAT46ADDR: #endif /* INET6 */ case SIOCGIFPROTOLIST32: case SIOCGIFPROTOLIST64: case SIOCSIF6LOWPAN: case SIOCGIF6LOWPAN: case SIOCGIFLOWPOWER: case SIOCSIFLOWPOWER: case SIOCGIFMPKLOG: case SIOCSIFMPKLOG: case SIOCGIFCONSTRAINED: case SIOCSIFCONSTRAINED: case SIOCGIFXFLAGS: case SIOCGIFNOACKPRIO: case SIOCSIFNOACKPRIO: ; } } uint32_t ifnet_mbuf_packetpreamblelen(struct ifnet *ifp) { #pragma unused(ifp) return 0; } /* The following is used to enqueue work items for interface events */ struct intf_event { struct ifnet *ifp; union sockaddr_in_4_6 addr; uint32_t intf_event_code; }; static void intf_event_callback(void *arg) { struct intf_event *p_intf_ev = (struct intf_event *)arg; /* Call this before we walk the tree */ EVENTHANDLER_INVOKE(&ifnet_evhdlr_ctxt, ifnet_event, p_intf_ev->ifp, (struct sockaddr *)&(p_intf_ev->addr), p_intf_ev->intf_event_code); } struct intf_event_nwk_wq_entry { struct nwk_wq_entry nwk_wqe; struct intf_event intf_ev_arg; }; void intf_event_enqueue_nwk_wq_entry(struct ifnet *ifp, struct sockaddr *addrp, uint32_t intf_event_code) { #pragma unused(addrp) struct intf_event_nwk_wq_entry *p_intf_ev = NULL; MALLOC(p_intf_ev, struct intf_event_nwk_wq_entry *, sizeof(struct intf_event_nwk_wq_entry), M_NWKWQ, M_WAITOK | M_ZERO); p_intf_ev->intf_ev_arg.ifp = ifp; /* * XXX Not using addr in the arg. This will be used * once we need IP address add/delete events */ p_intf_ev->intf_ev_arg.intf_event_code = intf_event_code; p_intf_ev->nwk_wqe.func = intf_event_callback; p_intf_ev->nwk_wqe.is_arg_managed = TRUE; p_intf_ev->nwk_wqe.arg = &p_intf_ev->intf_ev_arg; nwk_wq_enqueue((struct nwk_wq_entry*)p_intf_ev); } int if_get_tcp_kao_max(struct ifnet *ifp) { int error = 0; if (ifp->if_tcp_kao_max == 0) { struct ifreq ifr; memset(&ifr, 0, sizeof(struct ifreq)); error = ifnet_ioctl(ifp, 0, SIOCGIFTCPKAOMAX, &ifr); ifnet_lock_exclusive(ifp); if (error == 0) { ifp->if_tcp_kao_max = ifr.ifr_tcp_kao_max; } else if (error == EOPNOTSUPP) { ifp->if_tcp_kao_max = default_tcp_kao_max; } ifnet_lock_done(ifp); } return error; } |