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 | /* * Copyright (c) 1998-2006 Apple Computer, 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@ */ /* * HISTORY * * 17-Apr-91 Portions from libIO.m, Doug Mitchell at NeXT. * 17-Nov-98 cpp * */ #include <IOKit/system.h> #include <mach/sync_policy.h> #include <machine/machine_routines.h> #include <vm/vm_kern.h> #include <libkern/c++/OSCPPDebug.h> #include <IOKit/assert.h> #include <IOKit/IOReturn.h> #include <IOKit/IOLib.h> #include <IOKit/IOLocks.h> #include <IOKit/IOMapper.h> #include <IOKit/IOBufferMemoryDescriptor.h> #include <IOKit/IOKitDebug.h> #include "IOKitKernelInternal.h" #ifdef IOALLOCDEBUG #include <libkern/OSDebug.h> #include <sys/sysctl.h> #endif #include "libkern/OSAtomic.h" #include <libkern/c++/OSKext.h> #include <IOKit/IOStatisticsPrivate.h> #include <os/log_private.h> #include <sys/msgbuf.h> #include <console/serial_protos.h> #if IOKITSTATS #define IOStatisticsAlloc(type, size) \ do { \ IOStatistics::countAlloc(type, size); \ } while (0) #else #define IOStatisticsAlloc(type, size) #endif /* IOKITSTATS */ #define TRACK_ALLOC (IOTRACKING && (kIOTracking & gIOKitDebug)) extern "C" { mach_timespec_t IOZeroTvalspec = { 0, 0 }; extern ppnum_t pmap_find_phys(pmap_t pmap, addr64_t va); extern int __doprnt( const char *fmt, va_list argp, void (*putc)(int, void *), void *arg, int radix, int is_log); extern bool bsd_log_lock(bool); extern void bsd_log_unlock(void); /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ lck_grp_t *IOLockGroup; /* * Global variables for use by iLogger * These symbols are for use only by Apple diagnostic code. * Binary compatibility is not guaranteed for kexts that reference these symbols. */ void *_giDebugLogInternal = NULL; void *_giDebugLogDataInternal = NULL; void *_giDebugReserved1 = NULL; void *_giDebugReserved2 = NULL; #if defined(__x86_64__) iopa_t gIOBMDPageAllocator; #endif /* defined(__x86_64__) */ /* * Static variables for this module. */ static queue_head_t gIOMallocContiguousEntries; static lck_mtx_t * gIOMallocContiguousEntriesLock; #if __x86_64__ enum { kIOMaxPageableMaps = 8 }; enum { kIOMaxFixedRanges = 4 }; enum { kIOPageableMapSize = 512 * 1024 * 1024 }; enum { kIOPageableMaxMapSize = 512 * 1024 * 1024 }; #else enum { kIOMaxPageableMaps = 16 }; enum { kIOMaxFixedRanges = 4 }; enum { kIOPageableMapSize = 96 * 1024 * 1024 }; enum { kIOPageableMaxMapSize = 96 * 1024 * 1024 }; #endif typedef struct { vm_map_t map; vm_offset_t address; vm_offset_t end; } IOMapData; static SECURITY_READ_ONLY_LATE(struct mach_vm_range) gIOKitPageableFixedRanges[kIOMaxFixedRanges]; static struct { UInt32 count; UInt32 hint; IOMapData maps[kIOMaxPageableMaps]; lck_mtx_t * lock; } gIOKitPageableSpace; #if defined(__x86_64__) static iopa_t gIOPageablePageAllocator; uint32_t gIOPageAllocChunkBytes; #endif /* defined(__x86_64__) */ #if IOTRACKING IOTrackingQueue * gIOMallocTracking; IOTrackingQueue * gIOWireTracking; IOTrackingQueue * gIOMapTracking; #endif /* IOTRACKING */ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ KMEM_RANGE_REGISTER_STATIC(gIOKitPageableFixed0, &gIOKitPageableFixedRanges[0], kIOPageableMapSize); KMEM_RANGE_REGISTER_STATIC(gIOKitPageableFixed1, &gIOKitPageableFixedRanges[1], kIOPageableMapSize); KMEM_RANGE_REGISTER_STATIC(gIOKitPageableFixed2, &gIOKitPageableFixedRanges[2], kIOPageableMapSize); KMEM_RANGE_REGISTER_STATIC(gIOKitPageableFixed3, &gIOKitPageableFixedRanges[3], kIOPageableMapSize); void IOLibInit(void) { static bool libInitialized; if (libInitialized) { return; } IOLockGroup = lck_grp_alloc_init("IOKit", LCK_GRP_ATTR_NULL); #if IOTRACKING IOTrackingInit(); gIOMallocTracking = IOTrackingQueueAlloc(kIOMallocTrackingName, 0, 0, 0, kIOTrackingQueueTypeAlloc, 37); gIOWireTracking = IOTrackingQueueAlloc(kIOWireTrackingName, 0, 0, page_size, 0, 0); size_t mapCaptureSize = (kIOTracking & gIOKitDebug) ? page_size : (1024 * 1024); gIOMapTracking = IOTrackingQueueAlloc(kIOMapTrackingName, 0, 0, mapCaptureSize, kIOTrackingQueueTypeDefaultOn | kIOTrackingQueueTypeMap | kIOTrackingQueueTypeUser, 0); #endif gIOKitPageableSpace.maps[0].map = kmem_suballoc(kernel_map, &gIOKitPageableFixedRanges[0].min_address, kIOPageableMapSize, VM_MAP_CREATE_PAGEABLE, VM_FLAGS_FIXED | VM_FLAGS_OVERWRITE, (kms_flags_t)(KMS_PERMANENT | KMS_DATA | KMS_NOFAIL), VM_KERN_MEMORY_IOKIT).kmr_submap; gIOKitPageableSpace.maps[0].address = gIOKitPageableFixedRanges[0].min_address; gIOKitPageableSpace.maps[0].end = gIOKitPageableFixedRanges[0].max_address; gIOKitPageableSpace.lock = lck_mtx_alloc_init(IOLockGroup, LCK_ATTR_NULL); gIOKitPageableSpace.hint = 0; gIOKitPageableSpace.count = 1; gIOMallocContiguousEntriesLock = lck_mtx_alloc_init(IOLockGroup, LCK_ATTR_NULL); queue_init( &gIOMallocContiguousEntries ); #if defined(__x86_64__) gIOPageAllocChunkBytes = PAGE_SIZE / 64; assert(sizeof(iopa_page_t) <= gIOPageAllocChunkBytes); iopa_init(&gIOBMDPageAllocator); iopa_init(&gIOPageablePageAllocator); #endif /* defined(__x86_64__) */ libInitialized = true; } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ vm_size_t log2up(vm_size_t size) { if (size <= 1) { size = 0; } else { #if __LP64__ size = 64 - __builtin_clzl(size - 1); #else size = 32 - __builtin_clzl(size - 1); #endif } return size; } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ IOThread IOCreateThread(IOThreadFunc fcn, void *arg) { kern_return_t result; thread_t thread; result = kernel_thread_start((thread_continue_t)(void (*)(void))fcn, arg, &thread); if (result != KERN_SUCCESS) { return NULL; } thread_deallocate(thread); return thread; } void IOExitThread(void) { (void) thread_terminate(current_thread()); } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #if IOTRACKING struct IOLibMallocHeader { IOTrackingAddress tracking; }; #endif #if IOTRACKING #define sizeofIOLibMallocHeader (sizeof(IOLibMallocHeader) - (TRACK_ALLOC ? 0 : sizeof(IOTrackingAddress))) #else #define sizeofIOLibMallocHeader (0) #endif /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ __typed_allocators_ignore_push // allocator implementation void * (IOMalloc_internal)(struct kalloc_heap *kheap, vm_size_t size, zalloc_flags_t flags) { void * address; vm_size_t allocSize; allocSize = size + sizeofIOLibMallocHeader; #if IOTRACKING if (sizeofIOLibMallocHeader && (allocSize <= size)) { return NULL; // overflow } #endif address = kheap_alloc(kheap, allocSize, Z_VM_TAG(Z_WAITOK | flags, VM_KERN_MEMORY_IOKIT)); if (address) { #if IOTRACKING if (TRACK_ALLOC) { IOLibMallocHeader * hdr; hdr = (typeof(hdr))address; bzero(&hdr->tracking, sizeof(hdr->tracking)); hdr->tracking.address = ~(((uintptr_t) address) + sizeofIOLibMallocHeader); hdr->tracking.size = size; IOTrackingAdd(gIOMallocTracking, &hdr->tracking.tracking, size, true, VM_KERN_MEMORY_NONE); } #endif address = (typeof(address))(((uintptr_t) address) + sizeofIOLibMallocHeader); #if IOALLOCDEBUG OSAddAtomicLong(size, &debug_iomalloc_size); #endif IOStatisticsAlloc(kIOStatisticsMalloc, size); } return address; } void IOFree_internal(struct kalloc_heap *kheap, void * inAddress, vm_size_t size) { void * address; if ((address = inAddress)) { address = (typeof(address))(((uintptr_t) address) - sizeofIOLibMallocHeader); #if IOTRACKING if (TRACK_ALLOC) { IOLibMallocHeader * hdr; struct ptr_reference { void * ptr; }; volatile struct ptr_reference ptr; // we're about to block in IOTrackingRemove(), make sure the original pointer // exists in memory or a register for leak scanning to find ptr.ptr = inAddress; hdr = (typeof(hdr))address; if (size != hdr->tracking.size) { OSReportWithBacktrace("bad IOFree size 0x%zx should be 0x%zx", (size_t)size, (size_t)hdr->tracking.size); size = hdr->tracking.size; } IOTrackingRemoveAddress(gIOMallocTracking, &hdr->tracking, size); ptr.ptr = NULL; } #endif kheap_free(kheap, address, size + sizeofIOLibMallocHeader); #if IOALLOCDEBUG OSAddAtomicLong(-size, &debug_iomalloc_size); #endif IOStatisticsAlloc(kIOStatisticsFree, size); } } void * IOMalloc_external( vm_size_t size); void * IOMalloc_external( vm_size_t size) { return IOMalloc_internal(KHEAP_DEFAULT, size, Z_VM_TAG_BT_BIT); } void IOFree(void * inAddress, vm_size_t size) { IOFree_internal(KHEAP_ANY, inAddress, size); } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ void * IOMallocZero_external( vm_size_t size); void * IOMallocZero_external( vm_size_t size) { return IOMalloc_internal(KHEAP_DEFAULT, size, Z_ZERO_VM_TAG_BT_BIT); } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ vm_tag_t IOMemoryTag(vm_map_t map) { vm_tag_t tag; if (!vm_kernel_map_is_kernel(map)) { return VM_MEMORY_IOKIT; } tag = vm_tag_bt(); if (tag == VM_KERN_MEMORY_NONE) { tag = VM_KERN_MEMORY_IOKIT; } return tag; } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ struct IOLibPageMallocHeader { mach_vm_size_t alignMask; mach_vm_offset_t allocationOffset; #if IOTRACKING IOTrackingAddress tracking; #endif }; #if IOTRACKING #define sizeofIOLibPageMallocHeader (sizeof(IOLibPageMallocHeader) - (TRACK_ALLOC ? 0 : sizeof(IOTrackingAddress))) #else #define sizeofIOLibPageMallocHeader (sizeof(IOLibPageMallocHeader)) #endif /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ static __header_always_inline void IOMallocAlignedSetHdr( IOLibPageMallocHeader *hdr, mach_vm_size_t alignMask, mach_vm_address_t allocationStart, mach_vm_address_t alignedStart) { mach_vm_offset_t offset = alignedStart - allocationStart; #if __has_feature(ptrauth_calls) offset = (mach_vm_offset_t) ptrauth_sign_unauthenticated((void *)offset, ptrauth_key_process_independent_data, ptrauth_blend_discriminator((void *)(alignedStart | alignMask), OS_PTRAUTH_DISCRIMINATOR("IOLibPageMallocHeader.allocationOffset"))); #endif /* __has_feature(ptrauth_calls) */ hdr->allocationOffset = offset; hdr->alignMask = alignMask; } __abortlike static void IOMallocAlignedHdrCorruptionPanic( mach_vm_offset_t offset, mach_vm_size_t alignMask, mach_vm_address_t alignedStart, vm_size_t size) { mach_vm_address_t address = 0; mach_vm_address_t recalAlignedStart = 0; if (os_sub_overflow(alignedStart, offset, &address)) { panic("Invalid offset %p for aligned addr %p", (void *)offset, (void *)alignedStart); } if (os_add3_overflow(address, sizeofIOLibPageMallocHeader, alignMask, &recalAlignedStart)) { panic("alignMask 0x%llx overflows recalAlignedStart %p for provided addr " "%p", alignMask, (void *)recalAlignedStart, (void *)alignedStart); } if (((recalAlignedStart &= ~alignMask) != alignedStart) && (round_page(recalAlignedStart) != alignedStart)) { panic("Recalculated aligned addr %p doesn't match provided addr %p", (void *)recalAlignedStart, (void *)alignedStart); } if (offset < sizeofIOLibPageMallocHeader) { panic("Offset %zd doesn't accomodate IOLibPageMallocHeader for aligned " "addr %p", (size_t)offset, (void *)alignedStart); } panic("alignMask 0x%llx overflows adjusted size %zd for aligned addr %p", alignMask, (size_t)size, (void *)alignedStart); } static __header_always_inline mach_vm_address_t IOMallocAlignedGetAddress( IOLibPageMallocHeader *hdr, mach_vm_address_t alignedStart, vm_size_t *size) { mach_vm_address_t address = 0; mach_vm_address_t recalAlignedStart = 0; mach_vm_offset_t offset = hdr->allocationOffset; mach_vm_size_t alignMask = hdr->alignMask; #if __has_feature(ptrauth_calls) offset = (mach_vm_offset_t) ptrauth_auth_data((void *)offset, ptrauth_key_process_independent_data, ptrauth_blend_discriminator((void *)(alignedStart | alignMask), OS_PTRAUTH_DISCRIMINATOR("IOLibPageMallocHeader.allocationOffset"))); #endif /* __has_feature(ptrauth_calls) */ if (os_sub_overflow(alignedStart, offset, &address) || os_add3_overflow(address, sizeofIOLibPageMallocHeader, alignMask, &recalAlignedStart) || (((recalAlignedStart &= ~alignMask) != alignedStart) && (round_page(recalAlignedStart) != alignedStart)) || (offset < sizeofIOLibPageMallocHeader) || os_add_overflow(*size, alignMask, size)) { IOMallocAlignedHdrCorruptionPanic(offset, alignMask, alignedStart, *size); } return address; } void * (IOMallocAligned_internal)(struct kalloc_heap *kheap, vm_size_t size, vm_size_t alignment, zalloc_flags_t flags) { kern_return_t kr; vm_offset_t address; vm_offset_t allocationAddress; vm_size_t adjustedSize; uintptr_t alignMask; IOLibPageMallocHeader * hdr; kma_flags_t kma_flags = KMA_NONE; if (size == 0) { return NULL; } if (((uint32_t) alignment) != alignment) { return NULL; } if (flags & Z_ZERO) { kma_flags = KMA_ZERO; } if (kheap == KHEAP_DATA_BUFFERS) { kma_flags = (kma_flags_t) (kma_flags | KMA_DATA); } alignment = (1UL << log2up((uint32_t) alignment)); alignMask = alignment - 1; adjustedSize = size + sizeofIOLibPageMallocHeader; if (size > adjustedSize) { address = 0; /* overflow detected */ } else if (adjustedSize >= page_size) { kr = kernel_memory_allocate(kernel_map, &address, size, alignMask, kma_flags, IOMemoryTag(kernel_map)); if (KERN_SUCCESS != kr) { address = 0; } #if IOTRACKING else if (TRACK_ALLOC) { IOTrackingAlloc(gIOMallocTracking, address, size); } #endif } else { adjustedSize += alignMask; if (adjustedSize >= page_size) { kr = kmem_alloc(kernel_map, &allocationAddress, adjustedSize, kma_flags, IOMemoryTag(kernel_map)); if (KERN_SUCCESS != kr) { allocationAddress = 0; } } else { allocationAddress = (vm_address_t) kheap_alloc(kheap, adjustedSize, Z_VM_TAG(Z_WAITOK | flags, VM_KERN_MEMORY_IOKIT)); } if (allocationAddress) { address = (allocationAddress + alignMask + sizeofIOLibPageMallocHeader) & (~alignMask); hdr = (typeof(hdr))(address - sizeofIOLibPageMallocHeader); IOMallocAlignedSetHdr(hdr, alignMask, allocationAddress, address); #if IOTRACKING if (TRACK_ALLOC) { bzero(&hdr->tracking, sizeof(hdr->tracking)); hdr->tracking.address = ~address; hdr->tracking.size = size; IOTrackingAdd(gIOMallocTracking, &hdr->tracking.tracking, size, true, VM_KERN_MEMORY_NONE); } #endif } else { address = 0; } } assert(0 == (address & alignMask)); if (address) { #if IOALLOCDEBUG OSAddAtomicLong(size, &debug_iomalloc_size); #endif IOStatisticsAlloc(kIOStatisticsMallocAligned, size); } return (void *) address; } void IOFreeAligned_internal(kalloc_heap_t kheap, void * address, vm_size_t size) { vm_address_t allocationAddress; vm_size_t adjustedSize; IOLibPageMallocHeader * hdr; if (!address) { return; } assert(size); adjustedSize = size + sizeofIOLibPageMallocHeader; if (adjustedSize >= page_size) { #if IOTRACKING if (TRACK_ALLOC) { IOTrackingFree(gIOMallocTracking, (uintptr_t) address, size); } #endif kmem_free(kernel_map, (vm_offset_t) address, size); } else { hdr = (typeof(hdr))(((uintptr_t)address) - sizeofIOLibPageMallocHeader); allocationAddress = IOMallocAlignedGetAddress(hdr, (mach_vm_address_t)address, &adjustedSize); #if IOTRACKING if (TRACK_ALLOC) { if (size != hdr->tracking.size) { OSReportWithBacktrace("bad IOFreeAligned size 0x%zx should be 0x%zx", (size_t)size, (size_t)hdr->tracking.size); size = hdr->tracking.size; } IOTrackingRemoveAddress(gIOMallocTracking, &hdr->tracking, size); } #endif if (adjustedSize >= page_size) { kmem_free(kernel_map, allocationAddress, adjustedSize); } else { kheap_free(kheap, allocationAddress, adjustedSize); } } #if IOALLOCDEBUG OSAddAtomicLong(-size, &debug_iomalloc_size); #endif IOStatisticsAlloc(kIOStatisticsFreeAligned, size); } void * IOMallocAligned_external( vm_size_t size, vm_size_t alignment); void * IOMallocAligned_external( vm_size_t size, vm_size_t alignment) { return IOMallocAligned_internal(KHEAP_DATA_BUFFERS, size, alignment, Z_VM_TAG_BT_BIT); } void IOFreeAligned( void * address, vm_size_t size) { IOFreeAligned_internal(KHEAP_DATA_BUFFERS, address, size); } __typed_allocators_ignore_pop /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ void IOKernelFreePhysical( kalloc_heap_t kheap, mach_vm_address_t address, mach_vm_size_t size) { vm_address_t allocationAddress; vm_size_t adjustedSize; IOLibPageMallocHeader * hdr; if (!address) { return; } assert(size); adjustedSize = (2 * size) + sizeofIOLibPageMallocHeader; if (adjustedSize >= page_size) { #if IOTRACKING if (TRACK_ALLOC) { IOTrackingFree(gIOMallocTracking, address, size); } #endif kmem_free(kernel_map, (vm_offset_t) address, size); } else { hdr = (typeof(hdr))(((uintptr_t)address) - sizeofIOLibPageMallocHeader); allocationAddress = IOMallocAlignedGetAddress(hdr, address, &adjustedSize); #if IOTRACKING if (TRACK_ALLOC) { IOTrackingRemoveAddress(gIOMallocTracking, &hdr->tracking, size); } #endif __typed_allocators_ignore(kheap_free(kheap, allocationAddress, adjustedSize)); } IOStatisticsAlloc(kIOStatisticsFreeContiguous, size); #if IOALLOCDEBUG OSAddAtomicLong(-size, &debug_iomalloc_size); #endif } #if __arm64__ extern unsigned long gPhysBase, gPhysSize; #endif mach_vm_address_t IOKernelAllocateWithPhysicalRestrict( kalloc_heap_t kheap, mach_vm_size_t size, mach_vm_address_t maxPhys, mach_vm_size_t alignment, bool contiguous) { kern_return_t kr; mach_vm_address_t address; mach_vm_address_t allocationAddress; mach_vm_size_t adjustedSize; mach_vm_address_t alignMask; IOLibPageMallocHeader * hdr; if (size == 0) { return 0; } if (alignment == 0) { alignment = 1; } alignMask = alignment - 1; if (os_mul_and_add_overflow(2, size, sizeofIOLibPageMallocHeader, &adjustedSize)) { return 0; } contiguous = (contiguous && (adjustedSize > page_size)) || (alignment > page_size); if (contiguous || maxPhys) { kma_flags_t options = KMA_ZERO; vm_offset_t virt; if (kheap == KHEAP_DATA_BUFFERS) { options = (kma_flags_t) (options | KMA_DATA); } adjustedSize = size; contiguous = (contiguous && (adjustedSize > page_size)) || (alignment > page_size); if (!contiguous) { #if __arm64__ if (maxPhys >= (mach_vm_address_t)(gPhysBase + gPhysSize)) { maxPhys = 0; } else #endif if (maxPhys <= 0xFFFFFFFF) { maxPhys = 0; options = (kma_flags_t)(options | KMA_LOMEM); } else if (gIOLastPage && (atop_64(maxPhys) > gIOLastPage)) { maxPhys = 0; } } if (contiguous || maxPhys) { kr = kmem_alloc_contig(kernel_map, &virt, size, alignMask, (ppnum_t) atop(maxPhys), (ppnum_t) atop(alignMask), options, IOMemoryTag(kernel_map)); } else { kr = kernel_memory_allocate(kernel_map, &virt, size, alignMask, options, IOMemoryTag(kernel_map)); } if (KERN_SUCCESS == kr) { address = virt; #if IOTRACKING if (TRACK_ALLOC) { IOTrackingAlloc(gIOMallocTracking, address, size); } #endif } else { address = 0; } } else { adjustedSize += alignMask; if (adjustedSize < size) { return 0; } /* BEGIN IGNORE CODESTYLE */ __typed_allocators_ignore_push // allocator implementation allocationAddress = (mach_vm_address_t) kheap_alloc(kheap, adjustedSize, Z_VM_TAG_BT(Z_WAITOK, VM_KERN_MEMORY_IOKIT)); __typed_allocators_ignore_pop /* END IGNORE CODESTYLE */ if (allocationAddress) { address = (allocationAddress + alignMask + sizeofIOLibPageMallocHeader) & (~alignMask); if (atop_32(address) != atop_32(address + size - 1)) { address = round_page(address); } hdr = (typeof(hdr))(address - sizeofIOLibPageMallocHeader); IOMallocAlignedSetHdr(hdr, alignMask, allocationAddress, address); #if IOTRACKING if (TRACK_ALLOC) { bzero(&hdr->tracking, sizeof(hdr->tracking)); hdr->tracking.address = ~address; hdr->tracking.size = size; IOTrackingAdd(gIOMallocTracking, &hdr->tracking.tracking, size, true, VM_KERN_MEMORY_NONE); } #endif } else { address = 0; } } if (address) { IOStatisticsAlloc(kIOStatisticsMallocContiguous, size); #if IOALLOCDEBUG OSAddAtomicLong(size, &debug_iomalloc_size); #endif } return address; } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ struct _IOMallocContiguousEntry { mach_vm_address_t virtualAddr; IOBufferMemoryDescriptor * md; queue_chain_t link; }; typedef struct _IOMallocContiguousEntry _IOMallocContiguousEntry; void * IOMallocContiguous(vm_size_t size, vm_size_t alignment, IOPhysicalAddress * physicalAddress) { mach_vm_address_t address = 0; if (size == 0) { return NULL; } if (alignment == 0) { alignment = 1; } /* Do we want a physical address? */ if (!physicalAddress) { address = IOKernelAllocateWithPhysicalRestrict(KHEAP_DEFAULT, size, 0 /*maxPhys*/, alignment, true); } else { do { IOBufferMemoryDescriptor * bmd; mach_vm_address_t physicalMask; vm_offset_t alignMask; alignMask = alignment - 1; physicalMask = (0xFFFFFFFF ^ alignMask); bmd = IOBufferMemoryDescriptor::inTaskWithPhysicalMask( kernel_task, kIOMemoryPhysicallyContiguous, size, physicalMask); if (!bmd) { break; } _IOMallocContiguousEntry * entry = IOMallocType(_IOMallocContiguousEntry); if (!entry) { bmd->release(); break; } entry->virtualAddr = (mach_vm_address_t) bmd->getBytesNoCopy(); entry->md = bmd; lck_mtx_lock(gIOMallocContiguousEntriesLock); queue_enter( &gIOMallocContiguousEntries, entry, _IOMallocContiguousEntry *, link ); lck_mtx_unlock(gIOMallocContiguousEntriesLock); address = (mach_vm_address_t) entry->virtualAddr; *physicalAddress = bmd->getPhysicalAddress(); }while (false); } return (void *) address; } void IOFreeContiguous(void * _address, vm_size_t size) { _IOMallocContiguousEntry * entry; IOMemoryDescriptor * md = NULL; mach_vm_address_t address = (mach_vm_address_t) _address; if (!address) { return; } assert(size); lck_mtx_lock(gIOMallocContiguousEntriesLock); queue_iterate( &gIOMallocContiguousEntries, entry, _IOMallocContiguousEntry *, link ) { if (entry->virtualAddr == address) { md = entry->md; queue_remove( &gIOMallocContiguousEntries, entry, _IOMallocContiguousEntry *, link ); break; } } lck_mtx_unlock(gIOMallocContiguousEntriesLock); if (md) { md->release(); IOFreeType(entry, _IOMallocContiguousEntry); } else { IOKernelFreePhysical(KHEAP_DEFAULT, (mach_vm_address_t) address, size); } } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ kern_return_t IOIteratePageableMaps(vm_size_t size, IOIteratePageableMapsCallback callback, void * ref) { kern_return_t kr = kIOReturnNotReady; kmem_return_t kmr; vm_size_t segSize; UInt32 attempts; UInt32 index; mach_vm_offset_t min; int flags; if (size > kIOPageableMaxMapSize) { return kIOReturnBadArgument; } do { index = gIOKitPageableSpace.hint; attempts = gIOKitPageableSpace.count; while (attempts--) { kr = (*callback)(gIOKitPageableSpace.maps[index].map, ref); if (KERN_SUCCESS == kr) { gIOKitPageableSpace.hint = index; break; } if (index) { index--; } else { index = gIOKitPageableSpace.count - 1; } } if (KERN_NO_SPACE != kr) { break; } lck_mtx_lock( gIOKitPageableSpace.lock ); index = gIOKitPageableSpace.count; if (index >= (kIOMaxPageableMaps - 1)) { lck_mtx_unlock( gIOKitPageableSpace.lock ); break; } if (size < kIOPageableMapSize) { segSize = kIOPageableMapSize; } else { segSize = size; } /* * Use the predefine ranges if available, else default to data */ if (index < kIOMaxFixedRanges) { min = gIOKitPageableFixedRanges[index].min_address; flags = VM_FLAGS_FIXED | VM_FLAGS_OVERWRITE; } else { min = 0; flags = VM_FLAGS_ANYWHERE; } kmr = kmem_suballoc(kernel_map, &min, segSize, VM_MAP_CREATE_PAGEABLE, flags, (kms_flags_t)(KMS_PERMANENT | KMS_DATA), VM_KERN_MEMORY_IOKIT); if (kmr.kmr_return != KERN_SUCCESS) { kr = kmr.kmr_return; lck_mtx_unlock( gIOKitPageableSpace.lock ); break; } gIOKitPageableSpace.maps[index].map = kmr.kmr_submap; gIOKitPageableSpace.maps[index].address = min; gIOKitPageableSpace.maps[index].end = min + segSize; gIOKitPageableSpace.hint = index; gIOKitPageableSpace.count = index + 1; lck_mtx_unlock( gIOKitPageableSpace.lock ); } while (true); return kr; } struct IOMallocPageableRef { vm_offset_t address; vm_size_t size; vm_tag_t tag; }; static kern_return_t IOMallocPageableCallback(vm_map_t map, void * _ref) { struct IOMallocPageableRef * ref = (struct IOMallocPageableRef *) _ref; kma_flags_t flags = (kma_flags_t)(KMA_PAGEABLE | KMA_DATA); return kmem_alloc( map, &ref->address, ref->size, flags, ref->tag ); } static void * IOMallocPageablePages(vm_size_t size, vm_size_t alignment, vm_tag_t tag) { kern_return_t kr = kIOReturnNotReady; struct IOMallocPageableRef ref; if (alignment > page_size) { return NULL; } if (size > kIOPageableMaxMapSize) { return NULL; } ref.size = size; ref.tag = tag; kr = IOIteratePageableMaps( size, &IOMallocPageableCallback, &ref ); if (kIOReturnSuccess != kr) { ref.address = 0; } return (void *) ref.address; } vm_map_t IOPageableMapForAddress( uintptr_t address ) { vm_map_t map = NULL; UInt32 index; for (index = 0; index < gIOKitPageableSpace.count; index++) { if ((address >= gIOKitPageableSpace.maps[index].address) && (address < gIOKitPageableSpace.maps[index].end)) { map = gIOKitPageableSpace.maps[index].map; break; } } if (!map) { panic("IOPageableMapForAddress: null"); } return map; } static void IOFreePageablePages(void * address, vm_size_t size) { vm_map_t map; map = IOPageableMapForAddress((vm_address_t) address); if (map) { kmem_free( map, (vm_offset_t) address, size); } } #if defined(__x86_64__) static uintptr_t IOMallocOnePageablePage(kalloc_heap_t kheap __unused, iopa_t * a) { return (uintptr_t) IOMallocPageablePages(page_size, page_size, VM_KERN_MEMORY_IOKIT); } #endif /* defined(__x86_64__) */ static void * IOMallocPageableInternal(vm_size_t size, vm_size_t alignment, bool zeroed) { void * addr; if (((uint32_t) alignment) != alignment) { return NULL; } #if defined(__x86_64__) if (size >= (page_size - 4 * gIOPageAllocChunkBytes) || alignment > page_size) { addr = IOMallocPageablePages(size, alignment, IOMemoryTag(kernel_map)); /* Memory allocated this way will already be zeroed. */ } else { addr = ((void *) iopa_alloc(&gIOPageablePageAllocator, &IOMallocOnePageablePage, KHEAP_DEFAULT, size, (uint32_t) alignment)); if (addr && zeroed) { bzero(addr, size); } } #else /* !defined(__x86_64__) */ vm_size_t allocSize = size; if (allocSize == 0) { allocSize = 1; } addr = IOMallocPageablePages(allocSize, alignment, IOMemoryTag(kernel_map)); /* already zeroed */ #endif /* defined(__x86_64__) */ if (addr) { #if IOALLOCDEBUG OSAddAtomicLong(size, &debug_iomallocpageable_size); #endif IOStatisticsAlloc(kIOStatisticsMallocPageable, size); } return addr; } void * IOMallocPageable(vm_size_t size, vm_size_t alignment) { return IOMallocPageableInternal(size, alignment, /*zeroed*/ false); } void * IOMallocPageableZero(vm_size_t size, vm_size_t alignment) { return IOMallocPageableInternal(size, alignment, /*zeroed*/ true); } void IOFreePageable(void * address, vm_size_t size) { #if IOALLOCDEBUG OSAddAtomicLong(-size, &debug_iomallocpageable_size); #endif IOStatisticsAlloc(kIOStatisticsFreePageable, size); #if defined(__x86_64__) if (size < (page_size - 4 * gIOPageAllocChunkBytes)) { address = (void *) iopa_free(&gIOPageablePageAllocator, (uintptr_t) address, size); size = page_size; } if (address) { IOFreePageablePages(address, size); } #else /* !defined(__x86_64__) */ if (size == 0) { size = 1; } if (address) { IOFreePageablePages(address, size); } #endif /* defined(__x86_64__) */ } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ void * IOMallocData_external( vm_size_t size); void * IOMallocData_external(vm_size_t size) { return IOMalloc_internal(KHEAP_DATA_BUFFERS, size, Z_VM_TAG_BT_BIT); } void * IOMallocZeroData_external( vm_size_t size); void * IOMallocZeroData_external(vm_size_t size) { return IOMalloc_internal(KHEAP_DATA_BUFFERS, size, Z_ZERO_VM_TAG_BT_BIT); } void IOFreeData(void * address, vm_size_t size) { return IOFree_internal(KHEAP_DATA_BUFFERS, address, size); } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ __typed_allocators_ignore_push // allocator implementation void * IOMallocTypeImpl(kalloc_type_view_t kt_view) { #if IOTRACKING /* * When leak detection is on default to using IOMalloc as kalloc * type infrastructure isn't aware of needing additional space for * the header. */ if (TRACK_ALLOC) { uint32_t kt_size = kalloc_type_get_size(kt_view->kt_size); void *mem = IOMalloc_internal(KHEAP_DEFAULT, kt_size, Z_ZERO); if (!IOMallocType_from_vm(kt_view)) { assert(mem); } return mem; } #endif zalloc_flags_t kt_flags = (zalloc_flags_t) (Z_WAITOK | Z_ZERO); if (!IOMallocType_from_vm(kt_view)) { kt_flags = (zalloc_flags_t) (kt_flags | Z_NOFAIL); } /* * Use external symbol for kalloc_type_impl as * kalloc_type_views generated at some external callsites * many not have been processed during boot. */ return kalloc_type_impl_external(kt_view, kt_flags); } void IOFreeTypeImpl(kalloc_type_view_t kt_view, void * address) { #if IOTRACKING if (TRACK_ALLOC) { return IOFree_internal(KHEAP_DEFAULT, address, kalloc_type_get_size(kt_view->kt_size)); } #endif /* * Use external symbol for kalloc_type_impl as * kalloc_type_views generated at some external callsites * many not have been processed during boot. */ return kfree_type_impl_external(kt_view, address); } void * IOMallocTypeVarImpl(kalloc_type_var_view_t kt_view, vm_size_t size) { #if IOTRACKING /* * When leak detection is on default to using IOMalloc as kalloc * type infrastructure isn't aware of needing additional space for * the header. */ if (TRACK_ALLOC) { return IOMalloc_internal(KHEAP_DEFAULT, size, Z_ZERO); } #endif zalloc_flags_t kt_flags = (zalloc_flags_t) (Z_WAITOK | Z_ZERO); kt_flags = Z_VM_TAG_BT(kt_flags, VM_KERN_MEMORY_KALLOC_TYPE); return kalloc_type_var_impl(kt_view, size, kt_flags, NULL); } void IOFreeTypeVarImpl(kalloc_type_var_view_t kt_view, void * address, vm_size_t size) { #if IOTRACKING if (TRACK_ALLOC) { return IOFree_internal(KHEAP_DEFAULT, address, size); } #endif return kfree_type_var_impl(kt_view, address, size); } __typed_allocators_ignore_pop /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #if defined(__x86_64__) extern "C" void iopa_init(iopa_t * a) { bzero(a, sizeof(*a)); a->lock = IOLockAlloc(); queue_init(&a->list); } static uintptr_t iopa_allocinpage(iopa_page_t * pa, uint32_t count, uint64_t align) { uint32_t n, s; uint64_t avail = pa->avail; assert(avail); // find strings of count 1 bits in avail for (n = count; n > 1; n -= s) { s = n >> 1; avail = avail & (avail << s); } // and aligned avail &= align; if (avail) { n = __builtin_clzll(avail); pa->avail &= ~((-1ULL << (64 - count)) >> n); if (!pa->avail && pa->link.next) { remque(&pa->link); pa->link.next = NULL; } return n * gIOPageAllocChunkBytes + trunc_page((uintptr_t) pa); } return 0; } uintptr_t iopa_alloc( iopa_t * a, iopa_proc_t alloc, kalloc_heap_t kheap, vm_size_t bytes, vm_size_t balign) { static const uint64_t align_masks[] = { 0xFFFFFFFFFFFFFFFF, 0xAAAAAAAAAAAAAAAA, 0x8888888888888888, 0x8080808080808080, 0x8000800080008000, 0x8000000080000000, 0x8000000000000000, }; iopa_page_t * pa; uintptr_t addr = 0; uint32_t count; uint64_t align; vm_size_t align_masks_idx; if (((uint32_t) bytes) != bytes) { return 0; } if (!bytes) { bytes = 1; } count = (((uint32_t) bytes) + gIOPageAllocChunkBytes - 1) / gIOPageAllocChunkBytes; align_masks_idx = log2up((balign + gIOPageAllocChunkBytes - 1) / gIOPageAllocChunkBytes); assert(align_masks_idx < sizeof(align_masks) / sizeof(*align_masks)); align = align_masks[align_masks_idx]; IOLockLock(a->lock); __IGNORE_WCASTALIGN(pa = (typeof(pa))queue_first(&a->list)); while (!queue_end(&a->list, &pa->link)) { addr = iopa_allocinpage(pa, count, align); if (addr) { a->bytecount += bytes; break; } __IGNORE_WCASTALIGN(pa = (typeof(pa))queue_next(&pa->link)); } IOLockUnlock(a->lock); if (!addr) { addr = alloc(kheap, a); if (addr) { pa = (typeof(pa))(addr + page_size - gIOPageAllocChunkBytes); pa->signature = kIOPageAllocSignature; pa->avail = -2ULL; addr = iopa_allocinpage(pa, count, align); IOLockLock(a->lock); if (pa->avail) { enqueue_head(&a->list, &pa->link); } a->pagecount++; if (addr) { a->bytecount += bytes; } IOLockUnlock(a->lock); } } assert((addr & ((1 << log2up(balign)) - 1)) == 0); return addr; } uintptr_t iopa_free(iopa_t * a, uintptr_t addr, vm_size_t bytes) { iopa_page_t * pa; uint32_t count; uintptr_t chunk; if (((uint32_t) bytes) != bytes) { return 0; } if (!bytes) { bytes = 1; } chunk = (addr & page_mask); assert(0 == (chunk & (gIOPageAllocChunkBytes - 1))); pa = (typeof(pa))(addr | (page_size - gIOPageAllocChunkBytes)); assert(kIOPageAllocSignature == pa->signature); count = (((uint32_t) bytes) + gIOPageAllocChunkBytes - 1) / gIOPageAllocChunkBytes; chunk /= gIOPageAllocChunkBytes; IOLockLock(a->lock); if (!pa->avail) { assert(!pa->link.next); enqueue_tail(&a->list, &pa->link); } pa->avail |= ((-1ULL << (64 - count)) >> chunk); if (pa->avail != -2ULL) { pa = NULL; } else { remque(&pa->link); pa->link.next = NULL; pa->signature = 0; a->pagecount--; // page to free pa = (typeof(pa))trunc_page(pa); } a->bytecount -= bytes; IOLockUnlock(a->lock); return (uintptr_t) pa; } #endif /* defined(__x86_64__) */ /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ IOReturn IOSetProcessorCacheMode( task_t task, IOVirtualAddress address, IOByteCount length, IOOptionBits cacheMode ) { IOReturn ret = kIOReturnSuccess; ppnum_t pagenum; if (task != kernel_task) { return kIOReturnUnsupported; } if ((address | length) & PAGE_MASK) { // OSReportWithBacktrace("IOSetProcessorCacheMode(0x%x, 0x%x, 0x%x) fails\n", address, length, cacheMode); return kIOReturnUnsupported; } length = round_page(address + length) - trunc_page( address ); address = trunc_page( address ); // make map mode cacheMode = (cacheMode << kIOMapCacheShift) & kIOMapCacheMask; while ((kIOReturnSuccess == ret) && (length > 0)) { // Get the physical page number pagenum = pmap_find_phys(kernel_pmap, (addr64_t)address); if (pagenum) { ret = IOUnmapPages( get_task_map(task), address, page_size ); ret = IOMapPages( get_task_map(task), address, ptoa_64(pagenum), page_size, cacheMode ); } else { ret = kIOReturnVMError; } address += page_size; length -= page_size; } return ret; } IOReturn IOFlushProcessorCache( task_t task, IOVirtualAddress address, IOByteCount length ) { if (task != kernel_task) { return kIOReturnUnsupported; } flush_dcache64((addr64_t) address, (unsigned) length, false ); return kIOReturnSuccess; } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ vm_offset_t OSKernelStackRemaining( void ) { return ml_stack_remaining(); } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* * Spin for indicated number of milliseconds. */ void IOSleep(unsigned milliseconds) { delay_for_interval(milliseconds, kMillisecondScale); } /* * Spin for indicated number of milliseconds, and potentially an * additional number of milliseconds up to the leeway values. */ void IOSleepWithLeeway(unsigned intervalMilliseconds, unsigned leewayMilliseconds) { delay_for_interval_with_leeway(intervalMilliseconds, leewayMilliseconds, kMillisecondScale); } /* * Spin for indicated number of microseconds. */ void IODelay(unsigned microseconds) { delay_for_interval(microseconds, kMicrosecondScale); } /* * Spin for indicated number of nanoseconds. */ void IOPause(unsigned nanoseconds) { delay_for_interval(nanoseconds, kNanosecondScale); } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ static void _IOLogv(const char *format, va_list ap, void *caller) __printflike(1, 0); __attribute__((noinline, not_tail_called)) void IOLog(const char *format, ...) { void *caller = __builtin_return_address(0); va_list ap; va_start(ap, format); _IOLogv(format, ap, caller); va_end(ap); } __attribute__((noinline, not_tail_called)) void IOLogv(const char *format, va_list ap) { void *caller = __builtin_return_address(0); _IOLogv(format, ap, caller); } void _IOLogv(const char *format, va_list ap, void *caller) { va_list ap2; struct console_printbuf_state info_data; console_printbuf_state_init(&info_data, TRUE, TRUE); va_copy(ap2, ap); #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wformat-nonliteral" os_log_with_args(OS_LOG_DEFAULT, OS_LOG_TYPE_DEFAULT, format, ap, caller); #pragma clang diagnostic pop if (!disable_iolog_serial_output) { __doprnt(format, ap2, console_printbuf_putc, &info_data, 16, TRUE); console_printbuf_clear(&info_data); } va_end(ap2); assertf(ml_get_interrupts_enabled() || ml_is_quiescing() || debug_mode_active() || !gCPUsRunning, "IOLog called with interrupts disabled"); } #if !__LP64__ void IOPanic(const char *reason) { panic("%s", reason); } #endif /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ void IOKitKernelLogBuffer(const char * title, const void * buffer, size_t size, void (*output)(const char *format, ...)) { size_t idx, linestart; enum { bytelen = (sizeof("0xZZ, ") - 1) }; char hex[(bytelen * 16) + 1]; uint8_t c, chars[17]; output("%s(0x%lx):\n", title, size); output(" 0 1 2 3 4 5 6 7 8 9 A B C D E F\n"); if (size > 4096) { size = 4096; } chars[16] = 0; for (idx = 0, linestart = 0; idx < size;) { c = ((char *)buffer)[idx]; snprintf(&hex[bytelen * (idx & 15)], bytelen + 1, "0x%02x, ", c); chars[idx & 15] = ((c >= 0x20) && (c <= 0x7f)) ? c : ' '; idx++; if ((idx == size) || !(idx & 15)) { if (idx & 15) { chars[idx & 15] = 0; } output("/* %04lx: */ %-96s /* |%-16s| */\n", linestart, hex, chars); linestart += 16; } } } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ /* * Convert a integer constant (typically a #define or enum) to a string. */ static char noValue[80]; // that's pretty const char * IOFindNameForValue(int value, const IONamedValue *regValueArray) { for (; regValueArray->name; regValueArray++) { if (regValueArray->value == value) { return regValueArray->name; } } snprintf(noValue, sizeof(noValue), "0x%x (UNDEFINED)", value); return (const char *)noValue; } IOReturn IOFindValueForName(const char *string, const IONamedValue *regValueArray, int *value) { for (; regValueArray->name; regValueArray++) { if (!strcmp(regValueArray->name, string)) { *value = regValueArray->value; return kIOReturnSuccess; } } return kIOReturnBadArgument; } OSString * IOCopyLogNameForPID(int pid) { char buf[128]; size_t len; snprintf(buf, sizeof(buf), "pid %d, ", pid); len = strlen(buf); proc_name(pid, buf + len, (int) (sizeof(buf) - len)); return OSString::withCString(buf); } /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ IOAlignment IOSizeToAlignment(unsigned int size) { int shift; const int intsize = sizeof(unsigned int) * 8; for (shift = 1; shift < intsize; shift++) { if (size & 0x80000000) { return (IOAlignment)(intsize - shift); } size <<= 1; } return 0; } unsigned int IOAlignmentToSize(IOAlignment align) { unsigned int size; for (size = 1; align; align--) { size <<= 1; } return size; } } /* extern "C" */ |