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 | /* * Copyright (c) 2007-2020 Apple Inc. All Rights Reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ /* * Copyright (c) 1988 University of Utah. * Copyright (c) 1991, 1993 * The Regents of the University of California. All rights reserved. * * This code is derived from software contributed to Berkeley by * the Systems Programming Group of the University of Utah Computer * Science Department. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by the University of * California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * from: Utah $Hdr: vm_mmap.c 1.6 91/10/21$ * * @(#)vm_mmap.c 8.10 (Berkeley) 2/19/95 */ /* * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce * support for mandatory and extensible security protections. This notice * is included in support of clause 2.2 (b) of the Apple Public License, * Version 2.0. */ /* * Mapped file (mmap) interface to VM */ #include <sys/param.h> #include <sys/systm.h> #include <sys/filedesc.h> #include <sys/proc_internal.h> #include <sys/kauth.h> #include <sys/resourcevar.h> #include <sys/vnode_internal.h> #include <sys/acct.h> #include <sys/wait.h> #include <sys/file_internal.h> #include <sys/vadvise.h> #include <sys/trace.h> #include <sys/mman.h> #include <sys/conf.h> #include <sys/stat.h> #include <sys/ubc.h> #include <sys/ubc_internal.h> #include <sys/sysproto.h> #include <sys/syscall.h> #include <sys/kdebug.h> #include <sys/bsdtask_info.h> #include <security/audit/audit.h> #include <bsm/audit_kevents.h> #include <mach/mach_types.h> #include <mach/mach_traps.h> #include <mach/vm_sync.h> #include <mach/vm_behavior.h> #include <mach/vm_inherit.h> #include <mach/vm_statistics.h> #include <mach/mach_vm.h> #include <mach/vm_map.h> #include <mach/host_priv.h> #include <mach/sdt.h> #include <mach-o/loader.h> #include <mach/vm_types_unsafe.h> #include <machine/machine_routines.h> #include <kern/cpu_number.h> #include <kern/host.h> #include <kern/task.h> #include <kern/page_decrypt.h> #include <IOKit/IOReturn.h> #include <IOKit/IOBSD.h> #include <vm/vm_kern_xnu.h> #include <vm/vm_map_xnu.h> #include <vm/vm_pager_xnu.h> #include <vm/vm_sanitize_internal.h> #if CONFIG_MACF #include <security/mac_framework.h> #endif #include <os/overflow.h> /* * this function implements the same logic as dyld's "dyld_fall_2020_os_versions" * from dyld_priv.h. Basically, we attempt to draw the line of: "was this code * compiled with an SDK from fall of 2020 or later?"" */ static bool proc_2020_fall_os_sdk_or_later(void) { const uint32_t proc_sdk_ver = proc_sdk(current_proc()); switch (proc_platform(current_proc())) { case PLATFORM_MACOS: return proc_sdk_ver >= 0x000a1000; // DYLD_MACOSX_VERSION_10_16 case PLATFORM_XROS: case PLATFORM_XROSSIMULATOR: //all of XROS is new enough return true; case PLATFORM_IOS: case PLATFORM_IOSSIMULATOR: case PLATFORM_MACCATALYST: return proc_sdk_ver >= 0x000e0000; // DYLD_IOS_VERSION_14_0 case PLATFORM_BRIDGEOS: return proc_sdk_ver >= 0x00050000; // DYLD_BRIDGEOS_VERSION_5_0 case PLATFORM_TVOS: case PLATFORM_TVOSSIMULATOR: return proc_sdk_ver >= 0x000e0000; // DYLD_TVOS_VERSION_14_0 case PLATFORM_WATCHOS: case PLATFORM_WATCHOSSIMULATOR: return proc_sdk_ver >= 0x00070000; // DYLD_WATCHOS_VERSION_7_0 default: /* * tough call, but let's give new platforms the benefit of the doubt * to avoid a re-occurence of rdar://89843927 */ return true; } } static __attribute__((always_inline, warn_unused_result)) kern_return_t mmap_sanitize( vm_map_t user_map, vm_prot_ut prot_u, vm_addr_struct_t pos_u, vm_size_struct_t len_u, vm_addr_struct_t addr_u, int flags, vm_prot_t *prot, vm_object_offset_t *file_pos, vm_object_offset_t *file_end, vm_map_size_t *file_size, vm_map_offset_t *user_addr, vm_map_offset_t *user_end, vm_map_size_t *user_size) { kern_return_t kr; vm_map_offset_t user_mask = vm_map_page_mask(user_map); vm_sanitize_flags_t vm_sanitize_flags; *prot = vm_sanitize_prot_bsd(prot_u, VM_SANITIZE_CALLER_MMAP); *prot &= VM_PROT_ALL; /* * Check file_pos doesn't overflow with PAGE_MASK since VM objects use * this page mask internally, and it can be wider than the user_map's. */ if (flags & MAP_UNIX03) { vm_sanitize_flags = VM_SANITIZE_FLAGS_SIZE_ZERO_FAILS; } else { vm_sanitize_flags = VM_SANITIZE_FLAGS_SIZE_ZERO_FALLTHROUGH; } kr = vm_sanitize_addr_size(pos_u, len_u, VM_SANITIZE_CALLER_MMAP, PAGE_MASK, vm_sanitize_flags | VM_SANITIZE_FLAGS_GET_UNALIGNED_VALUES, file_pos, file_end, file_size); if (__improbable(kr != KERN_SUCCESS)) { return kr; } /* * Check that file_pos is page aligned for the user page size when * UNIX03 compliance is requested. * The user page size may be different from the kernel page size we * use to check for overflows in the sanitizer call above). */ if ((flags & MAP_UNIX03) && (*file_pos & user_mask)) { return KERN_INVALID_ARGUMENT; } if (flags & MAP_FIXED) { kr = vm_sanitize_addr_size(addr_u, len_u, VM_SANITIZE_CALLER_MMAP, user_map, VM_SANITIZE_FLAGS_SIZE_ZERO_FALLTHROUGH, user_addr, user_end, user_size); if (__improbable(kr != KERN_SUCCESS)) { return kr; } /* * Further validation since we allowed a misaligned user_addr * for fixed mappings. * * The specified address must have the same remainder * as the file offset taken modulo PAGE_SIZE, so it * should be aligned after adjustment by (file_pos & user_mask). */ if (!VM_SANITIZE_UNSAFE_IS_EQUAL( addr_u, *user_addr + (*file_pos & user_mask))) { return KERN_INVALID_ARGUMENT; } } else { /* * For "anywhere" mappings, the address is only a hint, * mach_vm_map_kernel() will fail with KERN_NO_SPACE * if user_addr + user_size overflows, * and mmap will start scanning again. * * Unlike Mach VM APIs, the hint is taken as a strict * "start" which is why we round the sanitized address up, * rather than truncate. */ *user_addr = vm_sanitize_addr(user_map, vm_sanitize_compute_ut_end(addr_u, user_mask)); kr = vm_sanitize_size(pos_u, len_u, VM_SANITIZE_CALLER_MMAP, user_map, VM_SANITIZE_FLAGS_SIZE_ZERO_FALLTHROUGH, user_size); if (__improbable(kr != KERN_SUCCESS)) { return kr; } } return KERN_SUCCESS; } /* * XXX Internally, we use VM_PROT_* somewhat interchangeably, but the correct * XXX usage is PROT_* from an interface perspective. Thus the values of * XXX VM_PROT_* and PROT_* need to correspond. */ int mmap(proc_t p, struct mmap_args *uap, user_addr_t *retval) { /* * Map in special device (must be SHARED) or file */ struct fileproc *fp; struct vnode *vp = NULLVP; int flags; int prot; int err = 0; vm_map_t user_map; kern_return_t result; vm_map_kernel_flags_t vmk_flags = VM_MAP_KERNEL_FLAGS_NONE; boolean_t docow; vm_prot_t maxprot; void *handle; memory_object_t pager = MEMORY_OBJECT_NULL; memory_object_control_t control; int mapanon = 0; int fpref = 0; int error = 0; int fd = uap->fd; int num_retries = 0; kern_return_t kr; /* page-aligned "user_map" quantities */ vm_map_offset_t user_addr, user_end, user_mask; vm_map_size_t user_size; /* unaligned "file" quantities */ vm_object_offset_t file_pos, file_end; vm_map_size_t file_size; /* * Note that for UNIX03 conformance, there is additional parameter checking for * mmap() system call in libsyscall prior to entering the kernel. The sanity * checks and argument validation done in this function are not the only places * one can get returned errnos. */ user_map = current_map(); flags = uap->flags; user_mask = vm_map_page_mask(user_map); AUDIT_ARG(addr, VM_SANITIZE_UNSAFE_UNWRAP(uap->addr)); AUDIT_ARG(len, VM_SANITIZE_UNSAFE_UNWRAP(uap->len)); AUDIT_ARG(fd, uap->fd); /* * Sanitize any input parameters that are addr/size/protections */ kr = mmap_sanitize(user_map, uap->prot, uap->pos, uap->len, uap->addr, flags, &prot, &file_pos, &file_end, &file_size, &user_addr, &user_end, &user_size); if (__improbable(kr != KERN_SUCCESS)) { assert(vm_sanitize_get_kr(kr)); return EINVAL; } #if 3777787 /* * Since the hardware currently does not support writing without * read-before-write, or execution-without-read, if the request is * for write or execute access, we must imply read access as well; * otherwise programs expecting this to work will fail to operate. */ if (prot & (VM_PROT_EXECUTE | VM_PROT_WRITE)) { prot |= VM_PROT_READ; } #endif /* radar 3777787 */ /* * verify no unknown flags are passed in, and if any are, * fail out early to make sure the logic below never has to deal * with invalid flag values. only do so for processes compiled * with Fall 2020 or later SDK, which is where we drew this * line and documented it as such. */ if (flags & ~(MAP_SHARED | MAP_PRIVATE | MAP_COPY | MAP_FIXED | MAP_RENAME | MAP_NORESERVE | MAP_RESERVED0080 | //grandfathered in as accepted and ignored MAP_NOEXTEND | MAP_HASSEMAPHORE | MAP_NOCACHE | MAP_JIT | MAP_TPRO | MAP_FILE | MAP_ANON | MAP_RESILIENT_CODESIGN | MAP_RESILIENT_MEDIA | #if XNU_TARGET_OS_OSX MAP_32BIT | #endif MAP_TRANSLATED_ALLOW_EXECUTE | MAP_UNIX03)) { if (proc_2020_fall_os_sdk_or_later()) { return EINVAL; } } if (flags & MAP_UNIX03) { /* * Enforce UNIX03 compliance. */ if (!(flags & (MAP_PRIVATE | MAP_SHARED))) { /* need either MAP_PRIVATE or MAP_SHARED */ return EINVAL; } } if (flags & MAP_JIT) { if ((flags & MAP_SHARED) || !(flags & MAP_ANON) || (flags & MAP_RESILIENT_CODESIGN) || (flags & MAP_RESILIENT_MEDIA) || (flags & MAP_TPRO)) { return EINVAL; } if (flags & MAP_FIXED) { #if __arm64__ #if __ARM_MIXED_PAGE_SIZE__ if (vm_map_page_size(user_map) == 4096 && !vm_map_is_exotic(user_map)) { /* MAP_FIXED with MAP_JIT is allowed for arm64/4k */ } else #endif /* __ARM_MIXED_PAGE_SIZE__ */ #endif /* __arm64__ */ { return EINVAL; } } } if ((flags & MAP_RESILIENT_CODESIGN) || (flags & MAP_RESILIENT_MEDIA)) { if ((flags & MAP_ANON) || (flags & MAP_JIT) || (flags & MAP_TPRO)) { return EINVAL; } } if (flags & MAP_RESILIENT_CODESIGN) { int reject_prot = ((flags & MAP_PRIVATE) ? VM_PROT_EXECUTE : (VM_PROT_WRITE | VM_PROT_EXECUTE)); if (prot & reject_prot) { /* * Quick sanity check. maxprot is calculated below and * we will test it again. */ return EPERM; } } if (flags & MAP_SHARED) { /* * MAP_RESILIENT_MEDIA is not valid with MAP_SHARED because * there is no place to inject zero-filled pages without * actually adding them to the file. * Since we didn't reject that combination before, there might * already be callers using it and getting a valid MAP_SHARED * mapping but without the resilience. * For backwards compatibility's sake, let's keep ignoring * MAP_RESILIENT_MEDIA in that case. */ flags &= ~MAP_RESILIENT_MEDIA; } if (flags & MAP_RESILIENT_MEDIA) { if ((flags & MAP_ANON) || (flags & MAP_SHARED)) { return EINVAL; } } if (flags & MAP_TPRO) { /* * MAP_TPRO without VM_PROT_WRITE is not valid here because * the TPRO mapping is handled at the PMAP layer with implicit RW * protections. * * This would enable bypassing of file-based protections, i.e. * a file open/mapped as read-only could be written to. */ if ((prot & VM_PROT_EXECUTE) || !(prot & VM_PROT_WRITE)) { return EPERM; } } /* Entitlement check against code signing monitor */ if ((flags & MAP_JIT) && (vm_map_csm_allow_jit(user_map) != KERN_SUCCESS)) { printf("[%d] code signing monitor denies JIT mapping\n", proc_pid(p)); return EPERM; } if (flags & MAP_ANON) { maxprot = VM_PROT_ALL; #if CONFIG_MACF /* * Entitlement check. */ error = mac_proc_check_map_anon(p, current_cached_proc_cred(p), user_addr, user_size, prot, flags, &maxprot); if (error) { return EINVAL; } #endif /* MAC */ /* * Mapping blank space is trivial. Use positive fds as the alias * value for memory tracking. */ if (fd != -1) { /* * Use "fd" to pass (some) Mach VM allocation flags, * (see the VM_FLAGS_* definitions). */ int vm_flags = fd & (VM_FLAGS_ALIAS_MASK | VM_FLAGS_SUPERPAGE_MASK | VM_FLAGS_PURGABLE | VM_FLAGS_4GB_CHUNK); if (vm_flags != fd) { /* reject if there are any extra flags */ return EINVAL; } /* * vm_map_kernel_flags_set_vmflags() will assume that * the full set of VM flags are passed, which is * problematic for FIXED/ANYWHERE. * * The block handling MAP_FIXED below will do the same * thing again which is fine because it's idempotent. */ if (flags & MAP_FIXED) { vm_flags |= VM_FLAGS_FIXED | VM_FLAGS_OVERWRITE; } else { vm_flags |= VM_FLAGS_ANYWHERE; } vm_map_kernel_flags_set_vmflags(&vmk_flags, vm_flags); } #if CONFIG_MAP_RANGES /* * if the client specified a tag, let the system policy apply. * * otherwise, force the heap range. */ if (vmk_flags.vm_tag) { vm_map_kernel_flags_update_range_id(&vmk_flags, user_map, user_size); } else { vmk_flags.vmkf_range_id = UMEM_RANGE_ID_HEAP; } #endif /* CONFIG_MAP_RANGES */ handle = NULL; file_pos = 0; mapanon = 1; } else { struct vnode_attr va; vfs_context_t ctx = vfs_context_current(); if (flags & MAP_JIT) { return EINVAL; } /* * Mapping file, get fp for validation. Obtain vnode and make * sure it is of appropriate type. */ err = fp_lookup(p, fd, &fp, 0); if (err) { return err; } fpref = 1; switch (FILEGLOB_DTYPE(fp->fp_glob)) { case DTYPE_PSXSHM: error = pshm_mmap(p, VM_SANITIZE_UNSAFE_UNWRAP(uap->addr), user_size, prot, flags, fp, vm_map_trunc_page(file_pos, user_mask), file_pos & user_mask, retval); goto bad; case DTYPE_VNODE: break; default: error = EINVAL; goto bad; } vp = (struct vnode *)fp_get_data(fp); error = vnode_getwithref(vp); if (error != 0) { goto bad; } if (vp->v_type != VREG && vp->v_type != VCHR) { (void)vnode_put(vp); error = EINVAL; goto bad; } AUDIT_ARG(vnpath, vp, ARG_VNODE1); /* * POSIX: mmap needs to update access time for mapped files */ if ((vnode_vfsvisflags(vp) & MNT_NOATIME) == 0) { VATTR_INIT(&va); nanotime(&va.va_access_time); VATTR_SET_ACTIVE(&va, va_access_time); vnode_setattr(vp, &va, ctx); } /* * XXX hack to handle use of /dev/zero to map anon memory (ala * SunOS). */ if (vp->v_type == VCHR || vp->v_type == VSTR) { (void)vnode_put(vp); error = ENODEV; goto bad; } else { /* * Ensure that file and memory protections are * compatible. Note that we only worry about * writability if mapping is shared; in this case, * current and max prot are dictated by the open file. * XXX use the vnode instead? Problem is: what * credentials do we use for determination? What if * proc does a setuid? */ maxprot = VM_PROT_EXECUTE; /* TODO: Remove this and restrict maxprot? */ if (fp->fp_glob->fg_flag & FREAD) { maxprot |= VM_PROT_READ; } else if (prot & PROT_READ) { (void)vnode_put(vp); error = EACCES; goto bad; } /* * If we are sharing potential changes (either via * MAP_SHARED or via the implicit sharing of character * device mappings), and we are trying to get write * permission although we opened it without asking * for it, bail out. */ if ((flags & MAP_SHARED) != 0) { if ((fp->fp_glob->fg_flag & FWRITE) != 0 && /* * Do not allow writable mappings of * swap files (see vm_swapfile_pager.c). */ !vnode_isswap(vp)) { /* * check for write access * * Note that we already made this check when granting FWRITE * against the file, so it seems redundant here. */ error = vnode_authorize(vp, NULL, KAUTH_VNODE_CHECKIMMUTABLE, ctx); /* if not granted for any reason, but we wanted it, bad */ if ((prot & PROT_WRITE) && (error != 0)) { vnode_put(vp); goto bad; } /* if writable, remember */ if (error == 0) { maxprot |= VM_PROT_WRITE; } } else if ((prot & PROT_WRITE) != 0) { (void)vnode_put(vp); error = EACCES; goto bad; } } else { maxprot |= VM_PROT_WRITE; } handle = (void *)vp; #if CONFIG_MACF error = mac_file_check_mmap(vfs_context_ucred(ctx), fp->fp_glob, prot, flags, file_pos, &maxprot); if (error) { (void)vnode_put(vp); goto bad; } #endif /* MAC */ /* * Consult the file system to determine if this * particular file object can be mapped. * * N.B. If MAP_PRIVATE (i.e. CoW) has been specified, * then we don't check for writeability on the file * object, because it will only ever see reads. */ error = VNOP_MMAP_CHECK(vp, (flags & MAP_PRIVATE) ? (prot & ~PROT_WRITE) : prot, ctx); if (error) { (void)vnode_put(vp); goto bad; } } /* * No copy-on-read for mmap() mappings themselves. */ vmk_flags.vmkf_no_copy_on_read = 1; #if CONFIG_MAP_RANGES && !XNU_PLATFORM_MacOSX /* force file ranges on !macOS */ vmk_flags.vmkf_range_id = UMEM_RANGE_ID_HEAP; #if XNU_TARGET_OS_IOS && EXTENDED_USER_VA_SUPPORT /* * Put allocations on iOS with EXTENDED_USER_VA_SUPPORT * in the large file range, if the process has the "extra jumbo" entitlement. * Otherwise, place allocation into the heap range. */ vmk_flags.vmkf_range_id = UMEM_RANGE_ID_LARGE_FILE; #endif /* XNU_TARGET_OS_IOS && EXTENDED_USER_VA_SUPPORT */ #endif /* CONFIG_MAP_RANGES && !XNU_PLATFORM_MacOSX */ } if (user_size == 0) { if (!mapanon) { (void)vnode_put(vp); } error = 0; goto bad; } if (flags & MAP_FIXED) { /* * mmap(MAP_FIXED) will replace any existing mappings in the * specified range, if the new mapping is successful. * If we just deallocate the specified address range here, * another thread might jump in and allocate memory in that * range before we get a chance to establish the new mapping, * and we won't have a chance to restore the old mappings. * So we use VM_FLAGS_OVERWRITE to let Mach VM know that it * has to deallocate the existing mappings and establish the * new ones atomically. */ vmk_flags.vmf_fixed = true; vmk_flags.vmf_overwrite = true; } if (flags & MAP_NOCACHE) { vmk_flags.vmf_no_cache = true; } if (flags & MAP_JIT) { vmk_flags.vmkf_map_jit = TRUE; } if (flags & MAP_TPRO) { vmk_flags.vmf_tpro = true; } #if CONFIG_ROSETTA if (flags & MAP_TRANSLATED_ALLOW_EXECUTE) { if (!proc_is_translated(p)) { if (!mapanon) { (void)vnode_put(vp); } error = EINVAL; goto bad; } vmk_flags.vmkf_translated_allow_execute = TRUE; } #endif if (flags & MAP_RESILIENT_CODESIGN) { vmk_flags.vmf_resilient_codesign = true; } if (flags & MAP_RESILIENT_MEDIA) { vmk_flags.vmf_resilient_media = true; } #if XNU_TARGET_OS_OSX /* macOS-specific MAP_32BIT flag handling */ if (flags & MAP_32BIT) { vmk_flags.vmkf_32bit_map_va = TRUE; } #endif /* * Lookup/allocate object. */ if (handle == NULL) { control = NULL; #ifdef notyet /* Hmm .. */ #if defined(VM_PROT_READ_IS_EXEC) if (prot & VM_PROT_READ) { prot |= VM_PROT_EXECUTE; } if (maxprot & VM_PROT_READ) { maxprot |= VM_PROT_EXECUTE; } #endif #endif #if 3777787 if (prot & (VM_PROT_EXECUTE | VM_PROT_WRITE)) { prot |= VM_PROT_READ; } if (maxprot & (VM_PROT_EXECUTE | VM_PROT_WRITE)) { maxprot |= VM_PROT_READ; } #endif /* radar 3777787 */ map_anon_retry: result = mach_vm_map_kernel(user_map, vm_sanitize_wrap_addr_ref(&user_addr), user_size, 0, vmk_flags, IPC_PORT_NULL, 0, FALSE, prot, maxprot, (flags & MAP_SHARED) ? VM_INHERIT_SHARE : VM_INHERIT_DEFAULT); /* If a non-binding address was specified for this anonymous * mapping, retry the mapping with a zero base * in the event the mapping operation failed due to * lack of space between the address and the map's maximum. */ if ((result == KERN_NO_SPACE) && ((flags & MAP_FIXED) == 0) && user_addr && (num_retries++ == 0)) { user_addr = vm_map_page_size(user_map); goto map_anon_retry; } } else { if (vnode_isswap(vp)) { /* * Map swap files with a special pager * that returns obfuscated contents. */ control = NULL; pager = swapfile_pager_setup(vp); if (pager != MEMORY_OBJECT_NULL) { control = swapfile_pager_control(pager); } } else { control = ubc_getobject(vp, UBC_FLAGS_NONE); } if (control == NULL) { (void)vnode_put(vp); error = ENOMEM; goto bad; } /* * Set credentials: * FIXME: if we're writing the file we need a way to * ensure that someone doesn't replace our R/W creds * with ones that only work for read. */ ubc_setthreadcred(vp, p, current_thread()); docow = FALSE; if ((flags & (MAP_ANON | MAP_SHARED)) == 0) { docow = TRUE; } #ifdef notyet /* Hmm .. */ #if defined(VM_PROT_READ_IS_EXEC) if (prot & VM_PROT_READ) { prot |= VM_PROT_EXECUTE; } if (maxprot & VM_PROT_READ) { maxprot |= VM_PROT_EXECUTE; } #endif #endif /* notyet */ #if 3777787 if (prot & (VM_PROT_EXECUTE | VM_PROT_WRITE)) { prot |= VM_PROT_READ; } if (maxprot & (VM_PROT_EXECUTE | VM_PROT_WRITE)) { maxprot |= VM_PROT_READ; } #endif /* radar 3777787 */ map_file_retry: if (flags & MAP_RESILIENT_CODESIGN) { int reject_prot = ((flags & MAP_PRIVATE) ? VM_PROT_EXECUTE : (VM_PROT_WRITE | VM_PROT_EXECUTE)); if (prot & reject_prot) { /* * Would like to use (prot | maxprot) here * but the assignment of VM_PROT_EXECUTE * to maxprot above would always fail the test. * * Skipping the check is ok, however, because we * restrict maxprot to prot just below in this * block. */ assert(!mapanon); vnode_put(vp); error = EPERM; goto bad; } /* strictly limit access to "prot" */ maxprot &= prot; } result = vm_map_enter_mem_object_control(user_map, vm_sanitize_wrap_addr_ref(&user_addr), user_size, 0, vmk_flags, control, vm_map_trunc_page(file_pos, user_mask), docow, prot, maxprot, (flags & MAP_SHARED) ? VM_INHERIT_SHARE : VM_INHERIT_DEFAULT); /* If a non-binding address was specified for this file backed * mapping, retry the mapping with a zero base * in the event the mapping operation failed due to * lack of space between the address and the map's maximum. */ if ((result == KERN_NO_SPACE) && ((flags & MAP_FIXED) == 0) && user_addr && (num_retries++ == 0)) { user_addr = vm_map_page_size(user_map); goto map_file_retry; } } if (!mapanon) { (void)vnode_put(vp); } switch (result) { case KERN_SUCCESS: *retval = user_addr + (file_pos & user_mask); error = 0; break; case KERN_INVALID_ADDRESS: case KERN_NO_SPACE: error = ENOMEM; break; case KERN_PROTECTION_FAILURE: error = EACCES; break; default: error = EINVAL; break; } bad: if (pager != MEMORY_OBJECT_NULL) { /* * Release the reference on the pager. * If the mapping was successful, it now holds * an extra reference. */ memory_object_deallocate(pager); } if (fpref) { fp_drop(p, fd, fp, 0); } KERNEL_DEBUG_CONSTANT((BSDDBG_CODE(DBG_BSD_SC_EXTENDED_INFO, SYS_mmap) | DBG_FUNC_NONE), fd, (uint32_t)(*retval), (uint32_t)user_size, error, 0); #if XNU_TARGET_OS_OSX KERNEL_DEBUG_CONSTANT((BSDDBG_CODE(DBG_BSD_SC_EXTENDED_INFO2, SYS_mmap) | DBG_FUNC_NONE), (uint32_t)(*retval >> 32), (uint32_t)(user_size >> 32), (uint32_t)(file_pos >> 32), (uint32_t)file_pos, 0); #endif /* XNU_TARGET_OS_OSX */ return error; } int msync(__unused proc_t p, struct msync_args *uap, int32_t *retval) { __pthread_testcancel(1); return msync_nocancel(p, (struct msync_nocancel_args *)uap, retval); } static __attribute__((always_inline, warn_unused_result)) kern_return_t msync_sanitize( vm_map_t user_map, user_addr_ut addr_u, user_size_ut len_u, mach_vm_offset_t *addr, mach_vm_offset_t *size) { mach_vm_offset_t end; /* * UNIX SPEC: user address is not page-aligned, return EINVAL * * len == 0 * FreeBSD and NetBSD support msync with a length of zero to * sync all pages within the region containing the address. * We cannot support this mode without maintaining a list all * mmaps performed. (Our list of vm_map_entry is not suitable * because they may be split or coalesced for other reasons.) * We therefore reject len==0 with an error, instead of * doing the wrong thing or silently doing nothing. * * Platforms that do not mention len==0 in their man pages, * and are thus presumed not to support that mode either: * Linux, Solaris, POSIX */ return vm_sanitize_addr_size(addr_u, len_u, VM_SANITIZE_CALLER_MSYNC, user_map, VM_SANITIZE_FLAGS_CHECK_ALIGNED_START | VM_SANITIZE_FLAGS_SIZE_ZERO_FAILS, addr, &end, size); } int msync_nocancel(__unused proc_t p, struct msync_nocancel_args *uap, __unused int32_t *retval) { mach_vm_offset_t addr; mach_vm_size_t size; kern_return_t kr; int flags; vm_map_t user_map; int rv; vm_sync_t sync_flags = 0; user_map = current_map(); flags = uap->flags; /* * Sanitize all input parameters that are addr/offset/size/prot/inheritance */ kr = msync_sanitize(user_map, uap->addr, uap->len, &addr, &size); #if XNU_TARGET_OS_OSX KERNEL_DEBUG_CONSTANT((BSDDBG_CODE(DBG_BSD_SC_EXTENDED_INFO, SYS_msync) | DBG_FUNC_NONE), (uint32_t)(addr >> 32), (uint32_t)(size >> 32), 0, 0, 0); #endif /* XNU_TARGET_OS_OSX */ if (__improbable(kr != KERN_SUCCESS)) { assert(vm_sanitize_get_kr(kr)); return EINVAL; } /* disallow contradictory flags */ if ((flags & (MS_SYNC | MS_ASYNC)) == (MS_SYNC | MS_ASYNC)) { return EINVAL; } if (flags & MS_KILLPAGES) { sync_flags |= VM_SYNC_KILLPAGES; } if (flags & MS_DEACTIVATE) { sync_flags |= VM_SYNC_DEACTIVATE; } if (flags & MS_INVALIDATE) { sync_flags |= VM_SYNC_INVALIDATE; } if (!(flags & (MS_KILLPAGES | MS_DEACTIVATE))) { if (flags & MS_ASYNC) { sync_flags |= VM_SYNC_ASYNCHRONOUS; } else { sync_flags |= VM_SYNC_SYNCHRONOUS; } } sync_flags |= VM_SYNC_CONTIGUOUS; /* complain if holes */ rv = mach_vm_msync(user_map, addr, size, sync_flags); switch (rv) { case KERN_SUCCESS: break; case KERN_INVALID_ADDRESS: /* hole in region being sync'ed */ return ENOMEM; case KERN_FAILURE: return EIO; default: return EINVAL; } return 0; } static __attribute__((always_inline, warn_unused_result)) kern_return_t munmap_sanitize( vm_map_t user_map, vm_addr_struct_t addr_u, vm_size_struct_t len_u, mach_vm_offset_t *user_addr, mach_vm_offset_t *user_end, mach_vm_size_t *user_size) { return vm_sanitize_addr_size(addr_u, len_u, VM_SANITIZE_CALLER_MUNMAP, user_map, VM_SANITIZE_FLAGS_CHECK_ALIGNED_START | VM_SANITIZE_FLAGS_SIZE_ZERO_FAILS, user_addr, user_end, user_size); } int munmap(__unused proc_t p, struct munmap_args *uap, __unused int32_t *retval) { mach_vm_offset_t user_addr, user_end; mach_vm_size_t user_size; kern_return_t result; vm_map_t user_map; user_map = current_map(); AUDIT_ARG(addr, VM_SANITIZE_UNSAFE_UNWRAP(uap->addr)); AUDIT_ARG(len, VM_SANITIZE_UNSAFE_UNWRAP(uap->len)); /* * Sanitize any input parameters that are addr/size/protections */ result = munmap_sanitize(user_map, uap->addr, uap->len, &user_addr, &user_end, &user_size); if (__improbable(result != KERN_SUCCESS)) { assert(vm_sanitize_get_kr(result) == KERN_INVALID_ARGUMENT); return EINVAL; } if (mach_vm_deallocate_kernel(user_map, user_addr, user_size)) { return EINVAL; } return 0; } static __attribute__((always_inline, warn_unused_result)) kern_return_t mprotect_sanitize( vm_map_t user_map, mach_vm_offset_ut user_addr_u, mach_vm_size_ut user_size_u, vm_prot_ut prot_u, mach_vm_offset_t *user_addr, mach_vm_offset_t *user_end_aligned, mach_vm_size_t *user_size, vm_prot_t *prot) { kern_return_t result; /* * Validate addr and size. Use VM_SANITIZE_FLAGS_CHECK_ALIGNED_START to * check unaligned start due to UNIX SPEC: user address is not page-aligned, * return EINVAL */ vm_sanitize_flags_t flags = VM_SANITIZE_FLAGS_CHECK_ALIGNED_START | VM_SANITIZE_FLAGS_SIZE_ZERO_FALLTHROUGH; #if HAS_MTE || HAS_MTE_EMULATION_SHIMS user_addr_u = vm_sanitize_canonicalize_ut_addr(user_map, user_addr_u); #endif /* HAS_MTE || HAS_MTE_EMULATION_SHIMS */ result = vm_sanitize_addr_size(user_addr_u, user_size_u, VM_SANITIZE_CALLER_MPROTECT, user_map, flags, user_addr, user_end_aligned, user_size); if (__improbable(result != KERN_SUCCESS)) { return result; } /* prot is sanitized by masking out invalid flags; it cannot fail. */ *prot = vm_sanitize_prot_bsd(prot_u, VM_SANITIZE_CALLER_MPROTECT); return KERN_SUCCESS; } int mprotect(__unused proc_t p, struct mprotect_args *uap, __unused int32_t *retval) { vm_prot_t prot; mach_vm_offset_ut user_addr_u; mach_vm_size_ut user_size_u; vm_prot_ut prot_u; mach_vm_offset_t user_addr; mach_vm_offset_t user_end_aligned; mach_vm_size_t user_size; kern_return_t result; vm_map_t user_map; #if CONFIG_MACF int error; #endif AUDIT_ARG(addr, VM_SANITIZE_UNSAFE_UNWRAP(uap->addr)); AUDIT_ARG(len, VM_SANITIZE_UNSAFE_UNWRAP(uap->len)); AUDIT_ARG(value32, uap->prot); user_map = current_map(); user_addr_u = uap->addr; user_size_u = uap->len; prot_u = vm_sanitize_wrap_prot((vm_prot_t)uap->prot); /* * Sanitize any input parameters that are addr/size/prot/inheritance */ result = mprotect_sanitize(user_map, user_addr_u, user_size_u, prot_u, &user_addr, &user_end_aligned, &user_size, &prot); if (__improbable(result != KERN_SUCCESS)) { result = vm_sanitize_get_kr(result); switch (result) { case KERN_SUCCESS: return 0; case KERN_INVALID_ADDRESS: /* UNIX SPEC: for an invalid address range, return ENOMEM */ return ENOMEM; case KERN_INVALID_ARGUMENT: return EINVAL; default: return EINVAL; } } /* user_size may be zero here */ #ifdef notyet /* Hmm .. */ #if defined(VM_PROT_READ_IS_EXEC) if (prot & VM_PROT_READ) { prot |= VM_PROT_EXECUTE; } #endif #endif /* notyet */ #if 3936456 if (prot & (VM_PROT_EXECUTE | VM_PROT_WRITE)) { prot |= VM_PROT_READ; } #endif /* 3936456 */ #if CONFIG_MACF /* * The MAC check for mprotect is of limited use for 2 reasons: * Without mmap revocation, the caller could have asked for the max * protections initially instead of a reduced set, so a mprotect * check would offer no new security. * It is not possible to extract the vnode from the pager object(s) * of the target memory range. * However, the MAC check may be used to prevent a process from, * e.g., making the stack executable. */ error = mac_proc_check_mprotect(p, user_addr, user_size, prot); if (error) { return error; } #endif if (prot & VM_PROT_TRUSTED) { #if CONFIG_DYNAMIC_CODE_SIGNING /* CODE SIGNING ENFORCEMENT - JIT support */ /* The special protection value VM_PROT_TRUSTED requests that we treat * this page as if it had a valid code signature. * If this is enabled, there MUST be a MAC policy implementing the * mac_proc_check_mprotect() hook above. Otherwise, Codesigning will be * compromised because the check would always succeed and thusly any * process could sign dynamically. */ result = vm_map_sign( user_map, user_addr, user_end_aligned); switch (result) { case KERN_SUCCESS: break; case KERN_INVALID_ADDRESS: /* UNIX SPEC: for an invalid address range, return ENOMEM */ return ENOMEM; default: return EINVAL; } #else return ENOTSUP; #endif } prot &= ~VM_PROT_TRUSTED; result = mach_vm_protect(user_map, user_addr, user_size, false, prot); switch (result) { case KERN_SUCCESS: return 0; case KERN_PROTECTION_FAILURE: return EACCES; case KERN_INVALID_ADDRESS: /* UNIX SPEC: for an invalid address range, return ENOMEM */ return ENOMEM; } return EINVAL; } static __attribute__((always_inline, warn_unused_result)) kern_return_t minherit_sanitize( vm_map_t user_map, mach_vm_offset_ut addr_u, mach_vm_size_ut size_u, vm_inherit_ut inherit_u, mach_vm_offset_t *addr, mach_vm_size_t *size, vm_inherit_t *inherit) { kern_return_t result; mach_vm_offset_t addr_end; #if HAS_MTE || HAS_MTE_EMULATION_SHIMS addr_u = vm_sanitize_canonicalize_ut_addr(user_map, addr_u); #endif /* HAS_MTE || HAS_MTE_EMULATION_SHIMS */ result = vm_sanitize_addr_size(addr_u, size_u, VM_SANITIZE_CALLER_MINHERIT, user_map, VM_SANITIZE_FLAGS_SIZE_ZERO_FALLTHROUGH, addr, &addr_end, size); if (__improbable(result != KERN_SUCCESS)) { return result; } result = vm_sanitize_inherit(inherit_u, VM_SANITIZE_CALLER_MINHERIT, inherit); if (__improbable(result != KERN_SUCCESS)) { return result; } return KERN_SUCCESS; } int minherit(__unused proc_t p, struct minherit_args *uap, __unused int32_t *retval) { mach_vm_offset_ut addr_u; mach_vm_size_ut size_u; vm_inherit_ut inherit_u; vm_map_t user_map; kern_return_t result; mach_vm_offset_t addr; mach_vm_size_t size; vm_inherit_t inherit; AUDIT_ARG(addr, VM_SANITIZE_UNSAFE_UNWRAP(uap->addr)); AUDIT_ARG(len, VM_SANITIZE_UNSAFE_UNWRAP(uap->len)); AUDIT_ARG(value32, uap->inherit); user_map = current_map(); addr_u = uap->addr; size_u = uap->len; inherit_u = vm_sanitize_wrap_inherit((vm_inherit_t)uap->inherit); /* * Sanitize all input parameters that are addr/offset/size/prot/inheritance */ result = minherit_sanitize(user_map, addr_u, size_u, inherit_u, &addr, &size, &inherit); if (__improbable(result != KERN_SUCCESS)) { assert(vm_sanitize_get_kr(result) == KERN_INVALID_ARGUMENT); return EINVAL; } result = mach_vm_inherit(user_map, addr, size, inherit); switch (result) { case KERN_SUCCESS: return 0; case KERN_PROTECTION_FAILURE: return EACCES; } return EINVAL; } static __attribute__((always_inline, warn_unused_result)) kern_return_t madvise_sanitize( vm_map_t user_map, vm_addr_struct_t addr_u, vm_size_struct_t len_u, mach_vm_offset_t *start, mach_vm_offset_t *end, mach_vm_size_t *size) { #if HAS_MTE || HAS_MTE_EMULATION_SHIMS addr_u = vm_sanitize_canonicalize_ut_addr(user_map, addr_u); #endif /* HAS_MTE || HAS_MTE_EMULATION_SHIMS */ return vm_sanitize_addr_size(addr_u, len_u, VM_SANITIZE_CALLER_MADVISE, user_map, VM_SANITIZE_FLAGS_SIZE_ZERO_FALLTHROUGH, start, end, size); } int madvise(__unused proc_t p, struct madvise_args *uap, __unused int32_t *retval) { vm_map_t user_map; mach_vm_offset_t start, end; mach_vm_size_t size; vm_behavior_t new_behavior; kern_return_t result; user_map = current_map(); result = madvise_sanitize(user_map, uap->addr, uap->len, &start, &end, &size); if (__improbable(result != KERN_SUCCESS)) { assert(vm_sanitize_get_kr(result) == KERN_INVALID_ARGUMENT); return EINVAL; } /* * Since this routine is only advisory, we default to conservative * behavior. */ switch (uap->behav) { case MADV_RANDOM: new_behavior = VM_BEHAVIOR_RANDOM; break; case MADV_SEQUENTIAL: new_behavior = VM_BEHAVIOR_SEQUENTIAL; break; case MADV_NORMAL: new_behavior = VM_BEHAVIOR_DEFAULT; break; case MADV_WILLNEED: new_behavior = VM_BEHAVIOR_WILLNEED; break; case MADV_DONTNEED: new_behavior = VM_BEHAVIOR_DONTNEED; break; case MADV_FREE: new_behavior = VM_BEHAVIOR_FREE; break; case MADV_ZERO_WIRED_PAGES: new_behavior = VM_BEHAVIOR_ZERO_WIRED_PAGES; break; case MADV_FREE_REUSABLE: new_behavior = VM_BEHAVIOR_REUSABLE; break; case MADV_FREE_REUSE: new_behavior = VM_BEHAVIOR_REUSE; break; case MADV_CAN_REUSE: new_behavior = VM_BEHAVIOR_CAN_REUSE; break; case MADV_PAGEOUT: #if MACH_ASSERT new_behavior = VM_BEHAVIOR_PAGEOUT; break; #else /* MACH_ASSERT */ return ENOTSUP; #endif /* MACH_ASSERT */ case MADV_ZERO: new_behavior = VM_BEHAVIOR_ZERO; break; default: return EINVAL; } #if __arm64__ if (start == 0 && size != 0 && (uap->behav == MADV_FREE || uap->behav == MADV_FREE_REUSABLE)) { printf("** %s: %d[%s] " "failing madvise(0x%llx,0x%llx,%s)\n", __func__, proc_getpid(p), p->p_comm, start, size, ((uap->behav == MADV_FREE_REUSABLE) ? "MADV_FREE_REUSABLE" : "MADV_FREE")); return EINVAL; } #endif /* __arm64__ */ result = mach_vm_behavior_set(user_map, start, size, new_behavior); switch (result) { case KERN_SUCCESS: return 0; case KERN_INVALID_ADDRESS: return EINVAL; case KERN_NO_SPACE: return ENOMEM; case KERN_PROTECTION_FAILURE: return EPERM; case KERN_NO_ACCESS: return ENOTSUP; } return EINVAL; } static __attribute__((always_inline, warn_unused_result)) kern_return_t mincore_sanitize( vm_map_t map, mach_vm_offset_ut addr_u, mach_vm_size_ut len_u, mach_vm_offset_t *addr, mach_vm_offset_t *end, mach_vm_size_t *size) { #if HAS_MTE || HAS_MTE_EMULATION_SHIMS /* * mincore() purely accesses VM data structures, which are only composed of * canonicalized addresses. */ assert(!vm_kernel_map_is_kernel(map)); addr_u = vm_sanitize_canonicalize_ut_addr(map, addr_u); #endif /* HAS_MTE || HAS_MTE_EMULATION_SHIMS */ return vm_sanitize_addr_size(addr_u, len_u, VM_SANITIZE_CALLER_MINCORE, map, VM_SANITIZE_FLAGS_SIZE_ZERO_SUCCEEDS, addr, end, size); } int mincore(__unused proc_t p, struct mincore_args *uap, __unused int32_t *retval) { mach_vm_offset_t addr = 0, end = 0, cur_end = 0; mach_vm_size_t size; vm_map_t map = VM_MAP_NULL; user_addr_t vec = 0; int error = 0; int64_t lastvecindex = 0; int mincoreinfo = 0; int pqueryinfo = 0; uint64_t pqueryinfo_vec_size = 0; vm_page_info_basic_t info = NULL; mach_msg_type_number_t count = 0; char *kernel_vec = NULL; uint64_t req_vec_size_pages = 0, cur_vec_size_pages = 0, vecindex = 0; kern_return_t kr = KERN_SUCCESS; int effective_page_shift, effective_page_size; map = current_map(); /* * Make sure that the addresses presented are valid for user * mode. */ kr = mincore_sanitize(map, uap->addr, uap->len, &addr, &end, &size); if (__improbable(kr != KERN_SUCCESS)) { return vm_sanitize_get_kr(kr) ? EINVAL : 0; } /* * On systems with 4k kernel space and 16k user space, we will * use the kernel page size to report back the residency information. * This is for backwards compatibility since we already have * processes that depend on this behavior. */ if (vm_map_page_shift(map) < PAGE_SHIFT) { effective_page_shift = vm_map_page_shift(map); effective_page_size = vm_map_page_size(map); } else { effective_page_shift = PAGE_SHIFT; effective_page_size = PAGE_SIZE; } /* * We are going to loop through the whole 'req_vec_size' pages * range in chunks of 'cur_vec_size'. */ req_vec_size_pages = size >> effective_page_shift; cur_vec_size_pages = MIN(req_vec_size_pages, (MAX_PAGE_RANGE_QUERY >> effective_page_shift)); size_t kernel_vec_size = cur_vec_size_pages; kernel_vec = (char *)kalloc_data(kernel_vec_size, Z_WAITOK | Z_ZERO); if (kernel_vec == NULL) { return ENOMEM; } /* * Address of byte vector */ vec = uap->vec; pqueryinfo_vec_size = cur_vec_size_pages * sizeof(struct vm_page_info_basic); info = (struct vm_page_info_basic *)kalloc_data(pqueryinfo_vec_size, Z_WAITOK); if (info == NULL) { kfree_data(kernel_vec, kernel_vec_size); return ENOMEM; } while (addr < end) { mach_vm_offset_t first_addr = addr; cur_end = addr + (cur_vec_size_pages * effective_page_size); count = VM_PAGE_INFO_BASIC_COUNT; kr = vm_map_page_range_info_internal(map, addr, cur_end, effective_page_shift, VM_PAGE_INFO_BASIC, (vm_page_info_t) info, &count); assert(kr == KERN_SUCCESS); /* * Do this on a map entry basis so that if the pages are not * in the current processes address space, we can easily look * up the pages elsewhere. */ lastvecindex = -1; for (; addr < cur_end; addr += effective_page_size) { pqueryinfo = info[lastvecindex + 1].disposition; mincoreinfo = 0; if (pqueryinfo & VM_PAGE_QUERY_PAGE_PRESENT) { mincoreinfo |= MINCORE_INCORE; } if (pqueryinfo & VM_PAGE_QUERY_PAGE_REF) { mincoreinfo |= MINCORE_REFERENCED; } if (pqueryinfo & VM_PAGE_QUERY_PAGE_DIRTY) { mincoreinfo |= MINCORE_MODIFIED; } if (pqueryinfo & VM_PAGE_QUERY_PAGE_PAGED_OUT) { mincoreinfo |= MINCORE_PAGED_OUT; } if (pqueryinfo & VM_PAGE_QUERY_PAGE_COPIED) { mincoreinfo |= MINCORE_COPIED; } if ((pqueryinfo & VM_PAGE_QUERY_PAGE_EXTERNAL) == 0) { mincoreinfo |= MINCORE_ANONYMOUS; } /* * calculate index into user supplied byte vector */ vecindex = (addr - first_addr) >> effective_page_shift; kernel_vec[vecindex] = (char)mincoreinfo; lastvecindex = vecindex; } assert(vecindex == (cur_vec_size_pages - 1)); error = copyout(kernel_vec, vec, cur_vec_size_pages * sizeof(char) /* a char per page */); if (error) { break; } /* * For the next chunk, we'll need: * - bump the location in the user buffer for our next disposition. * - new length * - starting address */ vec += cur_vec_size_pages * sizeof(char); req_vec_size_pages = (end - addr) >> effective_page_shift; cur_vec_size_pages = MIN(req_vec_size_pages, (MAX_PAGE_RANGE_QUERY >> effective_page_shift)); first_addr = addr; } kfree_data(info, pqueryinfo_vec_size); kfree_data(kernel_vec, kernel_vec_size); if (error) { return EFAULT; } return 0; } int mlock(__unused proc_t p, struct mlock_args *uap, __unused int32_t *retvalval) { kern_return_t result; AUDIT_ARG(addr, VM_SANITIZE_UNSAFE_UNWRAP(uap->addr)); AUDIT_ARG(len, VM_SANITIZE_UNSAFE_UNWRAP(uap->len)); /* have to call vm_map_wire directly to pass "I don't know" protections */ result = vm_map_wire_kernel(current_map(), uap->addr, vm_sanitize_compute_ut_end(uap->addr, uap->len), vm_sanitize_wrap_prot(VM_PROT_NONE), VM_KERN_MEMORY_MLOCK, TRUE); switch (result) { case KERN_SUCCESS: return 0; case KERN_INVALID_ARGUMENT: return EINVAL; case KERN_RESOURCE_SHORTAGE: return EAGAIN; case KERN_PROTECTION_FAILURE: return EPERM; default: return ENOMEM; } } int munlock(__unused proc_t p, struct munlock_args *uap, __unused int32_t *retval) { kern_return_t result; AUDIT_ARG(addr, VM_SANITIZE_UNSAFE_UNWRAP(uap->addr)); AUDIT_ARG(len, VM_SANITIZE_UNSAFE_UNWRAP(uap->len)); /* JMM - need to remove all wirings by spec - this just removes one */ result = vm_map_unwire(current_map(), uap->addr, vm_sanitize_compute_ut_end(uap->addr, uap->len), TRUE); switch (result) { case KERN_SUCCESS: return 0; case KERN_INVALID_ARGUMENT: return EINVAL; default: return ENOMEM; } } int mlockall(__unused proc_t p, __unused struct mlockall_args *uap, __unused int32_t *retval) { return ENOSYS; } int munlockall(__unused proc_t p, __unused struct munlockall_args *uap, __unused int32_t *retval) { return ENOSYS; } #if CONFIG_CODE_DECRYPTION static __attribute__((always_inline, warn_unused_result)) kern_return_t mremap_encrypted_sanitize( vm_map_t user_map, vm_addr_struct_t addr_u, vm_size_struct_t len_u, mach_vm_offset_t *user_addr, mach_vm_offset_t *user_end, mach_vm_size_t *user_size) { return vm_sanitize_addr_size(addr_u, len_u, VM_SANITIZE_CALLER_MREMAP_ENCRYPTED, user_map, VM_SANITIZE_FLAGS_CHECK_ALIGNED_START | VM_SANITIZE_FLAGS_SIZE_ZERO_FALLTHROUGH, user_addr, user_end, user_size); } int mremap_encrypted(__unused struct proc *p, struct mremap_encrypted_args *uap, __unused int32_t *retval) { mach_vm_offset_t user_addr, user_end; mach_vm_size_t user_size; kern_return_t result; vm_map_t user_map; uint32_t cryptid; cpu_type_t cputype; cpu_subtype_t cpusubtype; pager_crypt_info_t crypt_info; const char * cryptname = 0; char *vpath; int len, ret; struct proc_regioninfo_internal pinfo; vnode_t vp; uintptr_t vnodeaddr; uint32_t vid; AUDIT_ARG(addr, VM_SANITIZE_UNSAFE_UNWRAP(uap->addr)); AUDIT_ARG(len, VM_SANITIZE_UNSAFE_UNWRAP(uap->len)); user_map = current_map(); cryptid = uap->cryptid; cputype = uap->cputype; cpusubtype = uap->cpusubtype; /* * Sanitize any input parameters that are addr/size/protections */ result = mremap_encrypted_sanitize(user_map, uap->addr, uap->len, &user_addr, &user_end, &user_size); if (__improbable(result != KERN_SUCCESS)) { assert(vm_sanitize_get_kr(result)); return EINVAL; } switch (cryptid) { case CRYPTID_NO_ENCRYPTION: /* not encrypted, just an empty load command */ return 0; case CRYPTID_APP_ENCRYPTION: case CRYPTID_MODEL_ENCRYPTION: cryptname = "com.apple.unfree"; break; case 0x10: /* some random cryptid that you could manually put into * your binary if you want NULL */ cryptname = "com.apple.null"; break; default: return EINVAL; } if (NULL == text_crypter_create) { return ENOTSUP; } ret = fill_procregioninfo_onlymappedvnodes( proc_task(p), user_addr, &pinfo, &vnodeaddr, &vid); if (ret == 0 || !vnodeaddr) { /* No really, this returns 0 if the memory address is not backed by a file */ return EINVAL; } vp = (vnode_t)vnodeaddr; if ((vnode_getwithvid(vp, vid)) == 0) { vpath = zalloc(ZV_NAMEI); len = MAXPATHLEN; ret = vn_getpath(vp, vpath, &len); if (ret) { zfree(ZV_NAMEI, vpath); vnode_put(vp); return ret; } vnode_put(vp); } else { return EINVAL; } #if 0 kprintf("%s vpath %s cryptid 0x%08x cputype 0x%08x cpusubtype 0x%08x range 0x%016llx size 0x%016llx\n", __FUNCTION__, vpath, cryptid, cputype, cpusubtype, (uint64_t)user_addr, (uint64_t)user_size); #endif if (user_size == 0) { printf("%s:%d '%s': user_addr 0x%llx user_size 0x%llx cryptid 0x%x ignored\n", __FUNCTION__, __LINE__, vpath, user_addr, user_size, cryptid); zfree(ZV_NAMEI, vpath); return 0; } /* set up decrypter first */ crypt_file_data_t crypt_data = { .filename = vpath, .cputype = cputype, .cpusubtype = cpusubtype, .origin = CRYPT_ORIGIN_LIBRARY_LOAD, }; result = text_crypter_create(&crypt_info, cryptname, (void*)&crypt_data); #if VM_MAP_DEBUG_APPLE_PROTECT if (vm_map_debug_apple_protect) { printf("APPLE_PROTECT: %d[%s] map %p [0x%llx:0x%llx] %s(%s) -> 0x%x\n", proc_getpid(p), p->p_comm, user_map, (uint64_t) user_addr, (uint64_t) (user_addr + user_size), __FUNCTION__, vpath, result); } #endif /* VM_MAP_DEBUG_APPLE_PROTECT */ zfree(ZV_NAMEI, vpath); if (result) { printf("%s: unable to create decrypter %s, kr=%d\n", __FUNCTION__, cryptname, result); if (result == kIOReturnNotPrivileged) { /* text encryption returned decryption failure */ return EPERM; } else { return ENOMEM; } } /* now remap using the decrypter */ vm_object_offset_t crypto_backing_offset; crypto_backing_offset = -1; /* i.e. use map entry's offset */ result = vm_map_apple_protected(user_map, user_addr, user_addr + user_size, crypto_backing_offset, &crypt_info, cryptid); if (result) { printf("%s: mapping failed with %d\n", __FUNCTION__, result); } if (result) { return EPERM; } return 0; } #endif /* CONFIG_CODE_DECRYPTION */ |