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 | /* * Copyright (c) 2011-2018 Apple Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ /* * @OSF_COPYRIGHT@ */ /* * Mach Operating System Copyright (c) 1991,1990,1989,1988,1987 Carnegie * Mellon University All Rights Reserved. * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright notice * and this permission notice appear in all copies of the software, * derivative works or modified versions, and any portions thereof, and that * both notices appear in supporting documentation. * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" CONDITION. * CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR ANY DAMAGES * WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. * * Carnegie Mellon requests users of this software to return to * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science Carnegie Mellon University Pittsburgh PA * 15213-3890 * * any improvements or extensions that they make and grant Carnegie Mellon the * rights to redistribute these changes. */ #include <mach_ldebug.h> #define LOCK_PRIVATE 1 #include <vm/pmap.h> #include <vm/vm_map_xnu.h> #include <vm/vm_page_internal.h> #include <vm/vm_kern_xnu.h> #include <mach/vm_map.h> #include <kern/backtrace.h> #include <kern/kalloc.h> #include <kern/cpu_number.h> #include <kern/locks.h> #include <kern/misc_protos.h> #include <kern/thread.h> #include <kern/processor.h> #include <kern/sched_prim.h> #include <kern/debug.h> #include <stdatomic.h> #include <string.h> #include <tests/xnupost.h> #if MACH_KDB #include <ddb/db_command.h> #include <ddb/db_output.h> #include <ddb/db_sym.h> #include <ddb/db_print.h> #endif /* MACH_KDB */ #include <san/kasan.h> #include <sys/errno.h> #include <sys/kdebug.h> #include <sys/munge.h> #include <machine/cpu_capabilities.h> #include <machine/machine_routines.h> #include <arm/cpu_data_internal.h> #include <arm/pmap.h> #include <arm/pmap/pmap_pt_geometry.h> #if defined(KERNEL_INTEGRITY_KTRR) || defined(KERNEL_INTEGRITY_CTRR) || defined(KERNEL_INTEGRITY_PV_CTRR) #include <arm64/amcc_rorgn.h> #endif // defined(KERNEL_INTEGRITY_KTRR) || defined(KERNEL_INTEGRITY_CTRR) || defined(KERNEL_INTEGRITY_PV_CTRR) #include <arm64/machine_machdep.h> kern_return_t arm64_backtrace_test(void); kern_return_t arm64_lock_test(void); kern_return_t arm64_munger_test(void); kern_return_t arm64_pan_test(void); kern_return_t arm64_late_pan_test(void); #if defined(HAS_APPLE_PAC) #include <ptrauth.h> kern_return_t arm64_ropjop_test(void); #endif #if defined(KERNEL_INTEGRITY_CTRR) || defined(KERNEL_INTEGRITY_PV_CTRR) kern_return_t ctrr_test(void); kern_return_t ctrr_test_cpu(void); #endif #if BTI_ENFORCED kern_return_t arm64_bti_test(void); #endif /* BTI_ENFORCED */ #if HAS_MTE #include <arm_acle.h> kern_return_t mte_test(void); kern_return_t mte_copyio_recovery_handler_test(void); #endif #if HAS_SPECRES extern kern_return_t specres_test(void); #endif // exception handler ignores this fault address during PAN test #if __ARM_PAN_AVAILABLE__ const uint64_t pan_ro_value = 0xFEEDB0B0DEADBEEF; vm_offset_t pan_test_addr = 0; vm_offset_t pan_ro_addr = 0; volatile int pan_exception_level = 0; volatile char pan_fault_value = 0; #endif #if CONFIG_SPTM kern_return_t arm64_panic_lockdown_test(void); #endif /* CONFIG_SPTM */ #include <arm64/speculation.h> kern_return_t arm64_speculation_guard_test(void); #include <libkern/OSAtomic.h> #define LOCK_TEST_ITERATIONS 50 #define LOCK_TEST_SETUP_TIMEOUT_SEC 15 static hw_lock_data_t lt_hw_lock; static lck_spin_t lt_lck_spin_t; static lck_mtx_t lt_mtx; static lck_rw_t lt_rwlock; static volatile uint32_t lt_counter = 0; static volatile int lt_spinvolatile; static volatile uint32_t lt_max_holders = 0; static volatile uint32_t lt_upgrade_holders = 0; static volatile uint32_t lt_max_upgrade_holders = 0; static volatile uint32_t lt_num_holders = 0; static volatile uint32_t lt_done_threads; static volatile uint32_t lt_target_done_threads; static volatile uint32_t lt_cpu_bind_id = 0; static uint64_t lt_setup_timeout = 0; static void lt_note_another_blocking_lock_holder() { hw_lock_lock(<_hw_lock, LCK_GRP_NULL); lt_num_holders++; lt_max_holders = (lt_max_holders < lt_num_holders) ? lt_num_holders : lt_max_holders; hw_lock_unlock(<_hw_lock); } static void lt_note_blocking_lock_release() { hw_lock_lock(<_hw_lock, LCK_GRP_NULL); lt_num_holders--; hw_lock_unlock(<_hw_lock); } static void lt_spin_a_little_bit() { uint32_t i; for (i = 0; i < 10000; i++) { lt_spinvolatile++; } } static void lt_sleep_a_little_bit() { delay(100); } static void lt_grab_mutex() { lck_mtx_lock(<_mtx); lt_note_another_blocking_lock_holder(); lt_sleep_a_little_bit(); lt_counter++; lt_note_blocking_lock_release(); lck_mtx_unlock(<_mtx); } static void lt_grab_mutex_with_try() { while (0 == lck_mtx_try_lock(<_mtx)) { ; } lt_note_another_blocking_lock_holder(); lt_sleep_a_little_bit(); lt_counter++; lt_note_blocking_lock_release(); lck_mtx_unlock(<_mtx); } static void lt_grab_rw_exclusive() { lck_rw_lock_exclusive(<_rwlock); lt_note_another_blocking_lock_holder(); lt_sleep_a_little_bit(); lt_counter++; lt_note_blocking_lock_release(); lck_rw_done(<_rwlock); } static void lt_grab_rw_exclusive_with_try() { while (0 == lck_rw_try_lock_exclusive(<_rwlock)) { lt_sleep_a_little_bit(); } lt_note_another_blocking_lock_holder(); lt_sleep_a_little_bit(); lt_counter++; lt_note_blocking_lock_release(); lck_rw_done(<_rwlock); } /* Disabled until lt_grab_rw_shared() is fixed (rdar://30685840) * static void * lt_grab_rw_shared() * { * lck_rw_lock_shared(<_rwlock); * lt_counter++; * * lt_note_another_blocking_lock_holder(); * lt_sleep_a_little_bit(); * lt_note_blocking_lock_release(); * * lck_rw_done(<_rwlock); * } */ /* Disabled until lt_grab_rw_shared_with_try() is fixed (rdar://30685840) * static void * lt_grab_rw_shared_with_try() * { * while(0 == lck_rw_try_lock_shared(<_rwlock)); * lt_counter++; * * lt_note_another_blocking_lock_holder(); * lt_sleep_a_little_bit(); * lt_note_blocking_lock_release(); * * lck_rw_done(<_rwlock); * } */ static void lt_upgrade_downgrade_rw() { boolean_t upgraded, success; success = lck_rw_try_lock_shared(<_rwlock); if (!success) { lck_rw_lock_shared(<_rwlock); } lt_note_another_blocking_lock_holder(); lt_sleep_a_little_bit(); lt_note_blocking_lock_release(); upgraded = lck_rw_lock_shared_to_exclusive(<_rwlock); if (!upgraded) { success = lck_rw_try_lock_exclusive(<_rwlock); if (!success) { lck_rw_lock_exclusive(<_rwlock); } } lt_upgrade_holders++; if (lt_upgrade_holders > lt_max_upgrade_holders) { lt_max_upgrade_holders = lt_upgrade_holders; } lt_counter++; lt_sleep_a_little_bit(); lt_upgrade_holders--; lck_rw_lock_exclusive_to_shared(<_rwlock); lt_spin_a_little_bit(); lck_rw_done(<_rwlock); } #if __AMP__ const int limit = 1000000; static int lt_stress_local_counters[MAX_CPUS]; lck_ticket_t lt_ticket_lock; lck_grp_t lt_ticket_grp; static void lt_stress_ticket_lock() { uint local_counter = 0; uint cpuid = cpu_number(); kprintf("%s>cpu %u starting\n", __FUNCTION__, cpuid); lck_ticket_lock(<_ticket_lock, <_ticket_grp); lt_counter++; local_counter++; lck_ticket_unlock(<_ticket_lock); /* Wait until all test threads have finished any binding */ while (lt_counter < lt_target_done_threads) { if (mach_absolute_time() > lt_setup_timeout) { kprintf("%s>cpu %u noticed that we exceeded setup timeout of %d seconds during initial setup phase (only %u out of %u threads checked in)", __FUNCTION__, cpuid, LOCK_TEST_SETUP_TIMEOUT_SEC, lt_counter, lt_target_done_threads); return; } /* Yield to keep the CPUs available for the threads to bind */ thread_yield_internal(1); } lck_ticket_lock(<_ticket_lock, <_ticket_grp); lt_counter++; local_counter++; lck_ticket_unlock(<_ticket_lock); /* * Now that the test threads have finished any binding, wait * until they are all actively spinning on-core (done yielding) * so we get a fairly timed start. */ while (lt_counter < 2 * lt_target_done_threads) { if (mach_absolute_time() > lt_setup_timeout) { kprintf("%s>cpu %u noticed that we exceeded setup timeout of %d seconds during secondary setup phase (only %u out of %u threads checked in)", __FUNCTION__, cpuid, LOCK_TEST_SETUP_TIMEOUT_SEC, lt_counter - lt_target_done_threads, lt_target_done_threads); return; } } kprintf("%s>cpu %u started\n", __FUNCTION__, cpuid); while (lt_counter < limit) { lck_ticket_lock(<_ticket_lock, <_ticket_grp); if (lt_counter < limit) { lt_counter++; local_counter++; } lck_ticket_unlock(<_ticket_lock); } lt_stress_local_counters[cpuid] = local_counter; kprintf("%s>final counter %u cpu %u incremented the counter %u times\n", __FUNCTION__, lt_counter, cpuid, local_counter); } #endif static void lt_grab_hw_lock() { hw_lock_lock(<_hw_lock, LCK_GRP_NULL); lt_counter++; lt_spin_a_little_bit(); hw_lock_unlock(<_hw_lock); } static void lt_grab_hw_lock_with_try() { while (0 == hw_lock_try(<_hw_lock, LCK_GRP_NULL)) { ; } lt_counter++; lt_spin_a_little_bit(); hw_lock_unlock(<_hw_lock); } static void lt_grab_hw_lock_with_to() { (void)hw_lock_to(<_hw_lock, &hw_lock_spin_policy, LCK_GRP_NULL); lt_counter++; lt_spin_a_little_bit(); hw_lock_unlock(<_hw_lock); } static void lt_grab_spin_lock() { lck_spin_lock(<_lck_spin_t); lt_counter++; lt_spin_a_little_bit(); lck_spin_unlock(<_lck_spin_t); } static void lt_grab_spin_lock_with_try() { while (0 == lck_spin_try_lock(<_lck_spin_t)) { ; } lt_counter++; lt_spin_a_little_bit(); lck_spin_unlock(<_lck_spin_t); } static volatile boolean_t lt_thread_lock_grabbed; static volatile boolean_t lt_thread_lock_success; static void lt_reset() { lt_counter = 0; lt_max_holders = 0; lt_num_holders = 0; lt_max_upgrade_holders = 0; lt_upgrade_holders = 0; lt_done_threads = 0; lt_target_done_threads = 0; lt_cpu_bind_id = 0; /* Reset timeout deadline out from current time */ nanoseconds_to_absolutetime(LOCK_TEST_SETUP_TIMEOUT_SEC * NSEC_PER_SEC, <_setup_timeout); lt_setup_timeout += mach_absolute_time(); OSMemoryBarrier(); } static void lt_trylock_hw_lock_with_to() { OSMemoryBarrier(); while (!lt_thread_lock_grabbed) { lt_sleep_a_little_bit(); OSMemoryBarrier(); } lt_thread_lock_success = hw_lock_to(<_hw_lock, &hw_lock_test_give_up_policy, LCK_GRP_NULL); OSMemoryBarrier(); mp_enable_preemption(); } static void lt_trylock_spin_try_lock() { OSMemoryBarrier(); while (!lt_thread_lock_grabbed) { lt_sleep_a_little_bit(); OSMemoryBarrier(); } lt_thread_lock_success = lck_spin_try_lock(<_lck_spin_t); OSMemoryBarrier(); } static void lt_trylock_thread(void *arg, wait_result_t wres __unused) { void (*func)(void) = (void (*)(void))arg; func(); OSIncrementAtomic((volatile SInt32*) <_done_threads); } static void lt_start_trylock_thread(thread_continue_t func) { thread_t thread; kern_return_t kr; kr = kernel_thread_start(lt_trylock_thread, func, &thread); assert(kr == KERN_SUCCESS); thread_deallocate(thread); } static void lt_wait_for_lock_test_threads() { OSMemoryBarrier(); /* Spin to reduce dependencies */ while (lt_done_threads < lt_target_done_threads) { lt_sleep_a_little_bit(); OSMemoryBarrier(); } OSMemoryBarrier(); } static kern_return_t lt_test_trylocks() { boolean_t success; extern unsigned int real_ncpus; /* * First mtx try lock succeeds, second fails. */ success = lck_mtx_try_lock(<_mtx); T_ASSERT_NOTNULL(success, "First mtx try lock"); success = lck_mtx_try_lock(<_mtx); T_ASSERT_NULL(success, "Second mtx try lock for a locked mtx"); lck_mtx_unlock(<_mtx); /* * After regular grab, can't try lock. */ lck_mtx_lock(<_mtx); success = lck_mtx_try_lock(<_mtx); T_ASSERT_NULL(success, "try lock should fail after regular lck_mtx_lock"); lck_mtx_unlock(<_mtx); /* * Two shared try locks on a previously unheld rwlock suceed, and a * subsequent exclusive attempt fails. */ success = lck_rw_try_lock_shared(<_rwlock); T_ASSERT_NOTNULL(success, "Two shared try locks on a previously unheld rwlock should succeed"); success = lck_rw_try_lock_shared(<_rwlock); T_ASSERT_NOTNULL(success, "Two shared try locks on a previously unheld rwlock should succeed"); success = lck_rw_try_lock_exclusive(<_rwlock); T_ASSERT_NULL(success, "exclusive lock attempt on previously held lock should fail"); lck_rw_done(<_rwlock); lck_rw_done(<_rwlock); /* * After regular shared grab, can trylock * for shared but not for exclusive. */ lck_rw_lock_shared(<_rwlock); success = lck_rw_try_lock_shared(<_rwlock); T_ASSERT_NOTNULL(success, "After regular shared grab another shared try lock should succeed."); success = lck_rw_try_lock_exclusive(<_rwlock); T_ASSERT_NULL(success, "After regular shared grab an exclusive lock attempt should fail."); lck_rw_done(<_rwlock); lck_rw_done(<_rwlock); /* * An exclusive try lock succeeds, subsequent shared and exclusive * attempts fail. */ success = lck_rw_try_lock_exclusive(<_rwlock); T_ASSERT_NOTNULL(success, "An exclusive try lock should succeed"); success = lck_rw_try_lock_shared(<_rwlock); T_ASSERT_NULL(success, "try lock in shared mode attempt after an exclusive grab should fail"); success = lck_rw_try_lock_exclusive(<_rwlock); T_ASSERT_NULL(success, "try lock in exclusive mode attempt after an exclusive grab should fail"); lck_rw_done(<_rwlock); /* * After regular exclusive grab, neither kind of trylock succeeds. */ lck_rw_lock_exclusive(<_rwlock); success = lck_rw_try_lock_shared(<_rwlock); T_ASSERT_NULL(success, "After regular exclusive grab, shared trylock should not succeed"); success = lck_rw_try_lock_exclusive(<_rwlock); T_ASSERT_NULL(success, "After regular exclusive grab, exclusive trylock should not succeed"); lck_rw_done(<_rwlock); /* * First spin lock attempts succeed, second attempts fail. */ success = hw_lock_try(<_hw_lock, LCK_GRP_NULL); T_ASSERT_NOTNULL(success, "First spin lock attempts should succeed"); success = hw_lock_try(<_hw_lock, LCK_GRP_NULL); T_ASSERT_NULL(success, "Second attempt to spin lock should fail"); hw_lock_unlock(<_hw_lock); hw_lock_lock(<_hw_lock, LCK_GRP_NULL); success = hw_lock_try(<_hw_lock, LCK_GRP_NULL); T_ASSERT_NULL(success, "After taking spin lock, trylock attempt should fail"); hw_lock_unlock(<_hw_lock); lt_reset(); lt_thread_lock_grabbed = false; lt_thread_lock_success = true; lt_target_done_threads = 1; OSMemoryBarrier(); lt_start_trylock_thread(lt_trylock_hw_lock_with_to); success = hw_lock_to(<_hw_lock, &hw_lock_test_give_up_policy, LCK_GRP_NULL); T_ASSERT_NOTNULL(success, "First spin lock with timeout should succeed"); if (real_ncpus == 1) { mp_enable_preemption(); /* if we re-enable preemption, the other thread can timeout and exit */ } OSIncrementAtomic((volatile SInt32*)<_thread_lock_grabbed); lt_wait_for_lock_test_threads(); T_ASSERT_NULL(lt_thread_lock_success, "Second spin lock with timeout should fail and timeout"); if (real_ncpus == 1) { mp_disable_preemption(); /* don't double-enable when we unlock */ } hw_lock_unlock(<_hw_lock); lt_reset(); lt_thread_lock_grabbed = false; lt_thread_lock_success = true; lt_target_done_threads = 1; OSMemoryBarrier(); lt_start_trylock_thread(lt_trylock_hw_lock_with_to); hw_lock_lock(<_hw_lock, LCK_GRP_NULL); if (real_ncpus == 1) { mp_enable_preemption(); /* if we re-enable preemption, the other thread can timeout and exit */ } OSIncrementAtomic((volatile SInt32*)<_thread_lock_grabbed); lt_wait_for_lock_test_threads(); T_ASSERT_NULL(lt_thread_lock_success, "after taking a spin lock, lock attempt with timeout should fail"); if (real_ncpus == 1) { mp_disable_preemption(); /* don't double-enable when we unlock */ } hw_lock_unlock(<_hw_lock); success = lck_spin_try_lock(<_lck_spin_t); T_ASSERT_NOTNULL(success, "spin trylock of previously unheld lock should succeed"); success = lck_spin_try_lock(<_lck_spin_t); T_ASSERT_NULL(success, "spin trylock attempt of previously held lock (with trylock) should fail"); lck_spin_unlock(<_lck_spin_t); lt_reset(); lt_thread_lock_grabbed = false; lt_thread_lock_success = true; lt_target_done_threads = 1; lt_start_trylock_thread(lt_trylock_spin_try_lock); lck_spin_lock(<_lck_spin_t); if (real_ncpus == 1) { mp_enable_preemption(); /* if we re-enable preemption, the other thread can timeout and exit */ } OSIncrementAtomic((volatile SInt32*)<_thread_lock_grabbed); lt_wait_for_lock_test_threads(); T_ASSERT_NULL(lt_thread_lock_success, "spin trylock attempt of previously held lock should fail"); if (real_ncpus == 1) { mp_disable_preemption(); /* don't double-enable when we unlock */ } lck_spin_unlock(<_lck_spin_t); return KERN_SUCCESS; } static void lt_thread(void *arg, wait_result_t wres __unused) { void (*func)(void) = (void (*)(void))arg; uint32_t i; for (i = 0; i < LOCK_TEST_ITERATIONS; i++) { func(); } OSIncrementAtomic((volatile SInt32*) <_done_threads); } static void lt_start_lock_thread(thread_continue_t func) { thread_t thread; kern_return_t kr; kr = kernel_thread_start(lt_thread, func, &thread); assert(kr == KERN_SUCCESS); thread_deallocate(thread); } #if __AMP__ static void lt_bound_thread(void *arg, wait_result_t wres __unused) { void (*func)(void) = (void (*)(void))arg; int cpuid = OSIncrementAtomic((volatile SInt32 *)<_cpu_bind_id); processor_t processor = processor_list; while ((processor != NULL) && (processor->cpu_id != cpuid)) { processor = processor->processor_list; } if (processor != NULL) { thread_bind(processor); } thread_block(THREAD_CONTINUE_NULL); func(); OSIncrementAtomic((volatile SInt32*) <_done_threads); } static void lt_cluster_bound_thread(void *arg, char cluster_type) { void (*func)(void) = (void (*)(void))arg; thread_t thread = current_thread(); kern_return_t kr = thread_soft_bind_cluster_type(thread, cluster_type); if (kr != KERN_SUCCESS) { kprintf("%s>failed to bind to cluster type %c\n", __FUNCTION__, cluster_type); } func(); OSIncrementAtomic((volatile SInt32*) <_done_threads); } static void lt_e_thread(void *arg, wait_result_t wres __unused) { lt_cluster_bound_thread(arg, 'e'); } static void lt_p_thread(void *arg, wait_result_t wres __unused) { lt_cluster_bound_thread(arg, 'p'); } static void lt_start_lock_thread_with_bind(thread_continue_t bind_type, thread_continue_t func) { thread_t thread; kern_return_t kr; kr = kernel_thread_start(bind_type, func, &thread); assert(kr == KERN_SUCCESS); thread_deallocate(thread); } #endif /* __AMP__ */ static kern_return_t lt_test_locks() { #if SCHED_HYGIENE_DEBUG /* * When testing, the preemption disable threshold may be hit (for * example when testing a lock timeout). To avoid this, the preemption * disable measurement is temporarily disabled during lock testing. */ int old_mode = sched_preemption_disable_debug_mode; if (old_mode == SCHED_HYGIENE_MODE_PANIC) { sched_preemption_disable_debug_mode = SCHED_HYGIENE_MODE_OFF; } #endif /* SCHED_HYGIENE_DEBUG */ kern_return_t kr = KERN_SUCCESS; lck_grp_attr_t *lga = lck_grp_attr_alloc_init(); lck_grp_t *lg = lck_grp_alloc_init("lock test", lga); lck_mtx_init(<_mtx, lg, LCK_ATTR_NULL); lck_rw_init(<_rwlock, lg, LCK_ATTR_NULL); lck_spin_init(<_lck_spin_t, lg, LCK_ATTR_NULL); hw_lock_init(<_hw_lock); T_LOG("Testing locks."); /* Try locks (custom) */ lt_reset(); T_LOG("Running try lock test."); kr = lt_test_trylocks(); T_EXPECT_NULL(kr, "try lock test failed."); /* Uncontended mutex */ T_LOG("Running uncontended mutex test."); lt_reset(); lt_target_done_threads = 1; lt_start_lock_thread(lt_grab_mutex); lt_wait_for_lock_test_threads(); T_EXPECT_EQ_UINT(lt_counter, LOCK_TEST_ITERATIONS * lt_target_done_threads, NULL); T_EXPECT_EQ_UINT(lt_max_holders, 1, NULL); /* Contended mutex:try locks*/ T_LOG("Running contended mutex test."); lt_reset(); lt_target_done_threads = 3; lt_start_lock_thread(lt_grab_mutex); lt_start_lock_thread(lt_grab_mutex); lt_start_lock_thread(lt_grab_mutex); lt_wait_for_lock_test_threads(); T_EXPECT_EQ_UINT(lt_counter, LOCK_TEST_ITERATIONS * lt_target_done_threads, NULL); T_EXPECT_EQ_UINT(lt_max_holders, 1, NULL); /* Contended mutex: try locks*/ T_LOG("Running contended mutex trylock test."); lt_reset(); lt_target_done_threads = 3; lt_start_lock_thread(lt_grab_mutex_with_try); lt_start_lock_thread(lt_grab_mutex_with_try); lt_start_lock_thread(lt_grab_mutex_with_try); lt_wait_for_lock_test_threads(); T_EXPECT_EQ_UINT(lt_counter, LOCK_TEST_ITERATIONS * lt_target_done_threads, NULL); T_EXPECT_EQ_UINT(lt_max_holders, 1, NULL); /* Uncontended exclusive rwlock */ T_LOG("Running uncontended exclusive rwlock test."); lt_reset(); lt_target_done_threads = 1; lt_start_lock_thread(lt_grab_rw_exclusive); lt_wait_for_lock_test_threads(); T_EXPECT_EQ_UINT(lt_counter, LOCK_TEST_ITERATIONS * lt_target_done_threads, NULL); T_EXPECT_EQ_UINT(lt_max_holders, 1, NULL); /* Uncontended shared rwlock */ /* Disabled until lt_grab_rw_shared() is fixed (rdar://30685840) * T_LOG("Running uncontended shared rwlock test."); * lt_reset(); * lt_target_done_threads = 1; * lt_start_lock_thread(lt_grab_rw_shared); * lt_wait_for_lock_test_threads(); * T_EXPECT_EQ_UINT(lt_counter, LOCK_TEST_ITERATIONS * lt_target_done_threads, NULL); * T_EXPECT_EQ_UINT(lt_max_holders, 1, NULL); */ /* Contended exclusive rwlock */ T_LOG("Running contended exclusive rwlock test."); lt_reset(); lt_target_done_threads = 3; lt_start_lock_thread(lt_grab_rw_exclusive); lt_start_lock_thread(lt_grab_rw_exclusive); lt_start_lock_thread(lt_grab_rw_exclusive); lt_wait_for_lock_test_threads(); T_EXPECT_EQ_UINT(lt_counter, LOCK_TEST_ITERATIONS * lt_target_done_threads, NULL); T_EXPECT_EQ_UINT(lt_max_holders, 1, NULL); /* One shared, two exclusive */ /* Disabled until lt_grab_rw_shared() is fixed (rdar://30685840) * T_LOG("Running test with one shared and two exclusive rw lock threads."); * lt_reset(); * lt_target_done_threads = 3; * lt_start_lock_thread(lt_grab_rw_shared); * lt_start_lock_thread(lt_grab_rw_exclusive); * lt_start_lock_thread(lt_grab_rw_exclusive); * lt_wait_for_lock_test_threads(); * T_EXPECT_EQ_UINT(lt_counter, LOCK_TEST_ITERATIONS * lt_target_done_threads, NULL); * T_EXPECT_EQ_UINT(lt_max_holders, 1, NULL); */ /* Four shared */ /* Disabled until lt_grab_rw_shared() is fixed (rdar://30685840) * T_LOG("Running test with four shared holders."); * lt_reset(); * lt_target_done_threads = 4; * lt_start_lock_thread(lt_grab_rw_shared); * lt_start_lock_thread(lt_grab_rw_shared); * lt_start_lock_thread(lt_grab_rw_shared); * lt_start_lock_thread(lt_grab_rw_shared); * lt_wait_for_lock_test_threads(); * T_EXPECT_LE_UINT(lt_max_holders, 4, NULL); */ /* Three doing upgrades and downgrades */ T_LOG("Running test with threads upgrading and downgrading."); lt_reset(); lt_target_done_threads = 3; lt_start_lock_thread(lt_upgrade_downgrade_rw); lt_start_lock_thread(lt_upgrade_downgrade_rw); lt_start_lock_thread(lt_upgrade_downgrade_rw); lt_wait_for_lock_test_threads(); T_EXPECT_EQ_UINT(lt_counter, LOCK_TEST_ITERATIONS * lt_target_done_threads, NULL); T_EXPECT_LE_UINT(lt_max_holders, 3, NULL); T_EXPECT_EQ_UINT(lt_max_upgrade_holders, 1, NULL); /* Uncontended - exclusive trylocks */ T_LOG("Running test with single thread doing exclusive rwlock trylocks."); lt_reset(); lt_target_done_threads = 1; lt_start_lock_thread(lt_grab_rw_exclusive_with_try); lt_wait_for_lock_test_threads(); T_EXPECT_EQ_UINT(lt_counter, LOCK_TEST_ITERATIONS * lt_target_done_threads, NULL); T_EXPECT_EQ_UINT(lt_max_holders, 1, NULL); /* Uncontended - shared trylocks */ /* Disabled until lt_grab_rw_shared_with_try() is fixed (rdar://30685840) * T_LOG("Running test with single thread doing shared rwlock trylocks."); * lt_reset(); * lt_target_done_threads = 1; * lt_start_lock_thread(lt_grab_rw_shared_with_try); * lt_wait_for_lock_test_threads(); * T_EXPECT_EQ_UINT(lt_counter, LOCK_TEST_ITERATIONS * lt_target_done_threads, NULL); * T_EXPECT_EQ_UINT(lt_max_holders, 1, NULL); */ /* Three doing exclusive trylocks */ T_LOG("Running test with threads doing exclusive rwlock trylocks."); lt_reset(); lt_target_done_threads = 3; lt_start_lock_thread(lt_grab_rw_exclusive_with_try); lt_start_lock_thread(lt_grab_rw_exclusive_with_try); lt_start_lock_thread(lt_grab_rw_exclusive_with_try); lt_wait_for_lock_test_threads(); T_EXPECT_EQ_UINT(lt_counter, LOCK_TEST_ITERATIONS * lt_target_done_threads, NULL); T_EXPECT_EQ_UINT(lt_max_holders, 1, NULL); /* Three doing shared trylocks */ /* Disabled until lt_grab_rw_shared_with_try() is fixed (rdar://30685840) * T_LOG("Running test with threads doing shared rwlock trylocks."); * lt_reset(); * lt_target_done_threads = 3; * lt_start_lock_thread(lt_grab_rw_shared_with_try); * lt_start_lock_thread(lt_grab_rw_shared_with_try); * lt_start_lock_thread(lt_grab_rw_shared_with_try); * lt_wait_for_lock_test_threads(); * T_EXPECT_LE_UINT(lt_counter, LOCK_TEST_ITERATIONS * lt_target_done_threads, NULL); * T_EXPECT_LE_UINT(lt_max_holders, 3, NULL); */ /* Three doing various trylocks */ /* Disabled until lt_grab_rw_shared_with_try() is fixed (rdar://30685840) * T_LOG("Running test with threads doing mixed rwlock trylocks."); * lt_reset(); * lt_target_done_threads = 4; * lt_start_lock_thread(lt_grab_rw_shared_with_try); * lt_start_lock_thread(lt_grab_rw_shared_with_try); * lt_start_lock_thread(lt_grab_rw_exclusive_with_try); * lt_start_lock_thread(lt_grab_rw_exclusive_with_try); * lt_wait_for_lock_test_threads(); * T_EXPECT_LE_UINT(lt_counter, LOCK_TEST_ITERATIONS * lt_target_done_threads, NULL); * T_EXPECT_LE_UINT(lt_max_holders, 2, NULL); */ /* HW locks */ T_LOG("Running test with hw_lock_lock()"); lt_reset(); lt_target_done_threads = 3; lt_start_lock_thread(lt_grab_hw_lock); lt_start_lock_thread(lt_grab_hw_lock); lt_start_lock_thread(lt_grab_hw_lock); lt_wait_for_lock_test_threads(); T_EXPECT_EQ_UINT(lt_counter, LOCK_TEST_ITERATIONS * lt_target_done_threads, NULL); #if __AMP__ /* Ticket locks stress test */ T_LOG("Running Ticket locks stress test with lck_ticket_lock()"); extern unsigned int real_ncpus; lck_grp_init(<_ticket_grp, "ticket lock stress", LCK_GRP_ATTR_NULL); lck_ticket_init(<_ticket_lock, <_ticket_grp); lt_reset(); lt_target_done_threads = real_ncpus; uint thread_count = 0; for (processor_t processor = processor_list; processor != NULL; processor = processor->processor_list) { lt_start_lock_thread_with_bind(lt_bound_thread, lt_stress_ticket_lock); thread_count++; } T_EXPECT_GE_UINT(thread_count, lt_target_done_threads, "Spawned enough threads for valid test"); lt_wait_for_lock_test_threads(); bool starvation = false; uint total_local_count = 0; for (processor_t processor = processor_list; processor != NULL; processor = processor->processor_list) { starvation = starvation || (lt_stress_local_counters[processor->cpu_id] < 10); total_local_count += lt_stress_local_counters[processor->cpu_id]; } if (mach_absolute_time() > lt_setup_timeout) { T_FAIL("Stress test setup timed out after %d seconds", LOCK_TEST_SETUP_TIMEOUT_SEC); } else if (total_local_count != lt_counter) { T_FAIL("Lock failure\n"); } else if (starvation) { T_FAIL("Lock starvation found\n"); } else { T_PASS("Ticket locks stress test with lck_ticket_lock() (%u total acquires)", total_local_count); } /* AMP ticket locks stress test */ T_LOG("Running AMP Ticket locks stress test bound to clusters with lck_ticket_lock()"); lt_reset(); lt_target_done_threads = real_ncpus; thread_count = 0; for (processor_t processor = processor_list; processor != NULL; processor = processor->processor_list) { processor_set_t pset = processor->processor_set; switch (pset->pset_cluster_type) { case PSET_AMP_P: lt_start_lock_thread_with_bind(lt_p_thread, lt_stress_ticket_lock); break; case PSET_AMP_E: lt_start_lock_thread_with_bind(lt_e_thread, lt_stress_ticket_lock); break; default: lt_start_lock_thread(lt_stress_ticket_lock); break; } thread_count++; } T_EXPECT_GE_UINT(thread_count, lt_target_done_threads, "Spawned enough threads for valid test"); lt_wait_for_lock_test_threads(); #endif /* __AMP__ */ /* HW locks: trylocks */ T_LOG("Running test with hw_lock_try()"); lt_reset(); lt_target_done_threads = 3; lt_start_lock_thread(lt_grab_hw_lock_with_try); lt_start_lock_thread(lt_grab_hw_lock_with_try); lt_start_lock_thread(lt_grab_hw_lock_with_try); lt_wait_for_lock_test_threads(); T_EXPECT_EQ_UINT(lt_counter, LOCK_TEST_ITERATIONS * lt_target_done_threads, NULL); /* HW locks: with timeout */ T_LOG("Running test with hw_lock_to()"); lt_reset(); lt_target_done_threads = 3; lt_start_lock_thread(lt_grab_hw_lock_with_to); lt_start_lock_thread(lt_grab_hw_lock_with_to); lt_start_lock_thread(lt_grab_hw_lock_with_to); lt_wait_for_lock_test_threads(); T_EXPECT_EQ_UINT(lt_counter, LOCK_TEST_ITERATIONS * lt_target_done_threads, NULL); /* Spin locks */ T_LOG("Running test with lck_spin_lock()"); lt_reset(); lt_target_done_threads = 3; lt_start_lock_thread(lt_grab_spin_lock); lt_start_lock_thread(lt_grab_spin_lock); lt_start_lock_thread(lt_grab_spin_lock); lt_wait_for_lock_test_threads(); T_EXPECT_EQ_UINT(lt_counter, LOCK_TEST_ITERATIONS * lt_target_done_threads, NULL); /* Spin locks: trylocks */ T_LOG("Running test with lck_spin_try_lock()"); lt_reset(); lt_target_done_threads = 3; lt_start_lock_thread(lt_grab_spin_lock_with_try); lt_start_lock_thread(lt_grab_spin_lock_with_try); lt_start_lock_thread(lt_grab_spin_lock_with_try); lt_wait_for_lock_test_threads(); T_EXPECT_EQ_UINT(lt_counter, LOCK_TEST_ITERATIONS * lt_target_done_threads, NULL); #if SCHED_HYGIENE_DEBUG sched_preemption_disable_debug_mode = old_mode; #endif /* SCHED_HYGIENE_DEBUG */ return KERN_SUCCESS; } #define MT_MAX_ARGS 8 #define MT_INITIAL_VALUE 0xfeedbeef #define MT_W_VAL (0x00000000feedbeefULL) /* Drop in zeros */ #define MT_S_VAL (0xfffffffffeedbeefULL) /* High bit is 1, so sign-extends as negative */ #define MT_L_VAL (((uint64_t)MT_INITIAL_VALUE) | (((uint64_t)MT_INITIAL_VALUE) << 32)) /* Two back-to-back */ typedef void (*sy_munge_t)(void*); #define MT_FUNC(x) #x, x struct munger_test { const char *mt_name; sy_munge_t mt_func; uint32_t mt_in_words; uint32_t mt_nout; uint64_t mt_expected[MT_MAX_ARGS]; } munger_tests[] = { {MT_FUNC(munge_w), 1, 1, {MT_W_VAL}}, {MT_FUNC(munge_ww), 2, 2, {MT_W_VAL, MT_W_VAL}}, {MT_FUNC(munge_www), 3, 3, {MT_W_VAL, MT_W_VAL, MT_W_VAL}}, {MT_FUNC(munge_wwww), 4, 4, {MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL}}, {MT_FUNC(munge_wwwww), 5, 5, {MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL}}, {MT_FUNC(munge_wwwwww), 6, 6, {MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL}}, {MT_FUNC(munge_wwwwwww), 7, 7, {MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL}}, {MT_FUNC(munge_wwwwwwww), 8, 8, {MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL}}, {MT_FUNC(munge_wl), 3, 2, {MT_W_VAL, MT_L_VAL}}, {MT_FUNC(munge_wwl), 4, 3, {MT_W_VAL, MT_W_VAL, MT_L_VAL}}, {MT_FUNC(munge_wwlll), 8, 5, {MT_W_VAL, MT_W_VAL, MT_L_VAL, MT_L_VAL, MT_L_VAL}}, {MT_FUNC(munge_wwlllll), 12, 7, {MT_W_VAL, MT_W_VAL, MT_L_VAL, MT_L_VAL, MT_L_VAL, MT_L_VAL, MT_L_VAL}}, {MT_FUNC(munge_wwllllll), 14, 8, {MT_W_VAL, MT_W_VAL, MT_L_VAL, MT_L_VAL, MT_L_VAL, MT_L_VAL, MT_L_VAL, MT_L_VAL}}, {MT_FUNC(munge_wlw), 4, 3, {MT_W_VAL, MT_L_VAL, MT_W_VAL}}, {MT_FUNC(munge_wlwwwll), 10, 7, {MT_W_VAL, MT_L_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_L_VAL, MT_L_VAL}}, {MT_FUNC(munge_wlwwwllw), 11, 8, {MT_W_VAL, MT_L_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_L_VAL, MT_L_VAL, MT_W_VAL}}, {MT_FUNC(munge_wlwwlwlw), 11, 8, {MT_W_VAL, MT_L_VAL, MT_W_VAL, MT_W_VAL, MT_L_VAL, MT_W_VAL, MT_L_VAL, MT_W_VAL}}, {MT_FUNC(munge_wll), 5, 3, {MT_W_VAL, MT_L_VAL, MT_L_VAL}}, {MT_FUNC(munge_wlll), 7, 4, {MT_W_VAL, MT_L_VAL, MT_L_VAL, MT_L_VAL}}, {MT_FUNC(munge_wllwwll), 11, 7, {MT_W_VAL, MT_L_VAL, MT_L_VAL, MT_W_VAL, MT_W_VAL, MT_L_VAL, MT_L_VAL}}, {MT_FUNC(munge_wwwlw), 6, 5, {MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_L_VAL, MT_W_VAL}}, {MT_FUNC(munge_wwwlww), 7, 6, {MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_L_VAL, MT_W_VAL, MT_W_VAL}}, {MT_FUNC(munge_wwwlwww), 8, 7, {MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_L_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL}}, {MT_FUNC(munge_wwwl), 5, 4, {MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_L_VAL}}, {MT_FUNC(munge_wwwwlw), 7, 6, {MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_L_VAL, MT_W_VAL}}, {MT_FUNC(munge_wwwwllww), 10, 8, {MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_L_VAL, MT_L_VAL, MT_W_VAL, MT_W_VAL}}, {MT_FUNC(munge_wwwwl), 6, 5, {MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_L_VAL}}, {MT_FUNC(munge_wwwwwl), 7, 6, {MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_L_VAL}}, {MT_FUNC(munge_wwwwwlww), 9, 8, {MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_L_VAL, MT_W_VAL, MT_W_VAL}}, {MT_FUNC(munge_wwwwwllw), 10, 8, {MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_L_VAL, MT_L_VAL, MT_W_VAL}}, {MT_FUNC(munge_wwwwwlll), 11, 8, {MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_L_VAL, MT_L_VAL, MT_L_VAL}}, {MT_FUNC(munge_wwwwwwl), 8, 7, {MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_L_VAL}}, {MT_FUNC(munge_wwwwwwlw), 9, 8, {MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_L_VAL, MT_W_VAL}}, {MT_FUNC(munge_wwwwwwll), 10, 8, {MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_L_VAL, MT_L_VAL}}, {MT_FUNC(munge_wsw), 3, 3, {MT_W_VAL, MT_S_VAL, MT_W_VAL}}, {MT_FUNC(munge_wws), 3, 3, {MT_W_VAL, MT_W_VAL, MT_S_VAL}}, {MT_FUNC(munge_wwwsw), 5, 5, {MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_S_VAL, MT_W_VAL}}, {MT_FUNC(munge_llllll), 12, 6, {MT_L_VAL, MT_L_VAL, MT_L_VAL, MT_L_VAL, MT_L_VAL, MT_L_VAL}}, {MT_FUNC(munge_llll), 8, 4, {MT_L_VAL, MT_L_VAL, MT_L_VAL, MT_L_VAL}}, {MT_FUNC(munge_l), 2, 1, {MT_L_VAL}}, {MT_FUNC(munge_lw), 3, 2, {MT_L_VAL, MT_W_VAL}}, {MT_FUNC(munge_lww), 4, 3, {MT_L_VAL, MT_W_VAL, MT_W_VAL}}, {MT_FUNC(munge_lwww), 5, 4, {MT_L_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL}}, {MT_FUNC(munge_lwwwwwww), 9, 8, {MT_L_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL}}, {MT_FUNC(munge_wlwwwl), 8, 6, {MT_W_VAL, MT_L_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_L_VAL}}, {MT_FUNC(munge_wwlwwwl), 9, 7, {MT_W_VAL, MT_W_VAL, MT_L_VAL, MT_W_VAL, MT_W_VAL, MT_W_VAL, MT_L_VAL}} }; #define MT_TEST_COUNT (sizeof(munger_tests) / sizeof(struct munger_test)) static void mt_reset(uint32_t in_words, size_t total_size, uint32_t *data) { uint32_t i; for (i = 0; i < in_words; i++) { data[i] = MT_INITIAL_VALUE; } if (in_words * sizeof(uint32_t) < total_size) { bzero(&data[in_words], total_size - in_words * sizeof(uint32_t)); } } static void mt_test_mungers() { uint64_t data[MT_MAX_ARGS]; uint32_t i, j; for (i = 0; i < MT_TEST_COUNT; i++) { struct munger_test *test = &munger_tests[i]; int pass = 1; T_LOG("Testing %s", test->mt_name); mt_reset(test->mt_in_words, sizeof(data), (uint32_t*)data); test->mt_func(data); for (j = 0; j < test->mt_nout; j++) { if (data[j] != test->mt_expected[j]) { T_FAIL("Index %d: expected %llx, got %llx.", j, test->mt_expected[j], data[j]); pass = 0; } } if (pass) { T_PASS(test->mt_name); } } } #if defined(HAS_APPLE_PAC) kern_return_t arm64_ropjop_test() { T_LOG("Testing ROP/JOP"); /* how is ROP/JOP configured */ boolean_t config_rop_enabled = TRUE; boolean_t config_jop_enabled = TRUE; if (config_jop_enabled) { /* jop key */ uint64_t apiakey_hi = __builtin_arm_rsr64("APIAKEYHI_EL1"); uint64_t apiakey_lo = __builtin_arm_rsr64("APIAKEYLO_EL1"); T_EXPECT(apiakey_hi != 0 && apiakey_lo != 0, NULL); } if (config_rop_enabled) { /* rop key */ uint64_t apibkey_hi = __builtin_arm_rsr64("APIBKEYHI_EL1"); uint64_t apibkey_lo = __builtin_arm_rsr64("APIBKEYLO_EL1"); T_EXPECT(apibkey_hi != 0 && apibkey_lo != 0, NULL); /* sign a KVA (the address of this function) */ uint64_t kva_signed = (uint64_t) ptrauth_sign_unauthenticated((void *)&config_rop_enabled, ptrauth_key_asib, 0); /* assert it was signed (changed) */ T_EXPECT(kva_signed != (uint64_t)&config_rop_enabled, NULL); /* authenticate the newly signed KVA */ uint64_t kva_authed = (uint64_t) ml_auth_ptr_unchecked((void *)kva_signed, ptrauth_key_asib, 0); /* assert the authed KVA is the original KVA */ T_EXPECT(kva_authed == (uint64_t)&config_rop_enabled, NULL); /* corrupt a signed ptr, auth it, ensure auth failed */ uint64_t kva_corrupted = kva_signed ^ 1; /* authenticate the corrupted pointer */ kva_authed = (uint64_t) ml_auth_ptr_unchecked((void *)kva_corrupted, ptrauth_key_asib, 0); /* when AuthIB fails, bits 63:62 will be set to 2'b10 */ uint64_t auth_fail_mask = 3ULL << 61; uint64_t authib_fail = 2ULL << 61; /* assert the failed authIB of corrupted pointer is tagged */ T_EXPECT((kva_authed & auth_fail_mask) == authib_fail, NULL); } return KERN_SUCCESS; } #endif /* defined(HAS_APPLE_PAC) */ #if __ARM_PAN_AVAILABLE__ struct pan_test_thread_args { volatile bool join; }; static void arm64_pan_test_thread(void *arg, wait_result_t __unused wres) { T_ASSERT(__builtin_arm_rsr("pan") != 0, NULL); struct pan_test_thread_args *args = arg; for (processor_t p = processor_list; p != NULL; p = p->processor_list) { thread_bind(p); thread_block(THREAD_CONTINUE_NULL); kprintf("Running PAN test on cpu %d\n", p->cpu_id); arm64_pan_test(); } /* unbind thread from specific cpu */ thread_bind(PROCESSOR_NULL); thread_block(THREAD_CONTINUE_NULL); while (!args->join) { ; } thread_wakeup(args); } kern_return_t arm64_late_pan_test() { thread_t thread; kern_return_t kr; struct pan_test_thread_args args; args.join = false; kr = kernel_thread_start(arm64_pan_test_thread, &args, &thread); assert(kr == KERN_SUCCESS); thread_deallocate(thread); assert_wait(&args, THREAD_UNINT); args.join = true; thread_block(THREAD_CONTINUE_NULL); return KERN_SUCCESS; } // Disable KASAN checking for PAN tests as the fixed commpage address doesn't have a shadow mapping static NOKASAN bool arm64_pan_test_pan_enabled_fault_handler(arm_saved_state_t * state) { bool retval = false; uint64_t esr = get_saved_state_esr(state); esr_exception_class_t class = ESR_EC(esr); fault_status_t fsc = ISS_IA_FSC(ESR_ISS(esr)); uint32_t cpsr = get_saved_state_cpsr(state); uint64_t far = get_saved_state_far(state); if ((class == ESR_EC_DABORT_EL1) && (fsc == FSC_PERMISSION_FAULT_L3) && (cpsr & PSR64_PAN) && ((esr & ISS_DA_WNR) ? mmu_kvtop_wpreflight(far) : mmu_kvtop(far))) { ++pan_exception_level; // read the user-accessible value to make sure // pan is enabled and produces a 2nd fault from // the exception handler if (pan_exception_level == 1) { ml_expect_fault_begin(arm64_pan_test_pan_enabled_fault_handler, far); pan_fault_value = *(volatile char *)far; ml_expect_fault_end(); __builtin_arm_wsr("pan", 1); // turn PAN back on after the nested exception cleared it for this context } // this fault address is used for PAN test // disable PAN and rerun mask_saved_state_cpsr(state, 0, PSR64_PAN); retval = true; } return retval; } static NOKASAN bool arm64_pan_test_pan_disabled_fault_handler(arm_saved_state_t * state) { bool retval = false; uint64_t esr = get_saved_state_esr(state); esr_exception_class_t class = ESR_EC(esr); fault_status_t fsc = ISS_IA_FSC(ESR_ISS(esr)); uint32_t cpsr = get_saved_state_cpsr(state); if ((class == ESR_EC_DABORT_EL1) && (fsc == FSC_PERMISSION_FAULT_L3) && !(cpsr & PSR64_PAN)) { ++pan_exception_level; // On an exception taken from a PAN-disabled context, verify // that PAN is re-enabled for the exception handler and that // accessing the test address produces a PAN fault. ml_expect_fault_begin(arm64_pan_test_pan_enabled_fault_handler, pan_test_addr); pan_fault_value = *(volatile char *)pan_test_addr; ml_expect_fault_end(); __builtin_arm_wsr("pan", 1); // turn PAN back on after the nested exception cleared it for this context add_saved_state_pc(state, 4); retval = true; } return retval; } NOKASAN kern_return_t arm64_pan_test() { bool values_match = false; vm_offset_t priv_addr = 0; T_LOG("Testing PAN."); T_ASSERT((__builtin_arm_rsr("SCTLR_EL1") & SCTLR_PAN_UNCHANGED) == 0, "SCTLR_EL1.SPAN must be cleared"); T_ASSERT(__builtin_arm_rsr("pan") != 0, NULL); pan_exception_level = 0; pan_fault_value = 0xDE; // Create an empty pmap, so we can map a user-accessible page pmap_t pmap = pmap_create_options(NULL, 0, PMAP_CREATE_64BIT); T_ASSERT(pmap != NULL, NULL); // Get a physical page to back the mapping vm_page_t vm_page = vm_page_grab(); T_ASSERT(vm_page != VM_PAGE_NULL, NULL); ppnum_t pn = VM_PAGE_GET_PHYS_PAGE(vm_page); pmap_paddr_t pa = ptoa(pn); // Write to the underlying physical page through the physical aperture // so we can test against a known value priv_addr = phystokv((pmap_paddr_t)pa); *(volatile char *)priv_addr = 0xAB; // Map the page in the user address space at some, non-zero address pan_test_addr = PAGE_SIZE; pmap_enter(pmap, pan_test_addr, pn, VM_PROT_READ, VM_PROT_READ, 0, true, PMAP_MAPPING_TYPE_INFER); // Context-switch with PAN disabled is prohibited; prevent test logging from // triggering a voluntary context switch. mp_disable_preemption(); // Insert the user's pmap root table pointer in TTBR0 thread_t thread = current_thread(); pmap_t old_pmap = vm_map_pmap(thread->map); pmap_switch(pmap, thread); // Below should trigger a PAN exception as pan_test_addr is accessible // in user mode // The exception handler, upon recognizing the fault address is pan_test_addr, // will disable PAN and rerun this instruction successfully ml_expect_fault_begin(arm64_pan_test_pan_enabled_fault_handler, pan_test_addr); values_match = (*(volatile char *)pan_test_addr == *(volatile char *)priv_addr); ml_expect_fault_end(); T_ASSERT(values_match, NULL); T_ASSERT(pan_exception_level == 2, NULL); T_ASSERT(__builtin_arm_rsr("pan") == 0, NULL); T_ASSERT(pan_fault_value == *(char *)priv_addr, NULL); pan_exception_level = 0; pan_fault_value = 0xAD; pan_ro_addr = (vm_offset_t) &pan_ro_value; // Force a permission fault while PAN is disabled to make sure PAN is // re-enabled during the exception handler. ml_expect_fault_begin(arm64_pan_test_pan_disabled_fault_handler, pan_ro_addr); *((volatile uint64_t*)pan_ro_addr) = 0xFEEDFACECAFECAFE; ml_expect_fault_end(); T_ASSERT(pan_exception_level == 2, NULL); T_ASSERT(__builtin_arm_rsr("pan") == 0, NULL); T_ASSERT(pan_fault_value == *(char *)priv_addr, NULL); pmap_switch(old_pmap, thread); pan_ro_addr = 0; __builtin_arm_wsr("pan", 1); mp_enable_preemption(); pmap_remove(pmap, pan_test_addr, pan_test_addr + PAGE_SIZE); pan_test_addr = 0; vm_page_lock_queues(); vm_page_free(vm_page); vm_page_unlock_queues(); pmap_destroy(pmap); return KERN_SUCCESS; } #endif /* __ARM_PAN_AVAILABLE__ */ kern_return_t arm64_lock_test() { return lt_test_locks(); } kern_return_t arm64_munger_test() { mt_test_mungers(); return 0; } #if (defined(KERNEL_INTEGRITY_CTRR) || defined(KERNEL_INTEGRITY_PV_CTRR)) && defined(CONFIG_XNUPOST) SECURITY_READ_ONLY_LATE(uint64_t) ctrr_ro_test; uint64_t ctrr_nx_test = 0xd65f03c0; /* RET */ volatile uint64_t ctrr_exception_esr; vm_offset_t ctrr_test_va; vm_offset_t ctrr_test_page; atomic_bool ctrr_test_in_progress; kern_return_t ctrr_test(void) { processor_t p; /* * The test uses some globals and also a specific reserved VA region, so it * can't run concurrently. This might otherwise happen via the sysctl * interface. */ bool expected = false; if (!atomic_compare_exchange_strong_explicit(&ctrr_test_in_progress, &expected, true, memory_order_acq_rel, memory_order_relaxed)) { T_FAIL("Can't run multiple CTRR tests at once"); return KERN_SUCCESS; } T_LOG("Running CTRR test."); for (p = processor_list; p != NULL; p = p->processor_list) { thread_bind(p); thread_block(THREAD_CONTINUE_NULL); T_LOG("Running CTRR test on CPU %d\n", p->cpu_id); ctrr_test_cpu(); } /* unbind thread from specific cpu */ thread_bind(PROCESSOR_NULL); thread_block(THREAD_CONTINUE_NULL); T_PASS("Done running CTRR test on all CPUs"); atomic_store_explicit(&ctrr_test_in_progress, false, memory_order_release); return KERN_SUCCESS; } static bool ctrr_test_ro_fault_handler(arm_saved_state_t * state) { bool retval = false; uint64_t esr = get_saved_state_esr(state); esr_exception_class_t class = ESR_EC(esr); fault_status_t fsc = ISS_DA_FSC(ESR_ISS(esr)); if ((class == ESR_EC_DABORT_EL1) && (fsc == FSC_PERMISSION_FAULT_L3)) { ctrr_exception_esr = esr; add_saved_state_pc(state, 4); retval = true; } return retval; } static bool ctrr_test_nx_fault_handler(arm_saved_state_t * state) { bool retval = false; uint64_t esr = get_saved_state_esr(state); esr_exception_class_t class = ESR_EC(esr); fault_status_t fsc = ISS_IA_FSC(ESR_ISS(esr)); if ((class == ESR_EC_IABORT_EL1) && (fsc == FSC_PERMISSION_FAULT_L3)) { ctrr_exception_esr = esr; /* return to the instruction immediately after the call to NX page */ set_saved_state_pc(state, get_saved_state_lr(state)); #if BTI_ENFORCED /* Clear BTYPE to prevent taking another exception on ERET */ uint32_t spsr = get_saved_state_cpsr(state); spsr &= ~PSR_BTYPE_MASK; set_saved_state_cpsr(state, spsr); #endif /* BTI_ENFORCED */ retval = true; } return retval; } // Disable KASAN checking for CTRR tests as the test VA doesn't have a shadow mapping /* test CTRR on a cpu, caller to bind thread to desired cpu */ /* ctrr_test_page was reserved during bootstrap process if no SPTM */ NOKASAN kern_return_t ctrr_test_cpu(void) { ppnum_t ro_pn, nx_pn; uint64_t *ctrr_ro_test_ptr; void (*ctrr_nx_test_ptr)(void); kern_return_t kr; uint64_t prot = 0; extern vm_offset_t virtual_space_start; extern vm_offset_t rorgn_begin; extern vm_offset_t rorgn_end; vm_offset_t ro_test_va = (vm_offset_t)&ctrr_ro_test; vm_offset_t nx_test_va = (vm_offset_t)&ctrr_nx_test; bool ctrr_enabled = !ml_unsafe_kernel_text(); #if CONFIG_SPTM if (/* DISABLES CODE */ (1)) { T_SKIP("Skipping CTRR test because testing under SPTM is not supported yet"); return KERN_SUCCESS; } #endif #if defined(KERNEL_INTEGRITY_PV_CTRR) if (rorgn_begin == 0 && rorgn_end == 0) { // Under paravirtualized CTRR, it's possible that we want CTRR to be // enabled but we're running under an older host that doesn't support // it. ctrr_enabled = false; T_LOG("Treating paravirtualized CTRR as disabled due to lack of support"); } #endif // The CTRR read-only region is the physical address range [rorgn_begin, rorgn_end]. // rorgn_end will be one byte short of a page boundary. if (ctrr_enabled) { T_EXPECT(rorgn_begin != 0, "Expect rorgn_begin to be set when CTRR enabled"); T_EXPECT_GE_ULONG(rorgn_end, rorgn_begin, "Expect rorgn_end to be >= rorgn_begin when CTRR enabled"); pmap_paddr_t ro_test_pa = kvtophys_nofail(ro_test_va); pmap_paddr_t nx_test_pa = kvtophys_nofail(nx_test_va); T_EXPECT(rorgn_begin <= ro_test_pa && ro_test_pa <= rorgn_end, "Expect ro_test_pa to be inside the CTRR region"); T_EXPECT((nx_test_pa < rorgn_begin) ^ (nx_test_pa > rorgn_end), "Expect nx_test_pa to be outside the CTRR region"); } else { T_EXPECT_EQ_ULONG(rorgn_begin, 0, "Expect rorgn_begin to be unset when CTRR disabled"); T_EXPECT_EQ_ULONG(rorgn_end, 0, "Expect rorgn_end to be unset when CTRR disabled"); T_LOG("Skipping region check because CTRR is disabled"); } if (ctrr_enabled) { T_LOG("Expect no faults when reading CTRR region to verify correct programming of CTRR limits"); for (pmap_paddr_t page_pa = rorgn_begin; page_pa <= rorgn_end; page_pa += PAGE_SIZE) { vm_offset_t page_va = phystokv(page_pa); for (vm_offset_t va = page_va; va < page_va + PAGE_SIZE; va += 8) { volatile uint64_t x = *(uint64_t *)va; (void) x; /* read for side effect only */ } } } else { T_LOG("Skipping read test because CTRR is disabled"); } ro_pn = pmap_find_phys(kernel_pmap, ro_test_va); nx_pn = pmap_find_phys(kernel_pmap, nx_test_va); T_EXPECT(ro_pn && nx_pn, "Expect ro page number and nx page number to be non zero"); T_LOG("test virtual page: %p, ctrr_ro_test: %p, ctrr_nx_test: %p, ro_pn: %x, nx_pn: %x ", (void *)ctrr_test_page, &ctrr_ro_test, &ctrr_nx_test, ro_pn, nx_pn); T_ASSERT(ctrr_test_page != 0, "Expect ctrr_test_page to be initialized"); prot = pmap_get_arm64_prot(kernel_pmap, ctrr_test_page); T_EXPECT(~prot & ARM_TTE_VALID, "Expect ctrr_test_page to be unmapped"); T_LOG("Read only region test mapping virtual page %p to CTRR RO page number %d", ctrr_test_page, ro_pn); kr = pmap_enter(kernel_pmap, ctrr_test_page, ro_pn, VM_PROT_READ | VM_PROT_WRITE, VM_PROT_NONE, VM_WIMG_USE_DEFAULT, FALSE, PMAP_MAPPING_TYPE_INFER); T_EXPECT(kr == KERN_SUCCESS, "Expect pmap_enter of RW mapping to succeed"); // assert entire mmu prot path (Hierarchical protection model) is NOT RO // fetch effective block level protections from table/block entries prot = pmap_get_arm64_prot(kernel_pmap, ctrr_test_page); T_EXPECT(ARM_PTE_EXTRACT_AP(prot) == AP_RWNA && (prot & ARM_PTE_PNX), "Mapping is EL1 RWNX"); ctrr_test_va = ctrr_test_page + (ro_test_va & PAGE_MASK); ctrr_ro_test_ptr = (void *)ctrr_test_va; T_LOG("Read only region test writing to %p to provoke data abort", ctrr_ro_test_ptr); // should cause data abort ml_expect_fault_begin(ctrr_test_ro_fault_handler, ctrr_test_va); *ctrr_ro_test_ptr = 1; ml_expect_fault_end(); // ensure write permission fault at expected level // data abort handler will set ctrr_exception_esr when ctrr_test_va takes a permission fault if (ctrr_enabled) { T_EXPECT(ESR_EC(ctrr_exception_esr) == ESR_EC_DABORT_EL1, "Data Abort from EL1 expected"); T_EXPECT(ISS_DA_FSC(ESR_ISS(ctrr_exception_esr)) == FSC_PERMISSION_FAULT_L3, "Permission Fault Expected"); T_EXPECT(ESR_ISS(ctrr_exception_esr) & ISS_DA_WNR, "Write Fault Expected"); } else { T_EXPECT(ctrr_exception_esr == 0, "No fault expected with CTRR disabled"); } ctrr_test_va = 0; ctrr_exception_esr = 0; pmap_remove(kernel_pmap, ctrr_test_page, ctrr_test_page + PAGE_SIZE); T_LOG("No execute test mapping virtual page %p to CTRR PXN page number %d", ctrr_test_page, nx_pn); kr = pmap_enter(kernel_pmap, ctrr_test_page, nx_pn, VM_PROT_READ | VM_PROT_EXECUTE, VM_PROT_NONE, VM_WIMG_USE_DEFAULT, FALSE, PMAP_MAPPING_TYPE_INFER); T_EXPECT(kr == KERN_SUCCESS, "Expect pmap_enter of RX mapping to succeed"); // assert entire mmu prot path (Hierarchical protection model) is NOT XN prot = pmap_get_arm64_prot(kernel_pmap, ctrr_test_page); T_EXPECT(ARM_PTE_EXTRACT_AP(prot) == AP_RONA && (~prot & ARM_PTE_PNX), "Mapping is EL1 ROX (prot=0x%lx)", prot); ctrr_test_va = ctrr_test_page + (nx_test_va & PAGE_MASK); #if __has_feature(ptrauth_calls) ctrr_nx_test_ptr = ptrauth_sign_unauthenticated((void *)ctrr_test_va, ptrauth_key_function_pointer, 0); #else ctrr_nx_test_ptr = (void *)ctrr_test_va; #endif T_LOG("No execute test calling ctrr_nx_test_ptr(): %p to provoke instruction abort", ctrr_nx_test_ptr); // should cause prefetch abort ml_expect_fault_begin(ctrr_test_nx_fault_handler, ctrr_test_va); ctrr_nx_test_ptr(); ml_expect_fault_end(); if (ctrr_enabled) { // FIXME: rdar://143430725 (xnu support for paravirtualized CTXR) // Without FEAT_XNX support on the host side, we cannot test kernel execution outside CTXR regions. #if !defined(KERNEL_INTEGRITY_PV_CTRR) // TODO: ensure execute permission fault at expected level T_EXPECT(ESR_EC(ctrr_exception_esr) == ESR_EC_IABORT_EL1, "Instruction abort from EL1 Expected"); T_EXPECT(ISS_DA_FSC(ESR_ISS(ctrr_exception_esr)) == FSC_PERMISSION_FAULT_L3, "Permission Fault Expected"); #endif /* !defined(KERNEL_INTEGRITY_PV_CTRR) */ } else { T_EXPECT(ctrr_exception_esr == 0, "No fault expected with CTRR disabled"); } ctrr_test_va = 0; ctrr_exception_esr = 0; pmap_remove(kernel_pmap, ctrr_test_page, ctrr_test_page + PAGE_SIZE); return KERN_SUCCESS; } #endif /* (defined(KERNEL_INTEGRITY_CTRR) || defined(KERNEL_INTEGRITY_PV_CTRR)) && defined(CONFIG_XNUPOST) */ /** * Explicitly assert that xnu is still uniprocessor before running a POST test. * * In practice, tests in this module can safely manipulate CPU state without * fear of getting preempted. There's no way for cpu_boot_thread() to bring up * the secondary CPUs until StartIOKitMatching() completes, and arm64 orders * kern_post_test() before StartIOKitMatching(). * * But this is also an implementation detail. Tests that rely on this ordering * should call assert_uniprocessor(), so that we can figure out a workaround * on the off-chance this ordering ever changes. */ __unused static void assert_uniprocessor(void) { extern unsigned int real_ncpus; unsigned int ncpus = os_atomic_load(&real_ncpus, relaxed); T_QUIET; T_ASSERT_EQ_UINT(1, ncpus, "arm64 kernel POST tests should run before any secondary CPUs are brought up"); } #if CONFIG_SPTM volatile uint8_t xnu_post_panic_lockdown_did_fire = false; typedef uint64_t (panic_lockdown_helper_fcn_t)(uint64_t raw); typedef bool (panic_lockdown_precondition_fcn_t)(void); typedef bool (panic_lockdown_recovery_fcn_t)(arm_saved_state_t *); /* SP0 vector tests */ extern panic_lockdown_helper_fcn_t arm64_panic_lockdown_test_load; extern panic_lockdown_helper_fcn_t arm64_panic_lockdown_test_gdbtrap; extern panic_lockdown_helper_fcn_t arm64_panic_lockdown_test_pac_brk_c470; extern panic_lockdown_helper_fcn_t arm64_panic_lockdown_test_pac_brk_c471; extern panic_lockdown_helper_fcn_t arm64_panic_lockdown_test_pac_brk_c472; extern panic_lockdown_helper_fcn_t arm64_panic_lockdown_test_pac_brk_c473; extern panic_lockdown_helper_fcn_t arm64_panic_lockdown_test_telemetry_brk_ff00; extern panic_lockdown_helper_fcn_t arm64_panic_lockdown_test_br_auth_fail; extern panic_lockdown_helper_fcn_t arm64_panic_lockdown_test_ldr_auth_fail; extern panic_lockdown_helper_fcn_t arm64_panic_lockdown_test_fpac; extern panic_lockdown_helper_fcn_t arm64_panic_lockdown_test_copyio; extern uint8_t arm64_panic_lockdown_test_copyio_fault_pc; #if HAS_MTE extern panic_lockdown_helper_fcn_t arm64_panic_lockdown_test_copyio_tag_check_fault_recoverable; extern uint8_t arm64_panic_lockdown_test_copyio_tag_check_fault_recoverable_fault_pc; #endif /* HAS_MTE */ extern int gARM_FEAT_FPACCOMBINE; /* SP1 vector tests */ extern panic_lockdown_helper_fcn_t arm64_panic_lockdown_test_sp1_invalid_stack; extern bool arm64_panic_lockdown_test_sp1_invalid_stack_handler(arm_saved_state_t *); extern panic_lockdown_helper_fcn_t arm64_panic_lockdown_test_sp1_exception_in_vector; extern panic_lockdown_helper_fcn_t el1_sp1_synchronous_raise_exception_in_vector; extern bool arm64_panic_lockdown_test_sp1_exception_in_vector_handler(arm_saved_state_t *); #if DEVELOPMENT || DEBUG extern struct panic_lockdown_initiator_state debug_panic_lockdown_initiator_state; #endif /* DEVELOPMENT || DEBUG */ typedef struct arm64_panic_lockdown_test_case { const char *name; panic_lockdown_helper_fcn_t *func; uint64_t arg; panic_lockdown_precondition_fcn_t *precondition; esr_exception_class_t expected_ec; bool check_fs; fault_status_t expected_fs; bool expect_lockdown_exceptions_masked; bool expect_lockdown_exceptions_unmasked; bool override_expected_fault_pc_valid; uint64_t override_expected_fault_pc; } arm64_panic_lockdown_test_case_s; static arm64_panic_lockdown_test_case_s *arm64_panic_lockdown_active_test; static volatile bool arm64_panic_lockdown_caught_exception; static bool arm64_panic_lockdown_test_exception_handler(arm_saved_state_t * state) { uint64_t esr = get_saved_state_esr(state); esr_exception_class_t class = ESR_EC(esr); fault_status_t fs = ISS_DA_FSC(ESR_ISS(esr)); if (!arm64_panic_lockdown_active_test || class != arm64_panic_lockdown_active_test->expected_ec || (arm64_panic_lockdown_active_test->check_fs && fs != arm64_panic_lockdown_active_test->expected_fs)) { return false; } #if BTI_ENFORCED /* Clear BTYPE to prevent taking another exception on ERET */ uint32_t spsr = get_saved_state_cpsr(state); spsr &= ~PSR_BTYPE_MASK; set_saved_state_cpsr(state, spsr); #endif /* BTI_ENFORCED */ /* We got the expected exception, recover by forging an early return */ set_saved_state_pc(state, get_saved_state_lr(state)); arm64_panic_lockdown_caught_exception = true; return true; } static void panic_lockdown_expect_test(const char *treatment, arm64_panic_lockdown_test_case_s *test, bool expect_lockdown, bool mask_interrupts) { int ints = 0; arm64_panic_lockdown_active_test = test; xnu_post_panic_lockdown_did_fire = false; arm64_panic_lockdown_caught_exception = false; uintptr_t fault_pc; if (test->override_expected_fault_pc_valid) { fault_pc = (uintptr_t)test->override_expected_fault_pc; } else { fault_pc = (uintptr_t)test->func; #ifdef BTI_ENFORCED /* When BTI is enabled, we expect the fault to occur after the landing pad */ fault_pc += 4; #endif /* BTI_ENFORCED */ } ml_expect_fault_pc_begin( arm64_panic_lockdown_test_exception_handler, fault_pc); if (mask_interrupts) { ints = ml_set_interrupts_enabled(FALSE); } (void)test->func(test->arg); if (mask_interrupts) { (void)ml_set_interrupts_enabled(ints); } ml_expect_fault_end(); if (expect_lockdown == xnu_post_panic_lockdown_did_fire && arm64_panic_lockdown_caught_exception) { T_PASS("%s + %s OK\n", test->name, treatment); } else { T_FAIL( "%s + %s FAIL (expected lockdown: %d, did lockdown: %d, caught exception: %d)\n", test->name, treatment, expect_lockdown, xnu_post_panic_lockdown_did_fire, arm64_panic_lockdown_caught_exception); } #if DEVELOPMENT || DEBUG /* Check that the debug info is minimally functional */ if (expect_lockdown) { T_EXPECT_NE_ULLONG(debug_panic_lockdown_initiator_state.initiator_pc, 0ULL, "Initiator PC set"); } else { T_EXPECT_EQ_ULLONG(debug_panic_lockdown_initiator_state.initiator_pc, 0ULL, "Initiator PC not set"); } /* Reset the debug data so it can be filled later if needed */ debug_panic_lockdown_initiator_state.initiator_pc = 0; #endif /* DEVELOPMENT || DEBUG */ } static void panic_lockdown_expect_fault_raw(const char *label, panic_lockdown_helper_fcn_t entrypoint, panic_lockdown_helper_fcn_t faulting_function, expected_fault_handler_t fault_handler) { uint64_t test_success = 0; xnu_post_panic_lockdown_did_fire = false; uintptr_t fault_pc = (uintptr_t)faulting_function; #ifdef BTI_ENFORCED /* When BTI is enabled, we expect the fault to occur after the landing pad */ fault_pc += 4; #endif /* BTI_ENFORCED */ ml_expect_fault_pc_begin(fault_handler, fault_pc); test_success = entrypoint(0); ml_expect_fault_end(); if (test_success && xnu_post_panic_lockdown_did_fire) { T_PASS("%s OK\n", label); } else { T_FAIL("%s FAIL (test returned: %d, did lockdown: %d)\n", label, test_success, xnu_post_panic_lockdown_did_fire); } } /** * Returns a pointer which is guranteed to be invalid under IA with the zero * discriminator. * * This is somewhat over complicating it since it's exceedingly likely that a * any given pointer will have a zero PAC (and thus break the test), but it's * easy enough to avoid the problem. */ static uint64_t panic_lockdown_pacia_get_invalid_ptr() { char *unsigned_ptr = (char *)0xFFFFFFFFAABBCC00; char *signed_ptr = NULL; do { unsigned_ptr += 4 /* avoid alignment exceptions */; signed_ptr = ptrauth_sign_unauthenticated( unsigned_ptr, ptrauth_key_asia, 0); } while ((uint64_t)unsigned_ptr == (uint64_t)signed_ptr); return (uint64_t)unsigned_ptr; } /** * Returns a pointer which is guranteed to be invalid under DA with the zero * discriminator. */ static uint64_t panic_lockdown_pacda_get_invalid_ptr(void) { char *unsigned_ptr = (char *)0xFFFFFFFFAABBCC00; char *signed_ptr = NULL; do { unsigned_ptr += 8 /* avoid alignment exceptions */; signed_ptr = ptrauth_sign_unauthenticated( unsigned_ptr, ptrauth_key_asda, 0); } while ((uint64_t)unsigned_ptr == (uint64_t)signed_ptr); return (uint64_t)unsigned_ptr; } #if HAS_MTE static bool arm64_panic_lockdown_is_mte_enabled(void) { if (!is_mte_enabled) { T_LOG("MTE disabled"); } return is_mte_enabled; } #endif /* HAS_MTE */ kern_return_t arm64_panic_lockdown_test(void) { #if __has_feature(ptrauth_calls) uint64_t ia_invalid = panic_lockdown_pacia_get_invalid_ptr(); #endif /* ptrauth_calls */ #if HAS_MTE /* * Generate a kernel pointer with an invalid/wrong tag by grabbing an * arbitrary pointer (in this case, a canonically tagged global) and * advancing the tag by one. */ uintptr_t kernel_ptr_invalid_tag = (uintptr_t)__arm_mte_increment_tag( &xnu_post_panic_lockdown_did_fire, 1); #endif /* HAS_MTE */ arm64_panic_lockdown_test_case_s tests[] = { { .name = "arm64_panic_lockdown_test_load", .func = &arm64_panic_lockdown_test_load, /* Trigger a null deref */ .arg = (uint64_t)NULL, .expected_ec = ESR_EC_DABORT_EL1, .expect_lockdown_exceptions_masked = true, .expect_lockdown_exceptions_unmasked = false, }, { .name = "arm64_panic_lockdown_test_gdbtrap", .func = &arm64_panic_lockdown_test_gdbtrap, .arg = 0, .expected_ec = ESR_EC_UNCATEGORIZED, /* GDBTRAP instructions should be allowed everywhere */ .expect_lockdown_exceptions_masked = false, .expect_lockdown_exceptions_unmasked = false, }, #if __has_feature(ptrauth_calls) { .name = "arm64_panic_lockdown_test_pac_brk_c470", .func = &arm64_panic_lockdown_test_pac_brk_c470, .arg = 0, .expected_ec = ESR_EC_BRK_AARCH64, .expect_lockdown_exceptions_masked = true, .expect_lockdown_exceptions_unmasked = true, }, { .name = "arm64_panic_lockdown_test_pac_brk_c471", .func = &arm64_panic_lockdown_test_pac_brk_c471, .arg = 0, .expected_ec = ESR_EC_BRK_AARCH64, .expect_lockdown_exceptions_masked = true, .expect_lockdown_exceptions_unmasked = true, }, { .name = "arm64_panic_lockdown_test_pac_brk_c472", .func = &arm64_panic_lockdown_test_pac_brk_c472, .arg = 0, .expected_ec = ESR_EC_BRK_AARCH64, .expect_lockdown_exceptions_masked = true, .expect_lockdown_exceptions_unmasked = true, }, { .name = "arm64_panic_lockdown_test_pac_brk_c473", .func = &arm64_panic_lockdown_test_pac_brk_c473, .arg = 0, .expected_ec = ESR_EC_BRK_AARCH64, .expect_lockdown_exceptions_masked = true, .expect_lockdown_exceptions_unmasked = true, }, { .name = "arm64_panic_lockdown_test_telemetry_brk_ff00", .func = &arm64_panic_lockdown_test_telemetry_brk_ff00, .arg = 0, .expected_ec = ESR_EC_BRK_AARCH64, /* * PAC breakpoints are not the only breakpoints, ensure that other * BRKs (like those used for telemetry) do not trigger lockdowns. * This is necessary to avoid conflicts with features like UBSan * telemetry (which could fire at any time in C code). */ .expect_lockdown_exceptions_masked = false, .expect_lockdown_exceptions_unmasked = false, }, { .name = "arm64_panic_lockdown_test_br_auth_fail", .func = &arm64_panic_lockdown_test_br_auth_fail, .arg = ia_invalid, .expected_ec = gARM_FEAT_FPACCOMBINE ? ESR_EC_PAC_FAIL : ESR_EC_IABORT_EL1, .expect_lockdown_exceptions_masked = true, .expect_lockdown_exceptions_unmasked = true, /* * Pre-FEAT_FPACCOMBINED, BRAx branches to a poisoned PC so we * expect to fault on the branch target rather than the branch * itself. The exact ELR will likely be different from ia_invalid, * but since the expect logic in sleh only matches on low bits (i.e. * not bits which will be poisoned), this is fine. * On FEAT_FPACCOMBINED devices, we will fault on the branch itself. */ .override_expected_fault_pc_valid = !gARM_FEAT_FPACCOMBINE, .override_expected_fault_pc = ia_invalid }, { .name = "arm64_panic_lockdown_test_ldr_auth_fail", .func = &arm64_panic_lockdown_test_ldr_auth_fail, .arg = panic_lockdown_pacda_get_invalid_ptr(), .expected_ec = gARM_FEAT_FPACCOMBINE ? ESR_EC_PAC_FAIL : ESR_EC_DABORT_EL1, .expect_lockdown_exceptions_masked = true, .expect_lockdown_exceptions_unmasked = true, }, { .name = "arm64_panic_lockdown_test_copyio_poison", .func = &arm64_panic_lockdown_test_copyio, /* fake a poisoned kernel pointer by flipping the bottom PAC bit */ .arg = ((uint64_t)-1) ^ (1LLU << (64 - T1SZ_BOOT)), .expected_ec = ESR_EC_DABORT_EL1, .expect_lockdown_exceptions_masked = false, .expect_lockdown_exceptions_unmasked = false, .override_expected_fault_pc_valid = true, .override_expected_fault_pc = (uint64_t)&arm64_panic_lockdown_test_copyio_fault_pc, }, #if __ARM_ARCH_8_6__ { .name = "arm64_panic_lockdown_test_fpac", .func = &arm64_panic_lockdown_test_fpac, .arg = ia_invalid, .expected_ec = ESR_EC_PAC_FAIL, .expect_lockdown_exceptions_masked = true, .expect_lockdown_exceptions_unmasked = true, }, #endif /* __ARM_ARCH_8_6__ */ #endif /* ptrauth_calls */ { .name = "arm64_panic_lockdown_test_copyio", .func = &arm64_panic_lockdown_test_copyio, .arg = 0x0 /* load from NULL */, .expected_ec = ESR_EC_DABORT_EL1, .expect_lockdown_exceptions_masked = false, .expect_lockdown_exceptions_unmasked = false, .override_expected_fault_pc_valid = true, .override_expected_fault_pc = (uint64_t)&arm64_panic_lockdown_test_copyio_fault_pc, }, #if HAS_MTE { /* Validate that non-copyio tag check fails trigger a lockdown */ .name = "arm64_panic_lockdown_test_load_mte_fail", .func = &arm64_panic_lockdown_test_load, .arg = kernel_ptr_invalid_tag, .precondition = arm64_panic_lockdown_is_mte_enabled, .expected_ec = ESR_EC_DABORT_EL1, .check_fs = true, .expected_fs = FSC_SYNC_TAG_CHECK_FAULT, .expect_lockdown_exceptions_masked = true, .expect_lockdown_exceptions_unmasked = true, }, { /* * Validate that non-tag check recoverable copyio tag check fails * trigger a lockdown */ .name = "arm64_panic_lockdown_test_copyio_mte_fail", .func = &arm64_panic_lockdown_test_copyio, .arg = kernel_ptr_invalid_tag, .precondition = arm64_panic_lockdown_is_mte_enabled, .expected_ec = ESR_EC_DABORT_EL1, .check_fs = true, .expected_fs = FSC_SYNC_TAG_CHECK_FAULT, .expect_lockdown_exceptions_masked = true, .expect_lockdown_exceptions_unmasked = true, .override_expected_fault_pc_valid = true, .override_expected_fault_pc = (uint64_t)&arm64_panic_lockdown_test_copyio_fault_pc, }, #if 0 /* rdar://153476527 */ { /* * Validate that kernel tag check recoverable copyio functions do * not trigger a lockdown on tag check fail. */ .name = "arm64_panic_lockdown_test_copyio_tag_check_fault_recoverable", .func = &arm64_panic_lockdown_test_copyio_tag_check_fault_recoverable, .arg = kernel_ptr_invalid_tag, .precondition = arm64_panic_lockdown_is_mte_enabled, .expected_ec = ESR_EC_DABORT_EL1, .check_fs = true, .expected_fs = FSC_SYNC_TAG_CHECK_FAULT, .expect_lockdown_exceptions_masked = false, .expect_lockdown_exceptions_unmasked = false, .override_expected_fault_pc_valid = true, .override_expected_fault_pc = (uint64_t)&arm64_panic_lockdown_test_copyio_tag_check_fault_recoverable_fault_pc, }, #endif /* 0 */ #endif /* HAS_MTE */ }; size_t test_count = sizeof(tests) / sizeof(*tests); for (size_t i = 0; i < test_count; i++) { if (tests[i].precondition && !tests[i].precondition()) { T_LOG("%s skipped due to precondition check", tests[i].name); continue; } panic_lockdown_expect_test( "Exceptions unmasked", &tests[i], tests[i].expect_lockdown_exceptions_unmasked, /* mask_interrupts */ false); panic_lockdown_expect_test( "Exceptions masked", &tests[i], tests[i].expect_lockdown_exceptions_masked, /* mask_interrupts */ true); } panic_lockdown_expect_fault_raw("arm64_panic_lockdown_test_sp1_invalid_stack", arm64_panic_lockdown_test_sp1_invalid_stack, arm64_panic_lockdown_test_pac_brk_c470, arm64_panic_lockdown_test_sp1_invalid_stack_handler); panic_lockdown_expect_fault_raw("arm64_panic_lockdown_test_sp1_exception_in_vector", arm64_panic_lockdown_test_sp1_exception_in_vector, el1_sp1_synchronous_raise_exception_in_vector, arm64_panic_lockdown_test_sp1_exception_in_vector_handler); return KERN_SUCCESS; } #endif /* CONFIG_SPTM */ #if HAS_MTE volatile uint64_t mte_test_esr; static bool mte_test_fault_handler(arm_saved_state_t *ss) { uint64_t esr = get_saved_state_esr(ss); esr_exception_class_t ec = ESR_EC(esr); bool ret = false; if (ec == ESR_EC_DABORT_EL1) { fault_status_t fsc = ISS_IA_FSC(ESR_ISS(esr)); if (fsc == FSC_SYNC_TAG_CHECK_FAULT) { mte_test_esr = esr; add_saved_state_pc(ss, 4); ret = true; } } return ret; } static inline unsigned int extract_mte_tag(void *ptr) { return (((uintptr_t)ptr) >> 56) & 0xF; } kern_return_t mte_test(void) { if (!is_mte_enabled) { T_SKIP("MTE disabled"); return KERN_SUCCESS; } /* This test needs to manipulate GCR_EL1 without getting preempted */ assert_uniprocessor(); vm_address_t address; kern_return_t kr; const size_t MTE_GRANULE_SIZE = 16; const unsigned int NUM_MTE_TAGS = 16; /* Allocate a MTE backed page */ kr = kmem_alloc(kernel_map, &address, PAGE_SIZE, KMA_ZERO | KMA_TAG | KMA_KOBJECT, VM_KERN_MEMORY_DIAG); T_ASSERT_EQ_INT(kr, KERN_SUCCESS, "kmem_alloc(KMA_TAG) - allocate an MTE enabled page"); char *untagged_ptr = (char *)vm_memtag_canonicalize_kernel(address); ppnum_t pn = pmap_find_phys(kernel_pmap, address); T_ASSERT(pmap_is_tagged_page(pn), "kmem_alloc(KMA_TAG) returned MTE-enabled translation"); /* Read the originally assigned tag to the page */ char *orig_tagged_ptr = __arm_mte_get_tag(untagged_ptr); T_LOG("__arm_mte_get_tag(%p) == %p\n", untagged_ptr, orig_tagged_ptr); unsigned int orig_tag = extract_mte_tag(orig_tagged_ptr); /* Exclude the original tag from random tag generation */ uint64_t mask = __arm_mte_exclude_tag(orig_tagged_ptr, 0); T_EXPECT_EQ_ULLONG(mask, 1 << orig_tag, "original tag is excluded"); char *random_tagged_ptr; /* * Generate the random tag. We've excluded the original tag, so it should never * reappear no matter how many times we regenerate a new tag. */ for (unsigned int i = 0; i < NUM_MTE_TAGS * 4; i++) { random_tagged_ptr = __arm_mte_create_random_tag(untagged_ptr, mask); T_QUIET; T_EXPECT_NE_PTR(orig_tagged_ptr, random_tagged_ptr, "random tag was not taken from excluded tag set"); ptrdiff_t diff = __arm_mte_ptrdiff(untagged_ptr, random_tagged_ptr); T_QUIET; T_EXPECT_EQ_ULLONG(diff, 0, "untagged %p and tagged %p have identical address bits", untagged_ptr, random_tagged_ptr); } T_LOG("__arm_mte_create_random_tag(%p, %llx) == %p\n", untagged_ptr, mask, random_tagged_ptr); /* * Globally exclude another tag. Let's arbitrarily pick orig_tag - 1, * so that it takes effect the 15th time we increment orig_tagged_ptr. */ uint64_t excluded_tag = (orig_tag + (NUM_MTE_TAGS - 1)) % NUM_MTE_TAGS; uint64_t old_gcr_el1 = __builtin_arm_rsr64("GCR_EL1"); uint64_t new_gcr_el1 = old_gcr_el1 & ~GCR_EL1_EXCLUDE_MASK; new_gcr_el1 |= (1 << excluded_tag) << GCR_EL1_EXCLUDE_OFFSET; __builtin_arm_wsr64("GCR_EL1", new_gcr_el1); char *last_tagged_ptr = orig_tagged_ptr; unsigned int last_tag = orig_tag; /* Increment the tag until we're just about to reach the excluded one */ for (unsigned int i = 0; i < NUM_MTE_TAGS - 2; i++) { char *next_tagged_ptr = __arm_mte_increment_tag(last_tagged_ptr, 1); unsigned int next_tag = extract_mte_tag(next_tagged_ptr); T_QUIET; T_EXPECT_EQ_UINT(next_tag, (last_tag + 1) % NUM_MTE_TAGS, "__arm_mte_increment_tag(%p, 1) = %p", last_tagged_ptr, next_tagged_ptr); ptrdiff_t diff = __arm_mte_ptrdiff(last_tagged_ptr, next_tagged_ptr); T_QUIET; T_EXPECT_EQ_ULLONG(diff, 0, "previous %p and incremented %p have identical address bits", last_tagged_ptr, next_tagged_ptr); last_tagged_ptr = next_tagged_ptr; last_tag = next_tag; } /* Increment again, and confirm that we've skipped over the excluded tag */ char *skip_tagged_ptr = __arm_mte_increment_tag(last_tagged_ptr, 1); unsigned int skip_tag = extract_mte_tag(skip_tagged_ptr); T_EXPECT_EQ_UINT(skip_tag, orig_tag, "__arm_mte_increment_tag() skipped over excluded tag"); /* Restore the original tag configuration */ __builtin_arm_wsr64("GCR_EL1", old_gcr_el1); /* Time to make things real, commit the tag to memory */ __arm_mte_set_tag(random_tagged_ptr); /* Ensure that we can read back the tag */ char *read_back = __arm_mte_get_tag(untagged_ptr); T_EXPECT_EQ_PTR(read_back, random_tagged_ptr, "tag was committed to memory correctly"); /* Verify that accessing memory actually works */ random_tagged_ptr[0] = 't'; random_tagged_ptr[1] = 'e'; random_tagged_ptr[2] = 's'; random_tagged_ptr[3] = 't'; T_EXPECT_EQ_STR(random_tagged_ptr, "test", "read/write from tagged memory"); /* * Confirm that the next MTE granule still has the default tag, and then * simulate an out-of-bounds access into that granule. */ void *next_granule_ptr = orig_tagged_ptr + MTE_GRANULE_SIZE; unsigned int next_granule_tag = extract_mte_tag(next_granule_ptr); T_QUIET; T_ASSERT_EQ_UINT(next_granule_tag, orig_tag, "next MTE granule still has its originally assigned tag"); mte_test_esr = 0; ml_expect_fault_begin(mte_test_fault_handler, (uintptr_t)&random_tagged_ptr[MTE_GRANULE_SIZE]); random_tagged_ptr[MTE_GRANULE_SIZE] = '!'; ml_expect_fault_end(); T_EXPECT_EQ_UINT(ESR_EC(mte_test_esr), ESR_EC_DABORT_EL1, "out-of-bounds access to tagged memory raised a data abort"); T_EXPECT_EQ_UINT(ISS_IA_FSC(ESR_ISS(mte_test_esr)), FSC_SYNC_TAG_CHECK_FAULT, "out-of-bounds access to tagged memory raised a synchronous tag check fault"); /* * Simulate a use-after-free by accessing orig_tagged_ptr, which has an * out-of-date tag. */ mte_test_esr = 0; ml_expect_fault_begin(mte_test_fault_handler, (uintptr_t)&orig_tagged_ptr[0]); orig_tagged_ptr[0] = 'T'; ml_expect_fault_end(); T_EXPECT_EQ_UINT(ESR_EC(mte_test_esr), ESR_EC_DABORT_EL1, "use-after-free access to tagged memory raised a data abort"); T_EXPECT_EQ_UINT(ISS_IA_FSC(ESR_ISS(mte_test_esr)), FSC_SYNC_TAG_CHECK_FAULT, "use-after-free access to tagged memory raised a synchronous tag check fault"); kmem_free(kernel_map, (vm_address_t)__arm_mte_get_tag(untagged_ptr), PAGE_SIZE, KMF_TAG); return KERN_SUCCESS; } kern_return_t mte_copyio_recovery_handler_test(void) { if (!is_mte_enabled) { T_SKIP("MTE disabled"); return KERN_SUCCESS; } extern int _copyin_atomic64(const char *src, uint64_t *dst); extern int _copyin_atomic64_allow_invalid_kernel_tag(const char *src, uint64_t *dst); vm_address_t kern_addr; kern_return_t kr = kmem_alloc(kernel_map, &kern_addr, PAGE_SIZE, KMA_ZERO | KMA_TAG | KMA_KOBJECT, VM_KERN_MEMORY_DIAG); T_QUIET; T_ASSERT_EQ_INT(kr, 0, "allocated a tagged page"); uint64_t *tagged_addr = __arm_mte_create_random_tag((void *)kern_addr, 0); __arm_mte_set_tag(tagged_addr); *tagged_addr = 0xFEEDFACECAFEF00D; uint64_t dst; int err = _copyin_atomic64((char *)tagged_addr, &dst); T_EXPECT_EQ_INT(err, 0, "_copyin_atomic64 from tagged kernel address succeeded"); T_EXPECT_EQ_ULLONG(*tagged_addr, dst, "_copyin_atomic64 from tagged kernel address copied data correctly"); uint64_t *incorrectly_tagged_addr = __arm_mte_increment_tag(tagged_addr, 1); dst = 0; err = _copyin_atomic64_allow_invalid_kernel_tag((char *)incorrectly_tagged_addr, &dst); T_EXPECT_EQ_INT(err, EFAULT, "_copyin_atomic64_allow_invalid_kernel_tag with incorrectly tagged kernel address recovered with EFAULT"); T_EXPECT_NE_ULLONG(*tagged_addr, dst, "_copyin_atomic64_allow_invalid_kernel_tag from incorrectly tagged kernel address did not copy data"); mte_test_esr = 0; ml_expect_fault_begin(mte_test_fault_handler, (uintptr_t)incorrectly_tagged_addr); _copyin_atomic64((char *)incorrectly_tagged_addr, &dst); ml_expect_fault_end(); T_EXPECT_EQ_UINT(ESR_EC(mte_test_esr), ESR_EC_DABORT_EL1, "_copyin_atomic64 with incorrectly tagged kernel address raised an unrecoverable data abort"); T_EXPECT_EQ_UINT(ISS_IA_FSC(ESR_ISS(mte_test_esr)), FSC_SYNC_TAG_CHECK_FAULT, "_copyin_atomic64 with incorrectly tagged kernel address raised an unrecoverable synchronous tag check fault"); kmem_free(kernel_map, (vm_address_t)__arm_mte_get_tag(tagged_addr), PAGE_SIZE, KMF_TAG); return KERN_SUCCESS; } #endif /* HAS_MTE */ #if HAS_SPECRES /*** CPS RCTX ***/ /*** SPECRES ***/ #if HAS_SPECRES2 /* * Execute a COSP RCTX instruction. */ static void _cosprctx_exec(uint64_t raw) { asm volatile ( "ISB SY"); __asm__ volatile ("COSP RCTX, %0" :: "r" (raw)); asm volatile ( "DSB SY"); asm volatile ( "ISB SY"); } #endif /* * Execute a CFP RCTX instruction. */ static void _cfprctx_exec(uint64_t raw) { asm volatile ( "ISB SY"); __asm__ volatile ("CFP RCTX, %0" :: "r" (raw)); asm volatile ( "DSB SY"); asm volatile ( "ISB SY"); } /* * Execute a CPP RCTX instruction. */ static void _cpprctx_exec(uint64_t raw) { asm volatile ( "ISB SY"); __asm__ volatile ("CPP RCTX, %0" :: "r" (raw)); asm volatile ( "DSB SY"); asm volatile ( "ISB SY"); } /* * Execute a DVP RCTX instruction. */ static void _dvprctx_exec(uint64_t raw) { asm volatile ( "ISB SY"); __asm__ volatile ("DVP RCTX, %0" :: "r" (raw)); asm volatile ( "DSB SY"); asm volatile ( "ISB SY"); } static void _specres_do_test_std(void (*impl)(uint64_t raw)) { typedef struct { union { struct { uint64_t ASID:16; uint64_t GASID:1; uint64_t :7; uint64_t EL:2; uint64_t NS:1; uint64_t NSE:1; uint64_t :4; uint64_t VMID:16; uint64_t GVMID:1; }; uint64_t raw; }; } specres_ctx; assert(sizeof(specres_ctx) == 8); /* * Test various possible meaningful COSP_RCTX context ID. */ /* el : EL0 / EL1 / EL2. */ for (uint8_t el = 0; el < 3; el++) { /* Always non-secure. */ const uint8_t ns = 1; const uint8_t nse = 0; /* Iterate over some couples of ASIDs / VMIDs. */ for (uint16_t xxid = 0; xxid < 256; xxid++) { const uint16_t asid = (uint16_t) (xxid << 4); const uint16_t vmid = (uint16_t) (256 - (xxid << 4)); /* Test 4 G[AS|VM]ID combinations. */ for (uint8_t bid = 0; bid < 4; bid++) { const uint8_t gasid = bid & 1; const uint8_t gvmid = bid & 2; /* Generate the context descriptor. */ specres_ctx ctx = {0}; ctx.ASID = asid; ctx.GASID = gasid; ctx.EL = el; ctx.NS = ns; ctx.NSE = nse; ctx.VMID = vmid; ctx.GVMID = gvmid; /* Execute the COSP instruction. */ (*impl)(ctx.raw); /* Insert some operation. */ volatile uint8_t sum = 0; for (volatile uint8_t i = 0; i < 64; i++) { sum += i * sum + 3; } /* If el0 is not targetted, just need to do it once. */ if (el != 0) { goto not_el0_skip; } } } /* El0 skip. */ not_el0_skip: ; } } /*** RCTX ***/ static void _rctx_do_test(void) { _specres_do_test_std(&_cfprctx_exec); _specres_do_test_std(&_cpprctx_exec); _specres_do_test_std(&_dvprctx_exec); #if HAS_SPECRES2 _specres_do_test_std(&_cosprctx_exec); #endif } kern_return_t specres_test(void) { /* Basic instructions test. */ _cfprctx_exec(0); _cpprctx_exec(0); _dvprctx_exec(0); #if HAS_SPECRES2 _cosprctx_exec(0); #endif /* More advanced instructions test. */ _rctx_do_test(); return KERN_SUCCESS; } #endif /* HAS_SPECRES */ #if BTI_ENFORCED typedef uint64_t (bti_landing_pad_func_t)(void); typedef uint64_t (bti_shim_func_t)(bti_landing_pad_func_t *); extern bti_shim_func_t arm64_bti_test_jump_shim; extern bti_shim_func_t arm64_bti_test_call_shim; extern bti_landing_pad_func_t arm64_bti_test_func_with_no_landing_pad; extern bti_landing_pad_func_t arm64_bti_test_func_with_call_landing_pad; extern bti_landing_pad_func_t arm64_bti_test_func_with_jump_landing_pad; extern bti_landing_pad_func_t arm64_bti_test_func_with_jump_call_landing_pad; #if __has_feature(ptrauth_returns) extern bti_landing_pad_func_t arm64_bti_test_func_with_pac_landing_pad; #endif /* __has_feature(ptrauth_returns) */ typedef struct arm64_bti_test_func_case { const char *func_str; bti_landing_pad_func_t *func; uint64_t expect_return_value; uint8_t expect_call_ok; uint8_t expect_jump_ok; } arm64_bti_test_func_case_s; static volatile uintptr_t bti_exception_handler_pc = 0; static bool arm64_bti_test_exception_handler(arm_saved_state_t * state) { uint64_t esr = get_saved_state_esr(state); esr_exception_class_t class = ESR_EC(esr); if (class != ESR_EC_BTI_FAIL) { return false; } /* Capture any desired exception metrics */ bti_exception_handler_pc = get_saved_state_pc(state); /* "Cancel" the function call by forging an early return */ set_saved_state_pc(state, get_saved_state_lr(state)); /* Clear BTYPE to prevent taking another exception after ERET */ uint32_t spsr = get_saved_state_cpsr(state); spsr &= ~PSR_BTYPE_MASK; set_saved_state_cpsr(state, spsr); return true; } static void arm64_bti_test_func_with_shim( uint8_t expect_ok, const char *shim_str, bti_shim_func_t *shim, arm64_bti_test_func_case_s *test_case) { uint64_t result = -1; /* Capture BTI exceptions triggered by our target function */ uintptr_t raw_func = (uintptr_t)ptrauth_strip( (void *)test_case->func, ptrauth_key_function_pointer); ml_expect_fault_pc_begin(arm64_bti_test_exception_handler, raw_func); bti_exception_handler_pc = 0; /* * The assembly routines do not support C function type discriminators, so * strip and resign with zero if needed */ bti_landing_pad_func_t *resigned = ptrauth_auth_and_resign( test_case->func, ptrauth_key_function_pointer, ptrauth_type_discriminator(bti_landing_pad_func_t), ptrauth_key_function_pointer, 0); result = shim(resigned); ml_expect_fault_end(); if (!expect_ok && raw_func != bti_exception_handler_pc) { T_FAIL("Expected BTI exception at 0x%llx but got one at %llx instead\n", raw_func, bti_exception_handler_pc); } else if (expect_ok && bti_exception_handler_pc) { T_FAIL("Did not expect BTI exception but got on at 0x%llx\n", bti_exception_handler_pc); } else if (!expect_ok && !bti_exception_handler_pc) { T_FAIL("Failed to hit expected exception!\n"); } else if (expect_ok && result != test_case->expect_return_value) { T_FAIL("Incorrect test function result (expected=%llu, result=%llu\n)", test_case->expect_return_value, result); } else { T_PASS("%s (shim=%s)\n", test_case->func_str, shim_str); } } /** * This test works to ensure that BTI exceptions are raised where expected * and only where they are expected by exhaustively testing all indirect branch * combinations with all landing pad options. */ kern_return_t arm64_bti_test(void) { static arm64_bti_test_func_case_s tests[] = { { .func_str = "arm64_bti_test_func_with_no_landing_pad", .func = &arm64_bti_test_func_with_no_landing_pad, .expect_return_value = 1, .expect_call_ok = 0, .expect_jump_ok = 0, }, { .func_str = "arm64_bti_test_func_with_call_landing_pad", .func = &arm64_bti_test_func_with_call_landing_pad, .expect_return_value = 2, .expect_call_ok = 1, .expect_jump_ok = 0, }, { .func_str = "arm64_bti_test_func_with_jump_landing_pad", .func = &arm64_bti_test_func_with_jump_landing_pad, .expect_return_value = 3, .expect_call_ok = 0, .expect_jump_ok = 1, }, { .func_str = "arm64_bti_test_func_with_jump_call_landing_pad", .func = &arm64_bti_test_func_with_jump_call_landing_pad, .expect_return_value = 4, .expect_call_ok = 1, .expect_jump_ok = 1, }, #if __has_feature(ptrauth_returns) { .func_str = "arm64_bti_test_func_with_pac_landing_pad", .func = &arm64_bti_test_func_with_pac_landing_pad, .expect_return_value = 5, .expect_call_ok = 1, .expect_jump_ok = 0, }, #endif /* __has_feature(ptrauth_returns) */ }; size_t test_count = sizeof(tests) / sizeof(*tests); for (size_t i = 0; i < test_count; i++) { arm64_bti_test_func_case_s *test_case = tests + i; arm64_bti_test_func_with_shim(test_case->expect_call_ok, "arm64_bti_test_call_shim", arm64_bti_test_call_shim, test_case); arm64_bti_test_func_with_shim(test_case->expect_jump_ok, "arm64_bti_test_jump_shim", arm64_bti_test_jump_shim, test_case); } return KERN_SUCCESS; } #endif /* BTI_ENFORCED */ #if CONFIG_SPTM && HAS_MTE && (DEVELOPMENT || DEBUG) /** * Tests MTE in guarded mode by calling into the SPTM with an * XNU-provided pointer. * * Currently supported test cases: * 0. Pass SPTM a pointer with a valid tag --> success * 1. Pass SPTM an untagged pointer from the physical aperture --> panic * 2. Pass SPTM a pointer with an invalid tag --> panic */ static int mte_test_gl2(__unused int64_t test_case, __unused int64_t *out) { return 0; } SYSCTL_TEST_REGISTER(mte_gl2, mte_test_gl2); #endif /* CONFIG_SPTM && HAS_MTE && (DEVELOPMENT || DEBUG) */ /** * Test the speculation guards * We can't easily ensure that the guards actually behave correctly under * speculation, but we can at least ensure that the guards are non-speculatively * correct. */ kern_return_t arm64_speculation_guard_test(void) { uint64_t cookie1_64 = 0x5350454354524521ULL; /* SPECTRE! */ uint64_t cookie2_64 = 0x5941592043505553ULL; /* YAY CPUS */ uint32_t cookie1_32 = (uint32_t)cookie1_64; uint32_t cookie2_32 = (uint32_t)cookie2_64; uint64_t result64 = 0; uint32_t result32 = 0; bool result_valid; /* * Test the zeroing guard * Since failing the guard triggers a panic, we don't actually test that * part as part of the automated tests. */ result64 = 0; SPECULATION_GUARD_ZEROING_XXX( /* out */ result64, /* out_valid */ result_valid, /* value */ cookie1_64, /* cmp_1 */ 0ULL, /* cmp_2 */ 1ULL, /* cc */ "NE"); T_EXPECT(result_valid, "result valid"); T_EXPECT_EQ_ULLONG(result64, cookie1_64, "64, 64 zeroing guard works"); result64 = 0; SPECULATION_GUARD_ZEROING_XWW( /* out */ result64, /* out_valid */ result_valid, /* value */ cookie1_64, /* cmp_1 */ 1U, /* cmp_2 */ 0U, /* cc */ "HI"); T_EXPECT(result_valid, "result valid"); T_EXPECT_EQ_ULLONG(result64, cookie1_64, "64, 32 zeroing guard works"); result32 = 0; SPECULATION_GUARD_ZEROING_WXX( /* out */ result32, /* out_valid */ result_valid, /* value */ cookie1_32, /* cmp_1 */ -1LL, /* cmp_2 */ 4LL, /* cc */ "LT"); T_EXPECT(result_valid, "result valid"); T_EXPECT_EQ_UINT(result32, cookie1_32, "32, 64 zeroing guard works"); result32 = 0; SPECULATION_GUARD_ZEROING_WWW( /* out */ result32, /* out_valid */ result_valid, /* value */ cookie1_32, /* cmp_1 */ 1, /* cmp_2 */ -4, /* cc */ "GT"); T_EXPECT(result_valid, "result valid"); T_EXPECT_EQ_UINT(result32, cookie1_32, "32, 32 zeroing guard works"); result32 = 0x41; SPECULATION_GUARD_ZEROING_WWW( /* out */ result32, /* out_valid */ result_valid, /* value */ cookie1_32, /* cmp_1 */ 1, /* cmp_2 */ -4, /* cc */ "LT"); T_EXPECT(!result_valid, "result invalid"); T_EXPECT_EQ_UINT(result32, 0, "zeroing guard works with failing condition"); /* * Test the selection guard */ result64 = 0; SPECULATION_GUARD_SELECT_XXX( /* out */ result64, /* cmp_1 */ 16ULL, /* cmp_2 */ 32ULL, /* cc */ "EQ", /* sel_1 */ cookie1_64, /* n_cc */ "NE", /* sel_2 */ cookie2_64); T_EXPECT_EQ_ULLONG(result64, cookie2_64, "64, 64 select guard works (1)"); result64 = 0; SPECULATION_GUARD_SELECT_XXX( /* out */ result64, /* cmp_1 */ 32ULL, /* cmp_2 */ 32ULL, /* cc */ "EQ", /* sel_1 */ cookie1_64, /* n_cc */ "NE", /* sel_2 */ cookie2_64); T_EXPECT_EQ_ULLONG(result64, cookie1_64, "64, 64 select guard works (2)"); result32 = 0; SPECULATION_GUARD_SELECT_WXX( /* out */ result32, /* cmp_1 */ 16ULL, /* cmp_2 */ 32ULL, /* cc */ "HI", /* sel_1 */ cookie1_64, /* n_cc */ "LS", /* sel_2 */ cookie2_64); T_EXPECT_EQ_ULLONG(result32, cookie2_32, "32, 64 select guard works (1)"); result32 = 0; SPECULATION_GUARD_SELECT_WXX( /* out */ result32, /* cmp_1 */ 16ULL, /* cmp_2 */ 2ULL, /* cc */ "HI", /* sel_1 */ cookie1_64, /* n_cc */ "LS", /* sel_2 */ cookie2_64); T_EXPECT_EQ_ULLONG(result32, cookie1_32, "32, 64 select guard works (2)"); return KERN_SUCCESS; } extern void arm64_brk_lr_gpr(void); extern void arm64_brk_lr_fault(void); static NOKASAN bool arm64_backtrace_test_fault_handler(arm_saved_state_t * state) { /* Similar setup to backtrace_kernel_sysctl() */ const unsigned int bt_len = 24; const size_t bt_size = sizeof(uint8_t) * bt_len; uint8_t *bt = kalloc_data(bt_size, Z_WAITOK | Z_ZERO); backtrace_info_t packed_info = BTI_NONE; /* Call the backtrace function */ backtrace_packed(BTP_KERN_OFFSET_32, bt, bt_size, NULL, &packed_info); add_saved_state_pc(state, 4); return true; } /** * Make sure EL1 fleh doesn't push a bogus stack frame when LR is being used as * a GPR in the caller. * * This test writes a GPR-like value into LR that is >4GB away from any kernel * address and tries to run backtrace_packed() from a sync handler. * backtrace_packed() has an invariant that all addresses in the stack frame are * within 4GB of the kernel text. */ kern_return_t arm64_backtrace_test(void) { ml_expect_fault_pc_begin(arm64_backtrace_test_fault_handler, (uintptr_t)&arm64_brk_lr_fault); arm64_brk_lr_gpr(); ml_expect_fault_end(); #if CONFIG_SPTM && (DEVELOPMENT || DEBUG) /* Reset the debug data so it can be filled later if needed */ debug_panic_lockdown_initiator_state.initiator_pc = 0; #endif /* CONFIG_SPTM && (DEVELOPMENT || DEBUG) */ return KERN_SUCCESS; } |