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 | /* * Copyright (c) 2013-2014 Apple Inc. All rights reserved. * * @APPLE_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. 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_LICENSE_HEADER_END@ */ /* * THEORY OF OPERATION * * The socket content filter subsystem provides a way for user space agents to * make filtering decisions based on the content of the data being sent and * received by TCP/IP sockets. * * A content filter user space agents gets a copy of the data and the data is * also kept in kernel buffer until the user space agents makes a pass or drop * decision. This unidirectional flow of content avoids unnecessary data copies * back to the kernel. * * * A user space filter agent opens a kernel control socket with the name * CONTENT_FILTER_CONTROL_NAME to attach to the socket content filter subsystem. * When connected, a "struct content_filter" is created and set as the * "unitinfo" of the corresponding kernel control socket instance. * * The socket content filter subsystem exchanges messages with the user space * filter agent until an ultimate pass or drop decision is made by the * user space filter agent. * * It should be noted that messages about many TCP/IP sockets can be multiplexed * over a single kernel control socket. * * Notes: * - The current implementation is limited to TCP sockets. * - The current implementation supports up to two simultaneous content filters * for the sake of simplicity of the implementation. * * * NECP FILTER CONTROL UNIT * * A user space filter agent uses the Network Extension Control Policy (NECP) * database specify which TCP/IP sockets needs to be filtered. The NECP * criteria may be based on a variety of properties like user ID or proc UUID. * * The NECP "filter control unit" is used by the socket content filter subsystem * to deliver the relevant TCP/IP content information to the appropriate * user space filter agent via its kernel control socket instance. * This works as follows: * * 1) The user space filter agent specifies an NECP filter control unit when * in adds its filtering rules to the NECP database. * * 2) The user space filter agent also sets its NECP filter control unit on the * content filter kernel control socket via the socket option * CFIL_OPT_NECP_CONTROL_UNIT. * * 3) The NECP database is consulted to find out if a given TCP/IP socket * needs to be subjected to content filtering and returns the corresponding * NECP filter control unit -- the NECP filter control unit is actually * stored in the TCP/IP socket structure so the NECP lookup is really simple. * * 4) The NECP filter control unit is then used to find the corresponding * kernel control socket instance. * * Note: NECP currently supports a ingle filter control unit per TCP/IP socket * but this restriction may be soon lifted. * * * THE MESSAGING PROTOCOL * * The socket content filter subsystem and a user space filter agent * communicate over the kernel control socket via an asynchronous * messaging protocol (this is not a request-response protocol). * The socket content filter subsystem sends event messages to the user * space filter agent about the TCP/IP sockets it is interested to filter. * The user space filter agent sends action messages to either allow * data to pass or to disallow the data flow (and drop the connection). * * All messages over a content filter kernel control socket share the same * common header of type "struct cfil_msg_hdr". The message type tells if * it's a event message "CFM_TYPE_EVENT" or a action message "CFM_TYPE_ACTION". * The message header field "cfm_sock_id" identifies a given TCP/IP socket. * Note the message header length field may be padded for alignment and can * be larger than the actual content of the message. * The field "cfm_op" describe the kind of event or action. * * Here are the kinds of content filter events: * - CFM_OP_SOCKET_ATTACHED: a new TCP/IP socket is being filtered * - CFM_OP_SOCKET_CLOSED: A TCP/IP socket is closed * - CFM_OP_DATA_OUT: A span of data is being sent on a TCP/IP socket * - CFM_OP_DATA_IN: A span of data is being or received on a TCP/IP socket * * * EVENT MESSAGES * * The CFM_OP_DATA_OUT and CFM_OP_DATA_IN event messages contains a span of * data that is being sent or received. The position of this span of data * in the data flow is described by a set of start and end offsets. These * are absolute 64 bits offsets. The first byte sent (or received) starts * at offset 0 and ends at offset 1. The length of the content data * is given by the difference between the end offset and the start offset. * * After a CFM_OP_SOCKET_ATTACHED is delivered, CFM_OP_DATA_OUT and * CFM_OP_DATA_OUT events are not delivered until a CFM_OP_DATA_UPDATE * action message is send by the user space filter agent. * * Note: absolute 64 bits offsets should be large enough for the foreseeable * future. A 64-bits counter will wrap after 468 years are 10 Gbit/sec: * 2E64 / ((10E9 / 8) * 60 * 60 * 24 * 365.25) = 467.63 * * They are two kinds of content filter actions: * - CFM_OP_DATA_UPDATE: to update pass or peek offsets for each direction. * - CFM_OP_DROP: to shutdown socket and disallow further data flow * * * ACTION MESSAGES * * The CFM_OP_DATA_UPDATE action messages let the user space filter * agent allow data to flow up to the specified pass offset -- there * is a pass offset for outgoing data and a pass offset for incoming data. * When a new TCP/IP socket is attached to the content filter, each pass offset * is initially set to 0 so not data is allowed to pass by default. * When the pass offset is set to CFM_MAX_OFFSET via a CFM_OP_DATA_UPDATE * then the data flow becomes unrestricted. * * Note that pass offsets can only be incremented. A CFM_OP_DATA_UPDATE message * with a pass offset smaller than the pass offset of a previous * CFM_OP_DATA_UPDATE message is silently ignored. * * A user space filter agent also uses CFM_OP_DATA_UPDATE action messages * to tell the kernel how much data it wants to see by using the peek offsets. * Just like pass offsets, there is a peek offset for each direction. * When a new TCP/IP socket is attached to the content filter, each peek offset * is initially set to 0 so no CFM_OP_DATA_OUT and CFM_OP_DATA_IN event * messages are dispatched by default until a CFM_OP_DATA_UPDATE action message * with a greater than 0 peek offset is sent by the user space filter agent. * When the peek offset is set to CFM_MAX_OFFSET via a CFM_OP_DATA_UPDATE * then the flow of update data events becomes unrestricted. * * Note that peek offsets cannot be smaller than the corresponding pass offset. * Also a peek offsets cannot be smaller than the corresponding end offset * of the last CFM_OP_DATA_OUT/CFM_OP_DATA_IN message dispatched. Trying * to set a too small peek value is silently ignored. * * * PER SOCKET "struct cfil_info" * * As soon as a TCP/IP socket gets attached to a content filter, a * "struct cfil_info" is created to hold the content filtering state for this * socket. * * The content filtering state is made of the following information * for each direction: * - The current pass offset; * - The first and last offsets of the data pending, waiting for a filtering * decision; * - The inject queue for data that passed the filters and that needs * to be re-injected; * - A content filter specific state in a set of "struct cfil_entry" * * * CONTENT FILTER STATE "struct cfil_entry" * * The "struct cfil_entry" maintains the information most relevant to the * message handling over a kernel control socket with a user space filter agent. * * The "struct cfil_entry" holds the NECP filter control unit that corresponds * to the kernel control socket unit it corresponds to and also has a pointer * to the corresponding "struct content_filter". * * For each direction, "struct cfil_entry" maintains the following information: * - The pass offset * - The peek offset * - The offset of the last data peeked at by the filter * - A queue of data that's waiting to be delivered to the user space filter * agent on the kernel control socket * - A queue of data for which event messages have been sent on the kernel * control socket and are pending for a filtering decision. * * * CONTENT FILTER QUEUES * * Data that is being filtered is steered away from the TCP/IP socket buffer * and instead will sit in one of three content filter queue until the data * can be re-injected into the TCP/IP socket buffer. * * A content filter queue is represented by "struct cfil_queue" that contains * a list of mbufs and the start and end offset of the data span of * the list of mbufs. * * The data moves into the three content filter queues according to this * sequence: * a) The "cfe_ctl_q" of "struct cfil_entry" * b) The "cfe_pending_q" of "struct cfil_entry" * c) The "cfi_inject_q" of "struct cfil_info" * * Note: The seqyence (a),(b) may be repeated several times if there are more * than one content filter attached to the TCP/IP socket. * * The "cfe_ctl_q" queue holds data than cannot be delivered to the * kernel conntrol socket for two reasons: * - The peek offset is less that the end offset of the mbuf data * - The kernel control socket is flow controlled * * The "cfe_pending_q" queue holds data for which CFM_OP_DATA_OUT or * CFM_OP_DATA_IN have been successfully dispatched to the kernel control * socket and are waiting for a pass action message fromn the user space * filter agent. An mbuf length must be fully allowed to pass to be removed * from the cfe_pending_q. * * The "cfi_inject_q" queue holds data that has been fully allowed to pass * by the user space filter agent and that needs to be re-injected into the * TCP/IP socket. * * * IMPACT ON FLOW CONTROL * * An essential aspect of the content filer subsystem is to minimize the * impact on flow control of the TCP/IP sockets being filtered. * * The processing overhead of the content filtering may have an effect on * flow control by adding noticeable delays and cannot be eliminated -- * care must be taken by the user space filter agent to minimize the * processing delays. * * The amount of data being filtered is kept in buffers while waiting for * a decision by the user space filter agent. This amount of data pending * needs to be subtracted from the amount of data available in the * corresponding TCP/IP socket buffer. This is done by modifying * sbspace() and tcp_sbspace() to account for amount of data pending * in the content filter. * * * LOCKING STRATEGY * * The global state of content filter subsystem is protected by a single * read-write lock "cfil_lck_rw". The data flow can be done with the * cfil read-write lock held as shared so it can be re-entered from multiple * threads. * * The per TCP/IP socket content filterstate -- "struct cfil_info" -- is * protected by the socket lock. * * A TCP/IP socket lock cannot be taken while the cfil read-write lock * is held. That's why we have some sequences where we drop the cfil read-write * lock before taking the TCP/IP lock. * * It is also important to lock the TCP/IP socket buffer while the content * filter is modifying the amount of pending data. Otherwise the calculations * in sbspace() and tcp_sbspace() could be wrong. * * The "cfil_lck_rw" protects "struct content_filter" and also the fields * "cfe_link" and "cfe_filter" of "struct cfil_entry". * * Actually "cfe_link" and "cfe_filter" are protected by both by * "cfil_lck_rw" and the socket lock: they may be modified only when * "cfil_lck_rw" is exclusive and the socket is locked. * * To read the other fields of "struct content_filter" we have to take * "cfil_lck_rw" in shared mode. * * * LIMITATIONS * * - For TCP sockets only * * - Does not support TCP unordered messages */ /* * TO DO LIST * * SOONER: * * Deal with OOB * * LATER: * * If support datagram, enqueue control and address mbufs as well */ #include <sys/types.h> #include <sys/kern_control.h> #include <sys/queue.h> #include <sys/domain.h> #include <sys/protosw.h> #include <sys/syslog.h> #include <kern/locks.h> #include <kern/zalloc.h> #include <kern/debug.h> #include <net/content_filter.h> #include <netinet/in_pcb.h> #include <netinet/tcp.h> #include <netinet/tcp_var.h> #include <string.h> #include <libkern/libkern.h> #define MAX_CONTENT_FILTER 2 struct cfil_entry; /* * The structure content_filter represents a user space content filter * It's created and associated with a kernel control socket instance */ struct content_filter { kern_ctl_ref cf_kcref; u_int32_t cf_kcunit; u_int32_t cf_flags; uint32_t cf_necp_control_unit; uint32_t cf_sock_count; TAILQ_HEAD(, cfil_entry) cf_sock_entries; }; #define CFF_ACTIVE 0x01 #define CFF_DETACHING 0x02 #define CFF_FLOW_CONTROLLED 0x04 struct content_filter **content_filters = NULL; uint32_t cfil_active_count = 0; /* Number of active content filters */ uint32_t cfil_sock_attached_count = 0; /* Number of sockets attachements */ uint32_t cfil_close_wait_timeout = 1000; /* in milliseconds */ static kern_ctl_ref cfil_kctlref = NULL; static lck_grp_attr_t *cfil_lck_grp_attr = NULL; static lck_attr_t *cfil_lck_attr = NULL; static lck_grp_t *cfil_lck_grp = NULL; decl_lck_rw_data(static, cfil_lck_rw); #define CFIL_RW_LCK_MAX 8 int cfil_rw_nxt_lck = 0; void* cfil_rw_lock_history[CFIL_RW_LCK_MAX]; int cfil_rw_nxt_unlck = 0; void* cfil_rw_unlock_history[CFIL_RW_LCK_MAX]; #define CONTENT_FILTER_ZONE_NAME "content_filter" #define CONTENT_FILTER_ZONE_MAX 10 static struct zone *content_filter_zone = NULL; /* zone for content_filter */ #define CFIL_INFO_ZONE_NAME "cfil_info" #define CFIL_INFO_ZONE_MAX 1024 static struct zone *cfil_info_zone = NULL; /* zone for cfil_info */ MBUFQ_HEAD(cfil_mqhead); struct cfil_queue { uint64_t q_start; /* offset of first byte in queue */ uint64_t q_end; /* offset of last byte in queue */ struct cfil_mqhead q_mq; }; /* * struct cfil_entry * * The is one entry per content filter */ struct cfil_entry { TAILQ_ENTRY(cfil_entry) cfe_link; struct content_filter *cfe_filter; struct cfil_info *cfe_cfil_info; uint32_t cfe_flags; uint32_t cfe_necp_control_unit; struct timeval cfe_last_event; /* To user space */ struct timeval cfe_last_action; /* From user space */ struct cfe_buf { /* * cfe_pending_q holds data that has been delivered to * the filter and for which we are waiting for an action */ struct cfil_queue cfe_pending_q; /* * This queue is for data that has not be delivered to * the content filter (new data, pass peek or flow control) */ struct cfil_queue cfe_ctl_q; uint64_t cfe_pass_offset; uint64_t cfe_peek_offset; uint64_t cfe_peeked; } cfe_snd, cfe_rcv; }; #define CFEF_CFIL_ATTACHED 0x0001 /* was attached to filter */ #define CFEF_SENT_SOCK_ATTACHED 0x0002 /* sock attach event was sent */ #define CFEF_DATA_START 0x0004 /* can send data event */ #define CFEF_FLOW_CONTROLLED 0x0008 /* wait for flow control lift */ #define CFEF_SENT_DISCONNECT_IN 0x0010 /* event was sent */ #define CFEF_SENT_DISCONNECT_OUT 0x0020 /* event was sent */ #define CFEF_SENT_SOCK_CLOSED 0x0040 /* closed event was sent */ #define CFEF_CFIL_DETACHED 0x0080 /* filter was detached */ /* * struct cfil_info * * There is a struct cfil_info per socket */ struct cfil_info { TAILQ_ENTRY(cfil_info) cfi_link; struct socket *cfi_so; uint64_t cfi_flags; uint64_t cfi_sock_id; struct cfi_buf { /* * cfi_pending_first and cfi_pending_last describe the total * amount of data outstanding for all the filters on * this socket and data in the flow queue * cfi_pending_mbcnt counts in sballoc() "chars of mbufs used" */ uint64_t cfi_pending_first; uint64_t cfi_pending_last; int cfi_pending_mbcnt; /* * cfi_pass_offset is the minimum of all the filters */ uint64_t cfi_pass_offset; /* * cfi_inject_q holds data that needs to be re-injected * into the socket after filtering and that can * be queued because of flow control */ struct cfil_queue cfi_inject_q; } cfi_snd, cfi_rcv; struct cfil_entry cfi_entries[MAX_CONTENT_FILTER]; }; #define CFIF_DROP 0x0001 /* drop action applied */ #define CFIF_CLOSE_WAIT 0x0002 /* waiting for filter to close */ #define CFIF_SOCK_CLOSED 0x0004 /* socket is closed */ #define CFIF_RETRY_INJECT_IN 0x0010 /* inject in failed */ #define CFIF_RETRY_INJECT_OUT 0x0020 /* inject out failed */ #define CFIF_SHUT_WR 0x0040 /* shutdown write */ #define CFIF_SHUT_RD 0x0080 /* shutdown read */ #define CFI_MASK_GENCNT 0xFFFFFFFF00000000 /* upper 32 bits */ #define CFI_SHIFT_GENCNT 32 #define CFI_MASK_FLOWHASH 0x00000000FFFFFFFF /* lower 32 bits */ #define CFI_SHIFT_FLOWHASH 0 TAILQ_HEAD(cfil_sock_head, cfil_info) cfil_sock_head; #define CFIL_QUEUE_VERIFY(x) if (cfil_debug) cfil_queue_verify(x) #define CFIL_INFO_VERIFY(x) if (cfil_debug) cfil_info_verify(x) /* * Statistics */ struct cfil_stats cfil_stats; /* * For troubleshooting */ int cfil_log_level = LOG_ERR; int cfil_debug = 1; /* * Sysctls for logs and statistics */ static int sysctl_cfil_filter_list(struct sysctl_oid *, void *, int, struct sysctl_req *); static int sysctl_cfil_sock_list(struct sysctl_oid *, void *, int, struct sysctl_req *); SYSCTL_NODE(_net, OID_AUTO, cfil, CTLFLAG_RW|CTLFLAG_LOCKED, 0, "cfil"); SYSCTL_INT(_net_cfil, OID_AUTO, log, CTLFLAG_RW|CTLFLAG_LOCKED, &cfil_log_level, 0, ""); SYSCTL_INT(_net_cfil, OID_AUTO, debug, CTLFLAG_RW|CTLFLAG_LOCKED, &cfil_debug, 0, ""); SYSCTL_UINT(_net_cfil, OID_AUTO, sock_attached_count, CTLFLAG_RD|CTLFLAG_LOCKED, &cfil_sock_attached_count, 0, ""); SYSCTL_UINT(_net_cfil, OID_AUTO, active_count, CTLFLAG_RD|CTLFLAG_LOCKED, &cfil_active_count, 0, ""); SYSCTL_UINT(_net_cfil, OID_AUTO, close_wait_timeout, CTLFLAG_RW|CTLFLAG_LOCKED, &cfil_close_wait_timeout, 0, ""); static int cfil_sbtrim = 1; SYSCTL_UINT(_net_cfil, OID_AUTO, sbtrim, CTLFLAG_RW|CTLFLAG_LOCKED, &cfil_sbtrim, 0, ""); SYSCTL_PROC(_net_cfil, OID_AUTO, filter_list, CTLFLAG_RD|CTLFLAG_LOCKED, 0, 0, sysctl_cfil_filter_list, "S,cfil_filter_stat", ""); SYSCTL_PROC(_net_cfil, OID_AUTO, sock_list, CTLFLAG_RD|CTLFLAG_LOCKED, 0, 0, sysctl_cfil_sock_list, "S,cfil_sock_stat", ""); SYSCTL_STRUCT(_net_cfil, OID_AUTO, stats, CTLFLAG_RD|CTLFLAG_LOCKED, &cfil_stats, cfil_stats, ""); /* * Forward declaration to appease the compiler */ static int cfil_action_data_pass(struct socket *, uint32_t, int, uint64_t, uint64_t); static int cfil_action_drop(struct socket *, uint32_t); static int cfil_dispatch_closed_event(struct socket *, int); static int cfil_data_common(struct socket *, int, struct sockaddr *, struct mbuf *, struct mbuf *, uint32_t); static int cfil_data_filter(struct socket *, uint32_t, int, struct mbuf *, uint64_t); static void fill_ip_sockaddr_4_6(union sockaddr_in_4_6 *, struct in_addr, u_int16_t); static void fill_ip6_sockaddr_4_6(union sockaddr_in_4_6 *, struct in6_addr *, u_int16_t); static int cfil_dispatch_attach_event(struct socket *, uint32_t); static void cfil_info_free(struct socket *, struct cfil_info *); static struct cfil_info * cfil_info_alloc(struct socket *); static int cfil_info_attach_unit(struct socket *, uint32_t); static struct socket * cfil_socket_from_sock_id(cfil_sock_id_t); static int cfil_service_pending_queue(struct socket *, uint32_t, int); static int cfil_data_service_ctl_q(struct socket *, uint32_t, int); static void cfil_info_verify(struct cfil_info *); static int cfil_update_data_offsets(struct socket *, uint32_t, int, uint64_t, uint64_t); static int cfil_acquire_sockbuf(struct socket *, int); static void cfil_release_sockbuf(struct socket *, int); static int cfil_filters_attached(struct socket *); static void cfil_rw_lock_exclusive(lck_rw_t *); static void cfil_rw_unlock_exclusive(lck_rw_t *); static void cfil_rw_lock_shared(lck_rw_t *); static void cfil_rw_unlock_shared(lck_rw_t *); static boolean_t cfil_rw_lock_shared_to_exclusive(lck_rw_t *); static void cfil_rw_lock_exclusive_to_shared(lck_rw_t *); static unsigned int cfil_data_length(struct mbuf *, int *); /* * Content filter global read write lock */ static void cfil_rw_lock_exclusive(lck_rw_t *lck) { void *lr_saved; lr_saved = __builtin_return_address(0); lck_rw_lock_exclusive(lck); cfil_rw_lock_history[cfil_rw_nxt_lck] = lr_saved; cfil_rw_nxt_lck = (cfil_rw_nxt_lck + 1) % CFIL_RW_LCK_MAX; } static void cfil_rw_unlock_exclusive(lck_rw_t *lck) { void *lr_saved; lr_saved = __builtin_return_address(0); lck_rw_unlock_exclusive(lck); cfil_rw_unlock_history[cfil_rw_nxt_unlck] = lr_saved; cfil_rw_nxt_unlck = (cfil_rw_nxt_unlck + 1) % CFIL_RW_LCK_MAX; } static void cfil_rw_lock_shared(lck_rw_t *lck) { void *lr_saved; lr_saved = __builtin_return_address(0); lck_rw_lock_shared(lck); cfil_rw_lock_history[cfil_rw_nxt_lck] = lr_saved; cfil_rw_nxt_lck = (cfil_rw_nxt_lck + 1) % CFIL_RW_LCK_MAX; } static void cfil_rw_unlock_shared(lck_rw_t *lck) { void *lr_saved; lr_saved = __builtin_return_address(0); lck_rw_unlock_shared(lck); cfil_rw_unlock_history[cfil_rw_nxt_unlck] = lr_saved; cfil_rw_nxt_unlck = (cfil_rw_nxt_unlck + 1) % CFIL_RW_LCK_MAX; } static boolean_t cfil_rw_lock_shared_to_exclusive(lck_rw_t *lck) { void *lr_saved; boolean_t upgraded; lr_saved = __builtin_return_address(0); upgraded = lck_rw_lock_shared_to_exclusive(lck); if (upgraded) { cfil_rw_unlock_history[cfil_rw_nxt_unlck] = lr_saved; cfil_rw_nxt_unlck = (cfil_rw_nxt_unlck + 1) % CFIL_RW_LCK_MAX; } return (upgraded); } static void cfil_rw_lock_exclusive_to_shared(lck_rw_t *lck) { void *lr_saved; lr_saved = __builtin_return_address(0); lck_rw_lock_exclusive_to_shared(lck); cfil_rw_lock_history[cfil_rw_nxt_lck] = lr_saved; cfil_rw_nxt_lck = (cfil_rw_nxt_lck + 1) % CFIL_RW_LCK_MAX; } static void cfil_rw_lock_assert_held(lck_rw_t *lck, int exclusive) { lck_rw_assert(lck, exclusive ? LCK_RW_ASSERT_EXCLUSIVE : LCK_RW_ASSERT_HELD); } static void socket_lock_assert_owned(struct socket *so) { lck_mtx_t *mutex_held; if (so->so_proto->pr_getlock != NULL) mutex_held = (*so->so_proto->pr_getlock)(so, 0); else mutex_held = so->so_proto->pr_domain->dom_mtx; lck_mtx_assert(mutex_held, LCK_MTX_ASSERT_OWNED); } /* * Return the number of bytes in the mbuf chain using the same * method as m_length() or sballoc() */ static unsigned int cfil_data_length(struct mbuf *m, int *retmbcnt) { struct mbuf *m0; unsigned int pktlen; int mbcnt; if (retmbcnt == NULL) return (m_length(m)); pktlen = 0; mbcnt = 0; for (m0 = m; m0 != NULL; m0 = m0->m_next) { pktlen += m0->m_len; mbcnt += MSIZE; if (m0->m_flags & M_EXT) mbcnt += m0->m_ext.ext_size; } *retmbcnt = mbcnt; return (pktlen); } /* * Common mbuf queue utilities */ static inline void cfil_queue_init(struct cfil_queue *cfq) { cfq->q_start = 0; cfq->q_end = 0; MBUFQ_INIT(&cfq->q_mq); } static inline uint64_t cfil_queue_drain(struct cfil_queue *cfq) { uint64_t drained = cfq->q_start - cfq->q_end; cfq->q_start = 0; cfq->q_end = 0; MBUFQ_DRAIN(&cfq->q_mq); return (drained); } /* Return 1 when empty, 0 otherwise */ static inline int cfil_queue_empty(struct cfil_queue *cfq) { return (MBUFQ_EMPTY(&cfq->q_mq)); } static inline uint64_t cfil_queue_offset_first(struct cfil_queue *cfq) { return (cfq->q_start); } static inline uint64_t cfil_queue_offset_last(struct cfil_queue *cfq) { return (cfq->q_end); } static inline uint64_t cfil_queue_len(struct cfil_queue *cfq) { return (cfq->q_end - cfq->q_start); } /* * Routines to verify some fundamental assumptions */ static void cfil_queue_verify(struct cfil_queue *cfq) { mbuf_t m; mbuf_t n; uint64_t queuesize = 0; /* Verify offset are ordered */ VERIFY(cfq->q_start <= cfq->q_end); /* * When queue is empty, the offsets are equal otherwise the offsets * are different */ VERIFY((MBUFQ_EMPTY(&cfq->q_mq) && cfq->q_start == cfq->q_end) || (!MBUFQ_EMPTY(&cfq->q_mq) && cfq->q_start != cfq->q_end)); MBUFQ_FOREACH(m, &cfq->q_mq) { size_t chainsize = 0; unsigned int mlen = m_length(m); if (m == (void *)M_TAG_FREE_PATTERN || m->m_next == (void *)M_TAG_FREE_PATTERN || m->m_nextpkt == (void *)M_TAG_FREE_PATTERN) panic("%s - mq %p is free at %p", __func__, &cfq->q_mq, m); for (n = m; n != NULL; n = n->m_next) { if (n->m_type != MT_DATA && n->m_type != MT_HEADER && n->m_type != MT_OOBDATA) panic("%s - %p unsupported type %u", __func__, n, n->m_type); chainsize += n->m_len; } if (mlen != chainsize) panic("%s - %p m_length() %u != chainsize %lu", __func__, m, mlen, chainsize); queuesize += chainsize; } if (queuesize != cfq->q_end - cfq->q_start) panic("%s - %p queuesize %llu != offsetdiffs %llu", __func__, m, queuesize, cfq->q_end - cfq->q_start); } static void cfil_queue_enqueue(struct cfil_queue *cfq, mbuf_t m, size_t len) { CFIL_QUEUE_VERIFY(cfq); MBUFQ_ENQUEUE(&cfq->q_mq, m); cfq->q_end += len; CFIL_QUEUE_VERIFY(cfq); } static void cfil_queue_remove(struct cfil_queue *cfq, mbuf_t m, size_t len) { CFIL_QUEUE_VERIFY(cfq); VERIFY(m_length(m) == len); MBUFQ_REMOVE(&cfq->q_mq, m); MBUFQ_NEXT(m) = NULL; cfq->q_start += len; CFIL_QUEUE_VERIFY(cfq); } static mbuf_t cfil_queue_first(struct cfil_queue *cfq) { return (MBUFQ_FIRST(&cfq->q_mq)); } static mbuf_t cfil_queue_next(struct cfil_queue *cfq, mbuf_t m) { #pragma unused(cfq) return (MBUFQ_NEXT(m)); } static void cfil_entry_buf_verify(struct cfe_buf *cfe_buf) { CFIL_QUEUE_VERIFY(&cfe_buf->cfe_ctl_q); CFIL_QUEUE_VERIFY(&cfe_buf->cfe_pending_q); /* Verify the queues are ordered so that pending is before ctl */ VERIFY(cfe_buf->cfe_ctl_q.q_start >= cfe_buf->cfe_pending_q.q_end); /* The peek offset cannot be less than the pass offset */ VERIFY(cfe_buf->cfe_peek_offset >= cfe_buf->cfe_pass_offset); /* Make sure we've updated the offset we peeked at */ VERIFY(cfe_buf->cfe_ctl_q.q_start <= cfe_buf->cfe_peeked); } static void cfil_entry_verify(struct cfil_entry *entry) { cfil_entry_buf_verify(&entry->cfe_snd); cfil_entry_buf_verify(&entry->cfe_rcv); } static void cfil_info_buf_verify(struct cfi_buf *cfi_buf) { CFIL_QUEUE_VERIFY(&cfi_buf->cfi_inject_q); VERIFY(cfi_buf->cfi_pending_first <= cfi_buf->cfi_pending_last); VERIFY(cfi_buf->cfi_pending_mbcnt >= 0); } static void cfil_info_verify(struct cfil_info *cfil_info) { int i; if (cfil_info == NULL) return; cfil_info_buf_verify(&cfil_info->cfi_snd); cfil_info_buf_verify(&cfil_info->cfi_rcv); for (i = 0; i < MAX_CONTENT_FILTER; i++) cfil_entry_verify(&cfil_info->cfi_entries[i]); } static void verify_content_filter(struct content_filter *cfc) { struct cfil_entry *entry; uint32_t count = 0; VERIFY(cfc->cf_sock_count >= 0); TAILQ_FOREACH(entry, &cfc->cf_sock_entries, cfe_link) { count++; VERIFY(cfc == entry->cfe_filter); } VERIFY(count == cfc->cf_sock_count); } /* * Kernel control socket callbacks */ static errno_t cfil_ctl_connect(kern_ctl_ref kctlref, struct sockaddr_ctl *sac, void **unitinfo) { errno_t error = 0; struct content_filter *cfc = NULL; CFIL_LOG(LOG_NOTICE, ""); cfc = zalloc(content_filter_zone); if (cfc == NULL) { CFIL_LOG(LOG_ERR, "zalloc failed"); error = ENOMEM; goto done; } bzero(cfc, sizeof(struct content_filter)); cfil_rw_lock_exclusive(&cfil_lck_rw); if (content_filters == NULL) { struct content_filter **tmp; cfil_rw_unlock_exclusive(&cfil_lck_rw); MALLOC(tmp, struct content_filter **, MAX_CONTENT_FILTER * sizeof(struct content_filter *), M_TEMP, M_WAITOK | M_ZERO); cfil_rw_lock_exclusive(&cfil_lck_rw); if (tmp == NULL && content_filters == NULL) { error = ENOMEM; cfil_rw_unlock_exclusive(&cfil_lck_rw); goto done; } /* Another thread may have won the race */ if (content_filters != NULL) FREE(tmp, M_TEMP); else content_filters = tmp; } if (sac->sc_unit == 0 || sac->sc_unit > MAX_CONTENT_FILTER) { CFIL_LOG(LOG_ERR, "bad sc_unit %u", sac->sc_unit); error = EINVAL; } else if (content_filters[sac->sc_unit - 1] != NULL) { CFIL_LOG(LOG_ERR, "sc_unit %u in use", sac->sc_unit); error = EADDRINUSE; } else { /* * kernel control socket kcunit numbers start at 1 */ content_filters[sac->sc_unit - 1] = cfc; cfc->cf_kcref = kctlref; cfc->cf_kcunit = sac->sc_unit; TAILQ_INIT(&cfc->cf_sock_entries); *unitinfo = cfc; cfil_active_count++; } cfil_rw_unlock_exclusive(&cfil_lck_rw); done: if (error != 0 && cfc != NULL) zfree(content_filter_zone, cfc); if (error == 0) OSIncrementAtomic(&cfil_stats.cfs_ctl_connect_ok); else OSIncrementAtomic(&cfil_stats.cfs_ctl_connect_fail); CFIL_LOG(LOG_INFO, "return %d cfil_active_count %u kcunit %u", error, cfil_active_count, sac->sc_unit); return (error); } static errno_t cfil_ctl_disconnect(kern_ctl_ref kctlref, u_int32_t kcunit, void *unitinfo) { #pragma unused(kctlref) errno_t error = 0; struct content_filter *cfc; struct cfil_entry *entry; CFIL_LOG(LOG_NOTICE, ""); if (content_filters == NULL) { CFIL_LOG(LOG_ERR, "no content filter"); error = EINVAL; goto done; } if (kcunit > MAX_CONTENT_FILTER) { CFIL_LOG(LOG_ERR, "kcunit %u > MAX_CONTENT_FILTER (%d)", kcunit, MAX_CONTENT_FILTER); error = EINVAL; goto done; } cfc = (struct content_filter *)unitinfo; if (cfc == NULL) goto done; cfil_rw_lock_exclusive(&cfil_lck_rw); if (content_filters[kcunit - 1] != cfc || cfc->cf_kcunit != kcunit) { CFIL_LOG(LOG_ERR, "bad unit info %u)", kcunit); cfil_rw_unlock_exclusive(&cfil_lck_rw); goto done; } cfc->cf_flags |= CFF_DETACHING; /* * Remove all sockets from the filter */ while ((entry = TAILQ_FIRST(&cfc->cf_sock_entries)) != NULL) { cfil_rw_lock_assert_held(&cfil_lck_rw, 1); verify_content_filter(cfc); /* * Accept all outstanding data by pushing to next filter * or back to socket * * TBD: Actually we should make sure all data has been pushed * back to socket */ if (entry->cfe_cfil_info && entry->cfe_cfil_info->cfi_so) { struct cfil_info *cfil_info = entry->cfe_cfil_info; struct socket *so = cfil_info->cfi_so; /* Need to let data flow immediately */ entry->cfe_flags |= CFEF_SENT_SOCK_ATTACHED | CFEF_DATA_START; /* * Respect locking hierarchy */ cfil_rw_unlock_exclusive(&cfil_lck_rw); socket_lock(so, 1); /* * When cfe_filter is NULL the filter is detached * and the entry has been removed from cf_sock_entries */ if (so->so_cfil == NULL || entry->cfe_filter == NULL) { cfil_rw_lock_exclusive(&cfil_lck_rw); goto release; } (void) cfil_action_data_pass(so, kcunit, 1, CFM_MAX_OFFSET, CFM_MAX_OFFSET); (void) cfil_action_data_pass(so, kcunit, 0, CFM_MAX_OFFSET, CFM_MAX_OFFSET); cfil_rw_lock_exclusive(&cfil_lck_rw); /* * Check again as the socket may have been unlocked * when when calling cfil_acquire_sockbuf() */ if (so->so_cfil == NULL || entry->cfe_filter == NULL) goto release; /* The filter is now detached */ entry->cfe_flags |= CFEF_CFIL_DETACHED; CFIL_LOG(LOG_NOTICE, "so %llx detached %u", (uint64_t)VM_KERNEL_ADDRPERM(so), kcunit); if ((so->so_cfil->cfi_flags & CFIF_CLOSE_WAIT) && cfil_filters_attached(so) == 0) { CFIL_LOG(LOG_NOTICE, "so %llx waking", (uint64_t)VM_KERNEL_ADDRPERM(so)); wakeup((caddr_t)&so->so_cfil); } /* * Remove the filter entry from the content filter * but leave the rest of the state intact as the queues * may not be empty yet */ entry->cfe_filter = NULL; entry->cfe_necp_control_unit = 0; TAILQ_REMOVE(&cfc->cf_sock_entries, entry, cfe_link); cfc->cf_sock_count--; release: socket_unlock(so, 1); } } verify_content_filter(cfc); VERIFY(cfc->cf_sock_count == 0); /* * Make filter inactive */ content_filters[kcunit - 1] = NULL; cfil_active_count--; cfil_rw_unlock_exclusive(&cfil_lck_rw); zfree(content_filter_zone, cfc); done: if (error == 0) OSIncrementAtomic(&cfil_stats.cfs_ctl_disconnect_ok); else OSIncrementAtomic(&cfil_stats.cfs_ctl_disconnect_fail); CFIL_LOG(LOG_INFO, "return %d cfil_active_count %u kcunit %u", error, cfil_active_count, kcunit); return (error); } /* * cfil_acquire_sockbuf() * * Prevent any other thread from acquiring the sockbuf * We use sb_cfil_thread as a semaphore to prevent other threads from * messing with the sockbuf -- see sblock() * Note: We do not set SB_LOCK here because the thread may check or modify * SB_LOCK several times until it calls cfil_release_sockbuf() -- currently * sblock(), sbunlock() or sodefunct() */ static int cfil_acquire_sockbuf(struct socket *so, int outgoing) { thread_t tp = current_thread(); struct sockbuf *sb = outgoing ? &so->so_snd : &so->so_rcv; lck_mtx_t *mutex_held; int error = 0; /* * Wait until no thread is holding the sockbuf and other content * filter threads have released the sockbuf */ while ((sb->sb_flags & SB_LOCK) || (sb->sb_cfil_thread != NULL && sb->sb_cfil_thread != tp)) { if (so->so_proto->pr_getlock != NULL) mutex_held = (*so->so_proto->pr_getlock)(so, 0); else mutex_held = so->so_proto->pr_domain->dom_mtx; lck_mtx_assert(mutex_held, LCK_MTX_ASSERT_OWNED); sb->sb_wantlock++; VERIFY(sb->sb_wantlock != 0); msleep(&sb->sb_flags, mutex_held, PSOCK, "cfil_acquire_sockbuf", NULL); VERIFY(sb->sb_wantlock != 0); sb->sb_wantlock--; } /* * Use reference count for repetitive calls on same thread */ if (sb->sb_cfil_refs == 0) { VERIFY(sb->sb_cfil_thread == NULL); VERIFY((sb->sb_flags & SB_LOCK) == 0); sb->sb_cfil_thread = tp; sb->sb_flags |= SB_LOCK; } sb->sb_cfil_refs++; /* We acquire the socket buffer when we need to cleanup */ if (so->so_cfil == NULL) { CFIL_LOG(LOG_ERR, "so %llx cfil detached", (uint64_t)VM_KERNEL_ADDRPERM(so)); error = 0; } else if (so->so_cfil->cfi_flags & CFIF_DROP) { CFIL_LOG(LOG_ERR, "so %llx drop set", (uint64_t)VM_KERNEL_ADDRPERM(so)); error = EPIPE; } return (error); } static void cfil_release_sockbuf(struct socket *so, int outgoing) { struct sockbuf *sb = outgoing ? &so->so_snd : &so->so_rcv; thread_t tp = current_thread(); socket_lock_assert_owned(so); if (sb->sb_cfil_thread != NULL && sb->sb_cfil_thread != tp) panic("%s sb_cfil_thread %p not current %p", __func__, sb->sb_cfil_thread, tp); /* * Don't panic if we are defunct because SB_LOCK has * been cleared by sodefunct() */ if (!(so->so_flags & SOF_DEFUNCT) && !(sb->sb_flags & SB_LOCK)) panic("%s SB_LOCK not set on %p", __func__, sb); /* * We can unlock when the thread unwinds to the last reference */ sb->sb_cfil_refs--; if (sb->sb_cfil_refs == 0) { sb->sb_cfil_thread = NULL; sb->sb_flags &= ~SB_LOCK; if (sb->sb_wantlock > 0) wakeup(&sb->sb_flags); } } cfil_sock_id_t cfil_sock_id_from_socket(struct socket *so) { if ((so->so_flags & SOF_CONTENT_FILTER) && so->so_cfil) return (so->so_cfil->cfi_sock_id); else return (CFIL_SOCK_ID_NONE); } static struct socket * cfil_socket_from_sock_id(cfil_sock_id_t cfil_sock_id) { struct socket *so = NULL; u_int64_t gencnt = cfil_sock_id >> 32; u_int32_t flowhash = (u_int32_t)(cfil_sock_id & 0x0ffffffff); struct inpcb *inp = NULL; struct inpcbinfo *pcbinfo = &tcbinfo; lck_rw_lock_shared(pcbinfo->ipi_lock); LIST_FOREACH(inp, pcbinfo->ipi_listhead, inp_list) { if (inp->inp_state != INPCB_STATE_DEAD && inp->inp_socket != NULL && inp->inp_flowhash == flowhash && (inp->inp_socket->so_gencnt & 0x0ffffffff) == gencnt && inp->inp_socket->so_cfil != NULL) { so = inp->inp_socket; break; } } lck_rw_done(pcbinfo->ipi_lock); if (so == NULL) { OSIncrementAtomic(&cfil_stats.cfs_sock_id_not_found); CFIL_LOG(LOG_DEBUG, "no socket for sock_id %llx gencnt %llx flowhash %x", cfil_sock_id, gencnt, flowhash); } return (so); } static errno_t cfil_ctl_send(kern_ctl_ref kctlref, u_int32_t kcunit, void *unitinfo, mbuf_t m, int flags) { #pragma unused(kctlref, flags) errno_t error = 0; struct cfil_msg_hdr *msghdr; struct content_filter *cfc = (struct content_filter *)unitinfo; struct socket *so; struct cfil_msg_action *action_msg; struct cfil_entry *entry; CFIL_LOG(LOG_INFO, ""); if (content_filters == NULL) { CFIL_LOG(LOG_ERR, "no content filter"); error = EINVAL; goto done; } if (kcunit > MAX_CONTENT_FILTER) { CFIL_LOG(LOG_ERR, "kcunit %u > MAX_CONTENT_FILTER (%d)", kcunit, MAX_CONTENT_FILTER); error = EINVAL; goto done; } if (m_length(m) < sizeof(struct cfil_msg_hdr)) { CFIL_LOG(LOG_ERR, "too short %u", m_length(m)); error = EINVAL; goto done; } msghdr = (struct cfil_msg_hdr *)mbuf_data(m); if (msghdr->cfm_version != CFM_VERSION_CURRENT) { CFIL_LOG(LOG_ERR, "bad version %u", msghdr->cfm_version); error = EINVAL; goto done; } if (msghdr->cfm_type != CFM_TYPE_ACTION) { CFIL_LOG(LOG_ERR, "bad type %u", msghdr->cfm_type); error = EINVAL; goto done; } /* Validate action operation */ switch (msghdr->cfm_op) { case CFM_OP_DATA_UPDATE: OSIncrementAtomic( &cfil_stats.cfs_ctl_action_data_update); break; case CFM_OP_DROP: OSIncrementAtomic(&cfil_stats.cfs_ctl_action_drop); break; default: OSIncrementAtomic(&cfil_stats.cfs_ctl_action_bad_op); CFIL_LOG(LOG_ERR, "bad op %u", msghdr->cfm_op); error = EINVAL; goto done; } if (msghdr->cfm_len != sizeof(struct cfil_msg_action)) { OSIncrementAtomic(&cfil_stats.cfs_ctl_action_bad_len); error = EINVAL; CFIL_LOG(LOG_ERR, "bad len: %u for op %u", msghdr->cfm_len, msghdr->cfm_op); goto done; } cfil_rw_lock_shared(&cfil_lck_rw); if (cfc != (void *)content_filters[kcunit - 1]) { CFIL_LOG(LOG_ERR, "unitinfo does not match for kcunit %u", kcunit); error = EINVAL; cfil_rw_unlock_shared(&cfil_lck_rw); goto done; } so = cfil_socket_from_sock_id(msghdr->cfm_sock_id); if (so == NULL) { CFIL_LOG(LOG_NOTICE, "bad sock_id %llx", msghdr->cfm_sock_id); error = EINVAL; cfil_rw_unlock_shared(&cfil_lck_rw); goto done; } cfil_rw_unlock_shared(&cfil_lck_rw); socket_lock(so, 1); if (so->so_cfil == NULL) { CFIL_LOG(LOG_NOTICE, "so %llx not attached", (uint64_t)VM_KERNEL_ADDRPERM(so)); error = EINVAL; goto unlock; } else if (so->so_cfil->cfi_flags & CFIF_DROP) { CFIL_LOG(LOG_NOTICE, "so %llx drop set", (uint64_t)VM_KERNEL_ADDRPERM(so)); error = EINVAL; goto unlock; } entry = &so->so_cfil->cfi_entries[kcunit - 1]; if (entry->cfe_filter == NULL) { CFIL_LOG(LOG_NOTICE, "so %llx no filter", (uint64_t)VM_KERNEL_ADDRPERM(so)); error = EINVAL; goto unlock; } if (entry->cfe_flags & CFEF_SENT_SOCK_ATTACHED) entry->cfe_flags |= CFEF_DATA_START; else { CFIL_LOG(LOG_ERR, "so %llx attached not sent for %u", (uint64_t)VM_KERNEL_ADDRPERM(so), kcunit); error = EINVAL; goto unlock; } microuptime(&entry->cfe_last_action); action_msg = (struct cfil_msg_action *)msghdr; switch (msghdr->cfm_op) { case CFM_OP_DATA_UPDATE: if (action_msg->cfa_out_peek_offset != 0 || action_msg->cfa_out_pass_offset != 0) error = cfil_action_data_pass(so, kcunit, 1, action_msg->cfa_out_pass_offset, action_msg->cfa_out_peek_offset); if (error == EJUSTRETURN) error = 0; if (error != 0) break; if (action_msg->cfa_in_peek_offset != 0 || action_msg->cfa_in_pass_offset != 0) error = cfil_action_data_pass(so, kcunit, 0, action_msg->cfa_in_pass_offset, action_msg->cfa_in_peek_offset); if (error == EJUSTRETURN) error = 0; break; case CFM_OP_DROP: error = cfil_action_drop(so, kcunit); break; default: error = EINVAL; break; } unlock: socket_unlock(so, 1); done: mbuf_freem(m); if (error == 0) OSIncrementAtomic(&cfil_stats.cfs_ctl_send_ok); else OSIncrementAtomic(&cfil_stats.cfs_ctl_send_bad); return (error); } static errno_t cfil_ctl_getopt(kern_ctl_ref kctlref, u_int32_t kcunit, void *unitinfo, int opt, void *data, size_t *len) { #pragma unused(kctlref, opt) errno_t error = 0; struct content_filter *cfc = (struct content_filter *)unitinfo; CFIL_LOG(LOG_NOTICE, ""); cfil_rw_lock_shared(&cfil_lck_rw); if (content_filters == NULL) { CFIL_LOG(LOG_ERR, "no content filter"); error = EINVAL; goto done; } if (kcunit > MAX_CONTENT_FILTER) { CFIL_LOG(LOG_ERR, "kcunit %u > MAX_CONTENT_FILTER (%d)", kcunit, MAX_CONTENT_FILTER); error = EINVAL; goto done; } if (cfc != (void *)content_filters[kcunit - 1]) { CFIL_LOG(LOG_ERR, "unitinfo does not match for kcunit %u", kcunit); error = EINVAL; goto done; } switch (opt) { case CFIL_OPT_NECP_CONTROL_UNIT: if (*len < sizeof(uint32_t)) { CFIL_LOG(LOG_ERR, "len too small %lu", *len); error = EINVAL; goto done; } if (data != NULL) *(uint32_t *)data = cfc->cf_necp_control_unit; break; default: error = ENOPROTOOPT; break; } done: cfil_rw_unlock_shared(&cfil_lck_rw); return (error); } static errno_t cfil_ctl_setopt(kern_ctl_ref kctlref, u_int32_t kcunit, void *unitinfo, int opt, void *data, size_t len) { #pragma unused(kctlref, opt) errno_t error = 0; struct content_filter *cfc = (struct content_filter *)unitinfo; CFIL_LOG(LOG_NOTICE, ""); cfil_rw_lock_exclusive(&cfil_lck_rw); if (content_filters == NULL) { CFIL_LOG(LOG_ERR, "no content filter"); error = EINVAL; goto done; } if (kcunit > MAX_CONTENT_FILTER) { CFIL_LOG(LOG_ERR, "kcunit %u > MAX_CONTENT_FILTER (%d)", kcunit, MAX_CONTENT_FILTER); error = EINVAL; goto done; } if (cfc != (void *)content_filters[kcunit - 1]) { CFIL_LOG(LOG_ERR, "unitinfo does not match for kcunit %u", kcunit); error = EINVAL; goto done; } switch (opt) { case CFIL_OPT_NECP_CONTROL_UNIT: if (len < sizeof(uint32_t)) { CFIL_LOG(LOG_ERR, "CFIL_OPT_NECP_CONTROL_UNIT " "len too small %lu", len); error = EINVAL; goto done; } if (cfc->cf_necp_control_unit != 0) { CFIL_LOG(LOG_ERR, "CFIL_OPT_NECP_CONTROL_UNIT " "already set %u", cfc->cf_necp_control_unit); error = EINVAL; goto done; } cfc->cf_necp_control_unit = *(uint32_t *)data; break; default: error = ENOPROTOOPT; break; } done: cfil_rw_unlock_exclusive(&cfil_lck_rw); return (error); } static void cfil_ctl_rcvd(kern_ctl_ref kctlref, u_int32_t kcunit, void *unitinfo, int flags) { #pragma unused(kctlref, flags) struct content_filter *cfc = (struct content_filter *)unitinfo; struct socket *so = NULL; int error; struct cfil_entry *entry; CFIL_LOG(LOG_INFO, ""); if (content_filters == NULL) { CFIL_LOG(LOG_ERR, "no content filter"); OSIncrementAtomic(&cfil_stats.cfs_ctl_rcvd_bad); return; } if (kcunit > MAX_CONTENT_FILTER) { CFIL_LOG(LOG_ERR, "kcunit %u > MAX_CONTENT_FILTER (%d)", kcunit, MAX_CONTENT_FILTER); OSIncrementAtomic(&cfil_stats.cfs_ctl_rcvd_bad); return; } cfil_rw_lock_shared(&cfil_lck_rw); if (cfc != (void *)content_filters[kcunit - 1]) { CFIL_LOG(LOG_ERR, "unitinfo does not match for kcunit %u", kcunit); OSIncrementAtomic(&cfil_stats.cfs_ctl_rcvd_bad); goto done; } /* Let's assume the flow control is lifted */ if (cfc->cf_flags & CFF_FLOW_CONTROLLED) { if (!cfil_rw_lock_shared_to_exclusive(&cfil_lck_rw)) cfil_rw_lock_exclusive(&cfil_lck_rw); cfc->cf_flags &= ~CFF_FLOW_CONTROLLED; cfil_rw_lock_exclusive_to_shared(&cfil_lck_rw); lck_rw_assert(&cfil_lck_rw, LCK_RW_ASSERT_SHARED); } /* * Flow control will be raised again as soon as an entry cannot enqueue * to the kernel control socket */ while ((cfc->cf_flags & CFF_FLOW_CONTROLLED) == 0) { verify_content_filter(cfc); cfil_rw_lock_assert_held(&cfil_lck_rw, 0); /* Find an entry that is flow controlled */ TAILQ_FOREACH(entry, &cfc->cf_sock_entries, cfe_link) { if (entry->cfe_cfil_info == NULL || entry->cfe_cfil_info->cfi_so == NULL) continue; if ((entry->cfe_flags & CFEF_FLOW_CONTROLLED) == 0) continue; } if (entry == NULL) break; OSIncrementAtomic(&cfil_stats.cfs_ctl_rcvd_flow_lift); so = entry->cfe_cfil_info->cfi_so; cfil_rw_unlock_shared(&cfil_lck_rw); socket_lock(so, 1); do { error = cfil_acquire_sockbuf(so, 1); if (error == 0) error = cfil_data_service_ctl_q(so, kcunit, 1); cfil_release_sockbuf(so, 1); if (error != 0) break; error = cfil_acquire_sockbuf(so, 0); if (error == 0) error = cfil_data_service_ctl_q(so, kcunit, 0); cfil_release_sockbuf(so, 0); } while (0); socket_lock_assert_owned(so); socket_unlock(so, 1); cfil_rw_lock_shared(&cfil_lck_rw); } done: cfil_rw_unlock_shared(&cfil_lck_rw); } void cfil_init(void) { struct kern_ctl_reg kern_ctl; errno_t error = 0; vm_size_t content_filter_size = 0; /* size of content_filter */ vm_size_t cfil_info_size = 0; /* size of cfil_info */ CFIL_LOG(LOG_NOTICE, ""); /* * Compile time verifications */ _CASSERT(CFIL_MAX_FILTER_COUNT == MAX_CONTENT_FILTER); _CASSERT(sizeof(struct cfil_filter_stat) % sizeof(uint32_t) == 0); _CASSERT(sizeof(struct cfil_entry_stat) % sizeof(uint32_t) == 0); _CASSERT(sizeof(struct cfil_sock_stat) % sizeof(uint32_t) == 0); /* * Runtime time verifications */ VERIFY(IS_P2ALIGNED(&cfil_stats.cfs_ctl_q_in_enqueued, sizeof(uint32_t))); VERIFY(IS_P2ALIGNED(&cfil_stats.cfs_ctl_q_out_enqueued, sizeof(uint32_t))); VERIFY(IS_P2ALIGNED(&cfil_stats.cfs_ctl_q_in_peeked, sizeof(uint32_t))); VERIFY(IS_P2ALIGNED(&cfil_stats.cfs_ctl_q_out_peeked, sizeof(uint32_t))); VERIFY(IS_P2ALIGNED(&cfil_stats.cfs_pending_q_in_enqueued, sizeof(uint32_t))); VERIFY(IS_P2ALIGNED(&cfil_stats.cfs_pending_q_out_enqueued, sizeof(uint32_t))); VERIFY(IS_P2ALIGNED(&cfil_stats.cfs_inject_q_in_enqueued, sizeof(uint32_t))); VERIFY(IS_P2ALIGNED(&cfil_stats.cfs_inject_q_out_enqueued, sizeof(uint32_t))); VERIFY(IS_P2ALIGNED(&cfil_stats.cfs_inject_q_in_passed, sizeof(uint32_t))); VERIFY(IS_P2ALIGNED(&cfil_stats.cfs_inject_q_out_passed, sizeof(uint32_t))); /* * Zone for content filters kernel control sockets */ content_filter_size = sizeof(struct content_filter); content_filter_zone = zinit(content_filter_size, CONTENT_FILTER_ZONE_MAX * content_filter_size, 0, CONTENT_FILTER_ZONE_NAME); if (content_filter_zone == NULL) { panic("%s: zinit(%s) failed", __func__, CONTENT_FILTER_ZONE_NAME); /* NOTREACHED */ } zone_change(content_filter_zone, Z_CALLERACCT, FALSE); zone_change(content_filter_zone, Z_EXPAND, TRUE); /* * Zone for per socket content filters */ cfil_info_size = sizeof(struct cfil_info); cfil_info_zone = zinit(cfil_info_size, CFIL_INFO_ZONE_MAX * cfil_info_size, 0, CFIL_INFO_ZONE_NAME); if (cfil_info_zone == NULL) { panic("%s: zinit(%s) failed", __func__, CFIL_INFO_ZONE_NAME); /* NOTREACHED */ } zone_change(cfil_info_zone, Z_CALLERACCT, FALSE); zone_change(cfil_info_zone, Z_EXPAND, TRUE); /* * Allocate locks */ cfil_lck_grp_attr = lck_grp_attr_alloc_init(); if (cfil_lck_grp_attr == NULL) { panic("%s: lck_grp_attr_alloc_init failed", __func__); /* NOTREACHED */ } cfil_lck_grp = lck_grp_alloc_init("content filter", cfil_lck_grp_attr); if (cfil_lck_grp == NULL) { panic("%s: lck_grp_alloc_init failed", __func__); /* NOTREACHED */ } cfil_lck_attr = lck_attr_alloc_init(); if (cfil_lck_attr == NULL) { panic("%s: lck_attr_alloc_init failed", __func__); /* NOTREACHED */ } lck_rw_init(&cfil_lck_rw, cfil_lck_grp, cfil_lck_attr); TAILQ_INIT(&cfil_sock_head); /* * Register kernel control */ bzero(&kern_ctl, sizeof(kern_ctl)); strlcpy(kern_ctl.ctl_name, CONTENT_FILTER_CONTROL_NAME, sizeof(kern_ctl.ctl_name)); kern_ctl.ctl_flags = CTL_FLAG_PRIVILEGED | CTL_FLAG_REG_EXTENDED; kern_ctl.ctl_sendsize = 512 * 1024; /* enough? */ kern_ctl.ctl_recvsize = 512 * 1024; /* enough? */ kern_ctl.ctl_connect = cfil_ctl_connect; kern_ctl.ctl_disconnect = cfil_ctl_disconnect; kern_ctl.ctl_send = cfil_ctl_send; kern_ctl.ctl_getopt = cfil_ctl_getopt; kern_ctl.ctl_setopt = cfil_ctl_setopt; kern_ctl.ctl_rcvd = cfil_ctl_rcvd; error = ctl_register(&kern_ctl, &cfil_kctlref); if (error != 0) { CFIL_LOG(LOG_ERR, "ctl_register failed: %d", error); return; } } struct cfil_info * cfil_info_alloc(struct socket *so) { int kcunit; struct cfil_info *cfil_info = NULL; struct inpcb *inp = sotoinpcb(so); CFIL_LOG(LOG_INFO, ""); socket_lock_assert_owned(so); cfil_info = zalloc(cfil_info_zone); if (cfil_info == NULL) goto done; bzero(cfil_info, sizeof(struct cfil_info)); cfil_queue_init(&cfil_info->cfi_snd.cfi_inject_q); cfil_queue_init(&cfil_info->cfi_rcv.cfi_inject_q); for (kcunit = 1; kcunit <= MAX_CONTENT_FILTER; kcunit++) { struct cfil_entry *entry; entry = &cfil_info->cfi_entries[kcunit - 1]; entry->cfe_cfil_info = cfil_info; /* Initialize the filter entry */ entry->cfe_filter = NULL; entry->cfe_flags = 0; entry->cfe_necp_control_unit = 0; entry->cfe_snd.cfe_pass_offset = 0; entry->cfe_snd.cfe_peek_offset = 0; entry->cfe_snd.cfe_peeked = 0; entry->cfe_rcv.cfe_pass_offset = 0; entry->cfe_rcv.cfe_peek_offset = 0; entry->cfe_rcv.cfe_peeked = 0; cfil_queue_init(&entry->cfe_snd.cfe_pending_q); cfil_queue_init(&entry->cfe_rcv.cfe_pending_q); cfil_queue_init(&entry->cfe_snd.cfe_ctl_q); cfil_queue_init(&entry->cfe_rcv.cfe_ctl_q); } cfil_rw_lock_exclusive(&cfil_lck_rw); so->so_cfil = cfil_info; cfil_info->cfi_so = so; /* * Create a cfi_sock_id that's not the socket pointer! */ if (inp->inp_flowhash == 0) inp->inp_flowhash = inp_calc_flowhash(inp); cfil_info->cfi_sock_id = ((so->so_gencnt << 32) | inp->inp_flowhash); TAILQ_INSERT_TAIL(&cfil_sock_head, cfil_info, cfi_link); cfil_sock_attached_count++; cfil_rw_unlock_exclusive(&cfil_lck_rw); done: if (cfil_info != NULL) OSIncrementAtomic(&cfil_stats.cfs_cfi_alloc_ok); else OSIncrementAtomic(&cfil_stats.cfs_cfi_alloc_fail); return (cfil_info); } int cfil_info_attach_unit(struct socket *so, uint32_t filter_control_unit) { int kcunit; struct cfil_info *cfil_info = so->so_cfil; int attached = 0; CFIL_LOG(LOG_INFO, ""); socket_lock_assert_owned(so); cfil_rw_lock_exclusive(&cfil_lck_rw); for (kcunit = 1; content_filters != NULL && kcunit <= MAX_CONTENT_FILTER; kcunit++) { struct content_filter *cfc = content_filters[kcunit - 1]; struct cfil_entry *entry; if (cfc == NULL) continue; if (cfc->cf_necp_control_unit != filter_control_unit) continue; entry = &cfil_info->cfi_entries[kcunit - 1]; entry->cfe_filter = cfc; entry->cfe_necp_control_unit = filter_control_unit; TAILQ_INSERT_TAIL(&cfc->cf_sock_entries, entry, cfe_link); cfc->cf_sock_count++; verify_content_filter(cfc); attached = 1; entry->cfe_flags |= CFEF_CFIL_ATTACHED; break; } cfil_rw_unlock_exclusive(&cfil_lck_rw); return (attached); } static void cfil_info_free(struct socket *so, struct cfil_info *cfil_info) { int kcunit; uint64_t in_drain = 0; uint64_t out_drained = 0; so->so_cfil = NULL; if (so->so_flags & SOF_CONTENT_FILTER) { so->so_flags &= ~SOF_CONTENT_FILTER; so->so_usecount--; } if (cfil_info == NULL) return; CFIL_LOG(LOG_INFO, ""); cfil_rw_lock_exclusive(&cfil_lck_rw); for (kcunit = 1; content_filters != NULL && kcunit <= MAX_CONTENT_FILTER; kcunit++) { struct cfil_entry *entry; struct content_filter *cfc; entry = &cfil_info->cfi_entries[kcunit - 1]; /* Don't be silly and try to detach twice */ if (entry->cfe_filter == NULL) continue; cfc = content_filters[kcunit - 1]; VERIFY(cfc == entry->cfe_filter); entry->cfe_filter = NULL; entry->cfe_necp_control_unit = 0; TAILQ_REMOVE(&cfc->cf_sock_entries, entry, cfe_link); cfc->cf_sock_count--; verify_content_filter(cfc); } cfil_sock_attached_count--; TAILQ_REMOVE(&cfil_sock_head, cfil_info, cfi_link); out_drained += cfil_queue_drain(&cfil_info->cfi_snd.cfi_inject_q); in_drain += cfil_queue_drain(&cfil_info->cfi_rcv.cfi_inject_q); for (kcunit = 1; kcunit <= MAX_CONTENT_FILTER; kcunit++) { struct cfil_entry *entry; entry = &cfil_info->cfi_entries[kcunit - 1]; out_drained += cfil_queue_drain(&entry->cfe_snd.cfe_pending_q); in_drain += cfil_queue_drain(&entry->cfe_rcv.cfe_pending_q); out_drained += cfil_queue_drain(&entry->cfe_snd.cfe_ctl_q); in_drain += cfil_queue_drain(&entry->cfe_rcv.cfe_ctl_q); } cfil_rw_unlock_exclusive(&cfil_lck_rw); if (out_drained) OSIncrementAtomic(&cfil_stats.cfs_flush_out_free); if (in_drain) OSIncrementAtomic(&cfil_stats.cfs_flush_in_free); zfree(cfil_info_zone, cfil_info); } /* * Entry point from Sockets layer * The socket is locked. */ errno_t cfil_sock_attach(struct socket *so) { errno_t error = 0; uint32_t filter_control_unit; socket_lock_assert_owned(so); /* Limit ourselves to TCP */ if ((so->so_proto->pr_domain->dom_family != PF_INET && so->so_proto->pr_domain->dom_family != PF_INET6) || so->so_proto->pr_type != SOCK_STREAM || so->so_proto->pr_protocol != IPPROTO_TCP) goto done; filter_control_unit = necp_socket_get_content_filter_control_unit(so); if (filter_control_unit == 0) goto done; if ((filter_control_unit & NECP_MASK_USERSPACE_ONLY) != 0) { OSIncrementAtomic(&cfil_stats.cfs_sock_userspace_only); goto done; } if (cfil_active_count == 0) { OSIncrementAtomic(&cfil_stats.cfs_sock_attach_in_vain); goto done; } if (so->so_cfil != NULL) { OSIncrementAtomic(&cfil_stats.cfs_sock_attach_already); CFIL_LOG(LOG_ERR, "already attached"); } else { cfil_info_alloc(so); if (so->so_cfil == NULL) { error = ENOMEM; OSIncrementAtomic(&cfil_stats.cfs_sock_attach_no_mem); goto done; } } if (cfil_info_attach_unit(so, filter_control_unit) == 0) { CFIL_LOG(LOG_ERR, "cfil_info_attach_unit(%u) failed", filter_control_unit); OSIncrementAtomic(&cfil_stats.cfs_sock_attach_failed); goto done; } CFIL_LOG(LOG_INFO, "so %llx filter_control_unit %u sockid %llx", (uint64_t)VM_KERNEL_ADDRPERM(so), filter_control_unit, so->so_cfil->cfi_sock_id); so->so_flags |= SOF_CONTENT_FILTER; OSIncrementAtomic(&cfil_stats.cfs_sock_attached); /* Hold a reference on the socket */ so->so_usecount++; error = cfil_dispatch_attach_event(so, filter_control_unit); /* We can recover from flow control or out of memory errors */ if (error == ENOBUFS || error == ENOMEM) error = 0; else if (error != 0) goto done; CFIL_INFO_VERIFY(so->so_cfil); done: return (error); } /* * Entry point from Sockets layer * The socket is locked. */ errno_t cfil_sock_detach(struct socket *so) { if (so->so_cfil) { cfil_info_free(so, so->so_cfil); OSIncrementAtomic(&cfil_stats.cfs_sock_detached); } return (0); } static int cfil_dispatch_attach_event(struct socket *so, uint32_t filter_control_unit) { errno_t error = 0; struct cfil_entry *entry = NULL; struct cfil_msg_sock_attached msg_attached; uint32_t kcunit; struct content_filter *cfc; socket_lock_assert_owned(so); cfil_rw_lock_shared(&cfil_lck_rw); if (so->so_proto == NULL || so->so_proto->pr_domain == NULL) { error = EINVAL; goto done; } /* * Find the matching filter unit */ for (kcunit = 1; kcunit <= MAX_CONTENT_FILTER; kcunit++) { cfc = content_filters[kcunit - 1]; if (cfc == NULL) continue; if (cfc->cf_necp_control_unit != filter_control_unit) continue; entry = &so->so_cfil->cfi_entries[kcunit - 1]; if (entry->cfe_filter == NULL) continue; VERIFY(cfc == entry->cfe_filter); break; } if (entry == NULL || entry->cfe_filter == NULL) goto done; if ((entry->cfe_flags & CFEF_SENT_SOCK_ATTACHED)) goto done; CFIL_LOG(LOG_INFO, "so %llx filter_control_unit %u kcunit %u", (uint64_t)VM_KERNEL_ADDRPERM(so), filter_control_unit, kcunit); /* Would be wasteful to try when flow controlled */ if (cfc->cf_flags & CFF_FLOW_CONTROLLED) { error = ENOBUFS; goto done; } bzero(&msg_attached, sizeof(struct cfil_msg_sock_attached)); msg_attached.cfs_msghdr.cfm_len = sizeof(struct cfil_msg_sock_attached); msg_attached.cfs_msghdr.cfm_version = CFM_VERSION_CURRENT; msg_attached.cfs_msghdr.cfm_type = CFM_TYPE_EVENT; msg_attached.cfs_msghdr.cfm_op = CFM_OP_SOCKET_ATTACHED; msg_attached.cfs_msghdr.cfm_sock_id = entry->cfe_cfil_info->cfi_sock_id; msg_attached.cfs_sock_family = so->so_proto->pr_domain->dom_family; msg_attached.cfs_sock_type = so->so_proto->pr_type; msg_attached.cfs_sock_protocol = so->so_proto->pr_protocol; msg_attached.cfs_pid = so->last_pid; memcpy(msg_attached.cfs_uuid, so->last_uuid, sizeof(uuid_t)); if (so->so_flags & SOF_DELEGATED) { msg_attached.cfs_e_pid = so->e_pid; memcpy(msg_attached.cfs_e_uuid, so->e_uuid, sizeof(uuid_t)); } else { msg_attached.cfs_e_pid = so->last_pid; memcpy(msg_attached.cfs_e_uuid, so->last_uuid, sizeof(uuid_t)); } error = ctl_enqueuedata(entry->cfe_filter->cf_kcref, entry->cfe_filter->cf_kcunit, &msg_attached, sizeof(struct cfil_msg_sock_attached), CTL_DATA_EOR); if (error != 0) { CFIL_LOG(LOG_ERR, "ctl_enqueuedata() failed: %d", error); goto done; } microuptime(&entry->cfe_last_event); entry->cfe_flags |= CFEF_SENT_SOCK_ATTACHED; OSIncrementAtomic(&cfil_stats.cfs_attach_event_ok); done: /* We can recover from flow control */ if (error == ENOBUFS) { entry->cfe_flags |= CFEF_FLOW_CONTROLLED; OSIncrementAtomic(&cfil_stats.cfs_attach_event_flow_control); if (!cfil_rw_lock_shared_to_exclusive(&cfil_lck_rw)) cfil_rw_lock_exclusive(&cfil_lck_rw); cfc->cf_flags |= CFF_FLOW_CONTROLLED; cfil_rw_unlock_exclusive(&cfil_lck_rw); } else { if (error != 0) OSIncrementAtomic(&cfil_stats.cfs_attach_event_fail); cfil_rw_unlock_shared(&cfil_lck_rw); } return (error); } static int cfil_dispatch_disconnect_event(struct socket *so, uint32_t kcunit, int outgoing) { errno_t error = 0; struct mbuf *msg = NULL; struct cfil_entry *entry; struct cfe_buf *entrybuf; struct cfil_msg_hdr msg_disconnected; struct content_filter *cfc; socket_lock_assert_owned(so); cfil_rw_lock_shared(&cfil_lck_rw); entry = &so->so_cfil->cfi_entries[kcunit - 1]; if (outgoing) entrybuf = &entry->cfe_snd; else entrybuf = &entry->cfe_rcv; cfc = entry->cfe_filter; if (cfc == NULL) goto done; CFIL_LOG(LOG_INFO, "so %llx kcunit %u outgoing %d", (uint64_t)VM_KERNEL_ADDRPERM(so), kcunit, outgoing); /* * Send the disconnection event once */ if ((outgoing && (entry->cfe_flags & CFEF_SENT_DISCONNECT_OUT)) || (!outgoing && (entry->cfe_flags & CFEF_SENT_DISCONNECT_IN))) { CFIL_LOG(LOG_INFO, "so %llx disconnect already sent", (uint64_t)VM_KERNEL_ADDRPERM(so)); goto done; } /* * We're not disconnected as long as some data is waiting * to be delivered to the filter */ if (outgoing && cfil_queue_empty(&entrybuf->cfe_ctl_q) == 0) { CFIL_LOG(LOG_INFO, "so %llx control queue not empty", (uint64_t)VM_KERNEL_ADDRPERM(so)); error = EBUSY; goto done; } /* Would be wasteful to try when flow controlled */ if (cfc->cf_flags & CFF_FLOW_CONTROLLED) { error = ENOBUFS; goto done; } bzero(&msg_disconnected, sizeof(struct cfil_msg_hdr)); msg_disconnected.cfm_len = sizeof(struct cfil_msg_hdr); msg_disconnected.cfm_version = CFM_VERSION_CURRENT; msg_disconnected.cfm_type = CFM_TYPE_EVENT; msg_disconnected.cfm_op = outgoing ? CFM_OP_DISCONNECT_OUT : CFM_OP_DISCONNECT_IN; msg_disconnected.cfm_sock_id = entry->cfe_cfil_info->cfi_sock_id; error = ctl_enqueuedata(entry->cfe_filter->cf_kcref, entry->cfe_filter->cf_kcunit, &msg_disconnected, sizeof(struct cfil_msg_hdr), CTL_DATA_EOR); if (error != 0) { CFIL_LOG(LOG_ERR, "ctl_enqueuembuf() failed: %d", error); mbuf_freem(msg); goto done; } microuptime(&entry->cfe_last_event); /* Remember we have sent the disconnection message */ if (outgoing) { entry->cfe_flags |= CFEF_SENT_DISCONNECT_OUT; OSIncrementAtomic(&cfil_stats.cfs_disconnect_out_event_ok); } else { entry->cfe_flags |= CFEF_SENT_DISCONNECT_IN; OSIncrementAtomic(&cfil_stats.cfs_disconnect_in_event_ok); } done: if (error == ENOBUFS) { entry->cfe_flags |= CFEF_FLOW_CONTROLLED; OSIncrementAtomic( &cfil_stats.cfs_disconnect_event_flow_control); if (!cfil_rw_lock_shared_to_exclusive(&cfil_lck_rw)) cfil_rw_lock_exclusive(&cfil_lck_rw); cfc->cf_flags |= CFF_FLOW_CONTROLLED; cfil_rw_unlock_exclusive(&cfil_lck_rw); } else { if (error != 0) OSIncrementAtomic( &cfil_stats.cfs_disconnect_event_fail); cfil_rw_unlock_shared(&cfil_lck_rw); } return (error); } int cfil_dispatch_closed_event(struct socket *so, int kcunit) { struct cfil_entry *entry; struct cfil_msg_hdr msg_closed; errno_t error = 0; struct content_filter *cfc; socket_lock_assert_owned(so); cfil_rw_lock_shared(&cfil_lck_rw); entry = &so->so_cfil->cfi_entries[kcunit - 1]; cfc = entry->cfe_filter; if (cfc == NULL) goto done; CFIL_LOG(LOG_INFO, "so %llx kcunit %d", (uint64_t)VM_KERNEL_ADDRPERM(so), kcunit); /* Would be wasteful to try when flow controlled */ if (cfc->cf_flags & CFF_FLOW_CONTROLLED) { error = ENOBUFS; goto done; } /* * Send a single closed message per filter */ if ((entry->cfe_flags & CFEF_SENT_SOCK_CLOSED) != 0) goto done; if ((entry->cfe_flags & CFEF_SENT_SOCK_ATTACHED) == 0) goto done; bzero(&msg_closed, sizeof(struct cfil_msg_hdr)); msg_closed.cfm_len = sizeof(struct cfil_msg_hdr); msg_closed.cfm_version = CFM_VERSION_CURRENT; msg_closed.cfm_type = CFM_TYPE_EVENT; msg_closed.cfm_op = CFM_OP_SOCKET_CLOSED; msg_closed.cfm_sock_id = entry->cfe_cfil_info->cfi_sock_id; error = ctl_enqueuedata(entry->cfe_filter->cf_kcref, entry->cfe_filter->cf_kcunit, &msg_closed, sizeof(struct cfil_msg_hdr), CTL_DATA_EOR); if (error != 0) { CFIL_LOG(LOG_ERR, "ctl_enqueuedata() failed: %d", error); goto done; } microuptime(&entry->cfe_last_event); entry->cfe_flags |= CFEF_SENT_SOCK_CLOSED; OSIncrementAtomic(&cfil_stats.cfs_closed_event_ok); done: /* We can recover from flow control */ if (error == ENOBUFS) { entry->cfe_flags |= CFEF_FLOW_CONTROLLED; OSIncrementAtomic(&cfil_stats.cfs_closed_event_flow_control); if (!cfil_rw_lock_shared_to_exclusive(&cfil_lck_rw)) cfil_rw_lock_exclusive(&cfil_lck_rw); cfc->cf_flags |= CFF_FLOW_CONTROLLED; cfil_rw_unlock_exclusive(&cfil_lck_rw); } else { if (error != 0) OSIncrementAtomic(&cfil_stats.cfs_closed_event_fail); cfil_rw_unlock_shared(&cfil_lck_rw); } return (error); } static void fill_ip6_sockaddr_4_6(union sockaddr_in_4_6 *sin46, struct in6_addr *ip6, u_int16_t port) { struct sockaddr_in6 *sin6 = &sin46->sin6; sin6->sin6_family = AF_INET6; sin6->sin6_len = sizeof(*sin6); sin6->sin6_port = port; sin6->sin6_addr = *ip6; if (IN6_IS_SCOPE_EMBED(&sin6->sin6_addr)) { sin6->sin6_scope_id = ntohs(sin6->sin6_addr.s6_addr16[1]); sin6->sin6_addr.s6_addr16[1] = 0; } } static void fill_ip_sockaddr_4_6(union sockaddr_in_4_6 *sin46, struct in_addr ip, u_int16_t port) { struct sockaddr_in *sin = &sin46->sin; sin->sin_family = AF_INET; sin->sin_len = sizeof(*sin); sin->sin_port = port; sin->sin_addr.s_addr = ip.s_addr; } static int cfil_dispatch_data_event(struct socket *so, uint32_t kcunit, int outgoing, struct mbuf *data, unsigned int copyoffset, unsigned int copylen) { errno_t error = 0; struct mbuf *copy = NULL; struct mbuf *msg = NULL; unsigned int one = 1; struct cfil_msg_data_event *data_req; size_t hdrsize; struct inpcb *inp = (struct inpcb *)so->so_pcb; struct cfil_entry *entry; struct cfe_buf *entrybuf; struct content_filter *cfc; cfil_rw_lock_shared(&cfil_lck_rw); entry = &so->so_cfil->cfi_entries[kcunit - 1]; if (outgoing) entrybuf = &entry->cfe_snd; else entrybuf = &entry->cfe_rcv; cfc = entry->cfe_filter; if (cfc == NULL) goto done; CFIL_LOG(LOG_INFO, "so %llx kcunit %u outgoing %d", (uint64_t)VM_KERNEL_ADDRPERM(so), kcunit, outgoing); socket_lock_assert_owned(so); /* Would be wasteful to try */ if (cfc->cf_flags & CFF_FLOW_CONTROLLED) { error = ENOBUFS; goto done; } /* Make a copy of the data to pass to kernel control socket */ copy = m_copym_mode(data, copyoffset, copylen, M_DONTWAIT, M_COPYM_NOOP_HDR); if (copy == NULL) { CFIL_LOG(LOG_ERR, "m_copym_mode() failed"); error = ENOMEM; goto done; } /* We need an mbuf packet for the message header */ hdrsize = sizeof(struct cfil_msg_data_event); error = mbuf_allocpacket(MBUF_DONTWAIT, hdrsize, &one, &msg); if (error != 0) { CFIL_LOG(LOG_ERR, "mbuf_allocpacket() failed"); m_freem(copy); /* * ENOBUFS is to indicate flow control */ error = ENOMEM; goto done; } mbuf_setlen(msg, hdrsize); mbuf_pkthdr_setlen(msg, hdrsize + copylen); msg->m_next = copy; data_req = (struct cfil_msg_data_event *)mbuf_data(msg); bzero(data_req, hdrsize); data_req->cfd_msghdr.cfm_len = hdrsize + copylen; data_req->cfd_msghdr.cfm_version = 1; data_req->cfd_msghdr.cfm_type = CFM_TYPE_EVENT; data_req->cfd_msghdr.cfm_op = outgoing ? CFM_OP_DATA_OUT : CFM_OP_DATA_IN; data_req->cfd_msghdr.cfm_sock_id = entry->cfe_cfil_info->cfi_sock_id; data_req->cfd_start_offset = entrybuf->cfe_peeked; data_req->cfd_end_offset = entrybuf->cfe_peeked + copylen; /* * TBD: * For non connected sockets need to copy addresses from passed * parameters */ if (inp->inp_vflag & INP_IPV6) { if (outgoing) { fill_ip6_sockaddr_4_6(&data_req->cfc_src, &inp->in6p_laddr, inp->inp_lport); fill_ip6_sockaddr_4_6(&data_req->cfc_dst, &inp->in6p_faddr, inp->inp_fport); } else { fill_ip6_sockaddr_4_6(&data_req->cfc_src, &inp->in6p_faddr, inp->inp_fport); fill_ip6_sockaddr_4_6(&data_req->cfc_dst, &inp->in6p_laddr, inp->inp_lport); } } else if (inp->inp_vflag & INP_IPV4) { if (outgoing) { fill_ip_sockaddr_4_6(&data_req->cfc_src, inp->inp_laddr, inp->inp_lport); fill_ip_sockaddr_4_6(&data_req->cfc_dst, inp->inp_faddr, inp->inp_fport); } else { fill_ip_sockaddr_4_6(&data_req->cfc_src, inp->inp_faddr, inp->inp_fport); fill_ip_sockaddr_4_6(&data_req->cfc_dst, inp->inp_laddr, inp->inp_lport); } } /* Pass the message to the content filter */ error = ctl_enqueuembuf(entry->cfe_filter->cf_kcref, entry->cfe_filter->cf_kcunit, msg, CTL_DATA_EOR); if (error != 0) { CFIL_LOG(LOG_ERR, "ctl_enqueuembuf() failed: %d", error); mbuf_freem(msg); goto done; } entry->cfe_flags &= ~CFEF_FLOW_CONTROLLED; OSIncrementAtomic(&cfil_stats.cfs_data_event_ok); done: if (error == ENOBUFS) { entry->cfe_flags |= CFEF_FLOW_CONTROLLED; OSIncrementAtomic( &cfil_stats.cfs_data_event_flow_control); if (!cfil_rw_lock_shared_to_exclusive(&cfil_lck_rw)) cfil_rw_lock_exclusive(&cfil_lck_rw); cfc->cf_flags |= CFF_FLOW_CONTROLLED; cfil_rw_unlock_exclusive(&cfil_lck_rw); } else { if (error != 0) OSIncrementAtomic(&cfil_stats.cfs_data_event_fail); cfil_rw_unlock_shared(&cfil_lck_rw); } return (error); } /* * Process the queue of data waiting to be delivered to content filter */ static int cfil_data_service_ctl_q(struct socket *so, uint32_t kcunit, int outgoing) { errno_t error = 0; struct mbuf *data, *tmp = NULL; unsigned int datalen = 0, copylen = 0, copyoffset = 0; struct cfil_entry *entry; struct cfe_buf *entrybuf; uint64_t currentoffset = 0; if (so->so_cfil == NULL) return (0); CFIL_LOG(LOG_INFO, "so %llx kcunit %u outgoing %d", (uint64_t)VM_KERNEL_ADDRPERM(so), kcunit, outgoing); socket_lock_assert_owned(so); entry = &so->so_cfil->cfi_entries[kcunit - 1]; if (outgoing) entrybuf = &entry->cfe_snd; else entrybuf = &entry->cfe_rcv; /* Send attached message if not yet done */ if ((entry->cfe_flags & CFEF_SENT_SOCK_ATTACHED) == 0) { error = cfil_dispatch_attach_event(so, kcunit); if (error != 0) { /* We can recover from flow control */ if (error == ENOBUFS || error == ENOMEM) error = 0; goto done; } } else if ((entry->cfe_flags & CFEF_DATA_START) == 0) { OSIncrementAtomic(&cfil_stats.cfs_ctl_q_not_started); goto done; } CFIL_LOG(LOG_DEBUG, "pass_offset %llu peeked %llu peek_offset %llu", entrybuf->cfe_pass_offset, entrybuf->cfe_peeked, entrybuf->cfe_peek_offset); /* Move all data that can pass */ while ((data = cfil_queue_first(&entrybuf->cfe_ctl_q)) != NULL && entrybuf->cfe_ctl_q.q_start < entrybuf->cfe_pass_offset) { datalen = cfil_data_length(data, NULL); tmp = data; if (entrybuf->cfe_ctl_q.q_start + datalen <= entrybuf->cfe_pass_offset) { /* * The first mbuf can fully pass */ copylen = datalen; } else { /* * The first mbuf can partially pass */ copylen = entrybuf->cfe_pass_offset - entrybuf->cfe_ctl_q.q_start; } VERIFY(copylen <= datalen); CFIL_LOG(LOG_DEBUG, "%llx first %llu peeked %llu pass %llu peek %llu" "datalen %u copylen %u", (uint64_t)VM_KERNEL_ADDRPERM(tmp), entrybuf->cfe_ctl_q.q_start, entrybuf->cfe_peeked, entrybuf->cfe_pass_offset, entrybuf->cfe_peek_offset, datalen, copylen); /* * Data that passes has been peeked at explicitly or * implicitly */ if (entrybuf->cfe_ctl_q.q_start + copylen > entrybuf->cfe_peeked) entrybuf->cfe_peeked = entrybuf->cfe_ctl_q.q_start + copylen; /* * Stop on partial pass */ if (copylen < datalen) break; /* All good, move full data from ctl queue to pending queue */ cfil_queue_remove(&entrybuf->cfe_ctl_q, data, datalen); cfil_queue_enqueue(&entrybuf->cfe_pending_q, data, datalen); if (outgoing) OSAddAtomic64(datalen, &cfil_stats.cfs_pending_q_out_enqueued); else OSAddAtomic64(datalen, &cfil_stats.cfs_pending_q_in_enqueued); } CFIL_INFO_VERIFY(so->so_cfil); if (tmp != NULL) CFIL_LOG(LOG_DEBUG, "%llx first %llu peeked %llu pass %llu peek %llu" "datalen %u copylen %u", (uint64_t)VM_KERNEL_ADDRPERM(tmp), entrybuf->cfe_ctl_q.q_start, entrybuf->cfe_peeked, entrybuf->cfe_pass_offset, entrybuf->cfe_peek_offset, datalen, copylen); tmp = NULL; /* Now deal with remaining data the filter wants to peek at */ for (data = cfil_queue_first(&entrybuf->cfe_ctl_q), currentoffset = entrybuf->cfe_ctl_q.q_start; data != NULL && currentoffset < entrybuf->cfe_peek_offset; data = cfil_queue_next(&entrybuf->cfe_ctl_q, data), currentoffset += datalen) { datalen = cfil_data_length(data, NULL); tmp = data; /* We've already peeked at this mbuf */ if (currentoffset + datalen <= entrybuf->cfe_peeked) continue; /* * The data in the first mbuf may have been * partially peeked at */ copyoffset = entrybuf->cfe_peeked - currentoffset; VERIFY(copyoffset < datalen); copylen = datalen - copyoffset; VERIFY(copylen <= datalen); /* * Do not copy more than needed */ if (currentoffset + copyoffset + copylen > entrybuf->cfe_peek_offset) { copylen = entrybuf->cfe_peek_offset - (currentoffset + copyoffset); } CFIL_LOG(LOG_DEBUG, "%llx current %llu peeked %llu pass %llu peek %llu" "datalen %u copylen %u copyoffset %u", (uint64_t)VM_KERNEL_ADDRPERM(tmp), currentoffset, entrybuf->cfe_peeked, entrybuf->cfe_pass_offset, entrybuf->cfe_peek_offset, datalen, copylen, copyoffset); /* * Stop if there is nothing more to peek at */ if (copylen == 0) break; /* * Let the filter get a peek at this span of data */ error = cfil_dispatch_data_event(so, kcunit, outgoing, data, copyoffset, copylen); if (error != 0) { /* On error, leave data in ctl_q */ break; } entrybuf->cfe_peeked += copylen; if (outgoing) OSAddAtomic64(copylen, &cfil_stats.cfs_ctl_q_out_peeked); else OSAddAtomic64(copylen, &cfil_stats.cfs_ctl_q_in_peeked); /* Stop when data could not be fully peeked at */ if (copylen + copyoffset < datalen) break; } CFIL_INFO_VERIFY(so->so_cfil); if (tmp != NULL) CFIL_LOG(LOG_DEBUG, "%llx first %llu peeked %llu pass %llu peek %llu" "datalen %u copylen %u copyoffset %u", (uint64_t)VM_KERNEL_ADDRPERM(tmp), currentoffset, entrybuf->cfe_peeked, entrybuf->cfe_pass_offset, entrybuf->cfe_peek_offset, datalen, copylen, copyoffset); /* * Process data that has passed the filter */ error = cfil_service_pending_queue(so, kcunit, outgoing); if (error != 0) { CFIL_LOG(LOG_ERR, "cfil_service_pending_queue() error %d", error); goto done; } /* * Dispatch disconnect events that could not be sent */ if (so->so_cfil == NULL) goto done; else if (outgoing) { if ((so->so_cfil->cfi_flags & CFIF_SHUT_WR) && !(entry->cfe_flags & CFEF_SENT_DISCONNECT_OUT)) cfil_dispatch_disconnect_event(so, kcunit, 1); } else { if ((so->so_cfil->cfi_flags & CFIF_SHUT_RD) && !(entry->cfe_flags & CFEF_SENT_DISCONNECT_IN)) cfil_dispatch_disconnect_event(so, kcunit, 0); } done: CFIL_LOG(LOG_DEBUG, "first %llu peeked %llu pass %llu peek %llu", entrybuf->cfe_ctl_q.q_start, entrybuf->cfe_peeked, entrybuf->cfe_pass_offset, entrybuf->cfe_peek_offset); CFIL_INFO_VERIFY(so->so_cfil); return (error); } /* * cfil_data_filter() * * Process data for a content filter installed on a socket */ int cfil_data_filter(struct socket *so, uint32_t kcunit, int outgoing, struct mbuf *data, uint64_t datalen) { errno_t error = 0; struct cfil_entry *entry; struct cfe_buf *entrybuf; CFIL_LOG(LOG_INFO, "so %llx kcunit %u outgoing %d", (uint64_t)VM_KERNEL_ADDRPERM(so), kcunit, outgoing); socket_lock_assert_owned(so); entry = &so->so_cfil->cfi_entries[kcunit - 1]; if (outgoing) entrybuf = &entry->cfe_snd; else entrybuf = &entry->cfe_rcv; /* Are we attached to the filter? */ if (entry->cfe_filter == NULL) { error = 0; goto done; } /* Dispatch to filters */ cfil_queue_enqueue(&entrybuf->cfe_ctl_q, data, datalen); if (outgoing) OSAddAtomic64(datalen, &cfil_stats.cfs_ctl_q_out_enqueued); else OSAddAtomic64(datalen, &cfil_stats.cfs_ctl_q_in_enqueued); error = cfil_data_service_ctl_q(so, kcunit, outgoing); if (error != 0) { CFIL_LOG(LOG_ERR, "cfil_data_service_ctl_q() error %d", error); } /* * We have to return EJUSTRETURN in all cases to avoid double free * by socket layer */ error = EJUSTRETURN; done: CFIL_INFO_VERIFY(so->so_cfil); CFIL_LOG(LOG_INFO, "return %d", error); return (error); } /* * cfil_service_inject_queue() re-inject data that passed the * content filters */ static int cfil_service_inject_queue(struct socket *so, int outgoing) { mbuf_t data; unsigned int datalen; int mbcnt; unsigned int copylen; errno_t error = 0; struct mbuf *copy = NULL; struct cfi_buf *cfi_buf; struct cfil_queue *inject_q; int need_rwakeup = 0; if (so->so_cfil == NULL) return (0); CFIL_LOG(LOG_INFO, "so %llx outgoing %d", (uint64_t)VM_KERNEL_ADDRPERM(so), outgoing); socket_lock_assert_owned(so); if (outgoing) { cfi_buf = &so->so_cfil->cfi_snd; so->so_cfil->cfi_flags &= ~CFIF_RETRY_INJECT_OUT; } else { cfi_buf = &so->so_cfil->cfi_rcv; so->so_cfil->cfi_flags &= ~CFIF_RETRY_INJECT_IN; } inject_q = &cfi_buf->cfi_inject_q; while ((data = cfil_queue_first(inject_q)) != NULL) { datalen = cfil_data_length(data, &mbcnt); CFIL_LOG(LOG_INFO, "data %llx datalen %u", (uint64_t)VM_KERNEL_ADDRPERM(data), datalen); /* Make a copy in case of injection error */ copy = m_copym_mode(data, 0, M_COPYALL, M_DONTWAIT, M_COPYM_COPY_HDR); if (copy == NULL) { CFIL_LOG(LOG_ERR, "m_copym_mode() failed"); error = ENOMEM; break; } if ((copylen = m_length(copy)) != datalen) panic("%s so %p copylen %d != datalen %d", __func__, so, copylen, datalen); if (outgoing) { socket_unlock(so, 0); /* * Set both DONTWAIT and NBIO flags are we really * do not want to block */ error = sosend(so, NULL, NULL, copy, NULL, MSG_SKIPCFIL | MSG_DONTWAIT | MSG_NBIO); socket_lock(so, 0); if (error != 0) { CFIL_LOG(LOG_ERR, "sosend() failed %d", error); } } else { copy->m_flags |= M_SKIPCFIL; /* * NOTE: * This work only because we support plain TCP * For UDP, RAWIP, MPTCP and message TCP we'll * need to call the appropriate sbappendxxx() * of fix sock_inject_data_in() */ if (sbappendstream(&so->so_rcv, copy)) need_rwakeup = 1; } /* Need to reassess if filter is still attached after unlock */ if (so->so_cfil == NULL) { CFIL_LOG(LOG_ERR, "so %llx cfil detached", (uint64_t)VM_KERNEL_ADDRPERM(so)); OSIncrementAtomic(&cfil_stats.cfs_inject_q_detached); error = 0; break; } if (error != 0) break; /* Injection successful */ cfil_queue_remove(inject_q, data, datalen); mbuf_freem(data); cfi_buf->cfi_pending_first += datalen; cfi_buf->cfi_pending_mbcnt -= mbcnt; cfil_info_buf_verify(cfi_buf); if (outgoing) OSAddAtomic64(datalen, &cfil_stats.cfs_inject_q_out_passed); else OSAddAtomic64(datalen, &cfil_stats.cfs_inject_q_in_passed); } /* A single wakeup is for several packets is more efficient */ if (need_rwakeup) sorwakeup(so); if (error != 0 && so->so_cfil) { if (error == ENOBUFS) OSIncrementAtomic(&cfil_stats.cfs_inject_q_nobufs); if (error == ENOMEM) OSIncrementAtomic(&cfil_stats.cfs_inject_q_nomem); if (outgoing) { so->so_cfil->cfi_flags |= CFIF_RETRY_INJECT_OUT; OSIncrementAtomic(&cfil_stats.cfs_inject_q_out_fail); } else { so->so_cfil->cfi_flags |= CFIF_RETRY_INJECT_IN; OSIncrementAtomic(&cfil_stats.cfs_inject_q_in_fail); } } /* * Notify */ if (so->so_cfil && (so->so_cfil->cfi_flags & CFIF_SHUT_WR)) { cfil_sock_notify_shutdown(so, SHUT_WR); if (cfil_sock_data_pending(&so->so_snd) == 0) soshutdownlock_final(so, SHUT_WR); } if (so->so_cfil && (so->so_cfil->cfi_flags & CFIF_CLOSE_WAIT)) { if (cfil_filters_attached(so) == 0) { CFIL_LOG(LOG_INFO, "so %llx waking", (uint64_t)VM_KERNEL_ADDRPERM(so)); wakeup((caddr_t)&so->so_cfil); } } CFIL_INFO_VERIFY(so->so_cfil); return (error); } static int cfil_service_pending_queue(struct socket *so, uint32_t kcunit, int outgoing) { uint64_t passlen, curlen; mbuf_t data; unsigned int datalen; errno_t error = 0; struct cfil_entry *entry; struct cfe_buf *entrybuf; struct cfil_queue *pending_q; CFIL_LOG(LOG_INFO, "so %llx kcunit %u outgoing %d", (uint64_t)VM_KERNEL_ADDRPERM(so), kcunit, outgoing); socket_lock_assert_owned(so); entry = &so->so_cfil->cfi_entries[kcunit - 1]; if (outgoing) entrybuf = &entry->cfe_snd; else entrybuf = &entry->cfe_rcv; pending_q = &entrybuf->cfe_pending_q; passlen = entrybuf->cfe_pass_offset - pending_q->q_start; /* * Locate the chunks of data that we can pass to the next filter * A data chunk must be on mbuf boundaries */ curlen = 0; while ((data = cfil_queue_first(pending_q)) != NULL) { datalen = cfil_data_length(data, NULL); CFIL_LOG(LOG_INFO, "data %llx datalen %u passlen %llu curlen %llu", (uint64_t)VM_KERNEL_ADDRPERM(data), datalen, passlen, curlen); if (curlen + datalen > passlen) break; cfil_queue_remove(pending_q, data, datalen); curlen += datalen; for (kcunit += 1; kcunit <= MAX_CONTENT_FILTER; kcunit++) { error = cfil_data_filter(so, kcunit, outgoing, data, datalen); /* 0 means passed so we can continue */ if (error != 0) break; } /* When data has passed all filters, re-inject */ if (error == 0) { if (outgoing) { cfil_queue_enqueue( &so->so_cfil->cfi_snd.cfi_inject_q, data, datalen); OSAddAtomic64(datalen, &cfil_stats.cfs_inject_q_out_enqueued); } else { cfil_queue_enqueue( &so->so_cfil->cfi_rcv.cfi_inject_q, data, datalen); OSAddAtomic64(datalen, &cfil_stats.cfs_inject_q_in_enqueued); } } } CFIL_INFO_VERIFY(so->so_cfil); return (error); } int cfil_update_data_offsets(struct socket *so, uint32_t kcunit, int outgoing, uint64_t pass_offset, uint64_t peek_offset) { errno_t error = 0; struct cfil_entry *entry; struct cfe_buf *entrybuf; int updated = 0; CFIL_LOG(LOG_INFO, "pass %llu peek %llu", pass_offset, peek_offset); socket_lock_assert_owned(so); if (so->so_cfil == NULL) { CFIL_LOG(LOG_ERR, "so %llx cfil detached", (uint64_t)VM_KERNEL_ADDRPERM(so)); error = 0; goto done; } else if (so->so_cfil->cfi_flags & CFIF_DROP) { CFIL_LOG(LOG_ERR, "so %llx drop set", (uint64_t)VM_KERNEL_ADDRPERM(so)); error = EPIPE; goto done; } entry = &so->so_cfil->cfi_entries[kcunit - 1]; if (outgoing) entrybuf = &entry->cfe_snd; else entrybuf = &entry->cfe_rcv; /* Record updated offsets for this content filter */ if (pass_offset > entrybuf->cfe_pass_offset) { entrybuf->cfe_pass_offset = pass_offset; if (entrybuf->cfe_peek_offset < entrybuf->cfe_pass_offset) entrybuf->cfe_peek_offset = entrybuf->cfe_pass_offset; updated = 1; } else { CFIL_LOG(LOG_INFO, "pass_offset %llu <= cfe_pass_offset %llu", pass_offset, entrybuf->cfe_pass_offset); } /* Filter does not want or need to see data that's allowed to pass */ if (peek_offset > entrybuf->cfe_pass_offset && peek_offset > entrybuf->cfe_peek_offset) { entrybuf->cfe_peek_offset = peek_offset; updated = 1; } /* Nothing to do */ if (updated == 0) goto done; /* Move data held in control queue to pending queue if needed */ error = cfil_data_service_ctl_q(so, kcunit, outgoing); if (error != 0) { CFIL_LOG(LOG_ERR, "cfil_data_service_ctl_q() error %d", error); goto done; } error = EJUSTRETURN; done: /* * The filter is effectively detached when pass all from both sides * or when the socket is closed and no more data is waiting * to be delivered to the filter */ if (so->so_cfil != NULL && ((entry->cfe_snd.cfe_pass_offset == CFM_MAX_OFFSET && entry->cfe_rcv.cfe_pass_offset == CFM_MAX_OFFSET) || ((so->so_cfil->cfi_flags & CFIF_CLOSE_WAIT) && cfil_queue_empty(&entry->cfe_snd.cfe_ctl_q) && cfil_queue_empty(&entry->cfe_rcv.cfe_ctl_q)))) { entry->cfe_flags |= CFEF_CFIL_DETACHED; CFIL_LOG(LOG_INFO, "so %llx detached %u", (uint64_t)VM_KERNEL_ADDRPERM(so), kcunit); if ((so->so_cfil->cfi_flags & CFIF_CLOSE_WAIT) && cfil_filters_attached(so) == 0) { CFIL_LOG(LOG_INFO, "so %llx waking", (uint64_t)VM_KERNEL_ADDRPERM(so)); wakeup((caddr_t)&so->so_cfil); } } CFIL_INFO_VERIFY(so->so_cfil); CFIL_LOG(LOG_INFO, "return %d", error); return (error); } /* * Update pass offset for socket when no data is pending */ static int cfil_set_socket_pass_offset(struct socket *so, int outgoing) { struct cfi_buf *cfi_buf; struct cfil_entry *entry; struct cfe_buf *entrybuf; uint32_t kcunit; uint64_t pass_offset = 0; if (so->so_cfil == NULL) return (0); CFIL_LOG(LOG_INFO, "so %llx outgoing %d", (uint64_t)VM_KERNEL_ADDRPERM(so), outgoing); socket_lock_assert_owned(so); if (outgoing) cfi_buf = &so->so_cfil->cfi_snd; else cfi_buf = &so->so_cfil->cfi_rcv; if (cfi_buf->cfi_pending_last - cfi_buf->cfi_pending_first == 0) { for (kcunit = 1; kcunit <= MAX_CONTENT_FILTER; kcunit++) { entry = &so->so_cfil->cfi_entries[kcunit - 1]; /* Are we attached to a filter? */ if (entry->cfe_filter == NULL) continue; if (outgoing) entrybuf = &entry->cfe_snd; else entrybuf = &entry->cfe_rcv; if (pass_offset == 0 || entrybuf->cfe_pass_offset < pass_offset) pass_offset = entrybuf->cfe_pass_offset; } cfi_buf->cfi_pass_offset = pass_offset; } return (0); } int cfil_action_data_pass(struct socket *so, uint32_t kcunit, int outgoing, uint64_t pass_offset, uint64_t peek_offset) { errno_t error = 0; CFIL_LOG(LOG_INFO, ""); socket_lock_assert_owned(so); error = cfil_acquire_sockbuf(so, outgoing); if (error != 0) { CFIL_LOG(LOG_INFO, "so %llx %s dropped", (uint64_t)VM_KERNEL_ADDRPERM(so), outgoing ? "out" : "in"); goto release; } error = cfil_update_data_offsets(so, kcunit, outgoing, pass_offset, peek_offset); cfil_service_inject_queue(so, outgoing); cfil_set_socket_pass_offset(so, outgoing); release: CFIL_INFO_VERIFY(so->so_cfil); cfil_release_sockbuf(so, outgoing); return (error); } static void cfil_flush_queues(struct socket *so) { struct cfil_entry *entry; int kcunit; uint64_t drained; if ((so->so_flags & SOF_CONTENT_FILTER) == 0 || so->so_cfil == NULL) goto done; socket_lock_assert_owned(so); /* * Flush the output queues and ignore errors as long as * we are attached */ (void) cfil_acquire_sockbuf(so, 1); if (so->so_cfil != NULL) { drained = 0; for (kcunit = 1; kcunit <= MAX_CONTENT_FILTER; kcunit++) { entry = &so->so_cfil->cfi_entries[kcunit - 1]; drained += cfil_queue_drain(&entry->cfe_snd.cfe_ctl_q); drained += cfil_queue_drain( &entry->cfe_snd.cfe_pending_q); } drained += cfil_queue_drain(&so->so_cfil->cfi_snd.cfi_inject_q); if (drained) { if (so->so_cfil->cfi_flags & CFIF_DROP) OSIncrementAtomic( &cfil_stats.cfs_flush_out_drop); else OSIncrementAtomic( &cfil_stats.cfs_flush_out_close); } } cfil_release_sockbuf(so, 1); /* * Flush the input queues */ (void) cfil_acquire_sockbuf(so, 0); if (so->so_cfil != NULL) { drained = 0; for (kcunit = 1; kcunit <= MAX_CONTENT_FILTER; kcunit++) { entry = &so->so_cfil->cfi_entries[kcunit - 1]; drained += cfil_queue_drain( &entry->cfe_rcv.cfe_ctl_q); drained += cfil_queue_drain( &entry->cfe_rcv.cfe_pending_q); } drained += cfil_queue_drain(&so->so_cfil->cfi_rcv.cfi_inject_q); if (drained) { if (so->so_cfil->cfi_flags & CFIF_DROP) OSIncrementAtomic( &cfil_stats.cfs_flush_in_drop); else OSIncrementAtomic( &cfil_stats.cfs_flush_in_close); } } cfil_release_sockbuf(so, 0); done: CFIL_INFO_VERIFY(so->so_cfil); } int cfil_action_drop(struct socket *so, uint32_t kcunit) { errno_t error = 0; struct cfil_entry *entry; struct proc *p; if ((so->so_flags & SOF_CONTENT_FILTER) == 0 || so->so_cfil == NULL) goto done; socket_lock_assert_owned(so); entry = &so->so_cfil->cfi_entries[kcunit - 1]; /* Are we attached to the filter? */ if (entry->cfe_filter == NULL) goto done; so->so_cfil->cfi_flags |= CFIF_DROP; p = current_proc(); /* Force the socket to be marked defunct */ error = sosetdefunct(p, so, SHUTDOWN_SOCKET_LEVEL_DISCONNECT_ALL, 1); /* Flush the socket buffer and disconnect */ if (error == 0) error = sodefunct(p, so, SHUTDOWN_SOCKET_LEVEL_DISCONNECT_ALL); /* The filter is done, mark as detached */ entry->cfe_flags |= CFEF_CFIL_DETACHED; CFIL_LOG(LOG_INFO, "so %llx detached %u", (uint64_t)VM_KERNEL_ADDRPERM(so), kcunit); /* Pending data needs to go */ cfil_flush_queues(so); if (so->so_cfil && (so->so_cfil->cfi_flags & CFIF_CLOSE_WAIT)) { if (cfil_filters_attached(so) == 0) { CFIL_LOG(LOG_INFO, "so %llx waking", (uint64_t)VM_KERNEL_ADDRPERM(so)); wakeup((caddr_t)&so->so_cfil); } } done: return (error); } static int cfil_update_entry_offsets(struct socket *so, int outgoing, unsigned int datalen) { struct cfil_entry *entry; struct cfe_buf *entrybuf; uint32_t kcunit; CFIL_LOG(LOG_INFO, "so %llx outgoing %d datalen %u", (uint64_t)VM_KERNEL_ADDRPERM(so), outgoing, datalen); for (kcunit = 1; kcunit <= MAX_CONTENT_FILTER; kcunit++) { entry = &so->so_cfil->cfi_entries[kcunit - 1]; /* Are we attached to the filter? */ if (entry->cfe_filter == NULL) continue; if (outgoing) entrybuf = &entry->cfe_snd; else entrybuf = &entry->cfe_rcv; entrybuf->cfe_ctl_q.q_start += datalen; entrybuf->cfe_pass_offset = entrybuf->cfe_ctl_q.q_start; entrybuf->cfe_peeked = entrybuf->cfe_ctl_q.q_start; if (entrybuf->cfe_peek_offset < entrybuf->cfe_pass_offset) entrybuf->cfe_peek_offset = entrybuf->cfe_pass_offset; entrybuf->cfe_ctl_q.q_end += datalen; entrybuf->cfe_pending_q.q_start += datalen; entrybuf->cfe_pending_q.q_end += datalen; } CFIL_INFO_VERIFY(so->so_cfil); return (0); } int cfil_data_common(struct socket *so, int outgoing, struct sockaddr *to, struct mbuf *data, struct mbuf *control, uint32_t flags) { #pragma unused(to, control, flags) errno_t error = 0; unsigned int datalen; int mbcnt; int kcunit; struct cfi_buf *cfi_buf; if (so->so_cfil == NULL) { CFIL_LOG(LOG_ERR, "so %llx cfil detached", (uint64_t)VM_KERNEL_ADDRPERM(so)); error = 0; goto done; } else if (so->so_cfil->cfi_flags & CFIF_DROP) { CFIL_LOG(LOG_ERR, "so %llx drop set", (uint64_t)VM_KERNEL_ADDRPERM(so)); error = EPIPE; goto done; } datalen = cfil_data_length(data, &mbcnt); CFIL_LOG(LOG_INFO, "so %llx %s m %llx len %u flags 0x%x nextpkt %llx", (uint64_t)VM_KERNEL_ADDRPERM(so), outgoing ? "out" : "in", (uint64_t)VM_KERNEL_ADDRPERM(data), datalen, data->m_flags, (uint64_t)VM_KERNEL_ADDRPERM(data->m_nextpkt)); if (outgoing) cfi_buf = &so->so_cfil->cfi_snd; else cfi_buf = &so->so_cfil->cfi_rcv; cfi_buf->cfi_pending_last += datalen; cfi_buf->cfi_pending_mbcnt += mbcnt; cfil_info_buf_verify(cfi_buf); CFIL_LOG(LOG_INFO, "so %llx cfi_pending_last %llu cfi_pass_offset %llu", (uint64_t)VM_KERNEL_ADDRPERM(so), cfi_buf->cfi_pending_last, cfi_buf->cfi_pass_offset); /* Fast path when below pass offset */ if (cfi_buf->cfi_pending_last <= cfi_buf->cfi_pass_offset) { cfil_update_entry_offsets(so, outgoing, datalen); } else { for (kcunit = 1; kcunit <= MAX_CONTENT_FILTER; kcunit++) { error = cfil_data_filter(so, kcunit, outgoing, data, datalen); /* 0 means passed so continue with next filter */ if (error != 0) break; } } /* Move cursor if no filter claimed the data */ if (error == 0) { cfi_buf->cfi_pending_first += datalen; cfi_buf->cfi_pending_mbcnt -= mbcnt; cfil_info_buf_verify(cfi_buf); } done: CFIL_INFO_VERIFY(so->so_cfil); return (error); } /* * Callback from socket layer sosendxxx() */ int cfil_sock_data_out(struct socket *so, struct sockaddr *to, struct mbuf *data, struct mbuf *control, uint32_t flags) { int error = 0; if ((so->so_flags & SOF_CONTENT_FILTER) == 0 || so->so_cfil == NULL) return (0); socket_lock_assert_owned(so); if (so->so_cfil->cfi_flags & CFIF_DROP) { CFIL_LOG(LOG_ERR, "so %llx drop set", (uint64_t)VM_KERNEL_ADDRPERM(so)); return (EPIPE); } if (control != NULL) { CFIL_LOG(LOG_ERR, "so %llx control", (uint64_t)VM_KERNEL_ADDRPERM(so)); OSIncrementAtomic(&cfil_stats.cfs_data_out_control); } if ((flags & MSG_OOB)) { CFIL_LOG(LOG_ERR, "so %llx MSG_OOB", (uint64_t)VM_KERNEL_ADDRPERM(so)); OSIncrementAtomic(&cfil_stats.cfs_data_out_oob); } if ((so->so_snd.sb_flags & SB_LOCK) == 0) panic("so %p SB_LOCK not set", so); if (so->so_snd.sb_cfil_thread != NULL) panic("%s sb_cfil_thread %p not NULL", __func__, so->so_snd.sb_cfil_thread); error = cfil_data_common(so, 1, to, data, control, flags); return (error); } /* * Callback from socket layer sbappendxxx() */ int cfil_sock_data_in(struct socket *so, struct sockaddr *from, struct mbuf *data, struct mbuf *control, uint32_t flags) { int error = 0; if ((so->so_flags & SOF_CONTENT_FILTER) == 0 || so->so_cfil == NULL) return (0); socket_lock_assert_owned(so); if (so->so_cfil->cfi_flags & CFIF_DROP) { CFIL_LOG(LOG_ERR, "so %llx drop set", (uint64_t)VM_KERNEL_ADDRPERM(so)); return (EPIPE); } if (control != NULL) { CFIL_LOG(LOG_ERR, "so %llx control", (uint64_t)VM_KERNEL_ADDRPERM(so)); OSIncrementAtomic(&cfil_stats.cfs_data_in_control); } if (data->m_type == MT_OOBDATA) { CFIL_LOG(LOG_ERR, "so %llx MSG_OOB", (uint64_t)VM_KERNEL_ADDRPERM(so)); OSIncrementAtomic(&cfil_stats.cfs_data_in_oob); } error = cfil_data_common(so, 0, from, data, control, flags); return (error); } /* * Callback from socket layer soshutdownxxx() * * We may delay the shutdown write if there's outgoing data in process. * * There is no point in delaying the shutdown read because the process * indicated that it does not want to read anymore data. */ int cfil_sock_shutdown(struct socket *so, int *how) { int error = 0; if ((so->so_flags & SOF_CONTENT_FILTER) == 0 || so->so_cfil == NULL) goto done; socket_lock_assert_owned(so); CFIL_LOG(LOG_INFO, "so %llx how %d", (uint64_t)VM_KERNEL_ADDRPERM(so), *how); /* * Check the state of the socket before the content filter */ if (*how != SHUT_WR && (so->so_state & SS_CANTRCVMORE) != 0) { /* read already shut down */ error = ENOTCONN; goto done; } if (*how != SHUT_RD && (so->so_state & SS_CANTSENDMORE) != 0) { /* write already shut down */ error = ENOTCONN; goto done; } if ((so->so_cfil->cfi_flags & CFIF_DROP) != 0) { CFIL_LOG(LOG_ERR, "so %llx drop set", (uint64_t)VM_KERNEL_ADDRPERM(so)); goto done; } /* * shutdown read: SHUT_RD or SHUT_RDWR */ if (*how != SHUT_WR) { if (so->so_cfil->cfi_flags & CFIF_SHUT_RD) { error = ENOTCONN; goto done; } so->so_cfil->cfi_flags |= CFIF_SHUT_RD; cfil_sock_notify_shutdown(so, SHUT_RD); } /* * shutdown write: SHUT_WR or SHUT_RDWR */ if (*how != SHUT_RD) { if (so->so_cfil->cfi_flags & CFIF_SHUT_WR) { error = ENOTCONN; goto done; } so->so_cfil->cfi_flags |= CFIF_SHUT_WR; cfil_sock_notify_shutdown(so, SHUT_WR); /* * When outgoing data is pending, we delay the shutdown at the * protocol level until the content filters give the final * verdict on the pending data. */ if (cfil_sock_data_pending(&so->so_snd) != 0) { /* * When shutting down the read and write sides at once * we can proceed to the final shutdown of the read * side. Otherwise, we just return. */ if (*how == SHUT_WR) { error = EJUSTRETURN; } else if (*how == SHUT_RDWR) { *how = SHUT_RD; } } } done: return (error); } /* * This is called when the socket is closed and there is no more * opportunity for filtering */ void cfil_sock_is_closed(struct socket *so) { errno_t error = 0; int kcunit; if ((so->so_flags & SOF_CONTENT_FILTER) == 0 || so->so_cfil == NULL) return; CFIL_LOG(LOG_INFO, "so %llx", (uint64_t)VM_KERNEL_ADDRPERM(so)); socket_lock_assert_owned(so); for (kcunit = 1; kcunit <= MAX_CONTENT_FILTER; kcunit++) { /* Let the filters know of the closing */ error = cfil_dispatch_closed_event(so, kcunit); } /* Last chance to push passed data out */ error = cfil_acquire_sockbuf(so, 1); if (error == 0) cfil_service_inject_queue(so, 1); cfil_release_sockbuf(so, 1); so->so_cfil->cfi_flags |= CFIF_SOCK_CLOSED; /* Pending data needs to go */ cfil_flush_queues(so); CFIL_INFO_VERIFY(so->so_cfil); } /* * This is called when the socket is disconnected so let the filters * know about the disconnection and that no more data will come * * The how parameter has the same values as soshutown() */ void cfil_sock_notify_shutdown(struct socket *so, int how) { errno_t error = 0; int kcunit; if ((so->so_flags & SOF_CONTENT_FILTER) == 0 || so->so_cfil == NULL) return; CFIL_LOG(LOG_INFO, "so %llx how %d", (uint64_t)VM_KERNEL_ADDRPERM(so), how); socket_lock_assert_owned(so); for (kcunit = 1; kcunit <= MAX_CONTENT_FILTER; kcunit++) { /* Disconnect incoming side */ if (how != SHUT_WR) error = cfil_dispatch_disconnect_event(so, kcunit, 0); /* Disconnect outgoing side */ if (how != SHUT_RD) error = cfil_dispatch_disconnect_event(so, kcunit, 1); } } static int cfil_filters_attached(struct socket *so) { struct cfil_entry *entry; uint32_t kcunit; int attached = 0; if ((so->so_flags & SOF_CONTENT_FILTER) == 0 || so->so_cfil == NULL) return (0); socket_lock_assert_owned(so); for (kcunit = 1; kcunit <= MAX_CONTENT_FILTER; kcunit++) { entry = &so->so_cfil->cfi_entries[kcunit - 1]; /* Are we attached to the filter? */ if (entry->cfe_filter == NULL) continue; if ((entry->cfe_flags & CFEF_SENT_SOCK_ATTACHED) == 0) continue; if ((entry->cfe_flags & CFEF_CFIL_DETACHED) != 0) continue; attached = 1; break; } return (attached); } /* * This is called when the socket is closed and we are waiting for * the filters to gives the final pass or drop */ void cfil_sock_close_wait(struct socket *so) { lck_mtx_t *mutex_held; struct timespec ts; int error; if ((so->so_flags & SOF_CONTENT_FILTER) == 0 || so->so_cfil == NULL) return; CFIL_LOG(LOG_INFO, "so %llx", (uint64_t)VM_KERNEL_ADDRPERM(so)); if (so->so_proto->pr_getlock != NULL) mutex_held = (*so->so_proto->pr_getlock)(so, 0); else mutex_held = so->so_proto->pr_domain->dom_mtx; lck_mtx_assert(mutex_held, LCK_MTX_ASSERT_OWNED); while (cfil_filters_attached(so)) { /* * Notify the filters we are going away so they can detach */ cfil_sock_notify_shutdown(so, SHUT_RDWR); /* * Make sure we need to wait after the filter are notified * of the disconnection */ if (cfil_filters_attached(so) == 0) break; CFIL_LOG(LOG_INFO, "so %llx waiting", (uint64_t)VM_KERNEL_ADDRPERM(so)); ts.tv_sec = cfil_close_wait_timeout / 1000; ts.tv_nsec = (cfil_close_wait_timeout % 1000) * NSEC_PER_USEC * 1000; OSIncrementAtomic(&cfil_stats.cfs_close_wait); so->so_cfil->cfi_flags |= CFIF_CLOSE_WAIT; error = msleep((caddr_t)&so->so_cfil, mutex_held, PSOCK | PCATCH, "cfil_sock_close_wait", &ts); so->so_cfil->cfi_flags &= ~CFIF_CLOSE_WAIT; CFIL_LOG(LOG_NOTICE, "so %llx timed out %d", (uint64_t)VM_KERNEL_ADDRPERM(so), (error != 0)); /* * Force close in case of timeout */ if (error != 0) { OSIncrementAtomic(&cfil_stats.cfs_close_wait_timeout); break; } } } /* * Returns the size of the data held by the content filter by using */ int32_t cfil_sock_data_pending(struct sockbuf *sb) { struct socket *so = sb->sb_so; uint64_t pending = 0; if ((so->so_flags & SOF_CONTENT_FILTER) != 0 && so->so_cfil != NULL) { struct cfi_buf *cfi_buf; socket_lock_assert_owned(so); if ((sb->sb_flags & SB_RECV) == 0) cfi_buf = &so->so_cfil->cfi_snd; else cfi_buf = &so->so_cfil->cfi_rcv; pending = cfi_buf->cfi_pending_last - cfi_buf->cfi_pending_first; /* * If we are limited by the "chars of mbufs used" roughly * adjust so we won't overcommit */ if (pending > (uint64_t)cfi_buf->cfi_pending_mbcnt) pending = cfi_buf->cfi_pending_mbcnt; } VERIFY(pending < INT32_MAX); return (int32_t)(pending); } /* * Return the socket buffer space used by data being held by content filters * so processes won't clog the socket buffer */ int32_t cfil_sock_data_space(struct sockbuf *sb) { struct socket *so = sb->sb_so; uint64_t pending = 0; if ((so->so_flags & SOF_CONTENT_FILTER) != 0 && so->so_cfil != NULL && so->so_snd.sb_cfil_thread != current_thread()) { struct cfi_buf *cfi_buf; socket_lock_assert_owned(so); if ((sb->sb_flags & SB_RECV) == 0) cfi_buf = &so->so_cfil->cfi_snd; else cfi_buf = &so->so_cfil->cfi_rcv; pending = cfi_buf->cfi_pending_last - cfi_buf->cfi_pending_first; /* * If we are limited by the "chars of mbufs used" roughly * adjust so we won't overcommit */ if ((uint64_t)cfi_buf->cfi_pending_mbcnt > pending) pending = cfi_buf->cfi_pending_mbcnt; } VERIFY(pending < INT32_MAX); return (int32_t)(pending); } /* * A callback from the socket and protocol layer when data becomes * available in the socket buffer to give a chance for the content filter * to re-inject data that was held back */ void cfil_sock_buf_update(struct sockbuf *sb) { int outgoing; int error; struct socket *so = sb->sb_so; if ((so->so_flags & SOF_CONTENT_FILTER) == 0 || so->so_cfil == NULL) return; if (!cfil_sbtrim) return; socket_lock_assert_owned(so); if ((sb->sb_flags & SB_RECV) == 0) { if ((so->so_cfil->cfi_flags & CFIF_RETRY_INJECT_OUT) == 0) return; outgoing = 1; OSIncrementAtomic(&cfil_stats.cfs_inject_q_out_retry); } else { if ((so->so_cfil->cfi_flags & CFIF_RETRY_INJECT_IN) == 0) return; outgoing = 0; OSIncrementAtomic(&cfil_stats.cfs_inject_q_in_retry); } CFIL_LOG(LOG_NOTICE, "so %llx outgoing %d", (uint64_t)VM_KERNEL_ADDRPERM(so), outgoing); error = cfil_acquire_sockbuf(so, outgoing); if (error == 0) cfil_service_inject_queue(so, outgoing); cfil_release_sockbuf(so, outgoing); } int sysctl_cfil_filter_list(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req) { #pragma unused(oidp, arg1, arg2) int error = 0; size_t len = 0; u_int32_t i; /* Read only */ if (req->newptr != USER_ADDR_NULL) return (EPERM); cfil_rw_lock_shared(&cfil_lck_rw); for (i = 0; content_filters != NULL && i < MAX_CONTENT_FILTER; i++) { struct cfil_filter_stat filter_stat; struct content_filter *cfc = content_filters[i]; if (cfc == NULL) continue; /* If just asking for the size */ if (req->oldptr == USER_ADDR_NULL) { len += sizeof(struct cfil_filter_stat); continue; } bzero(&filter_stat, sizeof(struct cfil_filter_stat)); filter_stat.cfs_len = sizeof(struct cfil_filter_stat); filter_stat.cfs_filter_id = cfc->cf_kcunit; filter_stat.cfs_flags = cfc->cf_flags; filter_stat.cfs_sock_count = cfc->cf_sock_count; filter_stat.cfs_necp_control_unit = cfc->cf_necp_control_unit; error = SYSCTL_OUT(req, &filter_stat, sizeof (struct cfil_filter_stat)); if (error != 0) break; } /* If just asking for the size */ if (req->oldptr == USER_ADDR_NULL) req->oldidx = len; cfil_rw_unlock_shared(&cfil_lck_rw); return (error); } static int sysctl_cfil_sock_list(struct sysctl_oid *oidp, void *arg1, int arg2, struct sysctl_req *req) { #pragma unused(oidp, arg1, arg2) int error = 0; u_int32_t i; struct cfil_info *cfi; /* Read only */ if (req->newptr != USER_ADDR_NULL) return (EPERM); cfil_rw_lock_shared(&cfil_lck_rw); /* * If just asking for the size, */ if (req->oldptr == USER_ADDR_NULL) { req->oldidx = cfil_sock_attached_count * sizeof(struct cfil_sock_stat); /* Bump the length in case new sockets gets attached */ req->oldidx += req->oldidx >> 3; goto done; } TAILQ_FOREACH(cfi, &cfil_sock_head, cfi_link) { struct cfil_entry *entry; struct cfil_sock_stat stat; struct socket *so = cfi->cfi_so; bzero(&stat, sizeof(struct cfil_sock_stat)); stat.cfs_len = sizeof(struct cfil_sock_stat); stat.cfs_sock_id = cfi->cfi_sock_id; stat.cfs_flags = cfi->cfi_flags; if (so != NULL) { stat.cfs_pid = so->last_pid; memcpy(stat.cfs_uuid, so->last_uuid, sizeof(uuid_t)); if (so->so_flags & SOF_DELEGATED) { stat.cfs_e_pid = so->e_pid; memcpy(stat.cfs_e_uuid, so->e_uuid, sizeof(uuid_t)); } else { stat.cfs_e_pid = so->last_pid; memcpy(stat.cfs_e_uuid, so->last_uuid, sizeof(uuid_t)); } } stat.cfs_snd.cbs_pending_first = cfi->cfi_snd.cfi_pending_first; stat.cfs_snd.cbs_pending_last = cfi->cfi_snd.cfi_pending_last; stat.cfs_snd.cbs_inject_q_len = cfil_queue_len(&cfi->cfi_snd.cfi_inject_q); stat.cfs_snd.cbs_pass_offset = cfi->cfi_snd.cfi_pass_offset; stat.cfs_rcv.cbs_pending_first = cfi->cfi_rcv.cfi_pending_first; stat.cfs_rcv.cbs_pending_last = cfi->cfi_rcv.cfi_pending_last; stat.cfs_rcv.cbs_inject_q_len = cfil_queue_len(&cfi->cfi_rcv.cfi_inject_q); stat.cfs_rcv.cbs_pass_offset = cfi->cfi_rcv.cfi_pass_offset; for (i = 0; i < MAX_CONTENT_FILTER; i++) { struct cfil_entry_stat *estat; struct cfe_buf *ebuf; struct cfe_buf_stat *sbuf; entry = &cfi->cfi_entries[i]; estat = &stat.ces_entries[i]; estat->ces_len = sizeof(struct cfil_entry_stat); estat->ces_filter_id = entry->cfe_filter ? entry->cfe_filter->cf_kcunit : 0; estat->ces_flags = entry->cfe_flags; estat->ces_necp_control_unit = entry->cfe_necp_control_unit; estat->ces_last_event.tv_sec = (int64_t)entry->cfe_last_event.tv_sec; estat->ces_last_event.tv_usec = (int64_t)entry->cfe_last_event.tv_usec; estat->ces_last_action.tv_sec = (int64_t)entry->cfe_last_action.tv_sec; estat->ces_last_action.tv_usec = (int64_t)entry->cfe_last_action.tv_usec; ebuf = &entry->cfe_snd; sbuf = &estat->ces_snd; sbuf->cbs_pending_first = cfil_queue_offset_first(&ebuf->cfe_pending_q); sbuf->cbs_pending_last = cfil_queue_offset_last(&ebuf->cfe_pending_q); sbuf->cbs_ctl_first = cfil_queue_offset_first(&ebuf->cfe_ctl_q); sbuf->cbs_ctl_last = cfil_queue_offset_last(&ebuf->cfe_ctl_q); sbuf->cbs_pass_offset = ebuf->cfe_pass_offset; sbuf->cbs_peek_offset = ebuf->cfe_peek_offset; sbuf->cbs_peeked = ebuf->cfe_peeked; ebuf = &entry->cfe_rcv; sbuf = &estat->ces_rcv; sbuf->cbs_pending_first = cfil_queue_offset_first(&ebuf->cfe_pending_q); sbuf->cbs_pending_last = cfil_queue_offset_last(&ebuf->cfe_pending_q); sbuf->cbs_ctl_first = cfil_queue_offset_first(&ebuf->cfe_ctl_q); sbuf->cbs_ctl_last = cfil_queue_offset_last(&ebuf->cfe_ctl_q); sbuf->cbs_pass_offset = ebuf->cfe_pass_offset; sbuf->cbs_peek_offset = ebuf->cfe_peek_offset; sbuf->cbs_peeked = ebuf->cfe_peeked; } error = SYSCTL_OUT(req, &stat, sizeof (struct cfil_sock_stat)); if (error != 0) break; } done: cfil_rw_unlock_shared(&cfil_lck_rw); return (error); } |