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 | /* * Copyright (c) 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@ */ #if CONFIG_EXCLAVES #include <stdint.h> #include <stdbool.h> #include <mach/exclaves.h> #include <mach/kern_return.h> #include <string.h> #include <kern/assert.h> #include <kern/bits.h> #include <kern/queue.h> #include <kern/kalloc.h> #include <kern/locks.h> #include <kern/task.h> #include <kern/thread_call.h> #include <vm/pmap.h> #include <kern/ipc_kobject.h> #include <os/hash.h> #include <mach/mach_traps.h> #include <mach/mach_port.h> #include <sys/event.h> #include <sys/reason.h> #include "exclaves_conclave.h" #include "exclaves_debug.h" #include "exclaves_resource.h" #include "exclaves_sensor.h" #include "exclaves_shared_memory.h" #include "exclaves_xnuproxy.h" #include "exclaves_memory.h" #include "kern/exclaves.tightbeam.h" static LCK_GRP_DECLARE(resource_lck_grp, "exclaves_resource"); static kern_return_t exclaves_update_state_machine_locked(exclaves_resource_t *resource); /* * A cache of service ids in the kernel domain */ static bitmap_t kernel_service_bitmap[BITMAP_LEN(CONCLAVE_SERVICE_MAX)] = {0}; /* * Exclave Resources * * Exclaves provide a fixed static set of resources available to XNU. Some * examples of types of resources: * - Conclave managers * - Services * - Named buffers * - Audio buffers * ... * * Each resource has a name, a type and a corresponding identifier which is * shared between XNU and Exclaves. Resources are scoped by what entities are * allowed to access them. * Resources are discovered during boot and made available in a two-level table * scheme. The root table collects resources by their scope, with the * second-level tables listing the actual resources. * * * Root Table * ┌────────────────────────────┐ * │ ┌────────────────────────┐ │ * │ │ "com.apple.kernel" │─┼─────┐ * │ └────────────────────────┘ │ │ * │ ┌────────────────────────┐ │ │ * │ │"com.apple.conclave.a" │─┼─┐ │ * │ └────────────────────────┘ │ │ │ * │ ┌────────────────────────┐ │ │ │ * │ │"com.apple.conclave.b" │ │ │ │ * │ └────────────────────────┘ │ │ │ * │ ┌────────────────────────┐ │ │ │ * │ │ "com.apple.driver.a" │ │ │ │ * │ └────────────────────────┘ │ │ │ * │ ... │ │ │ * │ │ │ │ * └────────────────────────────┘ │ │ * ┌─────────────────────────┘ │ * │ │ * │ ┌─────────────────────────┘ * │ │ * │ │ * │ │ * │ └──▶ "com.apple.kernel" * │ ┌─────────────────────────────────────────────────────┐ * │ │┌───────────────────────┬──────────────────┬────────┐│ * │ ││"com.apple.conclave.a" │ CONCLAVE_MANAGER │ 0x1234 ││ * │ │└───────────────────────┴──────────────────┴────────┘│ * │ │┌───────────────────────┬──────────────────┬────────┐│ * │ ││"com.apple.conclave.b" │ CONCLAVE_MANAGER │ 0x7654 ││ * │ │└───────────────────────┴──────────────────┴────────┘│ * │ │ │ * │ │ ... │ * │ └─────────────────────────────────────────────────────┘ * │ * └─────▶ "com.apple.conclave.a" * ┌─────────────────────────────────────────────────────┐ * │┌───────────────────────┬──────────────────┬────────┐│ * ││ "audio_buf" │ AUDIO_BUFFER │ 0x9999 ││ * │└───────────────────────┴──────────────────┴────────┘│ * │┌───────────────────────┬──────────────────┬────────┐│ * ││ "service_x" │ SERVICE │ 0x1111 ││ * │└───────────────────────┴──────────────────┴────────┘│ * │┌───────────────────────┬──────────────────┬────────┐│ * ││ "named_buffer_x" │ NAMED_BUFFER │0x66565 ││ * │└───────────────────────┴──────────────────┴────────┘│ * │ ... │ * └─────────────────────────────────────────────────────┘ * * ... * * * Resources can be looked up by first finding the root table entry (the * "domain") and then searching for the identifier in that domain. * For example to lookup the conclave manager ID for "com.apple.conclave.a", * the "com.apple.kernel" domain would be found and then within that domain, the * search would continue using the conclave name and the CONCLAVE_MANAGER type. * Every conclave domain has a corresponding CONCLAVE_MANAGER resource in the * "com.apple.kernel" domain. */ /* -------------------------------------------------------------------------- */ #pragma mark Hash Table #define TABLE_LEN 64 /* * A table item is what ends up being stored in the hash table. It has a key and * a value. */ typedef struct { const void *i_key; size_t i_key_len; void *i_value; queue_chain_t i_chain; } table_item_t; /* * The hash table consists of an array of buckets (queues). The hashing function * will choose in which bucket a particular item belongs. */ typedef struct { queue_head_t *t_buckets; size_t t_buckets_count; } table_t; /* * Given a key, return the corresponding bucket. */ static queue_head_t * get_bucket(table_t *table, const void *key, size_t key_len) { const uint32_t idx = os_hash_jenkins(key, key_len) & (table->t_buckets_count - 1); return &table->t_buckets[idx]; } /* * Insert a new table item associated with 'key' into a table. */ static void table_put(table_t *table, const void *key, size_t key_len, table_item_t *item) { assert3p(item->i_chain.next, ==, NULL); assert3p(item->i_chain.prev, ==, NULL); assert3p(item->i_value, !=, NULL); queue_head_t *head = get_bucket(table, key, key_len); enqueue(head, &item->i_chain); } /* * Iterate through all items matching 'key' calling cb for each. */ static void table_get(table_t *table, const void *key, size_t key_len, bool (^cb)(void *)) { const queue_head_t *head = get_bucket(table, key, key_len); table_item_t *elem = NULL; assert3p(head, !=, NULL); qe_foreach_element(elem, head, i_chain) { if (elem->i_key_len == key_len && memcmp(elem->i_key, key, elem->i_key_len) == 0) { if (cb(elem->i_value)) { return; } } } return; } /* * Initialize the queues. */ static void table_init(table_t *table) { assert3u(table->t_buckets_count & (table->t_buckets_count - 1), ==, 0); /* Initialise each bucket. */ for (size_t i = 0; i < table->t_buckets_count; i++) { queue_init(&table->t_buckets[i]); } } /* * Allocate a new table with the specified number of buckets. */ static table_t * table_alloc(size_t nbuckets) { assert3u(nbuckets, >, 0); assert3u(nbuckets & (nbuckets - 1), ==, 0); table_t *table = kalloc_type(table_t, Z_WAITOK | Z_ZERO | Z_NOFAIL); table->t_buckets_count = nbuckets; table->t_buckets = kalloc_type(queue_head_t, nbuckets, Z_WAITOK | Z_ZERO | Z_NOFAIL); return table; } static void table_iterate(table_t *table, bool (^cb)(const void *key, size_t key_len, void *value)) { for (size_t i = 0; i < table->t_buckets_count; i++) { const queue_head_t *head = &table->t_buckets[i]; table_item_t *elem = NULL; qe_foreach_element(elem, head, i_chain) { if (cb(elem->i_key, elem->i_key_len, elem->i_value)) { return; } } } } /* -------------------------------------------------------------------------- */ #pragma mark Root Table /* * The root table is a hash table which contains an entry for every top-level * domain. * Domains scope resources. For example a conclave domain will contain a list of * services available in that conclave. The kernel itself gets its own domain * which holds conclave managers and other resources the kernel communicates * with directly. */ table_t root_table = { .t_buckets = (queue_chain_t *)(queue_chain_t[TABLE_LEN]){}, .t_buckets_count = TABLE_LEN, }; /* * Entries in the root table. Each itself a table containing resources available * in that domain. */ typedef struct { char d_name[EXCLAVES_RESOURCE_NAME_MAX]; table_t *d_table_name; table_t *d_table_id; } exclaves_resource_domain_t; static exclaves_resource_domain_t * lookup_domain(const char *domain_name) { __block exclaves_resource_domain_t *domain = NULL; table_get(&root_table, domain_name, strlen(domain_name), ^bool (void *data) { domain = data; return true; }); return domain; } static void iterate_domains(bool (^cb)(exclaves_resource_domain_t *)) { table_iterate(&root_table, ^(__unused const void *key, __unused size_t key_len, void *value) { exclaves_resource_domain_t *domain = value; return cb(domain); }); } static void iterate_resources(exclaves_resource_domain_t *domain, bool (^cb)(exclaves_resource_t *)) { table_iterate(domain->d_table_name, ^(__unused const void *key, __unused size_t key_len, void *value) { exclaves_resource_t *resource = value; return cb(resource); }); } static exclaves_resource_t * lookup_resource_by_name(exclaves_resource_domain_t *domain, const char *name, xnuproxy_resourcetype_s type) { __block exclaves_resource_t *resource = NULL; table_get(domain->d_table_name, name, strlen(name), ^bool (void *data) { exclaves_resource_t *tmp = data; if (tmp->r_type == type) { resource = data; return true; } return false; }); return resource; } static exclaves_resource_t * lookup_resource_by_id(exclaves_resource_domain_t *domain, uint64_t id, xnuproxy_resourcetype_s type) { __block exclaves_resource_t *resource = NULL; table_get(domain->d_table_id, &id, sizeof(id), ^bool (void *data) { exclaves_resource_t *tmp = data; if (tmp->r_type == type) { resource = data; return true; } return false; }); return resource; } static exclaves_resource_domain_t * exclaves_resource_domain_alloc(const char *scope) { assert3u(strlen(scope), >, 0); assert3u(strlen(scope), <=, EXCLAVES_RESOURCE_NAME_MAX); exclaves_resource_domain_t *domain = kalloc_type( exclaves_resource_domain_t, Z_WAITOK | Z_ZERO | Z_NOFAIL); (void) strlcpy(domain->d_name, scope, sizeof(domain->d_name)); domain->d_table_name = table_alloc(TABLE_LEN); table_init(domain->d_table_name); domain->d_table_id = table_alloc(TABLE_LEN); table_init(domain->d_table_id); table_item_t *item = kalloc_type(table_item_t, Z_WAITOK | Z_ZERO | Z_NOFAIL); item->i_key = domain->d_name; item->i_key_len = strlen(domain->d_name); item->i_value = domain; table_put(&root_table, scope, strlen(scope), item); return domain; } static exclaves_resource_t * exclaves_resource_alloc(xnuproxy_resourcetype_s type, const char *name, uint64_t id, exclaves_resource_domain_t *domain, bool connected) { exclaves_resource_t *resource = kalloc_type(exclaves_resource_t, Z_WAITOK | Z_ZERO | Z_NOFAIL); resource->r_type = type; resource->r_id = id; resource->r_active = false; resource->r_connected = connected; os_atomic_store(&resource->r_usecnt, 0, relaxed); /* * Each resource has an associated kobject of type * IKOT_EXCLAVES_RESOURCE. */ ipc_port_t port = ipc_kobject_alloc_port((ipc_kobject_t)resource, IKOT_EXCLAVES_RESOURCE, IPC_KOBJECT_ALLOC_NSREQUEST); resource->r_port = port; lck_mtx_init(&resource->r_mutex, &resource_lck_grp, NULL); (void) strlcpy(resource->r_name, name, sizeof(resource->r_name)); /* Stick the newly created resource into the name table. */ table_item_t *name_item = kalloc_type(table_item_t, Z_WAITOK | Z_ZERO | Z_NOFAIL); name_item->i_key = resource->r_name; name_item->i_key_len = strlen(resource->r_name); name_item->i_value = resource; assert(lookup_resource_by_name(domain, name, type) == NULL); table_put(domain->d_table_name, name, strlen(name), name_item); /* * Some types also need to lookup by id in addition to looking up by * name. */ switch (type) { case XNUPROXY_RESOURCETYPE_NOTIFICATION: { /* Stick the newly created resource into the ID table. */ table_item_t *id_item = kalloc_type(table_item_t, Z_WAITOK | Z_ZERO | Z_NOFAIL); id_item->i_key = &resource->r_id; id_item->i_key_len = sizeof(resource->r_id); id_item->i_value = resource; assert(lookup_resource_by_id(domain, id, type) == NULL); table_put(domain->d_table_id, &id, sizeof(id), id_item); break; } default: break; } return resource; } /* -------------------------------------------------------------------------- */ #pragma mark Exclaves Resources static void exclaves_resource_no_senders(ipc_port_t port, mach_port_mscount_t mscount); IPC_KOBJECT_DEFINE(IKOT_EXCLAVES_RESOURCE, .iko_op_stable = true, .iko_op_no_senders = exclaves_resource_no_senders); static void exclaves_conclave_init(exclaves_resource_t *resource); static void exclaves_notification_init(exclaves_resource_t *resource); static void exclaves_resource_sensor_reset(exclaves_resource_t *resource); static void exclaves_resource_shared_memory_unmap(exclaves_resource_t *resource); static void exclaves_resource_audio_memory_unmap(exclaves_resource_t *resource); static void populate_conclave_services(void) { /* BEGIN IGNORE CODESTYLE */ iterate_domains(^(exclaves_resource_domain_t *domain) { const bool is_kernel_domain = (strcmp(domain->d_name, EXCLAVES_DOMAIN_KERNEL) == 0 || strcmp(domain->d_name, EXCLAVES_DOMAIN_DARWIN) == 0); exclaves_resource_t *cm = exclaves_resource_lookup_by_name( EXCLAVES_DOMAIN_KERNEL, domain->d_name, XNUPROXY_RESOURCETYPE_CONCLAVEMANAGER); iterate_resources(domain, ^(exclaves_resource_t *resource) { if (resource->r_type != XNUPROXY_RESOURCETYPE_SERVICE) { return (bool)false; } if (cm != NULL) { conclave_resource_t *c = &cm->r_conclave; bitmap_set(c->c_service_bitmap, (uint32_t)resource->r_id); return (bool)false; } if (is_kernel_domain) { bitmap_set(kernel_service_bitmap, (uint32_t)resource->r_id); return (bool)false; } /* * Ignore services that are in unknown domains. This can * happen if a conclave manager doesn't have a populated * endpoint (for example during bringup). */ return (bool)false; }); return (bool)false; }); /* END IGNORE CODESTYLE */ } /* * Discover all the static exclaves resources populating the resource tables as * we go. */ kern_return_t exclaves_resource_init(void) { /* Initialize the root table. */ table_init(&root_table); /* BEGIN IGNORE CODESTYLE */ kern_return_t kr = exclaves_xnuproxy_resource_info( ^(const char *name, const char *scope, xnuproxy_resourcetype_s type, uint64_t id, bool connected) { /* * Every resource is scoped to a specific domain, find the * domain (or create one if it doesn't exist). */ exclaves_resource_domain_t *domain = lookup_domain(scope); if (domain == NULL) { domain = exclaves_resource_domain_alloc(scope); } /* Allocate a new resource in the domain. */ exclaves_resource_t *resource = exclaves_resource_alloc(type, name, id, domain, connected); /* * Type specific initialization. */ switch (type) { case XNUPROXY_RESOURCETYPE_CONCLAVEMANAGER: exclaves_conclave_init(resource); break; case XNUPROXY_RESOURCETYPE_NOTIFICATION: exclaves_notification_init(resource); break; case XNUPROXY_RESOURCETYPE_SERVICE: assert3u(resource->r_id, <, CONCLAVE_SERVICE_MAX); break; default: break; } }); /* END IGNORE CODESTYLE */ if (kr != KERN_SUCCESS) { return kr; } /* Populate the conclave service ID bitmaps. */ populate_conclave_services(); return KERN_SUCCESS; } exclaves_resource_t * exclaves_resource_lookup_by_name(const char *domain_name, const char *name, xnuproxy_resourcetype_s type) { assert3u(strlen(domain_name), >, 0); assert3u(strlen(name), >, 0); exclaves_resource_domain_t *domain = lookup_domain(domain_name); if (domain == NULL) { return NULL; } exclaves_resource_t *r = lookup_resource_by_name(domain, name, type); /* Ignore entries not marked connected. */ if (r == NULL || !r->r_connected) { return NULL; } return r; } static exclaves_resource_t * exclaves_resource_lookup_by_id(const char *domain_name, uint64_t id, xnuproxy_resourcetype_s type) { assert3u(strlen(domain_name), >, 0); exclaves_resource_domain_t *domain = lookup_domain(domain_name); if (domain == NULL) { return NULL; } exclaves_resource_t *r = lookup_resource_by_id(domain, id, type); /* Ignore entries not marked connected. */ if (r == NULL || !r->r_connected) { return NULL; } return r; } const char * exclaves_resource_name(const exclaves_resource_t *resource) { return resource->r_name; } /* * Notes on use-count management * For the most part everything is done under the resource lock. * In some cases, it's necessary to grab/release a use count without * holding the lock - for example the realtime audio paths doing copyin/copyout * of named buffers/audio buffers. * To prevent against races, initialization/de-initialization should always * recheck the use-count under the lock. */ uint32_t exclaves_resource_retain(exclaves_resource_t *resource) { uint32_t orig = os_atomic_inc_orig(&resource->r_usecnt, relaxed); assert3u(orig, <, UINT32_MAX); return orig; } void exclaves_resource_release(exclaves_resource_t *resource) { /* * Drop the use count without holding the lock (this path may be called * by RT threads and should be RT-safe). */ uint32_t orig = os_atomic_dec_orig(&resource->r_usecnt, release); assert3u(orig, !=, 0); if (orig != 1) { return; } /* * Now grab the lock. The RT-safe paths calling this function shouldn't * end up here unless there's a bug or mis-behaving user code (like * deallocating an in-use mach port). */ lck_mtx_lock(&resource->r_mutex); /* * Re-check the use count - as a second user of the resource * may have snuck in in the meantime. */ if (os_atomic_load(&resource->r_usecnt, acquire) > 0) { lck_mtx_unlock(&resource->r_mutex); return; } switch (resource->r_type) { case XNUPROXY_RESOURCETYPE_SENSOR: exclaves_resource_sensor_reset(resource); break; case XNUPROXY_RESOURCETYPE_SHAREDMEMORY: exclaves_resource_shared_memory_unmap(resource); break; case XNUPROXY_RESOURCETYPE_ARBITRATEDAUDIOMEMORY: exclaves_resource_audio_memory_unmap(resource); break; default: break; } lck_mtx_unlock(&resource->r_mutex); } kern_return_t exclaves_resource_from_port_name(ipc_space_t space, mach_port_name_t name, exclaves_resource_t **out) { kern_return_t kr = KERN_SUCCESS; ipc_port_t port = IPC_PORT_NULL; if (!MACH_PORT_VALID(name)) { return KERN_INVALID_NAME; } kr = ipc_port_translate_send(space, name, &port); if (kr != KERN_SUCCESS) { return kr; } /* port is locked */ assert(IP_VALID(port)); exclaves_resource_t *resource = ipc_kobject_get_stable(port, IKOT_EXCLAVES_RESOURCE); /* The port is valid, but doesn't denote an exclaves resource. */ if (resource == NULL) { ip_mq_unlock(port); return KERN_INVALID_CAPABILITY; } /* Grab a reference while the port is good and the ipc lock is held. */ __assert_only uint32_t orig = exclaves_resource_retain(resource); assert3u(orig, >, 0); ip_mq_unlock(port); *out = resource; return KERN_SUCCESS; } /* * Consumes a reference to the resource. On success the resource is reference is * associated with the lifetime of the port. */ kern_return_t exclaves_resource_create_port_name(exclaves_resource_t *resource, ipc_space_t space, mach_port_name_t *name) { assert3u(os_atomic_load(&resource->r_usecnt, relaxed), >, 0); ipc_port_t port = resource->r_port; ip_mq_lock(port); /* Create an armed send right. */ kern_return_t ret = ipc_kobject_make_send_nsrequest_locked(port, resource, IKOT_EXCLAVES_RESOURCE); if (ret != KERN_SUCCESS && ret != KERN_ALREADY_WAITING) { ip_mq_unlock(port); exclaves_resource_release(resource); return ret; } /* * If there was already a send right, then the port already has an * associated use count so drop this one. */ if (port->ip_srights > 1) { assert3u(os_atomic_load(&resource->r_usecnt, relaxed), >, 1); exclaves_resource_release(resource); } ip_mq_unlock(port); *name = ipc_port_copyout_send(port, space); if (!MACH_PORT_VALID(*name)) { /* * ipc_port_copyout_send() releases the send right on failure * (possibly calling exclaves_resource_no_senders() in the * process). */ return KERN_RESOURCE_SHORTAGE; } return KERN_SUCCESS; } static void exclaves_resource_no_senders(ipc_port_t port, __unused mach_port_mscount_t mscount) { exclaves_resource_t *resource = ipc_kobject_get_stable(port, IKOT_EXCLAVES_RESOURCE); exclaves_resource_release(resource); } /* -------------------------------------------------------------------------- */ #pragma mark Conclave Manager static void exclaves_conclave_init(exclaves_resource_t *resource) { assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_CONCLAVEMANAGER); tb_client_connection_t connection = NULL; __assert_only kern_return_t kr = exclaves_conclave_launcher_init(resource->r_id, &connection); assert3u(kr, ==, KERN_SUCCESS); conclave_resource_t *conclave = &resource->r_conclave; conclave->c_control = connection; conclave->c_state = CONCLAVE_S_NONE; conclave->c_request = CONCLAVE_R_NONE; conclave->c_active_downcall = false; conclave->c_active_stopcall = false; conclave->c_downcall_thread = THREAD_NULL; conclave->c_task = TASK_NULL; } kern_return_t exclaves_conclave_attach(const char *name, task_t task) { assert3p(task, !=, TASK_NULL); exclaves_resource_t *resource = exclaves_resource_lookup_by_name( EXCLAVES_DOMAIN_KERNEL, name, XNUPROXY_RESOURCETYPE_CONCLAVEMANAGER); if (resource == NULL) { /* Just return success here. The conclave launch will fail. */ return KERN_SUCCESS; } assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_CONCLAVEMANAGER); conclave_resource_t *conclave = &resource->r_conclave; lck_mtx_lock(&resource->r_mutex); if (conclave->c_state != CONCLAVE_S_NONE) { lck_mtx_unlock(&resource->r_mutex); return KERN_INVALID_ARGUMENT; } task_reference(task); task->conclave = resource; conclave->c_task = task; conclave->c_state = CONCLAVE_S_ATTACHED; lck_mtx_unlock(&resource->r_mutex); return KERN_SUCCESS; } kern_return_t exclaves_conclave_detach(exclaves_resource_t *resource, task_t task) { assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_CONCLAVEMANAGER); conclave_resource_t *conclave = &resource->r_conclave; lck_mtx_lock(&resource->r_mutex); while (conclave->c_active_downcall) { conclave->c_active_detach = true; assert3p(conclave->c_downcall_thread, !=, THREAD_NULL); lck_mtx_sleep_with_inheritor(&resource->r_mutex, LCK_SLEEP_DEFAULT, (event_t)&conclave->c_active_downcall, conclave->c_downcall_thread, THREAD_UNINT, TIMEOUT_WAIT_FOREVER); conclave->c_active_detach = false; } if (conclave->c_state != CONCLAVE_S_ATTACHED && conclave->c_state != CONCLAVE_S_STOPPED) { panic("Task %p trying to detach a conclave %p but it is in a " "weird state", task, conclave); } assert3u(conclave->c_active_downcall, ==, 0); assert3u(conclave->c_active_stopcall, ==, 0); assert3p(conclave->c_downcall_thread, ==, THREAD_NULL); assert3u(conclave->c_request, ==, CONCLAVE_R_NONE); assert3p(task->conclave, !=, NULL); assert3p(resource, ==, task->conclave); task->conclave = NULL; conclave->c_task = TASK_NULL; conclave->c_state = CONCLAVE_S_NONE; lck_mtx_unlock(&resource->r_mutex); task_deallocate(task); return KERN_SUCCESS; } kern_return_t exclaves_conclave_inherit(exclaves_resource_t *resource, task_t old_task, task_t new_task) { assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_CONCLAVEMANAGER); conclave_resource_t *conclave = &resource->r_conclave; lck_mtx_lock(&resource->r_mutex); assert3u(conclave->c_state, !=, CONCLAVE_S_NONE); assert3p(new_task->conclave, ==, NULL); assert3p(old_task->conclave, !=, NULL); assert3p(resource, ==, old_task->conclave); /* Only allow inheriting the conclave if it has not yet started. */ if (conclave->c_state != CONCLAVE_S_ATTACHED || conclave->c_active_downcall || conclave->c_active_stopcall) { lck_mtx_unlock(&resource->r_mutex); return KERN_FAILURE; } old_task->conclave = NULL; task_reference(new_task); new_task->conclave = resource; conclave->c_task = new_task; lck_mtx_unlock(&resource->r_mutex); task_deallocate(old_task); return KERN_SUCCESS; } bool exclaves_conclave_is_attached(const exclaves_resource_t *resource) { assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_CONCLAVEMANAGER); const conclave_resource_t *conclave = &resource->r_conclave; return conclave->c_state == CONCLAVE_S_ATTACHED; } kern_return_t exclaves_conclave_launch(exclaves_resource_t *resource) { kern_return_t kr; assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_CONCLAVEMANAGER); conclave_resource_t *conclave = &resource->r_conclave; if (exclaves_boot_wait(EXCLAVES_BOOT_STAGE_EXCLAVEKIT) != KERN_SUCCESS) { /* * This should only ever happen if the EXCLAVEKIT requirement was * relaxed. */ exclaves_requirement_assert(EXCLAVES_R_EXCLAVEKIT, "failed to boot to exclavekit"); return KERN_NOT_SUPPORTED; } lck_mtx_lock(&resource->r_mutex); if (conclave->c_state != CONCLAVE_S_ATTACHED || conclave->c_active_downcall || conclave->c_active_stopcall) { lck_mtx_unlock(&resource->r_mutex); return KERN_FAILURE; } conclave->c_request |= CONCLAVE_R_LAUNCH_REQUESTED; kr = exclaves_update_state_machine_locked(resource); return kr; } static kern_return_t exclaves_update_state_machine_locked(exclaves_resource_t *resource) { assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_CONCLAVEMANAGER); conclave_resource_t *conclave = &resource->r_conclave; conclave_state_t pending_state = CONCLAVE_S_NONE; kern_return_t ret; while (1) { bool stop_call = false; /* Check if there are pending requests */ if (conclave->c_request & CONCLAVE_R_LAUNCH_REQUESTED) { conclave->c_request &= ~CONCLAVE_R_LAUNCH_REQUESTED; assert3u(conclave->c_active_downcall, ==, 0); conclave->c_active_downcall = true; conclave->c_downcall_thread = current_thread(); pending_state = CONCLAVE_S_RUNNING; lck_mtx_unlock(&resource->r_mutex); ret = exclaves_conclave_launcher_launch(conclave->c_control); assert3u(ret, ==, KERN_SUCCESS); } else if (conclave->c_request & CONCLAVE_R_SUSPEND_REQUESTED) { task_t task = conclave->c_task; int suspend_count; bool suspend; task_lock(task); suspend_count = task->suspend_count; task_unlock(task); suspend = (suspend_count > 0) ? true : false; conclave->c_request &= ~CONCLAVE_R_SUSPEND_REQUESTED; /* Check the state to see if downcall is needed */ if (suspend && conclave->c_state != CONCLAVE_S_RUNNING) { continue; } if (!suspend && conclave->c_state != CONCLAVE_S_SUSPENDED) { continue; } assert3u(conclave->c_active_downcall, ==, 0); conclave->c_active_downcall = true; conclave->c_downcall_thread = current_thread(); pending_state = suspend ? CONCLAVE_S_SUSPENDED : CONCLAVE_S_RUNNING; lck_mtx_unlock(&resource->r_mutex); ret = exclaves_conclave_launcher_suspend(conclave->c_control, suspend); } else if (conclave->c_request & CONCLAVE_R_STOP_REQUESTED) { conclave->c_request &= ~CONCLAVE_R_STOP_REQUESTED; /* Check the state to see if downcall is needed */ if (conclave->c_state != CONCLAVE_S_RUNNING && conclave->c_state != CONCLAVE_S_SUSPENDED) { continue; } assert3u(conclave->c_active_downcall, ==, 0); conclave->c_active_downcall = true; conclave->c_downcall_thread = current_thread(); conclave->c_active_stopcall = true; stop_call = true; pending_state = CONCLAVE_S_STOPPED; lck_mtx_unlock(&resource->r_mutex); ret = exclaves_conclave_launcher_stop(conclave->c_control, CONCLAVE_LAUNCHER_CONCLAVESTOPREASON_EXIT); assert3u(ret, ==, KERN_SUCCESS); } else { lck_mtx_unlock(&resource->r_mutex); break; } lck_mtx_lock(&resource->r_mutex); assert3u(conclave->c_active_downcall, ==, 1); assert3p(conclave->c_downcall_thread, ==, current_thread()); conclave->c_active_downcall = false; conclave->c_downcall_thread = THREAD_NULL; if (stop_call) { conclave->c_active_stopcall = false; } if (conclave->c_active_detach) { wakeup_all_with_inheritor((event_t)&conclave->c_active_downcall, THREAD_AWAKENED); } /* Bail out if active stopcall is going on */ if (conclave->c_active_stopcall || conclave->c_state == CONCLAVE_S_STOPPED) { lck_mtx_unlock(&resource->r_mutex); break; } conclave->c_state = pending_state; } return KERN_SUCCESS; } /* * Return the domain associated with the current conclave. * If not joined to a conclave, return the KERNEL domain. This implies that the * calling task is sufficiently privileged. */ const char * exclaves_conclave_get_domain(exclaves_resource_t *resource) { if (resource != NULL) { assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_CONCLAVEMANAGER); return resource->r_name; } if (!exclaves_has_priv(current_task(), EXCLAVES_PRIV_KERNEL_DOMAIN)) { exclaves_requirement_assert(EXCLAVES_R_CONCLAVE_RESOURCES, "no conclave manager present"); } return EXCLAVES_DOMAIN_KERNEL; } kern_return_t exclaves_conclave_stop(exclaves_resource_t *resource, bool gather_crash_bt __unused) { assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_CONCLAVEMANAGER); conclave_resource_t *conclave = &resource->r_conclave; lck_mtx_lock(&resource->r_mutex); /* Bailout if active stopcall in progress */ if (conclave->c_active_stopcall || conclave->c_state == CONCLAVE_S_STOPPED) { lck_mtx_unlock(&resource->r_mutex); return KERN_SUCCESS; } /* Arm stop requested if downcall in progress */ if (conclave->c_active_downcall) { conclave->c_request |= CONCLAVE_R_STOP_REQUESTED; lck_mtx_unlock(&resource->r_mutex); return KERN_SUCCESS; } if (conclave->c_state == CONCLAVE_S_ATTACHED) { /* Change the state to stopped if the conclave was never started */ conclave->c_state = CONCLAVE_S_STOPPED; /* Suspend might be requested, clear it as well */ conclave->c_request = CONCLAVE_R_NONE; lck_mtx_unlock(&resource->r_mutex); return KERN_SUCCESS; } conclave->c_request |= CONCLAVE_R_STOP_REQUESTED; kern_return_t kr = exclaves_update_state_machine_locked(resource); return kr; } kern_return_t exclaves_conclave_suspend(exclaves_resource_t *resource) { assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_CONCLAVEMANAGER); conclave_resource_t *conclave = &resource->r_conclave; lck_mtx_lock(&resource->r_mutex); /* Bailout if active stopcall in progress */ if (conclave->c_active_stopcall || conclave->c_state == CONCLAVE_S_STOPPED) { lck_mtx_unlock(&resource->r_mutex); return KERN_SUCCESS; } /* Arm suspend requested if downcall in progress */ if (conclave->c_active_downcall) { conclave->c_request |= CONCLAVE_R_SUSPEND_REQUESTED; lck_mtx_unlock(&resource->r_mutex); return KERN_SUCCESS; } if (conclave->c_state == CONCLAVE_S_ATTACHED) { /* Conclave is not yet launched, just arm suspend requested and bailout */ conclave->c_request |= CONCLAVE_R_SUSPEND_REQUESTED; lck_mtx_unlock(&resource->r_mutex); return KERN_SUCCESS; } else if (conclave->c_state == CONCLAVE_S_SUSPENDED) { lck_mtx_unlock(&resource->r_mutex); return KERN_SUCCESS; } conclave->c_request |= CONCLAVE_R_SUSPEND_REQUESTED; kern_return_t kr = exclaves_update_state_machine_locked(resource); return kr; } kern_return_t exclaves_conclave_resume(exclaves_resource_t *resource) { assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_CONCLAVEMANAGER); conclave_resource_t *conclave = &resource->r_conclave; lck_mtx_lock(&resource->r_mutex); /* Bailout if active stopcall in progress */ if (conclave->c_active_stopcall || conclave->c_state == CONCLAVE_S_STOPPED) { lck_mtx_unlock(&resource->r_mutex); return KERN_SUCCESS; } /* Arm suspend requested if downcall in progress */ if (conclave->c_active_downcall) { conclave->c_request |= CONCLAVE_R_SUSPEND_REQUESTED; lck_mtx_unlock(&resource->r_mutex); return KERN_SUCCESS; } if (conclave->c_state == CONCLAVE_S_ATTACHED) { /* Conclave is not yet launched, just arm suspend requested and bailout */ conclave->c_request |= CONCLAVE_R_SUSPEND_REQUESTED; lck_mtx_unlock(&resource->r_mutex); return KERN_SUCCESS; } else if (conclave->c_state == CONCLAVE_S_RUNNING) { lck_mtx_unlock(&resource->r_mutex); return KERN_SUCCESS; } conclave->c_request |= CONCLAVE_R_SUSPEND_REQUESTED; kern_return_t kr = exclaves_update_state_machine_locked(resource); return kr; } kern_return_t exclaves_conclave_stop_upcall(exclaves_resource_t *resource) { assert3p(resource, !=, NULL); assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_CONCLAVEMANAGER); conclave_resource_t *conclave = &resource->r_conclave; thread_t thread = current_thread(); lck_mtx_lock(&resource->r_mutex); if (conclave->c_state == CONCLAVE_S_STOPPED || conclave->c_active_stopcall) { lck_mtx_unlock(&resource->r_mutex); return KERN_SUCCESS; } conclave->c_active_stopcall = true; thread->th_exclaves_state |= TH_EXCLAVES_STOP_UPCALL_PENDING; lck_mtx_unlock(&resource->r_mutex); return KERN_SUCCESS; } kern_return_t exclaves_conclave_stop_upcall_complete(exclaves_resource_t *resource, task_t task) { assert3p(resource, !=, NULL); assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_CONCLAVEMANAGER); conclave_resource_t *conclave = &resource->r_conclave; thread_t thread = current_thread(); thread->th_exclaves_state &= ~TH_EXCLAVES_STOP_UPCALL_PENDING; int flags = PX_DEBUG_NO_HONOR | PX_NO_EXCEPTION_UTHREAD; exception_info_t info = { .os_reason = OS_REASON_GUARD, .exception_type = EXC_GUARD, .mx_code = GUARD_REASON_EXCLAVES, .mx_subcode = 0 }; exit_with_exclave_exception(get_bsdtask_info(task), info, flags); lck_mtx_lock(&resource->r_mutex); conclave->c_active_stopcall = false; conclave->c_state = CONCLAVE_S_STOPPED; conclave->c_request = CONCLAVE_R_NONE; lck_mtx_unlock(&resource->r_mutex); return KERN_SUCCESS; } bool exclaves_conclave_has_service(exclaves_resource_t *resource, uint64_t id) { assert3u(id, <, CONCLAVE_SERVICE_MAX); if (resource == NULL) { /* There's no conclave, fallback to the kernel domain. */ if (!exclaves_has_priv(current_task(), EXCLAVES_PRIV_KERNEL_DOMAIN)) { exclaves_requirement_assert(EXCLAVES_R_CONCLAVE_RESOURCES, "no conclave manager present"); } return bitmap_test(kernel_service_bitmap, (uint32_t)id); } assert3p(resource, !=, NULL); assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_CONCLAVEMANAGER); conclave_resource_t *conclave = &resource->r_conclave; return bitmap_test(conclave->c_service_bitmap, (uint32_t)id); } /* -------------------------------------------------------------------------- */ #pragma mark Sensors static void exclaves_resource_sensor_reset(exclaves_resource_t *resource) { assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_SENSOR); assert3u(os_atomic_load(&resource->r_usecnt, relaxed), ==, 0); LCK_MTX_ASSERT(&resource->r_mutex, LCK_MTX_ASSERT_OWNED); exclaves_sensor_status_t status; for (int i = 0; i < resource->r_sensor.s_startcount; i++) { __assert_only kern_return_t kr = exclaves_sensor_stop( (exclaves_sensor_type_t)resource->r_id, 0, &status); assert3u(kr, !=, KERN_INVALID_ARGUMENT); } resource->r_sensor.s_startcount = 0; } kern_return_t exclaves_resource_sensor_open(const char *domain, const char *id_name, exclaves_resource_t **out) { assert3p(out, !=, NULL); exclaves_resource_t *sensor = exclaves_resource_lookup_by_name(domain, id_name, XNUPROXY_RESOURCETYPE_SENSOR); if (sensor == NULL) { return KERN_NOT_FOUND; } assert3u(sensor->r_type, ==, XNUPROXY_RESOURCETYPE_SENSOR); lck_mtx_lock(&sensor->r_mutex); exclaves_resource_retain(sensor); lck_mtx_unlock(&sensor->r_mutex); *out = sensor; return KERN_SUCCESS; } kern_return_t exclaves_resource_sensor_start(exclaves_resource_t *resource, uint64_t flags, exclaves_sensor_status_t *status) { assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_SENSOR); lck_mtx_lock(&resource->r_mutex); if (resource->r_sensor.s_startcount == UINT64_MAX) { lck_mtx_unlock(&resource->r_mutex); return KERN_INVALID_ARGUMENT; } kern_return_t kr = exclaves_sensor_start( (exclaves_sensor_type_t)resource->r_id, flags, status); if (kr == KERN_SUCCESS) { resource->r_sensor.s_startcount += 1; } lck_mtx_unlock(&resource->r_mutex); return kr; } kern_return_t exclaves_resource_sensor_status(exclaves_resource_t *resource, uint64_t flags, exclaves_sensor_status_t *status) { assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_SENSOR); lck_mtx_lock(&resource->r_mutex); kern_return_t kr = exclaves_sensor_status( (exclaves_sensor_type_t)resource->r_id, flags, status); lck_mtx_unlock(&resource->r_mutex); return kr; } kern_return_t exclaves_resource_sensor_stop(exclaves_resource_t *resource, uint64_t flags, exclaves_sensor_status_t *status) { assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_SENSOR); lck_mtx_lock(&resource->r_mutex); if (resource->r_sensor.s_startcount == 0) { lck_mtx_unlock(&resource->r_mutex); return KERN_INVALID_ARGUMENT; } kern_return_t kr = exclaves_sensor_stop( (exclaves_sensor_type_t)resource->r_id, flags, status); if (kr == KERN_SUCCESS) { resource->r_sensor.s_startcount -= 1; } lck_mtx_unlock(&resource->r_mutex); return kr; } /* -------------------------------------------------------------------------- */ #pragma mark Notifications static void exclaves_notification_init(exclaves_resource_t *resource) { assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_NOTIFICATION); exclaves_notification_t *notification = &resource->r_notification; klist_init(¬ification->notification_klist); } static int filt_exclaves_notification_attach(struct knote *kn, __unused struct kevent_qos_s *kev) { int error = 0; exclaves_resource_t *exclaves_resource = NULL; kern_return_t kr = exclaves_resource_from_port_name(current_space(), (mach_port_name_t)kn->kn_id, &exclaves_resource); if (kr != KERN_SUCCESS) { error = ENOENT; goto out; } assert3p(exclaves_resource, !=, NULL); if (exclaves_resource->r_type != XNUPROXY_RESOURCETYPE_NOTIFICATION) { exclaves_resource_release(exclaves_resource); error = EINVAL; goto out; } lck_mtx_lock(&exclaves_resource->r_mutex); if (kn->kn_exclaves_resource != NULL) { lck_mtx_unlock(&exclaves_resource->r_mutex); exclaves_resource_release(exclaves_resource); error = EBUSY; goto out; } /* kn_exclaves_resource consumes the ref. */ kn->kn_exclaves_resource = exclaves_resource; KNOTE_ATTACH(&exclaves_resource->r_notification.notification_klist, kn); lck_mtx_unlock(&exclaves_resource->r_mutex); error = 0; out: return error; } static void filt_exclaves_notification_detach(struct knote *kn) { exclaves_resource_t *exclaves_resource = kn->kn_exclaves_resource; if (exclaves_resource != NULL) { assert3u(exclaves_resource->r_type, ==, XNUPROXY_RESOURCETYPE_NOTIFICATION); lck_mtx_lock(&exclaves_resource->r_mutex); kn->kn_exclaves_resource = NULL; KNOTE_DETACH(&exclaves_resource->r_notification.notification_klist, kn); lck_mtx_unlock(&exclaves_resource->r_mutex); exclaves_resource_release(exclaves_resource); } } static int filt_exclaves_notification_event(struct knote *kn, long hint) { /* ALWAYS CALLED WITH exclaves_resource mutex held */ exclaves_resource_t *exclaves_resource __assert_only = kn->kn_exclaves_resource; LCK_MTX_ASSERT(&exclaves_resource->r_mutex, LCK_MTX_ASSERT_OWNED); /* * if the user is interested in this event, record it. */ if (kn->kn_sfflags & hint) { kn->kn_fflags |= hint; } /* if we have any matching state, activate the knote */ if (kn->kn_fflags != 0) { return FILTER_ACTIVE; } else { return 0; } } static int filt_exclaves_notification_touch(struct knote *kn, struct kevent_qos_s *kev) { int result; exclaves_resource_t *exclaves_resource = kn->kn_exclaves_resource; assert3p(exclaves_resource, !=, NULL); assert3u(exclaves_resource->r_type, ==, XNUPROXY_RESOURCETYPE_NOTIFICATION); lck_mtx_lock(&exclaves_resource->r_mutex); /* accept new mask and mask off output events no long interesting */ kn->kn_sfflags = kev->fflags; kn->kn_fflags &= kn->kn_sfflags; if (kn->kn_fflags != 0) { result = FILTER_ACTIVE; } else { result = 0; } lck_mtx_unlock(&exclaves_resource->r_mutex); return result; } static int filt_exclaves_notification_process(struct knote *kn, struct kevent_qos_s *kev) { int result = 0; exclaves_resource_t *exclaves_resource = kn->kn_exclaves_resource; assert3p(exclaves_resource, !=, NULL); assert3u(exclaves_resource->r_type, ==, XNUPROXY_RESOURCETYPE_NOTIFICATION); lck_mtx_lock(&exclaves_resource->r_mutex); if (kn->kn_fflags) { knote_fill_kevent(kn, kev, 0); result = FILTER_ACTIVE; } lck_mtx_unlock(&exclaves_resource->r_mutex); return result; } SECURITY_READ_ONLY_EARLY(struct filterops) exclaves_notification_filtops = { .f_attach = filt_exclaves_notification_attach, .f_detach = filt_exclaves_notification_detach, .f_event = filt_exclaves_notification_event, .f_touch = filt_exclaves_notification_touch, .f_process = filt_exclaves_notification_process, }; kern_return_t exclaves_notification_create(const char *domain, const char *name, exclaves_resource_t **out) { assert3p(out, !=, NULL); exclaves_resource_t *resource = exclaves_resource_lookup_by_name(domain, name, XNUPROXY_RESOURCETYPE_NOTIFICATION); if (resource == NULL) { return KERN_NOT_FOUND; } assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_NOTIFICATION); lck_mtx_lock(&resource->r_mutex); exclaves_resource_retain(resource); lck_mtx_unlock(&resource->r_mutex); *out = resource; return KERN_SUCCESS; } kern_return_t exclaves_notification_signal(exclaves_resource_t *exclaves_resource, long event_mask) { assert3p(exclaves_resource, !=, NULL); assert3u(exclaves_resource->r_type, ==, XNUPROXY_RESOURCETYPE_NOTIFICATION); lck_mtx_lock(&exclaves_resource->r_mutex); KNOTE(&exclaves_resource->r_notification.notification_klist, event_mask); lck_mtx_unlock(&exclaves_resource->r_mutex); return KERN_SUCCESS; } exclaves_resource_t * exclaves_notification_lookup_by_id(const char *domain, uint64_t id) { return exclaves_resource_lookup_by_id(domain, id, XNUPROXY_RESOURCETYPE_NOTIFICATION); } uint64_t exclaves_service_lookup(const char *domain, const char *name) { assert3p(domain, !=, NULL); assert3p(name, !=, NULL); exclaves_resource_t *resource = exclaves_resource_lookup_by_name(domain, name, XNUPROXY_RESOURCETYPE_SERVICE); if (resource == NULL) { return EXCLAVES_INVALID_ID; } assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_SERVICE); return resource->r_id; } /* -------------------------------------------------------------------------- */ #pragma mark Shared Memory kern_return_t exclaves_resource_shared_memory_copyin(exclaves_resource_t *resource, user_addr_t buffer, mach_vm_size_t size1, mach_vm_size_t offset1, mach_vm_size_t size2, mach_vm_size_t offset2) { assert3u(os_atomic_load(&resource->r_usecnt, relaxed), >, 0); assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_SHAREDMEMORY); mach_vm_size_t umax = 0; if (buffer == USER_ADDR_NULL || size1 == 0) { return KERN_INVALID_ARGUMENT; } shared_memory_resource_t *sm = &resource->r_shared_memory; assert3p(sm->sm_addr, !=, NULL); assert3u(sm->sm_size, !=, 0); if (os_add_overflow(offset1, size1, &umax) || umax > sm->sm_size) { return KERN_INVALID_ARGUMENT; } if (os_add_overflow(offset2, size2, &umax) || umax > sm->sm_size) { return KERN_INVALID_ARGUMENT; } if ((sm->sm_perm & EXCLAVES_BUFFER_PERM_WRITE) == 0) { return KERN_PROTECTION_FAILURE; } if (copyin(buffer, sm->sm_addr + offset1, size1) != 0) { return KERN_FAILURE; } if (copyin(buffer + size1, sm->sm_addr + offset2, size2) != 0) { return KERN_FAILURE; } return KERN_SUCCESS; } kern_return_t exclaves_resource_shared_memory_copyout(exclaves_resource_t *resource, user_addr_t buffer, mach_vm_size_t size1, mach_vm_size_t offset1, mach_vm_size_t size2, mach_vm_size_t offset2) { assert3u(os_atomic_load(&resource->r_usecnt, relaxed), >, 0); assert(resource->r_type == XNUPROXY_RESOURCETYPE_SHAREDMEMORY || resource->r_type == XNUPROXY_RESOURCETYPE_ARBITRATEDAUDIOMEMORY); mach_vm_size_t umax = 0; if (buffer == USER_ADDR_NULL || size1 == 0) { return KERN_INVALID_ARGUMENT; } shared_memory_resource_t *sm = &resource->r_shared_memory; assert3p(sm->sm_addr, !=, NULL); assert3u(sm->sm_size, !=, 0); if (os_add_overflow(offset1, size1, &umax) || umax > sm->sm_size) { return KERN_INVALID_ARGUMENT; } if (os_add_overflow(offset2, size2, &umax) || umax > sm->sm_size) { return KERN_INVALID_ARGUMENT; } if ((sm->sm_perm & EXCLAVES_BUFFER_PERM_READ) == 0) { return KERN_PROTECTION_FAILURE; } if (copyout(sm->sm_addr + offset1, buffer, size1) != 0) { return KERN_FAILURE; } if (copyout(sm->sm_addr + offset2, buffer + size1, size2) != 0) { return KERN_FAILURE; } return KERN_SUCCESS; } /* The lower 32bits contain the endpoint id. */ static uint32_t audio_memory_get_endpoint(exclaves_resource_t *resource) { assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_ARBITRATEDAUDIOMEMORY); return resource->r_id << 32 >> 32; } /* The upper 32bits of the id contain the buffer id. */ static uint32_t audio_memory_get_buffer_id(exclaves_resource_t *resource) { assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_ARBITRATEDAUDIOMEMORY); return resource->r_id >> 32; } static kern_return_t shared_memory_map(exclaves_resource_t *resource, size_t size, exclaves_buffer_perm_t perm) { assert(resource->r_type == XNUPROXY_RESOURCETYPE_SHAREDMEMORY || resource->r_type == XNUPROXY_RESOURCETYPE_ARBITRATEDAUDIOMEMORY); /* * It is expected that shared memory is either write-only or read-only. * This is enforced through the userspace APIs (inbound or outbound buffers * respectively). */ assert(perm == EXCLAVES_BUFFER_PERM_READ || perm == EXCLAVES_BUFFER_PERM_WRITE); kern_return_t kr = KERN_FAILURE; /* round size up to nearest page */ mach_vm_offset_t rounded_size = 0; if (size == 0 || mach_vm_round_page_overflow(size, &rounded_size)) { return KERN_INVALID_ARGUMENT; } const size_t page_count = rounded_size / PAGE_SIZE; lck_mtx_lock(&resource->r_mutex); __block shared_memory_resource_t *sm = &resource->r_shared_memory; /* * If already active, bump the use count, check that the perms and size * are compatible and return. Checking the use count is insufficient * here as this can race with with a non-locked use count release. */ if (resource->r_active) { /* * Both the permissions and size must match. */ if (sm->sm_size < rounded_size || sm->sm_perm != perm) { lck_mtx_unlock(&resource->r_mutex); return KERN_INVALID_ARGUMENT; } exclaves_resource_retain(resource); lck_mtx_unlock(&resource->r_mutex); return KERN_SUCCESS; } /* This is lazily initialised and never de-initialised. */ if (sm->sm_client.connection == NULL) { uint64_t endpoint = resource->r_type == XNUPROXY_RESOURCETYPE_SHAREDMEMORY ? resource->r_id : audio_memory_get_endpoint(resource); kr = exclaves_shared_memory_init(endpoint, &sm->sm_client); if (kr != KERN_SUCCESS) { lck_mtx_unlock(&resource->r_mutex); return kr; } } const sharedmemorybase_perms_s sm_perm = perm == EXCLAVES_BUFFER_PERM_WRITE ? SHAREDMEMORYBASE_PERMS_READWRITE : SHAREDMEMORYBASE_PERMS_READONLY; sharedmemorybase_mapping_s mapping = 0; kr = exclaves_shared_memory_setup(&sm->sm_client, sm_perm, 0, page_count, &mapping); if (kr != KERN_SUCCESS) { lck_mtx_unlock(&resource->r_mutex); return kr; } /* * From this point on exclaves_shared_memory_teardown() must be called * if something goes wrong so that the buffer will be properly unmapped. */ sm->sm_size = rounded_size; sm->sm_perm = perm; sm->sm_addr = NULL; /* * The shared buffer is now accessible by xnu. Discover the layout of * the memory and map it into the kernel. */ uint32_t *pages = kalloc_type(uint32_t, page_count, Z_WAITOK | Z_ZERO | Z_NOFAIL); __block uint32_t idx = 0; /* BEGIN IGNORE CODESTYLE */ kr = exclaves_shared_memory_iterate(&sm->sm_client, &mapping, 0, page_count, ^(uint64_t pa) { assert3u(pa & PAGE_MASK, ==, 0); assert3u(idx, <, page_count); pages[idx++] = (uint32_t)atop(pa); }); /* END IGNORE CODESTYLE */ if (kr != KERN_SUCCESS) { kfree_type(uint32_t, page_count, pages); exclaves_shared_memory_teardown(&sm->sm_client, &mapping); lck_mtx_unlock(&resource->r_mutex); return KERN_FAILURE; } assert3u(idx, ==, page_count); const vm_prot_t prot = (perm & EXCLAVES_BUFFER_PERM_WRITE) != 0 ? VM_PROT_READ | VM_PROT_WRITE : VM_PROT_READ; kr = exclaves_memory_map((uint32_t)page_count, pages, prot, &sm->sm_addr); kfree_type(uint32_t, page_count, pages); if (kr != KERN_SUCCESS) { exclaves_shared_memory_teardown(&sm->sm_client, &mapping); lck_mtx_unlock(&resource->r_mutex); return KERN_FAILURE; } sm->sm_mapping = mapping; exclaves_resource_retain(resource); resource->r_active = true; lck_mtx_unlock(&resource->r_mutex); return KERN_SUCCESS; } kern_return_t exclaves_resource_shared_memory_map(const char *domain, const char *name, size_t size, exclaves_buffer_perm_t perm, exclaves_resource_t **out) { assert3p(out, !=, NULL); exclaves_resource_t *resource = exclaves_resource_lookup_by_name(domain, name, XNUPROXY_RESOURCETYPE_SHAREDMEMORY); if (resource == NULL) { return KERN_NOT_FOUND; } assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_SHAREDMEMORY); kern_return_t kr = shared_memory_map(resource, size, perm); if (kr != KERN_SUCCESS) { return kr; } *out = resource; return KERN_SUCCESS; } static void exclaves_resource_shared_memory_unmap(exclaves_resource_t *resource) { assert(resource->r_type == XNUPROXY_RESOURCETYPE_SHAREDMEMORY || resource->r_type == XNUPROXY_RESOURCETYPE_ARBITRATEDAUDIOMEMORY); assert3u(os_atomic_load(&resource->r_usecnt, relaxed), ==, 0); LCK_MTX_ASSERT(&resource->r_mutex, LCK_MTX_ASSERT_OWNED); shared_memory_resource_t *sm = &resource->r_shared_memory; if (sm->sm_addr != NULL) { __assert_only kern_return_t kr = exclaves_memory_unmap(sm->sm_addr, sm->sm_size); assert3u(kr, ==, KERN_SUCCESS); sm->sm_addr = NULL; sm->sm_size = 0; } kern_return_t kr = exclaves_shared_memory_teardown(&sm->sm_client, &sm->sm_mapping); if (kr != KERN_SUCCESS) { exclaves_debug_printf(show_errors, "exclaves: failed to teardown shared memory: %s, \n", resource->r_name); return; } bzero(&resource->r_shared_memory, sizeof(resource->r_shared_memory)); resource->r_active = false; } char * exclaves_resource_shared_memory_get_buffer(exclaves_resource_t *resource, size_t *buffer_len) { assert3u(os_atomic_load(&resource->r_usecnt, relaxed), >, 0); assert(resource->r_type == XNUPROXY_RESOURCETYPE_SHAREDMEMORY || resource->r_type == XNUPROXY_RESOURCETYPE_ARBITRATEDAUDIOMEMORY); shared_memory_resource_t *sm = &resource->r_shared_memory; assert3p(sm->sm_addr, !=, NULL); assert3u(sm->sm_size, !=, 0); if (buffer_len != NULL) { *buffer_len = sm->sm_size; } return sm->sm_addr; } /* -------------------------------------------------------------------------- */ #pragma mark Arbitrated Audio Memory kern_return_t exclaves_resource_audio_memory_map(const char *domain, const char *name, size_t size, exclaves_resource_t **out) { assert3p(out, !=, NULL); exclaves_resource_t *resource = exclaves_resource_lookup_by_name(domain, name, XNUPROXY_RESOURCETYPE_ARBITRATEDAUDIOMEMORY); if (resource == NULL) { return KERN_NOT_FOUND; } assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_ARBITRATEDAUDIOMEMORY); kern_return_t kr = shared_memory_map(resource, size, EXCLAVES_BUFFER_PERM_READ); if (kr != KERN_SUCCESS) { return kr; } *out = resource; return KERN_SUCCESS; } static void exclaves_resource_audio_memory_unmap(exclaves_resource_t *resource) { assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_ARBITRATEDAUDIOMEMORY); assert3u(os_atomic_load(&resource->r_usecnt, relaxed), ==, 0); LCK_MTX_ASSERT(&resource->r_mutex, LCK_MTX_ASSERT_OWNED); exclaves_resource_shared_memory_unmap(resource); } kern_return_t exclaves_resource_audio_memory_copyout(exclaves_resource_t *resource, user_addr_t buffer, mach_vm_size_t size1, mach_vm_size_t offset1, mach_vm_size_t size2, mach_vm_size_t offset2, user_addr_t ustatus) { assert3u(os_atomic_load(&resource->r_usecnt, relaxed), >, 0); assert3u(resource->r_type, ==, XNUPROXY_RESOURCETYPE_ARBITRATEDAUDIOMEMORY); kern_return_t kr = KERN_FAILURE; exclaves_sensor_status_t status; const uint32_t id = audio_memory_get_buffer_id(resource); kr = exclaves_sensor_copy(id, size1, offset1, size2, offset2, &status); if (kr != KERN_SUCCESS) { return kr; } kr = exclaves_resource_shared_memory_copyout(resource, buffer, size1, offset1, size2, offset2); if (kr != KERN_SUCCESS) { return kr; } if (ustatus != 0 && copyout(&status, ustatus, sizeof(status)) != 0) { return KERN_FAILURE; } return KERN_SUCCESS; } #endif /* CONFIG_EXCLAVES */ |