Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 | /* * Copyright (c) 2017-2020 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@ */ #include <kern/turnstile.h> #include <kern/cpu_data.h> #include <kern/mach_param.h> #include <kern/kern_types.h> #include <kern/assert.h> #include <kern/kalloc.h> #include <kern/thread.h> #include <kern/clock.h> #include <kern/policy_internal.h> #include <kern/task.h> #include <kern/waitq.h> #include <kern/sched_prim.h> #include <kern/zalloc.h> #include <kern/debug.h> #include <kern/compact_id.h> #include <machine/limits.h> #include <machine/atomic.h> #include <machine/machine_routines.h> #include <ipc/ipc_service_port.h> #include <ipc/ipc_space.h> #include <pexpert/pexpert.h> #include <os/hash.h> #include <libkern/section_keywords.h> static TUNABLE(int, turnstile_max_hop, "turnstile_max_hop", TURNSTILE_MAX_HOP_DEFAULT); COMPACT_ID_TABLE_DEFINE(static, ctsid_table); static_assert(CTSID_MAX <= COMPACT_ID_MAX); static SECURITY_READ_ONLY_LATE(uint32_t) ctsid_nonce; ZONE_DEFINE_ID(ZONE_ID_TURNSTILE, "turnstiles", struct turnstile, ZC_ZFREE_CLEARMEM); /* Global table for turnstile promote policy for all type of turnstiles */ static const turnstile_promote_policy_t turnstile_promote_policy[TURNSTILE_TOTAL_TYPES] = { [TURNSTILE_NONE] = TURNSTILE_PROMOTE_NONE, [TURNSTILE_KERNEL_MUTEX] = TURNSTILE_KERNEL_PROMOTE, [TURNSTILE_ULOCK] = TURNSTILE_USER_PROMOTE, [TURNSTILE_PTHREAD_MUTEX] = TURNSTILE_USER_PROMOTE, [TURNSTILE_SYNC_IPC] = TURNSTILE_USER_IPC_PROMOTE, [TURNSTILE_WORKLOOPS] = TURNSTILE_USER_IPC_PROMOTE, [TURNSTILE_WORKQS] = TURNSTILE_USER_IPC_PROMOTE, [TURNSTILE_KNOTE] = TURNSTILE_USER_IPC_PROMOTE, [TURNSTILE_SLEEP_INHERITOR] = TURNSTILE_KERNEL_PROMOTE, [TURNSTILE_EPOCH_KERNEL] = TURNSTILE_KERNEL_PROMOTE, [TURNSTILE_EPOCH_USER] = TURNSTILE_USER_PROMOTE, }; /* Global table for turnstile hash lock policy for all type of turnstiles */ static const turnstile_hash_lock_policy_t turnstile_hash_lock_policy[TURNSTILE_TOTAL_TYPES] = { [TURNSTILE_NONE] = TURNSTILE_HASH_LOCK_POLICY_NONE, [TURNSTILE_KERNEL_MUTEX] = TURNSTILE_HASH_LOCK_POLICY_NONE, [TURNSTILE_ULOCK] = TURNSTILE_HASH_LOCK_POLICY_NONE, [TURNSTILE_PTHREAD_MUTEX] = TURNSTILE_HASH_LOCK_POLICY_NONE, [TURNSTILE_SYNC_IPC] = TURNSTILE_HASH_LOCK_POLICY_NONE, [TURNSTILE_WORKLOOPS] = TURNSTILE_HASH_LOCK_POLICY_NONE, [TURNSTILE_WORKQS] = TURNSTILE_HASH_LOCK_POLICY_NONE, [TURNSTILE_KNOTE] = TURNSTILE_HASH_LOCK_POLICY_NONE, [TURNSTILE_SLEEP_INHERITOR] = (TURNSTILE_IRQ_UNSAFE_HASH | TURNSTILE_LOCKED_HASH), [TURNSTILE_EPOCH_KERNEL] = TURNSTILE_HASH_LOCK_POLICY_NONE, [TURNSTILE_EPOCH_USER] = TURNSTILE_HASH_LOCK_POLICY_NONE, }; os_refgrp_decl(static, turnstile_refgrp, "turnstile", NULL); #if DEVELOPMENT || DEBUG static LCK_GRP_DECLARE(turnstiles_dev_lock_grp, "turnstile_dev_lock"); /* Array to store stats for multi-hop boosting */ static struct turnstile_stats turnstile_boost_stats[TURNSTILE_MAX_HOP_DEFAULT] = {}; static struct turnstile_stats turnstile_unboost_stats[TURNSTILE_MAX_HOP_DEFAULT] = {}; uint64_t thread_block_on_turnstile_count; uint64_t thread_block_on_regular_waitq_count; #endif /* DEVELOPMENT || DEBUG */ #ifndef max #define max(a, b) (((a) > (b)) ? (a) : (b)) #endif /* max */ /* Static function declarations */ static turnstile_type_t turnstile_get_type(struct turnstile *turnstile); static bool turnstile_is_send_turnstile(struct turnstile *turnstile); static uint32_t turnstile_get_gencount(struct turnstile *turnstile); static void turnstile_set_type_and_increment_gencount(struct turnstile *turnstile, turnstile_type_t type); static void turnstile_destroy(struct turnstile *turnstile); static void turnstile_update_inheritor_workq_priority_chain(struct turnstile *in_turnstile, spl_t s); static void turnstile_update_inheritor_thread_priority_chain(struct turnstile **in_turnstile, thread_t *out_thread, int total_hop, turnstile_stats_update_flags_t tsu_flags); static void turnstile_update_inheritor_turnstile_priority_chain(struct turnstile **in_out_turnstile, int total_hop, turnstile_stats_update_flags_t tsu_flags); static void thread_update_waiting_turnstile_priority_chain(thread_t *in_thread, struct turnstile **out_turnstile, int thread_hop, int total_hop, turnstile_stats_update_flags_t tsu_flags); static boolean_t turnstile_update_turnstile_promotion_locked(struct turnstile *dst_turnstile, struct turnstile *src_turnstile); static boolean_t turnstile_update_turnstile_promotion(struct turnstile *dst_turnstile, struct turnstile *src_turnstile); static boolean_t turnstile_need_turnstile_promotion_update(struct turnstile *dst_turnstile, struct turnstile *src_turnstile); static boolean_t turnstile_add_turnstile_promotion(struct turnstile *dst_turnstile, struct turnstile *src_turnstile); static boolean_t turnstile_remove_turnstile_promotion(struct turnstile *dst_turnstile, struct turnstile *src_turnstile); static boolean_t turnstile_update_thread_promotion_locked(struct turnstile *dst_turnstile, thread_t thread); static boolean_t turnstile_need_thread_promotion_update(struct turnstile *dst_turnstile, thread_t thread); static boolean_t thread_add_turnstile_promotion( thread_t thread, struct turnstile *turnstile); static boolean_t thread_remove_turnstile_promotion( thread_t thread, struct turnstile *turnstile); static boolean_t thread_needs_turnstile_promotion_update(thread_t thread, struct turnstile *turnstile); static boolean_t thread_update_turnstile_promotion( thread_t thread, struct turnstile *turnstile); static boolean_t thread_update_turnstile_promotion_locked( thread_t thread, struct turnstile *turnstile); static boolean_t workq_add_turnstile_promotion( struct workqueue *wq_inheritor, struct turnstile *turnstile); static turnstile_stats_update_flags_t thread_get_update_flags_for_turnstile_propagation_stoppage(thread_t thread); static turnstile_stats_update_flags_t turnstile_get_update_flags_for_above_UI_pri_change(struct turnstile *turnstile); static void turnstile_stash_inheritor(turnstile_inheritor_t new_inheritor, turnstile_update_flags_t flags); static int turnstile_compute_thread_push(struct turnstile *turnstile, thread_t thread); #if DEVELOPMENT || DEBUG /* Test primitives and interfaces for testing turnstiles */ struct tstile_test_prim { struct turnstile *ttprim_turnstile; thread_t ttprim_owner; lck_spin_t ttprim_interlock; uint32_t tt_prim_waiters; }; struct tstile_test_prim test_prim_ts_inline; struct tstile_test_prim test_prim_global_htable; struct tstile_test_prim test_prim_global_ts_kernel; struct tstile_test_prim test_prim_global_ts_kernel_hash; static void tstile_test_prim_init(struct tstile_test_prim *test_prim_ptr); #endif union turnstile_type_gencount { uint32_t value; struct { uint32_t ts_type:(8 * sizeof(turnstile_type_t)), ts_gencount: (8 * (sizeof(uint32_t) - sizeof(turnstile_type_t))); }; }; static turnstile_type_t turnstile_get_type(struct turnstile *turnstile) { union turnstile_type_gencount type_and_gencount; type_and_gencount.value = atomic_load_explicit(&turnstile->ts_type_gencount, memory_order_relaxed); return (turnstile_type_t) type_and_gencount.ts_type; } /* Only safe to be called from stackshot context */ static bool turnstile_is_send_turnstile(struct turnstile *turnstile) { if (not_in_kdp) { panic("turnstile_is_send_turnstile() called outside of kernel debugger context"); } if (turnstile_get_type(turnstile) == TURNSTILE_SYNC_IPC) { ipc_port_t port = (ipc_port_t) turnstile->ts_proprietor; return port_send_turnstile(port) == turnstile; } return false; } /* Only safe to be called from stackshot context */ static bool turnstile_is_receive_turnstile(struct turnstile *turnstile) { if (not_in_kdp) { panic("turnstile_is_receive_turnstile() called outside of kernel debugger context"); } if (turnstile_get_type(turnstile) == TURNSTILE_SYNC_IPC) { ipc_port_t port = (ipc_port_t) turnstile->ts_proprietor; return *port_rcv_turnstile_address(port) == turnstile; } return false; } static uint32_t turnstile_get_gencount(struct turnstile *turnstile) { union turnstile_type_gencount type_and_gencount; type_and_gencount.value = atomic_load_explicit(&turnstile->ts_type_gencount, memory_order_relaxed); return (uint32_t) type_and_gencount.ts_gencount; } static void turnstile_set_type_and_increment_gencount(struct turnstile *turnstile, turnstile_type_t type) { union turnstile_type_gencount type_and_gencount; /* No need to compare exchange since the store happens under interlock of the primitive */ type_and_gencount.value = atomic_load_explicit(&turnstile->ts_type_gencount, memory_order_relaxed); type_and_gencount.ts_type = type; type_and_gencount.ts_gencount++; atomic_store_explicit(&turnstile->ts_type_gencount, type_and_gencount.value, memory_order_relaxed); } /* Turnstile hashtable Implementation */ /* * Maximum number of buckets in the turnstile hashtable. This number affects the * performance of the hashtable since it determines the hash collision * rate. To experiment with the number of buckets in this hashtable use the * "ts_htable_buckets" boot-arg. */ #define TURNSTILE_HTABLE_BUCKETS_DEFAULT 32 #define TURNSTILE_HTABLE_BUCKETS_MAX 1024 SLIST_HEAD(turnstile_hashlist, turnstile); struct turnstile_htable_bucket { lck_spin_t ts_ht_bucket_lock; struct turnstile_hashlist ts_ht_bucket_list; }; SECURITY_READ_ONLY_LATE(static uint32_t) ts_htable_buckets; /* Global hashtable for turnstiles managed with interrupts disabled */ SECURITY_READ_ONLY_LATE(static struct turnstile_htable_bucket *)turnstile_htable_irq_safe; /* Global hashtable for turnstiles managed with interrupts enabled */ SECURITY_READ_ONLY_LATE(static struct turnstile_htable_bucket *)turnstile_htable; /* Bucket locks for turnstile hashtable */ LCK_GRP_DECLARE(turnstiles_htable_lock_grp, "turnstiles_htable_locks"); #define turnstile_bucket_lock_init(bucket) \ lck_spin_init(&bucket->ts_ht_bucket_lock, &turnstiles_htable_lock_grp, LCK_ATTR_NULL) #define turnstile_bucket_lock(bucket) \ lck_spin_lock_grp(&bucket->ts_ht_bucket_lock, &turnstiles_htable_lock_grp) #define turnstile_bucket_unlock(bucket) \ lck_spin_unlock(&bucket->ts_ht_bucket_lock) #define kdp_turnstile_bucket_is_locked(bucket) \ kdp_lck_spin_is_acquired(&bucket->ts_ht_bucket_lock) /* * Name: turnstiles_hashtable_init * * Description: Initializes the global turnstile hash table. * * Args: * None * * Returns: * None */ static void turnstiles_hashtable_init(void) { /* Initialize number of buckets in the hashtable */ if (PE_parse_boot_argn("ts_htable_buckets", &ts_htable_buckets, sizeof(ts_htable_buckets)) != TRUE) { ts_htable_buckets = TURNSTILE_HTABLE_BUCKETS_DEFAULT; } assert(ts_htable_buckets <= TURNSTILE_HTABLE_BUCKETS_MAX); uint32_t ts_htable_size = ts_htable_buckets * sizeof(struct turnstile_htable_bucket); turnstile_htable_irq_safe = zalloc_permanent(ts_htable_size, ZALIGN_PTR); if (turnstile_htable_irq_safe == NULL) { panic("Turnstiles hash table memory allocation failed!"); } turnstile_htable = zalloc_permanent(ts_htable_size, ZALIGN_PTR); if (turnstile_htable == NULL) { panic("Turnstiles hash table memory allocation failed!"); } /* Initialize all the buckets of the hashtables */ for (uint32_t i = 0; i < ts_htable_buckets; i++) { struct turnstile_htable_bucket *ts_bucket = &(turnstile_htable_irq_safe[i]); turnstile_bucket_lock_init(ts_bucket); SLIST_INIT(&ts_bucket->ts_ht_bucket_list); ts_bucket = &(turnstile_htable[i]); turnstile_bucket_lock_init(ts_bucket); SLIST_INIT(&ts_bucket->ts_ht_bucket_list); } } /* * Name: turnstile_freelist_empty * * Description: Checks if the turnstile's freelist is empty * Should be called with the primitive IL held. * * Args: * Arg1: turnstile * * Returns: * true if freelist is empty; false otherwise */ static inline boolean_t turnstile_freelist_empty( struct turnstile *ts) { return SLIST_EMPTY(&ts->ts_free_turnstiles); } /* * Name: turnstile_freelist_insert * * Description: Inserts the turnstile into the freelist of another turnstile * Should be called with the primitive IL held. * * Args: * Arg1: primitive turnstile * Arg2: turnstile to add to the freelist * * Returns: * None */ static void turnstile_freelist_insert( struct turnstile *dst_ts, struct turnstile *free_ts) { assert(turnstile_get_type(dst_ts) == turnstile_get_type(free_ts)); assert(dst_ts->ts_proprietor == free_ts->ts_proprietor); turnstile_state_add(free_ts, TURNSTILE_STATE_FREELIST); SLIST_INSERT_HEAD(&dst_ts->ts_free_turnstiles, free_ts, ts_free_elm); } /* * Name: turnstile_freelist_remove * * Description: Removes a turnstile from the freelist of a turnstile * Should be called with the primitive IL held. * * Args: * Arg1: primitive turnstile * * Returns: * turnstile removed from the freelist */ static struct turnstile * turnstile_freelist_remove( struct turnstile *ts) { struct turnstile *ret_turnstile = TURNSTILE_NULL; assert(!SLIST_EMPTY(&ts->ts_free_turnstiles)); ret_turnstile = SLIST_FIRST(&ts->ts_free_turnstiles); SLIST_REMOVE_HEAD(&ts->ts_free_turnstiles, ts_free_elm); assert(ret_turnstile != TURNSTILE_NULL); turnstile_state_remove(ret_turnstile, TURNSTILE_STATE_FREELIST); /* Need to initialize the list again, since head and elm are in union */ SLIST_INIT(&ret_turnstile->ts_free_turnstiles); return ret_turnstile; } /* * Name: turnstile_hash * * Description: Calculates the hash bucket index for a given proprietor * * Args: * Arg1: proprietor (key) for hashing * * Returns: * hash table bucket index for provided proprietor */ static inline uint32_t turnstile_hash(uintptr_t proprietor) { uint32_t hash = os_hash_kernel_pointer((void *)proprietor); return hash & (ts_htable_buckets - 1); } static inline struct turnstile_htable_bucket * turnstile_get_bucket(uint32_t index, turnstile_type_t type) { struct turnstile_htable_bucket *ts_bucket; int hash_policy = turnstile_hash_lock_policy[type]; if (hash_policy & TURNSTILE_IRQ_UNSAFE_HASH) { ts_bucket = &(turnstile_htable[index]); } else { ts_bucket = &(turnstile_htable_irq_safe[index]); } return ts_bucket; } /* * Name: turnstile_hash_bucket_lock * * Description: locks the spinlock associated with proprietor's bucket. * if proprietor is specified the index for the hash will be * recomputed and returned in index_proprietor, * otherwise the value save in index_proprietor is used as index. * * Args: * Arg1: proprietor (key) for hashing * Arg2: index for proprietor in the hash * Arg3: turnstile type * * Returns: old value of irq if irq were disabled before acquiring the lock. */ unsigned turnstile_hash_bucket_lock(uintptr_t proprietor, uint32_t *index_proprietor, turnstile_type_t type) { struct turnstile_htable_bucket *ts_bucket; int hash_policy = turnstile_hash_lock_policy[type]; bool irq_safe = !(hash_policy & TURNSTILE_IRQ_UNSAFE_HASH); spl_t ret = 0; uint32_t index; /* * If the proprietor is specified, the caller doesn't know * the index in the hash, so compute it. * Otherwise use the value of index provided. */ if (proprietor) { index = turnstile_hash(proprietor); *index_proprietor = index; } else { index = *index_proprietor; } ts_bucket = turnstile_get_bucket(index, type); if (irq_safe) { ret = splsched(); } turnstile_bucket_lock(ts_bucket); return ret; } /* * Name: turnstile_hash_bucket_unlock * * Description: unlocks the spinlock associated with proprietor's bucket. * if proprietor is specified the index for the hash will be * recomputed and returned in index_proprietor, * otherwise the value save in index_proprietor is used as index. * * Args: * Arg1: proprietor (key) for hashing * Arg2: index for proprietor in the hash * Arg3: turnstile type * Arg4: irq value returned by turnstile_hash_bucket_lock * */ void turnstile_hash_bucket_unlock(uintptr_t proprietor, uint32_t *index_proprietor, turnstile_type_t type, unsigned s) { struct turnstile_htable_bucket *ts_bucket; int hash_policy = turnstile_hash_lock_policy[type]; bool irq_safe = !(hash_policy & TURNSTILE_IRQ_UNSAFE_HASH); uint32_t index; /* * If the proprietor is specified, the caller doesn't know * the index in the hash, so compute it. * Otherwise use the value of index provided. */ if (proprietor) { index = turnstile_hash(proprietor); *index_proprietor = index; } else { index = *index_proprietor; } ts_bucket = turnstile_get_bucket(index, type); turnstile_bucket_unlock(ts_bucket); if (irq_safe) { splx(s); } } /* * Name: turnstile_htable_lookup_add * * Description: Lookup the proprietor in the global turnstile hash table. * If an entry is present, add the new turnstile to the entry's freelist. * Otherwise add the passed in turnstile for that proprietor. * The routine assumes that the turnstile->proprietor does not change * while the turnstile is in the global hash table. * * Args: * Arg1: proprietor * Arg2: new turnstile for primitive * Arg3: turnstile_type_t type * * Returns: * Previous turnstile for proprietor in the hash table */ static struct turnstile * turnstile_htable_lookup_add( uintptr_t proprietor, struct turnstile *new_turnstile, turnstile_type_t type) { uint32_t index = turnstile_hash(proprietor); assert(index < ts_htable_buckets); struct turnstile_htable_bucket *ts_bucket; int hash_policy = turnstile_hash_lock_policy[type]; bool needs_lock = !(hash_policy & TURNSTILE_LOCKED_HASH); bool irq_safe = !(hash_policy & TURNSTILE_IRQ_UNSAFE_HASH); spl_t s; ts_bucket = turnstile_get_bucket(index, type); if (needs_lock) { if (irq_safe) { s = splsched(); } turnstile_bucket_lock(ts_bucket); } struct turnstile *ts; SLIST_FOREACH(ts, &ts_bucket->ts_ht_bucket_list, ts_htable_link) { if (ts->ts_proprietor == proprietor) { /* * Found an entry in the hashtable for this proprietor; add thread turnstile to freelist * and return this turnstile */ if (needs_lock) { turnstile_bucket_unlock(ts_bucket); if (irq_safe) { splx(s); } } turnstile_freelist_insert(ts, new_turnstile); return ts; } } /* No entry for this proprietor; add the new turnstile in the hash table */ SLIST_INSERT_HEAD(&ts_bucket->ts_ht_bucket_list, new_turnstile, ts_htable_link); turnstile_state_add(new_turnstile, TURNSTILE_STATE_HASHTABLE); if (needs_lock) { turnstile_bucket_unlock(ts_bucket); if (irq_safe) { splx(s); } } /* Since there was no previous entry for this proprietor, return TURNSTILE_NULL */ return TURNSTILE_NULL; } /* * Name: turnstable_htable_lookup_remove * * Description: Lookup the proprietor in the global turnstile hash table. * For the turnstile in the hash table, if the freelist has turnstiles on it * return one of them from the freelist. Otherwise remove the turnstile from * the hashtable and return that. * The routine assumes that the turnstile->proprietor does not change * while the turnstile is in the global hash table. * * Args: * Arg1: proprietor * Arg2: free turnstile to be returned * Arg3: turnstile_type_t type * * Returns: * turnstile for this proprietor in the hashtable after the removal */ static struct turnstile * turnstable_htable_lookup_remove( uintptr_t proprietor, struct turnstile **free_turnstile, turnstile_type_t type) { uint32_t index = turnstile_hash(proprietor); assert(index < ts_htable_buckets); struct turnstile_htable_bucket *ts_bucket; struct turnstile *ret_turnstile = TURNSTILE_NULL; int hash_policy = turnstile_hash_lock_policy[type]; bool needs_lock = !(hash_policy & TURNSTILE_LOCKED_HASH); bool irq_safe = !(hash_policy & TURNSTILE_IRQ_UNSAFE_HASH); spl_t s; ts_bucket = turnstile_get_bucket(index, type); if (needs_lock) { if (irq_safe) { s = splsched(); } turnstile_bucket_lock(ts_bucket); } struct turnstile *ts, **prev_tslink; /* Find the turnstile for the given proprietor in the hashtable */ SLIST_FOREACH_PREVPTR(ts, prev_tslink, &ts_bucket->ts_ht_bucket_list, ts_htable_link) { if (ts->ts_proprietor == proprietor) { ret_turnstile = ts; break; } } assert(ret_turnstile != TURNSTILE_NULL); /* Check if the turnstile has any turnstiles on its freelist */ if (turnstile_freelist_empty(ret_turnstile)) { /* No turnstiles on the freelist; remove the turnstile from the hashtable and mark it freed */ *prev_tslink = SLIST_NEXT(ret_turnstile, ts_htable_link); turnstile_state_remove(ret_turnstile, TURNSTILE_STATE_HASHTABLE); if (needs_lock) { turnstile_bucket_unlock(ts_bucket); if (irq_safe) { splx(s); } } *free_turnstile = ret_turnstile; return TURNSTILE_NULL; } else { /* * Turnstile has free turnstiles on its list; leave the hashtable unchanged * and return the first turnstile in the freelist as the free turnstile */ if (needs_lock) { turnstile_bucket_unlock(ts_bucket); if (irq_safe) { splx(s); } } *free_turnstile = turnstile_freelist_remove(ret_turnstile); return ret_turnstile; } } /* * Name: turnstile_htable_lookup * * Description: Lookup the proprietor in the global turnstile hash table. * The routine assumes that the turnstile->proprietor does not change * while the turnstile is in the global hash table. * * Args: * Arg1: proprietor * Arg2: turnstile_type_t type * * Returns: * Turnstile for proprietor in the hash table */ static struct turnstile * turnstile_htable_lookup( uintptr_t proprietor, turnstile_type_t type) { uint32_t index = turnstile_hash(proprietor); assert(index < ts_htable_buckets); bool kdp_ctx = !not_in_kdp; struct turnstile_htable_bucket *ts_bucket = turnstile_get_bucket(index, type); int hash_policy = turnstile_hash_lock_policy[type]; bool needs_lock = !(hash_policy & TURNSTILE_LOCKED_HASH); bool irq_safe = !(hash_policy & TURNSTILE_IRQ_UNSAFE_HASH); spl_t s; if (needs_lock) { if (irq_safe && !kdp_ctx) { s = splsched(); } if (kdp_ctx) { if (kdp_turnstile_bucket_is_locked(ts_bucket)) { /* This should move to TURNSTILE_BUSY once 51725781 is in the build */ return TURNSTILE_NULL; } } else { turnstile_bucket_lock(ts_bucket); } } struct turnstile *ts = TURNSTILE_NULL; struct turnstile *ret_turnstile = TURNSTILE_NULL; SLIST_FOREACH(ts, &ts_bucket->ts_ht_bucket_list, ts_htable_link) { if (ts->ts_proprietor == proprietor) { /* Found an entry in the hashtable for this proprietor */ ret_turnstile = ts; break; } } if (needs_lock && !kdp_ctx) { turnstile_bucket_unlock(ts_bucket); if (irq_safe) { splx(s); } } return ret_turnstile; } /* * Name: turnstiles_init * * Description: Initialize turnstile sub system. * * Args: None. * * Returns: None. */ void turnstiles_init(void) { ctsid_nonce = (uint32_t)early_random() & CTSID_MASK; turnstiles_hashtable_init(); #if DEVELOPMENT || DEBUG /* Initialize turnstile test primitive */ tstile_test_prim_init(&test_prim_ts_inline); tstile_test_prim_init(&test_prim_global_htable); tstile_test_prim_init(&test_prim_global_ts_kernel); tstile_test_prim_init(&test_prim_global_ts_kernel_hash); #endif } /* * Name: turnstile_alloc * * Description: Allocate a turnstile. * * Args: None. * * Returns: * turnstile on Success. */ struct turnstile * turnstile_alloc(void) { struct turnstile *turnstile = TURNSTILE_NULL; turnstile = zalloc_id(ZONE_ID_TURNSTILE, Z_WAITOK | Z_ZERO | Z_NOFAIL); /* Initialize the waitq */ waitq_init(&turnstile->ts_waitq, WQT_TURNSTILE, SYNC_POLICY_REVERSED | SYNC_POLICY_INIT_LOCKED); SLIST_INIT(&turnstile->ts_free_turnstiles); turnstile_set_type_and_increment_gencount(turnstile, TURNSTILE_NONE); turnstile_state_init(turnstile, TURNSTILE_STATE_THREAD); os_ref_init_raw(&turnstile->ts_refcount, &turnstile_refgrp); priority_queue_init(&turnstile->ts_inheritor_queue); #if DEVELOPMENT || DEBUG turnstile->ts_thread = current_thread(); #endif waitq_unlock(&turnstile->ts_waitq); return turnstile; } /* * Name: turnstile_reference * * Description: Take a reference on the turnstile. * * Arg1: turnstile * * Returns: None. */ void turnstile_reference(struct turnstile *turnstile) { if (turnstile == TURNSTILE_NULL) { return; } zone_id_require(ZONE_ID_TURNSTILE, sizeof(struct turnstile), turnstile); os_ref_retain_raw(&turnstile->ts_refcount, &turnstile_refgrp); } /* * Name: turnstile_deallocate * * Description: Drop a reference on the turnstile. * Destroy the turnstile if the last ref. * * Arg1: turnstile * * Returns: None. */ void turnstile_deallocate(struct turnstile *turnstile) { if (turnstile == TURNSTILE_NULL) { return; } if (__improbable(os_ref_release_raw(&turnstile->ts_refcount, &turnstile_refgrp) == 0)) { assert(SLIST_EMPTY(&turnstile->ts_free_turnstiles)); turnstile_destroy(turnstile); } } /* * Name: turnstile_destroy * * Description: Deallocates the turnstile. * * Args: * Arg1: turnstile * * Returns: None. */ static void turnstile_destroy(struct turnstile *turnstile) { assert3u(turnstile->ts_compact_id, ==, 0); assert3u(turnstile->ts_prim_count, ==, 0); assert3p(turnstile->ts_inheritor, ==, TURNSTILE_INHERITOR_NULL); assert3u(turnstile->ts_state, ==, TURNSTILE_STATE_THREAD); waitq_deinit(&turnstile->ts_waitq); zfree_id(ZONE_ID_TURNSTILE, turnstile); } static uint32_t ctsid_mangle(compact_id_t cid) { return (cid == ctsid_nonce ? CTSID_MASK : cid) ^ ctsid_nonce; } static compact_id_t ctsid_unmangle(uint32_t ctsid) { ctsid ^= ctsid_nonce; return ctsid == CTSID_MASK ? ctsid_nonce : ctsid; } uint32_t turnstile_compact_id_get(void) { compact_id_t cid; cid = compact_id_get(&ctsid_table, CTSID_MAX, NULL); return ctsid_mangle(cid); } void turnstile_compact_id_put(uint32_t ctsid) { assert3u(ctsid, !=, 0); compact_id_put(&ctsid_table, ctsid_unmangle(ctsid)); } /* * Name: turnstile_get_by_id * * Description: Resolve a turnstile by compact ID * * Args: * Arg1: turnstile compact ID * * Returns: a turnstile */ struct turnstile * turnstile_get_by_id(uint32_t tsid) { struct turnstile *ts = TURNSTILE_NULL; if (tsid) { ts = *compact_id_resolve(&ctsid_table, ctsid_unmangle(tsid)); assert(ts && ts->ts_compact_id == tsid); } return ts; } /* * Name: turnstile_prepare variants * * Description: Transfer current thread's turnstile to primitive or it's free turnstile list. * Function is called holding the interlock (spinlock) of the primitive. */ static struct turnstile * turnstile_prepare_common( uintptr_t proprietor, thread_t thread, struct turnstile *incoming, turnstile_type_t type) { struct turnstile *thread_turnstile = incoming; /* Get the thread's turnstile if no turnstile provided */ if (thread_turnstile == TURNSTILE_NULL) { thread_turnstile = thread->turnstile; assert(thread_turnstile != TURNSTILE_NULL); assert(thread->inheritor == NULL); thread->turnstile = TURNSTILE_NULL; } /* Prepare the thread turnstile to be the primitive turnstile */ SLIST_INIT(&thread_turnstile->ts_free_turnstiles); turnstile_set_type_and_increment_gencount(thread_turnstile, type); thread_turnstile->ts_inheritor = TURNSTILE_INHERITOR_NULL; thread_turnstile->ts_proprietor = proprietor; turnstile_state_remove(thread_turnstile, TURNSTILE_STATE_THREAD); thread_turnstile->ts_priority = 0; #if DEVELOPMENT || DEBUG thread_turnstile->ts_prev_thread = thread_turnstile->ts_thread; thread_turnstile->ts_thread = NULL; #endif return thread_turnstile; } struct turnstile * turnstile_prepare( uintptr_t proprietor, struct turnstile **tstore, struct turnstile *turnstile, turnstile_type_t type) { thread_t thread = current_thread(); struct turnstile *ret_turnstile = TURNSTILE_NULL; struct turnstile *thread_turnstile; thread_turnstile = turnstile_prepare_common(proprietor, thread, turnstile, type); /* * If the primitive stores the turnstile, * If there is already a turnstile, put the thread_turnstile if the primitive currently does not have a * turnstile. * Else, add the thread turnstile to freelist of the primitive turnstile. */ ret_turnstile = *tstore; if (*tstore == TURNSTILE_NULL) { turnstile_state_add(thread_turnstile, TURNSTILE_STATE_PROPRIETOR); *tstore = thread_turnstile; KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE, (TURNSTILE_CODE(TURNSTILE_FREELIST_OPERATIONS, (TURNSTILE_PREPARE))) | DBG_FUNC_NONE, VM_KERNEL_UNSLIDE_OR_PERM(thread_turnstile), VM_KERNEL_UNSLIDE_OR_PERM(proprietor), turnstile_get_type(thread_turnstile), 0, 0); } else { turnstile_freelist_insert(ret_turnstile, thread_turnstile); } ret_turnstile = *tstore; return ret_turnstile; } struct turnstile * turnstile_prepare_compact_id( uintptr_t proprietor, uint32_t compact_id, turnstile_type_t type) { thread_t thread = current_thread(); struct turnstile *ret_turnstile = TURNSTILE_NULL; struct turnstile *thread_turnstile; uint32_t ctsid = thread->ctsid; thread_turnstile = turnstile_prepare_common(proprietor, thread, TURNSTILE_NULL, type); assert3u(ctsid, !=, 0); thread_turnstile->ts_compact_id = ctsid; thread->ctsid = 0; /* * If the primitive stores the turnstile, * If there is already a turnstile, put the thread_turnstile if the primitive currently does not have a * turnstile. * Else, add the thread turnstile to freelist of the primitive turnstile. */ if (compact_id == 0) { turnstile_state_add(thread_turnstile, TURNSTILE_STATE_PROPRIETOR); ret_turnstile = thread_turnstile; *compact_id_resolve(&ctsid_table, ctsid_unmangle(ctsid)) = ret_turnstile; KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE, (TURNSTILE_CODE(TURNSTILE_FREELIST_OPERATIONS, (TURNSTILE_PREPARE))) | DBG_FUNC_NONE, VM_KERNEL_UNSLIDE_OR_PERM(thread_turnstile), VM_KERNEL_UNSLIDE_OR_PERM(proprietor), turnstile_get_type(thread_turnstile), 0, 0); } else { ret_turnstile = turnstile_get_by_id(compact_id); turnstile_freelist_insert(ret_turnstile, thread_turnstile); } return ret_turnstile; } struct turnstile * turnstile_prepare_hash( uintptr_t proprietor, turnstile_type_t type) { thread_t thread = current_thread(); struct turnstile *ret_turnstile = TURNSTILE_NULL; struct turnstile *thread_turnstile; thread_turnstile = turnstile_prepare_common(proprietor, thread, TURNSTILE_NULL, type); /* * Lookup the primitive in the turnstile hash table and see if it already has an entry. */ ret_turnstile = turnstile_htable_lookup_add(proprietor, thread_turnstile, type); if (ret_turnstile == NULL) { ret_turnstile = thread_turnstile; KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE, (TURNSTILE_CODE(TURNSTILE_FREELIST_OPERATIONS, (TURNSTILE_PREPARE))) | DBG_FUNC_NONE, VM_KERNEL_UNSLIDE_OR_PERM(thread_turnstile), VM_KERNEL_UNSLIDE_OR_PERM(proprietor), turnstile_get_type(thread_turnstile), 0, 0); } return ret_turnstile; } /* * Name: turnstile_complete variants * * Description: Transfer the primitive's turnstile or from it's freelist to current thread. * Current thread will have a turnstile attached to it after this call. */ static void turnstile_complete_common( uintptr_t proprietor __kdebug_only, thread_t thread, struct turnstile *thread_turnstile, struct turnstile *primitive_turnstile, struct turnstile **out_turnstile) { if (primitive_turnstile == NULL) { /* * Primitive no longer has a turnstile associated with it, thread_turnstile * was the last turnstile attached to primitive, clear out the inheritor and * set the old inheritor for turnstile cleanup. */ if (thread_turnstile->ts_inheritor != TURNSTILE_INHERITOR_NULL) { turnstile_update_inheritor(thread_turnstile, TURNSTILE_INHERITOR_NULL, (TURNSTILE_IMMEDIATE_UPDATE | TURNSTILE_INHERITOR_THREAD)); /* * old inheritor is set in curret thread and its priority propagation * will happen in turnstile cleanup call */ } thread_turnstile->ts_proprietor = TURNSTILE_PROPRIETOR_NULL; assert(thread_turnstile->ts_inheritor == TURNSTILE_INHERITOR_NULL); KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE, (TURNSTILE_CODE(TURNSTILE_FREELIST_OPERATIONS, (TURNSTILE_COMPLETE))) | DBG_FUNC_NONE, VM_KERNEL_UNSLIDE_OR_PERM(thread_turnstile), VM_KERNEL_UNSLIDE_OR_PERM(proprietor), turnstile_get_type(thread_turnstile), 0, 0); } else { /* If primitive's turnstile needs priority update, set it up for turnstile cleanup */ if (turnstile_recompute_priority(primitive_turnstile)) { turnstile_reference(primitive_turnstile); thread->inheritor = primitive_turnstile; thread->inheritor_flags = (TURNSTILE_INHERITOR_TURNSTILE | TURNSTILE_INHERITOR_NEEDS_PRI_UPDATE); } } turnstile_set_type_and_increment_gencount(thread_turnstile, TURNSTILE_NONE); #if DEVELOPMENT || DEBUG thread_turnstile->ts_prev_thread = NULL; thread_turnstile->ts_thread = thread; #endif turnstile_state_add(thread_turnstile, TURNSTILE_STATE_THREAD); if (out_turnstile == NULL) { /* Prepare the turnstile to become the thread's turnstile */ thread->turnstile = thread_turnstile; } else { *out_turnstile = thread_turnstile; } } void turnstile_complete( uintptr_t proprietor, struct turnstile **tstore, struct turnstile **out_turnstile, turnstile_type_t type __unused) { thread_t thread = current_thread(); struct turnstile *primitive_turnstile = TURNSTILE_NULL; struct turnstile *thread_turnstile = TURNSTILE_NULL; assert(thread->inheritor == NULL); /* * If the primitive stores the turnstile, check if the primitive turnstile * has any turnstiles on its freelist. */ assert(*tstore != TURNSTILE_NULL); if (turnstile_freelist_empty(*tstore)) { /* Last turnstile scenario; remove the primitive->turnstile */ thread_turnstile = *tstore; *tstore = TURNSTILE_NULL; turnstile_state_remove(thread_turnstile, TURNSTILE_STATE_PROPRIETOR); } else { /* Freelist has turnstiles; remove one from the freelist */ thread_turnstile = turnstile_freelist_remove(*tstore); } primitive_turnstile = *tstore; turnstile_complete_common(proprietor, thread, thread_turnstile, primitive_turnstile, out_turnstile); } bool turnstile_complete_compact_id( uintptr_t proprietor, struct turnstile *primitive_turnstile, turnstile_type_t type __unused) { thread_t thread = current_thread(); struct turnstile *thread_turnstile = TURNSTILE_NULL; bool was_last = turnstile_freelist_empty(primitive_turnstile); uint32_t ctsid; assert(thread->inheritor == NULL); assert(primitive_turnstile != TURNSTILE_NULL); if (was_last) { /* Last turnstile scenario; remove the primitive->turnstile */ thread_turnstile = primitive_turnstile; turnstile_state_remove(thread_turnstile, TURNSTILE_STATE_PROPRIETOR); primitive_turnstile = TURNSTILE_NULL; } else { /* Freelist has turnstiles; remove one from the freelist */ thread_turnstile = turnstile_freelist_remove(primitive_turnstile); } ctsid = thread_turnstile->ts_compact_id; assert3u(ctsid, !=, 0); thread_turnstile->ts_compact_id = 0; thread->ctsid = ctsid; if (was_last) { *compact_id_resolve(&ctsid_table, ctsid_unmangle(ctsid)) = NULL; } turnstile_complete_common(proprietor, thread, thread_turnstile, primitive_turnstile, NULL); return was_last; } void turnstile_complete_hash( uintptr_t proprietor, turnstile_type_t type) { thread_t thread = current_thread(); struct turnstile *primitive_turnstile = TURNSTILE_NULL; struct turnstile *thread_turnstile = TURNSTILE_NULL; assert(thread->inheritor == NULL); /* Use the global hash to find and remove a turnstile */ primitive_turnstile = turnstable_htable_lookup_remove(proprietor, &thread_turnstile, type); turnstile_complete_common(proprietor, thread, thread_turnstile, primitive_turnstile, NULL); } /* * Name: turnstile_kernel_update_inheritor_on_wake_locked * * Description: Set thread as the inheritor of the turnstile and * boost the inheritor. * Args: * Arg1: turnstile * Arg2: new_inheritor * Arg3: flags * * Called with turnstile locked */ void turnstile_kernel_update_inheritor_on_wake_locked( struct turnstile *turnstile, turnstile_inheritor_t new_inheritor, turnstile_update_flags_t flags __assert_only) { /* for now only kernel primitives are allowed to call this function */ __assert_only turnstile_promote_policy_t policy = turnstile_promote_policy[turnstile_get_type(turnstile)]; assert(flags & TURNSTILE_INHERITOR_THREAD); assert(policy == TURNSTILE_KERNEL_PROMOTE || policy == TURNSTILE_USER_PROMOTE); turnstile_stash_inheritor((thread_t)new_inheritor, TURNSTILE_INHERITOR_THREAD); /* * new_inheritor has just been removed from the turnstile waitq, * the turnstile new priority needs to be recomputed so that * when new_inheritor will become this turnstile inheritor can * inherit the correct priority. */ turnstile_recompute_priority_locked(turnstile); turnstile_update_inheritor_locked(turnstile); } /* * Name: turnstile_update_inheritor_locked * * Description: Update the inheritor of the turnstile and boost the * inheritor, called with turnstile locked. * * Args: * Arg1: turnstile * Implicit arg: new inheritor value is stashed in current thread's struct * * Returns: * old inheritor reference is returned on current thread's struct. */ void turnstile_update_inheritor_locked( struct turnstile *turnstile) { turnstile_inheritor_t old_inheritor = turnstile->ts_inheritor; turnstile_update_flags_t old_inheritor_flags = turnstile->ts_inheritor_flags; thread_t thread = current_thread(); boolean_t old_inheritor_needs_update = FALSE; boolean_t new_inheritor_needs_update = FALSE; turnstile_stats_update_flags_t tsu_flags = turnstile_get_update_flags_for_above_UI_pri_change(turnstile); assert(waitq_held(&turnstile->ts_waitq)); /* * Get the new inheritor value from current thread's * struct, the value was stashed by turnstile_update_inheritor */ turnstile_inheritor_t new_inheritor = thread->inheritor; turnstile_update_flags_t new_inheritor_flags = thread->inheritor_flags; switch (turnstile_promote_policy[turnstile_get_type(turnstile)]) { case TURNSTILE_USER_PROMOTE: case TURNSTILE_USER_IPC_PROMOTE: break; case TURNSTILE_KERNEL_PROMOTE: /* some sanity checks, turnstile kernel can push just between threads */ if (old_inheritor) { assert(old_inheritor_flags & TURNSTILE_INHERITOR_THREAD); } if (new_inheritor) { assert(new_inheritor_flags & TURNSTILE_INHERITOR_THREAD); } break; default: panic("turnstile promotion for type %d not yet implemented", turnstile_get_type(turnstile)); } /* Check if update is needed */ if (old_inheritor == new_inheritor && old_inheritor == NULL) { goto done; } if (old_inheritor == new_inheritor) { if (new_inheritor_flags & TURNSTILE_INHERITOR_THREAD) { thread_t thread_inheritor = (thread_t)new_inheritor; assert(old_inheritor_flags & TURNSTILE_INHERITOR_THREAD); /* adjust turnstile position in the thread's inheritor list */ new_inheritor_needs_update = thread_update_turnstile_promotion( thread_inheritor, turnstile); } else if (new_inheritor_flags & TURNSTILE_INHERITOR_TURNSTILE) { struct turnstile *inheritor_turnstile = new_inheritor; assert(old_inheritor_flags & TURNSTILE_INHERITOR_TURNSTILE); new_inheritor_needs_update = turnstile_update_turnstile_promotion( inheritor_turnstile, turnstile); } else if (new_inheritor_flags & TURNSTILE_INHERITOR_WORKQ) { /* * When we are still picking "WORKQ" then possible racing * updates will call redrive through their own propagation * and we don't need to update anything here. */ turnstile_stats_update(1, TSU_NO_PRI_CHANGE_NEEDED | TSU_TURNSTILE_ARG | TSU_BOOST_ARG, turnstile); } else { panic("Inheritor flags lost along the way"); } /* Update turnstile stats */ if (!new_inheritor_needs_update) { turnstile_stats_update(1, TSU_PRI_PROPAGATION | TSU_TURNSTILE_ARG | TSU_BOOST_ARG | tsu_flags, turnstile); } goto done; } if (old_inheritor != NULL) { if (old_inheritor_flags & TURNSTILE_INHERITOR_THREAD) { thread_t thread_inheritor = (thread_t)old_inheritor; /* remove turnstile from thread's inheritor list */ old_inheritor_needs_update = thread_remove_turnstile_promotion(thread_inheritor, turnstile); } else if (old_inheritor_flags & TURNSTILE_INHERITOR_TURNSTILE) { struct turnstile *old_turnstile = old_inheritor; old_inheritor_needs_update = turnstile_remove_turnstile_promotion( old_turnstile, turnstile); } else if (old_inheritor_flags & TURNSTILE_INHERITOR_WORKQ) { /* * We don't need to do anything when the push was WORKQ * because nothing is pushed on in the first place. */ turnstile_stats_update(1, TSU_NO_PRI_CHANGE_NEEDED | TSU_TURNSTILE_ARG, turnstile); } else { panic("Inheritor flags lost along the way"); } /* Update turnstile stats */ if (!old_inheritor_needs_update) { turnstile_stats_update(1, TSU_PRI_PROPAGATION | TSU_TURNSTILE_ARG, turnstile); } } if (new_inheritor != NULL) { if (new_inheritor_flags & TURNSTILE_INHERITOR_THREAD) { thread_t thread_inheritor = (thread_t)new_inheritor; assert(new_inheritor_flags & TURNSTILE_INHERITOR_THREAD); /* add turnstile to thread's inheritor list */ new_inheritor_needs_update = thread_add_turnstile_promotion( thread_inheritor, turnstile); } else if (new_inheritor_flags & TURNSTILE_INHERITOR_TURNSTILE) { struct turnstile *new_turnstile = new_inheritor; new_inheritor_needs_update = turnstile_add_turnstile_promotion( new_turnstile, turnstile); } else if (new_inheritor_flags & TURNSTILE_INHERITOR_WORKQ) { struct workqueue *wq_inheritor = new_inheritor; new_inheritor_needs_update = workq_add_turnstile_promotion( wq_inheritor, turnstile); if (!new_inheritor_needs_update) { turnstile_stats_update(1, TSU_NO_PRI_CHANGE_NEEDED | TSU_TURNSTILE_ARG | TSU_BOOST_ARG, turnstile); } } else { panic("Inheritor flags lost along the way"); } /* Update turnstile stats */ if (!new_inheritor_needs_update) { turnstile_stats_update(1, TSU_PRI_PROPAGATION | TSU_TURNSTILE_ARG | TSU_BOOST_ARG | tsu_flags, turnstile); } } done: if (old_inheritor_needs_update) { old_inheritor_flags |= TURNSTILE_INHERITOR_NEEDS_PRI_UPDATE; } /* * If new inheritor needs priority updated, then set TURNSTILE_NEEDS_PRI_UPDATE * on the old_inheritor_flags which will be copied to the thread. */ if (new_inheritor_needs_update) { old_inheritor_flags |= TURNSTILE_NEEDS_PRI_UPDATE; } turnstile->ts_inheritor = new_inheritor; turnstile->ts_inheritor_flags = new_inheritor_flags; thread->inheritor = old_inheritor; thread->inheritor_flags = old_inheritor_flags; return; } /* * Name: turnstile_stash_inheritor * * Description: Save the new inheritor reference of the turnstile on the * current thread. It will take a thread reference on the inheritor. * Called with the interlock of the primitive held. * * Args: * Arg1: inheritor * Arg2: flags * * Returns: * old inheritor reference is stashed on current thread's struct. */ static void turnstile_stash_inheritor( turnstile_inheritor_t new_inheritor, turnstile_update_flags_t flags) { thread_t thread = current_thread(); /* * Set the inheritor on calling thread struct, no need * to take the turnstile waitq lock since the inheritor * is protected by the primitive's interlock */ assert(thread->inheritor == TURNSTILE_INHERITOR_NULL); thread->inheritor = new_inheritor; thread->inheritor_flags = TURNSTILE_UPDATE_FLAGS_NONE; if (new_inheritor == TURNSTILE_INHERITOR_NULL) { /* nothing to retain or remember */ } else if (flags & TURNSTILE_INHERITOR_THREAD) { thread->inheritor_flags |= TURNSTILE_INHERITOR_THREAD; thread_reference((thread_t)new_inheritor); } else if (flags & TURNSTILE_INHERITOR_TURNSTILE) { thread->inheritor_flags |= TURNSTILE_INHERITOR_TURNSTILE; turnstile_reference((struct turnstile *)new_inheritor); } else if (flags & TURNSTILE_INHERITOR_WORKQ) { thread->inheritor_flags |= TURNSTILE_INHERITOR_WORKQ; workq_reference((struct workqueue *)new_inheritor); } else { panic("Missing type in flags (%x) for inheritor (%p)", flags, new_inheritor); } } /* * Name: turnstile_update_inheritor * * Description: Update the inheritor of the turnstile and boost the * inheritor. It will take a thread reference on the inheritor. * Called with the interlock of the primitive held. * * Args: * Arg1: turnstile * Arg2: inheritor * Arg3: flags - TURNSTILE_DELAYED_UPDATE - update will happen later in assert_wait * * Returns: * old inheritor reference is stashed on current thread's struct. */ void turnstile_update_inheritor( struct turnstile *turnstile, turnstile_inheritor_t new_inheritor, turnstile_update_flags_t flags) { spl_t spl; turnstile_stash_inheritor(new_inheritor, flags); /* Do not perform the update if delayed update is specified */ if (flags & TURNSTILE_DELAYED_UPDATE) { return; } /* lock the turnstile waitq */ spl = splsched(); waitq_lock(&turnstile->ts_waitq); turnstile_update_inheritor_locked(turnstile); #if SCHED_HYGIENE_DEBUG /* * Disable the timeout here until the latency of priority queue updates * is fixed (rdar://144402635) */ ml_spin_debug_reset(current_thread()); ml_irq_debug_abandon(); #endif waitq_unlock(&turnstile->ts_waitq); splx(spl); return; } /* * Name: turnstile_need_thread_promotion_update * * Description: Check if thread's place in the turnstile waitq needs to be updated. * * Arg1: dst turnstile * Arg2: thread * * Returns: TRUE: if turnstile_update_thread_promotion_locked needs to be called. * FALSE: otherwise. * * Condition: thread locked. */ static boolean_t turnstile_need_thread_promotion_update( struct turnstile *dst_turnstile, thread_t thread) { int thread_link_priority; boolean_t needs_update = FALSE; thread_link_priority = priority_queue_entry_sched_pri( &dst_turnstile->ts_waitq.waitq_prio_queue, &thread->wait_prioq_links); int priority = turnstile_compute_thread_push(dst_turnstile, thread); needs_update = (thread_link_priority == priority) ? FALSE : TRUE; return needs_update; } /* * Name: turnstile_priority_queue_update_entry_key * * Description: Updates the priority of an entry in a priority queue * * Arg1: a turnstile/thread/... priority queue * Arg2: the element to change the priority of * Arg3: the new priority * * Returns: whether the maximum priority of the queue changed. */ static boolean_t turnstile_priority_queue_update_entry_key(struct priority_queue_sched_max *q, priority_queue_entry_sched_t elt, priority_queue_key_t pri) { priority_queue_key_t old_key = priority_queue_max_sched_pri(q); if (priority_queue_entry_sched_pri(q, elt) < pri) { priority_queue_entry_set_sched_pri(q, elt, pri, false); if (priority_queue_entry_increased(q, elt)) { return old_key != priority_queue_max_sched_pri(q); } } else if (priority_queue_entry_sched_pri(q, elt) > pri) { priority_queue_entry_set_sched_pri(q, elt, pri, false); if (priority_queue_entry_decreased(q, elt)) { return old_key != priority_queue_max_sched_pri(q); } } return FALSE; } /* * Name: turnstile_update_thread_promotion_locked * * Description: Update dst turnstile's inheritor link since one of the waiting * thread's priority has changed. * * Arg1: dst turnstile * Arg2: thread * * Returns: TRUE: if the dst turnstile priority has changed and needs propagation. * FALSE: if the dst turnstile priority did not change or it does not need propagation. * * Condition: dst turnstile and thread are locked. */ static boolean_t turnstile_update_thread_promotion_locked( struct turnstile *dst_turnstile, thread_t thread) { int thread_link_priority; int priority = turnstile_compute_thread_push(dst_turnstile, thread); thread_link_priority = priority_queue_entry_sched_pri( &dst_turnstile->ts_waitq.waitq_prio_queue, &thread->wait_prioq_links); if (priority != thread_link_priority) { KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE, (TURNSTILE_CODE(TURNSTILE_HEAP_OPERATIONS, (THREAD_MOVED_IN_TURNSTILE_WAITQ))) | DBG_FUNC_NONE, VM_KERNEL_UNSLIDE_OR_PERM(dst_turnstile), thread_tid(thread), priority, thread_link_priority, 0); } if (!turnstile_priority_queue_update_entry_key( &dst_turnstile->ts_waitq.waitq_prio_queue, &thread->wait_prioq_links, (priority_queue_key_t)priority)) { return FALSE; } /* Update dst turnstile's priority */ return turnstile_recompute_priority_locked(dst_turnstile); } /* * Name: thread_add_turnstile_promotion * * Description: Add a turnstile to thread's inheritor list and update thread's priority. * * Arg1: thread * Arg2: turnstile * * Returns: TRUE: if the thread's priority has changed and needs propagation. * FALSE: if the thread's priority did not change or it does not need propagation. * * Condition: turnstile locked. */ static boolean_t thread_add_turnstile_promotion( thread_t thread, struct turnstile *turnstile) { boolean_t needs_update = FALSE; /* Update the pairing heap */ thread_lock(thread); KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE, (TURNSTILE_CODE(TURNSTILE_HEAP_OPERATIONS, (TURNSTILE_ADDED_TO_THREAD_HEAP))) | DBG_FUNC_NONE, thread_tid(thread), VM_KERNEL_UNSLIDE_OR_PERM(turnstile), turnstile->ts_priority, 0, 0); priority_queue_entry_init(&turnstile->ts_inheritor_links); switch (turnstile_promote_policy[turnstile_get_type(turnstile)]) { case TURNSTILE_USER_PROMOTE: case TURNSTILE_USER_IPC_PROMOTE: priority_queue_entry_set_sched_pri(&thread->base_inheritor_queue, &turnstile->ts_inheritor_links, turnstile->ts_priority, false); if (priority_queue_insert(&thread->base_inheritor_queue, &turnstile->ts_inheritor_links)) { needs_update = thread_recompute_user_promotion_locked(thread); } break; case TURNSTILE_KERNEL_PROMOTE: priority_queue_entry_set_sched_pri(&thread->sched_inheritor_queue, &turnstile->ts_inheritor_links, turnstile->ts_priority, false); if (priority_queue_insert(&thread->sched_inheritor_queue, &turnstile->ts_inheritor_links)) { needs_update = thread_recompute_kernel_promotion_locked(thread); } break; default: panic("turnstile promotion for type %d not yet implemented", turnstile_get_type(turnstile)); } /* Update turnstile stats */ if (!needs_update) { turnstile_stats_update(1, thread_get_update_flags_for_turnstile_propagation_stoppage(thread) | TSU_TURNSTILE_ARG | TSU_BOOST_ARG, turnstile); } thread_unlock(thread); return needs_update; } /* * Name: thread_remove_turnstile_promotion * * Description: Remove turnstile from thread's inheritor list and update thread's priority. * * Arg1: thread * Arg2: turnstile * * Returns: TRUE: if the thread's priority has changed and needs propagation. * FALSE: if the thread's priority did not change or it does not need propagation. * * Condition: turnstile locked. */ static boolean_t thread_remove_turnstile_promotion( thread_t thread, struct turnstile *turnstile) { boolean_t needs_update = FALSE; thread_lock(thread); KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE, (TURNSTILE_CODE(TURNSTILE_HEAP_OPERATIONS, (TURNSTILE_REMOVED_FROM_THREAD_HEAP))) | DBG_FUNC_NONE, thread_tid(thread), VM_KERNEL_UNSLIDE_OR_PERM(turnstile), 0, 0, 0); /* Update the pairing heap */ switch (turnstile_promote_policy[turnstile_get_type(turnstile)]) { case TURNSTILE_USER_PROMOTE: case TURNSTILE_USER_IPC_PROMOTE: if (priority_queue_remove(&thread->base_inheritor_queue, &turnstile->ts_inheritor_links)) { needs_update = thread_recompute_user_promotion_locked(thread); } break; case TURNSTILE_KERNEL_PROMOTE: if (priority_queue_remove(&thread->sched_inheritor_queue, &turnstile->ts_inheritor_links)) { needs_update = thread_recompute_kernel_promotion_locked(thread); } break; default: panic("turnstile promotion for type %d not yet implemented", turnstile_get_type(turnstile)); } /* Update turnstile stats */ if (!needs_update) { turnstile_stats_update(1, thread_get_update_flags_for_turnstile_propagation_stoppage(thread) | TSU_TURNSTILE_ARG, turnstile); } thread_unlock(thread); return needs_update; } /* * Name: thread_needs_turnstile_promotion_update * * Description: Check if turnstile position in thread's inheritor list needs to be updated. * * Arg1: thread * Arg2: turnstile * * Returns: TRUE: if thread_update_turnstile_promotion needs to be called. * FALSE: otherwise. * * Condition: turnstile locked. */ static boolean_t thread_needs_turnstile_promotion_update( thread_t thread __assert_only, struct turnstile *turnstile) { boolean_t needs_update = FALSE; int turnstile_link_priority = 0; switch (turnstile_promote_policy[turnstile_get_type(turnstile)]) { case TURNSTILE_USER_PROMOTE: case TURNSTILE_USER_IPC_PROMOTE: turnstile_link_priority = priority_queue_entry_sched_pri( &thread->base_inheritor_queue, &turnstile->ts_inheritor_links); break; case TURNSTILE_KERNEL_PROMOTE: turnstile_link_priority = priority_queue_entry_sched_pri( &thread->sched_inheritor_queue, &turnstile->ts_inheritor_links); break; default: panic("turnstile promotion for type %d not yet implemented", turnstile_get_type(turnstile)); } needs_update = (turnstile_link_priority == turnstile->ts_priority) ? FALSE : TRUE; return needs_update; } /* * Name: thread_update_turnstile_promotion_locked * * Description: Update turnstile position in thread's inheritor list and update thread's priority. * * Arg1: thread * Arg2: turnstile * * Returns: TRUE: if the thread's priority has changed and needs propagation. * FALSE: if the thread's priority did not change or it does not need propagation. * * Condition: turnstile and thread are locked. */ static boolean_t thread_update_turnstile_promotion_locked( thread_t thread, struct turnstile *turnstile) { boolean_t needs_update = FALSE; int turnstile_link_priority = 0; switch (turnstile_promote_policy[turnstile_get_type(turnstile)]) { case TURNSTILE_USER_PROMOTE: case TURNSTILE_USER_IPC_PROMOTE: turnstile_link_priority = priority_queue_entry_sched_pri( &thread->base_inheritor_queue, &turnstile->ts_inheritor_links); if (turnstile_priority_queue_update_entry_key(&(thread->base_inheritor_queue), &turnstile->ts_inheritor_links, turnstile->ts_priority)) { needs_update = thread_recompute_user_promotion_locked(thread); } break; case TURNSTILE_KERNEL_PROMOTE: turnstile_link_priority = priority_queue_entry_sched_pri( &thread->sched_inheritor_queue, &turnstile->ts_inheritor_links); if (turnstile_priority_queue_update_entry_key(&(thread->sched_inheritor_queue), &turnstile->ts_inheritor_links, turnstile->ts_priority)) { needs_update = thread_recompute_kernel_promotion_locked(thread); } break; default: panic("turnstile promotion for type %d not yet implemented", turnstile_get_type(turnstile)); } if (turnstile->ts_priority != turnstile_link_priority) { KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE, (TURNSTILE_CODE(TURNSTILE_HEAP_OPERATIONS, (TURNSTILE_MOVED_IN_THREAD_HEAP))) | DBG_FUNC_NONE, thread_tid(thread), VM_KERNEL_UNSLIDE_OR_PERM(turnstile), turnstile->ts_priority, turnstile_link_priority, 0); } return needs_update; } /* * Name: thread_update_turnstile_promotion * * Description: Update turnstile position in thread's inheritor list and update thread's priority. * * Arg1: thread * Arg2: turnstile * * Returns: TRUE: if the thread's priority has changed and needs propagation. * FALSE: if the thread's priority did not change or it does not need propagation. * * Condition: turnstile locked. */ static boolean_t thread_update_turnstile_promotion( thread_t thread, struct turnstile *turnstile) { /* Before grabbing the thread lock, check if update is needed */ boolean_t needs_update = thread_needs_turnstile_promotion_update(thread, turnstile); if (!needs_update) { turnstile_stats_update(1, TSU_NO_PRI_CHANGE_NEEDED | TSU_TURNSTILE_ARG | TSU_BOOST_ARG, turnstile); return needs_update; } thread_lock(thread); /* Update the pairing heap */ needs_update = thread_update_turnstile_promotion_locked(thread, turnstile); /* Update turnstile stats */ if (!needs_update) { turnstile_stats_update(1, thread_get_update_flags_for_turnstile_propagation_stoppage(thread) | TSU_TURNSTILE_ARG | TSU_BOOST_ARG, turnstile); } thread_unlock(thread); return needs_update; } /* * Name: thread_get_inheritor_turnstile_sched_priority * * Description: Get the max sched priority of all the inheritor turnstiles * * Arg1: thread * * Returns: Max sched priority of all the inheritor turnstiles. * * Condition: thread locked */ int thread_get_inheritor_turnstile_sched_priority(thread_t thread) { struct turnstile *max_turnstile; max_turnstile = priority_queue_max(&thread->sched_inheritor_queue, struct turnstile, ts_inheritor_links); if (max_turnstile) { return priority_queue_entry_sched_pri( &thread->sched_inheritor_queue, &max_turnstile->ts_inheritor_links); } return 0; } /* * Name: thread_get_inheritor_turnstile_base_priority * * Description: Get the max base priority of all the inheritor turnstiles * * Arg1: thread * * Returns: Max base priority of all the inheritor turnstiles. * * Condition: thread locked */ int thread_get_inheritor_turnstile_base_priority(thread_t thread) { struct turnstile *max_turnstile; max_turnstile = priority_queue_max(&thread->base_inheritor_queue, struct turnstile, ts_inheritor_links); if (max_turnstile) { return priority_queue_entry_sched_pri( &thread->base_inheritor_queue, &max_turnstile->ts_inheritor_links); } return 0; } /* * Name: thread_get_waiting_turnstile * * Description: Get the turnstile if the thread is waiting on a turnstile. * * Arg1: thread * * Returns: turnstile: if the thread is blocked on a turnstile. * TURNSTILE_NULL: otherwise. * * Condition: thread locked. */ struct turnstile * thread_get_waiting_turnstile(thread_t thread) { waitq_t waitq = thread->waitq; /* Check if the thread is on a waitq */ if (waitq_is_null(waitq)) { return TURNSTILE_NULL; } switch (waitq_type(waitq)) { case WQT_PORT: return waitq.wq_q->waitq_ts; case WQT_TURNSTILE: return waitq_to_turnstile(waitq.wq_q); default: return TURNSTILE_NULL; } } /* * Name: turnstile_lookup_by_proprietor * * Description: Get turnstile for a proprietor from global * turnstile hash. * * Arg1: port * Arg2: turnstile_type_t type * * Returns: turnstile: if the proprietor has a turnstile. * TURNSTILE_NULL: otherwise. * * Condition: proprietor interlock held. */ struct turnstile * turnstile_lookup_by_proprietor(uintptr_t proprietor, turnstile_type_t type) { return turnstile_htable_lookup(proprietor, type); } /* * Name: thread_get_update_flags_for_turnstile_propagation_stoppage * * Description: Get the turnstile stats flags based on the thread wait status. * * Arg1: thread * * Returns: TSU_THREAD_RUNNABLE: if the thread is runnable. * TSU_NO_TURNSTILE: if thread waiting on a regular waitq. * TSU_NO_PRI_CHANGE_NEEDED: otherwise. * * Condition: thread locked. */ static turnstile_stats_update_flags_t thread_get_update_flags_for_turnstile_propagation_stoppage(thread_t thread) { waitq_t waitq = thread->waitq; /* Check if the thread is on a waitq */ if (waitq_is_null(waitq)) { return TSU_THREAD_RUNNABLE; } /* Get the safeq if the waitq is a port queue */ switch (waitq_type(waitq)) { case WQT_PORT: if (waitq.wq_q->waitq_ts) { return TSU_NO_PRI_CHANGE_NEEDED; } return TSU_NO_TURNSTILE; case WQT_TURNSTILE: /* Thread blocked on turnstile waitq but no propagation needed */ return TSU_NO_PRI_CHANGE_NEEDED; default: return TSU_NO_TURNSTILE; } } /* * Name: turnstile_get_update_flags_for_above_UI_pri_change * * Description: Get the turnstile stats flags based on the turnstile priority. * * Arg1: turnstile * * Returns: TSU_ABOVE_UI_PRI_CHANGE: if turnstile priority is above 47 and it is not an ulock. * TSU_FLAGS_NONE: otherwise. * * Condition: turnstile locked. */ static turnstile_stats_update_flags_t turnstile_get_update_flags_for_above_UI_pri_change(struct turnstile *turnstile) { if (turnstile->ts_priority > (thread_qos_policy_params.qos_pri[THREAD_QOS_USER_INTERACTIVE] + 1) && turnstile_get_type(turnstile) != TURNSTILE_ULOCK) { return TSU_ABOVE_UI_PRI_CHANGE; } return TSU_FLAGS_NONE; } /* * Name: workq_add_turnstile_promotion * * Description: Connect the workqueue turnstile to the workqueue as a fake * inheritor * * Arg1: workqueue * Arg2: turnstile * * Condition: turnstile locked. */ static boolean_t workq_add_turnstile_promotion( struct workqueue *wq_inheritor __unused, struct turnstile *turnstile) { /* * If the push is higher than MAXPRI_THROTTLE then the workqueue should * bring up a thread. */ return turnstile->ts_priority > MAXPRI_THROTTLE; } /* * Name: turnstile_need_turnstile_promotion_update * * Description: Check if turnstile position in turnstile's inheritor list needs to be updated. * * Arg1: dst turnstile * Arg2: src turnstile * * Returns: TRUE: if turnstile_update_turnstile_promotion needs to be called. * FALSE: otherwise. * * Condition: src turnstile locked. */ static boolean_t turnstile_need_turnstile_promotion_update( struct turnstile *dst_turnstile __assert_only, struct turnstile *src_turnstile) { int src_turnstile_link_priority; boolean_t needs_update = FALSE; src_turnstile_link_priority = priority_queue_entry_sched_pri( &dst_turnstile->ts_inheritor_queue, &src_turnstile->ts_inheritor_links); needs_update = (src_turnstile_link_priority == src_turnstile->ts_priority) ? FALSE : TRUE; return needs_update; } /* * Name: turnstile_update_turnstile_promotion_locked * * Description: Update dst turnstile's inheritor link since src turnstile's * promote priority has changed. * * Arg1: dst turnstile * Arg2: src turnstile * * Returns: TRUE: if the dst turnstile priority has changed and needs propagation. * FALSE: if the dst turnstile priority did not change or it does not need propagation. * * Condition: src and dst turnstile locked. */ static boolean_t turnstile_update_turnstile_promotion_locked( struct turnstile *dst_turnstile, struct turnstile *src_turnstile) { int src_turnstile_link_priority; src_turnstile_link_priority = priority_queue_entry_sched_pri( &dst_turnstile->ts_inheritor_queue, &src_turnstile->ts_inheritor_links); if (src_turnstile->ts_priority != src_turnstile_link_priority) { KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE, (TURNSTILE_CODE(TURNSTILE_HEAP_OPERATIONS, (TURNSTILE_MOVED_IN_TURNSTILE_HEAP))) | DBG_FUNC_NONE, VM_KERNEL_UNSLIDE_OR_PERM(dst_turnstile), VM_KERNEL_UNSLIDE_OR_PERM(src_turnstile), src_turnstile->ts_priority, src_turnstile_link_priority, 0); } if (!turnstile_priority_queue_update_entry_key( &dst_turnstile->ts_inheritor_queue, &src_turnstile->ts_inheritor_links, src_turnstile->ts_priority)) { return FALSE; } /* Update dst turnstile's priority */ return turnstile_recompute_priority_locked(dst_turnstile); } /* * Name: turnstile_update_turnstile_promotion * * Description: Update dst turnstile's inheritor link since src turnstile's * promote priority has changed. * * Arg1: dst turnstile * Arg2: src turnstile * * Returns: TRUE: if the dst turnstile priority has changed and needs propagation. * FALSE: if the dst turnstile priority did not change or it does not need propagation. * * Condition: src turnstile locked. */ static boolean_t turnstile_update_turnstile_promotion( struct turnstile *dst_turnstile, struct turnstile *src_turnstile) { /* Check if update is needed before grabbing the src turnstile lock */ boolean_t needs_update = turnstile_need_turnstile_promotion_update(dst_turnstile, src_turnstile); if (!needs_update) { turnstile_stats_update(1, TSU_NO_PRI_CHANGE_NEEDED | TSU_TURNSTILE_ARG | TSU_BOOST_ARG, src_turnstile); return needs_update; } /* Update the pairing heap */ waitq_lock(&dst_turnstile->ts_waitq); needs_update = turnstile_update_turnstile_promotion_locked(dst_turnstile, src_turnstile); /* Update turnstile stats */ if (!needs_update) { turnstile_stats_update(1, (dst_turnstile->ts_inheritor ? TSU_NO_PRI_CHANGE_NEEDED : TSU_NO_INHERITOR) | TSU_TURNSTILE_ARG | TSU_BOOST_ARG, src_turnstile); } waitq_unlock(&dst_turnstile->ts_waitq); return needs_update; } /* * Name: turnstile_add_turnstile_promotion * * Description: Add src turnstile to dst turnstile's inheritor link * and update dst turnstile's priority. * * Arg1: dst turnstile * Arg2: src turnstile * * Returns: TRUE: if the dst turnstile priority has changed and needs propagation. * FALSE: if the dst turnstile priority did not change or it does not need propagation. * * Condition: src turnstile locked. */ static boolean_t turnstile_add_turnstile_promotion( struct turnstile *dst_turnstile, struct turnstile *src_turnstile) { boolean_t needs_update = FALSE; /* Update the pairing heap */ waitq_lock(&dst_turnstile->ts_waitq); KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE, (TURNSTILE_CODE(TURNSTILE_HEAP_OPERATIONS, (TURNSTILE_ADDED_TO_TURNSTILE_HEAP))) | DBG_FUNC_NONE, VM_KERNEL_UNSLIDE_OR_PERM(dst_turnstile), VM_KERNEL_UNSLIDE_OR_PERM(src_turnstile), src_turnstile->ts_priority, 0, 0); priority_queue_entry_init(&src_turnstile->ts_inheritor_links); priority_queue_entry_set_sched_pri(&dst_turnstile->ts_inheritor_queue, &src_turnstile->ts_inheritor_links, src_turnstile->ts_priority, false); if (priority_queue_insert(&dst_turnstile->ts_inheritor_queue, &src_turnstile->ts_inheritor_links)) { /* Update dst turnstile priority */ needs_update = turnstile_recompute_priority_locked(dst_turnstile); } /* Update turnstile stats */ if (!needs_update) { turnstile_stats_update(1, (dst_turnstile->ts_inheritor ? TSU_NO_PRI_CHANGE_NEEDED : TSU_NO_INHERITOR) | TSU_TURNSTILE_ARG | TSU_BOOST_ARG, src_turnstile); } waitq_unlock(&dst_turnstile->ts_waitq); return needs_update; } /* * Name: turnstile_remove_turnstile_promotion * * Description: Remove src turnstile from dst turnstile's inheritor link * and update dst turnstile's priority. * * Arg1: dst turnstile * Arg2: src turnstile * * Returns: TRUE: if the dst turnstile priority has changed and needs propagation. * FALSE: if the dst turnstile priority did not change or it does not need propagation. * * Condition: src turnstile locked. */ static boolean_t turnstile_remove_turnstile_promotion( struct turnstile *dst_turnstile, struct turnstile *src_turnstile) { boolean_t needs_update = FALSE; /* Update the pairing heap */ waitq_lock(&dst_turnstile->ts_waitq); KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE, (TURNSTILE_CODE(TURNSTILE_HEAP_OPERATIONS, (TURNSTILE_REMOVED_FROM_TURNSTILE_HEAP))) | DBG_FUNC_NONE, VM_KERNEL_UNSLIDE_OR_PERM(dst_turnstile), VM_KERNEL_UNSLIDE_OR_PERM(src_turnstile), 0, 0, 0); if (priority_queue_remove(&dst_turnstile->ts_inheritor_queue, &src_turnstile->ts_inheritor_links)) { /* Update dst turnstile priority */ needs_update = turnstile_recompute_priority_locked(dst_turnstile); } /* Update turnstile stats */ if (!needs_update) { turnstile_stats_update(1, (dst_turnstile->ts_inheritor ? TSU_NO_PRI_CHANGE_NEEDED : TSU_NO_INHERITOR) | TSU_TURNSTILE_ARG, src_turnstile); } waitq_unlock(&dst_turnstile->ts_waitq); return needs_update; } /* * Name: turnstile_compute_thread_push * * Description: Compute the priority at which the thread will push * on the turnstile. * * Arg1: turnstile * Arg2: thread * * Condition: wq locked */ static int turnstile_compute_thread_push( struct turnstile *turnstile, thread_t thread) { int priority = 0; switch (turnstile_promote_policy[turnstile_get_type(turnstile)]) { case TURNSTILE_USER_PROMOTE: case TURNSTILE_USER_IPC_PROMOTE: priority = thread->base_pri; break; case TURNSTILE_KERNEL_PROMOTE: /* * Ideally this should be policy based * according to the turnstile type. * * The priority with which each thread pushes on * a primitive should be primitive dependent. */ priority = thread->sched_pri; priority = MAX(priority, thread->base_pri); priority = MAX(priority, BASEPRI_DEFAULT); priority = MIN(priority, MAXPRI_PROMOTE); break; default: panic("turnstile promotion for type %d not yet implemented", turnstile_get_type(turnstile)); } return priority; } /* * Name: turnstile_waitq_add_thread_priority_queue * * Description: add thread to the turnstile wq * * Arg1: turnstile wq * Arg2: thread to add * * Condition: wq locked */ void turnstile_waitq_add_thread_priority_queue( struct waitq *wq, thread_t thread) { struct turnstile *turnstile = waitq_to_turnstile(wq); int priority = turnstile_compute_thread_push(turnstile, thread); KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE, (TURNSTILE_CODE(TURNSTILE_HEAP_OPERATIONS, (THREAD_ADDED_TO_TURNSTILE_WAITQ))) | DBG_FUNC_NONE, VM_KERNEL_UNSLIDE_OR_PERM(turnstile), thread_tid(thread), priority, 0, 0); /* * For turnstile queues (which use priority queues), * insert the thread in the heap based on its priority. * Note that the priority queue implementation * is currently not stable, so does not maintain fifo for * threads at the same pri. Also, if the pri * of the thread changes while its blocked in the waitq, * the thread position should be updated in the priority * queue by calling priority queue increase/decrease * operations. */ priority_queue_entry_init(&thread->wait_prioq_links); priority_queue_entry_set_sched_pri(&wq->waitq_prio_queue, &thread->wait_prioq_links, priority, false); priority_queue_insert(&wq->waitq_prio_queue, &thread->wait_prioq_links); } /* * Name: turnstile_recompute_priority_locked * * Description: Update turnstile priority based * on highest waiter thread and highest blocking * turnstile. * * Args: turnstile * * Returns: TRUE: if the turnstile priority changed and needs propagation. * FALSE: if the turnstile priority did not change or it does not need propagation. * * Condition: turnstile locked */ boolean_t turnstile_recompute_priority_locked( struct turnstile *turnstile) { int old_priority; int new_priority; boolean_t needs_priority_update = FALSE; thread_t max_thread = THREAD_NULL; struct turnstile *max_turnstile; int thread_max_pri = 0; int turnstile_max_pri = 0; switch (turnstile_promote_policy[turnstile_get_type(turnstile)]) { case TURNSTILE_USER_PROMOTE: case TURNSTILE_USER_IPC_PROMOTE: case TURNSTILE_KERNEL_PROMOTE: old_priority = turnstile->ts_priority; max_thread = priority_queue_max(&turnstile->ts_waitq.waitq_prio_queue, struct thread, wait_prioq_links); if (max_thread) { thread_max_pri = priority_queue_entry_sched_pri( &turnstile->ts_waitq.waitq_prio_queue, &max_thread->wait_prioq_links); } max_turnstile = priority_queue_max(&turnstile->ts_inheritor_queue, struct turnstile, ts_inheritor_links); if (max_turnstile) { assert(turnstile_promote_policy[turnstile_get_type(turnstile)] != TURNSTILE_KERNEL_PROMOTE); turnstile_max_pri = priority_queue_entry_sched_pri( &turnstile->ts_inheritor_queue, &max_turnstile->ts_inheritor_links); } new_priority = max(thread_max_pri, turnstile_max_pri); turnstile->ts_priority = (uint8_t)new_priority; if (old_priority != new_priority) { KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE, (TURNSTILE_CODE(TURNSTILE_PRIORITY_OPERATIONS, (TURNSTILE_PRIORITY_CHANGE))) | DBG_FUNC_NONE, VM_KERNEL_UNSLIDE_OR_PERM(turnstile), new_priority, old_priority, 0, 0); } needs_priority_update = (!(old_priority == new_priority)) && (turnstile->ts_inheritor != NULL); break; case TURNSTILE_PROMOTE_NONE: /* The turnstile was repurposed, do nothing */ break; default: panic("Needs implementation for turnstile_recompute_priority"); break; } return needs_priority_update; } /* * Name: turnstile_recompute_priority * * Description: Update turnstile priority based * on highest waiter thread and highest blocking * turnstile. * * Args: turnstile * * Returns: TRUE: if the turnstile priority changed and needs propagation. * FALSE: if the turnstile priority did not change or it does not need propagation. */ boolean_t turnstile_recompute_priority( struct turnstile *turnstile) { boolean_t needs_priority_update = FALSE; spl_t s = splsched(); waitq_lock(&turnstile->ts_waitq); needs_priority_update = turnstile_recompute_priority_locked(turnstile); waitq_unlock(&turnstile->ts_waitq); splx(s); return needs_priority_update; } /* * Name: turnstile_workq_proprietor_of_max_turnstile * * Description: Returns the highest priority and proprietor of a turnstile * pushing on a workqueue turnstile. * * This will not return waiters that are at priority * MAXPRI_THROTTLE or lower. * * Args: turnstile * * Returns: * Priority of the max entry, or 0 * Pointer to the max entry proprietor */ int turnstile_workq_proprietor_of_max_turnstile( struct turnstile *turnstile, uintptr_t *proprietor_out) { struct turnstile *max_turnstile; int max_priority = 0; uintptr_t proprietor = 0; assert(turnstile_get_type(turnstile) == TURNSTILE_WORKQS); spl_t s = splsched(); waitq_lock(&turnstile->ts_waitq); max_turnstile = priority_queue_max(&turnstile->ts_inheritor_queue, struct turnstile, ts_inheritor_links); if (max_turnstile) { max_priority = priority_queue_entry_sched_pri( &turnstile->ts_inheritor_queue, &max_turnstile->ts_inheritor_links); proprietor = max_turnstile->ts_proprietor; } waitq_unlock(&turnstile->ts_waitq); splx(s); if (max_priority <= MAXPRI_THROTTLE) { max_priority = 0; proprietor = 0; } if (proprietor_out) { *proprietor_out = proprietor; } return max_priority; } /* * Name: turnstile_workloop_pusher_info * * Description: Returns the priority of the turnstile push for a workloop, * and the thread or knote responsible for this push. * * Args: workloop turnstile * * Returns: * Priority of the push or 0 * Thread (with a +1 reference) with that push or THREAD_NULL. * Port (with a +1 reference) with that push, or IP_NULL. * Sync IPC knote with the highest push (or NULL) */ int turnstile_workloop_pusher_info( struct turnstile *turnstile, thread_t *thread_out, ipc_port_t *port_out, struct knote **knote_out) { struct turnstile *max_ts; thread_t max_thread; int max_thread_pri = 0; int max_ts_pri = 0; ipc_port_t port; assert(turnstile_get_type(turnstile) == TURNSTILE_WORKLOOPS); spl_t s = splsched(); waitq_lock(&turnstile->ts_waitq); max_thread = priority_queue_max(&turnstile->ts_waitq.waitq_prio_queue, struct thread, wait_prioq_links); if (max_thread) { max_thread_pri = priority_queue_entry_sched_pri( &turnstile->ts_waitq.waitq_prio_queue, &max_thread->wait_prioq_links); } max_ts = priority_queue_max(&turnstile->ts_inheritor_queue, struct turnstile, ts_inheritor_links); if (max_ts) { max_ts_pri = priority_queue_entry_sched_pri( &turnstile->ts_inheritor_queue, &max_ts->ts_inheritor_links); } /* * Reasons to push on a workloop turnstile are: * * 1. threads in dispatch sync * * 2. sync IPC pushes, which in turn have 4 sub-cases: * * 2.a. special reply port or receive right pushing through a knote * turnstile, * * 2.b. special reply port stashed on a knote, pushing on the workloop * directly, * * 2.c. receive right stashed on a knote, pushing on the workloop * directly, * * 2.d. a receive right monitored by a knote, pushing on the workloop * directly. * * See ipc_port_send_update_inheritor(), ipc_port_recv_update_inheritor(). * * Note: dereferencing the knote in the caller is safe provided this * function i scalled under the proper interlocks (the filt_wllock + req * lock) which serializes with the knote going away. */ if (max_thread_pri > max_ts_pri) { thread_reference(max_thread); *thread_out = max_thread; *port_out = NULL; *knote_out = NULL; } else if (max_ts_pri) { switch (turnstile_get_type(max_ts)) { case TURNSTILE_KNOTE: /* 2.a. */ *thread_out = THREAD_NULL; *port_out = IP_NULL; *knote_out = (struct knote *)max_ts->ts_proprietor; break; case TURNSTILE_SYNC_IPC: /* 2.[bcd] */ port = (ipc_port_t)max_ts->ts_proprietor; ip_reference(port); *thread_out = THREAD_NULL; *port_out = port; *knote_out = NULL; break; default: panic("Unexpected type for turnstile %p", max_ts); } } else { *thread_out = THREAD_NULL; *port_out = IP_NULL; *knote_out = NULL; } waitq_unlock(&turnstile->ts_waitq); splx(s); return max(max_thread_pri, max_ts_pri); } /* * Name: turnstile_has_waiters * * Description: returns if there are waiters on the turnstile * * Arg1: turnstile: turnstile * * Returns: TRUE if there are waiters, FALSE otherwise. */ boolean_t turnstile_has_waiters(struct turnstile *turnstile) { boolean_t ret; spl_t s = splsched(); waitq_lock(&turnstile->ts_waitq); ret = !priority_queue_empty(&turnstile->ts_waitq.waitq_prio_queue); waitq_unlock(&turnstile->ts_waitq); splx(s); return ret; } /* * Name: turnstile_update_inheritor_priority_chain * * Description: Update turnstile inheritor's priority and propagate * the priority if the inheritor is blocked on a turnstile. * * Arg1: inheritor * Arg2: inheritor flags * * Returns: None. */ static void turnstile_update_inheritor_priority_chain( turnstile_inheritor_t inheritor, turnstile_update_flags_t turnstile_flags) { struct turnstile *turnstile = TURNSTILE_NULL; thread_t thread = THREAD_NULL; int total_hop = 0, thread_hop = 0; spl_t s; turnstile_stats_update_flags_t tsu_flags = ((turnstile_flags & TURNSTILE_UPDATE_BOOST) ? TSU_BOOST_ARG : TSU_FLAGS_NONE) | TSU_PRI_PROPAGATION; if (inheritor == NULL) { return; } s = splsched(); if (turnstile_flags & TURNSTILE_INHERITOR_THREAD) { thread = inheritor; thread_lock(thread); thread_recompute_user_promotion_locked(thread); thread_recompute_kernel_promotion_locked(thread); } else if (turnstile_flags & TURNSTILE_INHERITOR_TURNSTILE) { turnstile = inheritor; waitq_lock(&turnstile->ts_waitq); turnstile_recompute_priority_locked(turnstile); tsu_flags |= turnstile_get_update_flags_for_above_UI_pri_change(turnstile); } else { /* * we should never call turnstile_update_inheritor_priority_chain() * for a workqueue, they have no "chain" after them. */ assert((turnstile_flags & TURNSTILE_INHERITOR_WORKQ) == 0); } while (turnstile != TURNSTILE_NULL || thread != THREAD_NULL) { if (turnstile != TURNSTILE_NULL) { if (turnstile->ts_inheritor == NULL) { turnstile_stats_update(total_hop + 1, TSU_NO_INHERITOR | TSU_TURNSTILE_ARG | tsu_flags, turnstile); waitq_unlock(&turnstile->ts_waitq); turnstile = TURNSTILE_NULL; break; } if (turnstile->ts_inheritor_flags & TURNSTILE_INHERITOR_THREAD) { turnstile_update_inheritor_thread_priority_chain(&turnstile, &thread, total_hop, tsu_flags); } else if (turnstile->ts_inheritor_flags & TURNSTILE_INHERITOR_TURNSTILE) { turnstile_update_inheritor_turnstile_priority_chain(&turnstile, total_hop, tsu_flags); } else if (turnstile->ts_inheritor_flags & TURNSTILE_INHERITOR_WORKQ) { turnstile_update_inheritor_workq_priority_chain(turnstile, s); turnstile_stats_update(total_hop + 1, TSU_NO_PRI_CHANGE_NEEDED | tsu_flags, NULL); return; } else { panic("Inheritor flags not passed in turnstile_update_inheritor"); } } else if (thread != THREAD_NULL) { thread_update_waiting_turnstile_priority_chain(&thread, &turnstile, thread_hop, total_hop, tsu_flags); thread_hop++; } total_hop++; } splx(s); return; } /* * Name: turnstile_update_inheritor_complete * * Description: Update turnstile inheritor's priority and propagate the * priority if the inheritor is blocked on a turnstile. * Consumes thread ref of old inheritor returned by * turnstile_update_inheritor. Recursive priority update * will only happen when called with interlock dropped. * * Args: * Arg1: turnstile * Arg2: interlock held * * Returns: None. */ void turnstile_update_inheritor_complete( struct turnstile *turnstile, turnstile_update_complete_flags_t flags __unused) { thread_t thread = current_thread(); turnstile_update_flags_t inheritor_flags = thread->inheritor_flags; turnstile_cleanup(); /* Perform priority update for new inheritor */ if (inheritor_flags & TURNSTILE_NEEDS_PRI_UPDATE) { turnstile_update_inheritor_priority_chain(turnstile, TURNSTILE_INHERITOR_TURNSTILE | TURNSTILE_UPDATE_BOOST); } } /* * Name: turnstile_cleanup * * Description: Update priority of a turnstile inheritor * if needed. * * Args: inheritor and flags passed on thread struct. * * Returns: None. */ void turnstile_cleanup(void) { thread_t thread = current_thread(); /* Get the old inheritor from calling thread struct */ turnstile_inheritor_t old_inheritor = thread->inheritor; turnstile_update_flags_t inheritor_flags = thread->inheritor_flags; thread->inheritor = THREAD_NULL; thread->inheritor_flags = TURNSTILE_UPDATE_FLAGS_NONE; if (old_inheritor == TURNSTILE_INHERITOR_NULL) { /* no cleanup to do */ return; } /* Perform priority demotion for old inheritor */ if (inheritor_flags & TURNSTILE_INHERITOR_NEEDS_PRI_UPDATE) { turnstile_update_inheritor_priority_chain(old_inheritor, inheritor_flags); } /* Drop thread reference for old inheritor */ if (inheritor_flags & TURNSTILE_INHERITOR_THREAD) { thread_deallocate_safe(old_inheritor); } else if (inheritor_flags & TURNSTILE_INHERITOR_TURNSTILE) { turnstile_deallocate((struct turnstile *)old_inheritor); } else if (inheritor_flags & TURNSTILE_INHERITOR_WORKQ) { workq_deallocate_safe((struct workqueue *)old_inheritor); } else { panic("Inheritor flags lost along the way"); } } /* * Name: turnstile_update_thread_priority_chain * * Description: Priority of a thread blocked on a turnstile * has changed, update the turnstile priority. * * Arg1: thread: thread whose priority has changed. * * Returns: None. */ void turnstile_update_thread_priority_chain(thread_t thread) { turnstile_update_inheritor_priority_chain(thread, TURNSTILE_INHERITOR_THREAD | TURNSTILE_UPDATE_BOOST); } /* * Name: turnstile_update_inheritor_workq_priority_chain * * Description: Helper function to update turnstile's inheritor(workq) * priority and possibly redrive thread creation * * Arg1: turnstile: turnstile * Arg2: s: whether iterrupts are disabled. * * Condition: turnstile is locked on entry, it is unlocked on exit, * and interrupts re-enabled. */ static void turnstile_update_inheritor_workq_priority_chain(struct turnstile *turnstile, spl_t s) { struct workqueue *wq = turnstile->ts_inheritor; bool workq_lock_held = workq_is_current_thread_updating_turnstile(wq); if (__improbable(turnstile->ts_priority <= MAXPRI_THROTTLE)) { waitq_unlock(&turnstile->ts_waitq); splx(s); return; } if (!workq_lock_held) { workq_reference(wq); disable_preemption(); } waitq_unlock(&turnstile->ts_waitq); splx(s); workq_schedule_creator_turnstile_redrive(wq, workq_lock_held); if (!workq_lock_held) { enable_preemption(); workq_deallocate_safe(wq); } } /* * Name: turnstile_update_inheritor_thread_priority_chain * * Description: Helper function to update turnstile's inheritor(thread) * priority. * * Arg1: in_turnstile: address to turnstile * Arg2: out_thread: address to return the thread inheritor * Arg3: thread_hop: number to thread hop in propagation chain * Arg4: tsu_flags: turnstile update flags * * Returns: Implicit returns locked thread in out_thread if it needs * further propagation. * * Condition: *in_turnstile is locked on entry, it is unlocked on exit and * *in_turnstile is set to NULL. */ static void turnstile_update_inheritor_thread_priority_chain( struct turnstile **in_turnstile, thread_t *out_thread, int total_hop, turnstile_stats_update_flags_t tsu_flags) { boolean_t needs_update = FALSE; struct turnstile *turnstile = *in_turnstile; thread_t thread_inheritor = turnstile->ts_inheritor; boolean_t first_update = !total_hop; assert(turnstile->ts_inheritor_flags & TURNSTILE_INHERITOR_THREAD); *in_turnstile = TURNSTILE_NULL; /* Check if update is needed before grabbing the thread lock */ needs_update = thread_needs_turnstile_promotion_update(thread_inheritor, turnstile); if (!needs_update && !first_update) { turnstile_stats_update(total_hop + 1, TSU_NO_PRI_CHANGE_NEEDED | TSU_TURNSTILE_ARG | tsu_flags, turnstile); waitq_unlock(&turnstile->ts_waitq); return; } thread_lock(thread_inheritor); /* adjust turnstile position in the thread's inheritor list */ needs_update = thread_update_turnstile_promotion_locked( thread_inheritor, turnstile); /* * Check if thread needs further priority propagation, * since the first hop priority update was done in * turnstile_update_inheritor, do not bailout if it is * the first update as needs_update flag would evaluate to * false for that case. */ if (!needs_update && !first_update) { /* Update turnstile stats before returning */ turnstile_stats_update(total_hop + 1, (thread_get_update_flags_for_turnstile_propagation_stoppage(thread_inheritor)) | TSU_TURNSTILE_ARG | tsu_flags, turnstile); thread_unlock(thread_inheritor); waitq_unlock(&turnstile->ts_waitq); return; } /* Unlock the turnstile and update the thread */ waitq_unlock(&turnstile->ts_waitq); *out_thread = thread_inheritor; return; } /* * Name: turnstile_update_inheritor_turnstile_priority_chain * * Description: Helper function to update turnstile's inheritor(turnstile) * priority. * * Arg1: in_out_turnstile: address to turnstile * Arg2: thread_hop: number of thread hop in propagation chain * Arg3: tsu_flags: turnstile update flags * * Returns: Implicit returns locked turnstile in in_out_turnstile if it needs * further propagation. * * Condition: *in_out_turnstile is locked on entry, *in_out_turnstile on exit, * but the value of *in_out_turnstile might change and turnstile lock * will be dropped for old value and will be acquired for the new value. */ static void turnstile_update_inheritor_turnstile_priority_chain( struct turnstile **in_out_turnstile, int total_hop, turnstile_stats_update_flags_t tsu_flags) { boolean_t needs_update = FALSE; struct turnstile *turnstile = *in_out_turnstile; struct turnstile *inheritor_turnstile = turnstile->ts_inheritor; boolean_t first_update = !total_hop; assert(turnstile->ts_inheritor_flags & TURNSTILE_INHERITOR_TURNSTILE); *in_out_turnstile = TURNSTILE_NULL; /* Check if the inheritor turnstile needs to be updated before grabbing the lock */ needs_update = turnstile_need_turnstile_promotion_update(inheritor_turnstile, turnstile); if (!needs_update && !first_update) { turnstile_stats_update(total_hop + 1, TSU_NO_PRI_CHANGE_NEEDED | TSU_TURNSTILE_ARG | tsu_flags, turnstile); waitq_unlock(&turnstile->ts_waitq); return; } waitq_lock(&inheritor_turnstile->ts_waitq); needs_update = turnstile_update_turnstile_promotion_locked( inheritor_turnstile, turnstile); /* * Check if turnstile needs further priority propagation, * since the first hop priority update was done in * turnstile_update_inheritor, do not bailout if it is * the first update as needs_update flag would evaluate to * false for that case. */ if (!needs_update && !first_update) { /* Update turnstile stats before returning */ turnstile_stats_update(total_hop + 1, (inheritor_turnstile->ts_inheritor ? TSU_NO_PRI_CHANGE_NEEDED : TSU_NO_INHERITOR) | TSU_TURNSTILE_ARG | tsu_flags, turnstile); waitq_unlock(&inheritor_turnstile->ts_waitq); waitq_unlock(&turnstile->ts_waitq); return; } /* Unlock the outer turnstile and update the inner turnstile */ waitq_unlock(&turnstile->ts_waitq); *in_out_turnstile = inheritor_turnstile; return; } /* * Name: thread_update_waiting_turnstile_priority_chain * * Description: Helper function to update thread's waiting * turnstile priority. * * Arg1: in_thread: pointer to thread * Arg2: out_turnstile: pointer to turnstile to return to caller * Arg3: thread_hop: Number of thread hops visited * Arg4: total_hop: total hops visited * Arg5: tsu_flags: turnstile update flags * * Returns: *out_turnstile returns the inheritor if it needs further propagation. * * Condition: *in_thread locked on entry, unlocked on exit and set to NULL. */ static void thread_update_waiting_turnstile_priority_chain( thread_t *in_thread, struct turnstile **out_turnstile, int thread_hop, int total_hop, turnstile_stats_update_flags_t tsu_flags) { boolean_t needs_update = FALSE; thread_t thread = *in_thread; struct turnstile *waiting_turnstile = TURNSTILE_NULL; uint32_t turnstile_gencount; boolean_t first_update = !total_hop; uint32_t ticket; *in_thread = THREAD_NULL; /* Check if thread waiting on a turnstile */ waiting_turnstile = thread_get_waiting_turnstile(thread); if (waiting_turnstile == TURNSTILE_NULL || thread_hop > turnstile_max_hop) { KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE, (TURNSTILE_CODE(TURNSTILE_HEAP_OPERATIONS, (waiting_turnstile ? TURNSTILE_UPDATE_STOPPED_BY_LIMIT : THREAD_NOT_WAITING_ON_TURNSTILE) )) | DBG_FUNC_NONE, thread_tid(thread), turnstile_max_hop, thread_hop, VM_KERNEL_UNSLIDE_OR_PERM(waiting_turnstile), 0); turnstile_stats_update(total_hop + 1, TSU_NO_TURNSTILE | TSU_THREAD_ARG | tsu_flags, thread); thread_unlock(thread); return; } /* Check if the thread needs to update the waiting turnstile */ needs_update = turnstile_need_thread_promotion_update(waiting_turnstile, thread); if (!needs_update && !first_update) { turnstile_stats_update(total_hop + 1, TSU_NO_PRI_CHANGE_NEEDED | TSU_THREAD_ARG | tsu_flags, thread); thread_unlock(thread); return; } /* * Do not take turnstile reference here because * 1. The ticket lock guarantees that waiting_turnstile will not be reused by other threads * 2. We are holding other turnstile lock, and doing turnstile free when we dereference it can cause deadlock * 3. Performance optimization */ if (!waitq_lock_reserve(&waiting_turnstile->ts_waitq, &ticket)) { /* take a reference on thread and snapshot of gencount */ turnstile_gencount = turnstile_get_gencount(waiting_turnstile); thread_reference(thread); /* drop the thread lock and wait for turnstile ticket */ thread_unlock(thread); waitq_lock_wait(&waiting_turnstile->ts_waitq, ticket); thread_lock(thread); /* Check if the gencount matches and thread is still waiting on same turnstile */ if (turnstile_gencount != turnstile_get_gencount(waiting_turnstile) || waiting_turnstile != thread_get_waiting_turnstile(thread)) { turnstile_stats_update(total_hop + 1, TSU_NO_PRI_CHANGE_NEEDED | TSU_THREAD_ARG | tsu_flags, thread); /* No updates required, bail out */ thread_unlock(thread); waitq_unlock(&waiting_turnstile->ts_waitq); thread_deallocate_safe(thread); return; } /* * The thread is waiting on the waiting_turnstile and we have thread lock, * we can drop the thread reference since it is on waitq and * it could not be removed from the waitq without the thread lock. */ thread_deallocate_safe(thread); } /* adjust thread's position on turnstile waitq */ needs_update = turnstile_update_thread_promotion_locked(waiting_turnstile, thread); /* * Check if thread needs further priority propagation, * since the first hop priority update was done in * turnstile_update_inheritor, do not bailout if it is * the first update as needs_update flag would evaluate to * false for that case. */ if (!needs_update && !first_update) { turnstile_stats_update(total_hop + 1, (waiting_turnstile->ts_inheritor ? TSU_NO_PRI_CHANGE_NEEDED : TSU_NO_INHERITOR) | TSU_THREAD_ARG | tsu_flags, thread); thread_unlock(thread); waitq_unlock(&waiting_turnstile->ts_waitq); return; } /* drop the thread lock and update the turnstile */ thread_unlock(thread); *out_turnstile = waiting_turnstile; } /* * Name: turnstile_stats_update * * Description: Function to update turnstile stats for dev kernel. * * Arg1: hops : number of thread hops in priority propagation * Arg2: flags : turnstile stats update flags * Arg3: inheritor: inheritor * * Returns: Nothing */ void turnstile_stats_update( int hop __assert_only, turnstile_stats_update_flags_t flags __assert_only, turnstile_inheritor_t inheritor __assert_only) { #if DEVELOPMENT || DEBUG if (flags & TSU_TURNSTILE_BLOCK_COUNT) { os_atomic_inc(&thread_block_on_turnstile_count, relaxed); } if (flags & TSU_REGULAR_WAITQ_BLOCK_COUNT) { os_atomic_inc(&thread_block_on_regular_waitq_count, relaxed); } if (hop > TURNSTILE_MAX_HOP_DEFAULT || hop == 0) { return; } assert(hop >= 0); /* * Check if turnstile stats needs to be updated. * Bail out if the turnstile or thread does not * have any user promotion. * Bail out if it is the first hop of WQ turnstile * since WQ's use of a turnstile for the admission check * introduces a lot of noise due to state changes. */ if (flags & TSU_TURNSTILE_ARG) { struct turnstile *ts = (struct turnstile *)inheritor; if (ts->ts_priority == 0) { return; } if (hop == 1 && turnstile_get_type(ts) == TURNSTILE_WORKQS) { return; } } else if (flags & TSU_THREAD_ARG) { thread_t thread = (thread_t)inheritor; if (thread->user_promotion_basepri == 0) { return; } } else { assert(inheritor == NULL); } struct turnstile_stats *turnstile_stats; if (flags & TSU_BOOST_ARG) { turnstile_stats = turnstile_boost_stats; } else { turnstile_stats = turnstile_unboost_stats; } if (flags & TSU_PRI_PROPAGATION) { os_atomic_inc(&turnstile_stats[hop - 1].ts_priority_propagation, relaxed); } if (flags & TSU_NO_INHERITOR) { os_atomic_inc(&turnstile_stats[hop - 1].ts_no_inheritor, relaxed); } if (flags & TSU_NO_TURNSTILE) { os_atomic_inc(&turnstile_stats[hop - 1].ts_no_turnstile, relaxed); } if (flags & TSU_NO_PRI_CHANGE_NEEDED) { os_atomic_inc(&turnstile_stats[hop - 1].ts_no_priority_change_required, relaxed); } if (flags & TSU_THREAD_RUNNABLE) { os_atomic_inc(&turnstile_stats[hop - 1].ts_thread_runnable, relaxed); } if (flags & TSU_ABOVE_UI_PRI_CHANGE) { os_atomic_inc(&turnstile_stats[hop - 1].ts_above_ui_pri_change, relaxed); } #endif } #define STACKSHOT_TURNSTILE_FLAGS_MODE(flags) ((flags) & ~STACKSHOT_TURNSTILE_STATUS_PORTFLAGS) #define STACKSHOT_TURNSTILE_FLAGS_PORT(flags) ((flags) & STACKSHOT_TURNSTILE_STATUS_PORTFLAGS) #define STACKSHOT_TURNSTILE_FLAGS_WITHPORT(flags, port) \ (STACKSHOT_TURNSTILE_FLAGS_MODE(flags) | STACKSHOT_TURNSTILE_FLAGS_PORT(port)) static uint64_t kdp_turnstile_traverse_inheritor_chain(struct turnstile *ts, uint64_t *flags, uint8_t *hops, struct ipc_service_port_label **isplp) { uint8_t unknown_hops; if (waitq_held(&ts->ts_waitq)) { *flags |= STACKSHOT_TURNSTILE_STATUS_LOCKED_WAITQ; return 0; } *hops = *hops + 1; unknown_hops = *hops; /* * If we find a port along the way, include it. Do this first so the * furthest one wins. */ if (turnstile_is_send_turnstile(ts)) { ipc_port_t port = (ipc_port_t)ts->ts_proprietor; if (port && ip_active(port) && ip_is_any_service_port(port)) { *flags = STACKSHOT_TURNSTILE_FLAGS_WITHPORT(*flags, STACKSHOT_TURNSTILE_STATUS_SENDPORT); *isplp = ptrauth_strip(port->ip_object.iol_service, ptrauth_key_process_independent_data); } } if (turnstile_is_receive_turnstile(ts)) { ipc_port_t port = (ipc_port_t)ts->ts_proprietor; if (port && ip_active(port) && ip_is_any_service_port(port)) { *flags = STACKSHOT_TURNSTILE_FLAGS_WITHPORT(*flags, STACKSHOT_TURNSTILE_STATUS_RECEIVEPORT); *isplp = ptrauth_strip(port->ip_object.iol_service, ptrauth_key_process_independent_data); } } /* * If a turnstile is inheriting our priority, recurse. If we get back *exactly* UNKNOWN, * continue on, since we may be able to give a more specific answer. To * give an accurate hops count, we reset *hops, saving the recursive value in * unknown_hops to use if we can't give a better answer. */ if (ts->ts_inheritor_flags & TURNSTILE_INHERITOR_TURNSTILE) { uint8_t pre_hops = *hops; uint64_t ret = kdp_turnstile_traverse_inheritor_chain(ts->ts_inheritor, flags, hops, isplp); /* * Note that while flags is usually |=ed, we're checking with != here to * make sure we only replace *exactly* UNKNOWN, ignoring the portflags. */ if (ret != 0 || STACKSHOT_TURNSTILE_FLAGS_MODE(*flags) != STACKSHOT_TURNSTILE_STATUS_UNKNOWN) { return ret; } /* restore original hops value, saving the new one if we fall through to unknown */ unknown_hops = *hops; *hops = pre_hops; *flags = STACKSHOT_TURNSTILE_FLAGS_PORT(*flags); } if (ts->ts_inheritor_flags & TURNSTILE_INHERITOR_THREAD) { *flags |= STACKSHOT_TURNSTILE_STATUS_THREAD; return (uint64_t) thread_tid(ts->ts_inheritor); } if (ts->ts_inheritor_flags & TURNSTILE_INHERITOR_WORKQ) { *flags |= STACKSHOT_TURNSTILE_STATUS_WORKQUEUE; return VM_KERNEL_UNSLIDE_OR_PERM(ts->ts_inheritor); } /* * If we found a send turnstile, try to get the task that the turnstile's * port is in the ipc space of */ if (turnstile_is_send_turnstile(ts)) { ipc_port_t port = (ipc_port_t)ts->ts_proprietor; if (port && ip_active(port)) { if (ip_mq_lock_held_kdp(port)) { *flags |= STACKSHOT_TURNSTILE_STATUS_HELD_IPLOCK; return 0; } if (port->ip_receiver_name != 0 && port->ip_receiver) { ipc_space_t space = (ipc_space_t) port->ip_receiver; task_t dest_task = space->is_task; if (dest_task != TASK_NULL) { *flags |= STACKSHOT_TURNSTILE_STATUS_BLOCKED_ON_TASK; return pid_from_task(dest_task); } } } } if (turnstile_is_receive_turnstile(ts)) { ipc_port_t port = (ipc_port_t)ts->ts_proprietor; if (port && ip_active(port)) { if (ip_mq_lock_held_kdp(port)) { *flags |= STACKSHOT_TURNSTILE_STATUS_HELD_IPLOCK; return 0; } if (ip_is_special_reply_port(port)) { /* try getting the pid stored in the port */ uint64_t pid_candidate = ipc_special_reply_get_pid_locked(port); if (pid_candidate) { *flags |= STACKSHOT_TURNSTILE_STATUS_BLOCKED_ON_TASK; return pid_candidate; } } } } *hops = unknown_hops; *flags |= STACKSHOT_TURNSTILE_STATUS_UNKNOWN; return 0; } void kdp_turnstile_fill_tsinfo(struct turnstile *ts, thread_turnstileinfo_v2_t *tsinfo, struct ipc_service_port_label **isplp) { uint64_t final_inheritor; uint64_t flags = 0; uint8_t hops = 0; tsinfo->turnstile_context = 0; tsinfo->number_of_hops = 0; tsinfo->turnstile_priority = 0; assert(ts != TURNSTILE_NULL); if (waitq_held(&ts->ts_waitq)) { tsinfo->turnstile_flags |= STACKSHOT_TURNSTILE_STATUS_LOCKED_WAITQ; return; } final_inheritor = kdp_turnstile_traverse_inheritor_chain(ts, &flags, &hops, isplp); /* store some metadata about the turnstile itself */ tsinfo->turnstile_flags = flags; tsinfo->number_of_hops = hops; tsinfo->turnstile_priority = ts->ts_priority; tsinfo->turnstile_context = final_inheritor; } #if DEVELOPMENT || DEBUG int sysctl_io_opaque(void *req, void *pValue, size_t valueSize, int *changed); /* * Name: turnstile_get_boost_stats_sysctl * * Description: Function to get turnstile stats. * * Args: req : opaque struct to pass to sysctl_io_opaque * * Returns: errorno */ int turnstile_get_boost_stats_sysctl( void *req) { return sysctl_io_opaque(req, turnstile_boost_stats, sizeof(struct turnstile_stats) * TURNSTILE_MAX_HOP_DEFAULT, NULL); } /* * Name: get_turnstile_stats_sysctl * * Description: Function to get turnstile stats. * * Args: req : opaque struct to pass to sysctl_io_opaque * * Returns: errorno */ int turnstile_get_unboost_stats_sysctl( void *req) { return sysctl_io_opaque(req, turnstile_unboost_stats, sizeof(struct turnstile_stats) * TURNSTILE_MAX_HOP_DEFAULT, NULL); } /* Testing interface for Development kernels */ #define tstile_test_prim_lock_interlock(test_prim) \ lck_spin_lock(&test_prim->ttprim_interlock) #define tstile_test_prim_unlock_interlock(test_prim) \ lck_spin_unlock(&test_prim->ttprim_interlock) static void tstile_test_prim_init(struct tstile_test_prim *test_prim) { test_prim->ttprim_turnstile = TURNSTILE_NULL; test_prim->ttprim_owner = NULL; lck_spin_init(&test_prim->ttprim_interlock, &turnstiles_dev_lock_grp, LCK_ATTR_NULL); test_prim->tt_prim_waiters = 0; } int tstile_test_prim_lock(int val) { struct tstile_test_prim *test_prim; boolean_t use_hashtable; turnstile_type_t type; wait_interrupt_t wait_type; switch (val) { case SYSCTL_TURNSTILE_TEST_USER_DEFAULT: test_prim = &test_prim_ts_inline; use_hashtable = FALSE; wait_type = THREAD_ABORTSAFE; type = TURNSTILE_ULOCK; break; case SYSCTL_TURNSTILE_TEST_USER_HASHTABLE: test_prim = &test_prim_global_htable; use_hashtable = TRUE; wait_type = THREAD_ABORTSAFE; type = TURNSTILE_ULOCK; break; case SYSCTL_TURNSTILE_TEST_KERNEL_DEFAULT: test_prim = &test_prim_global_ts_kernel; use_hashtable = FALSE; wait_type = THREAD_UNINT | THREAD_WAIT_NOREPORT_USER; type = TURNSTILE_KERNEL_MUTEX; break; case SYSCTL_TURNSTILE_TEST_KERNEL_HASHTABLE: test_prim = &test_prim_global_ts_kernel_hash; use_hashtable = TRUE; wait_type = THREAD_UNINT | THREAD_WAIT_NOREPORT_USER; type = TURNSTILE_KERNEL_MUTEX; break; default: return -1; } lock_start: /* take the interlock of the primitive */ tstile_test_prim_lock_interlock(test_prim); /* Check if the lock is available */ if (test_prim->ttprim_owner == NULL && test_prim->tt_prim_waiters == 0) { thread_reference(current_thread()); test_prim->ttprim_owner = current_thread(); tstile_test_prim_unlock_interlock(test_prim); return 0; } struct turnstile *prim_turnstile = TURNSTILE_NULL; /* primitive locked, get a turnstile */ if (use_hashtable) { prim_turnstile = turnstile_prepare_hash((uintptr_t)test_prim, type); } else { prim_turnstile = turnstile_prepare((uintptr_t)test_prim, &test_prim->ttprim_turnstile, TURNSTILE_NULL, type); } assert(prim_turnstile != TURNSTILE_NULL); /* This is contented acquire case */ if (test_prim->ttprim_owner == NULL) { thread_reference(current_thread()); test_prim->ttprim_owner = current_thread(); /* Update the turnstile owner */ turnstile_update_inheritor(prim_turnstile, current_thread(), (TURNSTILE_IMMEDIATE_UPDATE | TURNSTILE_INHERITOR_THREAD)); turnstile_update_inheritor_complete(prim_turnstile, TURNSTILE_INTERLOCK_HELD); if (use_hashtable) { turnstile_complete_hash((uintptr_t)test_prim, type); } else { turnstile_complete((uintptr_t)test_prim, &test_prim->ttprim_turnstile, NULL, type); } tstile_test_prim_unlock_interlock(test_prim); turnstile_cleanup(); return 0; } test_prim->tt_prim_waiters++; turnstile_update_inheritor(prim_turnstile, test_prim->ttprim_owner, (TURNSTILE_DELAYED_UPDATE | TURNSTILE_INHERITOR_THREAD)); waitq_assert_wait64(&prim_turnstile->ts_waitq, CAST_EVENT64_T(test_prim), wait_type, TIMEOUT_WAIT_FOREVER); /* drop the interlock */ tstile_test_prim_unlock_interlock(test_prim); turnstile_update_inheritor_complete(prim_turnstile, TURNSTILE_INTERLOCK_NOT_HELD); wait_result_t result; result = thread_block(THREAD_CONTINUE_NULL); /* re-acquire the interlock to get turnstile back */ tstile_test_prim_lock_interlock(test_prim); test_prim->tt_prim_waiters--; if (use_hashtable) { turnstile_complete_hash((uintptr_t)test_prim, type); } else { turnstile_complete((uintptr_t)test_prim, &test_prim->ttprim_turnstile, NULL, type); } tstile_test_prim_unlock_interlock(test_prim); turnstile_cleanup(); /* Return if thread interrupted */ if (result == THREAD_INTERRUPTED) { return 1; } goto lock_start; } int tstile_test_prim_unlock(int val) { struct tstile_test_prim *test_prim; boolean_t use_hashtable; turnstile_type_t type; switch (val) { case SYSCTL_TURNSTILE_TEST_USER_DEFAULT: test_prim = &test_prim_ts_inline; use_hashtable = FALSE; type = TURNSTILE_ULOCK; break; case SYSCTL_TURNSTILE_TEST_USER_HASHTABLE: test_prim = &test_prim_global_htable; use_hashtable = TRUE; type = TURNSTILE_ULOCK; break; case SYSCTL_TURNSTILE_TEST_KERNEL_DEFAULT: test_prim = &test_prim_global_ts_kernel; use_hashtable = FALSE; type = TURNSTILE_KERNEL_MUTEX; break; case SYSCTL_TURNSTILE_TEST_KERNEL_HASHTABLE: test_prim = &test_prim_global_ts_kernel_hash; use_hashtable = TRUE; type = TURNSTILE_KERNEL_MUTEX; break; default: return -1; } /* take the interlock of the primitive */ tstile_test_prim_lock_interlock(test_prim); if (test_prim->ttprim_owner == NULL) { tstile_test_prim_unlock_interlock(test_prim); return 1; } /* Check if the lock is contended */ if (test_prim->ttprim_owner != NULL && test_prim->tt_prim_waiters == 0) { /* lock is not contended */ thread_t old_owner = test_prim->ttprim_owner; test_prim->ttprim_owner = NULL; tstile_test_prim_unlock_interlock(test_prim); thread_deallocate(old_owner); return 0; } struct turnstile *prim_turnstile = TURNSTILE_NULL; thread_t old_owner = test_prim->ttprim_owner; test_prim->ttprim_owner = NULL; /* primitive locked, get a turnstile */ if (use_hashtable) { prim_turnstile = turnstile_prepare_hash((uintptr_t)test_prim, type); } else { prim_turnstile = turnstile_prepare((uintptr_t)test_prim, &test_prim->ttprim_turnstile, TURNSTILE_NULL, type); } assert(prim_turnstile != TURNSTILE_NULL); /* Update the turnstile owner */ turnstile_update_inheritor(prim_turnstile, NULL, (TURNSTILE_IMMEDIATE_UPDATE | TURNSTILE_INHERITOR_THREAD)); waitq_wakeup64_one(&prim_turnstile->ts_waitq, CAST_EVENT64_T(test_prim), THREAD_AWAKENED, WAITQ_WAKEUP_DEFAULT); turnstile_update_inheritor_complete(prim_turnstile, TURNSTILE_INTERLOCK_HELD); if (use_hashtable) { turnstile_complete_hash((uintptr_t)test_prim, type); } else { turnstile_complete((uintptr_t)test_prim, &test_prim->ttprim_turnstile, NULL, type); } tstile_test_prim_unlock_interlock(test_prim); turnstile_cleanup(); if (old_owner) { /* Changing this to thread_deallocate_safe to exercise thread_deallocate_safe path */ thread_deallocate_safe(old_owner); } return 0; } #endif |