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 | /* * Copyright (c) 2015-2021 Apple Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ /* * Copyright (C) 2012-2014 Matteo Landi, Luigi Rizzo, Giuseppe Lettieri. * All rights reserved. * Copyright (C) 2013-2014 Universita` di Pisa. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include <sys/eventvar.h> #include <sys/kdebug.h> #include <sys/sdt.h> #include <skywalk/os_skywalk_private.h> #include <skywalk/nexus/netif/nx_netif.h> #include <kern/uipc_domain.h> #define KEV_EVTID(code) BSDDBG_CODE(DBG_BSD_KEVENT, (code)) struct ch_event_result { uint32_t tx_data; uint32_t rx_data; }; static LCK_GRP_DECLARE(channel_lock_group, "sk_ch_lock"); static LCK_GRP_DECLARE(channel_kn_lock_group, "sk_ch_kn_lock"); LCK_ATTR_DECLARE(channel_lock_attr, 0, 0); static void csi_selrecord(struct ch_selinfo *, struct proc *, void *); static void csi_selwakeup(struct ch_selinfo *, boolean_t, boolean_t, uint32_t); static inline void csi_selwakeup_delayed(struct ch_selinfo *); static inline void csi_selwakeup_common(struct ch_selinfo *, boolean_t, boolean_t, boolean_t, uint32_t); static boolean_t csi_tcall_start(struct ch_selinfo *); static void csi_tcall(thread_call_param_t, thread_call_param_t); static uint64_t csi_tcall_update_interval(struct ch_selinfo *); static void ch_redzone_init(void); static void ch_close_common(struct kern_channel *, boolean_t, boolean_t); static struct kern_channel *ch_find(struct kern_nexus *, nexus_port_t, ring_id_t); static int ch_ev_thresh_validate(struct kern_nexus *, enum txrx, struct ch_ev_thresh *); static struct kern_channel *ch_connect(struct kern_nexus *, struct chreq *, struct nxbind *, struct proc *, int, int *); static void ch_disconnect(struct kern_channel *); static int ch_set_lowat_thresh(struct kern_channel *, enum txrx, struct sockopt *); static int ch_get_lowat_thresh(struct kern_channel *, enum txrx, struct sockopt *); static struct kern_channel *ch_alloc(zalloc_flags_t); static void ch_free(struct kern_channel *); static int ch_configure_interface_advisory_event(struct kern_channel *ch, struct sockopt *sopt); static int filt_chrwattach(struct knote *, struct kevent_qos_s *kev); static void filt_chrwdetach(struct knote *, boolean_t); static void filt_chrdetach(struct knote *); static void filt_chwdetach(struct knote *); static int filt_chrw(struct knote *, long, int); static int filt_chread(struct knote *, long); static int filt_chwrite(struct knote *, long); static int filt_chtouch(struct knote *, struct kevent_qos_s *, int); static int filt_chrtouch(struct knote *, struct kevent_qos_s *); static int filt_chwtouch(struct knote *, struct kevent_qos_s *); static int filt_chprocess(struct knote *, struct kevent_qos_s *, int); static int filt_chrprocess(struct knote *, struct kevent_qos_s *); static int filt_chwprocess(struct knote *, struct kevent_qos_s *); static int filt_che_attach(struct knote *, struct kevent_qos_s *kev); static void filt_che_detach(struct knote *); static int filt_che_event(struct knote *, long); static int filt_che_touch(struct knote *, struct kevent_qos_s *); static int filt_che_process(struct knote *, struct kevent_qos_s *); static int filt_chan_extended_common(struct knote *, long); static int ch_event(struct kern_channel *ch, int events, void *wql, struct proc *p, struct ch_event_result *, const boolean_t is_kevent, int *errno, const boolean_t); const struct filterops skywalk_channel_rfiltops = { .f_isfd = 1, .f_attach = filt_chrwattach, .f_detach = filt_chrdetach, .f_event = filt_chread, .f_touch = filt_chrtouch, .f_process = filt_chrprocess, }; const struct filterops skywalk_channel_wfiltops = { .f_isfd = 1, .f_attach = filt_chrwattach, .f_detach = filt_chwdetach, .f_event = filt_chwrite, .f_touch = filt_chwtouch, .f_process = filt_chwprocess, }; const struct filterops skywalk_channel_efiltops = { .f_isfd = 1, .f_attach = filt_che_attach, .f_detach = filt_che_detach, .f_event = filt_che_event, .f_touch = filt_che_touch, .f_process = filt_che_process, }; /* mitigation intervals in ns */ #define CH_MIT_IVAL_MIN NSEC_PER_USEC static uint64_t ch_mit_ival = CH_MIT_IVAL_DEFAULT; #if (DEVELOPMENT || DEBUG) SYSCTL_NODE(_kern_skywalk, OID_AUTO, channel, CTLFLAG_RW | CTLFLAG_LOCKED, 0, "Skywalk channel parameters"); SYSCTL_QUAD(_kern_skywalk_channel, OID_AUTO, mit_ival, CTLFLAG_RW | CTLFLAG_LOCKED, &ch_mit_ival, ""); #endif /* !DEVELOPMENT && !DEBUG */ static SKMEM_TYPE_DEFINE(ch_zone, struct kern_channel); static SKMEM_TYPE_DEFINE(ch_info_zone, struct ch_info); static int __ch_inited = 0; /* * Global cookies to hold the random numbers used for verifying * user metadata red zone violations. */ uint64_t __ch_umd_redzone_cookie = 0; #define SKMEM_TAG_CH_KEY "com.apple.skywalk.channel.key" SKMEM_TAG_DEFINE(skmem_tag_ch_key, SKMEM_TAG_CH_KEY); static void ch_redzone_init(void) { static_assert(sizeof(__ch_umd_redzone_cookie) == sizeof(((struct __metadata_preamble *)0)->mdp_redzone)); static_assert(METADATA_PREAMBLE_SZ == sizeof(struct __metadata_preamble)); static_assert(sizeof(struct __slot_desc) == 8); /* Initialize random user red zone cookie values */ do { read_random(&__ch_umd_redzone_cookie, sizeof(__ch_umd_redzone_cookie)); } while (__ch_umd_redzone_cookie == 0); SK_D("__ch_umd_redzone_cookie: 0x%llx", __ch_umd_redzone_cookie); } int channel_init(void) { int error = 0; SK_LOCK_ASSERT_HELD(); ASSERT(!__ch_inited); static_assert(offsetof(struct __user_packet, pkt_qum) == 0); static_assert(offsetof(struct __kern_packet, pkt_qum) == 0); ch_redzone_init(); __ch_inited = 1; return error; } void channel_fini(void) { SK_LOCK_ASSERT_HELD(); if (__ch_inited) { __ch_umd_redzone_cookie = 0; __ch_inited = 0; } } void csi_init(struct ch_selinfo *csi, boolean_t mitigation, uint64_t mit_ival) { csi->csi_flags = 0; csi->csi_pending = 0; if (mitigation) { csi->csi_interval = mit_ival; csi->csi_eff_interval = ch_mit_ival; /* global override */ os_atomic_or(&csi->csi_flags, CSI_MITIGATION, relaxed); csi->csi_tcall = thread_call_allocate_with_options(csi_tcall, csi, THREAD_CALL_PRIORITY_KERNEL, THREAD_CALL_OPTIONS_ONCE); /* this must not fail */ VERIFY(csi->csi_tcall != NULL); } else { csi->csi_interval = 0; csi->csi_eff_interval = 0; csi->csi_tcall = NULL; } lck_mtx_init(&csi->csi_lock, &channel_kn_lock_group, &channel_lock_attr); klist_init(&csi->csi_si.si_note); } void csi_destroy(struct ch_selinfo *csi) { /* check if not already destroyed, else do it now */ if ((os_atomic_or_orig(&csi->csi_flags, CSI_DESTROYED, relaxed) & CSI_DESTROYED) == 0) { CSI_LOCK(csi); /* must have been set by above atomic op */ VERIFY(csi->csi_flags & CSI_DESTROYED); if (csi->csi_flags & CSI_MITIGATION) { thread_call_t __single tcall = csi->csi_tcall; VERIFY(tcall != NULL); CSI_UNLOCK(csi); (void) thread_call_cancel_wait(tcall); if (!thread_call_free(tcall)) { boolean_t freed; (void) thread_call_cancel_wait(tcall); freed = thread_call_free(tcall); VERIFY(freed); } CSI_LOCK(csi); csi->csi_tcall = NULL; os_atomic_andnot(&csi->csi_flags, CSI_MITIGATION, relaxed); } csi->csi_pending = 0; CSI_UNLOCK(csi); selthreadclear(&csi->csi_si); /* now we don't need the mutex anymore */ lck_mtx_destroy(&csi->csi_lock, &channel_kn_lock_group); } } /* * Called only for select(2). */ __attribute__((always_inline)) static inline void csi_selrecord(struct ch_selinfo *csi, struct proc *p, void *wql) { struct selinfo *si = &csi->csi_si; CSI_LOCK_ASSERT_HELD(csi); selrecord(p, si, wql); } void csi_selrecord_one(struct __kern_channel_ring *kring, struct proc *p, void *wql) { struct ch_selinfo *csi = &kring->ckr_si; CSI_LOCK(csi); SK_DF(SK_VERB_EVENTS, "[%s] na \"%s\" (%p) kr %s (%p) " "si %p si_flags 0x%x", (kring->ckr_tx == NR_TX) ? "W" : "R", KRNA(kring)->na_name, SK_KVA(KRNA(kring)), kring->ckr_name, SK_KVA(kring), SK_KVA(&csi->csi_si), csi->csi_si.si_flags); csi_selrecord(csi, p, wql); CSI_UNLOCK(csi); } void csi_selrecord_all(struct nexus_adapter *na, enum txrx t, struct proc *p, void *wql) { struct ch_selinfo *csi = &na->na_si[t]; CSI_LOCK(csi); SK_DF(SK_VERB_EVENTS, "[%s] na \"%s\" (%p) si %p si_flags 0x%x", (t == NR_TX) ? "W" : "R", na->na_name, SK_KVA(na), SK_KVA(&csi->csi_si), csi->csi_si.si_flags); csi_selrecord(csi, p, wql); CSI_UNLOCK(csi); } /* * Called from na_post_event(). */ __attribute__((always_inline)) static inline void csi_selwakeup(struct ch_selinfo *csi, boolean_t within_kevent, boolean_t selwake, uint32_t hint) { struct selinfo *si = &csi->csi_si; CSI_LOCK_ASSERT_HELD(csi); csi->csi_pending = 0; if (selwake) { selwakeup(si); } if ((csi->csi_flags & CSI_KNOTE) && !within_kevent) { KNOTE(&si->si_note, hint); } } __attribute__((always_inline)) static inline void csi_selwakeup_delayed(struct ch_selinfo *csi) { CSI_LOCK_ASSERT_HELD(csi); ASSERT(csi->csi_flags & CSI_MITIGATION); ASSERT(csi->csi_tcall != NULL); if (thread_call_isactive(csi->csi_tcall)) { csi->csi_pending++; } else if (!csi_tcall_start(csi)) { csi_selwakeup(csi, FALSE, FALSE, 0); } } __attribute__((always_inline)) static inline void csi_selwakeup_common(struct ch_selinfo *csi, boolean_t nodelay, boolean_t within_kevent, boolean_t selwake, uint32_t hint) { CSI_LOCK_ASSERT_HELD(csi); if (nodelay || within_kevent || !selwake || hint != 0 || !(csi->csi_flags & CSI_MITIGATION)) { csi_selwakeup(csi, within_kevent, selwake, hint); } else { csi_selwakeup_delayed(csi); } } void csi_selwakeup_one(struct __kern_channel_ring *kring, boolean_t nodelay, boolean_t within_kevent, boolean_t selwake, uint32_t hint) { struct ch_selinfo *csi = &kring->ckr_si; CSI_LOCK(csi); SK_DF(SK_VERB_EVENTS, "[%s] na \"%s\" (%p) kr %s (%p) " "si %p si_flags 0x%x nodelay %u kev %u sel %u hint 0x%x", (kring->ckr_tx == NR_TX) ? "W" : "R", KRNA(kring)->na_name, SK_KVA(KRNA(kring)), kring->ckr_name, SK_KVA(kring), SK_KVA(&csi->csi_si), csi->csi_si.si_flags, nodelay, within_kevent, selwake, hint); csi_selwakeup_common(csi, nodelay, within_kevent, selwake, hint); CSI_UNLOCK(csi); } void csi_selwakeup_all(struct nexus_adapter *na, enum txrx t, boolean_t nodelay, boolean_t within_kevent, boolean_t selwake, uint32_t hint) { struct ch_selinfo *csi = &na->na_si[t]; CSI_LOCK(csi); SK_DF(SK_VERB_EVENTS, "[%s] na \"%s\" (%p) si %p " "si_flags 0x%x nodelay %u kev %u sel %u hint 0x%x", (t == NR_TX) ? "W" : "R", na->na_name, SK_KVA(na), SK_KVA(&csi->csi_si), csi->csi_si.si_flags, nodelay, within_kevent, selwake, hint); switch (t) { case NR_RX: if (!(na->na_flags & NAF_RX_MITIGATION)) { nodelay = TRUE; } break; case NR_TX: if (!(na->na_flags & NAF_TX_MITIGATION)) { nodelay = TRUE; } break; default: nodelay = TRUE; break; } csi_selwakeup_common(csi, nodelay, within_kevent, selwake, hint); CSI_UNLOCK(csi); } static boolean_t csi_tcall_start(struct ch_selinfo *csi) { uint64_t now, ival, deadline; CSI_LOCK_ASSERT_HELD(csi); ASSERT(csi->csi_flags & CSI_MITIGATION); ASSERT(csi->csi_tcall != NULL); /* pick up latest value */ ival = csi_tcall_update_interval(csi); /* if no mitigation, pass notification up now */ if (__improbable(ival == 0)) { return FALSE; } deadline = now = mach_absolute_time(); clock_deadline_for_periodic_event(ival, now, &deadline); (void) thread_call_enter_delayed(csi->csi_tcall, deadline); return TRUE; } static void csi_tcall(thread_call_param_t arg0, thread_call_param_t arg1) { #pragma unused(arg1) struct ch_selinfo *csi = (struct ch_selinfo *__single)arg0; CSI_LOCK(csi); csi_selwakeup(csi, FALSE, FALSE, 0); CSI_UNLOCK(csi); CSI_LOCK(csi); if (__improbable((csi->csi_flags & CSI_DESTROYED) == 0 && csi->csi_pending != 0 && !csi_tcall_start(csi))) { csi_selwakeup(csi, FALSE, FALSE, 0); } CSI_UNLOCK(csi); } __attribute__((always_inline)) static inline uint64_t csi_tcall_update_interval(struct ch_selinfo *csi) { uint64_t i = ch_mit_ival; /* if global override was adjusted, update local copies */ if (__improbable(csi->csi_eff_interval != i)) { ASSERT(csi->csi_flags & CSI_MITIGATION); csi->csi_interval = csi->csi_eff_interval = ((i == 0) ? 0 : MAX(i, CH_MIT_IVAL_MIN)); } return csi->csi_interval; } /* return EV_EOF if the channel is defunct */ static inline boolean_t ch_filt_check_defunct(struct kern_channel *ch, struct knote *kn) { if (__improbable((ch->ch_flags & CHANF_DEFUNCT) != 0)) { if (kn) { kn->kn_flags |= EV_EOF; } return TRUE; } return FALSE; } static void filt_chrwdetach(struct knote *kn, boolean_t write) { struct kern_channel *ch = (struct kern_channel *)knote_kn_hook_get_raw(kn); struct ch_selinfo *csi; struct selinfo *si; lck_mtx_lock(&ch->ch_lock); csi = ch->ch_si[write ? NR_TX : NR_RX]; si = &csi->csi_si; CSI_LOCK(csi); SK_DF(SK_VERB_EVENTS, "na \"%s\" (%p) ch %p kn %p (%s%s) " "si_flags 0x%x", ch->ch_na->na_name, SK_KVA(ch->ch_na), SK_KVA(ch), SK_KVA(kn), (kn->kn_flags & EV_POLL) ? "poll," : "", write ? "write" : "read", si->si_flags); if (KNOTE_DETACH(&si->si_note, kn)) { os_atomic_andnot(&csi->csi_flags, CSI_KNOTE, relaxed); } CSI_UNLOCK(csi); lck_mtx_unlock(&ch->ch_lock); } static void filt_chrdetach(struct knote *kn) { ASSERT(kn->kn_filter == EVFILT_READ); filt_chrwdetach(kn, FALSE); } static void filt_chwdetach(struct knote *kn) { ASSERT(kn->kn_filter == EVFILT_WRITE); filt_chrwdetach(kn, TRUE); } /* * callback from notifies (generated externally). * This always marks the knote activated, so always * return 1. */ static int filt_chrw(struct knote *kn, long hint, int events) { #if SK_LOG struct kern_channel *ch = (struct kern_channel *__single) knote_kn_hook_get_raw(kn); #else #pragma unused(kn) #pragma unused(hint) #pragma unused(events) #endif SK_DF(SK_VERB_EVENTS, "na \"%s\" (%p) ch %p " "kn %p (%s%s) hint 0x%x", ch->ch_na->na_name, SK_KVA(ch->ch_na), SK_KVA(ch), SK_KVA(kn), (kn->kn_flags & EV_POLL) ? "poll," : "", (events == POLLOUT) ? "write" : "read", (uint32_t)hint); /* assume we are ready */ return 1; } static int filt_chread(struct knote *kn, long hint) { ASSERT(kn->kn_filter == EVFILT_READ); /* There is no hint for read/write event */ if (hint != 0) { return 0; } return filt_chrw(kn, hint, POLLIN); } static int filt_chwrite(struct knote *kn, long hint) { ASSERT(kn->kn_filter == EVFILT_WRITE); /* There is no hint for read/write event */ if (hint != 0) { return 0; } return filt_chrw(kn, hint, POLLOUT); } static int filt_chtouch(struct knote *kn, struct kevent_qos_s *kev, int events) { #pragma unused(kev) /* * -fbounds-safety: This seems like an example of interop with code that * has -fbounds-safety disabled, which means we can use __unsafe_forge_* */ struct kern_channel *ch = __unsafe_forge_single(struct kern_channel *, knote_kn_hook_get_raw(kn)); int ev = kn->kn_filter; enum txrx dir = (ev == EVFILT_WRITE) ? NR_TX : NR_RX; int event_error = 0; int revents; /* save off the new input fflags and data */ kn->kn_sfflags = kev->fflags; kn->kn_sdata = kev->data; lck_mtx_lock(&ch->ch_lock); if (__improbable(ch_filt_check_defunct(ch, kn))) { lck_mtx_unlock(&ch->ch_lock); return 1; } /* if a note-specific low watermark is given, validate it */ if (kn->kn_sfflags & NOTE_LOWAT) { struct ch_ev_thresh note_thresh = { .cet_unit = (dir == NR_TX) ? ch->ch_info->cinfo_tx_lowat.cet_unit : ch->ch_info->cinfo_rx_lowat.cet_unit, .cet_value = (uint32_t)kn->kn_sdata }; if (ch_ev_thresh_validate(ch->ch_na->na_nx, dir, ¬e_thresh) != 0) { SK_ERR("invalid NOTE_LOWAT threshold %u", note_thresh.cet_value); knote_set_error(kn, EINVAL); lck_mtx_unlock(&ch->ch_lock); return 1; } } /* capture new state just so we can return it */ revents = ch_event(ch, events, NULL, knote_get_kq(kn)->kq_p, NULL, TRUE, &event_error, FALSE); lck_mtx_unlock(&ch->ch_lock); if (revents & POLLERR) { ASSERT(event_error != 0); /* * Setting a knote error here will confuse libdispatch, so we * use EV_EOF instead. */ kn->kn_flags |= EV_EOF; return 1; } else { return (events & revents) != 0; } } static int filt_chrtouch(struct knote *kn, struct kevent_qos_s *kev) { ASSERT(kn->kn_filter == EVFILT_READ); if (kev->flags & EV_ENABLE) { KDBG_DEBUG(KEV_EVTID(BSD_KEVENT_KNOTE_ENABLE), kn->kn_udata, kn->kn_status | (kn->kn_id << 32), kn->kn_filtid, VM_KERNEL_UNSLIDE_OR_PERM( ((struct kern_channel *)knote_kn_hook_get_raw(kn))->ch_na)); } return filt_chtouch(kn, kev, POLLIN); } static int filt_chwtouch(struct knote *kn, struct kevent_qos_s *kev) { ASSERT(kn->kn_filter == EVFILT_WRITE); return filt_chtouch(kn, kev, POLLOUT); } /* * Called from kevent. We call ch_event(POLL[IN|OUT]) and * return 0/1 accordingly. */ static int filt_chprocess(struct knote *kn, struct kevent_qos_s *kev, int events) { /* * -fbounds-safety: This seems like an example of interop with code that * has -fbounds-safety disabled, which means we can use __unsafe_forge_* */ struct kern_channel *ch = __unsafe_forge_single(struct kern_channel *, knote_kn_hook_get_raw(kn)); struct ch_event_result result; uint32_t lowat; int trigger_event = 1; int revents; int event_error; int64_t data; lck_mtx_lock(&ch->ch_lock); if (__improbable(ch_filt_check_defunct(ch, kn))) { knote_fill_kevent(kn, kev, 0); lck_mtx_unlock(&ch->ch_lock); return 1; } revents = ch_event(ch, events, NULL, knote_get_kq(kn)->kq_p, &result, TRUE, &event_error, FALSE); if (revents & POLLERR) { ASSERT(event_error != 0); lck_mtx_unlock(&ch->ch_lock); /* * Setting a knote error here will confuse libdispatch, so we * use EV_EOF instead. */ kn->kn_flags |= EV_EOF; knote_fill_kevent_with_sdata(kn, kev); return 1; } trigger_event = (events & revents) != 0; if (events == POLLOUT) { lowat = ch->ch_info->cinfo_tx_lowat.cet_value; if ((kn->kn_sfflags & NOTE_LOWAT) && kn->kn_sdata > lowat) { lowat = (uint32_t)kn->kn_sdata; } data = result.tx_data; if (result.tx_data < lowat) { trigger_event = 0; } } else { lowat = ch->ch_info->cinfo_rx_lowat.cet_value; if ((kn->kn_sfflags & NOTE_LOWAT) && kn->kn_sdata > lowat) { lowat = (uint32_t)kn->kn_sdata; } data = result.rx_data; if (result.rx_data < lowat) { trigger_event = 0; } } if (trigger_event) { knote_fill_kevent(kn, kev, data); } lck_mtx_unlock(&ch->ch_lock); return trigger_event; } static int filt_chrprocess(struct knote *kn, struct kevent_qos_s *kev) { ASSERT(kn->kn_filter == EVFILT_READ); return filt_chprocess(kn, kev, POLLIN); } static int filt_chwprocess(struct knote *kn, struct kevent_qos_s *kev) { ASSERT(kn->kn_filter == EVFILT_WRITE); return filt_chprocess(kn, kev, POLLOUT); } static int filt_chrwattach(struct knote *kn, __unused struct kevent_qos_s *kev) { struct kern_channel *ch = (struct kern_channel *)knote_kn_hook_get_raw(kn); struct nexus_adapter *na; struct ch_selinfo *csi; int ev = kn->kn_filter; enum txrx dir = (ev == EVFILT_WRITE) ? NR_TX : NR_RX; int revents; int events; int event_error = 0; ASSERT((kn->kn_filter == EVFILT_READ) || (kn->kn_filter == EVFILT_WRITE)); /* ch_kqfilter() should have acquired the lock */ LCK_MTX_ASSERT(&ch->ch_lock, LCK_MTX_ASSERT_OWNED); na = ch->ch_na; /* if a note-specific low watermark is given, validate it */ if (kn->kn_sfflags & NOTE_LOWAT) { struct ch_ev_thresh note_thresh = { .cet_unit = (dir == NR_TX) ? ch->ch_info->cinfo_tx_lowat.cet_unit : ch->ch_info->cinfo_rx_lowat.cet_unit, .cet_value = (uint32_t)kn->kn_sdata }; if (ch_ev_thresh_validate(ch->ch_na->na_nx, dir, ¬e_thresh) != 0) { SK_ERR("invalid NOTE_LOWAT threshold %u", note_thresh.cet_value); knote_set_error(kn, EINVAL); return 0; } } /* the si is indicated in the channel */ csi = ch->ch_si[dir]; CSI_LOCK(csi); if (KNOTE_ATTACH(&csi->csi_si.si_note, kn)) { os_atomic_or(&csi->csi_flags, CSI_KNOTE, relaxed); } CSI_UNLOCK(csi); SK_DF(SK_VERB_EVENTS, "na \"%s\" (%p) ch %p kn %p (%s%s)", na->na_name, SK_KVA(na), SK_KVA(ch), SK_KVA(kn), (kn->kn_flags & EV_POLL) ? "poll," : "", (ev == EVFILT_WRITE) ? "write" : "read"); /* capture current state */ events = (ev == EVFILT_WRITE) ? POLLOUT : POLLIN; if (__improbable(ch_filt_check_defunct(ch, kn))) { revents = events; } else { /* filt_chprocess() will fill in the kn_sdata field */ revents = ch_event(ch, events, NULL, knote_get_kq(kn)->kq_p, NULL, TRUE, &event_error, FALSE); } if (revents & POLLERR) { ASSERT(event_error != 0); kn->kn_flags |= EV_EOF; return 1; } else { return (events & revents) != 0; } } static int filt_chan_extended_common(struct knote *kn, long ev_hint) { /* * This function is not always called with the same set of locks held, * hence it is only allowed to manipulate kn_fflags, with atomics. * * the f_event / f_process functions may run concurrently. */ uint32_t add_fflags = 0; if ((ev_hint & CHAN_FILT_HINT_FLOW_ADV_UPD) != 0) { add_fflags |= NOTE_FLOW_ADV_UPDATE; } if ((ev_hint & CHAN_FILT_HINT_CHANNEL_EVENT) != 0) { add_fflags |= NOTE_CHANNEL_EVENT; } if ((ev_hint & CHAN_FILT_HINT_IF_ADV_UPD) != 0) { add_fflags |= NOTE_IF_ADV_UPD; } if (add_fflags) { /* Reset any events that are not requested on this knote */ add_fflags &= (kn->kn_sfflags & EVFILT_NW_CHANNEL_ALL_MASK); os_atomic_or(&kn->kn_fflags, add_fflags, relaxed); return add_fflags != 0; } return os_atomic_load(&kn->kn_fflags, relaxed) != 0; } static inline void che_process_channel_event(struct kern_channel *ch, struct knote *kn, uint32_t fflags, long *hint) { int revents, event_error = 0; LCK_MTX_ASSERT(&ch->ch_lock, LCK_MTX_ASSERT_OWNED); *hint &= ~CHAN_FILT_HINT_CHANNEL_EVENT; if (((ch->ch_flags & CHANF_EVENT_RING) != 0) && ((fflags & NOTE_CHANNEL_EVENT) != 0)) { /* capture new state to return */ revents = ch_event(ch, POLLIN, NULL, knote_get_kq(kn)->kq_p, NULL, TRUE, &event_error, TRUE); if (revents & POLLERR) { ASSERT(event_error != 0); /* * Setting a knote error here will confuse libdispatch, * so we use EV_EOF instead. */ kn->kn_flags |= EV_EOF; } else if ((revents & POLLIN) != 0) { *hint |= CHAN_FILT_HINT_CHANNEL_EVENT; } } /* * if the sync operation on event ring didn't find any events * then indicate that the channel event is not active. */ if ((*hint & CHAN_FILT_HINT_CHANNEL_EVENT) == 0) { /* * Avoid a costly atomic when the bit is already cleared. */ uint32_t knfflags = os_atomic_load(&kn->kn_fflags, relaxed); if (knfflags & CHAN_FILT_HINT_CHANNEL_EVENT) { os_atomic_andnot(&kn->kn_fflags, CHAN_FILT_HINT_CHANNEL_EVENT, relaxed); } } } static int filt_che_attach(struct knote *kn, __unused struct kevent_qos_s *kev) { struct kern_channel *ch = (struct kern_channel *)knote_kn_hook_get_raw(kn); struct ch_selinfo *csi; long hint = 0; static_assert(CHAN_FILT_HINT_FLOW_ADV_UPD == NOTE_FLOW_ADV_UPDATE); static_assert(CHAN_FILT_HINT_CHANNEL_EVENT == NOTE_CHANNEL_EVENT); static_assert(CHAN_FILT_HINT_IF_ADV_UPD == NOTE_IF_ADV_UPD); ASSERT(kn->kn_filter == EVFILT_NW_CHANNEL); /* ch_kqfilter() should have acquired the lock */ LCK_MTX_ASSERT(&ch->ch_lock, LCK_MTX_ASSERT_OWNED); csi = ch->ch_si[NR_TX]; CSI_LOCK(csi); if (KNOTE_ATTACH(&csi->csi_si.si_note, kn)) { os_atomic_or(&csi->csi_flags, CSI_KNOTE, relaxed); } CSI_UNLOCK(csi); if (__improbable(ch_filt_check_defunct(ch, kn))) { return 1; } if ((kn->kn_sfflags & NOTE_CHANNEL_EVENT) != 0) { os_atomic_or(&ch->ch_na->na_flags, NAF_CHANNEL_EVENT_ATTACHED, relaxed); } che_process_channel_event(ch, kn, kn->kn_sfflags, &hint); if ((kn->kn_sfflags & NOTE_FLOW_ADV_UPDATE) != 0) { /* on registration force an event */ hint |= CHAN_FILT_HINT_FLOW_ADV_UPD; } SK_DF(SK_VERB_EVENTS, "na \"%s\" (%p) ch %p kn %p (%s)", ch->ch_na->na_name, SK_KVA(ch->ch_na), SK_KVA(ch), SK_KVA(kn), "EVFILT_NW_CHANNEL"); return filt_chan_extended_common(kn, hint); } static void filt_che_detach(struct knote *kn) { struct kern_channel *ch = (struct kern_channel *)knote_kn_hook_get_raw(kn); struct ch_selinfo *csi; ASSERT(kn->kn_filter == EVFILT_NW_CHANNEL); lck_mtx_lock(&ch->ch_lock); if ((kn->kn_sfflags & NOTE_CHANNEL_EVENT) != 0) { os_atomic_andnot(&ch->ch_na->na_flags, NAF_CHANNEL_EVENT_ATTACHED, relaxed); } csi = ch->ch_si[NR_TX]; CSI_LOCK(csi); if (KNOTE_DETACH(&csi->csi_si.si_note, kn)) { os_atomic_andnot(&csi->csi_flags, CSI_KNOTE, relaxed); } CSI_UNLOCK(csi); lck_mtx_unlock(&ch->ch_lock); SK_DF(SK_VERB_EVENTS, "na \"%s\" (%p) ch %p kn %p (%s)", ch->ch_na->na_name, SK_KVA(ch->ch_na), SK_KVA(ch), SK_KVA(kn), "EVFILT_NW_CHANNEL"); } static int filt_che_event(struct knote *kn, long hint) { struct kern_channel *ch = (struct kern_channel *)knote_kn_hook_get_raw(kn); ASSERT(kn->kn_filter == EVFILT_NW_CHANNEL); if (hint == 0) { return 0; } if (__improbable(ch_filt_check_defunct(ch, NULL))) { return 1; } if ((hint & CHAN_FILT_HINT_CHANNEL_EVENT) != 0) { VERIFY((ch->ch_flags & CHANF_EVENT_RING) != 0); } SK_DF(SK_VERB_EVENTS, "na \"%s\" (%p) ch %p hint 0x%lx)", ch->ch_na->na_name, SK_KVA(ch->ch_na), SK_KVA(ch), hint); return filt_chan_extended_common(kn, hint); } static int filt_che_touch(struct knote *kn, struct kevent_qos_s *kev) { int ret; long hint = 0; struct kern_channel *ch = (struct kern_channel *)knote_kn_hook_get_raw(kn); ASSERT(kn->kn_filter == EVFILT_NW_CHANNEL); /* save off the new input fflags and data */ kn->kn_sfflags = kev->fflags; kn->kn_sdata = kev->data; lck_mtx_lock(&ch->ch_lock); if (__improbable(ch_filt_check_defunct(ch, kn))) { ret = 1; goto done; } if ((kn->kn_sfflags & NOTE_CHANNEL_EVENT) != 0) { if (kev->flags & EV_ENABLE) { os_atomic_or(&ch->ch_na->na_flags, NAF_CHANNEL_EVENT_ATTACHED, relaxed); } else if (kev->flags & EV_DISABLE) { os_atomic_andnot(&ch->ch_na->na_flags, NAF_CHANNEL_EVENT_ATTACHED, relaxed); } } che_process_channel_event(ch, kn, kn->kn_sfflags, &hint); ret = filt_chan_extended_common(kn, hint); done: lck_mtx_unlock(&ch->ch_lock); return ret; } static int filt_che_process(struct knote *kn, struct kevent_qos_s *kev) { int ret; long hint = 0; /* * -fbounds-safety: This seems like an example of interop with code that * has -fbounds-safety disabled, which means we can use __unsafe_forge_* */ struct kern_channel *ch = __unsafe_forge_single(struct kern_channel *, knote_kn_hook_get_raw(kn)); ASSERT(kn->kn_filter == EVFILT_NW_CHANNEL); lck_mtx_lock(&ch->ch_lock); if (__improbable(ch_filt_check_defunct(ch, kn))) { ret = 1; goto done; } che_process_channel_event(ch, kn, kn->kn_sfflags, &hint); ret = filt_chan_extended_common(kn, hint); done: lck_mtx_unlock(&ch->ch_lock); if (ret != 0) { /* * This filter historically behaves like EV_CLEAR, * even when EV_CLEAR wasn't set. */ knote_fill_kevent(kn, kev, 0); kn->kn_fflags = 0; } return ret; } int ch_kqfilter(struct kern_channel *ch, struct knote *kn, struct kevent_qos_s *kev) { SK_LOG_VAR(char dbgbuf[CH_DBGBUF_SIZE]); int result; lck_mtx_lock(&ch->ch_lock); VERIFY(!(ch->ch_flags & CHANF_KERNEL)); if (__improbable(ch->ch_na == NULL || !NA_IS_ACTIVE(ch->ch_na) || na_reject_channel(ch, ch->ch_na))) { SK_ERR("channel is non-permissive %s", ch2str(ch, dbgbuf, sizeof(dbgbuf))); knote_set_error(kn, ENXIO); lck_mtx_unlock(&ch->ch_lock); return 0; } switch (kn->kn_filter) { case EVFILT_READ: kn->kn_filtid = EVFILTID_SKYWALK_CHANNEL_R; break; case EVFILT_WRITE: kn->kn_filtid = EVFILTID_SKYWALK_CHANNEL_W; break; case EVFILT_NW_CHANNEL: kn->kn_filtid = EVFILTID_SKYWALK_CHANNEL_E; break; default: lck_mtx_unlock(&ch->ch_lock); SK_ERR("%s(%d): bad filter request %d", ch->ch_name, ch->ch_pid, kn->kn_filter); knote_set_error(kn, EINVAL); return 0; } knote_kn_hook_set_raw(kn, ch); /* call the appropriate sub-filter attach with the channel lock held */ result = knote_fops(kn)->f_attach(kn, kev); lck_mtx_unlock(&ch->ch_lock); return result; } boolean_t ch_is_multiplex(struct kern_channel *ch, enum txrx t) { return ch->ch_na != NULL && (ch->ch_last[t] - ch->ch_first[t] > 1); } int ch_select(struct kern_channel *ch, int events, void *wql, struct proc *p) { int revents; int event_error = 0; lck_mtx_lock(&ch->ch_lock); revents = ch_event(ch, events, wql, p, NULL, FALSE, &event_error, FALSE); lck_mtx_unlock(&ch->ch_lock); ASSERT((revents & POLLERR) == 0 || event_error != 0); return revents; } #if SK_LOG /* Hoisted out of line to reduce kernel stack footprint */ SK_LOG_ATTRIBUTE static void ch_event_log(const char *prefix, const struct kern_channel *ch, struct proc *p, const struct nexus_adapter *na, int events, int revents) { SK_DF(SK_VERB_EVENTS, "%s: na \"%s\" (%p) ch %p %s(%d) " "th %p ev 0x%x rev 0x%x", prefix, na->na_name, SK_KVA(na), SK_KVA(ch), sk_proc_name(p), sk_proc_pid(p), SK_KVA(current_thread()), events, revents); } #endif /* SK_LOG */ /* * select(2), poll(2) and kevent(2) handlers for channels. * * Can be called for one or more rings. Return true the event mask * corresponding to ready events. If there are no ready events, do * a selrecord on either individual selinfo or on the global one. * Device-dependent parts (locking and sync of tx/rx rings) * are done through callbacks. */ static int ch_event(struct kern_channel *ch, int events, void *wql, struct proc *p, struct ch_event_result *result, const boolean_t is_kevent, int *errno, const boolean_t is_ch_event) { struct nexus_adapter *na; struct __kern_channel_ring *kring; uint32_t i, check_all_tx, check_all_rx, want[NR_TXRX], revents = 0; uint32_t ready_tx_data = 0, ready_rx_data = 0; sk_protect_t protect = NULL; #define want_tx want[NR_TX] #define want_rx want[NR_RX] /* * In order to avoid nested locks, we need to "double check" * txsync and rxsync if we decide to do a selrecord(). * retry_tx (and retry_rx, later) prevent looping forever. */ boolean_t retry_tx = TRUE, retry_rx = TRUE; int found, error = 0; int s; net_update_uptime(); LCK_MTX_ASSERT(&ch->ch_lock, LCK_MTX_ASSERT_OWNED); ASSERT(!(ch->ch_flags & CHANF_KERNEL)); *errno = 0; if (__improbable((ch->ch_flags & CHANF_DEFUNCT) || ch->ch_schema == NULL)) { SK_ERR("%s(%d): channel is defunct or no longer bound", ch->ch_name, ch->ch_pid); revents = POLLERR; *errno = ENXIO; goto done; } /* clear CHANF_DEFUNCT_SKIP if it was set during defunct last time */ if (__improbable(ch->ch_flags & CHANF_DEFUNCT_SKIP)) { os_atomic_andnot(&ch->ch_flags, CHANF_DEFUNCT_SKIP, relaxed); } na = ch->ch_na; if (__improbable(na == NULL || !NA_IS_ACTIVE(na) || na_reject_channel(ch, na))) { SK_ERR("%s(%d): channel is non-permissive", ch->ch_name, ch->ch_pid); revents = POLLERR; *errno = ENXIO; goto done; } /* mark thread with sync-in-progress flag */ protect = sk_sync_protect(); /* update our work timestamp */ na->na_work_ts = net_uptime(); /* and make this channel eligible for draining again */ if (na->na_flags & NAF_DRAINING) { os_atomic_andnot(&na->na_flags, NAF_DRAINING, relaxed); } #if SK_LOG if (__improbable((sk_verbose & SK_VERB_EVENTS) != 0)) { ch_event_log("enter", ch, p, na, events, revents); } #endif if (is_ch_event) { goto process_channel_event; } want_tx = (events & (POLLOUT | POLLWRNORM)); want_rx = (events & (POLLIN | POLLRDNORM)); /* * check_all_{tx|rx} are set if the channel has more than one ring * AND the file descriptor is bound to all of them. If so, we sleep * on the "global" selinfo, otherwise we sleep on individual selinfo * The interrupt routine in the driver wake one or the other (or both) * depending on which clients are active. * * rxsync() is only called if we run out of buffers on a POLLIN. * txsync() is called if we run out of buffers on POLLOUT. */ check_all_tx = ch_is_multiplex(ch, NR_TX); check_all_rx = ch_is_multiplex(ch, NR_RX); /* * If want_tx is still set, we must issue txsync calls * (on all rings, to avoid that the tx rings stall). * XXX should also check head != khead on the tx rings. */ if (want_tx) { ring_id_t first_tx = ch->ch_first[NR_TX]; ring_id_t last_tx = ch->ch_last[NR_TX]; channel_threshold_unit_t tx_unit = ch->ch_info->cinfo_tx_lowat.cet_unit; /* * The first round checks if anyone is ready, if not * do a selrecord and another round to handle races. * want_tx goes to 0 if any space is found, and is * used to skip rings with no pending transmissions. */ flush_tx: for (i = first_tx, ready_tx_data = 0; i < last_tx; i++) { kring = &na->na_tx_rings[i]; if (!want_tx && kring->ckr_ring->ring_head == kring->ckr_khead) { continue; } /* only one thread does txsync */ s = kr_enter(kring, TRUE); ASSERT(s == 0); error = 0; DTRACE_SKYWALK2(pretxprologue, struct kern_channel *, ch, struct __kern_channel_ring *, kring); if (kr_txsync_prologue(ch, kring, p) >= kring->ckr_num_slots) { kr_log_bad_ring(kring); revents |= POLLERR; error = EFAULT; if (*errno == 0) { *errno = EFAULT; } } else { if (kring->ckr_na_sync(kring, p, 0)) { revents |= POLLERR; error = EIO; if (*errno == 0) { *errno = EIO; } } else { kr_txsync_finalize(ch, kring, p); } } DTRACE_SKYWALK3(posttxfinalize, struct kern_channel *, ch, struct __kern_channel_ring *, kring, int, error); /* * If we found new slots, notify potential listeners on * the same ring. Since we just did a txsync, look at * the copies of cur,tail in the kring. */ found = kring->ckr_rhead != kring->ckr_rtail; kr_exit(kring); if (found) { /* notify other listeners */ revents |= want_tx; want_tx = 0; (void) kring->ckr_na_notify(kring, p, (is_kevent ? NA_NOTEF_IN_KEVENT : 0)); } /* * Add this ring's free data to our running * tally for userspace. */ if (result != NULL) { switch (tx_unit) { case CHANNEL_THRESHOLD_UNIT_BYTES: ready_tx_data += kring->ckr_ready_bytes; break; case CHANNEL_THRESHOLD_UNIT_SLOTS: ready_tx_data += kring->ckr_ready_slots; break; } } } if (want_tx && retry_tx && !is_kevent) { if (check_all_tx) { csi_selrecord_all(na, NR_TX, p, wql); } else { csi_selrecord_one(&na->na_tx_rings[first_tx], p, wql); } retry_tx = FALSE; goto flush_tx; } } /* * If want_rx is still set scan receive rings. * Do it on all rings because otherwise we starve. */ if (want_rx) { ring_id_t first_rx = ch->ch_first[NR_RX]; ring_id_t last_rx = ch->ch_last[NR_RX]; channel_threshold_unit_t rx_unit = ch->ch_info->cinfo_rx_lowat.cet_unit; /* two rounds here for race avoidance */ do_retry_rx: for (i = first_rx, ready_rx_data = 0; i < last_rx; i++) { kring = &na->na_rx_rings[i]; /* only one thread does rxsync */ s = kr_enter(kring, TRUE); ASSERT(s == 0); error = 0; DTRACE_SKYWALK2(prerxprologue, struct kern_channel *, ch, struct __kern_channel_ring *, kring); if (kr_rxsync_prologue(ch, kring, p) >= kring->ckr_num_slots) { kr_log_bad_ring(kring); revents |= POLLERR; error = EFAULT; if (*errno == 0) { *errno = EFAULT; } } else { /* now we can use kring->rhead, rtail */ if (kring->ckr_na_sync(kring, p, 0)) { revents |= POLLERR; error = EIO; if (*errno == 0) { *errno = EIO; } } else { kr_rxsync_finalize(ch, kring, p); } } DTRACE_SKYWALK3(postrxfinalize, struct kern_channel *, ch, struct __kern_channel_ring *, kring, int, error); found = kring->ckr_rhead != kring->ckr_rtail; kr_exit(kring); if (found) { revents |= want_rx; retry_rx = FALSE; (void) kring->ckr_na_notify(kring, p, (is_kevent ? NA_NOTEF_IN_KEVENT : 0)); } /* * Add this ring's readable data to our running * tally for userspace. */ if (result != NULL) { switch (rx_unit) { case CHANNEL_THRESHOLD_UNIT_BYTES: ready_rx_data += kring->ckr_ready_bytes; break; case CHANNEL_THRESHOLD_UNIT_SLOTS: ready_rx_data += kring->ckr_ready_slots; break; } } } if (retry_rx && !is_kevent) { if (check_all_rx) { csi_selrecord_all(na, NR_RX, p, wql); } else { csi_selrecord_one(&na->na_rx_rings[first_rx], p, wql); } } if (retry_rx) { retry_rx = FALSE; goto do_retry_rx; } } if (result != NULL) { result->tx_data = ready_tx_data; result->rx_data = ready_rx_data; } goto skip_channel_event; process_channel_event: /* * perform sync operation on the event ring to make the channel * events enqueued in the ring visible to user-space. */ /* select() and poll() not supported for event ring */ ASSERT(is_kevent); VERIFY((ch->ch_last[NR_EV] - ch->ch_first[NR_EV]) == 1); kring = &na->na_event_rings[ch->ch_first[NR_EV]]; /* only one thread does the sync */ s = kr_enter(kring, TRUE); ASSERT(s == 0); if (kr_event_sync_prologue(kring, p) >= kring->ckr_num_slots) { kr_log_bad_ring(kring); revents |= POLLERR; if (*errno == 0) { *errno = EFAULT; } } else { if (kring->ckr_na_sync(kring, p, 0)) { revents |= POLLERR; if (*errno == 0) { *errno = EIO; } } else { kr_event_sync_finalize(ch, kring, p); } } found = (kring->ckr_rhead != kring->ckr_rtail); kr_exit(kring); if (found) { revents |= (events & POLLIN); } skip_channel_event: #if SK_LOG if (__improbable((sk_verbose & SK_VERB_EVENTS) != 0)) { ch_event_log("exit", ch, p, na, events, revents); } #endif /* SK_LOG */ /* unmark thread with sync-in-progress flag */ sk_sync_unprotect(protect); done: ASSERT(!sk_is_sync_protected()); return revents; #undef want_tx #undef want_rx } static struct kern_channel * ch_find(struct kern_nexus *nx, nexus_port_t port, ring_id_t ring_id) { struct kern_channel *ch; SK_LOCK_ASSERT_HELD(); STAILQ_FOREACH(ch, &nx->nx_ch_head, ch_link) { struct ch_info *cinfo = ch->ch_info; /* see comments in ch_open() */ if (cinfo->cinfo_nx_port != port) { continue; } else if (cinfo->cinfo_ch_ring_id != CHANNEL_RING_ID_ANY && ring_id != cinfo->cinfo_ch_ring_id && ring_id != CHANNEL_RING_ID_ANY) { continue; } /* found a match */ break; } if (ch != NULL) { ch_retain_locked(ch); } return ch; } #if SK_LOG /* Hoisted out of line to reduce kernel stack footprint */ SK_LOG_ATTRIBUTE static void ch_open_log1(const uuid_t p_uuid, struct proc *p, nexus_port_t port) { uuid_string_t uuidstr; SK_D("%s(%d) uniqueid %llu exec_uuid %s port %u", sk_proc_name(p), sk_proc_pid(p), proc_uniqueid(p), sk_uuid_unparse(p_uuid, uuidstr), port); } SK_LOG_ATTRIBUTE static void ch_open_log2(struct proc *p, nexus_port_t port, ring_id_t ring, uint32_t mode, int err) { SK_D("%s(%d) port %u ring %d mode 0x%x err %d", sk_proc_name(p), sk_proc_pid(p), port, (int)ring, mode, err); } #endif /* SK_LOG */ struct kern_channel * ch_open(struct ch_init *init, struct proc *p, int fd, int *err) { uint32_t mode = init->ci_ch_mode; nexus_port_t port = init->ci_nx_port; ring_id_t ring = init->ci_ch_ring_id; struct kern_channel *ch = NULL, *ch0 = NULL; struct nxbind *nxb = NULL; struct kern_nexus *nx; struct chreq chr; uuid_t p_uuid; kauth_cred_t cred; cred = kauth_cred_get(); ASSERT(!uuid_is_null(init->ci_nx_uuid)); proc_getexecutableuuid(p, p_uuid, sizeof(p_uuid)); *err = 0; /* make sure we don't allow userland to set kernel-only flags */ mode &= CHMODE_MASK; SK_LOCK(); nx = nx_find(init->ci_nx_uuid, TRUE); if (nx == NULL) { *err = ENOENT; goto done; } if ((nx->nx_flags & NXF_INVALIDATED) != 0) { *err = EBUSY; goto done; } /* port (zero-based) must be within the domain's range */ if (port >= NXDOM_MAX(NX_DOM(nx), ports)) { *err = EDOM; goto done; } VERIFY(port != NEXUS_PORT_ANY); if (mode & CHMODE_LOW_LATENCY) { if ((*err = skywalk_priv_check_cred(p, cred, PRIV_SKYWALK_LOW_LATENCY_CHANNEL)) != 0) { goto done; } } /* * Check with the nexus to see if the port is bound; if so, prepare * our nxbind structure that we'll need to pass down to the nexus * for it compare. If the caller provides a key, we take it over * and will free it ourselves (as part of freeing nxbind.) */ if (!NX_ANONYMOUS_PROV(nx)) { /* * -fbounds-safety: ci_key is user_addr_t (aka uint64_t), so * can't mark it as __sized_by. Forge it instead. */ void *key = __unsafe_forge_bidi_indexable(void *, init->ci_key, init->ci_key_len); #if SK_LOG if (__improbable(sk_verbose != 0)) { ch_open_log1(p_uuid, p, port); } #endif /* SK_LOG */ nxb = nxb_alloc(Z_WAITOK); nxb->nxb_flags |= NXBF_MATCH_UNIQUEID; nxb->nxb_uniqueid = proc_uniqueid(p); nxb->nxb_pid = proc_pid(p); nxb->nxb_flags |= NXBF_MATCH_EXEC_UUID; uuid_copy(nxb->nxb_exec_uuid, p_uuid); if (key != NULL) { nxb->nxb_flags |= NXBF_MATCH_KEY; nxb->nxb_key_len = init->ci_key_len; nxb->nxb_key = key; init->ci_key = USER_ADDR_NULL; /* take over */ } } /* * There can only be one owner of {port,ring_id} tuple. * CHANNEL_RING_ID_ANY (-1) ring_id gives exclusive rights over * all rings. Further attempts to own any or all of the rings * will be declined. * * For example, assuming a 2-rings setup for port 'p': * * owner{p,-1} * will not allow: * owner{p,-1}, owner{p,0}, owner{p,1} * * owner{p,0} * will allow: * owner{p,1} * will not allow: * owner{p,-1}, owner{p,0} */ if ((ch0 = ch_find(nx, port, ring)) != NULL) { SK_D("found ch0 %p", SK_KVA(ch0)); #if SK_LOG uuid_string_t uuidstr; char *na_name = (ch0->ch_na != NULL) ? ch0->ch_na->na_name : ""; SK_PERR(p, "ch %s flags (0x%x) exists on port %d on " "nx %s, owner %s(%d)", na_name, ch0->ch_flags, port, sk_uuid_unparse(nx->nx_uuid, uuidstr), ch0->ch_name, ch0->ch_pid); #endif /* SK_LOG */ *err = EBUSY; goto done; } bzero(&chr, sizeof(chr)); chr.cr_tx_lowat = init->ci_tx_lowat; chr.cr_rx_lowat = init->ci_rx_lowat; chr.cr_port = port; chr.cr_mode = mode; chr.cr_ring_id = ring; /* upon success, returns a channel with reference held */ ch = ch_connect(nx, &chr, nxb, p, fd, err); done: #if SK_LOG if (__improbable(sk_verbose != 0)) { ch_open_log2(p, port, ring, mode, *err); } #endif /* SK_LOG */ if (ch0 != NULL) { (void) ch_release_locked(ch0); } if (nx != NULL) { (void) nx_release_locked(nx); } if (nxb != NULL) { nxb_free(nxb); } SK_UNLOCK(); return ch; } struct kern_channel * ch_open_special(struct kern_nexus *nx, struct chreq *chr, boolean_t nonxref, int *err) { struct kern_channel *ch = NULL; SK_LOCK_ASSERT_HELD(); if ((nx->nx_flags & NXF_INVALIDATED) != 0) { *err = EBUSY; goto done; } *err = 0; ASSERT((chr->cr_mode & CHMODE_USER_PACKET_POOL) == 0); ASSERT((chr->cr_mode & CHMODE_EVENT_RING) == 0); ASSERT((chr->cr_mode & CHMODE_LOW_LATENCY) == 0); ASSERT(!uuid_is_null(chr->cr_spec_uuid)); chr->cr_mode |= CHMODE_KERNEL; if (nonxref) { chr->cr_mode |= CHMODE_NO_NXREF; } else { chr->cr_mode &= ~CHMODE_NO_NXREF; } /* upon success, returns a channel with reference held */ ch = ch_connect(nx, chr, NULL, kernproc, -1, err); if (ch != NULL) { /* * nonxref channels don't hold any reference to the nexus, * since otherwise we'll never be able to close them when * the last regular channel of the nexus is closed, as part * of the nexus's destructor operation. Release the nonxref * channel reference now, but make sure the nexus has at * least 3 refs: global list, provider list and the nonxref * channel itself, before doing that. */ if (nonxref) { ASSERT(ch->ch_flags & (CHANF_KERNEL | CHANF_NONXREF)); ASSERT(nx->nx_refcnt > 3); (void) nx_release_locked(nx); } } #if SK_LOG uuid_string_t uuidstr; const char * na_name = NULL; const char * nxdom_prov_name = NULL; if (ch != NULL && ch->ch_na != NULL) { na_name = ch->ch_na->na_name; } if (nx->nx_prov != NULL) { nxdom_prov_name = NX_DOM_PROV(nx)->nxdom_prov_name; } SK_D("nx %p (%s:\"%s\":%d:%d) spec_uuid \"%s\" mode 0x%x err %d", SK_KVA(nx), (nxdom_prov_name != NULL) ? nxdom_prov_name : "", (na_name != NULL) ? na_name : "", (int)chr->cr_port, (int)chr->cr_ring_id, sk_uuid_unparse(chr->cr_spec_uuid, uuidstr), chr->cr_mode, *err); #endif /* SK_LOG */ done: return ch; } static void ch_close_common(struct kern_channel *ch, boolean_t locked, boolean_t special) { #pragma unused(special) #if SK_LOG uuid_string_t uuidstr; const char *na_name = (ch->ch_na != NULL) ? ch->ch_na->na_name : ""; const char *__null_terminated nxdom_name = ""; if (ch->ch_nexus != NULL) { nxdom_name = NX_DOM(ch->ch_nexus)->nxdom_name; } const char *nxdom_prov_name = (ch->ch_nexus != NULL) ? NX_DOM_PROV(ch->ch_nexus)->nxdom_prov_name : ""; SK_D("ch %p (%s:%s:\"%s\":%u:%d) uuid %s flags 0x%x", SK_KVA(ch), nxdom_name, nxdom_prov_name, na_name, ch->ch_info->cinfo_nx_port, (int)ch->ch_info->cinfo_ch_ring_id, sk_uuid_unparse(ch->ch_info->cinfo_ch_id, uuidstr), ch->ch_flags); #endif /* SK_LOG */ struct kern_nexus *nx = ch->ch_nexus; if (!locked) { SK_LOCK(); } SK_LOCK_ASSERT_HELD(); /* * If the channel is participating in the interface advisory * notification, remove it from the nexus. * CHANF_IF_ADV is set and cleared only when nx_ch_if_adv_lock * is held in exclusive mode. */ lck_rw_lock_exclusive(&nx->nx_ch_if_adv_lock); if ((ch->ch_flags & CHANF_IF_ADV) != 0) { STAILQ_REMOVE(&nx->nx_ch_if_adv_head, ch, kern_channel, ch_link_if_adv); os_atomic_andnot(&ch->ch_flags, CHANF_IF_ADV, relaxed); if (STAILQ_EMPTY(&nx->nx_ch_if_adv_head)) { nx_netif_config_interface_advisory(nx, false); } lck_rw_done(&nx->nx_ch_if_adv_lock); lck_mtx_lock(&ch->ch_lock); (void) ch_release_locked(ch); } else { lck_rw_done(&nx->nx_ch_if_adv_lock); lck_mtx_lock(&ch->ch_lock); } LCK_MTX_ASSERT(&ch->ch_lock, LCK_MTX_ASSERT_OWNED); /* * Mark the channel as closing to prevent further setopt requests; * this flag is set once here and never gets cleared. */ ASSERT(!(ch->ch_flags & CHANF_CLOSING)); os_atomic_or(&ch->ch_flags, CHANF_CLOSING, relaxed); if (special) { VERIFY(ch->ch_flags & CHANF_KERNEL); } else { VERIFY(!(ch->ch_flags & CHANF_KERNEL)); } ch->ch_fd = -1; /* may be called as part of failure cleanup, so check */ if (ch->ch_flags & CHANF_ATTACHED) { boolean_t nonxref = !!(ch->ch_flags & CHANF_NONXREF); /* caller must hold an extra ref */ ASSERT(ch->ch_refcnt > 1); /* disconnect from nexus */ ch_disconnect(ch); /* * If this was the last regular channel and the nexus * has been closed, detach it and finish up the job. * If this was a nonxref channel, there is nothing * left to do; see comments in ch_open_special(). */ if (!nonxref) { STAILQ_REMOVE(&nx->nx_ch_head, ch, kern_channel, ch_link); nx->nx_ch_count--; if (STAILQ_EMPTY(&nx->nx_ch_head) && (nx->nx_flags & NXF_CLOSED)) { ASSERT(STAILQ_EMPTY(&nx->nx_ch_if_adv_head)); nx_detach(nx); } (void) nx_release_locked(nx); } else { ASSERT(ch->ch_flags & CHANF_KERNEL); STAILQ_REMOVE(&nx->nx_ch_nonxref_head, ch, kern_channel, ch_link); } os_atomic_andnot(&ch->ch_flags, CHANF_ATTACHED, relaxed); ch->ch_nexus = NULL; (void) ch_release_locked(ch); /* for the list */ } lck_mtx_unlock(&ch->ch_lock); if (!locked) { SK_UNLOCK(); } } void ch_close(struct kern_channel *ch, boolean_t locked) { ch_close_common(ch, locked, FALSE); } void ch_close_special(struct kern_channel *ch) { ch_close_common(ch, TRUE, TRUE); } static int ch_ev_thresh_validate(struct kern_nexus *nx, enum txrx t, struct ch_ev_thresh *cet) { struct nxprov_params *nxp = NX_PROV(nx)->nxprov_params; uint32_t bmin, bmax, smin, smax; int err = 0; if (cet->cet_unit != CHANNEL_THRESHOLD_UNIT_BYTES && cet->cet_unit != CHANNEL_THRESHOLD_UNIT_SLOTS) { err = EINVAL; goto done; } smin = 1; /* minimum 1 slot */ bmin = 1; /* minimum 1 byte */ if (t == NR_TX) { ASSERT(nxp->nxp_tx_slots > 0); smax = (nxp->nxp_tx_slots - 1); } else { ASSERT(nxp->nxp_rx_slots > 0); smax = (nxp->nxp_rx_slots - 1); } bmax = (smax * nxp->nxp_buf_size); switch (cet->cet_unit) { case CHANNEL_THRESHOLD_UNIT_BYTES: if (cet->cet_value < bmin) { cet->cet_value = bmin; } else if (cet->cet_value > bmax) { cet->cet_value = bmax; } break; case CHANNEL_THRESHOLD_UNIT_SLOTS: if (cet->cet_value < smin) { cet->cet_value = smin; } else if (cet->cet_value > smax) { cet->cet_value = smax; } break; } done: return err; } #if SK_LOG /* Hoisted out of line to reduce kernel stack footprint */ SK_LOG_ATTRIBUTE static void ch_connect_log1(const struct kern_nexus *nx, const struct ch_info *cinfo, const struct chreq *chr, const struct kern_channel *ch, const struct kern_nexus_domain_provider *nxdom_prov, struct proc *p) { struct __user_channel_schema *ch_schema = ch->ch_schema; uuid_string_t uuidstr; unsigned int n; ring_id_t i, j; ASSERT(ch_schema != NULL || (ch->ch_flags & CHANF_KERNEL)); if (ch_schema != NULL) { SK_D("channel_schema at %p", SK_KVA(ch_schema)); SK_D(" kern_name: \"%s\"", ch_schema->csm_kern_name); SK_D(" kern_uuid: %s", sk_uuid_unparse(ch_schema->csm_kern_uuid, uuidstr)); SK_D(" flags: 0x%x", ch_schema->csm_flags); SK_D(" tx_rings: %u [%u,%u]", ch_schema->csm_tx_rings, cinfo->cinfo_first_tx_ring, cinfo->cinfo_last_tx_ring); SK_D(" rx_rings: %u [%u,%u]", ch_schema->csm_rx_rings, cinfo->cinfo_first_rx_ring, cinfo->cinfo_last_rx_ring); j = ch->ch_last[NR_TX]; for (n = 0, i = ch->ch_first[NR_TX]; i < j; n++, i++) { SK_D(" tx_ring_%u_off: 0x%llx", i, (uint64_t)ch_schema->csm_ring_ofs[n].ring_off); SK_D(" tx_sd_%u_off: 0x%llx", i, (uint64_t)ch_schema->csm_ring_ofs[n].sd_off); } j = n; for (n = 0, i = ch->ch_first[NR_RX]; i < ch->ch_last[NR_RX]; n++, i++) { SK_D(" rx_ring_%u_off: 0x%llx", i, (uint64_t)ch_schema->csm_ring_ofs[n + j].ring_off); SK_D(" rx_sd_%u_off: 0x%llx", i, (uint64_t)ch_schema->csm_ring_ofs[n + j].sd_off); } SK_D(" md_type: %u", ch_schema->csm_md_type); SK_D(" md_subtype: %u", ch_schema->csm_md_subtype); SK_D(" stats_ofs: 0x%llx", ch_schema->csm_stats_ofs); SK_D(" stats_type: %u", ch_schema->csm_stats_type); SK_D(" flowadv_ofs: 0x%llx", ch_schema->csm_flowadv_ofs); SK_D(" flowadv_max: %u", ch_schema->csm_flowadv_max); SK_D(" nexusadv_ofs: 0x%llx", ch_schema->csm_nexusadv_ofs); } SK_D("ch %p (%s:%s:\"%s\":%u:%d)", SK_KVA(ch), nxdom_prov->nxdom_prov_dom->nxdom_name, nxdom_prov->nxdom_prov_name, ch->ch_na->na_name, cinfo->cinfo_nx_port, (int)cinfo->cinfo_ch_ring_id); SK_D(" ch UUID: %s", sk_uuid_unparse(cinfo->cinfo_ch_id, uuidstr)); SK_D(" nx UUID: %s", sk_uuid_unparse(nx->nx_uuid, uuidstr)); SK_D(" flags: 0x%x", ch->ch_flags); SK_D(" task: %p %s(%d)", SK_KVA(ch->ch_mmap.ami_maptask), sk_proc_name(p), sk_proc_pid(p)); SK_D(" txlowat: %u (%s)", cinfo->cinfo_tx_lowat.cet_value, ((cinfo->cinfo_tx_lowat.cet_unit == CHANNEL_THRESHOLD_UNIT_BYTES) ? "bytes" : "slots")); SK_D(" rxlowat: %u (%s)", cinfo->cinfo_rx_lowat.cet_value, ((cinfo->cinfo_rx_lowat.cet_unit == CHANNEL_THRESHOLD_UNIT_BYTES) ? "bytes" : "slots")); SK_D(" mmapref: %p", SK_KVA(ch->ch_mmap.ami_mapref)); SK_D(" mapaddr: 0x%llx", (uint64_t)cinfo->cinfo_mem_base); SK_D(" mapsize: %llu (%llu KB)", (uint64_t)cinfo->cinfo_mem_map_size, (uint64_t)cinfo->cinfo_mem_map_size >> 10); SK_D(" memsize: %llu (%llu KB)", (uint64_t)chr->cr_memsize, (uint64_t)chr->cr_memsize >> 10); SK_D(" offset: 0x%llx", (uint64_t)cinfo->cinfo_schema_offset); } SK_LOG_ATTRIBUTE static void ch_connect_log2(const struct kern_nexus *nx, int err) { uuid_string_t nx_uuidstr; SK_ERR("Error connecting to nexus UUID %s: %d", sk_uuid_unparse(nx->nx_uuid, nx_uuidstr), err); } #endif /* SK_LOG */ static struct kern_channel * ch_connect(struct kern_nexus *nx, struct chreq *chr, struct nxbind *nxb, struct proc *p, int fd, int *err) { struct kern_nexus_domain_provider *nxdom_prov; struct kern_channel *ch = NULL; struct ch_info *cinfo = NULL; uint32_t ch_mode = chr->cr_mode; boolean_t config = FALSE; struct nxdom *nxdom; boolean_t reserved_port = FALSE; ASSERT(!(ch_mode & CHMODE_KERNEL) || p == kernproc); ASSERT(chr->cr_port != NEXUS_PORT_ANY || (ch_mode & CHMODE_KERNEL)); SK_LOCK_ASSERT_HELD(); /* validate thresholds before we proceed any further */ if ((*err = ch_ev_thresh_validate(nx, NR_TX, &chr->cr_tx_lowat)) != 0 || (*err = ch_ev_thresh_validate(nx, NR_RX, &chr->cr_rx_lowat)) != 0) { goto done; } if (!(ch_mode & CHMODE_KERNEL) && !NX_USER_CHANNEL_PROV(nx)) { *err = ENOTSUP; goto done; } ch = ch_alloc(Z_WAITOK); lck_mtx_lock(&ch->ch_lock); uuid_generate_random(ch->ch_info->cinfo_ch_id); ch->ch_fd = fd; ch->ch_pid = proc_pid(p); (void) snprintf(ch->ch_name, sizeof(ch->ch_name), "%s", proc_name_address(p)); nxdom_prov = NX_DOM_PROV(nx); nxdom = NX_DOM(nx); if (ch_mode & (CHMODE_KERNEL | CHMODE_NO_NXREF)) { /* * CHANF_KERNEL implies a channel opened by a kernel * subsystem, and is triggered by the CHMODE_KERNEL * flag which (only ever) set by ch_open_special(). * * CHANF_NONXREF can be optionally set based on the * CHMODE_NO_NXREF request flag. This must only be * set by ch_open_special() as well, hence we verify. */ ASSERT(p == kernproc); ASSERT(ch_mode & CHMODE_KERNEL); os_atomic_or(&ch->ch_flags, CHANF_KERNEL, relaxed); if (ch_mode & CHMODE_NO_NXREF) { os_atomic_or(&ch->ch_flags, CHANF_NONXREF, relaxed); } config = (ch_mode & CHMODE_CONFIG) != 0; if (chr->cr_port == NEXUS_PORT_ANY) { if (nxdom->nxdom_find_port == NULL) { *err = ENOTSUP; goto done; } /* * If ephemeral port request, find one for client; * we ask for the reserved port range if this is * a configuration request (CHMODE_CONFIG). */ if ((*err = nxdom->nxdom_find_port(nx, config, &chr->cr_port)) != 0) { goto done; } } } if (skywalk_check_platform_binary(p)) { os_atomic_or(&ch->ch_flags, CHANF_PLATFORM, relaxed); } ASSERT(chr->cr_port != NEXUS_PORT_ANY); reserved_port = (nxdom->nxdom_port_is_reserved != NULL && (*nxdom->nxdom_port_is_reserved)(nx, chr->cr_port)); if (!config && reserved_port) { *err = EDOM; goto done; } SK_PDF(SK_VERB_CHANNEL, p, "%snexus port %u requested", reserved_port ? "[reserved] " : "", chr->cr_port); if ((*err = nxdom_prov->nxdom_prov_dom->nxdom_connect(nxdom_prov, nx, ch, chr, nxb, p)) != 0) { goto done; } cinfo = ch->ch_info; uuid_copy(cinfo->cinfo_nx_uuid, nx->nx_uuid); /* for easy access to immutables */ bcopy(nx->nx_prov->nxprov_params, &cinfo->cinfo_nxprov_params, sizeof(struct nxprov_params)); cinfo->cinfo_ch_mode = ch_mode; cinfo->cinfo_ch_ring_id = chr->cr_ring_id; cinfo->cinfo_nx_port = chr->cr_port; cinfo->cinfo_mem_base = ch->ch_mmap.ami_mapaddr; cinfo->cinfo_mem_map_size = ch->ch_mmap.ami_mapsize; cinfo->cinfo_schema_offset = chr->cr_memoffset; cinfo->cinfo_num_bufs = PP_BUF_REGION_DEF(skmem_arena_nexus(ch->ch_na->na_arena)->arn_rx_pp)->skr_params.srp_c_obj_cnt; /* * ch_last is really the number of rings, but we need to return * the actual zero-based ring ID to the client. Make sure that * is the case here and adjust last_{tx,rx}_ring accordingly. */ ASSERT((ch->ch_last[NR_TX] > 0) || (ch->ch_na->na_type == NA_NETIF_COMPAT_DEV)); ASSERT((ch->ch_last[NR_RX] > 0) || (ch->ch_na->na_type == NA_NETIF_COMPAT_HOST)); cinfo->cinfo_first_tx_ring = ch->ch_first[NR_TX]; cinfo->cinfo_last_tx_ring = ch->ch_last[NR_TX] - 1; cinfo->cinfo_first_rx_ring = ch->ch_first[NR_RX]; cinfo->cinfo_last_rx_ring = ch->ch_last[NR_RX] - 1; cinfo->cinfo_tx_lowat = chr->cr_tx_lowat; cinfo->cinfo_rx_lowat = chr->cr_rx_lowat; if (ch_mode & CHMODE_NO_NXREF) { ASSERT(ch_mode & CHMODE_KERNEL); STAILQ_INSERT_TAIL(&nx->nx_ch_nonxref_head, ch, ch_link); } else { STAILQ_INSERT_TAIL(&nx->nx_ch_head, ch, ch_link); nx->nx_ch_count++; } os_atomic_or(&ch->ch_flags, CHANF_ATTACHED, relaxed); ch->ch_nexus = nx; nx_retain_locked(nx); /* hold a ref on the nexus */ ch_retain_locked(ch); /* one for being in the list */ ch_retain_locked(ch); /* one for the caller */ /* * Now that we've successfully created the nexus adapter, inform the * nexus provider about the rings and the slots within each ring. * This is a no-op for internal nexus providers. */ if ((*err = nxprov_advise_connect(nx, ch, p)) != 0) { lck_mtx_unlock(&ch->ch_lock); /* gracefully close this fully-formed channel */ if (ch->ch_flags & CHANF_KERNEL) { ch_close_special(ch); } else { ch_close(ch, TRUE); } (void) ch_release_locked(ch); ch = NULL; goto done; } ASSERT(ch->ch_schema == NULL || (ch->ch_schema->csm_flags & CSM_ACTIVE)); #if SK_LOG if (__improbable(sk_verbose != 0)) { ch_connect_log1(nx, cinfo, chr, ch, nxdom_prov, p); } #endif /* SK_LOG */ done: if (ch != NULL) { lck_mtx_unlock(&ch->ch_lock); } if (*err != 0) { #if SK_LOG if (__improbable(sk_verbose != 0)) { ch_connect_log2(nx, *err); } #endif /* SK_LOG */ if (ch != NULL) { ch_free(ch); ch = NULL; } } return ch; } static void ch_disconnect(struct kern_channel *ch) { struct kern_nexus *nx = ch->ch_nexus; struct kern_nexus_domain_provider *nxdom_prov = NX_DOM_PROV(nx); SK_LOCK_ASSERT_HELD(); LCK_MTX_ASSERT(&ch->ch_lock, LCK_MTX_ASSERT_OWNED); /* * Inform the nexus provider that the channel has been quiesced * and disconnected from the nexus port. This is a no-op for * internal nexus providers. */ nxprov_advise_disconnect(nx, ch); /* Finally, let the domain provider tear down the instance */ nxdom_prov->nxdom_prov_dom->nxdom_disconnect(nxdom_prov, nx, ch); } void ch_deactivate(struct kern_channel *ch) { /* * This is a trapdoor flag; once CSM_ACTIVE is cleared, * it will never be set again. Doing this will cause * os_channel_is_defunct() to indicate that the channel * is defunct and is no longer usable (thus should be * immediately closed). */ if (ch->ch_schema != NULL && (ch->ch_schema->csm_flags & CSM_ACTIVE)) { os_atomic_andnot(__DECONST(uint32_t *, &ch->ch_schema->csm_flags), CSM_ACTIVE, relaxed); /* make this globally visible */ os_atomic_thread_fence(seq_cst); } } int ch_set_opt(struct kern_channel *ch, struct sockopt *sopt) { #pragma unused(ch) int err = 0; if (sopt->sopt_dir != SOPT_SET) { sopt->sopt_dir = SOPT_SET; } switch (sopt->sopt_name) { case CHOPT_TX_LOWAT_THRESH: err = ch_set_lowat_thresh(ch, NR_TX, sopt); break; case CHOPT_RX_LOWAT_THRESH: err = ch_set_lowat_thresh(ch, NR_RX, sopt); break; case CHOPT_IF_ADV_CONF: err = ch_configure_interface_advisory_event(ch, sopt); break; default: err = ENOPROTOOPT; break; } return err; } int ch_get_opt(struct kern_channel *ch, struct sockopt *sopt) { #pragma unused(ch) int err = 0; if (sopt->sopt_dir != SOPT_GET) { sopt->sopt_dir = SOPT_GET; } switch (sopt->sopt_name) { case CHOPT_TX_LOWAT_THRESH: err = ch_get_lowat_thresh(ch, NR_TX, sopt); break; case CHOPT_RX_LOWAT_THRESH: err = ch_get_lowat_thresh(ch, NR_RX, sopt); break; default: err = ENOPROTOOPT; break; } return err; } static int ch_configure_interface_advisory_event(struct kern_channel *ch, struct sockopt *sopt) { int err = 0; boolean_t enable = 0; struct kern_nexus *nx = ch->ch_nexus; LCK_MTX_ASSERT(&ch->ch_lock, LCK_MTX_ASSERT_OWNED); SK_LOCK_ASSERT_NOTHELD(); if (sopt->sopt_val == USER_ADDR_NULL) { return EINVAL; } if (nx->nx_adv.nxv_adv == NULL) { return ENOTSUP; } err = sooptcopyin(sopt, &enable, sizeof(enable), sizeof(enable)); if (err != 0) { return err; } /* * Drop ch_lock to acquire sk_lock and nx_ch_if_adv_lock due to lock * ordering requirement; check if the channel is closing once ch_lock * is reacquired and bail if so. */ lck_mtx_unlock(&ch->ch_lock); SK_LOCK(); lck_rw_lock_exclusive(&nx->nx_ch_if_adv_lock); lck_mtx_lock(&ch->ch_lock); if (ch->ch_flags & CHANF_CLOSING) { err = ENXIO; goto done; } /* * if interface advisory reporting is enabled on the channel then * add the channel to the list of channels eligible for interface * advisory update on the nexus. If disabled, remove from the list. */ if (enable) { if ((ch->ch_flags & CHANF_IF_ADV) != 0) { ASSERT(err == 0); goto done; } bool enable_adv = STAILQ_EMPTY(&nx->nx_ch_if_adv_head); os_atomic_or(&ch->ch_flags, CHANF_IF_ADV, relaxed); STAILQ_INSERT_TAIL(&nx->nx_ch_if_adv_head, ch, ch_link_if_adv); if (enable_adv) { nx_netif_config_interface_advisory(nx, true); } ch_retain_locked(ch); /* for being in the IF ADV list */ } else { if ((ch->ch_flags & CHANF_IF_ADV) == 0) { ASSERT(err == 0); goto done; } STAILQ_REMOVE(&nx->nx_ch_if_adv_head, ch, kern_channel, ch_link_if_adv); os_atomic_andnot(&ch->ch_flags, CHANF_IF_ADV, relaxed); if (STAILQ_EMPTY(&nx->nx_ch_if_adv_head)) { nx_netif_config_interface_advisory(nx, false); } (void) ch_release_locked(ch); } done: lck_mtx_unlock(&ch->ch_lock); lck_rw_done(&nx->nx_ch_if_adv_lock); SK_UNLOCK(); lck_mtx_lock(&ch->ch_lock); return err; } static int ch_set_lowat_thresh(struct kern_channel *ch, enum txrx t, struct sockopt *sopt) { struct ch_ev_thresh cet, *ocet; int err = 0; LCK_MTX_ASSERT(&ch->ch_lock, LCK_MTX_ASSERT_OWNED); if (sopt->sopt_val == USER_ADDR_NULL) { return EINVAL; } bzero(&cet, sizeof(cet)); err = sooptcopyin(sopt, &cet, sizeof(cet), sizeof(cet)); if (err == 0) { err = ch_ev_thresh_validate(ch->ch_nexus, t, &cet); if (err == 0) { if (t == NR_TX) { ocet = &ch->ch_info->cinfo_tx_lowat; } else { ocet = &ch->ch_info->cinfo_rx_lowat; } /* if there is no change, we're done */ if (ocet->cet_unit == cet.cet_unit && ocet->cet_value == cet.cet_value) { return 0; } *ocet = cet; for_rx_tx(t) { ring_id_t qfirst = ch->ch_first[t]; ring_id_t qlast = ch->ch_last[t]; uint32_t i; for (i = qfirst; i < qlast; i++) { struct __kern_channel_ring *kring = &NAKR(ch->ch_na, t)[i]; (void) kring->ckr_na_notify(kring, sopt->sopt_p, 0); } } (void) sooptcopyout(sopt, &cet, sizeof(cet)); } } return err; } static int ch_get_lowat_thresh(struct kern_channel *ch, enum txrx t, struct sockopt *sopt) { struct ch_ev_thresh cet; LCK_MTX_ASSERT(&ch->ch_lock, LCK_MTX_ASSERT_OWNED); if (sopt->sopt_val == USER_ADDR_NULL) { return EINVAL; } if (t == NR_TX) { cet = ch->ch_info->cinfo_tx_lowat; } else { cet = ch->ch_info->cinfo_rx_lowat; } return sooptcopyout(sopt, &cet, sizeof(cet)); } static struct kern_channel * ch_alloc(zalloc_flags_t how) { struct kern_channel *ch; ch = zalloc_flags(ch_zone, how | Z_ZERO); if (ch) { lck_mtx_init(&ch->ch_lock, &channel_lock_group, &channel_lock_attr); ch->ch_info = zalloc_flags(ch_info_zone, how | Z_ZERO); } return ch; } static void ch_free(struct kern_channel *ch) { ASSERT(ch->ch_refcnt == 0); ASSERT(ch->ch_pp == NULL); ASSERT(!(ch->ch_flags & (CHANF_ATTACHED | CHANF_EXT_CONNECTED | CHANF_EXT_PRECONNECT | CHANF_IF_ADV))); lck_mtx_destroy(&ch->ch_lock, &channel_lock_group); SK_DF(SK_VERB_MEM, "ch %p FREE", SK_KVA(ch)); ASSERT(ch->ch_info != NULL); zfree(ch_info_zone, ch->ch_info); ch->ch_info = NULL; zfree(ch_zone, ch); } void ch_retain_locked(struct kern_channel *ch) { SK_LOCK_ASSERT_HELD(); ch->ch_refcnt++; VERIFY(ch->ch_refcnt != 0); } void ch_retain(struct kern_channel *ch) { SK_LOCK(); ch_retain_locked(ch); SK_UNLOCK(); } int ch_release_locked(struct kern_channel *ch) { int oldref = ch->ch_refcnt; SK_LOCK_ASSERT_HELD(); VERIFY(ch->ch_refcnt != 0); if (--ch->ch_refcnt == 0) { ch_free(ch); } return oldref == 1; } int ch_release(struct kern_channel *ch) { int lastref; SK_LOCK(); lastref = ch_release_locked(ch); SK_UNLOCK(); return lastref; } void ch_dtor(struct kern_channel *ch) { SK_LOCK(); ch_close(ch, TRUE); (void) ch_release_locked(ch); SK_UNLOCK(); } void ch_update_upp_buf_stats(struct kern_channel *ch, struct kern_pbufpool *pp) { uint64_t buf_inuse = pp->pp_u_bufinuse; struct __user_channel_schema *csm = ch->ch_schema; os_atomic_store(&csm->csm_upp_buf_inuse, buf_inuse, relaxed); } #if SK_LOG SK_NO_INLINE_ATTRIBUTE char * ch2str(const struct kern_channel *ch, char *__counted_by(dsz)dst, size_t dsz) { (void) sk_snprintf(dst, dsz, "%p %s flags 0x%b", SK_KVA(ch), ch->ch_name, ch->ch_flags, CHANF_BITS); return dst; } #endif |