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 | /* * Copyright (c) 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@ */ /* * @OSF_COPYRIGHT@ */ /* * Mach Operating System * Copyright (c) 1991,1990,1989,1988,1987 Carnegie Mellon University * All Rights Reserved. * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 * * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. */ #define LOCK_PRIVATE 1 #include <debug.h> #include <kern/locks_internal.h> #include <kern/lock_stat.h> #include <kern/locks.h> #include <kern/zalloc.h> #include <kern/thread.h> #include <kern/processor.h> #include <kern/sched_prim.h> #include <kern/debug.h> #include <machine/atomic.h> #include <machine/machine_cpu.h> KALLOC_TYPE_DEFINE(KT_LCK_RW, lck_rw_t, KT_PRIV_ACCT); #define LCK_RW_WRITER_EVENT(lck) (event_t)((uintptr_t)(lck)+1) #define LCK_RW_READER_EVENT(lck) (event_t)((uintptr_t)(lck)+2) #define WRITE_EVENT_TO_RWLOCK(event) ((lck_rw_t *)((uintptr_t)(event)-1)) #define READ_EVENT_TO_RWLOCK(event) ((lck_rw_t *)((uintptr_t)(event)-2)) #if CONFIG_DTRACE #define DTRACE_RW_SHARED 0x0 //reader #define DTRACE_RW_EXCL 0x1 //writer #define DTRACE_NO_FLAG 0x0 //not applicable #endif /* CONFIG_DTRACE */ #define LCK_RW_LCK_EXCLUSIVE_CODE 0x100 #define LCK_RW_LCK_EXCLUSIVE1_CODE 0x101 #define LCK_RW_LCK_SHARED_CODE 0x102 #define LCK_RW_LCK_SH_TO_EX_CODE 0x103 #define LCK_RW_LCK_SH_TO_EX1_CODE 0x104 #define LCK_RW_LCK_EX_TO_SH_CODE 0x105 #if __x86_64__ #define LCK_RW_LCK_EX_WRITER_SPIN_CODE 0x106 #define LCK_RW_LCK_EX_WRITER_WAIT_CODE 0x107 #define LCK_RW_LCK_EX_READER_SPIN_CODE 0x108 #define LCK_RW_LCK_EX_READER_WAIT_CODE 0x109 #define LCK_RW_LCK_SHARED_SPIN_CODE 0x110 #define LCK_RW_LCK_SHARED_WAIT_CODE 0x111 #define LCK_RW_LCK_SH_TO_EX_SPIN_CODE 0x112 #define LCK_RW_LCK_SH_TO_EX_WAIT_CODE 0x113 #endif #define lck_rw_ilk_lock(lock) hw_lock_bit ((hw_lock_bit_t*)(&(lock)->lck_rw_tag), LCK_RW_INTERLOCK_BIT, LCK_GRP_NULL) #define lck_rw_ilk_unlock(lock) hw_unlock_bit((hw_lock_bit_t*)(&(lock)->lck_rw_tag), LCK_RW_INTERLOCK_BIT) #define ordered_load_rw(lock) os_atomic_load(&(lock)->lck_rw_data, compiler_acq_rel) #define ordered_store_rw(lock, value) os_atomic_store(&(lock)->lck_rw_data, (value), compiler_acq_rel) #define ordered_store_rw_owner(lock, value) os_atomic_store(&(lock)->lck_rw_owner, (value), compiler_acq_rel) #ifdef DEBUG_RW static TUNABLE(bool, lck_rw_recursive_shared_assert_74048094, "lck_rw_recursive_shared_assert", false); SECURITY_READ_ONLY_EARLY(vm_packing_params_t) rwlde_caller_packing_params = VM_PACKING_PARAMS(LCK_RW_CALLER_PACKED); #define rw_lock_debug_disabled() (lck_opts_get() & LCK_OPTION_DISABLE_RW_DEBUG) #define set_rwlde_caller_packed(entry, caller) ((entry)->rwlde_caller_packed = VM_PACK_POINTER((vm_offset_t)caller, LCK_RW_CALLER_PACKED)) #define get_rwlde_caller(entry) ((void*)VM_UNPACK_POINTER(entry->rwlde_caller_packed, LCK_RW_CALLER_PACKED)) #endif /* DEBUG_RW */ /*! * @function lck_rw_alloc_init * * @abstract * Allocates and initializes a rw_lock_t. * * @discussion * The function can block. See lck_rw_init() for initialization details. * * @param grp lock group to associate with the lock. * @param attr lock attribute to initialize the lock. * * @returns NULL or the allocated lock */ lck_rw_t * lck_rw_alloc_init( lck_grp_t *grp, lck_attr_t *attr) { lck_rw_t *lck; lck = zalloc_flags(KT_LCK_RW, Z_WAITOK | Z_ZERO); lck_rw_init(lck, grp, attr); return lck; } /*! * @function lck_rw_init * * @abstract * Initializes a rw_lock_t. * * @discussion * Usage statistics for the lock are going to be added to the lock group provided. * * The lock attribute can be used to specify the lock contention behaviour. * RW_WRITER_PRIORITY is the default behaviour (LCK_ATTR_NULL defaults to RW_WRITER_PRIORITY) * and lck_attr_rw_shared_priority() can be used to set the behaviour to RW_SHARED_PRIORITY. * * RW_WRITER_PRIORITY gives priority to the writers upon contention with the readers; * if the lock is held and a writer starts waiting for the lock, readers will not be able * to acquire the lock until all writers stop contending. Readers could * potentially starve. * RW_SHARED_PRIORITY gives priority to the readers upon contention with the writers: * unleass the lock is held in exclusive mode, readers will always be able to acquire the lock. * Readers can lock a shared lock even if there are writers waiting. Writers could potentially * starve. * * @param lck lock to initialize. * @param grp lock group to associate with the lock. * @param attr lock attribute to initialize the lock. * */ void lck_rw_init( lck_rw_t *lck, lck_grp_t *grp, lck_attr_t *attr) { /* keep this so that the lck_type_t type is referenced for lldb */ lck_type_t type = LCK_TYPE_RW; if (attr == LCK_ATTR_NULL) { attr = &lck_attr_default; } *lck = (lck_rw_t){ .lck_rw_type = type, .lck_rw_can_sleep = true, .lck_rw_priv_excl = !(attr->lck_attr_val & LCK_ATTR_RW_SHARED_PRIORITY), }; lck_grp_reference(grp, &grp->lck_grp_rwcnt); } /*! * @function lck_rw_free * * @abstract * Frees a rw_lock previously allocated with lck_rw_alloc_init(). * * @discussion * The lock must be not held by any thread. * * @param lck rw_lock to free. */ void lck_rw_free( lck_rw_t *lck, lck_grp_t *grp) { lck_rw_destroy(lck, grp); zfree(KT_LCK_RW, lck); } /*! * @function lck_rw_destroy * * @abstract * Destroys a rw_lock previously initialized with lck_rw_init(). * * @discussion * The lock must be not held by any thread. * * @param lck rw_lock to destroy. */ void lck_rw_destroy( lck_rw_t *lck, lck_grp_t *grp) { if (lck->lck_rw_type != LCK_TYPE_RW || lck->lck_rw_tag == LCK_RW_TAG_DESTROYED) { panic("Destroying previously destroyed lock %p", lck); } lck_rw_assert(lck, LCK_RW_ASSERT_NOTHELD); lck->lck_rw_type = LCK_TYPE_NONE; lck->lck_rw_tag = LCK_RW_TAG_DESTROYED; lck_grp_deallocate(grp, &grp->lck_grp_rwcnt); } #ifdef DEBUG_RW /* * Best effort mechanism to debug rw_locks. * * This mechanism is in addition to the owner checks. The owner is set * only when the lock is held in exclusive mode so the checks do not cover * the cases in which the lock is held in shared mode. * * This mechanism tentatively stores the rw_lock acquired and its debug * information on the thread struct. * Just up to LCK_RW_EXPECTED_MAX_NUMBER rw lock debug information can be stored. * * NOTE: LCK_RW_EXPECTED_MAX_NUMBER is the expected number of rw_locks held * at the same time. If a thread holds more than this number of rw_locks we * will start losing debug information. * Increasing LCK_RW_EXPECTED_MAX_NUMBER will increase the probability we will * store the debug information but it will require more memory per thread * and longer lock/unlock time. * * If an empty slot is found for the debug information, we record the lock * otherwise we set the overflow threshold flag. * * If we reached the overflow threshold we might stop asserting because we cannot be sure * anymore if the lock was acquired or not. * * Even if we reached the overflow threshold, we try to store the debug information * for the new locks acquired. This can be useful in core dumps to debug * possible return to userspace without unlocking and to find possible readers * holding the lock. */ __startup_func static void rw_lock_init(void) { if (kern_feature_override(KF_RW_LOCK_DEBUG_OVRD)) { LcksOpts |= LCK_OPTION_DISABLE_RW_DEBUG; } } STARTUP(LOCKS, STARTUP_RANK_FIRST, rw_lock_init); static inline struct rw_lock_debug_entry * find_lock_in_savedlocks(lck_rw_t* lock, rw_lock_debug_t *rw_locks_held) { int i; for (i = 0; i < LCK_RW_EXPECTED_MAX_NUMBER; i++) { struct rw_lock_debug_entry *existing = &rw_locks_held->rwld_locks[i]; if (existing->rwlde_lock == lock) { return existing; } } return NULL; } __abortlike static void rwlock_slot_panic(rw_lock_debug_t *rw_locks_held) { panic("No empty slot found in %p slot_used %d", rw_locks_held, rw_locks_held->rwld_locks_saved); } static inline struct rw_lock_debug_entry * find_empty_slot(rw_lock_debug_t *rw_locks_held) { int i; for (i = 0; i < LCK_RW_EXPECTED_MAX_NUMBER; i++) { struct rw_lock_debug_entry *entry = &rw_locks_held->rwld_locks[i]; if (entry->rwlde_lock == NULL) { return entry; } } rwlock_slot_panic(rw_locks_held); } __abortlike static void canlock_rwlock_panic(lck_rw_t* lock, thread_t thread, struct rw_lock_debug_entry *entry) { panic("RW lock %p already held by %p caller %p mode_count %d state 0x%x owner 0x%p ", lock, thread, get_rwlde_caller(entry), entry->rwlde_mode_count, ordered_load_rw(lock), ctid_get_thread_unsafe(lock->lck_rw_owner)); } __attribute__((noinline)) static void assert_canlock_rwlock_slow(lck_rw_t* lock, thread_t thread, lck_rw_type_t type) { rw_lock_debug_t *rw_locks_held = &thread->rw_lock_held; if (__probable(rw_locks_held->rwld_locks_acquired == 0)) { //no locks saved, safe to lock return; } struct rw_lock_debug_entry *entry = find_lock_in_savedlocks(lock, rw_locks_held); if (__improbable(entry != NULL)) { boolean_t can_be_shared_recursive; if (lck_rw_recursive_shared_assert_74048094) { can_be_shared_recursive = (lock->lck_rw_priv_excl == 0); } else { /* currently rw_lock_shared is called recursively, * until the code is fixed allow to lock * recursively in shared mode */ can_be_shared_recursive = TRUE; } if ((type == LCK_RW_TYPE_SHARED) && can_be_shared_recursive && entry->rwlde_mode_count >= 1) { return; } canlock_rwlock_panic(lock, thread, entry); } } static inline void assert_canlock_rwlock(lck_rw_t* lock, thread_t thread, lck_rw_type_t type) { if (__improbable(!rw_lock_debug_disabled())) { assert_canlock_rwlock_slow(lock, thread, type); } } __abortlike static void held_rwlock_notheld_panic(lck_rw_t* lock, thread_t thread) { panic("RW lock %p not held by %p", lock, thread); } __abortlike static void held_rwlock_notheld_with_info_panic(lck_rw_t* lock, thread_t thread, lck_rw_type_t type, struct rw_lock_debug_entry *entry) { if (type == LCK_RW_TYPE_EXCLUSIVE) { panic("RW lock %p not held in exclusive by %p caller %p read %d state 0x%x owner 0x%p ", lock, thread, get_rwlde_caller(entry), entry->rwlde_mode_count, ordered_load_rw(lock), ctid_get_thread_unsafe(lock->lck_rw_owner)); } else { panic("RW lock %p not held in shared by %p caller %p read %d state 0x%x owner 0x%p ", lock, thread, get_rwlde_caller(entry), entry->rwlde_mode_count, ordered_load_rw(lock), ctid_get_thread_unsafe(lock->lck_rw_owner)); } } __attribute__((noinline)) static void assert_held_rwlock_slow(lck_rw_t* lock, thread_t thread, lck_rw_type_t type) { rw_lock_debug_t *rw_locks_held = &thread->rw_lock_held; if (__improbable(rw_locks_held->rwld_locks_acquired == 0 || rw_locks_held->rwld_locks_saved == 0)) { if (rw_locks_held->rwld_locks_acquired == 0 || rw_locks_held->rwld_overflow == 0) { held_rwlock_notheld_panic(lock, thread); } return; } struct rw_lock_debug_entry *entry = find_lock_in_savedlocks(lock, rw_locks_held); if (__probable(entry != NULL)) { if (type == LCK_RW_TYPE_EXCLUSIVE && entry->rwlde_mode_count != -1) { held_rwlock_notheld_with_info_panic(lock, thread, type, entry); } else { if (type == LCK_RW_TYPE_SHARED && entry->rwlde_mode_count <= 0) { held_rwlock_notheld_with_info_panic(lock, thread, type, entry); } } } else { if (rw_locks_held->rwld_overflow == 0) { held_rwlock_notheld_panic(lock, thread); } } } static inline void assert_held_rwlock(lck_rw_t* lock, thread_t thread, lck_rw_type_t type) { if (__improbable(!rw_lock_debug_disabled())) { assert_held_rwlock_slow(lock, thread, type); } } __attribute__((noinline)) static void change_held_rwlock_slow(lck_rw_t* lock, thread_t thread, lck_rw_type_t typeFrom, void* caller) { rw_lock_debug_t *rw_locks_held = &thread->rw_lock_held; if (__improbable(rw_locks_held->rwld_locks_saved == 0)) { if (rw_locks_held->rwld_overflow == 0) { held_rwlock_notheld_panic(lock, thread); } return; } struct rw_lock_debug_entry *entry = find_lock_in_savedlocks(lock, rw_locks_held); if (__probable(entry != NULL)) { if (typeFrom == LCK_RW_TYPE_SHARED) { //We are upgrading assertf(entry->rwlde_mode_count == 1, "RW lock %p not held by a single shared when upgrading " "by %p caller %p read %d state 0x%x owner 0x%p ", lock, thread, get_rwlde_caller(entry), entry->rwlde_mode_count, ordered_load_rw(lock), ctid_get_thread_unsafe(lock->lck_rw_owner)); entry->rwlde_mode_count = -1; set_rwlde_caller_packed(entry, caller); } else { //We are downgrading assertf(entry->rwlde_mode_count == -1, "RW lock %p not held in write mode when downgrading " "by %p caller %p read %d state 0x%x owner 0x%p ", lock, thread, get_rwlde_caller(entry), entry->rwlde_mode_count, ordered_load_rw(lock), ctid_get_thread_unsafe(lock->lck_rw_owner)); entry->rwlde_mode_count = 1; set_rwlde_caller_packed(entry, caller); } return; } if (rw_locks_held->rwld_overflow == 0) { held_rwlock_notheld_panic(lock, thread); } if (rw_locks_held->rwld_locks_saved == LCK_RW_EXPECTED_MAX_NUMBER) { //array is full return; } struct rw_lock_debug_entry *null_entry = find_empty_slot(rw_locks_held); null_entry->rwlde_lock = lock; set_rwlde_caller_packed(null_entry, caller); if (typeFrom == LCK_RW_TYPE_SHARED) { null_entry->rwlde_mode_count = -1; } else { null_entry->rwlde_mode_count = 1; } rw_locks_held->rwld_locks_saved++; } static inline void change_held_rwlock(lck_rw_t* lock, thread_t thread, lck_rw_type_t typeFrom, void* caller) { if (__improbable(!rw_lock_debug_disabled())) { change_held_rwlock_slow(lock, thread, typeFrom, caller); } } __abortlike static void add_held_rwlock_too_many_panic(thread_t thread) { panic("RW lock too many rw locks held, rwld_locks_acquired maxed out for thread %p", thread); } static __attribute__((noinline)) void add_held_rwlock_slow(lck_rw_t* lock, thread_t thread, lck_rw_type_t type, void* caller) { rw_lock_debug_t *rw_locks_held = &thread->rw_lock_held; struct rw_lock_debug_entry *null_entry; if (__improbable(rw_locks_held->rwld_locks_acquired == UINT32_MAX)) { add_held_rwlock_too_many_panic(thread); } rw_locks_held->rwld_locks_acquired++; if (type == LCK_RW_TYPE_EXCLUSIVE) { if (__improbable(rw_locks_held->rwld_locks_saved == LCK_RW_EXPECTED_MAX_NUMBER)) { //array is full rw_locks_held->rwld_overflow = 1; return; } null_entry = find_empty_slot(rw_locks_held); null_entry->rwlde_lock = lock; set_rwlde_caller_packed(null_entry, caller); null_entry->rwlde_mode_count = -1; rw_locks_held->rwld_locks_saved++; return; } else { if (__probable(rw_locks_held->rwld_locks_saved == 0)) { //array is empty goto add_shared; } boolean_t allow_shared_recursive; if (lck_rw_recursive_shared_assert_74048094) { allow_shared_recursive = (lock->lck_rw_priv_excl == 0); } else { allow_shared_recursive = TRUE; } if (allow_shared_recursive) { //It could be already locked in shared mode struct rw_lock_debug_entry *entry = find_lock_in_savedlocks(lock, rw_locks_held); if (entry != NULL) { assert(entry->rwlde_mode_count > 0); assertf(entry->rwlde_mode_count != INT8_MAX, "RW lock %p with too many recursive shared held " "from %p caller %p read %d state 0x%x owner 0x%p", lock, thread, get_rwlde_caller(entry), entry->rwlde_mode_count, ordered_load_rw(lock), ctid_get_thread_unsafe(lock->lck_rw_owner)); entry->rwlde_mode_count += 1; return; } } //none of the locks were a match //try to add a new entry if (__improbable(rw_locks_held->rwld_locks_saved == LCK_RW_EXPECTED_MAX_NUMBER)) { //array is full rw_locks_held->rwld_overflow = 1; return; } add_shared: null_entry = find_empty_slot(rw_locks_held); null_entry->rwlde_lock = lock; set_rwlde_caller_packed(null_entry, caller); null_entry->rwlde_mode_count = 1; rw_locks_held->rwld_locks_saved++; } } static inline void add_held_rwlock(lck_rw_t* lock, thread_t thread, lck_rw_type_t type, void* caller) { if (__improbable(!rw_lock_debug_disabled())) { add_held_rwlock_slow(lock, thread, type, caller); } } static void remove_held_rwlock_slow(lck_rw_t *lock, thread_t thread, lck_rw_type_t type) { rw_lock_debug_t *rw_locks_held = &thread->rw_lock_held; if (__improbable(rw_locks_held->rwld_locks_acquired == 0)) { return; } rw_locks_held->rwld_locks_acquired--; if (rw_locks_held->rwld_locks_saved == 0) { assert(rw_locks_held->rwld_overflow == 1); goto out; } struct rw_lock_debug_entry *entry = find_lock_in_savedlocks(lock, rw_locks_held); if (__probable(entry != NULL)) { if (type == LCK_RW_TYPE_EXCLUSIVE) { assert(entry->rwlde_mode_count == -1); entry->rwlde_mode_count = 0; } else { assert(entry->rwlde_mode_count > 0); entry->rwlde_mode_count--; if (entry->rwlde_mode_count > 0) { goto out; } } entry->rwlde_caller_packed = 0; entry->rwlde_lock = NULL; rw_locks_held->rwld_locks_saved--; } else { assert(rw_locks_held->rwld_overflow == 1); } out: if (rw_locks_held->rwld_locks_acquired == 0) { rw_locks_held->rwld_overflow = 0; } return; } static inline void remove_held_rwlock(lck_rw_t* lock, thread_t thread, lck_rw_type_t type) { if (__improbable(!rw_lock_debug_disabled())) { remove_held_rwlock_slow(lock, thread, type); } } #endif /* DEBUG_RW */ /* * We disable interrupts while holding the RW interlock to prevent an * interrupt from exacerbating hold time. * Hence, local helper functions lck_interlock_lock()/lck_interlock_unlock(). */ static inline boolean_t lck_interlock_lock( lck_rw_t *lck) { boolean_t istate; istate = ml_set_interrupts_enabled(FALSE); lck_rw_ilk_lock(lck); return istate; } static inline void lck_interlock_unlock( lck_rw_t *lck, boolean_t istate) { lck_rw_ilk_unlock(lck); ml_set_interrupts_enabled(istate); } /* * compute the deadline to spin against when * waiting for a change of state on a lck_rw_t */ static inline uint64_t lck_rw_deadline_for_spin( lck_rw_t *lck) { lck_rw_word_t word; word.data = ordered_load_rw(lck); if (word.can_sleep) { if (word.r_waiting || word.w_waiting || (word.shared_count > machine_info.max_cpus)) { /* * there are already threads waiting on this lock... this * implies that they have spun beyond their deadlines waiting for * the desired state to show up so we will not bother spinning at this time... * or * the current number of threads sharing this lock exceeds our capacity to run them * concurrently and since all states we're going to spin for require the rw_shared_count * to be at 0, we'll not bother spinning since the latency for this to happen is * unpredictable... */ return mach_absolute_time(); } return mach_absolute_time() + os_atomic_load(&MutexSpin, relaxed); } else { return mach_absolute_time() + (100000LL * 1000000000LL); } } /* * This inline is used when busy-waiting for an rw lock. * If interrupts were disabled when the lock primitive was called, * we poll the IPI handler for pending tlb flushes in x86. */ static inline void lck_rw_lock_pause( boolean_t interrupts_enabled) { #if X86_64 if (!interrupts_enabled) { handle_pending_TLB_flushes(); } cpu_pause(); #else (void) interrupts_enabled; wait_for_event(); #endif } typedef enum __enum_closed { LCK_RW_DRAIN_S_DRAINED = 0, LCK_RW_DRAIN_S_NOT_DRAINED = 1, LCK_RW_DRAIN_S_EARLY_RETURN = 2, LCK_RW_DRAIN_S_TIMED_OUT = 3, } lck_rw_drain_state_t; static lck_rw_drain_state_t lck_rw_drain_status( lck_rw_t *lock, uint32_t status_mask, boolean_t wait, bool (^lock_pause)(void)) { uint64_t deadline = 0; uint32_t data; boolean_t istate = FALSE; if (wait) { deadline = lck_rw_deadline_for_spin(lock); #if __x86_64__ istate = ml_get_interrupts_enabled(); #endif } for (;;) { #if __x86_64__ data = os_atomic_load(&lock->lck_rw_data, relaxed); #else data = load_exclusive32(&lock->lck_rw_data, memory_order_acquire_smp); #endif if ((data & status_mask) == 0) { atomic_exchange_abort(); return LCK_RW_DRAIN_S_DRAINED; } if (!wait) { atomic_exchange_abort(); return LCK_RW_DRAIN_S_NOT_DRAINED; } lck_rw_lock_pause(istate); if (mach_absolute_time() >= deadline) { return LCK_RW_DRAIN_S_TIMED_OUT; } if (lock_pause && lock_pause()) { return LCK_RW_DRAIN_S_EARLY_RETURN; } } } /* * Spin while interlock is held. */ static inline void lck_rw_interlock_spin( lck_rw_t *lock) { uint32_t data, prev; for (;;) { data = atomic_exchange_begin32(&lock->lck_rw_data, &prev, memory_order_relaxed); if (data & LCK_RW_INTERLOCK) { #if __x86_64__ cpu_pause(); #else wait_for_event(); #endif } else { atomic_exchange_abort(); return; } } } #define LCK_RW_GRAB_WANT 0 #define LCK_RW_GRAB_SHARED 1 typedef enum __enum_closed __enum_options { LCK_RW_GRAB_F_SHARED = 0x0, // Not really a flag obviously but makes call sites more readable. LCK_RW_GRAB_F_WANT_EXCL = 0x1, LCK_RW_GRAB_F_WAIT = 0x2, } lck_rw_grab_flags_t; typedef enum __enum_closed { LCK_RW_GRAB_S_NOT_LOCKED = 0, LCK_RW_GRAB_S_LOCKED = 1, LCK_RW_GRAB_S_EARLY_RETURN = 2, LCK_RW_GRAB_S_TIMED_OUT = 3, } lck_rw_grab_state_t; static lck_rw_grab_state_t lck_rw_grab( lck_rw_t *lock, lck_rw_grab_flags_t flags, bool (^lock_pause)(void)) { uint64_t deadline = 0; uint32_t data, prev; boolean_t do_exch, istate = FALSE; assert3u(flags & ~(LCK_RW_GRAB_F_WANT_EXCL | LCK_RW_GRAB_F_WAIT), ==, 0); if ((flags & LCK_RW_GRAB_F_WAIT) != 0) { deadline = lck_rw_deadline_for_spin(lock); #if __x86_64__ istate = ml_get_interrupts_enabled(); #endif } for (;;) { data = atomic_exchange_begin32(&lock->lck_rw_data, &prev, memory_order_acquire_smp); if (data & LCK_RW_INTERLOCK) { atomic_exchange_abort(); lck_rw_interlock_spin(lock); continue; } do_exch = FALSE; if ((flags & LCK_RW_GRAB_F_WANT_EXCL) != 0) { if ((data & LCK_RW_WANT_EXCL) == 0) { data |= LCK_RW_WANT_EXCL; do_exch = TRUE; } } else { // LCK_RW_GRAB_SHARED if (((data & (LCK_RW_WANT_EXCL | LCK_RW_WANT_UPGRADE)) == 0) || (((data & LCK_RW_SHARED_MASK)) && ((data & LCK_RW_PRIV_EXCL) == 0))) { data += LCK_RW_SHARED_READER; do_exch = TRUE; } } if (do_exch) { if (atomic_exchange_complete32(&lock->lck_rw_data, prev, data, memory_order_acquire_smp)) { return LCK_RW_GRAB_S_LOCKED; } } else { if ((flags & LCK_RW_GRAB_F_WAIT) == 0) { atomic_exchange_abort(); return LCK_RW_GRAB_S_NOT_LOCKED; } lck_rw_lock_pause(istate); if (mach_absolute_time() >= deadline) { return LCK_RW_GRAB_S_TIMED_OUT; } if (lock_pause && lock_pause()) { return LCK_RW_GRAB_S_EARLY_RETURN; } } } } /* * The inverse of lck_rw_grab - drops either the LCK_RW_WANT_EXCL bit or * decrements the reader count. Doesn't deal with waking up waiters - i.e. * should only be called when can_sleep is false. */ static void lck_rw_drop(lck_rw_t *lock, lck_rw_grab_flags_t flags) { uint32_t data, prev; assert3u(flags & ~(LCK_RW_GRAB_F_WANT_EXCL | LCK_RW_GRAB_F_WAIT), ==, 0); assert(!lock->lck_rw_can_sleep); for (;;) { data = atomic_exchange_begin32(&lock->lck_rw_data, &prev, memory_order_acquire_smp); /* Interlock should never be taken when can_sleep is false. */ assert3u(data & LCK_RW_INTERLOCK, ==, 0); if ((flags & LCK_RW_GRAB_F_WANT_EXCL) != 0) { data &= ~LCK_RW_WANT_EXCL; } else { data -= LCK_RW_SHARED_READER; } if (atomic_exchange_complete32(&lock->lck_rw_data, prev, data, memory_order_acquire_smp)) { break; } cpu_pause(); } return; } static boolean_t lck_rw_lock_exclusive_gen( lck_rw_t *lock, bool (^lock_pause)(void)) { __assert_only thread_t self = current_thread(); __kdebug_only uintptr_t trace_lck = VM_KERNEL_UNSLIDE_OR_PERM(lock); lck_rw_word_t word; int slept = 0; lck_rw_grab_state_t grab_state = LCK_RW_GRAB_S_NOT_LOCKED; lck_rw_drain_state_t drain_state = LCK_RW_DRAIN_S_NOT_DRAINED; wait_result_t res = 0; boolean_t istate; #if CONFIG_DTRACE boolean_t dtrace_ls_initialized = FALSE; boolean_t dtrace_rwl_excl_spin, dtrace_rwl_excl_block, dtrace_ls_enabled = FALSE; uint64_t wait_interval = 0; int readers_at_sleep = 0; #endif assertf(lock->lck_rw_owner != self->ctid, "Lock already held state=0x%x, owner=%p", ordered_load_rw(lock), self); #ifdef DEBUG_RW /* * Best effort attempt to check that this thread * is not already holding the lock (this checks read mode too). */ assert_canlock_rwlock(lock, self, LCK_RW_TYPE_EXCLUSIVE); #endif /* DEBUG_RW */ /* * Try to acquire the lck_rw_want_excl bit. */ while (lck_rw_grab(lock, LCK_RW_GRAB_F_WANT_EXCL, NULL) != LCK_RW_GRAB_S_LOCKED) { #if CONFIG_DTRACE if (dtrace_ls_initialized == FALSE) { dtrace_ls_initialized = TRUE; dtrace_rwl_excl_spin = (lockstat_probemap[LS_LCK_RW_LOCK_EXCL_SPIN] != 0); dtrace_rwl_excl_block = (lockstat_probemap[LS_LCK_RW_LOCK_EXCL_BLOCK] != 0); dtrace_ls_enabled = dtrace_rwl_excl_spin || dtrace_rwl_excl_block; if (dtrace_ls_enabled) { /* * Either sleeping or spinning is happening, * start a timing of our delay interval now. */ readers_at_sleep = lock->lck_rw_shared_count; wait_interval = mach_absolute_time(); } } #endif KERNEL_DEBUG(MACHDBG_CODE(DBG_MACH_LOCKS, LCK_RW_LCK_EX_WRITER_SPIN_CODE) | DBG_FUNC_START, trace_lck, 0, 0, 0, 0); grab_state = lck_rw_grab(lock, LCK_RW_GRAB_F_WANT_EXCL | LCK_RW_GRAB_F_WAIT, lock_pause); KERNEL_DEBUG(MACHDBG_CODE(DBG_MACH_LOCKS, LCK_RW_LCK_EX_WRITER_SPIN_CODE) | DBG_FUNC_END, trace_lck, 0, 0, grab_state, 0); if (grab_state == LCK_RW_GRAB_S_LOCKED || grab_state == LCK_RW_GRAB_S_EARLY_RETURN) { break; } /* * if we get here, the deadline has expired w/o us * being able to grab the lock exclusively * check to see if we're allowed to do a thread_block */ word.data = ordered_load_rw(lock); if (word.can_sleep) { istate = lck_interlock_lock(lock); word.data = ordered_load_rw(lock); if (word.want_excl) { KERNEL_DEBUG(MACHDBG_CODE(DBG_MACH_LOCKS, LCK_RW_LCK_EX_WRITER_WAIT_CODE) | DBG_FUNC_START, trace_lck, 0, 0, 0, 0); word.w_waiting = 1; ordered_store_rw(lock, word.data); thread_set_pending_block_hint(current_thread(), kThreadWaitKernelRWLockWrite); res = assert_wait(LCK_RW_WRITER_EVENT(lock), THREAD_UNINT | THREAD_WAIT_NOREPORT_USER); lck_interlock_unlock(lock, istate); if (res == THREAD_WAITING) { res = thread_block(THREAD_CONTINUE_NULL); slept++; } KERNEL_DEBUG(MACHDBG_CODE(DBG_MACH_LOCKS, LCK_RW_LCK_EX_WRITER_WAIT_CODE) | DBG_FUNC_END, trace_lck, res, slept, 0, 0); } else { word.want_excl = 1; ordered_store_rw(lock, word.data); lck_interlock_unlock(lock, istate); break; } } } if (grab_state == LCK_RW_GRAB_S_EARLY_RETURN) { assert(lock_pause); return FALSE; } /* * Wait for readers (and upgrades) to finish... */ while (lck_rw_drain_status(lock, LCK_RW_SHARED_MASK | LCK_RW_WANT_UPGRADE, FALSE, NULL) != LCK_RW_DRAIN_S_DRAINED) { #if CONFIG_DTRACE /* * Either sleeping or spinning is happening, start * a timing of our delay interval now. If we set it * to -1 we don't have accurate data so we cannot later * decide to record a dtrace spin or sleep event. */ if (dtrace_ls_initialized == FALSE) { dtrace_ls_initialized = TRUE; dtrace_rwl_excl_spin = (lockstat_probemap[LS_LCK_RW_LOCK_EXCL_SPIN] != 0); dtrace_rwl_excl_block = (lockstat_probemap[LS_LCK_RW_LOCK_EXCL_BLOCK] != 0); dtrace_ls_enabled = dtrace_rwl_excl_spin || dtrace_rwl_excl_block; if (dtrace_ls_enabled) { /* * Either sleeping or spinning is happening, * start a timing of our delay interval now. */ readers_at_sleep = lock->lck_rw_shared_count; wait_interval = mach_absolute_time(); } } #endif KERNEL_DEBUG(MACHDBG_CODE(DBG_MACH_LOCKS, LCK_RW_LCK_EX_READER_SPIN_CODE) | DBG_FUNC_START, trace_lck, 0, 0, 0, 0); drain_state = lck_rw_drain_status(lock, LCK_RW_SHARED_MASK | LCK_RW_WANT_UPGRADE, TRUE, lock_pause); KERNEL_DEBUG(MACHDBG_CODE(DBG_MACH_LOCKS, LCK_RW_LCK_EX_READER_SPIN_CODE) | DBG_FUNC_END, trace_lck, 0, 0, drain_state, 0); if (drain_state == LCK_RW_DRAIN_S_DRAINED || drain_state == LCK_RW_DRAIN_S_EARLY_RETURN) { break; } /* * if we get here, the deadline has expired w/o us * being able to grab the lock exclusively * check to see if we're allowed to do a thread_block */ word.data = ordered_load_rw(lock); if (word.can_sleep) { istate = lck_interlock_lock(lock); word.data = ordered_load_rw(lock); if (word.shared_count != 0 || word.want_upgrade) { KERNEL_DEBUG(MACHDBG_CODE(DBG_MACH_LOCKS, LCK_RW_LCK_EX_READER_WAIT_CODE) | DBG_FUNC_START, trace_lck, 0, 0, 0, 0); word.w_waiting = 1; ordered_store_rw(lock, word.data); thread_set_pending_block_hint(current_thread(), kThreadWaitKernelRWLockWrite); res = assert_wait(LCK_RW_WRITER_EVENT(lock), THREAD_UNINT | THREAD_WAIT_NOREPORT_USER); lck_interlock_unlock(lock, istate); if (res == THREAD_WAITING) { res = thread_block(THREAD_CONTINUE_NULL); slept++; } KERNEL_DEBUG(MACHDBG_CODE(DBG_MACH_LOCKS, LCK_RW_LCK_EX_READER_WAIT_CODE) | DBG_FUNC_END, trace_lck, res, slept, 0, 0); } else { lck_interlock_unlock(lock, istate); /* * must own the lock now, since we checked for * readers or upgrade owner behind the interlock * no need for a call to 'lck_rw_drain_status' */ break; } } } #if CONFIG_DTRACE /* * Decide what latencies we suffered that are Dtrace events. * If we have set wait_interval, then we either spun or slept. * At least we get out from under the interlock before we record * which is the best we can do here to minimize the impact * of the tracing. * If we have set wait_interval to -1, then dtrace was not enabled when we * started sleeping/spinning so we don't record this event. */ if (dtrace_ls_enabled == TRUE) { if (slept == 0) { LOCKSTAT_RECORD(LS_LCK_RW_LOCK_EXCL_SPIN, lock, mach_absolute_time() - wait_interval, 1); } else { /* * For the blocking case, we also record if when we blocked * it was held for read or write, and how many readers. * Notice that above we recorded this before we dropped * the interlock so the count is accurate. */ LOCKSTAT_RECORD(LS_LCK_RW_LOCK_EXCL_BLOCK, lock, mach_absolute_time() - wait_interval, 1, (readers_at_sleep == 0 ? 1 : 0), readers_at_sleep); } } #endif /* CONFIG_DTRACE */ if (drain_state == LCK_RW_DRAIN_S_EARLY_RETURN) { lck_rw_drop(lock, LCK_RW_GRAB_F_WANT_EXCL); assert(lock_pause); return FALSE; } #if CONFIG_DTRACE LOCKSTAT_RECORD(LS_LCK_RW_LOCK_EXCL_ACQUIRE, lock, 1); #endif /* CONFIG_DTRACE */ return TRUE; } static inline void lck_rw_lock_check_preemption(lck_rw_t *lock __unused) { assertf((get_preemption_level() == 0 && ml_get_interrupts_enabled()) || startup_phase < STARTUP_SUB_EARLY_BOOT || current_cpu_datap()->cpu_hibernate || ml_is_quiescing() || !not_in_kdp, "%s: attempt to take rwlock %p in non-preemptible or interrupt context: " "preemption level = %d, interruptible = %d", __func__, lock, get_preemption_level(), (int)ml_get_interrupts_enabled()); } #define LCK_RW_LOCK_EXCLUSIVE_TAS(lck) (atomic_test_and_set32(&(lck)->lck_rw_data, \ (LCK_RW_SHARED_MASK | LCK_RW_WANT_EXCL | LCK_RW_WANT_UPGRADE | LCK_RW_INTERLOCK), \ LCK_RW_WANT_EXCL, memory_order_acquire_smp, FALSE)) /*! * @function lck_rw_lock_exclusive_check_contended * * @abstract * Locks a rw_lock in exclusive mode. * * @discussion * This routine IS EXPERIMENTAL. * It's only used for the vm object lock, and use for other subsystems is UNSUPPORTED. * Note that the return value is ONLY A HEURISTIC w.r.t. the lock's contention. * * @param lock rw_lock to lock. * * @returns Returns TRUE if the thread spun or blocked while attempting to acquire the lock, FALSE * otherwise. */ bool lck_rw_lock_exclusive_check_contended( lck_rw_t *lock) { thread_t thread = current_thread(); bool contended = false; if (lock->lck_rw_can_sleep) { lck_rw_lock_check_preemption(lock); lck_rw_lock_count_inc(thread, lock); } else if (get_preemption_level() == 0) { panic("Taking non-sleepable RW lock with preemption enabled"); } if (LCK_RW_LOCK_EXCLUSIVE_TAS(lock)) { #if CONFIG_DTRACE LOCKSTAT_RECORD(LS_LCK_RW_LOCK_EXCL_ACQUIRE, lock, DTRACE_RW_EXCL); #endif /* CONFIG_DTRACE */ } else { contended = true; (void) lck_rw_lock_exclusive_gen(lock, NULL); } assertf(lock->lck_rw_owner == 0, "state=0x%x, owner=%p", ordered_load_rw(lock), ctid_get_thread_unsafe(lock->lck_rw_owner)); ordered_store_rw_owner(lock, thread->ctid); #ifdef DEBUG_RW add_held_rwlock(lock, thread, LCK_RW_TYPE_EXCLUSIVE, __builtin_return_address(0)); #endif /* DEBUG_RW */ return contended; } __attribute__((always_inline)) static boolean_t lck_rw_lock_exclusive_internal_inline( lck_rw_t *lock, void *caller, bool (^lock_pause)(void)) { #pragma unused(caller) thread_t thread = current_thread(); if (lock->lck_rw_can_sleep) { lck_rw_lock_check_preemption(lock); lck_rw_lock_count_inc(thread, lock); } else if (get_preemption_level() == 0) { panic("Taking non-sleepable RW lock with preemption enabled"); } if (LCK_RW_LOCK_EXCLUSIVE_TAS(lock)) { #if CONFIG_DTRACE LOCKSTAT_RECORD(LS_LCK_RW_LOCK_EXCL_ACQUIRE, lock, DTRACE_RW_EXCL); #endif /* CONFIG_DTRACE */ } else if (!lck_rw_lock_exclusive_gen(lock, lock_pause)) { /* * lck_rw_lock_exclusive_gen() should only return * early if lock_pause has been passed and * returns FALSE. lock_pause is exclusive with * lck_rw_can_sleep(). */ assert(!lock->lck_rw_can_sleep); return FALSE; } assertf(lock->lck_rw_owner == 0, "state=0x%x, owner=%p", ordered_load_rw(lock), ctid_get_thread_unsafe(lock->lck_rw_owner)); ordered_store_rw_owner(lock, thread->ctid); #if DEBUG_RW add_held_rwlock(lock, thread, LCK_RW_TYPE_EXCLUSIVE, caller); #endif /* DEBUG_RW */ return TRUE; } __attribute__((noinline)) static void lck_rw_lock_exclusive_internal( lck_rw_t *lock, void *caller) { (void) lck_rw_lock_exclusive_internal_inline(lock, caller, NULL); } /*! * @function lck_rw_lock_exclusive * * @abstract * Locks a rw_lock in exclusive mode. * * @discussion * This function can block. * Multiple threads can acquire the lock in shared mode at the same time, but only one thread at a time * can acquire it in exclusive mode. * NOTE: the thread cannot return to userspace while the lock is held. Recursive locking is not supported. * * @param lock rw_lock to lock. */ void lck_rw_lock_exclusive( lck_rw_t *lock) { (void) lck_rw_lock_exclusive_internal_inline(lock, __builtin_return_address(0), NULL); } /*! * @function lck_rw_lock_exclusive_b * * @abstract * Locks a rw_lock in exclusive mode. Returns early if the lock can't be acquired * and the specified block returns true. * * @discussion * Identical to lck_rw_lock_exclusive() but can return early if the lock can't be * acquired and the specified block returns true. The block is called * repeatedly when waiting to acquire the lock. * Should only be called when the lock cannot sleep (i.e. when * lock->lck_rw_can_sleep is false). * * @param lock rw_lock to lock. * @param lock_pause block invoked while waiting to acquire lock * * @returns Returns TRUE if the lock is successfully taken, * FALSE if the block returns true and the lock has * not been acquired. */ boolean_t lck_rw_lock_exclusive_b( lck_rw_t *lock, bool (^lock_pause)(void)) { assert(!lock->lck_rw_can_sleep); return lck_rw_lock_exclusive_internal_inline(lock, __builtin_return_address(0), lock_pause); } /* * Routine: lck_rw_lock_shared_gen * Function: * Fast path code has determined that this lock * is held exclusively... this is where we spin/block * until we can acquire the lock in the shared mode */ static boolean_t lck_rw_lock_shared_gen( lck_rw_t *lck, bool (^lock_pause)(void)) { __assert_only thread_t self = current_thread(); __kdebug_only uintptr_t trace_lck = VM_KERNEL_UNSLIDE_OR_PERM(lck); lck_rw_word_t word; lck_rw_grab_state_t grab_state = LCK_RW_GRAB_S_NOT_LOCKED; int slept = 0; wait_result_t res = 0; boolean_t istate; #if CONFIG_DTRACE uint64_t wait_interval = 0; int readers_at_sleep = 0; boolean_t dtrace_ls_initialized = FALSE; boolean_t dtrace_rwl_shared_spin, dtrace_rwl_shared_block, dtrace_ls_enabled = FALSE; #endif /* CONFIG_DTRACE */ assertf(lck->lck_rw_owner != self->ctid, "Lock already held state=0x%x, owner=%p", ordered_load_rw(lck), self); #ifdef DEBUG_RW /* * Best effort attempt to check that this thread * is not already holding the lock in shared mode. */ assert_canlock_rwlock(lck, self, LCK_RW_TYPE_SHARED); #endif while (lck_rw_grab(lck, LCK_RW_GRAB_F_SHARED, NULL) != LCK_RW_GRAB_S_LOCKED) { #if CONFIG_DTRACE if (dtrace_ls_initialized == FALSE) { dtrace_ls_initialized = TRUE; dtrace_rwl_shared_spin = (lockstat_probemap[LS_LCK_RW_LOCK_SHARED_SPIN] != 0); dtrace_rwl_shared_block = (lockstat_probemap[LS_LCK_RW_LOCK_SHARED_BLOCK] != 0); dtrace_ls_enabled = dtrace_rwl_shared_spin || dtrace_rwl_shared_block; if (dtrace_ls_enabled) { /* * Either sleeping or spinning is happening, * start a timing of our delay interval now. */ readers_at_sleep = lck->lck_rw_shared_count; wait_interval = mach_absolute_time(); } } #endif KERNEL_DEBUG(MACHDBG_CODE(DBG_MACH_LOCKS, LCK_RW_LCK_SHARED_SPIN_CODE) | DBG_FUNC_START, trace_lck, lck->lck_rw_want_excl, lck->lck_rw_want_upgrade, 0, 0); grab_state = lck_rw_grab(lck, LCK_RW_GRAB_F_SHARED | LCK_RW_GRAB_F_WAIT, lock_pause); KERNEL_DEBUG(MACHDBG_CODE(DBG_MACH_LOCKS, LCK_RW_LCK_SHARED_SPIN_CODE) | DBG_FUNC_END, trace_lck, lck->lck_rw_want_excl, lck->lck_rw_want_upgrade, grab_state, 0); if (grab_state == LCK_RW_GRAB_S_LOCKED || grab_state == LCK_RW_GRAB_S_EARLY_RETURN) { break; } /* * if we get here, the deadline has expired w/o us * being able to grab the lock for read * check to see if we're allowed to do a thread_block */ if (lck->lck_rw_can_sleep) { istate = lck_interlock_lock(lck); word.data = ordered_load_rw(lck); if ((word.want_excl || word.want_upgrade) && ((word.shared_count == 0) || word.priv_excl)) { KERNEL_DEBUG(MACHDBG_CODE(DBG_MACH_LOCKS, LCK_RW_LCK_SHARED_WAIT_CODE) | DBG_FUNC_START, trace_lck, word.want_excl, word.want_upgrade, 0, 0); word.r_waiting = 1; ordered_store_rw(lck, word.data); thread_set_pending_block_hint(current_thread(), kThreadWaitKernelRWLockRead); res = assert_wait(LCK_RW_READER_EVENT(lck), THREAD_UNINT | THREAD_WAIT_NOREPORT_USER); lck_interlock_unlock(lck, istate); if (res == THREAD_WAITING) { res = thread_block(THREAD_CONTINUE_NULL); slept++; } KERNEL_DEBUG(MACHDBG_CODE(DBG_MACH_LOCKS, LCK_RW_LCK_SHARED_WAIT_CODE) | DBG_FUNC_END, trace_lck, res, slept, 0, 0); } else { word.shared_count++; ordered_store_rw(lck, word.data); lck_interlock_unlock(lck, istate); break; } } } #if CONFIG_DTRACE if (dtrace_ls_enabled == TRUE) { if (slept == 0) { LOCKSTAT_RECORD(LS_LCK_RW_LOCK_SHARED_SPIN, lck, mach_absolute_time() - wait_interval, 0); } else { LOCKSTAT_RECORD(LS_LCK_RW_LOCK_SHARED_BLOCK, lck, mach_absolute_time() - wait_interval, 0, (readers_at_sleep == 0 ? 1 : 0), readers_at_sleep); } } #endif /* CONFIG_DTRACE */ if (grab_state == LCK_RW_GRAB_S_EARLY_RETURN) { assert(lock_pause); return FALSE; } #if CONFIG_DTRACE LOCKSTAT_RECORD(LS_LCK_RW_LOCK_SHARED_ACQUIRE, lck, 0); #endif /* CONFIG_DTRACE */ return TRUE; } __attribute__((always_inline)) static boolean_t lck_rw_lock_shared_internal_inline( lck_rw_t *lock, void *caller, bool (^lock_pause)(void)) { #pragma unused(caller) uint32_t data, prev; thread_t thread = current_thread(); #ifdef DEBUG_RW boolean_t check_canlock = TRUE; #endif if (lock->lck_rw_can_sleep) { lck_rw_lock_check_preemption(lock); lck_rw_lock_count_inc(thread, lock); } else if (get_preemption_level() == 0) { panic("Taking non-sleepable RW lock with preemption enabled"); } for (;;) { data = atomic_exchange_begin32(&lock->lck_rw_data, &prev, memory_order_acquire_smp); if (data & (LCK_RW_WANT_EXCL | LCK_RW_WANT_UPGRADE | LCK_RW_INTERLOCK)) { atomic_exchange_abort(); if (!lck_rw_lock_shared_gen(lock, lock_pause)) { /* * lck_rw_lock_shared_gen() should only return * early if lock_pause has been passed and * returns FALSE. lock_pause is exclusive with * lck_rw_can_sleep(). */ assert(!lock->lck_rw_can_sleep); return FALSE; } goto locked; } #ifdef DEBUG_RW if ((data & LCK_RW_SHARED_MASK) == 0) { /* * If the lock is uncontended, * we do not need to check if we can lock it */ check_canlock = FALSE; } #endif data += LCK_RW_SHARED_READER; if (atomic_exchange_complete32(&lock->lck_rw_data, prev, data, memory_order_acquire_smp)) { break; } cpu_pause(); } #ifdef DEBUG_RW if (check_canlock) { /* * Best effort attempt to check that this thread * is not already holding the lock (this checks read mode too). */ assert_canlock_rwlock(lock, thread, LCK_RW_TYPE_SHARED); } #endif locked: assertf(lock->lck_rw_owner == 0, "state=0x%x, owner=%p", ordered_load_rw(lock), ctid_get_thread_unsafe(lock->lck_rw_owner)); #if CONFIG_DTRACE LOCKSTAT_RECORD(LS_LCK_RW_LOCK_SHARED_ACQUIRE, lock, DTRACE_RW_SHARED); #endif /* CONFIG_DTRACE */ #ifdef DEBUG_RW add_held_rwlock(lock, thread, LCK_RW_TYPE_SHARED, caller); #endif /* DEBUG_RW */ return TRUE; } __attribute__((noinline)) static void lck_rw_lock_shared_internal( lck_rw_t *lock, void *caller) { (void) lck_rw_lock_shared_internal_inline(lock, caller, NULL); } /*! * @function lck_rw_lock_shared * * @abstract * Locks a rw_lock in shared mode. * * @discussion * This function can block. * Multiple threads can acquire the lock in shared mode at the same time, but only one thread at a time * can acquire it in exclusive mode. * If the lock is held in shared mode and there are no writers waiting, a reader will be able to acquire * the lock without waiting. * If the lock is held in shared mode and there is at least a writer waiting, a reader will wait * for all the writers to make progress if the lock was initialized with the default settings. Instead if * RW_SHARED_PRIORITY was selected at initialization time, a reader will never wait if the lock is held * in shared mode. * NOTE: the thread cannot return to userspace while the lock is held. Recursive locking is not supported. * * @param lock rw_lock to lock. */ void lck_rw_lock_shared( lck_rw_t *lock) { (void) lck_rw_lock_shared_internal_inline(lock, __builtin_return_address(0), NULL); } /*! * @function lck_rw_lock_shared_b * * @abstract * Locks a rw_lock in shared mode. Returns early if the lock can't be acquired * and the specified block returns true. * * @discussion * Identical to lck_rw_lock_shared() but can return early if the lock can't be * acquired and the specified block returns true. The block is called * repeatedly when waiting to acquire the lock. * Should only be called when the lock cannot sleep (i.e. when * lock->lck_rw_can_sleep is false). * * @param lock rw_lock to lock. * @param lock_pause block invoked while waiting to acquire lock * * @returns Returns TRUE if the lock is successfully taken, * FALSE if the block returns true and the lock has * not been acquired. */ boolean_t lck_rw_lock_shared_b( lck_rw_t *lock, bool (^lock_pause)(void)) { assert(!lock->lck_rw_can_sleep); return lck_rw_lock_shared_internal_inline(lock, __builtin_return_address(0), lock_pause); } /* * Routine: lck_rw_lock_shared_to_exclusive_failure * Function: * Fast path code has already dropped our read * count and determined that someone else owns 'lck_rw_want_upgrade' * if 'lck_rw_shared_count' == 0, its also already dropped 'lck_w_waiting' * all we need to do here is determine if a wakeup is needed */ static boolean_t lck_rw_lock_shared_to_exclusive_failure( lck_rw_t *lck, uint32_t prior_lock_state) { thread_t thread = current_thread(); if ((prior_lock_state & LCK_RW_W_WAITING) && ((prior_lock_state & LCK_RW_SHARED_MASK) == LCK_RW_SHARED_READER)) { /* * Someone else has requested upgrade. * Since we've released the read lock, wake * him up if he's blocked waiting */ thread_wakeup(LCK_RW_WRITER_EVENT(lck)); } /* Check if dropping the lock means that we need to unpromote */ if (lck->lck_rw_can_sleep) { lck_rw_lock_count_dec(thread, lck); } KERNEL_DEBUG(MACHDBG_CODE(DBG_MACH_LOCKS, LCK_RW_LCK_SH_TO_EX_CODE) | DBG_FUNC_NONE, VM_KERNEL_UNSLIDE_OR_PERM(lck), lck->lck_rw_shared_count, lck->lck_rw_want_upgrade, 0, 0); #ifdef DEBUG_RW remove_held_rwlock(lck, thread, LCK_RW_TYPE_SHARED); #endif /* DEBUG_RW */ return FALSE; } /* * Routine: lck_rw_lock_shared_to_exclusive_success * Function: * the fast path code has already dropped our read * count and successfully acquired 'lck_rw_want_upgrade' * we just need to wait for the rest of the readers to drain * and then we can return as the exclusive holder of this lock */ static void lck_rw_lock_shared_to_exclusive_success( lck_rw_t *lock) { __kdebug_only uintptr_t trace_lck = VM_KERNEL_UNSLIDE_OR_PERM(lock); int slept = 0; lck_rw_word_t word; wait_result_t res; boolean_t istate; lck_rw_drain_state_t drain_state; #if CONFIG_DTRACE uint64_t wait_interval = 0; int readers_at_sleep = 0; boolean_t dtrace_ls_initialized = FALSE; boolean_t dtrace_rwl_shared_to_excl_spin, dtrace_rwl_shared_to_excl_block, dtrace_ls_enabled = FALSE; #endif while (lck_rw_drain_status(lock, LCK_RW_SHARED_MASK, FALSE, NULL) != LCK_RW_DRAIN_S_DRAINED) { word.data = ordered_load_rw(lock); #if CONFIG_DTRACE if (dtrace_ls_initialized == FALSE) { dtrace_ls_initialized = TRUE; dtrace_rwl_shared_to_excl_spin = (lockstat_probemap[LS_LCK_RW_LOCK_SHARED_TO_EXCL_SPIN] != 0); dtrace_rwl_shared_to_excl_block = (lockstat_probemap[LS_LCK_RW_LOCK_SHARED_TO_EXCL_BLOCK] != 0); dtrace_ls_enabled = dtrace_rwl_shared_to_excl_spin || dtrace_rwl_shared_to_excl_block; if (dtrace_ls_enabled) { /* * Either sleeping or spinning is happening, * start a timing of our delay interval now. */ readers_at_sleep = word.shared_count; wait_interval = mach_absolute_time(); } } #endif KERNEL_DEBUG(MACHDBG_CODE(DBG_MACH_LOCKS, LCK_RW_LCK_SH_TO_EX_SPIN_CODE) | DBG_FUNC_START, trace_lck, word.shared_count, 0, 0, 0); drain_state = lck_rw_drain_status(lock, LCK_RW_SHARED_MASK, TRUE, NULL); KERNEL_DEBUG(MACHDBG_CODE(DBG_MACH_LOCKS, LCK_RW_LCK_SH_TO_EX_SPIN_CODE) | DBG_FUNC_END, trace_lck, lock->lck_rw_shared_count, 0, 0, 0); if (drain_state == LCK_RW_DRAIN_S_DRAINED) { break; } /* * if we get here, the spin deadline in lck_rw_wait_on_status() * has expired w/o the rw_shared_count having drained to 0 * check to see if we're allowed to do a thread_block */ if (word.can_sleep) { istate = lck_interlock_lock(lock); word.data = ordered_load_rw(lock); if (word.shared_count != 0) { KERNEL_DEBUG(MACHDBG_CODE(DBG_MACH_LOCKS, LCK_RW_LCK_SH_TO_EX_WAIT_CODE) | DBG_FUNC_START, trace_lck, word.shared_count, 0, 0, 0); word.w_waiting = 1; ordered_store_rw(lock, word.data); thread_set_pending_block_hint(current_thread(), kThreadWaitKernelRWLockUpgrade); res = assert_wait(LCK_RW_WRITER_EVENT(lock), THREAD_UNINT | THREAD_WAIT_NOREPORT_USER); lck_interlock_unlock(lock, istate); if (res == THREAD_WAITING) { res = thread_block(THREAD_CONTINUE_NULL); slept++; } KERNEL_DEBUG(MACHDBG_CODE(DBG_MACH_LOCKS, LCK_RW_LCK_SH_TO_EX_WAIT_CODE) | DBG_FUNC_END, trace_lck, res, slept, 0, 0); } else { lck_interlock_unlock(lock, istate); break; } } } #if CONFIG_DTRACE /* * We infer whether we took the sleep/spin path above by checking readers_at_sleep. */ if (dtrace_ls_enabled == TRUE) { if (slept == 0) { LOCKSTAT_RECORD(LS_LCK_RW_LOCK_SHARED_TO_EXCL_SPIN, lock, mach_absolute_time() - wait_interval, 0); } else { LOCKSTAT_RECORD(LS_LCK_RW_LOCK_SHARED_TO_EXCL_BLOCK, lock, mach_absolute_time() - wait_interval, 1, (readers_at_sleep == 0 ? 1 : 0), readers_at_sleep); } } LOCKSTAT_RECORD(LS_LCK_RW_LOCK_SHARED_TO_EXCL_UPGRADE, lock, 1); #endif } /*! * @function lck_rw_lock_shared_to_exclusive * * @abstract * Upgrades a rw_lock held in shared mode to exclusive. * * @discussion * This function can block. * Only one reader at a time can upgrade to exclusive mode. If the upgrades fails the function will * return with the lock not held. * The caller needs to hold the lock in shared mode to upgrade it. * * @param lock rw_lock already held in shared mode to upgrade. * * @returns TRUE if the lock was upgraded, FALSE if it was not possible. * If the function was not able to upgrade the lock, the lock will be dropped * by the function. */ boolean_t lck_rw_lock_shared_to_exclusive( lck_rw_t *lock) { thread_t thread = current_thread(); uint32_t data, prev; assertf(lock->lck_rw_priv_excl != 0, "lock %p thread %p", lock, current_thread()); #if DEBUG_RW assert_held_rwlock(lock, thread, LCK_RW_TYPE_SHARED); #endif /* DEBUG_RW */ for (;;) { data = atomic_exchange_begin32(&lock->lck_rw_data, &prev, memory_order_acquire_smp); if (data & LCK_RW_INTERLOCK) { atomic_exchange_abort(); lck_rw_interlock_spin(lock); continue; } if (data & LCK_RW_WANT_UPGRADE) { data -= LCK_RW_SHARED_READER; if ((data & LCK_RW_SHARED_MASK) == 0) { /* we were the last reader */ data &= ~(LCK_RW_W_WAITING); /* so clear the wait indicator */ } if (atomic_exchange_complete32(&lock->lck_rw_data, prev, data, memory_order_acquire_smp)) { return lck_rw_lock_shared_to_exclusive_failure(lock, prev); } } else { data |= LCK_RW_WANT_UPGRADE; /* ask for WANT_UPGRADE */ data -= LCK_RW_SHARED_READER; /* and shed our read count */ if (atomic_exchange_complete32(&lock->lck_rw_data, prev, data, memory_order_acquire_smp)) { break; } } cpu_pause(); } /* we now own the WANT_UPGRADE */ if (data & LCK_RW_SHARED_MASK) { /* check to see if all of the readers are drained */ lck_rw_lock_shared_to_exclusive_success(lock); /* if not, we need to go wait */ } assertf(lock->lck_rw_owner == 0, "state=0x%x, owner=%p", ordered_load_rw(lock), ctid_get_thread_unsafe(lock->lck_rw_owner)); ordered_store_rw_owner(lock, thread->ctid); #if CONFIG_DTRACE LOCKSTAT_RECORD(LS_LCK_RW_LOCK_SHARED_TO_EXCL_UPGRADE, lock, 0); #endif /* CONFIG_DTRACE */ #if DEBUG_RW change_held_rwlock(lock, thread, LCK_RW_TYPE_SHARED, __builtin_return_address(0)); #endif /* DEBUG_RW */ return TRUE; } /* * Routine: lck_rw_lock_exclusive_to_shared_gen * Function: * Fast path has already dropped * our exclusive state and bumped lck_rw_shared_count * all we need to do here is determine if anyone * needs to be awakened. */ static void lck_rw_lock_exclusive_to_shared_gen( lck_rw_t *lck, uint32_t prior_lock_state, void *caller) { #pragma unused(caller) __kdebug_only uintptr_t trace_lck = VM_KERNEL_UNSLIDE_OR_PERM(lck); lck_rw_word_t fake_lck; /* * prior_lock state is a snapshot of the 1st word of the * lock in question... we'll fake up a pointer to it * and carefully not access anything beyond whats defined * in the first word of a lck_rw_t */ fake_lck.data = prior_lock_state; KERNEL_DEBUG(MACHDBG_CODE(DBG_MACH_LOCKS, LCK_RW_LCK_EX_TO_SH_CODE) | DBG_FUNC_START, trace_lck, fake_lck->want_excl, fake_lck->want_upgrade, 0, 0); /* * don't wake up anyone waiting to take the lock exclusively * since we hold a read count... when the read count drops to 0, * the writers will be woken. * * wake up any waiting readers if we don't have any writers waiting, * or the lock is NOT marked as rw_priv_excl (writers have privilege) */ if (!(fake_lck.priv_excl && fake_lck.w_waiting) && fake_lck.r_waiting) { thread_wakeup(LCK_RW_READER_EVENT(lck)); } KERNEL_DEBUG(MACHDBG_CODE(DBG_MACH_LOCKS, LCK_RW_LCK_EX_TO_SH_CODE) | DBG_FUNC_END, trace_lck, lck->lck_rw_want_excl, lck->lck_rw_want_upgrade, lck->lck_rw_shared_count, 0); #if CONFIG_DTRACE LOCKSTAT_RECORD(LS_LCK_RW_LOCK_EXCL_TO_SHARED_DOWNGRADE, lck, 0); #endif #if DEBUG_RW thread_t thread = current_thread(); change_held_rwlock(lck, thread, LCK_RW_TYPE_EXCLUSIVE, caller); #endif /* DEBUG_RW */ } /*! * @function lck_rw_lock_exclusive_to_shared * * @abstract * Downgrades a rw_lock held in exclusive mode to shared. * * @discussion * The caller needs to hold the lock in exclusive mode to be able to downgrade it. * * @param lock rw_lock already held in exclusive mode to downgrade. */ void lck_rw_lock_exclusive_to_shared( lck_rw_t *lock) { uint32_t data, prev; assertf(lock->lck_rw_owner == current_thread()->ctid, "state=0x%x, owner=%p", lock->lck_rw_data, ctid_get_thread_unsafe(lock->lck_rw_owner)); ordered_store_rw_owner(lock, 0); for (;;) { data = atomic_exchange_begin32(&lock->lck_rw_data, &prev, memory_order_release_smp); if (data & LCK_RW_INTERLOCK) { atomic_exchange_abort(); lck_rw_interlock_spin(lock); /* wait for interlock to clear */ continue; } data += LCK_RW_SHARED_READER; if (data & LCK_RW_WANT_UPGRADE) { data &= ~(LCK_RW_WANT_UPGRADE); } else { data &= ~(LCK_RW_WANT_EXCL); } if (!((prev & LCK_RW_W_WAITING) && (prev & LCK_RW_PRIV_EXCL))) { data &= ~(LCK_RW_W_WAITING); } if (atomic_exchange_complete32(&lock->lck_rw_data, prev, data, memory_order_release_smp)) { break; } cpu_pause(); } lck_rw_lock_exclusive_to_shared_gen(lock, prev, __builtin_return_address(0)); } /* * Very sad hack, but the codegen for lck_rw_lock * is very unhappy with the combination of __builtin_return_address() * and a noreturn function. For some reason it adds more frames * than it should. rdar://76570684 */ void _lck_rw_lock_type_panic(lck_rw_t *lck, lck_rw_type_t lck_rw_type); #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wmissing-noreturn" __attribute__((noinline, weak)) void _lck_rw_lock_type_panic( lck_rw_t *lck, lck_rw_type_t lck_rw_type) { panic("lck_rw_lock(): Invalid RW lock type: %x for lock %p", lck_rw_type, lck); } #pragma clang diagnostic pop /*! * @function lck_rw_lock * * @abstract * Locks a rw_lock with the specified type. * * @discussion * See lck_rw_lock_shared() or lck_rw_lock_exclusive() for more details. * * @param lck rw_lock to lock. * @param lck_rw_type LCK_RW_TYPE_SHARED or LCK_RW_TYPE_EXCLUSIVE */ void lck_rw_lock( lck_rw_t *lck, lck_rw_type_t lck_rw_type) { if (lck_rw_type == LCK_RW_TYPE_SHARED) { return lck_rw_lock_shared_internal(lck, __builtin_return_address(0)); } else if (lck_rw_type == LCK_RW_TYPE_EXCLUSIVE) { return lck_rw_lock_exclusive_internal(lck, __builtin_return_address(0)); } _lck_rw_lock_type_panic(lck, lck_rw_type); } __attribute__((always_inline)) static boolean_t lck_rw_try_lock_shared_internal_inline( lck_rw_t *lock, void *caller) { #pragma unused(caller) uint32_t data, prev; thread_t thread = current_thread(); #ifdef DEBUG_RW boolean_t check_canlock = TRUE; #endif for (;;) { data = atomic_exchange_begin32(&lock->lck_rw_data, &prev, memory_order_acquire_smp); if (data & LCK_RW_INTERLOCK) { atomic_exchange_abort(); lck_rw_interlock_spin(lock); continue; } if (data & (LCK_RW_WANT_EXCL | LCK_RW_WANT_UPGRADE)) { atomic_exchange_abort(); return FALSE; /* lock is busy */ } #ifdef DEBUG_RW if ((data & LCK_RW_SHARED_MASK) == 0) { /* * If the lock is uncontended, * we do not need to check if we can lock it */ check_canlock = FALSE; } #endif data += LCK_RW_SHARED_READER; /* Increment reader refcount */ if (atomic_exchange_complete32(&lock->lck_rw_data, prev, data, memory_order_acquire_smp)) { break; } cpu_pause(); } #ifdef DEBUG_RW if (check_canlock) { /* * Best effort attempt to check that this thread * is not already holding the lock (this checks read mode too). */ assert_canlock_rwlock(lock, thread, LCK_RW_TYPE_SHARED); } #endif assertf(lock->lck_rw_owner == 0, "state=0x%x, owner=%p", ordered_load_rw(lock), ctid_get_thread_unsafe(lock->lck_rw_owner)); if (lock->lck_rw_can_sleep) { lck_rw_lock_count_inc(thread, lock); } else if (get_preemption_level() == 0) { panic("Taking non-sleepable RW lock with preemption enabled"); } #if CONFIG_DTRACE LOCKSTAT_RECORD(LS_LCK_RW_TRY_LOCK_SHARED_ACQUIRE, lock, DTRACE_RW_SHARED); #endif /* CONFIG_DTRACE */ #ifdef DEBUG_RW add_held_rwlock(lock, thread, LCK_RW_TYPE_SHARED, caller); #endif /* DEBUG_RW */ return TRUE; } __attribute__((noinline)) static boolean_t lck_rw_try_lock_shared_internal( lck_rw_t *lock, void *caller) { return lck_rw_try_lock_shared_internal_inline(lock, caller); } /*! * @function lck_rw_try_lock_shared * * @abstract * Tries to locks a rw_lock in read mode. * * @discussion * This function will return and not block in case the lock is already held. * See lck_rw_lock_shared for more details. * * @param lock rw_lock to lock. * * @returns TRUE if the lock is successfully acquired, FALSE in case it was already held. */ boolean_t lck_rw_try_lock_shared( lck_rw_t *lock) { return lck_rw_try_lock_shared_internal_inline(lock, __builtin_return_address(0)); } __attribute__((always_inline)) static boolean_t lck_rw_try_lock_exclusive_internal_inline( lck_rw_t *lock, void *caller) { #pragma unused(caller) uint32_t data, prev; for (;;) { data = atomic_exchange_begin32(&lock->lck_rw_data, &prev, memory_order_acquire_smp); if (data & LCK_RW_INTERLOCK) { atomic_exchange_abort(); lck_rw_interlock_spin(lock); continue; } if (data & (LCK_RW_SHARED_MASK | LCK_RW_WANT_EXCL | LCK_RW_WANT_UPGRADE)) { atomic_exchange_abort(); return FALSE; } data |= LCK_RW_WANT_EXCL; if (atomic_exchange_complete32(&lock->lck_rw_data, prev, data, memory_order_acquire_smp)) { break; } cpu_pause(); } thread_t thread = current_thread(); if (lock->lck_rw_can_sleep) { lck_rw_lock_count_inc(thread, lock); } else if (get_preemption_level() == 0) { panic("Taking non-sleepable RW lock with preemption enabled"); } assertf(lock->lck_rw_owner == 0, "state=0x%x, owner=%p", ordered_load_rw(lock), ctid_get_thread_unsafe(lock->lck_rw_owner)); ordered_store_rw_owner(lock, thread->ctid); #if CONFIG_DTRACE LOCKSTAT_RECORD(LS_LCK_RW_TRY_LOCK_EXCL_ACQUIRE, lock, DTRACE_RW_EXCL); #endif /* CONFIG_DTRACE */ #ifdef DEBUG_RW add_held_rwlock(lock, thread, LCK_RW_TYPE_EXCLUSIVE, caller); #endif /* DEBUG_RW */ return TRUE; } __attribute__((noinline)) static boolean_t lck_rw_try_lock_exclusive_internal( lck_rw_t *lock, void *caller) { return lck_rw_try_lock_exclusive_internal_inline(lock, caller); } /*! * @function lck_rw_try_lock_exclusive * * @abstract * Tries to locks a rw_lock in write mode. * * @discussion * This function will return and not block in case the lock is already held. * See lck_rw_lock_exclusive for more details. * * @param lock rw_lock to lock. * * @returns TRUE if the lock is successfully acquired, FALSE in case it was already held. */ boolean_t lck_rw_try_lock_exclusive( lck_rw_t *lock) { return lck_rw_try_lock_exclusive_internal_inline(lock, __builtin_return_address(0)); } /* * Very sad hack, but the codegen for lck_rw_try_lock * is very unhappy with the combination of __builtin_return_address() * and a noreturn function. For some reason it adds more frames * than it should. rdar://76570684 */ boolean_t _lck_rw_try_lock_type_panic(lck_rw_t *lck, lck_rw_type_t lck_rw_type); #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wmissing-noreturn" __attribute__((noinline, weak)) boolean_t _lck_rw_try_lock_type_panic( lck_rw_t *lck, lck_rw_type_t lck_rw_type) { panic("lck_rw_lock(): Invalid RW lock type: %x for lock %p", lck_rw_type, lck); } #pragma clang diagnostic pop /*! * @function lck_rw_try_lock * * @abstract * Tries to locks a rw_lock with the specified type. * * @discussion * This function will return and not wait/block in case the lock is already held. * See lck_rw_try_lock_shared() or lck_rw_try_lock_exclusive() for more details. * * @param lck rw_lock to lock. * @param lck_rw_type LCK_RW_TYPE_SHARED or LCK_RW_TYPE_EXCLUSIVE * * @returns TRUE if the lock is successfully acquired, FALSE in case it was already held. */ boolean_t lck_rw_try_lock( lck_rw_t *lck, lck_rw_type_t lck_rw_type) { if (lck_rw_type == LCK_RW_TYPE_SHARED) { return lck_rw_try_lock_shared_internal(lck, __builtin_return_address(0)); } else if (lck_rw_type == LCK_RW_TYPE_EXCLUSIVE) { return lck_rw_try_lock_exclusive_internal(lck, __builtin_return_address(0)); } return _lck_rw_try_lock_type_panic(lck, lck_rw_type); } /* * Routine: lck_rw_done_gen * * prior_lock_state is the value in the 1st * word of the lock at the time of a successful * atomic compare and exchange with the new value... * it represents the state of the lock before we * decremented the rw_shared_count or cleared either * rw_want_upgrade or rw_want_write and * the lck_x_waiting bits... since the wrapper * routine has already changed the state atomically, * we just need to decide if we should * wake up anyone and what value to return... we do * this by examining the state of the lock before * we changed it */ static lck_rw_type_t lck_rw_done_gen( lck_rw_t *lck, uint32_t prior_lock_state) { lck_rw_word_t fake_lck; lck_rw_type_t lock_type; thread_t thread; /* * prior_lock state is a snapshot of the 1st word of the * lock in question... we'll fake up a pointer to it * and carefully not access anything beyond whats defined * in the first word of a lck_rw_t */ fake_lck.data = prior_lock_state; if (fake_lck.shared_count <= 1) { if (fake_lck.w_waiting) { thread_wakeup(LCK_RW_WRITER_EVENT(lck)); } if (!(fake_lck.priv_excl && fake_lck.w_waiting) && fake_lck.r_waiting) { thread_wakeup(LCK_RW_READER_EVENT(lck)); } } if (fake_lck.shared_count) { lock_type = LCK_RW_TYPE_SHARED; } else { lock_type = LCK_RW_TYPE_EXCLUSIVE; } /* Check if dropping the lock means that we need to unpromote */ thread = current_thread(); if (fake_lck.can_sleep) { lck_rw_lock_count_dec(thread, lck); } #if CONFIG_DTRACE LOCKSTAT_RECORD(LS_LCK_RW_DONE_RELEASE, lck, lock_type == LCK_RW_TYPE_SHARED ? 0 : 1); #endif #ifdef DEBUG_RW remove_held_rwlock(lck, thread, lock_type); #endif /* DEBUG_RW */ return lock_type; } /*! * @function lck_rw_done * * @abstract * Force unlocks a rw_lock without consistency checks. * * @discussion * Do not use unless sure you can avoid consistency checks. * * @param lock rw_lock to unlock. */ lck_rw_type_t lck_rw_done( lck_rw_t *lock) { uint32_t data, prev; boolean_t once = FALSE; #ifdef DEBUG_RW /* * Best effort attempt to check that this thread * is holding the lock. */ thread_t thread = current_thread(); assert_held_rwlock(lock, thread, 0); #endif /* DEBUG_RW */ for (;;) { data = atomic_exchange_begin32(&lock->lck_rw_data, &prev, memory_order_release_smp); if (data & LCK_RW_INTERLOCK) { /* wait for interlock to clear */ atomic_exchange_abort(); lck_rw_interlock_spin(lock); continue; } if (data & LCK_RW_SHARED_MASK) { /* lock is held shared */ assertf(lock->lck_rw_owner == 0, "state=0x%x, owner=%p", lock->lck_rw_data, ctid_get_thread_unsafe(lock->lck_rw_owner)); data -= LCK_RW_SHARED_READER; if ((data & LCK_RW_SHARED_MASK) == 0) { /* if reader count has now gone to 0, check for waiters */ goto check_waiters; } } else { /* if reader count == 0, must be exclusive lock */ if (data & LCK_RW_WANT_UPGRADE) { data &= ~(LCK_RW_WANT_UPGRADE); } else { if (data & LCK_RW_WANT_EXCL) { data &= ~(LCK_RW_WANT_EXCL); } else { /* lock is not 'owned', panic */ panic("Releasing non-exclusive RW lock without a reader refcount!"); } } if (!once) { // Only check for holder and clear it once assertf(lock->lck_rw_owner == current_thread()->ctid, "state=0x%x, owner=%p", lock->lck_rw_data, ctid_get_thread_unsafe(lock->lck_rw_owner)); ordered_store_rw_owner(lock, 0); once = TRUE; } check_waiters: /* * test the original values to match what * lck_rw_done_gen is going to do to determine * which wakeups need to happen... * * if !(fake_lck->lck_rw_priv_excl && fake_lck->lck_w_waiting) */ if (prev & LCK_RW_W_WAITING) { data &= ~(LCK_RW_W_WAITING); if ((prev & LCK_RW_PRIV_EXCL) == 0) { data &= ~(LCK_RW_R_WAITING); } } else { data &= ~(LCK_RW_R_WAITING); } } if (atomic_exchange_complete32(&lock->lck_rw_data, prev, data, memory_order_release_smp)) { break; } cpu_pause(); } return lck_rw_done_gen(lock, prev); } /*! * @function lck_rw_unlock_shared * * @abstract * Unlocks a rw_lock previously locked in shared mode. * * @discussion * The same thread that locked the lock needs to unlock it. * * @param lck rw_lock held in shared mode to unlock. */ void lck_rw_unlock_shared( lck_rw_t *lck) { lck_rw_type_t ret; assertf(lck->lck_rw_owner == 0, "state=0x%x, owner=%p", lck->lck_rw_data, ctid_get_thread_unsafe(lck->lck_rw_owner)); assertf(lck->lck_rw_shared_count > 0, "shared_count=0x%x", lck->lck_rw_shared_count); ret = lck_rw_done(lck); if (ret != LCK_RW_TYPE_SHARED) { panic("lck_rw_unlock_shared(): lock %p held in mode: %d", lck, ret); } } /*! * @function lck_rw_unlock_exclusive * * @abstract * Unlocks a rw_lock previously locked in exclusive mode. * * @discussion * The same thread that locked the lock needs to unlock it. * * @param lck rw_lock held in exclusive mode to unlock. */ void lck_rw_unlock_exclusive( lck_rw_t *lck) { lck_rw_type_t ret; assertf(lck->lck_rw_owner == current_thread()->ctid, "state=0x%x, owner=%p", lck->lck_rw_data, ctid_get_thread_unsafe(lck->lck_rw_owner)); ret = lck_rw_done(lck); if (ret != LCK_RW_TYPE_EXCLUSIVE) { panic("lck_rw_unlock_exclusive(): lock %p held in mode: %d", lck, ret); } } /*! * @function lck_rw_unlock * * @abstract * Unlocks a rw_lock previously locked with lck_rw_type. * * @discussion * The lock must be unlocked by the same thread it was locked from. * The type of the lock/unlock have to match, unless an upgrade/downgrade was performed while * holding the lock. * * @param lck rw_lock to unlock. * @param lck_rw_type LCK_RW_TYPE_SHARED or LCK_RW_TYPE_EXCLUSIVE */ void lck_rw_unlock( lck_rw_t *lck, lck_rw_type_t lck_rw_type) { if (lck_rw_type == LCK_RW_TYPE_SHARED) { lck_rw_unlock_shared(lck); } else if (lck_rw_type == LCK_RW_TYPE_EXCLUSIVE) { lck_rw_unlock_exclusive(lck); } else { panic("lck_rw_unlock(): Invalid RW lock type: %d", lck_rw_type); } } /*! * @function lck_rw_assert * * @abstract * Asserts the rw_lock is held. * * @discussion * read-write locks do not have a concept of ownership when held in shared mode, * so this function merely asserts that someone is holding the lock, not necessarily the caller. * However if rw_lock_debug is on, a best effort mechanism to track the owners is in place, and * this function can be more accurate. * Type can be LCK_RW_ASSERT_SHARED, LCK_RW_ASSERT_EXCLUSIVE, LCK_RW_ASSERT_HELD * LCK_RW_ASSERT_NOTHELD. * * @param lck rw_lock to check. * @param type assert type */ void lck_rw_assert( lck_rw_t *lck, unsigned int type) { thread_t thread = current_thread(); switch (type) { case LCK_RW_ASSERT_SHARED: if ((lck->lck_rw_shared_count != 0) && (lck->lck_rw_owner == 0)) { #if DEBUG_RW assert_held_rwlock(lck, thread, LCK_RW_TYPE_SHARED); #endif /* DEBUG_RW */ return; } break; case LCK_RW_ASSERT_EXCLUSIVE: if ((lck->lck_rw_want_excl || lck->lck_rw_want_upgrade) && (lck->lck_rw_shared_count == 0) && (lck->lck_rw_owner == thread->ctid)) { #if DEBUG_RW assert_held_rwlock(lck, thread, LCK_RW_TYPE_EXCLUSIVE); #endif /* DEBUG_RW */ return; } break; case LCK_RW_ASSERT_HELD: if (lck->lck_rw_shared_count != 0) { #if DEBUG_RW assert_held_rwlock(lck, thread, LCK_RW_TYPE_SHARED); #endif /* DEBUG_RW */ return; // Held shared } if ((lck->lck_rw_want_excl || lck->lck_rw_want_upgrade) && (lck->lck_rw_owner == thread->ctid)) { #if DEBUG_RW assert_held_rwlock(lck, thread, LCK_RW_TYPE_EXCLUSIVE); #endif /* DEBUG_RW */ return; // Held exclusive } break; case LCK_RW_ASSERT_NOTHELD: if ((lck->lck_rw_shared_count == 0) && !(lck->lck_rw_want_excl || lck->lck_rw_want_upgrade) && (lck->lck_rw_owner == 0)) { #ifdef DEBUG_RW assert_canlock_rwlock(lck, thread, LCK_RW_TYPE_EXCLUSIVE); #endif /* DEBUG_RW */ return; } break; default: break; } panic("rw lock (%p)%s held (mode=%u)", lck, (type == LCK_RW_ASSERT_NOTHELD ? "" : " not"), type); } /*! * @function kdp_lck_rw_lock_is_acquired_exclusive * * @abstract * Checks if a rw_lock is held exclusevely. * * @discussion * NOT SAFE: To be used only by kernel debugger to avoid deadlock. * * @param lck lock to check * * @returns TRUE if the lock is held exclusevely */ boolean_t kdp_lck_rw_lock_is_acquired_exclusive( lck_rw_t *lck) { if (not_in_kdp) { panic("panic: rw lock exclusive check done outside of kernel debugger"); } return ((lck->lck_rw_want_upgrade || lck->lck_rw_want_excl) && (lck->lck_rw_shared_count == 0)) ? TRUE : FALSE; } void kdp_rwlck_find_owner( __unused struct waitq *waitq, event64_t event, thread_waitinfo_t *waitinfo) { lck_rw_t *rwlck = NULL; switch (waitinfo->wait_type) { case kThreadWaitKernelRWLockRead: rwlck = READ_EVENT_TO_RWLOCK(event); break; case kThreadWaitKernelRWLockWrite: case kThreadWaitKernelRWLockUpgrade: rwlck = WRITE_EVENT_TO_RWLOCK(event); break; default: panic("%s was called with an invalid blocking type", __FUNCTION__); break; } waitinfo->context = VM_KERNEL_UNSLIDE_OR_PERM(rwlck); waitinfo->owner = thread_tid(ctid_get_thread(rwlck->lck_rw_owner)); } /*! * @function lck_rw_lock_would_yield_shared * * @abstract * Check whether a rw_lock currently held in shared mode would be yielded * * @discussion * This function can be used when lck_rw_lock_yield_shared() would be * inappropriate due to the need to perform additional housekeeping * prior to any yield or when the caller may wish to prematurely terminate * an operation rather than resume it after regaining the lock. * * @param lck rw_lock already held in shared mode to yield. * * @returns TRUE if the lock would yield, FALSE otherwise */ bool lck_rw_lock_would_yield_shared( lck_rw_t *lck) { lck_rw_word_t word; lck_rw_assert(lck, LCK_RW_ASSERT_SHARED); word.data = ordered_load_rw(lck); if (word.want_excl || word.want_upgrade) { return true; } return false; } /*! * @function lck_rw_lock_yield_shared * * @abstract * Yields a rw_lock held in shared mode. * * @discussion * This function can block. * Yields the lock in case there are writers waiting. * The yield will unlock, block, and re-lock the lock in shared mode. * * @param lck rw_lock already held in shared mode to yield. * @param force_yield if set to true it will always yield irrespective of the lock status * * @returns TRUE if the lock was yield, FALSE otherwise */ bool lck_rw_lock_yield_shared( lck_rw_t *lck, boolean_t force_yield) { if (lck_rw_lock_would_yield_shared(lck) || force_yield) { lck_rw_unlock_shared(lck); mutex_pause(2); lck_rw_lock_shared(lck); return true; } return false; } /*! * @function lck_rw_lock_would_yield_exclusive * * @abstract * Check whether a rw_lock currently held in exclusive mode would be yielded * * @discussion * This function can be used when lck_rw_lock_yield_exclusive would be * inappropriate due to the need to perform additional housekeeping * prior to any yield or when the caller may wish to prematurely terminate * an operation rather than resume it after regaining the lock. * * @param lck rw_lock already held in exclusive mode to yield. * @param mode when to yield. * * @returns TRUE if the lock would yield, FALSE otherwise */ bool lck_rw_lock_would_yield_exclusive( lck_rw_t *lck, lck_rw_yield_t mode) { lck_rw_word_t word; bool yield = false; lck_rw_assert(lck, LCK_RW_ASSERT_EXCLUSIVE); if (mode == LCK_RW_YIELD_ALWAYS) { yield = true; } else { word.data = ordered_load_rw(lck); if (word.w_waiting) { yield = true; } else if (mode == LCK_RW_YIELD_ANY_WAITER) { yield = (word.r_waiting != 0); } } return yield; } /*! * @function lck_rw_lock_yield_exclusive * * @abstract * Yields a rw_lock held in exclusive mode. * * @discussion * This function can block. * Yields the lock in case there are writers waiting. * The yield will unlock, block, and re-lock the lock in exclusive mode. * * @param lck rw_lock already held in exclusive mode to yield. * @param mode when to yield. * * @returns TRUE if the lock was yield, FALSE otherwise */ bool lck_rw_lock_yield_exclusive( lck_rw_t *lck, lck_rw_yield_t mode) { bool yield = lck_rw_lock_would_yield_exclusive(lck, mode); if (yield) { lck_rw_unlock_exclusive(lck); mutex_pause(2); lck_rw_lock_exclusive(lck); } return yield; } /*! * @function lck_rw_sleep * * @abstract * Assert_wait on an event while holding the rw_lock. * * @discussion * the flags can decide how to re-acquire the lock upon wake up * (LCK_SLEEP_SHARED, or LCK_SLEEP_EXCLUSIVE, or LCK_SLEEP_UNLOCK) * and if the priority needs to be kept boosted until the lock is * re-acquired (LCK_SLEEP_PROMOTED_PRI). * * @param lck rw_lock to use to synch the assert_wait. * @param lck_sleep_action flags. * @param event event to assert_wait on. * @param interruptible wait type. */ wait_result_t lck_rw_sleep( lck_rw_t *lck, lck_sleep_action_t lck_sleep_action, event_t event, wait_interrupt_t interruptible) { wait_result_t res; lck_rw_type_t lck_rw_type; thread_pri_floor_t token; if ((lck_sleep_action & ~LCK_SLEEP_MASK) != 0) { panic("Invalid lock sleep action %x", lck_sleep_action); } if (lck_sleep_action & LCK_SLEEP_PROMOTED_PRI) { /* * Although we are dropping the RW lock, the intent in most cases * is that this thread remains as an observer, since it may hold * some secondary resource, but must yield to avoid deadlock. In * this situation, make sure that the thread is boosted to the * ceiling while blocked, so that it can re-acquire the * RW lock at that priority. */ token = thread_priority_floor_start(); } res = assert_wait(event, interruptible); if (res == THREAD_WAITING) { lck_rw_type = lck_rw_done(lck); res = thread_block(THREAD_CONTINUE_NULL); if (!(lck_sleep_action & LCK_SLEEP_UNLOCK)) { if (!(lck_sleep_action & (LCK_SLEEP_SHARED | LCK_SLEEP_EXCLUSIVE))) { lck_rw_lock(lck, lck_rw_type); } else if (lck_sleep_action & LCK_SLEEP_EXCLUSIVE) { lck_rw_lock_exclusive(lck); } else { lck_rw_lock_shared(lck); } } } else if (lck_sleep_action & LCK_SLEEP_UNLOCK) { (void)lck_rw_done(lck); } if (lck_sleep_action & LCK_SLEEP_PROMOTED_PRI) { thread_priority_floor_end(&token); } return res; } /*! * @function lck_rw_sleep_deadline * * @abstract * Assert_wait_deadline on an event while holding the rw_lock. * * @discussion * the flags can decide how to re-acquire the lock upon wake up * (LCK_SLEEP_SHARED, or LCK_SLEEP_EXCLUSIVE, or LCK_SLEEP_UNLOCK) * and if the priority needs to be kept boosted until the lock is * re-acquired (LCK_SLEEP_PROMOTED_PRI). * * @param lck rw_lock to use to synch the assert_wait. * @param lck_sleep_action flags. * @param event event to assert_wait on. * @param interruptible wait type. * @param deadline maximum time after which being woken up */ wait_result_t lck_rw_sleep_deadline( lck_rw_t *lck, lck_sleep_action_t lck_sleep_action, event_t event, wait_interrupt_t interruptible, uint64_t deadline) { wait_result_t res; lck_rw_type_t lck_rw_type; thread_pri_floor_t token; if ((lck_sleep_action & ~LCK_SLEEP_MASK) != 0) { panic("Invalid lock sleep action %x", lck_sleep_action); } if (lck_sleep_action & LCK_SLEEP_PROMOTED_PRI) { token = thread_priority_floor_start(); } res = assert_wait_deadline(event, interruptible, deadline); if (res == THREAD_WAITING) { lck_rw_type = lck_rw_done(lck); res = thread_block(THREAD_CONTINUE_NULL); if (!(lck_sleep_action & LCK_SLEEP_UNLOCK)) { if (!(lck_sleep_action & (LCK_SLEEP_SHARED | LCK_SLEEP_EXCLUSIVE))) { lck_rw_lock(lck, lck_rw_type); } else if (lck_sleep_action & LCK_SLEEP_EXCLUSIVE) { lck_rw_lock_exclusive(lck); } else { lck_rw_lock_shared(lck); } } } else if (lck_sleep_action & LCK_SLEEP_UNLOCK) { (void)lck_rw_done(lck); } if (lck_sleep_action & LCK_SLEEP_PROMOTED_PRI) { thread_priority_floor_end(&token); } return res; } /* * Reader-writer lock promotion * * We support a limited form of reader-writer * lock promotion whose effects are: * * * Qualifying threads have decay disabled * * Scheduler priority is reset to a floor of * of their statically assigned priority * or MINPRI_RWLOCK * * The rationale is that lck_rw_ts do not have * a single owner, so we cannot apply a directed * priority boost from all waiting threads * to all holding threads without maintaining * lists of all shared owners and all waiting * threads for every lock. * * Instead (and to preserve the uncontended fast- * path), acquiring (or attempting to acquire) * a RW lock in shared or exclusive lock increments * a per-thread counter. Only if that thread stops * making forward progress (for instance blocking * on a mutex, or being preempted) do we consult * the counter and apply the priority floor. * When the thread becomes runnable again (or in * the case of preemption it never stopped being * runnable), it has the priority boost and should * be in a good position to run on the CPU and * release all RW locks (at which point the priority * boost is cleared). * * Care must be taken to ensure that priority * boosts are not retained indefinitely, since unlike * mutex priority boosts (where the boost is tied * to the mutex lifecycle), the boost is tied * to the thread and independent of any particular * lck_rw_t. Assertions are in place on return * to userspace so that the boost is not held * indefinitely. * * The routines that increment/decrement the * per-thread counter should err on the side of * incrementing any time a preemption is possible * and the lock would be visible to the rest of the * system as held (so it should be incremented before * interlocks are dropped/preemption is enabled, or * before a CAS is executed to acquire the lock). * */ /*! * @function lck_rw_clear_promotion * * @abstract * Undo priority promotions when the last rw_lock * is released by a thread (if a promotion was active). * * @param thread thread to demote. * @param lock object reason for the demotion. */ __attribute__((noinline)) static void lck_rw_clear_promotion(thread_t thread, const void *lock) { /* Cancel any promotions if the thread had actually blocked while holding a RW lock */ spl_t s = splsched(); thread_lock(thread); if (thread->sched_flags & TH_SFLAG_RW_PROMOTED) { sched_thread_unpromote_reason(thread, TH_SFLAG_RW_PROMOTED, unslide_for_kdebug(lock)); } thread_unlock(thread); splx(s); } /*! * @function lck_rw_set_promotion_locked * * @abstract * Callout from context switch if the thread goes * off core with a positive rwlock_count. * * @discussion * Called at splsched with the thread locked. * * @param thread thread to promote. */ __attribute__((always_inline)) void lck_rw_set_promotion_locked(thread_t thread) { if (LcksOpts & LCK_OPTION_DISABLE_RW_PRIO) { return; } assert(thread->rwlock_count > 0); if (!(thread->sched_flags & TH_SFLAG_RW_PROMOTED)) { sched_thread_promote_reason(thread, TH_SFLAG_RW_PROMOTED, 0); } } __attribute__((always_inline)) void lck_rw_lock_count_inc(thread_t thread, const void *lock __unused) { if (thread->rwlock_count++ == 0) { #if MACH_ASSERT /* * Set the ast to check that the * rwlock_count is going to be set to zero when * going back to userspace. * Set it only once when we increment it for the first time. */ act_set_debug_assert(); #endif } } __abortlike static void __lck_rw_lock_count_dec_panic(thread_t thread) { panic("rw lock count underflow for thread %p", thread); } __attribute__((always_inline)) void lck_rw_lock_count_dec(thread_t thread, const void *lock) { uint32_t rwlock_count = thread->rwlock_count--; if (rwlock_count == 0) { __lck_rw_lock_count_dec_panic(thread); } if (__probable(rwlock_count == 1)) { /* sched_flags checked without lock, but will be rechecked while clearing */ if (__improbable(thread->sched_flags & TH_SFLAG_RW_PROMOTED)) { lck_rw_clear_promotion(thread, lock); } } } |