Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 | /* * Copyright (c) 2012-2023 Apple Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ #include <arm/caches_internal.h> #include <arm/cpu_data.h> #include <arm/cpu_data_internal.h> #include <arm/misc_protos.h> #include <arm/thread.h> #include <arm/rtclock.h> #include <arm/trap_internal.h> /* for IS_ARM_GDB_TRAP() et al */ #include <arm64/proc_reg.h> #include <arm64/machine_machdep.h> #include <kern/cpc.h> #include <arm64/instructions.h> #include <kern/debug.h> #include <kern/exc_guard.h> #include <kern/restartable.h> #include <kern/socd_client.h> #include <kern/task.h> #include <kern/thread.h> #include <kern/zalloc_internal.h> #include <mach/exception.h> #include <mach/arm/traps.h> #include <mach/vm_types.h> #include <mach/machine/thread_status.h> #include <machine/atomic.h> #include <machine/limits.h> #include <machine/machine_cpc.h> #include <pexpert/arm/protos.h> #include <pexpert/arm64/apple_arm64_cpu.h> #include <pexpert/arm64/apple_arm64_regs.h> #include <pexpert/arm64/board_config.h> #include <vm/vm_page.h> #include <vm/pmap.h> #include <vm/vm_fault.h> #include <vm/vm_kern.h> #include <vm/vm_map_xnu.h> #include <sys/errno.h> #include <sys/kdebug.h> #include <sys/code_signing.h> #include <sys/reason.h> #include <kperf/kperf.h> #include <kern/policy_internal.h> #if CONFIG_TELEMETRY #include <kern/telemetry.h> #include <kern/trap_telemetry.h> #endif #include <prng/entropy.h> #include <arm64/platform_error_handler.h> #if KASAN_TBI #include <san/kasan.h> #endif /* KASAN_TBI */ #if CONFIG_UBSAN_MINIMAL #include <san/ubsan_minimal.h> #endif #if HAS_MTE #include <arm64/mte_xnu.h> #endif /* HAS_MTE */ #ifndef __arm64__ #error Should only be compiling for arm64. #endif #if DEBUG || DEVELOPMENT #define HAS_TELEMETRY_KERNEL_BRK 1 #endif #define TEST_CONTEXT32_SANITY(context) \ (context->ss.ash.flavor == ARM_SAVED_STATE32 && context->ss.ash.count == ARM_SAVED_STATE32_COUNT && \ context->ns.nsh.flavor == ARM_NEON_SAVED_STATE32 && context->ns.nsh.count == ARM_NEON_SAVED_STATE32_COUNT) #define TEST_CONTEXT64_SANITY(context) \ (context->ss.ash.flavor == ARM_SAVED_STATE64 && context->ss.ash.count == ARM_SAVED_STATE64_COUNT && \ context->ns.nsh.flavor == ARM_NEON_SAVED_STATE64 && context->ns.nsh.count == ARM_NEON_SAVED_STATE64_COUNT) #define ASSERT_CONTEXT_SANITY(context) \ assert(TEST_CONTEXT32_SANITY(context) || TEST_CONTEXT64_SANITY(context)) #define COPYIN(src, dst, size) \ (PSR64_IS_KERNEL(get_saved_state_cpsr(state))) ? \ copyin_kern(src, dst, size) : \ copyin(src, dst, size) #define COPYOUT(src, dst, size) \ (PSR64_IS_KERNEL(get_saved_state_cpsr(state))) ? \ copyout_kern(src, dst, size) : \ copyout(src, dst, size) // Below is for concatenating a string param to a string literal #define STR1(x) #x #define STR(x) STR1(x) #define ARM64_KDBG_CODE_KERNEL (0 << 8) #define ARM64_KDBG_CODE_USER (1 << 8) #define ARM64_KDBG_CODE_GUEST (2 << 8) _Static_assert(ARM64_KDBG_CODE_GUEST <= KDBG_CODE_MAX, "arm64 KDBG trace codes out of range"); _Static_assert(ARM64_KDBG_CODE_GUEST <= UINT16_MAX, "arm64 KDBG trace codes out of range"); void panic_with_thread_kernel_state(const char *msg, arm_saved_state_t *ss) __abortlike; void sleh_synchronous_sp1(arm_context_t *, uint64_t, vm_offset_t) __abortlike; void sleh_synchronous(arm_context_t *, uint64_t, vm_offset_t, bool); void sleh_irq(arm_saved_state_t *); void sleh_fiq(arm_saved_state_t *); void sleh_serror(arm_context_t *context, uint64_t esr, vm_offset_t far); void sleh_invalid_stack(arm_context_t *context, uint64_t esr, vm_offset_t far) __dead2; static void sleh_interrupt_handler_prologue(arm_saved_state_t *, unsigned int type); static void sleh_interrupt_handler_epilogue(void); static void handle_svc(arm_saved_state_t *); static void handle_mach_absolute_time_trap(arm_saved_state_t *); static void handle_mach_continuous_time_trap(arm_saved_state_t *); static void handle_msr_trap(arm_saved_state_t *state, uint64_t esr); #if __has_feature(ptrauth_calls) static void handle_pac_fail(arm_saved_state_t *state, uint64_t esr) __dead2; static inline uint64_t fault_addr_bitmask(unsigned int bit_from, unsigned int bit_to); #endif static void handle_bti_fail(arm_saved_state_t *state, uint64_t esr); extern kern_return_t arm_fast_fault(pmap_t, vm_map_address_t, vm_prot_t, bool, bool); static void handle_uncategorized(arm_saved_state_t *); static void handle_kernel_breakpoint(arm_saved_state_t *, uint64_t); static void handle_user_breakpoint(arm_saved_state_t *, uint64_t) __dead2; typedef void (*abort_inspector_t)(uint32_t, fault_status_t *, vm_prot_t *); static void inspect_instruction_abort(uint32_t, fault_status_t *, vm_prot_t *); static void inspect_data_abort(uint32_t, fault_status_t *, vm_prot_t *); static int is_vm_fault(fault_status_t); static int is_translation_fault(fault_status_t); static int is_alignment_fault(fault_status_t); typedef void (*abort_handler_t)(arm_saved_state_t *, uint64_t, vm_offset_t, fault_status_t, vm_prot_t, expected_fault_handler_t); static void handle_user_abort(arm_saved_state_t *, uint64_t, vm_offset_t, fault_status_t, vm_prot_t, expected_fault_handler_t); static void handle_kernel_abort(arm_saved_state_t *, uint64_t, vm_offset_t, fault_status_t, vm_prot_t, expected_fault_handler_t); static void handle_pc_align(arm_saved_state_t *ss) __dead2; static void handle_sp_align(arm_saved_state_t *ss) __dead2; static void handle_sw_step_debug(arm_saved_state_t *ss) __dead2; static void handle_wf_trap(arm_saved_state_t *ss) __dead2; static void handle_fp_trap(arm_saved_state_t *ss, uint64_t esr) __dead2; #if HAS_ARM_FEAT_SME static void handle_sme_trap(arm_saved_state_t *state, uint64_t esr); #endif /* HAS_ARM_FEAT_SME */ static void handle_watchpoint(vm_offset_t fault_addr) __dead2; static void handle_abort(arm_saved_state_t *, uint64_t, vm_offset_t, abort_inspector_t, abort_handler_t, expected_fault_handler_t); static void handle_user_trapped_instruction32(arm_saved_state_t *, uint64_t esr) __dead2; static void handle_simd_trap(arm_saved_state_t *, uint64_t esr) __dead2; extern void current_cached_proc_cred_update(void); void mach_syscall_trace_exit(unsigned int retval, unsigned int call_number); struct proc; typedef uint32_t arm64_instr_t; extern void unix_syscall(struct arm_saved_state * regs, thread_t thread_act, struct proc * proc); extern void mach_syscall(struct arm_saved_state*); #if CONFIG_SPTM bool sleh_panic_lockdown_should_initiate_el1_sp0_sync(uint64_t esr, uint64_t elr, uint64_t far, uint64_t spsr); #endif /* CONFIG_SPTM */ #if CONFIG_DTRACE extern kern_return_t dtrace_user_probe(arm_saved_state_t* regs); extern boolean_t dtrace_tally_fault(user_addr_t); /* * Traps for userland processing. Can't include bsd/sys/fasttrap_isa.h, so copy * and paste the trap instructions * over from that file. Need to keep these in sync! */ #define FASTTRAP_ARM32_INSTR 0xe7ffdefc #define FASTTRAP_THUMB32_INSTR 0xdefc #define FASTTRAP_ARM64_INSTR 0xe7eeee7e #define FASTTRAP_ARM32_RET_INSTR 0xe7ffdefb #define FASTTRAP_THUMB32_RET_INSTR 0xdefb #define FASTTRAP_ARM64_RET_INSTR 0xe7eeee7d /* See <rdar://problem/4613924> */ perfCallback tempDTraceTrapHook = NULL; /* Pointer to DTrace fbt trap hook routine */ #endif extern void arm64_thread_exception_return(void) __dead2; #if defined(APPLETYPHOON) #define CPU_NAME "Typhoon" #elif defined(APPLETWISTER) #define CPU_NAME "Twister" #elif defined(APPLEHURRICANE) #define CPU_NAME "Hurricane" #elif defined(APPLELIGHTNING) #define CPU_NAME "Lightning" #elif defined(APPLEEVEREST) #define CPU_NAME "Everest" #elif defined(APPLEH16) #define CPU_NAME "AppleH16" #elif defined(APPLEACC8) #define CPU_NAME "AppleACC8" #else #define CPU_NAME "Unknown" #endif #if (CONFIG_KERNEL_INTEGRITY && defined(KERNEL_INTEGRITY_WT)) #define ESR_WT_SERROR(esr) (((esr) & 0xffffff00) == 0xbf575400) #define ESR_WT_REASON(esr) ((esr) & 0xff) #define WT_REASON_NONE 0 #define WT_REASON_INTEGRITY_FAIL 1 #define WT_REASON_BAD_SYSCALL 2 #define WT_REASON_NOT_LOCKED 3 #define WT_REASON_ALREADY_LOCKED 4 #define WT_REASON_SW_REQ 5 #define WT_REASON_PT_INVALID 6 #define WT_REASON_PT_VIOLATION 7 #define WT_REASON_REG_VIOLATION 8 #endif #if defined(HAS_IPI) void cpu_signal_handler(void); extern unsigned int gFastIPI; #endif /* defined(HAS_IPI) */ static arm_saved_state64_t *original_faulting_state = NULL; /* * A self-restrict mode describes which (if any, or several) special permissive * modes are active at the time of a fault. This, in part, determines how the * fault will be handled. */ __options_closed_decl(self_restrict_mode_t, unsigned int, { /* None of the special modes are active. */ SELF_RESTRICT_NONE = 0U, /* * Any of the other more specific modes, this should be active if any other * mode is active. */ SELF_RESTRICT_ANY = (1U << 0), /* Reserved */ /* Reserved */ }); TUNABLE(bool, fp_exceptions_enabled, "-fp_exceptions", false); extern const vm_map_address_t physmap_base; extern const vm_map_address_t physmap_end; extern vm_offset_t static_memory_end; /* * Fault copyio_recovery_entry in copyin/copyout routines. * * Offets are expressed in bytes from ©_recovery_table */ struct copyio_recovery_entry { ptrdiff_t cre_start; ptrdiff_t cre_end; ptrdiff_t cre_recovery; #if HAS_MTE uint8_t recover_from_kernel_read_tag_check_fault; uint8_t recover_from_kernel_write_tag_check_fault; uint8_t padding[6]; #endif }; extern struct copyio_recovery_entry copyio_recover_table[]; extern struct copyio_recovery_entry copyio_recover_table_end[]; static inline ptrdiff_t copyio_recovery_offset(uintptr_t addr) { return (ptrdiff_t)(addr - (uintptr_t)copyio_recover_table); } #if !HAS_APPLE_PAC static inline uintptr_t copyio_recovery_addr(ptrdiff_t offset) { return (uintptr_t)copyio_recover_table + (uintptr_t)offset; } #endif static inline struct copyio_recovery_entry * find_copyio_recovery_entry(uint64_t pc) { ptrdiff_t offset = copyio_recovery_offset(pc); struct copyio_recovery_entry *e; for (e = copyio_recover_table; e < copyio_recover_table_end; e++) { if (offset >= e->cre_start && offset < e->cre_end) { return e; } } return NULL; } static inline int is_vm_fault(fault_status_t status) { switch (status) { case FSC_TRANSLATION_FAULT_L0: case FSC_TRANSLATION_FAULT_L1: case FSC_TRANSLATION_FAULT_L2: case FSC_TRANSLATION_FAULT_L3: case FSC_ACCESS_FLAG_FAULT_L1: case FSC_ACCESS_FLAG_FAULT_L2: case FSC_ACCESS_FLAG_FAULT_L3: case FSC_PERMISSION_FAULT_L1: case FSC_PERMISSION_FAULT_L2: case FSC_PERMISSION_FAULT_L3: return TRUE; default: return FALSE; } } static inline int is_translation_fault(fault_status_t status) { switch (status) { case FSC_TRANSLATION_FAULT_L0: case FSC_TRANSLATION_FAULT_L1: case FSC_TRANSLATION_FAULT_L2: case FSC_TRANSLATION_FAULT_L3: return TRUE; default: return FALSE; } } static inline int is_permission_fault(fault_status_t status) { switch (status) { case FSC_PERMISSION_FAULT_L1: case FSC_PERMISSION_FAULT_L2: case FSC_PERMISSION_FAULT_L3: return TRUE; default: return FALSE; } } static inline int is_alignment_fault(fault_status_t status) { return status == FSC_ALIGNMENT_FAULT; } static inline int is_parity_error(fault_status_t status) { switch (status) { #if defined(ARM64_BOARD_CONFIG_T6020) /* * H14 Erratum (rdar://61553243): Despite having FEAT_RAS implemented, * FSC_SYNC_PARITY_X can be reported for data and instruction aborts * and should be interpreted as FSC_SYNC_EXT_ABORT_x */ #else /* * TODO: According to ARM ARM, Async Parity (0b011001) is a DFSC that is * only applicable to AArch32 HSR register. Can this be removed? */ case FSC_ASYNC_PARITY: case FSC_SYNC_PARITY: case FSC_SYNC_PARITY_TT_L1: case FSC_SYNC_PARITY_TT_L2: case FSC_SYNC_PARITY_TT_L3: return TRUE; #endif default: return FALSE; } } static inline int is_sync_external_abort(fault_status_t status) { switch (status) { #if defined(ARM64_BOARD_CONFIG_T6020) /* * H14 Erratum (rdar://61553243): Despite having FEAT_RAS implemented, * FSC_SYNC_PARITY_x can be reported for data and instruction aborts * and should be interpreted as FSC_SYNC_EXT_ABORT_x */ case FSC_SYNC_PARITY: #endif /* defined(ARM64_BOARD_CONFIG_T6020) */ case FSC_SYNC_EXT_ABORT: return TRUE; default: return FALSE; } } static inline int is_table_walk_error(fault_status_t status) { switch (status) { case FSC_SYNC_EXT_ABORT_TT_L1: case FSC_SYNC_EXT_ABORT_TT_L2: case FSC_SYNC_EXT_ABORT_TT_L3: #if defined(ARM64_BOARD_CONFIG_T6020) /* * H14 Erratum(rdar://61553243): Despite having FEAT_RAS implemented, * FSC_SYNC_PARITY_x can be reported for data and instruction aborts * and should be interpreted as FSC_SYNC_EXT_ABORT_x */ case FSC_SYNC_PARITY_TT_L1: case FSC_SYNC_PARITY_TT_L2: case FSC_SYNC_PARITY_TT_L3: #endif /* defined(ARM64_BOARD_CONFIG_T6020) */ return TRUE; default: return FALSE; } } #if HAS_MTE static void mte_send_sync_soft_mode_exception(thread_t thread, vm_map_address_t address, mach_exception_data_type_t mx_code); static inline int is_tag_check_fault(fault_status_t status) { return status == FSC_SYNC_TAG_CHECK_FAULT; } static inline bool is_canonical_memory_permission_fault(uint64_t esr) { return ESR_ISS2(esr) & ISS2_DA_TND; } static inline uint16_t tag_check_fault_type(pmap_t pmap, vm_map_address_t fault_address) { if (pmap_is_tagged_mapping(pmap, pmap_strip_addr(pmap, fault_address))) { return EXC_ARM_MTE_TAGCHECK_FAIL; } else { return EXC_ARM_MTE_CANONICAL_FAIL; } } #endif /* HAS_MTE */ static inline int is_servicible_fault(fault_status_t status, uint64_t esr, vm_offset_t fault_addr, pmap_t pmap) { #if HAS_MTE if (is_tag_check_fault(status)) { /* * Never called from the context of a kernel thread with its map switched * to a user map, so current_task() is always the task responsible for * the fault. */ task_t current = current_task_early(); /* * If the task is running in soft mode, we can "service" the fault by * clearing TCF0 and letting the thread try again. */ if (current && task_has_sec_soft_mode(current)) { return TRUE; } } if (is_canonical_memory_permission_fault(esr)) { /* * This fault was caused by a tag write to canonically tagged * memory. Trying to fault in the data page won't do any good. */ return FALSE; } #else #pragma unused(esr) #endif #pragma unused(fault_addr, pmap) return is_vm_fault(status); } __dead2 __unused static void arm64_implementation_specific_error(arm_saved_state_t *state, uint64_t esr, vm_offset_t far) { #pragma unused (state, esr, far) panic_plain("Unhandled implementation specific error\n"); } #if CONFIG_KERNEL_INTEGRITY #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wunused-parameter" static void kernel_integrity_error_handler(uint64_t esr, vm_offset_t far) { #if defined(KERNEL_INTEGRITY_WT) #if (DEVELOPMENT || DEBUG) if (ESR_WT_SERROR(esr)) { switch (ESR_WT_REASON(esr)) { case WT_REASON_INTEGRITY_FAIL: panic_plain("Kernel integrity, violation in frame 0x%016lx.", far); case WT_REASON_BAD_SYSCALL: panic_plain("Kernel integrity, bad syscall."); case WT_REASON_NOT_LOCKED: panic_plain("Kernel integrity, not locked."); case WT_REASON_ALREADY_LOCKED: panic_plain("Kernel integrity, already locked."); case WT_REASON_SW_REQ: panic_plain("Kernel integrity, software request."); case WT_REASON_PT_INVALID: panic_plain("Kernel integrity, encountered invalid TTE/PTE while " "walking 0x%016lx.", far); case WT_REASON_PT_VIOLATION: panic_plain("Kernel integrity, violation in mapping 0x%016lx.", far); case WT_REASON_REG_VIOLATION: panic_plain("Kernel integrity, violation in system register %d.", (unsigned) far); default: panic_plain("Kernel integrity, unknown (esr=0x%08llx).", esr); } } #else if (ESR_WT_SERROR(esr)) { panic_plain("SError esr: 0x%08llx far: 0x%016lx.", esr, far); } #endif #endif } #pragma clang diagnostic pop #endif static void arm64_platform_error(arm_saved_state_t *state, uint64_t esr, vm_offset_t far, platform_error_source_t source) { #if CONFIG_KERNEL_INTEGRITY kernel_integrity_error_handler(esr, far); #endif (void)source; cpu_data_t *cdp = getCpuDatap(); if (PE_handle_platform_error(far)) { return; } else if (cdp->platform_error_handler != NULL) { cdp->platform_error_handler(cdp->cpu_id, far); } else { arm64_implementation_specific_error(state, esr, far); } } void panic_with_thread_kernel_state(const char *msg, arm_saved_state_t *ss) { boolean_t ss_valid; ss_valid = is_saved_state64(ss); arm_saved_state64_t *state = saved_state64(ss); os_atomic_cmpxchg(&original_faulting_state, NULL, state, seq_cst); // rdar://80659177 // Read SoCD tracepoints up to twice — once the first time we call panic and // another time if we encounter a nested panic after that. static int twice = 2; if (twice > 0) { twice--; SOCD_TRACE_XNU(KERNEL_STATE_PANIC, SOCD_TRACE_MODE_STICKY_TRACEPOINT, ADDR(state->pc), PACK_LSB(VALUE(state->lr), VALUE(ss_valid)), PACK_2X32(VALUE(state->esr), VALUE(state->cpsr)), VALUE(state->far)); } panic_plain("%s at pc 0x%016llx, lr 0x%016llx (saved state: %p%s)\n" "\t x0: 0x%016llx x1: 0x%016llx x2: 0x%016llx x3: 0x%016llx\n" "\t x4: 0x%016llx x5: 0x%016llx x6: 0x%016llx x7: 0x%016llx\n" "\t x8: 0x%016llx x9: 0x%016llx x10: 0x%016llx x11: 0x%016llx\n" "\t x12: 0x%016llx x13: 0x%016llx x14: 0x%016llx x15: 0x%016llx\n" "\t x16: 0x%016llx x17: 0x%016llx x18: 0x%016llx x19: 0x%016llx\n" "\t x20: 0x%016llx x21: 0x%016llx x22: 0x%016llx x23: 0x%016llx\n" "\t x24: 0x%016llx x25: 0x%016llx x26: 0x%016llx x27: 0x%016llx\n" "\t x28: 0x%016llx fp: 0x%016llx lr: 0x%016llx sp: 0x%016llx\n" "\t pc: 0x%016llx cpsr: 0x%08x esr: 0x%016llx far: 0x%016llx\n", msg, state->pc, state->lr, ss, (ss_valid ? "" : " INVALID"), state->x[0], state->x[1], state->x[2], state->x[3], state->x[4], state->x[5], state->x[6], state->x[7], state->x[8], state->x[9], state->x[10], state->x[11], state->x[12], state->x[13], state->x[14], state->x[15], state->x[16], state->x[17], state->x[18], state->x[19], state->x[20], state->x[21], state->x[22], state->x[23], state->x[24], state->x[25], state->x[26], state->x[27], state->x[28], state->fp, state->lr, state->sp, state->pc, state->cpsr, state->esr, state->far); } void sleh_synchronous_sp1(arm_context_t *context, uint64_t esr, vm_offset_t far __unused) { esr_exception_class_t class = ESR_EC(esr); arm_saved_state_t * state = &context->ss; switch (class) { case ESR_EC_UNCATEGORIZED: { #if (DEVELOPMENT || DEBUG) uint32_t instr = *((uint32_t*)get_saved_state_pc(state)); if (IS_ARM_GDB_TRAP(instr)) { DebuggerCall(EXC_BREAKPOINT, state); } OS_FALLTHROUGH; // panic if we return from the debugger #else panic_with_thread_kernel_state("Unexpected debugger trap while SP1 selected", state); #endif /* (DEVELOPMENT || DEBUG) */ } default: panic_with_thread_kernel_state("Synchronous exception taken while SP1 selected", state); } } __attribute__((noreturn)) void thread_exception_return(void) { thread_t thread = current_thread(); if (thread->machine.exception_trace_code != 0) { KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE, MACHDBG_CODE(DBG_MACH_EXCP_SYNC_ARM, thread->machine.exception_trace_code) | DBG_FUNC_END, 0, 0, 0, 0, 0); thread->machine.exception_trace_code = 0; } thread->machine.el0_synchronous_trap = false; #if KASAN_TBI kasan_unpoison_curstack(true); #endif /* KASAN_TBI */ arm64_thread_exception_return(); __builtin_unreachable(); } /* * check whether task vtimers are running and set thread and CPU BSD AST * * must be called with interrupts masked so updates of fields are atomic * must be emitted inline to avoid generating an FBT probe on the exception path * */ __attribute__((__always_inline__)) static inline void task_vtimer_check(thread_t thread) { task_t task = get_threadtask_early(thread); if (__improbable(task != NULL && task->vtimers)) { thread_ast_set(thread, AST_BSD); thread->machine.CpuDatap->cpu_pending_ast |= AST_BSD; } } #if MACH_ASSERT /** * A version of get_preemption_level() that works in early boot. * * If an exception is raised in early boot before the initial thread has been * set up, then calling get_preemption_level() in the SLEH will trigger an * infinitely-recursing exception. This function handles this edge case. */ static inline int sleh_get_preemption_level(void) { if (__improbable(current_thread() == NULL)) { return 0; } return get_preemption_level(); } #endif // MACH_ASSERT static inline bool is_platform_error(uint64_t esr) { esr_exception_class_t class = ESR_EC(esr); uint32_t iss = ESR_ISS(esr); fault_status_t fault_code; if (class == ESR_EC_DABORT_EL0 || class == ESR_EC_DABORT_EL1) { fault_code = ISS_DA_FSC(iss); } else if (class == ESR_EC_IABORT_EL0 || class == ESR_EC_IABORT_EL1) { fault_code = ISS_IA_FSC(iss); } else { return false; } return is_parity_error(fault_code) || is_sync_external_abort(fault_code) || is_table_walk_error(fault_code); } void sleh_synchronous(arm_context_t *context, uint64_t esr, vm_offset_t far, __unused bool did_initiate_panic_lockdown) { esr_exception_class_t class = ESR_EC(esr); arm_saved_state_t * state = &context->ss; thread_t thread = current_thread(); #if MACH_ASSERT int preemption_level = sleh_get_preemption_level(); #endif expected_fault_handler_t expected_fault_handler = NULL; #ifdef CONFIG_XNUPOST expected_fault_handler_t saved_expected_fault_handler = NULL; uintptr_t saved_expected_fault_addr = 0; uintptr_t saved_expected_fault_pc = 0; #endif /* CONFIG_XNUPOST */ ASSERT_CONTEXT_SANITY(context); task_vtimer_check(thread); #if CONFIG_DTRACE /* * Handle kernel DTrace probes as early as possible to minimize the likelihood * that this path will itself trigger a DTrace probe, which would lead to infinite * probe recursion. */ if (__improbable((class == ESR_EC_UNCATEGORIZED) && tempDTraceTrapHook && (tempDTraceTrapHook(EXC_BAD_INSTRUCTION, state, 0, 0) == KERN_SUCCESS))) { #if CONFIG_SPTM if (__improbable(did_initiate_panic_lockdown)) { panic("Unexpectedly initiated lockdown for DTrace probe?"); } #endif return; } #endif bool is_user = PSR64_IS_USER(get_saved_state_cpsr(state)); #if CONFIG_SPTM // Lockdown should only be initiated for kernel exceptions assert(!(is_user && did_initiate_panic_lockdown)); #endif /* CONFIG_SPTM */ /* * Use KERNEL_DEBUG_CONSTANT_IST here to avoid producing tracepoints * that would disclose the behavior of PT_DENY_ATTACH processes. */ if (is_user) { /* Sanitize FAR (but only if the exception was taken from userspace) */ switch (class) { case ESR_EC_IABORT_EL1: case ESR_EC_IABORT_EL0: /* If this is a SEA, since we can't trust FnV, just clear FAR from the save area. */ if (ISS_IA_FSC(ESR_ISS(esr)) == FSC_SYNC_EXT_ABORT) { saved_state64(state)->far = 0; } break; case ESR_EC_DABORT_EL1: case ESR_EC_DABORT_EL0: /* If this is a SEA, since we can't trust FnV, just clear FAR from the save area. */ if (ISS_DA_FSC(ESR_ISS(esr)) == FSC_SYNC_EXT_ABORT) { saved_state64(state)->far = 0; } break; case ESR_EC_WATCHPT_MATCH_EL1: case ESR_EC_WATCHPT_MATCH_EL0: case ESR_EC_PC_ALIGN: break; /* FAR_ELx is valid */ default: saved_state64(state)->far = 0; break; } thread->machine.exception_trace_code = (uint16_t)(ARM64_KDBG_CODE_USER | class); KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE, MACHDBG_CODE(DBG_MACH_EXCP_SYNC_ARM, thread->machine.exception_trace_code) | DBG_FUNC_START, esr, far, get_saved_state_pc(state), 0, 0); } else { KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE, MACHDBG_CODE(DBG_MACH_EXCP_SYNC_ARM, ARM64_KDBG_CODE_KERNEL | class) | DBG_FUNC_START, esr, VM_KERNEL_ADDRHIDE(far), VM_KERNEL_UNSLIDE(get_saved_state_pc(state)), 0, 0); } if (__improbable(ESR_INSTR_IS_2BYTES(esr))) { /* * We no longer support 32-bit, which means no 2-byte * instructions. */ if (is_user) { panic("Exception on 2-byte instruction, " "context=%p, esr=%#llx, far=%p", context, esr, (void *)far); } else { panic_with_thread_kernel_state("Exception on 2-byte instruction", state); } } #ifdef CONFIG_XNUPOST if (thread->machine.expected_fault_handler != NULL) { bool matching_fault_pc = false; saved_expected_fault_handler = thread->machine.expected_fault_handler; saved_expected_fault_addr = thread->machine.expected_fault_addr; saved_expected_fault_pc = thread->machine.expected_fault_pc; thread->machine.expected_fault_handler = NULL; thread->machine.expected_fault_addr = 0; thread->machine.expected_fault_pc = 0; #if __has_feature(ptrauth_calls) /* * Compare only the bits of PC which make up the virtual address. * This ignores the upper bits, which may have been corrupted by HW in * platform dependent ways to signal pointer authentication fault. */ uint64_t fault_addr_mask = fault_addr_bitmask(0, 64 - T1SZ_BOOT - 1); uint64_t masked_expected_pc = saved_expected_fault_pc & fault_addr_mask; uint64_t masked_saved_pc = get_saved_state_pc(state) & fault_addr_mask; matching_fault_pc = masked_expected_pc == masked_saved_pc; #else matching_fault_pc = (saved_expected_fault_pc == get_saved_state_pc(state)); #endif /* ptrauth_call */ if (saved_expected_fault_addr == far || matching_fault_pc) { expected_fault_handler = saved_expected_fault_handler; } } #endif /* CONFIG_XNUPOST */ if (__improbable(is_platform_error(esr))) { /* * Must gather error info in platform error handler before * thread is preempted to another core/cluster to guarantee * accurate error details */ arm64_platform_error(state, esr, far, PLAT_ERR_SRC_SYNC); #if CONFIG_SPTM if (__improbable(did_initiate_panic_lockdown)) { panic("Panic lockdown initiated for platform error"); } #endif return; } if (is_user && class == ESR_EC_DABORT_EL0) { thread_reset_pcs_will_fault(thread); } #if CONFIG_SPTM if (__improbable(did_initiate_panic_lockdown && current_thread() != NULL)) { /* * If we initiated panic lockdown, we must disable preemption before * enabling interrupts. While unlikely, preempting the panicked thread * after lockdown has occurred may hang the system if all cores end up * blocked while attempting to return to user space. */ disable_preemption(); } #endif /* CONFIG_SPTM */ /* Inherit the interrupt masks from previous context */ if (SPSR_INTERRUPTS_ENABLED(get_saved_state_cpsr(state))) { ml_set_interrupts_enabled(TRUE); } if (is_user) { thread->machine.el0_synchronous_trap = true; } switch (class) { case ESR_EC_SVC_64: if (!is_saved_state64(state) || !is_user) { panic("Invalid SVC_64 context"); } handle_svc(state); break; case ESR_EC_DABORT_EL0: handle_abort(state, esr, far, inspect_data_abort, handle_user_abort, expected_fault_handler); break; case ESR_EC_MSR_TRAP: handle_msr_trap(state, esr); break; /** * Some APPLEVIRTUALPLATFORM targets do not specify armv8.6, but it's still possible for * them to be hosted by a host that implements ARM_FPAC. There's no way for such a host * to disable it or trap it without substantial performance penalty. Therefore, the FPAC * handler here needs to be built into the guest kernels to prevent the exception to fall * through. */ #if __has_feature(ptrauth_calls) case ESR_EC_PAC_FAIL: #ifdef CONFIG_XNUPOST if (expected_fault_handler != NULL && expected_fault_handler(state)) { break; } #endif /* CONFIG_XNUPOST */ handle_pac_fail(state, esr); __builtin_unreachable(); #endif /* __has_feature(ptrauth_calls) */ #if HAS_ARM_FEAT_SME case ESR_EC_SME: handle_sme_trap(state, esr); break; #endif /* HAS_ARM_FEAT_SME */ case ESR_EC_IABORT_EL0: handle_abort(state, esr, far, inspect_instruction_abort, handle_user_abort, expected_fault_handler); break; case ESR_EC_IABORT_EL1: #ifdef CONFIG_XNUPOST if ((expected_fault_handler != NULL) && expected_fault_handler(state)) { break; } #endif /* CONFIG_XNUPOST */ panic_with_thread_kernel_state("Kernel instruction fetch abort", state); case ESR_EC_PC_ALIGN: handle_pc_align(state); __builtin_unreachable(); case ESR_EC_DABORT_EL1: handle_abort(state, esr, far, inspect_data_abort, handle_kernel_abort, expected_fault_handler); break; case ESR_EC_UNCATEGORIZED: assert(!ESR_ISS(esr)); #if CONFIG_XNUPOST if (!is_user && (expected_fault_handler != NULL) && expected_fault_handler(state)) { /* * The fault handler accepted the exception and handled it on its * own. Don't trap to the debugger/panic. */ break; } #endif /* CONFIG_XNUPOST */ handle_uncategorized(&context->ss); break; case ESR_EC_SP_ALIGN: handle_sp_align(state); __builtin_unreachable(); case ESR_EC_BKPT_AARCH32: handle_user_breakpoint(state, esr); __builtin_unreachable(); case ESR_EC_BRK_AARCH64: #ifdef CONFIG_XNUPOST if ((expected_fault_handler != NULL) && expected_fault_handler(state)) { break; } #endif /* CONFIG_XNUPOST */ if (PSR64_IS_KERNEL(get_saved_state_cpsr(state))) { handle_kernel_breakpoint(state, esr); break; } else { handle_user_breakpoint(state, esr); __builtin_unreachable(); } case ESR_EC_BKPT_REG_MATCH_EL0: if (FSC_DEBUG_FAULT == ISS_SSDE_FSC(esr)) { handle_user_breakpoint(state, esr); } panic("Unsupported Class %u event code. state=%p class=%u esr=%llu far=%p", class, state, class, esr, (void *)far); __builtin_unreachable(); case ESR_EC_BKPT_REG_MATCH_EL1: panic_with_thread_kernel_state("Hardware Breakpoint Debug exception from kernel. Panic (by design)", state); __builtin_unreachable(); case ESR_EC_SW_STEP_DEBUG_EL0: if (FSC_DEBUG_FAULT == ISS_SSDE_FSC(esr)) { handle_sw_step_debug(state); } panic("Unsupported Class %u event code. state=%p class=%u esr=%llu far=%p", class, state, class, esr, (void *)far); __builtin_unreachable(); case ESR_EC_SW_STEP_DEBUG_EL1: panic_with_thread_kernel_state("Software Step Debug exception from kernel. Panic (by design)", state); __builtin_unreachable(); case ESR_EC_WATCHPT_MATCH_EL0: if (FSC_DEBUG_FAULT == ISS_SSDE_FSC(esr)) { handle_watchpoint(far); } panic("Unsupported Class %u event code. state=%p class=%u esr=%llu far=%p", class, state, class, esr, (void *)far); __builtin_unreachable(); case ESR_EC_WATCHPT_MATCH_EL1: /* * If we hit a watchpoint in kernel mode, probably in a copyin/copyout which we don't want to * abort. Turn off watchpoints and keep going; we'll turn them back on in return_from_exception.. */ if (FSC_DEBUG_FAULT == ISS_SSDE_FSC(esr)) { arm_debug_set(NULL); break; /* return to first level handler */ } panic("Unsupported Class %u event code. state=%p class=%u esr=%llu far=%p", class, state, class, esr, (void *)far); __builtin_unreachable(); case ESR_EC_TRAP_SIMD_FP: handle_simd_trap(state, esr); __builtin_unreachable(); case ESR_EC_ILLEGAL_INSTR_SET: panic("Illegal instruction set exception. state=%p class=%u esr=%llu far=%p spsr=0x%x", state, class, esr, (void *)far, get_saved_state_cpsr(state)); __builtin_unreachable(); case ESR_EC_MCR_MRC_CP15_TRAP: case ESR_EC_MCRR_MRRC_CP15_TRAP: case ESR_EC_MCR_MRC_CP14_TRAP: case ESR_EC_LDC_STC_CP14_TRAP: case ESR_EC_MCRR_MRRC_CP14_TRAP: handle_user_trapped_instruction32(state, esr); __builtin_unreachable(); case ESR_EC_WFI_WFE: // Use of WFI or WFE instruction when they have been disabled for EL0 handle_wf_trap(state); __builtin_unreachable(); case ESR_EC_FLOATING_POINT_64: handle_fp_trap(state, esr); __builtin_unreachable(); case ESR_EC_BTI_FAIL: #ifdef CONFIG_XNUPOST if ((expected_fault_handler != NULL) && expected_fault_handler(state)) { break; } #endif /* CONFIG_XNUPOST */ handle_bti_fail(state, esr); __builtin_unreachable(); default: handle_uncategorized(state); } #ifdef CONFIG_XNUPOST if (saved_expected_fault_handler != NULL) { thread->machine.expected_fault_handler = saved_expected_fault_handler; thread->machine.expected_fault_addr = saved_expected_fault_addr; thread->machine.expected_fault_pc = saved_expected_fault_pc; } #endif /* CONFIG_XNUPOST */ if (is_user) { KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE, MACHDBG_CODE(DBG_MACH_EXCP_SYNC_ARM, thread->machine.exception_trace_code) | DBG_FUNC_END, esr, far, get_saved_state_pc(state), 0, 0); thread->machine.exception_trace_code = 0; } else { KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE, MACHDBG_CODE(DBG_MACH_EXCP_SYNC_ARM, ARM64_KDBG_CODE_KERNEL | class) | DBG_FUNC_END, esr, VM_KERNEL_ADDRHIDE(far), VM_KERNEL_UNSLIDE(get_saved_state_pc(state)), 0, 0); } #if CONFIG_SPTM if (__improbable(did_initiate_panic_lockdown)) { #if CONFIG_XNUPOST bool can_recover = !!(expected_fault_handler); #else bool can_recover = false; #endif /* CONFIG_XNU_POST */ if (can_recover) { /* * If we matched an exception handler, this was a simulated lockdown * and so we can recover. Re-enable preemption if we disabled it. */ if (current_thread() != NULL) { enable_preemption(); } } else { /* * fleh already triggered a lockdown but we, for whatever reason, * didn't end up finding a reason to panic. Catch all panic in this * case. * Note that the panic here has no security benefit as the system is * already hosed, this is merely for telemetry. */ panic_with_thread_kernel_state("Panic lockdown initiated", state); } } #endif /* CONFIG_SPTM */ #if MACH_ASSERT if (preemption_level != sleh_get_preemption_level()) { panic("synchronous exception changed preemption level from %d to %d", preemption_level, sleh_get_preemption_level()); } #endif if (is_user) { thread->machine.el0_synchronous_trap = false; } } /* * Uncategorized exceptions are a catch-all for general execution errors. * ARM64_TODO: For now, we assume this is for undefined instruction exceptions. */ static void handle_uncategorized(arm_saved_state_t *state) { exception_type_t exception = EXC_BAD_INSTRUCTION; mach_exception_data_type_t codes[2] = {EXC_ARM_UNDEFINED}; mach_msg_type_number_t numcodes = 2; uint32_t instr = 0; COPYIN(get_saved_state_pc(state), (char *)&instr, sizeof(instr)); #if CONFIG_DTRACE if (PSR64_IS_USER64(get_saved_state_cpsr(state))) { /* * For a 64bit user process, we care about all 4 bytes of the * instr. */ if (instr == FASTTRAP_ARM64_INSTR || instr == FASTTRAP_ARM64_RET_INSTR) { if (dtrace_user_probe(state) == KERN_SUCCESS) { return; } } } else if (PSR64_IS_USER32(get_saved_state_cpsr(state))) { /* * For a 32bit user process, we check for thumb mode, in * which case we only care about a 2 byte instruction length. * For non-thumb mode, we care about all 4 bytes of the instructin. */ if (get_saved_state_cpsr(state) & PSR64_MODE_USER32_THUMB) { if (((uint16_t)instr == FASTTRAP_THUMB32_INSTR) || ((uint16_t)instr == FASTTRAP_THUMB32_RET_INSTR)) { if (dtrace_user_probe(state) == KERN_SUCCESS) { return; } } } else { if ((instr == FASTTRAP_ARM32_INSTR) || (instr == FASTTRAP_ARM32_RET_INSTR)) { if (dtrace_user_probe(state) == KERN_SUCCESS) { return; } } } } #endif /* CONFIG_DTRACE */ if (PSR64_IS_KERNEL(get_saved_state_cpsr(state))) { if (IS_ARM_GDB_TRAP(instr)) { boolean_t interrupt_state; exception = EXC_BREAKPOINT; interrupt_state = ml_set_interrupts_enabled(FALSE); /* Save off the context here (so that the debug logic * can see the original state of this thread). */ current_thread()->machine.kpcb = state; /* Hop into the debugger (typically either due to a * fatal exception, an explicit panic, or a stackshot * request. */ DebuggerCall(exception, state); current_thread()->machine.kpcb = NULL; (void) ml_set_interrupts_enabled(interrupt_state); return; } else { panic("Undefined kernel instruction: pc=%p instr=%x", (void*)get_saved_state_pc(state), instr); } } /* * Check for GDB breakpoint via illegal opcode. */ if (IS_ARM_GDB_TRAP(instr)) { exception = EXC_BREAKPOINT; codes[0] = EXC_ARM_BREAKPOINT; codes[1] = instr; } else { codes[1] = instr; } exception_triage(exception, codes, numcodes); __builtin_unreachable(); } #if __has_feature(ptrauth_calls) static inline const char * ptrauth_key_to_string(ptrauth_key key) { switch (key) { case ptrauth_key_asia: return "IA"; case ptrauth_key_asib: return "IB"; case ptrauth_key_asda: return "DA"; case ptrauth_key_asdb: return "DB"; default: __builtin_unreachable(); } } static const char * ptrauth_handle_brk_trap(void *tstate, uint16_t comment) { kernel_panic_reason_t pr = PERCPU_GET(panic_reason); arm_saved_state_t *state = (arm_saved_state_t *)tstate; ptrauth_key key = (ptrauth_key)(comment - PTRAUTH_TRAP_START); const char *key_str = ptrauth_key_to_string(key); snprintf(pr->buf, sizeof(pr->buf), "Break 0x%04X instruction exception from kernel. " "Ptrauth failure with %s key resulted in 0x%016llx", comment, key_str, saved_state64(state)->x[16]); return pr->buf; } #endif /* __has_feature(ptrauth_calls) */ #if HAS_TELEMETRY_KERNEL_BRK static uint32_t bound_chk_violations_event; static const char * xnu_soft_trap_handle_breakpoint( void *tstate, uint16_t comment) { #if CONFIG_UBSAN_MINIMAL if (comment == UBSAN_SOFT_TRAP_SIGNED_OF) { ubsan_handle_brk_trap(tstate, comment); } #else (void)tstate; #endif if (comment == CLANG_SOFT_TRAP_BOUND_CHK) { os_atomic_inc(&bound_chk_violations_event, relaxed); } return NULL; } #endif /* HAS_TELEMETRY_KERNEL_BRK */ static const char * xnu_hard_trap_handle_breakpoint(void *tstate, uint16_t comment) { kernel_panic_reason_t pr = PERCPU_GET(panic_reason); arm_saved_state64_t *state = saved_state64(tstate); switch (comment) { case XNU_HARD_TRAP_SAFE_UNLINK: snprintf(pr->buf, sizeof(pr->buf), "panic: corrupt list around element %p", (void *)state->x[8]); return pr->buf; case XNU_HARD_TRAP_STRING_CHK: return "panic: string operation caused an overflow"; case XNU_HARD_TRAP_ASSERT_FAILURE: /* * Read the implicit assert arguments, see: * ML_TRAP_REGISTER_1: x8 * ML_TRAP_REGISTER_2: x16 * ML_TRAP_REGISTER_3: x17 */ panic_assert_format(pr->buf, sizeof(pr->buf), (struct mach_assert_hdr *)state->x[8], state->x[16], state->x[17]); return pr->buf; default: return NULL; } } #if __has_feature(ptrauth_calls) KERNEL_BRK_DESCRIPTOR_DEFINE(ptrauth_desc, .type = TRAP_TELEMETRY_TYPE_KERNEL_BRK_PTRAUTH, .base = PTRAUTH_TRAP_START, .max = PTRAUTH_TRAP_END, .options = BRK_TELEMETRY_OPTIONS_FATAL_DEFAULT, .handle_breakpoint = ptrauth_handle_brk_trap); #endif KERNEL_BRK_DESCRIPTOR_DEFINE(clang_desc, .type = TRAP_TELEMETRY_TYPE_KERNEL_BRK_CLANG, .base = CLANG_ARM_TRAP_START, .max = CLANG_ARM_TRAP_END, .options = BRK_TELEMETRY_OPTIONS_FATAL_DEFAULT, .handle_breakpoint = NULL); KERNEL_BRK_DESCRIPTOR_DEFINE(libcxx_desc, .type = TRAP_TELEMETRY_TYPE_KERNEL_BRK_LIBCXX, .base = LIBCXX_TRAP_START, .max = LIBCXX_TRAP_END, .options = BRK_TELEMETRY_OPTIONS_FATAL_DEFAULT, .handle_breakpoint = NULL); #if HAS_TELEMETRY_KERNEL_BRK KERNEL_BRK_DESCRIPTOR_DEFINE(xnu_soft_traps_desc, .type = TRAP_TELEMETRY_TYPE_KERNEL_BRK_TELEMETRY, .base = XNU_SOFT_TRAP_START, .max = XNU_SOFT_TRAP_END, .options = BRK_TELEMETRY_OPTIONS_RECOVERABLE_DEFAULT( /* enable_telemetry */ true), .handle_breakpoint = xnu_soft_trap_handle_breakpoint); #endif /* HAS_TELEMETRY_KERNEL_BRK */ KERNEL_BRK_DESCRIPTOR_DEFINE(xnu_hard_traps_desc, .type = TRAP_TELEMETRY_TYPE_KERNEL_BRK_XNU, .base = XNU_HARD_TRAP_START, .max = XNU_HARD_TRAP_END, .options = BRK_TELEMETRY_OPTIONS_FATAL_DEFAULT, .handle_breakpoint = xnu_hard_trap_handle_breakpoint); static void #if !HAS_TELEMETRY_KERNEL_BRK __attribute__((noreturn)) #endif handle_kernel_breakpoint(arm_saved_state_t *state, uint64_t esr) { uint16_t comment = ISS_BRK_COMMENT(esr); const struct kernel_brk_descriptor *desc; const char *msg = NULL; desc = find_kernel_brk_descriptor_by_comment(comment); if (!desc) { goto brk_out; } #if HAS_TELEMETRY_KERNEL_BRK if (desc->options.enable_trap_telemetry) { trap_telemetry_report_exception( /* trap_type */ desc->type, /* trap_code */ comment, /* options */ desc->options.telemetry_options, /* saved_state */ (void *)state); } #endif if (desc->handle_breakpoint) { msg = desc->handle_breakpoint(state, comment); } #if HAS_TELEMETRY_KERNEL_BRK /* Still alive? Check if we should recover. */ if (desc->options.recoverable) { add_saved_state_pc(state, 4); return; } #endif brk_out: if (msg == NULL) { kernel_panic_reason_t pr = PERCPU_GET(panic_reason); if (comment == CLANG_ARM_TRAP_BOUND_CHK) { msg = tsnprintf(pr->buf, sizeof(pr->buf), "Bounds safety trap"); } else { msg = tsnprintf(pr->buf, sizeof(pr->buf), "Break 0x%04X instruction exception from kernel. " "Panic (by design)", comment); } } panic_with_thread_kernel_state(msg, state); __builtin_unreachable(); #undef MSG_FMT } /* * Similar in spirit to kernel_brk_descriptor, but with less flexible semantics: * each descriptor defines a `brk` label range for use from userspace. * When used, system policy may decide to kill the calling process without giving them opportunity to * catch the exception or continue execution from a signal handler. * This is used to enforce security boundaries: userspace code may use this mechanism * to reliably terminate when internal inconsistencies are detected. * Note that we don't invariably terminate without giving the process a say: we might only enforce * such a policy if a security feature is enabled, for example. */ typedef struct user_brk_label_range_descriptor { uint16_t base; uint16_t max; } user_brk_label_range_descriptor_t; const user_brk_label_range_descriptor_t user_brk_descriptors[] = { #if __has_feature(ptrauth_calls) /* PAC failures detected in data by userspace */ { /* Use the exact same label range as kernel PAC */ .base = PTRAUTH_TRAP_START, .max = PTRAUTH_TRAP_END, }, #endif /* __has_feature(ptrauth_calls) */ /* Available for use by system libraries when detecting disallowed conditions */ { /* Note this uses the same range as the kernel-specific XNU_HARD_TRAP range */ .base = 0xB000, .max = 0xBFFF, } }; const int user_brk_descriptor_count = sizeof(user_brk_descriptors) / sizeof(user_brk_descriptors[0]); const static inline user_brk_label_range_descriptor_t * find_user_brk_descriptor_by_comment(uint16_t comment) { for (int desc_idx = 0; desc_idx < user_brk_descriptor_count; desc_idx++) { const user_brk_label_range_descriptor_t* des = &user_brk_descriptors[desc_idx]; if (comment >= des->base && comment <= des->max) { return des; } } return NULL; } static void handle_user_breakpoint(arm_saved_state_t *state, uint64_t esr __unused) { exception_type_t exception = EXC_BREAKPOINT; mach_exception_data_type_t codes[2] = {EXC_ARM_BREAKPOINT}; mach_msg_type_number_t numcodes = 2; if (ESR_EC(esr) == ESR_EC_BRK_AARCH64) { /* * Consult the trap labels we know about to decide whether userspace * should be given the opportunity to handle the exception. */ uint16_t brk_label = ISS_BRK_COMMENT(esr); const struct user_brk_label_range_descriptor* descriptor = find_user_brk_descriptor_by_comment(brk_label); /* * Note it's no problem if we don't recognize the label. * In this case we'll just go through normal exception delivery. */ if (descriptor != NULL) { exception |= EXC_MAY_BE_UNRECOVERABLE_BIT; #if __has_feature(ptrauth_calls) /* * We have additional policy specifically for PAC violations. * To make the rest of the code easier to follow, don't set * EXC_MAY_BE_UNRECOVERABLE_BIT here and just set EXC_PTRAUTH_BIT instead. * Conceptually a PAC failure is absolutely 'maybe unrecoverable', but it's * not really worth excising the discrepency from the plumbing. */ if (descriptor->base == PTRAUTH_TRAP_START) { exception &= ~(EXC_MAY_BE_UNRECOVERABLE_BIT); exception |= EXC_PTRAUTH_BIT; } #endif /* __has_feature(ptrauth_calls) */ } } codes[1] = get_saved_state_pc(state); exception_triage(exception, codes, numcodes); __builtin_unreachable(); } static void handle_watchpoint(vm_offset_t fault_addr) { exception_type_t exception = EXC_BREAKPOINT; mach_exception_data_type_t codes[2] = {EXC_ARM_DA_DEBUG}; mach_msg_type_number_t numcodes = 2; codes[1] = fault_addr; exception_triage(exception, codes, numcodes); __builtin_unreachable(); } static void handle_abort(arm_saved_state_t *state, uint64_t esr, vm_offset_t fault_addr, abort_inspector_t inspect_abort, abort_handler_t handler, expected_fault_handler_t expected_fault_handler) { fault_status_t fault_code; vm_prot_t fault_type; inspect_abort(ESR_ISS(esr), &fault_code, &fault_type); handler(state, esr, fault_addr, fault_code, fault_type, expected_fault_handler); } static void inspect_instruction_abort(uint32_t iss, fault_status_t *fault_code, vm_prot_t *fault_type) { getCpuDatap()->cpu_stat.instr_ex_cnt++; *fault_code = ISS_IA_FSC(iss); *fault_type = (VM_PROT_READ | VM_PROT_EXECUTE); } static void inspect_data_abort(uint32_t iss, fault_status_t *fault_code, vm_prot_t *fault_type) { getCpuDatap()->cpu_stat.data_ex_cnt++; *fault_code = ISS_DA_FSC(iss); /* * Cache maintenance operations always report faults as write access. * Change these to read access, unless they report a permission fault. * Only certain cache maintenance operations (e.g. 'dc ivac') require write * access to the mapping, but if a cache maintenance operation that only requires * read access generates a permission fault, then we will not be able to handle * the fault regardless of whether we treat it as a read or write fault. */ if ((iss & ISS_DA_WNR) && (!(iss & ISS_DA_CM) || is_permission_fault(*fault_code))) { *fault_type = (VM_PROT_READ | VM_PROT_WRITE); } else { *fault_type = (VM_PROT_READ); } } #if __has_feature(ptrauth_calls) static inline uint64_t fault_addr_bitmask(unsigned int bit_from, unsigned int bit_to) { return ((1ULL << (bit_to - bit_from + 1)) - 1) << bit_from; } static inline bool fault_addr_bit(vm_offset_t fault_addr, unsigned int bit) { return (bool)((fault_addr >> bit) & 1); } extern int gARM_FEAT_FPAC; extern int gARM_FEAT_FPACCOMBINE; extern int gARM_FEAT_PAuth2; /** * Determines whether a fault address taken at EL0 contains a PAC error code * corresponding to the specified kind of ptrauth key. */ static bool user_fault_matches_pac_error_code(vm_offset_t fault_addr, uint64_t pc, bool data_key) { if (gARM_FEAT_FPACCOMBINE) { /* * CPUs with FPACCOMBINE always raise PAC Fail exceptions during * PAC failure. If the CPU took any other kind of exception, we * can rule out PAC as the root cause. */ return false; } if (data_key && gARM_FEAT_FPAC) { uint32_t instr; int err = copyin(pc, (char *)&instr, sizeof(instr)); if (!err && !ARM64_INSTR_IS_LDRAx(instr)) { /* * On FPAC-enabled devices, PAC failure can only cause * data aborts during "combined" LDRAx instructions. If * PAC fails during a discrete AUTxx + LDR/STR * instruction sequence, then the AUTxx instruction * raises a PAC Fail exception rather than poisoning its * output address. * * In principle the same logic applies to instruction * aborts. But we have no way to identify the exact * instruction that caused the abort, so we can't tell * if it was a combined branch + auth instruction. */ return false; } } bool instruction_tbi = !(get_tcr() & TCR_TBID0_TBI_DATA_ONLY); bool tbi = data_key || __improbable(instruction_tbi); if (gARM_FEAT_PAuth2) { /* * EnhancedPAC2 CPUs don't encode error codes at fixed positions, so * treat all non-canonical address bits like potential poison bits. */ uint64_t mask = fault_addr_bitmask(64 - T0SZ_BOOT, 54); if (!tbi) { mask |= fault_addr_bitmask(56, 63); } return (fault_addr & mask) != 0; } else { unsigned int poison_shift; if (tbi) { poison_shift = 53; } else { poison_shift = 61; } /* PAC error codes are always in the form key_number:NOT(key_number) */ bool poison_bit_1 = fault_addr_bit(fault_addr, poison_shift); bool poison_bit_2 = fault_addr_bit(fault_addr, poison_shift + 1); return poison_bit_1 != poison_bit_2; } } #endif /* __has_feature(ptrauth_calls) */ /** * Determines whether the userland thread has a JIT region in RW mode, TPRO * in RW mode, or JCTL_EL0 in pointer signing mode. A fault in any of these trusted * code paths may indicate an attack on WebKit. Rather than letting a * potentially-compromised process try to handle the exception, it will be killed * by the kernel and a crash report will be generated. */ static self_restrict_mode_t user_fault_in_self_restrict_mode(thread_t thread __unused) { self_restrict_mode_t out = SELF_RESTRICT_NONE; return out; } static void handle_pc_align(arm_saved_state_t *ss) { exception_type_t exc; mach_exception_data_type_t codes[2]; mach_msg_type_number_t numcodes = 2; if (!PSR64_IS_USER(get_saved_state_cpsr(ss))) { panic_with_thread_kernel_state("PC alignment exception from kernel.", ss); } exc = EXC_BAD_ACCESS; #if __has_feature(ptrauth_calls) uint64_t pc = get_saved_state_pc(ss); if (user_fault_matches_pac_error_code(pc, pc, false)) { exc |= EXC_PTRAUTH_BIT; } #endif /* __has_feature(ptrauth_calls) */ codes[0] = EXC_ARM_DA_ALIGN; codes[1] = get_saved_state_pc(ss); exception_triage(exc, codes, numcodes); __builtin_unreachable(); } static void handle_sp_align(arm_saved_state_t *ss) { exception_type_t exc; mach_exception_data_type_t codes[2]; mach_msg_type_number_t numcodes = 2; if (!PSR64_IS_USER(get_saved_state_cpsr(ss))) { panic_with_thread_kernel_state("SP alignment exception from kernel.", ss); } exc = EXC_BAD_ACCESS; #if __has_feature(ptrauth_calls) if (user_fault_matches_pac_error_code(get_saved_state_sp(ss), get_saved_state_pc(ss), true)) { exc |= EXC_PTRAUTH_BIT; } #endif /* __has_feature(ptrauth_calls) */ codes[0] = EXC_ARM_SP_ALIGN; codes[1] = get_saved_state_sp(ss); exception_triage(exc, codes, numcodes); __builtin_unreachable(); } static void handle_wf_trap(arm_saved_state_t *state) { exception_type_t exc; mach_exception_data_type_t codes[2]; mach_msg_type_number_t numcodes = 2; uint32_t instr = 0; COPYIN(get_saved_state_pc(state), (char *)&instr, sizeof(instr)); exc = EXC_BAD_INSTRUCTION; codes[0] = EXC_ARM_UNDEFINED; codes[1] = instr; exception_triage(exc, codes, numcodes); __builtin_unreachable(); } static void handle_fp_trap(arm_saved_state_t *state, uint64_t esr) { exception_type_t exc = EXC_ARITHMETIC; mach_exception_data_type_t codes[2]; mach_msg_type_number_t numcodes = 2; uint32_t instr = 0; if (PSR64_IS_KERNEL(get_saved_state_cpsr(state))) { panic_with_thread_kernel_state("Floating point exception from kernel", state); } COPYIN(get_saved_state_pc(state), (char *)&instr, sizeof(instr)); codes[1] = instr; /* The floating point trap flags are only valid if TFV is set. */ if (!fp_exceptions_enabled) { exc = EXC_BAD_INSTRUCTION; codes[0] = EXC_ARM_UNDEFINED; } else if (!(esr & ISS_FP_TFV)) { codes[0] = EXC_ARM_FP_UNDEFINED; } else if (esr & ISS_FP_UFF) { codes[0] = EXC_ARM_FP_UF; } else if (esr & ISS_FP_OFF) { codes[0] = EXC_ARM_FP_OF; } else if (esr & ISS_FP_IOF) { codes[0] = EXC_ARM_FP_IO; } else if (esr & ISS_FP_DZF) { codes[0] = EXC_ARM_FP_DZ; } else if (esr & ISS_FP_IDF) { codes[0] = EXC_ARM_FP_ID; } else if (esr & ISS_FP_IXF) { codes[0] = EXC_ARM_FP_IX; } else { panic("Unrecognized floating point exception, state=%p, esr=%#llx", state, esr); } exception_triage(exc, codes, numcodes); __builtin_unreachable(); } /* * handle_alignment_fault_from_user: * state: Saved state * * Attempts to deal with an alignment fault from userspace (possibly by * emulating the faulting instruction). If emulation failed due to an * unservicable fault, the ESR for that fault will be stored in the * recovery_esr field of the thread by the exception code. * * Returns: * -1: Emulation failed (emulation of state/instr not supported) * 0: Successfully emulated the instruction * EFAULT: Emulation failed (probably due to permissions) * EINVAL: Emulation failed (probably due to a bad address) */ static int handle_alignment_fault_from_user(arm_saved_state_t *state, kern_return_t *vmfr) { int ret = -1; #pragma unused (state) #pragma unused (vmfr) return ret; } #if HAS_ARM_FEAT_SME static void handle_sme_trap(arm_saved_state_t *state, uint64_t esr) { exception_type_t exc = EXC_BAD_INSTRUCTION; mach_exception_data_type_t codes[2] = {EXC_ARM_UNDEFINED}; mach_msg_type_number_t numcodes = 2; if (!PSR64_IS_USER(get_saved_state_cpsr(state))) { panic("SME exception from kernel, state=%p, esr=%#llx", state, esr); } if (!arm_sme_version()) { /* * If SME is disabled in software but userspace executes an SME * instruction anyway, then the CPU will still raise an * SME-specific trap. Triage it as if the CPU raised an * undefined-instruction trap. */ exception_triage(exc, codes, numcodes); __builtin_unreachable(); } if (ISS_SME_SMTC(ESR_ISS(esr)) == ISS_SME_SMTC_CAPCR) { thread_t thread = current_thread(); switch (machine_thread_sme_state_alloc(thread)) { case KERN_SUCCESS: return; default: panic("Failed to allocate SME state for thread %p", thread); } } uint32_t instr; COPYIN(get_saved_state_pc(state), (char *)&instr, sizeof(instr)); codes[1] = instr; exception_triage(exc, codes, numcodes); __builtin_unreachable(); } #endif /* HAS_ARM_FEAT_SME */ static void handle_sw_step_debug(arm_saved_state_t *state) { thread_t thread = current_thread(); exception_type_t exc; mach_exception_data_type_t codes[2]; mach_msg_type_number_t numcodes = 2; if (!PSR64_IS_USER(get_saved_state_cpsr(state))) { panic_with_thread_kernel_state("SW_STEP_DEBUG exception from kernel.", state); } // Disable single step and unmask interrupts (in the saved state, anticipating next exception return) if (thread->machine.DebugData != NULL) { thread->machine.DebugData->uds.ds64.mdscr_el1 &= ~0x1; } else { panic_with_thread_kernel_state("SW_STEP_DEBUG exception thread DebugData is NULL.", state); } mask_user_saved_state_cpsr(thread->machine.upcb, 0, PSR64_SS | DAIF_ALL); // Special encoding for gdb single step event on ARM exc = EXC_BREAKPOINT; codes[0] = 1; codes[1] = 0; exception_triage(exc, codes, numcodes); __builtin_unreachable(); } #if MACH_ASSERT TUNABLE_WRITEABLE(self_restrict_mode_t, panic_on_jit_guard, "panic_on_jit_guard", SELF_RESTRICT_NONE); #endif /* MACH_ASSERT */ static void handle_user_abort(arm_saved_state_t *state, uint64_t esr, vm_offset_t fault_addr, fault_status_t fault_code, vm_prot_t fault_type, expected_fault_handler_t expected_fault_handler) { exception_type_t exc = EXC_BAD_ACCESS; mach_exception_data_type_t codes[2]; mach_msg_type_number_t numcodes = 2; thread_t thread = current_thread(); vm_map_t map = thread->map; pmap_t pmap = map->pmap; (void)expected_fault_handler; if (__improbable(!SPSR_INTERRUPTS_ENABLED(get_saved_state_cpsr(state)))) { panic_with_thread_kernel_state("User abort from non-interruptible context", state); } thread->iotier_override = THROTTLE_LEVEL_NONE; /* Reset IO tier override before handling abort from userspace */ if (!is_servicible_fault(fault_code, esr, fault_addr, pmap) && thread->t_rr_state.trr_fault_state != TRR_FAULT_NONE) { thread_reset_pcs_done_faulting(thread); } #if HAS_MTE if (is_tag_check_fault(fault_code)) { pmap_t current_pmap = current_map()->pmap; codes[0] = tag_check_fault_type(current_pmap, fault_addr); } else if (is_canonical_memory_permission_fault(esr)) { codes[0] = KERN_PROTECTION_FAILURE; } else #endif if (is_vm_fault(fault_code)) { vm_offset_t vm_fault_addr = fault_addr; kern_return_t result = KERN_FAILURE; assert(map != kernel_map); if (!(fault_type & VM_PROT_EXECUTE)) { vm_fault_addr = VM_USER_STRIP_TBI(fault_addr); } /* check to see if it is just a pmap ref/modify fault */ if (!is_translation_fault(fault_code)) { result = arm_fast_fault(pmap, vm_fault_addr, fault_type, (fault_code == FSC_ACCESS_FLAG_FAULT_L3), TRUE); } if (result != KERN_SUCCESS) { { /* We have to fault the page in */ result = vm_fault(map, vm_fault_addr, fault_type, /* change_wiring */ FALSE, VM_KERN_MEMORY_NONE, THREAD_ABORTSAFE, /* caller_pmap */ NULL, /* caller_pmap_addr */ 0); } } if (thread->t_rr_state.trr_fault_state != TRR_FAULT_NONE) { thread_reset_pcs_done_faulting(thread); } if (result == KERN_SUCCESS || result == KERN_ABORTED) { return; } if (result == KERN_INVALID_GUARD_OBJECT_SLOT) { /* * use OS_REASON_MTE_FAIL even for guard objects, * launchd(1) doesn't get the exception_type through * libproc, so it's easier to use that namespace * for all Memory Integrity Enforcement features. */ exit_with_fatal_exception_and_notify(current_proc(), OS_REASON_MTE_FAIL, exc, result, fault_addr, PX_KTRIAGE); thread_exception_return(); __builtin_unreachable(); } /* * vm_fault() should never return KERN_FAILURE for page faults from user space. * If it does, we're leaking preemption disables somewhere in the kernel. */ if (__improbable(result == KERN_FAILURE)) { panic("vm_fault() KERN_FAILURE from user fault on thread %p", thread); } codes[0] = result; } else if (is_alignment_fault(fault_code)) { kern_return_t vmfkr = KERN_SUCCESS; thread->machine.recover_esr = 0; thread->machine.recover_far = 0; int result = handle_alignment_fault_from_user(state, &vmfkr); if (result == 0) { /* Successfully emulated, or instruction * copyin() for decode/emulation failed. * Continue, or redrive instruction. */ thread_exception_return(); } else if (((result == EFAULT) || (result == EINVAL)) && (thread->machine.recover_esr == 0)) { /* * If we didn't actually take a fault, but got one of * these errors, then we failed basic sanity checks of * the fault address. Treat this as an invalid * address. */ codes[0] = KERN_INVALID_ADDRESS; } else if ((result == EFAULT) && (thread->machine.recover_esr)) { /* * Since alignment aborts are prioritized * ahead of translation aborts, the misaligned * atomic emulation flow may have triggered a * VM pagefault, which the VM could not resolve. * Report the VM fault error in codes[] */ codes[0] = vmfkr; assertf(vmfkr != KERN_SUCCESS, "Unexpected vmfkr 0x%x", vmfkr); /* Cause ESR_EC to reflect an EL0 abort */ thread->machine.recover_esr &= ~ESR_EC_MASK; thread->machine.recover_esr |= (ESR_EC_DABORT_EL0 << ESR_EC_SHIFT); set_saved_state_esr(thread->machine.upcb, thread->machine.recover_esr); set_saved_state_far(thread->machine.upcb, thread->machine.recover_far); fault_addr = thread->machine.recover_far; } else { /* This was just an unsupported alignment * exception. Misaligned atomic emulation * timeouts fall in this category. */ codes[0] = EXC_ARM_DA_ALIGN; } } else if (is_parity_error(fault_code)) { #if defined(APPLE_ARM64_ARCH_FAMILY) /* * Platform errors are handled in sleh_sync before interrupts are enabled. */ #else panic("User parity error."); #endif } else { codes[0] = KERN_FAILURE; } #if CODE_SIGNING_MONITOR /* * If the code reaches here, it means we weren't able to resolve the fault and we're * going to be sending the task an exception. On systems which have the code signing * monitor enabled, an execute fault which cannot be handled must result in sending * a SIGKILL to the task. */ if (is_vm_fault(fault_code) && (fault_type & VM_PROT_EXECUTE)) { csm_code_signing_violation(current_proc(), fault_addr); } #endif codes[1] = fault_addr; #if __has_feature(ptrauth_calls) bool is_data_abort = (ESR_EC(esr) == ESR_EC_DABORT_EL0); if (user_fault_matches_pac_error_code(fault_addr, get_saved_state_pc(state), is_data_abort)) { exc |= EXC_PTRAUTH_BIT; } #endif /* __has_feature(ptrauth_calls) */ const self_restrict_mode_t self_restrict_mode = user_fault_in_self_restrict_mode(thread); if ((self_restrict_mode != SELF_RESTRICT_NONE) && task_is_jit_exception_fatal(get_threadtask(thread))) { #if MACH_ASSERT /* * Case: panic_on_jit_guard=1. Catch an early process creation TPRO issue causing * rdar://129742083. Only panic during early process creation (1 thread, few syscalls * issued) to avoid spurious panics. */ const self_restrict_mode_t self_restrict_panic_mask = panic_on_jit_guard & self_restrict_mode; bool should_panic = ((self_restrict_panic_mask == SELF_RESTRICT_ANY) && (current_task()->thread_count == 1) && (thread->syscalls_unix < 24)); /* * Modes other than ANY will force panic, skipping checks that were done in the ANY case, * but allowing us to filter on a more specific scenario (e.g. TPRO, JIT, etc). This is * meant to catch a TPRO issue causing rdar://145703251. Restrict to KERN_PROTECTION_FAILURE * only to avoid failures from the more frequent case of KERN_INVALID_ADDRESS that aren't * of interest for that radar. */ should_panic |= (codes[0] == KERN_PROTECTION_FAILURE) && ((self_restrict_panic_mask & ~SELF_RESTRICT_ANY) != 0); printf("\nGUARD_REASON_JIT exc %d codes=<0x%llx,0x%llx> syscalls %d task %p thread %p va 0x%lx code 0x%x type 0x%x esr 0x%llx\n", exc, codes[0], codes[1], thread->syscalls_unix, current_task(), thread, fault_addr, fault_code, fault_type, esr); if (should_panic) { panic("GUARD_REASON_JIT exc %d codes=<0x%llx,0x%llx> syscalls %d task %p thread %p va 0x%lx code 0x%x type 0x%x esr 0x%llx state %p j %d t %d s user 0x%llx (0x%llx) jb 0x%llx (0x%llx)", exc, codes[0], codes[1], thread->syscalls_unix, current_task(), thread, fault_addr, fault_code, fault_type, esr, state, 0, 0, 0ull, 0ull, 0ull, 0ull ); } #endif /* MACH_ASSERT */ /* Perform fatal exception logic. */ exit_with_fatal_exception_and_notify(current_proc(), OS_REASON_SELF_RESTRICT, exc, codes[0], codes[1], PX_KTRIAGE); thread_exception_return(); __builtin_unreachable(); } #if HAS_MTE if (codes[0] == EXC_ARM_MTE_TAGCHECK_FAIL || codes[0] == EXC_ARM_MTE_CANONICAL_FAIL) { /* * If soft-mode is enabled, we trigger a simulated crash, then we'll clear TCF0 * and let the thread try again. */ if (task_has_sec_soft_mode(current_task())) { mte_send_sync_soft_mode_exception(thread, /* fault_addr */ codes[1], /* mx_code */ codes[0]); /* Disable tag checking for userspace addresses. This will be our first and last tag check fault. */ mte_disable_user_checking(current_task()); if (thread->t_rr_state.trr_fault_state != TRR_FAULT_NONE) { thread_reset_pcs_done_faulting(thread); } /* Retry with tag checking disabled. */ thread_exception_return(); } if (is_address_space_debugged(current_proc())) { exception_triage(exc, codes, numcodes); __builtin_unreachable(); } /* Hard-mode: Perform fatal exception logic. */ exit_with_fatal_exception_and_notify(current_proc(), OS_REASON_MTE_FAIL, exc, codes[0], codes[1], PX_KTRIAGE); thread_exception_return(); __builtin_unreachable(); } #endif /* HAS_MTE */ exception_triage(exc, codes, numcodes); __builtin_unreachable(); } /** * Panic because the kernel abort handler tried to apply a recovery handler that * isn't inside copyio_recover_table[]. * * @param state original saved-state * @param recover invalid recovery handler */ __attribute__((noreturn, used)) static void panic_on_invalid_recovery_handler(arm_saved_state_t *state, struct copyio_recovery_entry *recover) { panic("attempt to set invalid recovery handler %p on kernel saved-state %p", recover, state); } /** * Update a thread saved-state to store an error code in x0 and branch to a * copyio recovery handler. * * @param state original saved-state * @param esr ESR_ELx value for the fault taken * @param fault_addr FAR_ELx value for the fault taken * @param thread target thread * @param recover destination copyio recovery handler * @param x0 error code to populate into x0 */ static void handle_kernel_abort_recover_with_error_code( arm_saved_state_t *state, uint64_t esr, vm_offset_t fault_addr, thread_t thread, struct copyio_recovery_entry *_Nonnull recover, uint64_t x0) { thread->machine.recover_esr = esr; thread->machine.recover_far = fault_addr; saved_state64(state)->x[0] = x0; #if defined(HAS_APPLE_PAC) MANIPULATE_SIGNED_THREAD_STATE(state, "adrp x6, _copyio_recover_table_end@page \n" "add x6, x6, _copyio_recover_table_end@pageoff \n" "cmp %[recover], x6 \n" "b.lt 1f \n" "bl _panic_on_invalid_recovery_handler \n" "brk #0 \n" "1: \n" "adrp x6, _copyio_recover_table@page \n" "add x6, x6, _copyio_recover_table@pageoff \n" "subs x7, %[recover], x6 \n" "b.pl 1f \n" "bl _panic_on_invalid_recovery_handler \n" "brk #0 \n" "1: \n" "udiv x8, x7, %[SIZEOF_RECOVER] \n" "mul x8, x8, %[SIZEOF_RECOVER] \n" "cmp x7, x8 \n" "b.eq 1f \n" "bl _panic_on_invalid_recovery_handler \n" "brk #0 \n" "1: \n" "ldr x1, [%[recover], %[CRE_RECOVERY]] \n" "add x1, x1, x6 \n" "str x1, [x0, %[SS64_PC]] \n", [recover] "r"(recover), [SIZEOF_RECOVER] "r"((sizeof(*recover))), [CRE_RECOVERY] "i"(offsetof(struct copyio_recovery_entry, cre_recovery)) ); #else ptrdiff_t recover_offset = (uintptr_t)recover - (uintptr_t)copyio_recover_table; if ((uintptr_t)recover < (uintptr_t)copyio_recover_table || (uintptr_t)recover >= (uintptr_t)copyio_recover_table_end || (recover_offset % sizeof(*recover)) != 0) { panic_on_invalid_recovery_handler(state, recover); } saved_state64(state)->pc = copyio_recovery_addr(recover->cre_recovery); #endif } static inline void handle_kernel_abort_recover( arm_saved_state_t *state, uint64_t esr, vm_offset_t fault_addr, thread_t thread, struct copyio_recovery_entry *_Nonnull recover) { handle_kernel_abort_recover_with_error_code(state, esr, fault_addr, thread, recover, EFAULT); } static void record_async_map_fault_address( vm_map_t map, uint64_t code, vm_map_address_t fault_address) { vm_map_async_fault_t fault = { .code = code, .address = fault_address, }; /* * Attempt to report the faulting address. If this fails, we know that * a faulting address has already been reported. Accordingly, we can * just ignore the failure and continue on since we never send more than * one async fault guard exception per task anyway. */ (void)os_atomic_cmpxchg(&map->async_fault, (vm_map_async_fault_t){ }, fault, relaxed); /* * We cannot set the AST here, as we'd need to take a task lock and we * may deadlock. On exit from the switched map operation or on return * from the IOMD read/writeBytes path, the caller will check whether * an exception happened by inspecting `async_fault.code` and * act accordingly. */ } /* * We took a fault accessing a userspace address, while in a kernel thread that * temporarily switched to the user map in order to do work on behalf of the * target process. Record onto the map the faulting address. * * This is essentially a thin layer over record_async_map_fault_address(), * just adding a bunch of sanity checks that we don't start hitting unexpected * faults. */ static void record_async_kernel_interposed_map_fault_address( uint64_t code, vm_map_address_t fault_addr) { vm_map_t map = current_map(); assert(vm_kernel_map_is_kernel(current_task()->map)); assert(!vm_kernel_map_is_kernel(map)); if (!map->owning_task && !map->terminated) { panic("Kernel tag-check fault on %p @ %#llx prior to vm_map_setup", map, map->async_fault.address); } record_async_map_fault_address(map, code, fault_addr); } #if HAS_MTE static void mte_send_sync_soft_mode_exception(thread_t thread, vm_map_address_t address, mach_exception_data_type_t mx_code) { uint64_t code = mx_code | kGUARD_EXC_MTE_SOFT_MODE; EXC_GUARD_ENCODE_TYPE(code, GUARD_TYPE_VIRT_MEMORY); EXC_GUARD_ENCODE_FLAVOR(code, kGUARD_EXC_MTE_SYNC_FAULT); thread_guard_violation(thread, code, address, /* sticky */ false); } /* * We took a fault during a copyio routine, over a user address, in the context * of a user thread that "synchronously" asked the kernel to access a pointer. * The intention is to kill the user thread (EXC_BAD_ACCESS), but since we might * be within an interrupt context, delay sending the exception to the guard AST. */ static void mte_send_sync_kernel_on_user_fault(thread_t thread, vm_map_address_t fault_addr, mach_exception_data_type_t mx_code) { /* Soft-mode: send a sync fault simulated exception. */ if (task_has_sec_soft_mode(get_threadtask(thread))) { mte_send_sync_soft_mode_exception(thread, fault_addr, mx_code); return; } /* Hard-mode: send an old fashioned Tag Check Fault. */ set_saved_state_far(thread->machine.upcb, fault_addr); int flags = PX_KTRIAGE; exception_info_t info = { .os_reason = OS_REASON_MTE_FAIL, .exception_type = EXC_BAD_ACCESS, .mx_code = mx_code, .mx_subcode = fault_addr }; exit_with_mach_exception_using_ast(info, flags, /* fatal */ true); } /* * We took a fault while servicing an AST, over a user address, on behalf of * a user process. The intention is to kill the user thread. The notification * is sent to the current thread, so we can use * thread_guard_violation()->thread_ast_mach_exception(). * * @param thread current thread. * @param code must be either a TAG CHECK FAIL or a CANONICAL (TAG CHECK) FAIL. * @param fault_addr the address that the fault was taken on. */ static void mte_send_async_ast_fault(thread_t thread, mach_exception_data_type_t code, vm_map_address_t fault_addr) { bool soft_mode = task_has_sec_soft_mode(get_threadtask(thread)); assert(EXC_GUARD_DECODE_GUARD_TARGET(code) == EXC_ARM_MTE_TAGCHECK_FAIL || EXC_GUARD_DECODE_GUARD_TARGET(code) == EXC_ARM_MTE_CANONICAL_FAIL); if (soft_mode) { code |= kGUARD_EXC_MTE_SOFT_MODE; } thread_guard_violation(thread, code, fault_addr, /* not sticky in soft_mode */ !soft_mode); } static void handle_kernel_tag_check_fault(arm_saved_state_t *state, uint64_t esr, vm_offset_t fault_addr, thread_t thread, struct copyio_recovery_entry *recover) { /* * MTE tag check faults are treated as non-recoverable security * violations, even when they're raised inside a copyio routine. * * If the fault happened while accessing a user address inside a copyio * routine in the context of a userspace process, assume the current * process supplied that address and deliver a Mach exception. This may * manifest either as `EXC_BAD_ACCESS` or a Mach guard exception. * The former is used when the fault was raised while servicing a * synchronous EL0 exception, so the crashing EL0 thread state will * likely have something to do with the root cause. * * If such a fault happened in the context of a kernel thread, assume * that the kernel is doing work on behalf of the process that owns the * current map and set a guard exception on the map to asynchronously * kill it. * * If the fault happened while accessing a kernel address, and the * copyio handler didn't explicitly say that it needs to tolerate kernel * tag check faults, then panic. (We'll assume the kernel is always * responsible for mistagged kernel addresses: copy_validate() should * keep misbehaving userspace processes from passing those in.) */ /* Use the TTBR selector to determine whether it's a user or kernel address. */ bool is_user_addr = (fault_addr & TTBR_SELECTOR) == 0; /* Are we running as a kernel thread. */ bool is_kernel_thread = vm_kernel_map_is_kernel(current_task()->map); /* * Only attempt recovery if we have a recovery handler associated. * Recovery step will differ depending on whether we faulted on a user or kernel address. */ if (recover) { mach_exception_data_type_t code; code = tag_check_fault_type(current_map()->pmap, fault_addr); if (is_user_addr) { uint64_t error_code = EFAULT; task_t owning_task = current_task(); bool in_el0_sync_trap = thread->machine.el0_synchronous_trap && current_cpu_datap()->cpu_int_state == NULL; if (in_el0_sync_trap) { /* "Synchronous" software exception. */ mte_send_sync_kernel_on_user_fault(thread, fault_addr, code); } else { /* "Asynchronous" software exception */ #if DEVELOPMENT || DEBUG if (mte_panic_on_async_fault()) { panic_with_thread_kernel_state("Kernel AST tag check fault accessing user space", state); } #endif /* DEVELOPMENT || DEBUG */ if (is_kernel_thread) { /* kernel thread executes with switched map. */ EXC_GUARD_ENCODE_TYPE(code, GUARD_TYPE_VIRT_MEMORY); EXC_GUARD_ENCODE_FLAVOR(code, kGUARD_EXC_MTE_ASYNC_KERN_FAULT); record_async_kernel_interposed_map_fault_address(code, fault_addr); owning_task = current_map()->owning_task; } else { /* Asynchronous but within current_thread() */ EXC_GUARD_ENCODE_TYPE(code, GUARD_TYPE_VIRT_MEMORY); EXC_GUARD_ENCODE_FLAVOR(code, kGUARD_EXC_MTE_ASYNC_USER_FAULT); mte_send_async_ast_fault(thread, code, fault_addr); } } /* * If in soft-mode, retry with tag checking disabled. If the map was terminated, * we raced down here killing the task, so the soft-mode check is moot. */ if (owning_task && task_has_sec_soft_mode(owning_task)) { mte_disable_user_checking(owning_task); error_code = EAGAIN; } /* * We took this exception from inside kernel copyio code. Even * if we're not going to retry it, the kernel thread needs to * clean things up by branching to the copyio recovery handler. */ handle_kernel_abort_recover_with_error_code(state, esr, fault_addr, thread, recover, error_code); return; } else { /* We further filter the side of the access that is actually allowed to fault. */ bool is_write_access = (ESR_ISS(esr) & ISS_DA_WNR); if ((recover->recover_from_kernel_read_tag_check_fault && !is_write_access) || (recover->recover_from_kernel_write_tag_check_fault && is_write_access)) { /* Are we within an IOMD critical region - that will give us a task to blame. */ task_t task_providing_faultable_buffer = current_thread_get_iomd_faultable_access_buffer_provider(); if (task_providing_faultable_buffer != NULL) { /* Same drill as the kernel thread case above: record here the required information. */ EXC_GUARD_ENCODE_TYPE(code, GUARD_TYPE_VIRT_MEMORY); EXC_GUARD_ENCODE_FLAVOR(code, kGUARD_EXC_MTE_ASYNC_KERN_FAULT); #if DEVELOPMENT || DEBUG record_async_map_fault_address(task_providing_faultable_buffer->map, code, fault_addr); if (mte_panic_on_async_fault()) { panic_with_thread_kernel_state("Kernel AST tag check fault accessing physmap", state); } #else /* DEVELOPMENT || DEBUG */ record_async_map_fault_address(task_providing_faultable_buffer->map, code, 0xdeadbeef); #endif /* DEVELOPMENT || DEBUG */ } /* No fault, just clean recovery returning EFAULT. */ handle_kernel_abort_recover(state, esr, fault_addr, thread, recover); return; } /* Fallthrough to regular panic scenario. */ } } /* * Everything past this point doesn't have a recovery handler and is a fatal violation. * Package up and report as much useful information as possible. */ #define MSG_FMT "Kernel tag check fault (expected tagged address: 0x%016llx)" char msg[strlen(MSG_FMT) - strlen("0x%016llx") + strlen("0xFFFFFFFFFFFFFFFF") + 1]; vm_address_t expected_tagged_address = vm_memtag_load_tag(fault_addr); snprintf(msg, sizeof(msg), MSG_FMT, (uint64_t)expected_tagged_address); panic_with_thread_kernel_state(msg, state); #undef MSG_FMT } #endif /* HAS_MTE */ static void handle_kernel_guard_object_fault(vm_offset_t fault_addr, thread_t thread) { exception_info_t info = { .mx_code = KERN_INVALID_GUARD_OBJECT_SLOT, .mx_subcode = fault_addr, }; task_t task = get_threadtask(thread); assert((fault_addr & TTBR_SELECTOR) == 0); if (thread->machine.el0_synchronous_trap && current_cpu_datap()->cpu_int_state == NULL) { /* * Case 1: "synchronous" software exception, just exit */ set_saved_state_far(thread->machine.upcb, fault_addr); info.os_reason = OS_REASON_MTE_FAIL; info.exception_type = EXC_BAD_ACCESS; exit_with_mach_exception_using_ast(info, PX_KTRIAGE, task->task_exc_guard & TASK_EXC_GUARD_VM_FATAL); } else if (task == kernel_task) { /* * Case 2: asynchronous exception in kernel context */ EXC_GUARD_ENCODE_TYPE(info.mx_code, GUARD_TYPE_VIRT_MEMORY); EXC_GUARD_ENCODE_FLAVOR(info.mx_code, kGUARD_EXC_GUARD_OBJECT_ASYNC_KERN_FAULT); record_async_kernel_interposed_map_fault_address(info.mx_code, fault_addr); } else { /* * Case 3: asynchronous exception in current_thread() context */ info.os_reason = OS_REASON_GUARD; info.exception_type = EXC_GUARD; EXC_GUARD_ENCODE_TYPE(info.mx_code, GUARD_TYPE_VIRT_MEMORY); EXC_GUARD_ENCODE_FLAVOR(info.mx_code, kGUARD_EXC_GUARD_OBJECT_ASYNC_USER_FAULT); exit_with_mach_exception_using_ast(info, PX_KTRIAGE, task->task_exc_guard & TASK_EXC_GUARD_VM_FATAL); } } static void handle_kernel_abort(arm_saved_state_t *state, uint64_t esr, vm_offset_t fault_addr, fault_status_t fault_code, vm_prot_t fault_type, expected_fault_handler_t expected_fault_handler) { thread_t thread = current_thread(); struct copyio_recovery_entry *recover = find_copyio_recovery_entry( get_saved_state_pc(state)); #ifndef CONFIG_XNUPOST (void)expected_fault_handler; #endif /* CONFIG_XNUPOST */ #if CONFIG_DTRACE if (is_vm_fault(fault_code) && thread->t_dtrace_inprobe) { /* Executing under dtrace_probe? */ if (dtrace_tally_fault(fault_addr)) { /* Should a fault under dtrace be ignored? */ /* * Point to next instruction, or recovery handler if set. */ if (recover) { handle_kernel_abort_recover(state, esr, VM_USER_STRIP_PTR(fault_addr), thread, recover); } else { add_saved_state_pc(state, 4); } return; } else { panic_with_thread_kernel_state("Unexpected page fault under dtrace_probe", state); } } #endif #if HAS_MTE if (is_tag_check_fault(fault_code)) { #ifdef CONFIG_XNUPOST if (expected_fault_handler && expected_fault_handler(state)) { return; } #endif /* CONFIG_XNUPOST */ handle_kernel_tag_check_fault(state, esr, fault_addr, thread, recover); return; } else #endif /* HAS_MTE */ if (is_vm_fault(fault_code)) { kern_return_t result = KERN_FAILURE; vm_map_t map; int interruptible; #ifdef CONFIG_XNUPOST if (expected_fault_handler && expected_fault_handler(state)) { return; } #endif /* CONFIG_XNUPOST */ if (VM_KERNEL_ADDRESS(fault_addr) || thread == THREAD_NULL || recover == 0) { /* * If no recovery handler is supplied, always drive the fault against * the kernel map. If the fault was taken against a userspace VA, indicating * an unprotected access to user address space, vm_fault() should fail and * ultimately lead to a panic here. */ map = kernel_map; interruptible = THREAD_UNINT; #if CONFIG_KERNEL_TAGGING /* * If kernel tagging is enabled, canonicalize the address here, so that we have a * chance to find it in the VM ranges. Do not mess with exec fault cases. */ if (!((fault_type) & VM_PROT_EXECUTE)) { fault_addr = vm_memtag_canonicalize(map, fault_addr); } #endif /* CONFIG_KERNEL_TAGGING */ } else { map = thread->map; /** * In the case that the recovery handler is set (e.g., during copyio * and dtrace probes), we don't want the vm_fault() operation to be * aborted early. Those code paths can't handle restarting the * vm_fault() operation so don't allow it to return early without * creating the wanted mapping. */ interruptible = (recover) ? THREAD_UNINT : THREAD_ABORTSAFE; #if HAS_MTE || HAS_MTE_EMULATION_SHIMS /* * If we have MTE enabled on the process, allow recovery of tagged * addresses. */ if (current_task_has_sec_enabled() && recover) { if (!((fault_type) & VM_PROT_EXECUTE)) { fault_addr = vm_memtag_canonicalize(map, fault_addr); } } #endif /* HAS_MTE || HAS_MTE_EMULATION_SHIMS */ } /* * Ensure no faults in the physical aperture. This could happen if * a page table is incorrectly allocated from the read only region * when running with KTRR. */ if (__improbable(fault_addr >= physmap_base) && (fault_addr < physmap_end)) { panic_with_thread_kernel_state("Unexpected fault in kernel physical aperture", state); } if (__improbable(fault_addr >= gVirtBase && fault_addr < static_memory_end)) { panic_with_thread_kernel_state("Unexpected fault in kernel static region", state); } /* check to see if it is just a pmap ref/modify fault */ if (!is_translation_fault(fault_code)) { result = arm_fast_fault(map->pmap, fault_addr, fault_type, (fault_code == FSC_ACCESS_FLAG_FAULT_L3), FALSE); if (result == KERN_SUCCESS) { return; } } /** * vm_fault() can be called with preemption disabled (and indeed this is expected for * certain copyio() scenarios), but can't safely be called with interrupts disabled once * the system has gone multi-threaded. Other than some early-boot situations such as * startup kext loading, kernel paging operations should never be triggered by * non-interruptible code in the first place, so a fault from such a context will * ultimately produce a kernel data abort panic anyway. In these cases, skip calling * vm_fault() to avoid masking the real kernel panic with a failed VM locking assertion. */ if (__probable(SPSR_INTERRUPTS_ENABLED(get_saved_state_cpsr(state)) || startup_phase < STARTUP_SUB_EARLY_BOOT || current_cpu_datap()->cpu_hibernate)) { if (result != KERN_PROTECTION_FAILURE) { // VM will query this property when deciding to throttle this fault, we don't want to // throttle kernel faults for copyio faults. The presence of a recovery entry is used as a // proxy for being in copyio code. bool const was_recover = thread->recover; thread->recover = was_recover || recover; /* * We have to "fault" the page in. */ result = vm_fault(map, fault_addr, fault_type, /* change_wiring */ FALSE, VM_KERN_MEMORY_NONE, interruptible, /* caller_pmap */ NULL, /* caller_pmap_addr */ 0); thread->recover = was_recover; } if (result == KERN_SUCCESS) { return; } } if (recover) { /* * Handle guard object faults during copyio() routines */ if ((fault_addr & TTBR_SELECTOR) == 0) { #if CONFIG_MAP_RANGES if (result == KERN_INVALID_ADDRESS && vm_map_in_user_range_voids(map, fault_addr, 1)) { result = KERN_INVALID_GUARD_OBJECT_SLOT; } #endif /* CONFIG_MAP_RANGES */ if (result == KERN_INVALID_GUARD_OBJECT_SLOT) { handle_kernel_guard_object_fault(fault_addr, thread); } } /* * If we have a recover handler, invoke it now. */ handle_kernel_abort_recover(state, esr, fault_addr, thread, recover); return; } panic_fault_address = fault_addr; } else if (is_alignment_fault(fault_code)) { if (recover) { handle_kernel_abort_recover(state, esr, fault_addr, thread, recover); return; } panic_with_thread_kernel_state("Unaligned kernel data abort.", state); } else if (is_parity_error(fault_code)) { #if defined(APPLE_ARM64_ARCH_FAMILY) /* * Platform errors are handled in sleh_sync before interrupts are enabled. */ #else panic_with_thread_kernel_state("Kernel parity error.", state); #endif } else { kprintf("Unclassified kernel abort (fault_code=0x%x)\n", fault_code); } panic_with_thread_kernel_state("Kernel data abort.", state); } extern void syscall_trace(struct arm_saved_state * regs); static void handle_svc(arm_saved_state_t *state) { int trap_no = get_saved_state_svc_number(state); thread_t thread = current_thread(); struct proc *p; #define handle_svc_kprintf(x...) /* kprintf("handle_svc: " x) */ #define TRACE_SYSCALL 1 #if TRACE_SYSCALL syscall_trace(state); #endif thread->iotier_override = THROTTLE_LEVEL_NONE; /* Reset IO tier override before handling SVC from userspace */ if (trap_no == (int)PLATFORM_SYSCALL_TRAP_NO) { platform_syscall(state); panic("Returned from platform_syscall()?"); } current_cached_proc_cred_update(); if (trap_no < 0) { switch (trap_no) { case MACH_ARM_TRAP_ABSTIME: handle_mach_absolute_time_trap(state); return; case MACH_ARM_TRAP_CONTTIME: handle_mach_continuous_time_trap(state); return; } /* Counting perhaps better in the handler, but this is how it's been done */ thread->syscalls_mach++; mach_syscall(state); } else { /* Counting perhaps better in the handler, but this is how it's been done */ thread->syscalls_unix++; p = get_bsdthreadtask_info(thread); assert(p); unix_syscall(state, thread, p); } } static void handle_mach_absolute_time_trap(arm_saved_state_t *state) { uint64_t now = mach_absolute_time(); saved_state64(state)->x[0] = now; } static void handle_mach_continuous_time_trap(arm_saved_state_t *state) { uint64_t now = mach_continuous_time(); saved_state64(state)->x[0] = now; } __attribute__((noreturn)) static void handle_msr_trap(arm_saved_state_t *state, uint64_t esr) { exception_type_t exception = EXC_BAD_INSTRUCTION; mach_exception_data_type_t codes[2] = {EXC_ARM_UNDEFINED}; mach_msg_type_number_t numcodes = 2; uint32_t instr = 0; if (!is_saved_state64(state)) { panic("MSR/MRS trap (ESR 0x%llx) from 32-bit state", esr); } if (PSR64_IS_KERNEL(get_saved_state_cpsr(state))) { panic("MSR/MRS trap (ESR 0x%llx) from kernel", esr); } COPYIN(get_saved_state_pc(state), (char *)&instr, sizeof(instr)); codes[1] = instr; exception_triage(exception, codes, numcodes); __builtin_unreachable(); } #if __has_feature(ptrauth_calls) static void stringify_gpr(unsigned int r, char reg[4]) { switch (r) { case 29: strncpy(reg, "fp", 4); return; case 30: strncpy(reg, "lr", 4); return; case 31: strncpy(reg, "xzr", 4); return; default: snprintf(reg, 4, "x%u", r); return; } } static void autxx_instruction_extract_reg(uint32_t instr, char reg[4]) { unsigned int rd = ARM64_INSTR_AUTxx_RD_GET(instr); stringify_gpr(rd, reg); } static const char * autix_system_instruction_extract_reg(uint32_t instr) { unsigned int crm_op2 = ARM64_INSTR_AUTIx_SYSTEM_CRM_OP2_GET(instr); if (crm_op2 == ARM64_INSTR_AUTIx_SYSTEM_CRM_OP2_AUTIA1716 || crm_op2 == ARM64_INSTR_AUTIx_SYSTEM_CRM_OP2_AUTIB1716) { return "x17"; } else { return "lr"; } } static void bxrax_instruction_extract_reg(uint32_t instr, char reg[4]) { unsigned int rn = ARM64_INSTR_BxRAx_RN_GET(instr); stringify_gpr(rn, reg); } static void handle_pac_fail(arm_saved_state_t *state, uint64_t esr) { exception_type_t exception = EXC_BAD_ACCESS | EXC_PTRAUTH_BIT; mach_exception_data_type_t codes[2] = {EXC_ARM_PAC_FAIL}; mach_msg_type_number_t numcodes = 2; uint32_t instr = 0; if (!is_saved_state64(state)) { panic("PAC failure (ESR 0x%llx) from 32-bit state", esr); } COPYIN(get_saved_state_pc(state), (char *)&instr, sizeof(instr)); if (PSR64_IS_KERNEL(get_saved_state_cpsr(state))) { #define GENERIC_PAC_FAILURE_MSG_FMT "PAC failure from kernel with %s key" #define AUTXX_MSG_FMT GENERIC_PAC_FAILURE_MSG_FMT " while authing %s" #define BXRAX_MSG_FMT GENERIC_PAC_FAILURE_MSG_FMT " while branching to %s" #define RETAX_MSG_FMT GENERIC_PAC_FAILURE_MSG_FMT " while returning" #define GENERIC_MSG_FMT GENERIC_PAC_FAILURE_MSG_FMT #define MAX_PAC_MSG_FMT BXRAX_MSG_FMT char msg[strlen(MAX_PAC_MSG_FMT) - strlen("%s") + strlen("IA") - strlen("%s") + strlen("xzr") + 1]; ptrauth_key key = (ptrauth_key)(esr & 0x3); const char *key_str = ptrauth_key_to_string(key); if (ARM64_INSTR_IS_AUTxx(instr)) { char reg[4]; autxx_instruction_extract_reg(instr, reg); snprintf(msg, sizeof(msg), AUTXX_MSG_FMT, key_str, reg); } else if (ARM64_INSTR_IS_AUTIx_SYSTEM(instr)) { const char *reg = autix_system_instruction_extract_reg(instr); snprintf(msg, sizeof(msg), AUTXX_MSG_FMT, key_str, reg); } else if (ARM64_INSTR_IS_BxRAx(instr)) { char reg[4]; bxrax_instruction_extract_reg(instr, reg); snprintf(msg, sizeof(msg), BXRAX_MSG_FMT, key_str, reg); } else if (ARM64_INSTR_IS_RETAx(instr)) { snprintf(msg, sizeof(msg), RETAX_MSG_FMT, key_str); } else { snprintf(msg, sizeof(msg), GENERIC_MSG_FMT, key_str); } panic_with_thread_kernel_state(msg, state); } codes[1] = instr; exception_triage(exception, codes, numcodes); __builtin_unreachable(); } #endif /* __has_feature(ptrauth_calls) */ __attribute__((noreturn)) static void handle_bti_fail(arm_saved_state_t *state, uint64_t esr) { uint32_t btype = (uint32_t) esr & ISS_BTI_BTYPE_MASK; if (!is_saved_state64(state)) { /* BTI is an ARMv8 feature, this should not be possible */ panic("BTI failure for 32-bit state? (ESR=0x%llx)", esr); } /* * We currently only expect BTI to be enabled for kernel pages, so panic if * we detect otherwise. */ if (!PSR64_IS_KERNEL(get_saved_state_cpsr(state))) { panic("Unexpected non-kernel BTI failure? (ESR=0x%llx)", esr); } #define BTI_FAIL_PTR_FMT "%04x" #define BTI_FAIL_MSG_FMT "Kernel BTI failure (BTYPE=0x" BTI_FAIL_PTR_FMT ")" /* Replace the pointer format with the length of the pointer message+NULL */ char msg[strlen(BTI_FAIL_MSG_FMT) - strlen(BTI_FAIL_PTR_FMT) + 8 + 1]; snprintf(msg, sizeof(msg), BTI_FAIL_MSG_FMT, btype); panic_with_thread_kernel_state(msg, state); __builtin_unreachable(); } static void handle_user_trapped_instruction32(arm_saved_state_t *state, uint64_t esr) { exception_type_t exception = EXC_BAD_INSTRUCTION; mach_exception_data_type_t codes[2] = {EXC_ARM_UNDEFINED}; mach_msg_type_number_t numcodes = 2; uint32_t instr; if (is_saved_state64(state)) { panic("ESR (0x%llx) for instruction trapped from U32, but saved state is 64-bit.", esr); } if (PSR64_IS_KERNEL(get_saved_state_cpsr(state))) { panic("ESR (0x%llx) for instruction trapped from U32, actually came from kernel?", esr); } COPYIN(get_saved_state_pc(state), (char *)&instr, sizeof(instr)); codes[1] = instr; exception_triage(exception, codes, numcodes); __builtin_unreachable(); } static void handle_simd_trap(arm_saved_state_t *state, uint64_t esr) { exception_type_t exception = EXC_BAD_INSTRUCTION; mach_exception_data_type_t codes[2] = {EXC_ARM_UNDEFINED}; mach_msg_type_number_t numcodes = 2; uint32_t instr = 0; if (PSR64_IS_KERNEL(get_saved_state_cpsr(state))) { panic("ESR (0x%llx) for SIMD trap from userland, actually came from kernel?", esr); } COPYIN(get_saved_state_pc(state), (char *)&instr, sizeof(instr)); codes[1] = instr; exception_triage(exception, codes, numcodes); __builtin_unreachable(); } void sleh_irq(arm_saved_state_t *state) { cpu_data_t * cdp __unused = getCpuDatap(); #if MACH_ASSERT int preemption_level = sleh_get_preemption_level(); #endif sleh_interrupt_handler_prologue(state, DBG_INTR_TYPE_OTHER); #if USE_APPLEARMSMP PE_handle_ext_interrupt(); #else /* Run the registered interrupt handler. */ cdp->interrupt_handler(cdp->interrupt_target, cdp->interrupt_refCon, cdp->interrupt_nub, cdp->interrupt_source); #endif entropy_collect(); sleh_interrupt_handler_epilogue(); #if MACH_ASSERT if (preemption_level != sleh_get_preemption_level()) { panic("irq handler %p changed preemption level from %d to %d", cdp->interrupt_handler, preemption_level, sleh_get_preemption_level()); } #endif } void sleh_fiq(arm_saved_state_t *state) { unsigned int type = DBG_INTR_TYPE_UNKNOWN; #if MACH_ASSERT int preemption_level = sleh_get_preemption_level(); #endif #if CONFIG_CPU_COUNTERS && !CPMU_AIC_PMI #define FIQ_PMI 1 uint64_t pmcr0 = 0, upmsr = 0; #endif /* CONFIG_CPU_COUNTERS && !CPMU_AIC_PMI */ #if defined(HAS_IPI) boolean_t is_ipi = FALSE; uint64_t ipi_sr = 0; if (gFastIPI) { MRS(ipi_sr, "S3_5_C15_C1_1"); if (ipi_sr & ARM64_IPISR_IPI_PENDING) { is_ipi = TRUE; } } if (is_ipi) { type = DBG_INTR_TYPE_IPI; } else #endif /* defined(HAS_IPI) */ if (ml_get_timer_pending()) { type = DBG_INTR_TYPE_TIMER; } #if FIQ_PMI /* Consult the PMI sysregs after IPI/timer classification. */ else if (cpc_pmi_pending(&pmcr0, &upmsr)) { type = DBG_INTR_TYPE_PMI; } #endif /* FIQ_PMI */ sleh_interrupt_handler_prologue(state, type); #if APPLEVIRTUALPLATFORM uint64_t iar = __builtin_arm_rsr64("ICC_IAR0_EL1"); #endif #if defined(HAS_IPI) if (type == DBG_INTR_TYPE_IPI) { /* * Order is important here: we must ack the IPI by writing IPI_SR * before we call cpu_signal_handler(). Otherwise, there will be * a window between the completion of pending-signal processing in * cpu_signal_handler() and the ack during which a newly-issued * IPI to this CPU may be lost. ISB is required to ensure the msr * is retired before execution of cpu_signal_handler(). */ MSR("S3_5_C15_C1_1", ARM64_IPISR_IPI_PENDING); __builtin_arm_isb(ISB_SY); cpu_signal_handler(); } else #endif /* defined(HAS_IPI) */ #if FIQ_PMI if (type == DBG_INTR_TYPE_PMI) { ml_interrupt_masked_debug_start(cpc_fiq, DBG_INTR_TYPE_PMI); cpc_fiq(getCpuDatap(), pmcr0, upmsr); ml_interrupt_masked_debug_end(); } else #endif /* FIQ_PMI */ { /* * We don't know that this is a timer, but we don't have insight into * the other interrupts that go down this path. */ cpu_data_t *cdp = getCpuDatap(); cdp->cpu_decrementer = -1; /* Large */ /* * ARM64_TODO: whether we're coming from userland is ignored right now. * We can easily thread it through, but not bothering for the * moment (AArch32 doesn't either). */ ml_interrupt_masked_debug_start(rtclock_intr, DBG_INTR_TYPE_TIMER); rtclock_intr(TRUE); ml_interrupt_masked_debug_end(); } #if APPLEVIRTUALPLATFORM if (iar != GIC_SPURIOUS_IRQ) { __builtin_arm_wsr64("ICC_EOIR0_EL1", iar); __builtin_arm_isb(ISB_SY); } #endif sleh_interrupt_handler_epilogue(); #if MACH_ASSERT if (preemption_level != sleh_get_preemption_level()) { panic("fiq type %u changed preemption level from %d to %d", type, preemption_level, sleh_get_preemption_level()); } #endif } void sleh_serror(arm_context_t *context, uint64_t esr, vm_offset_t far) { task_vtimer_check(current_thread()); KDBG_RELEASE(MACHDBG_CODE(DBG_MACH_EXCP_SERR_ARM, 0) | DBG_FUNC_START, esr, VM_KERNEL_ADDRHIDE(far)); arm_saved_state_t *state = &context->ss; #if MACH_ASSERT int preemption_level = sleh_get_preemption_level(); #endif if (PSR64_IS_USER(get_saved_state_cpsr(state))) { /* Sanitize FAR (only if we came from userspace) */ saved_state64(state)->far = 0; } ASSERT_CONTEXT_SANITY(context); arm64_platform_error(state, esr, far, PLAT_ERR_SRC_ASYNC); #if MACH_ASSERT if (preemption_level != sleh_get_preemption_level()) { panic("serror changed preemption level from %d to %d", preemption_level, sleh_get_preemption_level()); } #endif KDBG_RELEASE(MACHDBG_CODE(DBG_MACH_EXCP_SERR_ARM, 0) | DBG_FUNC_END, esr, VM_KERNEL_ADDRHIDE(far)); } void mach_syscall_trace_exit(unsigned int retval, unsigned int call_number) { KERNEL_DEBUG_CONSTANT_IST(KDEBUG_TRACE, MACHDBG_CODE(DBG_MACH_EXCP_SC, (call_number)) | DBG_FUNC_END, retval, 0, 0, 0, 0); } __attribute__((noreturn)) void thread_syscall_return(kern_return_t error) { thread_t thread; struct arm_saved_state *state; thread = current_thread(); state = get_user_regs(thread); assert(is_saved_state64(state)); saved_state64(state)->x[0] = error; #if MACH_ASSERT kern_allocation_name_t prior __assert_only = thread_get_kernel_state(thread)->allocation_name; assertf(prior == NULL, "thread_set_allocation_name(\"%s\") not cleared", kern_allocation_get_name(prior)); #endif /* MACH_ASSERT */ if (kdebug_enable) { /* Invert syscall number (negative for a mach syscall) */ mach_syscall_trace_exit(error, (-1) * get_saved_state_svc_number(state)); } thread_exception_return(); } void syscall_trace( struct arm_saved_state * regs __unused) { /* kprintf("syscall: %d\n", saved_state64(regs)->x[16]); */ } static void sleh_interrupt_handler_prologue(arm_saved_state_t *state, unsigned int type) { const bool is_user = PSR64_IS_USER(get_saved_state_cpsr(state)); if (is_user == true) { /* Sanitize FAR (only if the interrupt occurred while the CPU was in usermode) */ saved_state64(state)->far = 0; } recount_enter_interrupt(); task_vtimer_check(current_thread()); uint64_t pc = is_user ? get_saved_state_pc(state) : VM_KERNEL_UNSLIDE(get_saved_state_pc(state)); KDBG_RELEASE(MACHDBG_CODE(DBG_MACH_EXCP_INTR, 0) | DBG_FUNC_START, 0, pc, is_user, type); } static void sleh_interrupt_handler_epilogue(void) { #if KPERF kperf_interrupt(); #endif /* KPERF */ KDBG_RELEASE(MACHDBG_CODE(DBG_MACH_EXCP_INTR, 0) | DBG_FUNC_END); recount_leave_interrupt(); } void sleh_invalid_stack(arm_context_t *context, uint64_t esr __unused, vm_offset_t far __unused) { thread_t thread = current_thread(); vm_offset_t kernel_stack_bottom, sp; sp = get_saved_state_sp(&context->ss); vm_offset_t kstackptr = (vm_offset_t)thread->machine.kstackptr; kernel_stack_bottom = round_page(kstackptr) - KERNEL_STACK_SIZE; if ((sp < kernel_stack_bottom) && (sp >= (kernel_stack_bottom - PAGE_SIZE))) { panic_with_thread_kernel_state("Invalid kernel stack pointer (probable overflow).", &context->ss); } panic_with_thread_kernel_state("Invalid kernel stack pointer (probable corruption or early boot).", &context->ss); } #if MACH_ASSERT static int trap_handled; static const char * handle_recoverable_kernel_trap( __unused void *tstate, uint16_t comment) { assert(comment == TEST_RECOVERABLE_SOFT_TRAP); printf("Recoverable trap handled.\n"); trap_handled = 1; return NULL; } KERNEL_BRK_DESCRIPTOR_DEFINE(test_desc, .type = TRAP_TELEMETRY_TYPE_KERNEL_BRK_TEST, .base = TEST_RECOVERABLE_SOFT_TRAP, .max = TEST_RECOVERABLE_SOFT_TRAP, .options = BRK_TELEMETRY_OPTIONS_RECOVERABLE_DEFAULT( /* enable_telemetry */ false), .handle_breakpoint = handle_recoverable_kernel_trap); static int recoverable_kernel_trap_test(__unused int64_t in, int64_t *out) { ml_recoverable_trap(TEST_RECOVERABLE_SOFT_TRAP); *out = trap_handled; return 0; } SYSCTL_TEST_REGISTER(recoverable_kernel_trap, recoverable_kernel_trap_test); #endif #if CONFIG_SPTM /** * Evaluate the panic lockdown policy for a synchronous EL1 SP0 exception * * Returns true if panic lockdown should be initiated (but does not itself do * so) */ __SECURITY_STACK_DISALLOWED_PUSH bool sleh_panic_lockdown_should_initiate_el1_sp0_sync(uint64_t esr, uint64_t elr, uint64_t far, uint64_t spsr) { const esr_exception_class_t class = ESR_EC(esr); const bool any_exceptions_masked = spsr & DAIF_STANDARD_DISABLE; switch (class) { case ESR_EC_PC_ALIGN: /* PC misaligned (should never happen) */ case ESR_EC_IABORT_EL1: /* Potential iPAC failure (poisoned PC) */ case ESR_EC_PAC_FAIL: { /* FPAC fail */ return true; } case ESR_EC_BRK_AARCH64: { /* * Breakpoints are used on non-FPAC systems to signal some PAC failures */ #if HAS_TELEMETRY_KERNEL_BRK const struct kernel_brk_descriptor *desc; desc = find_kernel_brk_descriptor_by_comment(ISS_BRK_COMMENT(esr)); if (desc && desc->options.recoverable) { /* * We matched a breakpoint and it's recoverable, skip lockdown. */ return false; } #endif /* HAS_TELEMETRY_KERNEL_BRK */ /* * If we don't support telemetry breakpoints and/or didn't match a * recoverable breakpoint, the exception is fatal. */ return true; } case ESR_EC_DABORT_EL1: { const struct copyio_recovery_entry *cre = find_copyio_recovery_entry(elr); if (cre) { #if HAS_MTE /* * Tag check faults are fatal in copyio when they impact a kernel * address and the copyio function is not permitted to recover from * a tag check fault on a kernel address. * * We can determine if we faulted on a kernel address by checking * any of the cannonical address bits. This works since * copy_validate will reject user addresses with any of these * cannonical bits set before reaching the underlying copyio * functions, and so bits set here means this is actually a kernel * address. */ const bool is_kernel_far = far & TTBR_SELECTOR; if (is_kernel_far && is_tag_check_fault(ISS_DA_FSC(ESR_ISS(esr))) && !cre->recover_from_kernel_read_tag_check_fault && !cre->recover_from_kernel_write_tag_check_fault) { return true; } #endif /* HAS_MTE */ /* * copyio faults are recoverable regardless of whether or not * exceptions are masked. */ return false; } #if HAS_MTE /* * Kernel tag check faults are always fatal outside of copyio. */ if (is_tag_check_fault(ISS_DA_FSC(ESR_ISS(esr)))) { return true; } #endif /* HAS_MTE */ /* * Heuristic: if FAR != XPAC(FAR), the pointer was likely corrupted * due to PAC. */ const uint64_t far_stripped = (uint64_t)ptrauth_strip((void *)far, ptrauth_key_asda); if (far != far_stripped) { /* potential dPAC failure (poisoined address) */ return true; } if (any_exceptions_masked && startup_phase >= STARTUP_SUB_LOCKDOWN) { /* * Any data abort taken with exceptions masked is fatal if we're * past early boot. */ return true; } return false; } case ESR_EC_UNCATEGORIZED: { /* Undefined instruction (GDBTRAP for stackshots, etc.) */ return false; } case ESR_EC_BTI_FAIL: { /* Kernel BTI exceptions are always fatal */ return true; } default: { if (!any_exceptions_masked) { /* * When exceptions are not masked, we default-allow exceptions. */ return false; } if (startup_phase < STARTUP_SUB_LOCKDOWN) { /* * Ignore early boot exceptions even if exceptions are masked. */ return false; } /* Default-deny all others when exceptions are masked */ return true; } } } __SECURITY_STACK_DISALLOWED_POP #endif /* CONFIG_SPTM */ |