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 | /* * Copyright (c) 2022 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * The contents of this file constitute Original Code as defined in and * are subject to the Apple Public Source License Version 1.1 (the * "License"). You may not use this file except in compliance with the * License. Please obtain a copy of the License at * http://www.apple.com/publicsource and read it before using this file. * * This 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 OR NON-INFRINGEMENT. Please see the * License for the specific language governing rights and limitations * under the License. * * @APPLE_LICENSE_HEADER_END@ */ #include <stdarg.h> #include <stdatomic.h> #include <os/overflow.h> #include <os/atomic_private.h> #include <machine/atomic.h> #include <mach/vm_param.h> #include <mach/vm_map.h> #include <mach/shared_region.h> #include <vm/vm_kern_xnu.h> #include <kern/zalloc.h> #include <kern/kalloc.h> #include <kern/assert.h> #include <kern/locks.h> #include <kern/recount.h> #include <kern/sched_prim.h> #include <kern/lock_rw.h> #include <libkern/libkern.h> #include <libkern/section_keywords.h> #include <libkern/coretrust/coretrust.h> #include <libkern/amfi/amfi.h> #include <pexpert/pexpert.h> #include <sys/vm.h> #include <sys/proc.h> #include <sys/codesign.h> #include <sys/code_signing.h> #include <sys/trust_caches.h> #include <sys/sysctl.h> #include <sys/reboot.h> #include <uuid/uuid.h> #include <IOKit/IOLib.h> #include <IOKit/IOBSD.h> #if CONFIG_SPTM /* * The TrustedExecutionMonitor environment works in tandem with the SPTM to provide code * signing and memory isolation enforcement for data structures critical to ensuring that * all code executed on the system is authorized to do so. * * Unless the data is managed by TXM itself, XNU needs to page-align everything, make the * relevant type transfer, and then reference the memory as read-only. * * TXM enforces concurrency on its side, but through the use of try-locks. Upon a failure * in acquiring the lock, TXM will panic. As a result, in order to ensure single-threaded * behavior, the kernel also has to take some locks on its side befor calling into TXM. */ #include <sys/trusted_execution_monitor.h> #include <pexpert/arm64/board_config.h> /* Lock group used for all locks within the kernel for TXM */ LCK_GRP_DECLARE(txm_lck_grp, "txm_code_signing_lck_grp"); #pragma mark Utilities /* Number of thread stacks is known at build-time */ #define NUM_TXM_THREAD_STACKS (MAX_CPUS) txm_thread_stack_t thread_stacks[NUM_TXM_THREAD_STACKS] = {0}; /* Singly-linked-list head for thread stacks */ SLIST_HEAD(thread_stack_head, _txm_thread_stack) thread_stacks_head = SLIST_HEAD_INITIALIZER(thread_stacks_head); static decl_lck_mtx_data(, thread_stacks_lock); static void *thread_stack_event = NULL; static void setup_thread_stacks(void) { extern const sptm_bootstrap_args_xnu_t *SPTMArgs; txm_thread_stack_t *thread_stack = NULL; /* Initialize each thread stack and add it to the list */ for (uint32_t i = 0; i < NUM_TXM_THREAD_STACKS; i++) { thread_stack = &thread_stacks[i]; /* Acquire the thread stack virtual mapping */ thread_stack->thread_stack_papt = SPTMArgs->txm_thread_stacks[i]; /* Acquire the thread stack physical page */ thread_stack->thread_stack_phys = (uintptr_t)kvtophys_nofail( thread_stack->thread_stack_papt); /* Resolve the pointer to the thread stack data */ thread_stack->thread_stack_data = (TXMThreadStack_t*)(thread_stack->thread_stack_papt + (PAGE_SIZE - 1024)); /* Add thread stack to the list head */ SLIST_INSERT_HEAD(&thread_stacks_head, thread_stack, link); } /* Initialize the thread stacks lock */ lck_mtx_init(&thread_stacks_lock, &txm_lck_grp, 0); } static txm_thread_stack_t* acquire_thread_stack(void) { txm_thread_stack_t *thread_stack = NULL; /* Lock the thread stack list */ lck_mtx_lock(&thread_stacks_lock); while (SLIST_EMPTY(&thread_stacks_head) == true) { lck_mtx_sleep( &thread_stacks_lock, LCK_SLEEP_DEFAULT, &thread_stack_event, THREAD_UNINT); } if (SLIST_EMPTY(&thread_stacks_head) == true) { panic("unable to acquire a thread stack for TXM"); } /* Use the first available thread stack */ thread_stack = SLIST_FIRST(&thread_stacks_head); /* Remove the thread stack from the list */ SLIST_REMOVE_HEAD(&thread_stacks_head, link); /* Unlock the thread stack list */ lck_mtx_unlock(&thread_stacks_lock); /* Associate the thread stack with the current thread */ thread_associate_txm_thread_stack(thread_stack->thread_stack_phys); return thread_stack; } static void release_thread_stack( txm_thread_stack_t* thread_stack) { /* Remove the TXM thread stack association with the current thread */ thread_disassociate_txm_thread_stack(thread_stack->thread_stack_phys); /* Lock the thread stack list */ lck_mtx_lock(&thread_stacks_lock); /* Add the thread stack at the list head */ SLIST_INSERT_HEAD(&thread_stacks_head, thread_stack, link); /* Unlock the thread stack list */ lck_mtx_unlock(&thread_stacks_lock); /* Wake up any threads waiting to acquire a thread stack */ thread_wakeup(&thread_stack_event); } static kern_return_t txm_parse_return( TXMReturn_t txm_ret) { switch (txm_ret.returnCode) { case kTXMSuccess: return KERN_SUCCESS; case kTXMReturnOutOfMemory: return KERN_RESOURCE_SHORTAGE; case kTXMReturnNotFound: return KERN_NOT_FOUND; case kTXMReturnNotSupported: return KERN_NOT_SUPPORTED; #if kTXMKernelAPIVersion >= 6 case kTXMReturnTryAgain: return KERN_OPERATION_TIMED_OUT; #endif default: return KERN_FAILURE; } } static void txm_print_return( TXMKernelSelector_t selector, TXMReturn_t txm_ret) { /* * We specifically use IOLog instead of printf since printf is compiled out on * RELEASE kernels. We want to ensure that errors from TXM are captured within * sysdiagnoses from the field. */ if (txm_ret.returnCode == kTXMSuccess) { return; } else if (txm_ret.returnCode == kTXMReturnTrustCache) { IOLog("TXM [Error]: TrustCache: selector: %u | 0x%02X | 0x%02X | %u\n", selector, txm_ret.tcRet.component, txm_ret.tcRet.error, txm_ret.tcRet.uniqueError); } else if (txm_ret.returnCode == kTXMReturnCodeSignature) { IOLog("TXM [Error]: CodeSignature: selector: %u | 0x%02X | 0x%02X | %u\n", selector, txm_ret.csRet.component, txm_ret.csRet.error, txm_ret.csRet.uniqueError); } else if (txm_ret.returnCode == kTXMReturnCodeErrno) { IOLog("TXM [Error]: Errno: selector: %u | %d\n", selector, txm_ret.errnoRet); } else { IOLog("TXM [Error]: selector: %u | %u\n", selector, txm_ret.returnCode); } } #pragma mark Page Allocation static void txm_add_page(void) { txm_call_t txm_call = { .selector = kTXMKernelSelectorAddFreeListPage, .failure_fatal = true, .num_input_args = 1 }; /* Allocate a page from the VM -- transfers page to TXM internally */ vm_map_address_t phys_addr = pmap_txm_allocate_page(); /* Add this page to the TXM free list */ txm_kernel_call(&txm_call, phys_addr); } #pragma mark Calls static void txm_kernel_call_registers_setup( txm_call_t *parameters, sptm_call_regs_t *registers, va_list args) { /* * We are only ever allowed a maximum of 7 arguments for calling into TXM. * This is because the SPTM dispatch only sets up registers x0-x7 for the * call, and x0 is always reserved for passing in a thread stack for TXM * to operate on. */ switch (parameters->num_input_args) { case 7: registers->x1 = va_arg(args, uintptr_t); registers->x2 = va_arg(args, uintptr_t); registers->x3 = va_arg(args, uintptr_t); registers->x4 = va_arg(args, uintptr_t); registers->x5 = va_arg(args, uintptr_t); registers->x6 = va_arg(args, uintptr_t); registers->x7 = va_arg(args, uintptr_t); break; case 6: registers->x1 = va_arg(args, uintptr_t); registers->x2 = va_arg(args, uintptr_t); registers->x3 = va_arg(args, uintptr_t); registers->x4 = va_arg(args, uintptr_t); registers->x5 = va_arg(args, uintptr_t); registers->x6 = va_arg(args, uintptr_t); break; case 5: registers->x1 = va_arg(args, uintptr_t); registers->x2 = va_arg(args, uintptr_t); registers->x3 = va_arg(args, uintptr_t); registers->x4 = va_arg(args, uintptr_t); registers->x5 = va_arg(args, uintptr_t); break; case 4: registers->x1 = va_arg(args, uintptr_t); registers->x2 = va_arg(args, uintptr_t); registers->x3 = va_arg(args, uintptr_t); registers->x4 = va_arg(args, uintptr_t); break; case 3: registers->x1 = va_arg(args, uintptr_t); registers->x2 = va_arg(args, uintptr_t); registers->x3 = va_arg(args, uintptr_t); break; case 2: registers->x1 = va_arg(args, uintptr_t); registers->x2 = va_arg(args, uintptr_t); break; case 1: registers->x1 = va_arg(args, uintptr_t); break; case 0: break; default: panic("invalid number of arguments to TXM: selector: %u | %u", parameters->selector, parameters->num_input_args); } } static TXMReturn_t txm_kernel_call_internal( txm_call_t *parameters, va_list args) { TXMReturn_t txm_ret = (TXMReturn_t){.returnCode = kTXMReturnGeneric}; sptm_call_regs_t txm_registers = {0}; txm_thread_stack_t *thread_stack = NULL; const TXMThreadStack_t *thread_stack_data = NULL; const TXMSharedContextData_t *shared_context_data = NULL; /* Obtain a stack for this call */ thread_stack = acquire_thread_stack(); thread_stack_data = thread_stack->thread_stack_data; shared_context_data = &thread_stack_data->sharedData; /* Setup argument registers */ txm_registers.x0 = thread_stack->thread_stack_phys; txm_kernel_call_registers_setup(parameters, &txm_registers, args); /* Track resource usage */ recount_enter_secure(); /* Call into TXM */ txm_enter(parameters->selector, &txm_registers); recount_leave_secure(); txm_ret = (TXMReturn_t){.rawValue = shared_context_data->txmReturnCode}; parameters->txm_ret = txm_ret; if (parameters->txm_ret.returnCode == kTXMSuccess) { parameters->num_return_words = shared_context_data->txmNumReturnWords; if (parameters->num_return_words > kTXMStackReturnWords) { panic("received excessive return words from TXM: selector: %u | %llu", parameters->selector, parameters->num_return_words); } for (uint64_t i = 0; i < parameters->num_return_words; i++) { parameters->return_words[i] = shared_context_data->txmReturnWords[i]; } } /* Release the thread stack as it is no longer needed */ release_thread_stack(thread_stack); thread_stack_data = NULL; shared_context_data = NULL; return txm_ret; } kern_return_t txm_kernel_call( txm_call_t *parameters, ...) { TXMReturn_t txm_ret = (TXMReturn_t){.returnCode = kTXMReturnGeneric}; kern_return_t ret = KERN_DENIED; va_list args; /* Start the variadic arguments list */ va_start(args, parameters); do { txm_ret = txm_kernel_call_internal(parameters, args); if (txm_ret.returnCode == kTXMReturnOutOfMemory) { if (parameters->selector == kTXMKernelSelectorAddFreeListPage) { panic("received out-of-memory error when adding a free page to TXM"); } txm_add_page(); } } while (txm_ret.returnCode == kTXMReturnOutOfMemory); /* Clean up the variadic arguments list */ va_end(args); /* Print all TXM logs from the log buffer */ if (parameters->skip_logs == false) { txm_print_logs(); } /* Print the return code from TXM -- only prints for an error */ if (parameters->failure_silent != true) { if (parameters->failure_code_silent != txm_ret.returnCode) { txm_print_return(parameters->selector, txm_ret); } } /* * To ease the process of calling into TXM, and to also reduce the number of * lines of code for each call site, the txm_call_t offers some properties * we can enforce over here. Go through these, and panic in case they aren't * honored. * * NOTE: We check for "<" instead of "!=" for the number of return words we * get back from TXM since this helps in forward development. If the kernel * and TXM are proceeding at different project cadences, we do not want to * gate adding more return words from TXM on the kernel first adopting the * new number of return words. */ ret = txm_parse_return(txm_ret); if (parameters->failure_fatal && (ret != KERN_SUCCESS)) { panic("received fatal error for a selector from TXM: selector: %u | 0x%0llX", parameters->selector, txm_ret.rawValue); } else if (parameters->num_return_words < parameters->num_output_args) { /* Only panic if return was a success */ if (ret == KERN_SUCCESS) { panic("received fewer than expected return words from TXM: selector: %u | %llu", parameters->selector, parameters->num_return_words); } } return ret; } void txm_transfer_region( vm_address_t addr, vm_size_t size) { vm_address_t addr_end = 0; vm_size_t size_aligned = round_page(size); if ((addr & PAGE_MASK) != 0) { panic("attempted to transfer non-page-aligned memory to TXM: %p", (void*)addr); } else if (os_add_overflow(addr, size_aligned, &addr_end)) { panic("overflow on range to be transferred to TXM: %p | %lu", (void*)addr, size); } /* Make the memory read-only first (transfer will panic otherwise) */ vm_protect(kernel_map, addr, size_aligned, false, VM_PROT_READ); /* Transfer each physical page to be TXM_DEFAULT */ for (vm_address_t page = addr; page < addr_end; page += PAGE_SIZE) { pmap_txm_transfer_page(page); } } void txm_reclaim_region( vm_address_t addr, vm_size_t size) { vm_address_t addr_end = 0; vm_size_t size_aligned = round_page(size); if ((addr & PAGE_MASK) != 0) { panic("attempted to reclaim non-page-aligned memory from TXM: %p", (void*)addr); } else if (os_add_overflow(addr, size_aligned, &addr_end)) { panic("overflow on range to be reclaimed from TXM: %p | %lu", (void*)addr, size); } /* * We can only reclaim once TXM has transferred the memory range back to the * kernel. Hence, we simply try and switch permissions to read-write. If TXM * hasn't transferred pages, this then should panic. */ vm_protect(kernel_map, addr, size_aligned, false, VM_PROT_READ | VM_PROT_WRITE); } static SECURITY_READ_ONLY_LATE(const char*) txm_log_page = NULL; static SECURITY_READ_ONLY_LATE(const uint32_t*) txm_log_head = NULL; static SECURITY_READ_ONLY_LATE(const uint32_t*) txm_log_sync = NULL; static decl_lck_mtx_data(, log_lock); static uint32_t log_head = 0; void txm_print_logs(void) { uint32_t start_index = 0; uint32_t end_index = 0; /* * The design here is very simple. TXM keeps adding slots to its circular buffer * and the kernel attempts to read each one and print it, maintaining its own head * for the log. * * This design is by nature lazy. TXM doesn't know or care if the kernel has gone * through and printed any of the logs, so it'll just keep writing into its buffer * and then circle around when it becomes full. * * This is fine most of the time since there are a decent amount of slots in the * log buffer. We mostly have an issue when TXM is adding so many logs so quickly * such that it wraps around and starts overwriting logs which haven't been seen * by the kernel. If this were to happen, TXM's log head may circle around the * head maintained by the kernel, causing a lot of logs to be missed, since the * kernel only attempts the number of logs in-between the two heads. * * The fix for that is complicated, and until we see an actual impact, we're going * to keep the simpler design in place. */ /* Return if the logging hasn't been setup yet */ if (txm_log_sync == NULL) { return; } /* * Holding the log lock and printing can cause lots of issues since printing can * be rather slow. While we make it a point to keep the logging buffer quiet, some * actions (such as loading trust caches) are still very chatty. * * As a result, we optimize this routine to ensure that the lock itself isn't held * for very long. All we need to do within the critical section is calculate the * starting and ending index of the log buffer. The actual printing doesn't need * to be done with the lock held. */ lck_mtx_lock(&log_lock); start_index = log_head; end_index = os_atomic_load(txm_log_head, relaxed) % kTXMLogSlots; /* Update the log head with the new index */ log_head = end_index; /* Release the log lock */ lck_mtx_unlock(&log_lock); if (start_index != end_index) { /* Use load acquire here to sync up with all writes to the buffer */ os_atomic_load(txm_log_sync, acquire); while (start_index != end_index) { const char *slot = txm_log_page + (start_index * kTXMLogSlotSize); /* We add newlines after each log statement since TXM does not */ printf("%s\n", slot); start_index = (start_index + 1) % kTXMLogSlots; } } } #pragma mark Initialization SECURITY_READ_ONLY_LATE(const TXMReadWriteData_t*) txm_rw_data = NULL; SECURITY_READ_ONLY_LATE(const TXMReadOnlyData_t*) txm_ro_data = NULL; SECURITY_READ_ONLY_LATE(const CSConfig_t*) txm_cs_config = NULL; SECURITY_READ_ONLY_LATE(CSRestrictedModeState_t*) txm_restricted_mode_state = NULL; SECURITY_READ_ONLY_LATE(const TXMMetrics_t*) txm_metrics = NULL; SECURITY_READ_ONLY_LATE(bool*) developer_mode_enabled = NULL; static SECURITY_READ_ONLY_LATE(bool) code_signing_enabled = true; static SECURITY_READ_ONLY_LATE(uint32_t) managed_signature_size = 0; static decl_lck_mtx_data(, compilation_service_lock); static decl_lck_mtx_data(, unregister_sync_lock); static void get_logging_info(void) { txm_call_t txm_call = { .selector = kTXMKernelSelectorGetLogInfo, .failure_fatal = true, .num_output_args = 3 }; txm_kernel_call(&txm_call); txm_log_page = (const char*)txm_call.return_words[0]; txm_log_head = (const uint32_t*)txm_call.return_words[1]; txm_log_sync = (const uint32_t*)txm_call.return_words[2]; } static void get_code_signing_info(void) { txm_call_t txm_call = { .selector = kTXMKernelSelectorGetCodeSigningInfo, .failure_fatal = true, .num_output_args = 6 }; txm_kernel_call(&txm_call); /* * Not using txm_call.return_words[0] for now. This was previously the * code_signing_enabled field, but we've since switched to acquiring that * value from TXM's read-only data. * * Not using txm_call.return_words[2] for now. This was previously the * metrics field, but we've since switched to acquiring that value from * TXM's read-write data. * * Not using txm_call.return_words[4] for now. This was previously the * txm_cs_config field, but we've since switched to acquiring that value * from TXM's read-only data. */ txm_rw_data = (TXMReadWriteData_t*)txm_call.return_words[0]; developer_mode_enabled = (bool*)txm_call.return_words[1]; managed_signature_size = (uint32_t)txm_call.return_words[3]; txm_ro_data = (TXMReadOnlyData_t*)txm_call.return_words[5]; txm_metrics = &txm_rw_data->metrics; /* Set code_signing_disabled based on read-only data */ code_signing_enabled = txm_ro_data->codeSigningDisabled == false; /* Set txm_cs_config based on read-only data */ txm_cs_config = &txm_ro_data->CSConfiguration; /* Only setup when REM is supported on the platform */ if (txm_cs_config->systemPolicy->featureSet.restrictedExecutionMode == true) { txm_restricted_mode_state = txm_ro_data->restrictedModeState; } #if kTXMKernelAPIVersion >= 11 research_mode_enabled = txm_ro_data->buildType.research; extended_research_mode_enabled = txm_ro_data->buildType.extendedResearch; #endif /* Setup the number of boot trust caches */ num_static_trust_caches = os_atomic_load(&txm_metrics->trustCaches.numStatic, relaxed); num_engineering_trust_caches = os_atomic_load(&txm_metrics->trustCaches.numEngineering, relaxed); } void code_signing_init(void) { printf("libTXM_KernelVersion: %u\n", libTrustedExecutionMonitor_KernelVersion); printf("libTXM_Image4Version: %u\n", libTrustedExecutionMonitor_Image4Version); /* Setup the thread stacks used by TXM */ setup_thread_stacks(); /* Setup the logging lock */ lck_mtx_init(&log_lock, &txm_lck_grp, 0); /* Setup TXM logging information */ get_logging_info(); /* Setup code signing configuration */ get_code_signing_info(); /* Setup all the other locks we need */ lck_mtx_init(&compilation_service_lock, &txm_lck_grp, 0); lck_mtx_init(&unregister_sync_lock, &txm_lck_grp, 0); /* Require signed code when monitor is enabled */ if (code_signing_enabled == true) { cs_debug_fail_on_unsigned_code = 1; } } void txm_enter_lockdown_mode(void) { txm_call_t txm_call = { .selector = kTXMKernelSelectorEnterLockdownMode, .failure_fatal = true, }; txm_kernel_call(&txm_call); } kern_return_t txm_secure_channel_shared_page( uint64_t *secure_channel_phys, size_t *secure_channel_size) { #if kTXMKernelAPIVersion >= 5 txm_call_t txm_call = { .selector = kTXMKernelSelectorGetSecureChannelAddr, .num_output_args = 2 }; kern_return_t ret = txm_kernel_call(&txm_call); if (ret == KERN_NOT_SUPPORTED) { return ret; } else if (ret != KERN_SUCCESS) { panic("unexpected failure for TXM secure channel: %d", ret); } /* Return the physical address */ if (secure_channel_phys != NULL) { *secure_channel_phys = txm_call.return_words[0]; } /* Return the size */ if (secure_channel_size != NULL) { *secure_channel_size = txm_call.return_words[1]; } return KERN_SUCCESS; #else (void)secure_channel_phys; (void)secure_channel_size; return KERN_NOT_SUPPORTED; #endif } #pragma mark Developer Mode void txm_toggle_developer_mode(bool state) { txm_call_t txm_call = { .selector = kTXMKernelSelectorDeveloperModeToggle, .failure_fatal = true, .num_input_args = 1 }; txm_kernel_call(&txm_call, state); } #pragma mark Restricted Execution Mode kern_return_t txm_rem_enable(void) { txm_call_t txm_call = { .selector = kTXMKernelSelectorEnableRestrictedMode }; return txm_kernel_call(&txm_call); } kern_return_t txm_rem_state(void) { if (txm_restricted_mode_state == NULL) { return KERN_NOT_SUPPORTED; } CSReturn_t cs_ret = restrictedModeStatus(txm_restricted_mode_state); if (cs_ret.error == kCSReturnSuccess) { return KERN_SUCCESS; } return KERN_DENIED; } #pragma mark Device State void txm_update_device_state(void) { #if kTXMKernelAPIVersion >= 6 txm_call_t txm_call = { .selector = kTXMSelectorUpdateDeviceState, .failure_fatal = true }; txm_kernel_call(&txm_call); #endif } void txm_complete_security_boot_mode( __unused uint32_t security_boot_mode) { #if kTXMKernelAPIVersion >= 6 txm_call_t txm_call = { .selector = kTXMSelectorCompleteSecurityBootMode, .num_input_args = 1, .failure_fatal = true }; txm_kernel_call(&txm_call, security_boot_mode); #endif } #pragma mark Code Signing and Provisioning Profiles bool txm_code_signing_enabled(void) { return code_signing_enabled; } vm_size_t txm_managed_code_signature_size(void) { return managed_signature_size; } kern_return_t txm_register_provisioning_profile( const void *profile_blob, const size_t profile_blob_size, void **profile_obj) { txm_call_t txm_call = { .selector = kTXMKernelSelectorRegisterProvisioningProfile, .num_input_args = 2, .num_output_args = 1 }; vm_address_t payload_addr = 0; kern_return_t ret = KERN_DENIED; /* We need to allocate page-wise in order to transfer the range to TXM */ ret = kmem_alloc(kernel_map, &payload_addr, profile_blob_size, KMA_KOBJECT | KMA_DATA, VM_KERN_MEMORY_SECURITY); if (ret != KERN_SUCCESS) { printf("unable to allocate memory for profile payload: %d\n", ret); goto exit; } /* Copy the contents into the allocation */ memcpy((void*)payload_addr, profile_blob, profile_blob_size); /* Transfer the memory range to TXM */ txm_transfer_region(payload_addr, profile_blob_size); ret = txm_kernel_call(&txm_call, payload_addr, profile_blob_size); if (ret == KERN_SUCCESS) { *profile_obj = (void*)txm_call.return_words[0]; } exit: if ((ret != KERN_SUCCESS) && (payload_addr != 0)) { /* Reclaim this memory range */ txm_reclaim_region(payload_addr, profile_blob_size); /* Free the memory range */ kmem_free(kernel_map, payload_addr, profile_blob_size); payload_addr = 0; } return ret; } kern_return_t txm_trust_provisioning_profile( __unused void *profile_obj, __unused const void *sig_data, __unused size_t sig_size) { #if kTXMKernelAPIVersion >= 7 txm_call_t txm_call = { .selector = kTXMKernelSelectorTrustProvisioningProfile, .num_input_args = 3 }; return txm_kernel_call(&txm_call, profile_obj, sig_data, sig_size); #else /* The TXM selector hasn't yet landed */ return KERN_SUCCESS; #endif } kern_return_t txm_unregister_provisioning_profile( void *profile_obj) { txm_call_t txm_call = { .selector = kTXMKernelSelectorUnregisterProvisioningProfile, .num_input_args = 1, .num_output_args = 2 }; vm_address_t profile_addr = 0; vm_size_t profile_size = 0; kern_return_t ret = KERN_DENIED; ret = txm_kernel_call(&txm_call, profile_obj); if (ret != KERN_SUCCESS) { return ret; } profile_addr = txm_call.return_words[0]; profile_size = txm_call.return_words[1]; /* Reclaim this memory range */ txm_reclaim_region(profile_addr, profile_size); /* Free the memory range */ kmem_free(kernel_map, profile_addr, profile_size); return KERN_SUCCESS; } kern_return_t txm_associate_provisioning_profile( void *sig_obj, void *profile_obj) { txm_call_t txm_call = { .selector = kTXMKernelSelectorAssociateProvisioningProfile, .num_input_args = 2, }; return txm_kernel_call(&txm_call, sig_obj, profile_obj); } kern_return_t txm_disassociate_provisioning_profile( void *sig_obj) { txm_call_t txm_call = { .selector = kTXMKernelSelectorDisassociateProvisioningProfile, .num_input_args = 1, }; /* * Take the unregistration sync lock. * For more information: rdar://99205627. */ lck_mtx_lock(&unregister_sync_lock); /* Disassociate the profile from the signature */ kern_return_t ret = txm_kernel_call(&txm_call, sig_obj); /* Release the unregistration sync lock */ lck_mtx_unlock(&unregister_sync_lock); return ret; } void txm_set_compilation_service_cdhash( const uint8_t cdhash[CS_CDHASH_LEN]) { txm_call_t txm_call = { .selector = kTXMKernelSelectorAuthorizeCompilationServiceCDHash, .num_input_args = 1, }; lck_mtx_lock(&compilation_service_lock); txm_kernel_call(&txm_call, cdhash); lck_mtx_unlock(&compilation_service_lock); } bool txm_match_compilation_service_cdhash( const uint8_t cdhash[CS_CDHASH_LEN]) { txm_call_t txm_call = { .selector = kTXMKernelSelectorMatchCompilationServiceCDHash, .failure_silent = true, .num_input_args = 1, .num_output_args = 1, }; kern_return_t ret = KERN_DENIED; /* Be safe and take the lock (avoid thread collisions) */ lck_mtx_lock(&compilation_service_lock); ret = txm_kernel_call(&txm_call, cdhash); lck_mtx_unlock(&compilation_service_lock); if (ret == KERN_SUCCESS) { return true; } return false; } void txm_set_local_signing_public_key( const uint8_t public_key[XNU_LOCAL_SIGNING_KEY_SIZE]) { txm_call_t txm_call = { .selector = kTXMKernelSelectorSetLocalSigningPublicKey, .num_input_args = 1, }; txm_kernel_call(&txm_call, public_key); } uint8_t* txm_get_local_signing_public_key(void) { txm_call_t txm_call = { .selector = kTXMKernelSelectorGetLocalSigningPublicKey, .num_output_args = 1, }; kern_return_t ret = KERN_DENIED; ret = txm_kernel_call(&txm_call); if (ret != KERN_SUCCESS) { return NULL; } return (uint8_t*)txm_call.return_words[0]; } void txm_unrestrict_local_signing_cdhash( const uint8_t cdhash[CS_CDHASH_LEN]) { txm_call_t txm_call = { .selector = kTXMKernelSelectorAuthorizeLocalSigningCDHash, .num_input_args = 1, }; txm_kernel_call(&txm_call, cdhash); } kern_return_t txm_register_code_signature( const vm_address_t signature_addr, const vm_size_t signature_size, const vm_offset_t code_directory_offset, const char *signature_path, void **sig_obj, vm_address_t *txm_signature_addr) { txm_call_t txm_call = { .selector = kTXMKernelSelectorRegisterCodeSignature, .num_input_args = 3, .num_output_args = 2, }; kern_return_t ret = KERN_DENIED; /* * TXM performs more exhaustive validation of the code signature and figures * out the best code directory to use on its own. As a result, this offset here * is not used. */ (void)code_directory_offset; /* * If the signature is large enough to not fit within TXM's managed signature * size, then we need to transfer it over so it is owned by TXM. */ if (signature_size > txm_managed_code_signature_size()) { txm_transfer_region(signature_addr, signature_size); } ret = txm_kernel_call( &txm_call, signature_addr, signature_size, signature_path); if (ret != KERN_SUCCESS) { goto exit; } *sig_obj = (void*)txm_call.return_words[0]; *txm_signature_addr = txm_call.return_words[1]; exit: if ((ret != KERN_SUCCESS) && (signature_size > txm_managed_code_signature_size())) { txm_reclaim_region(signature_addr, signature_size); } return ret; } kern_return_t txm_unregister_code_signature( void *sig_obj) { txm_call_t txm_call = { .selector = kTXMKernelSelectorUnregisterCodeSignature, .failure_fatal = true, .num_input_args = 1, .num_output_args = 2, }; TXMCodeSignature_t *cs_obj = sig_obj; vm_address_t signature_addr = 0; vm_size_t signature_size = 0; bool txm_managed = false; /* * Unregistering a code signature can cause lock contention in TXM against a * set of other functions. The unregistration operation is very common when the * system is about to reboot because the VFS layer unmounts all volumes. * * In order to avoid this issue, we detect if the code signature in question * has been mapped in other address spaces, and if so, we avoid unregistering * the code signature when we're about to shut down. This leaks memory, but * we're about to shut down. */ if ((cs_obj->referenceCount > 0) && (get_system_inshutdown() != 0)) { printf("TXM [XNU]: unregistration of signature skipped as system is in shutdown\n"); return KERN_ABORTED; } /* Check if the signature memory is TXM managed */ txm_managed = cs_obj->sptmType != TXM_BULK_DATA; /* * Take the unregistration sync lock. * For more information: rdar://99205627. */ lck_mtx_lock(&unregister_sync_lock); /* Unregister the signature from TXM -- cannot fail */ txm_kernel_call(&txm_call, sig_obj); /* Release the unregistration sync lock */ lck_mtx_unlock(&unregister_sync_lock); signature_addr = txm_call.return_words[0]; signature_size = txm_call.return_words[1]; /* Reclaim the memory range in case we need to */ if (txm_managed == false) { txm_reclaim_region(signature_addr, signature_size); } return KERN_SUCCESS; } kern_return_t txm_verify_code_signature( void *sig_obj, uint32_t *trust_level) { txm_call_t txm_call = { .selector = kTXMKernelSelectorValidateCodeSignature, .num_input_args = 1, }; kern_return_t ret = txm_kernel_call(&txm_call, sig_obj); if ((ret == KERN_SUCCESS) && (trust_level != NULL)) { /* * Abolsutely gross, but it's not worth linking all of libCodeSignature just for * this simple change. We should either return the trust level from TXM, or when * we adopt libCodeSignature more broadly, then use an accessor function. */ *trust_level = ((TXMCodeSignature_t*)sig_obj)->sig.trustLevel; } return ret; } kern_return_t txm_reconstitute_code_signature( void *sig_obj, vm_address_t *unneeded_addr, vm_size_t *unneeded_size) { txm_call_t txm_call = { .selector = kTXMKernelSelectorReconstituteCodeSignature, .failure_fatal = true, .num_input_args = 1, .num_output_args = 2, }; vm_address_t return_addr = 0; vm_size_t return_size = 0; /* Reconstitute the code signature -- cannot fail */ txm_kernel_call(&txm_call, sig_obj); return_addr = txm_call.return_words[0]; return_size = txm_call.return_words[1]; /* Reclaim the memory region if we need to */ if ((return_addr != 0) && (return_size != 0)) { txm_reclaim_region(return_addr, return_size); } *unneeded_addr = return_addr; *unneeded_size = return_size; return KERN_SUCCESS; } #pragma mark Address Spaces kern_return_t txm_register_address_space( pmap_t pmap, uint16_t addr_space_id, TXMAddressSpaceFlags_t flags) { txm_call_t txm_call = { .selector = kTXMKernelSelectorRegisterAddressSpace, .failure_fatal = true, .num_input_args = 2, .num_output_args = 1, }; TXMAddressSpace_t *txm_addr_space = NULL; /* Register the address space -- cannot fail */ txm_kernel_call(&txm_call, addr_space_id, flags); /* Set the address space object within the PMAP */ txm_addr_space = (TXMAddressSpace_t*)txm_call.return_words[0]; pmap_txm_set_addr_space(pmap, txm_addr_space); return KERN_SUCCESS; } kern_return_t txm_unregister_address_space( pmap_t pmap) { txm_call_t txm_call = { .selector = kTXMKernelSelectorUnregisterAddressSpace, .failure_fatal = true, .num_input_args = 1, }; TXMAddressSpace_t *txm_addr_space = pmap_txm_addr_space(pmap); /* * Take the unregistration sync lock. * For more information: rdar://99205627. */ lck_mtx_lock(&unregister_sync_lock); /* Unregister the address space -- cannot fail */ txm_kernel_call(&txm_call, txm_addr_space); /* Release the unregistration sync lock */ lck_mtx_unlock(&unregister_sync_lock); /* Remove the address space from the pmap */ pmap_txm_set_addr_space(pmap, NULL); return KERN_SUCCESS; } kern_return_t txm_setup_nested_address_space( pmap_t pmap, const vm_address_t region_addr, const vm_size_t region_size) { txm_call_t txm_call = { .selector = kTXMKernelSelectorSetupNestedAddressSpace, .num_input_args = 3 }; TXMAddressSpace_t *txm_addr_space = pmap_txm_addr_space(pmap); kern_return_t ret = KERN_DENIED; pmap_txm_acquire_exclusive_lock(pmap); ret = txm_kernel_call(&txm_call, txm_addr_space, region_addr, region_size); pmap_txm_release_exclusive_lock(pmap); return ret; } kern_return_t txm_associate_code_signature( pmap_t pmap, void *sig_obj, const vm_address_t region_addr, const vm_size_t region_size, const vm_offset_t region_offset) { txm_call_t txm_call = { .selector = kTXMKernelSelectorAssociateCodeSignature, .num_input_args = 5, }; TXMAddressSpace_t *txm_addr_space = pmap_txm_addr_space(pmap); kern_return_t ret = KERN_DENIED; /* * Associating a code signature may require exclusive access to the TXM address * space lock within TXM. */ pmap_txm_acquire_exclusive_lock(pmap); /* * If the address space in question is a nested address space, then all associations * need to go into the shared region base range. The VM layer is inconsistent with * how it makes associations with TXM vs. how it maps pages into the shared region. * * For TXM, the associations are made without taking the base range into account, * but when mappings are entered into the shared region, the base range is taken * into account. To normalize this, we add the base range address here. */ vm_address_t adjusted_region_addr = region_addr; if (txm_addr_space->addrSpaceID.type == kTXMAddressSpaceIDTypeSharedRegion) { adjusted_region_addr += txm_addr_space->baseAddr; } /* * The VM tries a bunch of weird mappings within launchd for some platform code * which isn't mapped contiguously. These mappings don't succeed, but the failure * is fairly harmless since everything seems to work. However, since the call to * TXM fails, we make a series of logs. Hence, for launchd, we suppress failure * logs. */ if (txm_addr_space->addrSpaceID.type == kTXMAddressSpaceIDTypeAddressSpace) { /* TXMTODO: Scope this to launchd better */ txm_call.failure_code_silent = kTXMReturnPlatformCodeMapping; } /* Check if the main region has been set on the address space */ bool main_region_set = txm_addr_space->mainRegion != NULL; bool main_region_set_after = false; ret = txm_kernel_call( &txm_call, txm_addr_space, sig_obj, adjusted_region_addr, region_size, region_offset); while (ret == KERN_OPERATION_TIMED_OUT) { /* * There is no easy method to sleep in the kernel. This operation has the * potential to burn CPU cycles, but that is alright since we don't actually * ever expect to enter this case on legitimately operating systems. */ ret = txm_kernel_call( &txm_call, txm_addr_space, sig_obj, adjusted_region_addr, region_size, region_offset); } /* * If the main region wasn't set on the address space before hand, but this new * call into TXM was successful and sets the main region, it means this signature * object is associated with the main region on the address space. With this, we * can now set the appropriate trust level on the PMAP. */ if (ret == KERN_SUCCESS) { main_region_set_after = txm_addr_space->mainRegion != NULL; } /* Unlock the TXM address space lock */ pmap_txm_release_exclusive_lock(pmap); /* Check if we should set the trust level on the PMAP */ if (!main_region_set && main_region_set_after) { const TXMCodeSignature_t *cs_obj = sig_obj; const SignatureValidation_t *sig = &cs_obj->sig; /* * This is gross, as we're dereferencing into a private data structure type. * There are 2 ways to clean this up in the future: * 1. Import libCodeSignature, so we can use "codeSignatureGetTrustLevel". * 2. Cache the trust level on the address space within TXM and then use it. */ pmap_txm_set_trust_level(pmap, sig->trustLevel); } return ret; } kern_return_t txm_allow_jit_region( pmap_t pmap) { txm_call_t txm_call = { .selector = kTXMKernelSelectorAllowJITRegion, .num_input_args = 1, }; TXMAddressSpace_t *txm_addr_space = pmap_txm_addr_space(pmap); kern_return_t ret = KERN_DENIED; pmap_txm_acquire_shared_lock(pmap); ret = txm_kernel_call(&txm_call, txm_addr_space); pmap_txm_release_shared_lock(pmap); return ret; } kern_return_t txm_associate_jit_region( pmap_t pmap, const vm_address_t region_addr, const vm_size_t region_size) { txm_call_t txm_call = { .selector = kTXMKernelSelectorAssociateJITRegion, .num_input_args = 3, }; TXMAddressSpace_t *txm_addr_space = pmap_txm_addr_space(pmap); kern_return_t ret = KERN_DENIED; /* * Associating a JIT region may require exclusive access to the TXM address * space lock within TXM. */ pmap_txm_acquire_exclusive_lock(pmap); ret = txm_kernel_call( &txm_call, txm_addr_space, region_addr, region_size); /* Unlock the TXM address space lock */ pmap_txm_release_exclusive_lock(pmap); return ret; } kern_return_t txm_address_space_debugged( pmap_t pmap) { TXMAddressSpace_t *txm_addr_space = pmap_txm_addr_space(pmap); bool debug_regions_allowed = false; /* * We do not actually need to trap into the monitor for this function for * now. It might be a tad bit more secure to actually trap into the monitor * as it implicitly verifies all of our pointers, but since this is a simple * state check against the address space, the real policy around it lies * within the kernel still, in which case entering the monitor doesn't * really provide much more security. */ pmap_txm_acquire_shared_lock(pmap); debug_regions_allowed = os_atomic_load(&txm_addr_space->allowsInvalidCode, relaxed); pmap_txm_release_shared_lock(pmap); if (debug_regions_allowed == true) { return KERN_SUCCESS; } return KERN_DENIED; } kern_return_t txm_associate_debug_region( pmap_t pmap, const vm_address_t region_addr, const vm_size_t region_size) { #if kTXMKernelAPIVersion >= 10 txm_call_t txm_call = { .selector = kTXMKernelSelectorAssociateDebugRegion, .num_input_args = 3, }; TXMAddressSpace_t *txm_addr_space = pmap_txm_addr_space(pmap); kern_return_t ret = KERN_DENIED; /* * Associating a debug region may require exclusive access to the TXM address * space lock within TXM. */ pmap_txm_acquire_exclusive_lock(pmap); ret = txm_kernel_call( &txm_call, txm_addr_space, region_addr, region_size); /* Unlock the TXM address space lock */ pmap_txm_release_exclusive_lock(pmap); return ret; #else /* * This function is an interesting one. There is no need for us to make * a call into TXM for this one and instead, all we need to do here is * to verify that the TXM address space actually allows debug regions to * be mapped in or not. */ (void)region_addr; (void)region_size; kern_return_t ret = txm_address_space_debugged(pmap); if (ret != KERN_SUCCESS) { printf("address space does not allow creating debug regions\n"); } return ret; #endif } kern_return_t txm_allow_invalid_code( pmap_t pmap) { txm_call_t txm_call = { .selector = kTXMKernelSelectorAllowInvalidCode, .num_input_args = 1, }; TXMAddressSpace_t *txm_addr_space = pmap_txm_addr_space(pmap); kern_return_t ret = KERN_DENIED; /* * Allowing invalid code may require exclusive access to the TXM address * space lock within TXM. */ pmap_txm_acquire_exclusive_lock(pmap); ret = txm_kernel_call(&txm_call, txm_addr_space); pmap_txm_release_exclusive_lock(pmap); return ret; } kern_return_t txm_get_trust_level_kdp( pmap_t pmap, uint32_t *trust_level) { CSTrust_t txm_trust_level = kCSTrustUntrusted; kern_return_t ret = pmap_txm_get_trust_level_kdp(pmap, &txm_trust_level); if (ret != KERN_SUCCESS) { return ret; } if (trust_level != NULL) { *trust_level = txm_trust_level; } return KERN_SUCCESS; } kern_return_t txm_get_jit_address_range_kdp( pmap_t pmap, uintptr_t *jit_region_start, uintptr_t *jit_region_end) { return pmap_txm_get_jit_address_range_kdp(pmap, jit_region_start, jit_region_end); } kern_return_t txm_address_space_exempt( const pmap_t pmap) { if (pmap_performs_stage2_translations(pmap) == true) { return KERN_SUCCESS; } return KERN_DENIED; } kern_return_t txm_fork_prepare( pmap_t old_pmap, pmap_t new_pmap) { /* * We'll add support for this as the need for it becomes more important. * TXMTODO: Complete this implementation. */ (void)old_pmap; (void)new_pmap; return KERN_SUCCESS; } kern_return_t txm_acquire_signing_identifier( const void *sig_obj, const char **signing_id) { txm_call_t txm_call = { .selector = kTXMKernelSelectorAcquireSigningIdentifier, .num_input_args = 1, .num_output_args = 1, .failure_fatal = true, }; /* Get the signing ID -- should not fail */ txm_kernel_call(&txm_call, sig_obj); if (signing_id != NULL) { *signing_id = (const char*)txm_call.return_words[0]; } return KERN_SUCCESS; } #pragma mark Entitlements kern_return_t txm_associate_kernel_entitlements( void *sig_obj, const void *kernel_entitlements) { txm_call_t txm_call = { .selector = kTXMKernelSelectorAssociateKernelEntitlements, .num_input_args = 2, .failure_fatal = true, }; /* Associate the kernel entitlements -- should not fail */ txm_kernel_call(&txm_call, sig_obj, kernel_entitlements); return KERN_SUCCESS; } kern_return_t txm_resolve_kernel_entitlements( pmap_t pmap, const void **kernel_entitlements) { txm_call_t txm_call = { .selector = kTXMKernelSelectorResolveKernelEntitlementsAddressSpace, .skip_logs = true, .num_input_args = 1, .num_output_args = 1, .failure_silent = true, }; TXMAddressSpace_t *txm_addr_space = NULL; kern_return_t ret = KERN_DENIED; if (pmap == pmap_txm_kernel_pmap()) { return KERN_NOT_FOUND; } txm_addr_space = pmap_txm_addr_space(pmap); pmap_txm_acquire_shared_lock(pmap); ret = txm_kernel_call(&txm_call, txm_addr_space); pmap_txm_release_shared_lock(pmap); if ((ret == KERN_SUCCESS) && (kernel_entitlements != NULL)) { *kernel_entitlements = (const void*)txm_call.return_words[0]; } return ret; } kern_return_t txm_accelerate_entitlements( void *sig_obj, const CEContext_t **ce_ctx) { txm_call_t txm_call = { .selector = kTXMKernelSelectorAccelerateEntitlements, .num_input_args = 1, .num_output_args = 1, }; kern_return_t ret = txm_kernel_call(&txm_call, sig_obj); if ((ret == KERN_SUCCESS) && (ce_ctx != NULL)) { *ce_ctx = (const CEContext_t*)txm_call.return_words[0]; } return ret; } #pragma mark Image4 void* txm_image4_storage_data( __unused size_t *allocated_size) { /* * AppleImage4 builds a variant of TXM which TXM should link against statically * thereby removing the need for the kernel to allocate some data on behalf of * the kernel extension. */ panic("unsupported AppleImage4 interface"); } void txm_image4_set_nonce( const img4_nonce_domain_index_t ndi, const img4_nonce_t *nonce) { txm_call_t txm_call = { .selector = kTXMKernelSelectorImage4SetNonce, .failure_fatal = true, .num_input_args = 2, }; txm_kernel_call(&txm_call, ndi, nonce); } void txm_image4_roll_nonce( const img4_nonce_domain_index_t ndi) { txm_call_t txm_call = { .selector = kTXMKernelSelectorImage4RollNonce, .failure_fatal = true, .num_input_args = 1, }; txm_kernel_call(&txm_call, ndi); } errno_t txm_image4_copy_nonce( const img4_nonce_domain_index_t ndi, img4_nonce_t *nonce_out) { txm_call_t txm_call = { .selector = kTXMKernelSelectorImage4GetNonce, .num_input_args = 1, .num_output_args = 1, }; const img4_nonce_t *nonce = NULL; TXMReturn_t txm_ret = {0}; kern_return_t ret = KERN_DENIED; ret = txm_kernel_call(&txm_call, ndi); if (ret != KERN_SUCCESS) { txm_ret = txm_call.txm_ret; if (txm_ret.returnCode != kTXMReturnCodeErrno) { return EPERM; } return txm_ret.errnoRet; } /* Acquire a pointer to the nonce from TXM */ nonce = (const img4_nonce_t*)txm_call.return_words[0]; if (nonce_out) { *nonce_out = *nonce; } return 0; } errno_t txm_image4_execute_object( img4_runtime_object_spec_index_t obj_spec_index, const img4_buff_t *payload, const img4_buff_t *manifest) { /* Not supported within TXM yet */ (void)obj_spec_index; (void)payload; (void)manifest; printf("image4 object execution isn't supported by TXM\n"); return ENOSYS; } errno_t txm_image4_copy_object( img4_runtime_object_spec_index_t obj_spec_index, vm_address_t object_out, size_t *object_length) { /* Not supported within TXM yet */ (void)obj_spec_index; (void)object_out; (void)object_length; printf("image4 object copying isn't supported by TXM\n"); return ENOSYS; } const void* txm_image4_get_monitor_exports(void) { txm_call_t txm_call = { .selector = kTXMKernelSelectorImage4GetExports, .failure_fatal = true, .num_output_args = 1, }; txm_kernel_call(&txm_call); return (const void*)txm_call.return_words[0]; } errno_t txm_image4_set_release_type( const char *release_type) { txm_call_t txm_call = { .selector = kTXMKernelSelectorImage4SetReleaseType, .failure_fatal = true, .num_input_args = 1, }; /* Set the release type -- cannot fail */ txm_kernel_call(&txm_call, release_type); return 0; } errno_t txm_image4_set_bnch_shadow( const img4_nonce_domain_index_t ndi) { txm_call_t txm_call = { .selector = kTXMKernelSelectorImage4SetBootNonceShadow, .failure_fatal = true, .num_input_args = 1, }; /* Set the release type -- cannot fail */ txm_kernel_call(&txm_call, ndi); return 0; } #pragma mark Image4 - New static inline bool _txm_image4_monitor_trap_supported( image4_cs_trap_t selector) { switch (selector) { #if kTXMImage4APIVersion >= 1 case IMAGE4_CS_TRAP_KMOD_SET_RELEASE_TYPE: case IMAGE4_CS_TRAP_NONCE_SET: case IMAGE4_CS_TRAP_NONCE_ROLL: case IMAGE4_CS_TRAP_IMAGE_ACTIVATE: return true; #endif default: return false; } } kern_return_t txm_image4_transfer_region( image4_cs_trap_t selector, vm_address_t region_addr, vm_size_t region_size) { if (_txm_image4_monitor_trap_supported(selector) == true) { txm_transfer_region(region_addr, region_size); } return KERN_SUCCESS; } kern_return_t txm_image4_reclaim_region( image4_cs_trap_t selector, vm_address_t region_addr, vm_size_t region_size) { if (_txm_image4_monitor_trap_supported(selector) == true) { txm_reclaim_region(region_addr, region_size); } return KERN_SUCCESS; } errno_t txm_image4_monitor_trap( image4_cs_trap_t selector, const void *input_data, size_t input_size) { txm_call_t txm_call = { .selector = kTXMKernelSelectorImage4Dispatch, .num_input_args = 5, }; kern_return_t ret = txm_kernel_call( &txm_call, selector, input_data, input_size, NULL, NULL); /* Return 0 for success */ if (ret == KERN_SUCCESS) { return 0; } /* Check for an errno_t return */ if (txm_call.txm_ret.returnCode == kTXMReturnCodeErrno) { if (txm_call.txm_ret.errnoRet == 0) { panic("image4 dispatch: unexpected success errno_t: %llu", selector); } return txm_call.txm_ret.errnoRet; } /* Return a generic error */ return EPERM; } #pragma mark Metrics #if DEVELOPMENT || DEBUG SYSCTL_DECL(_txm); SYSCTL_NODE(, OID_AUTO, txm, CTLFLAG_RD, 0, "TXM"); SYSCTL_DECL(_txm_metrics); SYSCTL_NODE(_txm, OID_AUTO, metrics, CTLFLAG_RD, 0, "TXM Metrics"); #define TXM_METRIC(type, name, field) \ static int __txm_metric_ ## type ## _ ## name SYSCTL_HANDLER_ARGS; \ SYSCTL_DECL(_txm_metrics_ ## type); \ SYSCTL_PROC( \ _txm_metrics_ ## type, OID_AUTO, \ name, CTLTYPE_INT | CTLFLAG_RD, \ NULL, 0, __txm_metric_ ## type ## _ ## name, \ "I", "collected data from \'" #type "\':\'" #field "\'"); \ static int __txm_metric_ ## type ## _ ## name SYSCTL_HANDLER_ARGS \ { \ if (req->newptr) { \ return EPERM; \ } \ uint32_t value = os_atomic_load(&txm_metrics->field, relaxed); \ return SYSCTL_OUT(req, &value, sizeof(value)); \ } SYSCTL_DECL(_txm_metrics_memory); SYSCTL_NODE(_txm_metrics, OID_AUTO, memory, CTLFLAG_RD, 0, "TXM Metrics - Memory"); #define TXM_ALLOCATOR_METRIC(name, field) \ SYSCTL_DECL(_txm_metrics_memory_ ## name); \ SYSCTL_NODE(_txm_metrics_memory, OID_AUTO, name, CTLFLAG_RD, 0, "\'" #name "\' allocator"); \ TXM_METRIC(memory_ ## name, bytes_allocated, field->allocated); \ TXM_METRIC(memory_ ## name, bytes_unused, field->unused); \ TXM_METRIC(memory_ ## name, bytes_wasted, field->wasted); \ TXM_METRIC(memory, bootstrap, memory.bootstrap); TXM_METRIC(memory, free_list, memory.freeList); TXM_METRIC(memory, bulk_data, memory.bulkData); TXM_ALLOCATOR_METRIC(trust_cache, memory.slabs.trustCache); TXM_ALLOCATOR_METRIC(provisioning_profile, memory.slabs.profile); TXM_ALLOCATOR_METRIC(code_signature, memory.slabs.codeSignature); TXM_ALLOCATOR_METRIC(code_region, memory.slabs.codeRegion); TXM_ALLOCATOR_METRIC(address_space, memory.slabs.addressSpace); TXM_ALLOCATOR_METRIC(bucket_1024, memory.buckets.b1024); TXM_ALLOCATOR_METRIC(bucket_2048, memory.buckets.b2048); TXM_ALLOCATOR_METRIC(bucket_4096, memory.buckets.b4096); TXM_ALLOCATOR_METRIC(bucket_8192, memory.buckets.b8192); SYSCTL_DECL(_txm_metrics_acceleration); SYSCTL_NODE(_txm_metrics, OID_AUTO, acceleration, CTLFLAG_RD, 0, "TXM Metrics - Acceleration"); TXM_METRIC(acceleration, num_signature, acceleration.signature); TXM_METRIC(acceleration, num_bucket, acceleration.bucket); TXM_METRIC(acceleration, num_page, acceleration.page); TXM_METRIC(acceleration, bucket_256, acceleration.bucket256); TXM_METRIC(acceleration, unsupported, acceleration.large); SYSCTL_DECL(_txm_metrics_trustcaches); SYSCTL_NODE(_txm_metrics, OID_AUTO, trustcaches, CTLFLAG_RD, 0, "TXM Metrics - Trust Caches"); TXM_METRIC(trustcaches, bytes_needed, trustCaches.bytesNeeded); TXM_METRIC(trustcaches, bytes_allocated, trustCaches.bytesAllocated); TXM_METRIC(trustcaches, bytes_locked, trustCaches.bytesLocked); TXM_METRIC(trustcaches, bytes_tombstoned, trustCaches.bytesTombstoned); #endif /* DEVELOPMENT || DEBUG */ #if HAS_MTE && (DEVELOPMENT || DEBUG) /* Need ARM MTE built-ins */ #include <arm_acle.h> static int mte_test_gl0( int64_t test_case, __unused int64_t *out) { kern_return_t ret = KERN_DENIED; vm_address_t address = 0; uintptr_t phys_addr = 0; uint8_t *untagged_ptr = NULL; uint8_t *tagged_ptr = NULL; uint8_t *txm_ptr = NULL; /* * Test Cases: * 1. Pass TXM a pointer with a valid tag --> success * 2. Pass TXM a pointer from the physical aperture --> success * 3. Pass TXM a pointer with an invalid tag --> panic */ ret = kmem_alloc( kernel_map, &address, PAGE_SIZE, KMA_ZERO | KMA_TAG | KMA_KOBJECT, VM_KERN_MEMORY_DIAG); if ((ret != KERN_SUCCESS) || (address == 0)) { printf("%s: unable to allocate tagged memory: %d | 0x%0lX\n", __FUNCTION__, ret, address); return -1; } phys_addr = kvtophys_nofail(address); untagged_ptr = (uint8_t*)address; tagged_ptr = __arm_mte_create_random_tag(untagged_ptr, 0); /* Commit the random tag to memory */ __arm_mte_set_tag(tagged_ptr); /* Ensure we can access the tagged_ptr */ *tagged_ptr = 0xF7; switch (test_case) { case 0: txm_ptr = tagged_ptr; printf("%s: using valid memory tag\n", __FUNCTION__); break; case 1: txm_ptr = (uint8_t*)phystokv(kvtophys_nofail((uintptr_t)tagged_ptr)); printf("%s: using physical aperture mapping\n", __FUNCTION__); break; case 2: txm_ptr = __arm_mte_increment_tag(tagged_ptr, 1); printf("%s: using invalid memory tag\n", __FUNCTION__); break; default: kmem_free_guard(kernel_map, address, PAGE_SIZE, KMF_TAG, KMEM_GUARD_NONE); printf("%s: invalid test case: %lld\n", __FUNCTION__, test_case); return -1; } #if kTXMKernelAPIVersion >= 8 txm_call_t txm_call = { .selector = kTXMKernelSelectorGL0ExceptionTest, .num_input_args = 3 }; txm_kernel_call(&txm_call, phys_addr, (uintptr_t)txm_ptr, test_case); #else printf("%s: required selector not present\n", __FUNCTION__); #endif /* Free the kernel allocation */ kmem_free_guard(kernel_map, address, PAGE_SIZE, KMF_TAG, KMEM_GUARD_NONE); return 0; } /* * The test can be invoked on the command line through the "sysctl" tool as * follows: $ sysctl debug.test.mte_gl0=<test-case> */ SYSCTL_TEST_REGISTER(mte_gl0, mte_test_gl0); #endif /* HAS_MTE && (DEVELOPMENT || DEBUG) */ #endif /* CONFIG_SPTM */ |