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 | /* * Copyright (c) 1999, 2006, 2008 Apple Inc. All rights reserved. * * @APPLE_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. 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_LICENSE_HEADER_END@ */ /* Author: Bertrand Serlet, August 1999 */ /* * Multithread enhancements for "tiny" allocations introduced February 2008. * These are in the spirit of "Hoard". See: * Berger, E.D.; McKinley, K.S.; Blumofe, R.D.; Wilson, P.R. (2000). * "Hoard: a scalable memory allocator for multithreaded applications". * ACM SIGPLAN Notices 35 (11): 117-128. Berger2000. * <http://portal.acm.org/citation.cfm?id=356989.357000> * Retrieved on 2008-02-22. */ #include "internal.h" #if DEBUG_MALLOC #define LOG(szone, ptr) (szone->log_address && (((uintptr_t)szone->log_address == -1) || (szone->log_address == (void *)(ptr)))) #else #define LOG(szone, ptr) 0 #endif // Maximum number of magazines, set from the number of logical CPUS and // possibly limited by the MallocMaxMagazines environment variable. int max_magazines; // Number of regions to retain in a recirc depot. #if CONFIG_RECIRC_DEPOT int recirc_retained_regions = DEFAULT_RECIRC_RETAINED_REGIONS; #endif // CONFIG_RECIRC_DEPOT /********************* Zone call backs ************************/ /* * Mark these MALLOC_NOINLINE to avoid bloating the purgeable zone call backs */ void szone_free(szone_t *szone, void *ptr) { region_t tiny_region; region_t small_region; #if DEBUG_MALLOC if (LOG(szone, ptr)) { malloc_report(ASL_LEVEL_INFO, "in szone_free with %p\n", ptr); } #endif if (!ptr) { return; } /* * Try to free to a tiny region. */ if ((uintptr_t)ptr & (TINY_QUANTUM - 1)) { malloc_zone_error(szone->debug_flags, true, "Non-aligned pointer %p being freed\n", ptr); return; } if ((tiny_region = tiny_region_for_ptr_no_lock(&szone->tiny_rack, ptr)) != NULL) { if (TINY_INDEX_FOR_PTR(ptr) >= NUM_TINY_BLOCKS) { malloc_zone_error(szone->debug_flags, true, "Pointer %p to metadata being freed\n", ptr); return; } free_tiny(&szone->tiny_rack, ptr, tiny_region, 0); return; } /* * Try to free to a small region. */ if ((uintptr_t)ptr & (SMALL_QUANTUM - 1)) { malloc_zone_error(szone->debug_flags, true, "Non-aligned pointer %p being freed (2)\n", ptr); return; } if ((small_region = small_region_for_ptr_no_lock(&szone->small_rack, ptr)) != NULL) { if (SMALL_META_INDEX_FOR_PTR(ptr) >= NUM_SMALL_BLOCKS) { malloc_zone_error(szone->debug_flags, true, "Pointer %p to metadata being freed (2)\n", ptr); return; } free_small(&szone->small_rack, ptr, small_region, 0); return; } /* check that it's a legal large allocation */ if ((uintptr_t)ptr & (vm_page_quanta_size - 1)) { malloc_zone_error(szone->debug_flags, true, "non-page-aligned, non-allocated pointer %p being freed\n", ptr); return; } free_large(szone, ptr); } void szone_free_definite_size(szone_t *szone, void *ptr, size_t size) { #if DEBUG_MALLOC if (LOG(szone, ptr)) { malloc_report(ASL_LEVEL_INFO, "in szone_free_definite_size with %p\n", ptr); } if (0 == size) { malloc_zone_error(szone->debug_flags, true, "pointer %p of size zero being freed\n", ptr); return; } #endif if (!ptr) { return; } /* * Try to free to a tiny region. */ if ((uintptr_t)ptr & (TINY_QUANTUM - 1)) { malloc_zone_error(szone->debug_flags, true, "Non-aligned pointer %p being freed\n", ptr); return; } if (size <= SMALL_THRESHOLD) { if (TINY_INDEX_FOR_PTR(ptr) >= NUM_TINY_BLOCKS) { malloc_zone_error(szone->debug_flags, true, "Pointer %p to metadata being freed\n", ptr); return; } free_tiny(&szone->tiny_rack, ptr, TINY_REGION_FOR_PTR(ptr), size); return; } /* * Try to free to a small region. */ if ((uintptr_t)ptr & (SMALL_QUANTUM - 1)) { malloc_zone_error(szone->debug_flags, true, "Non-aligned pointer %p being freed (2)\n", ptr); return; } if (size <= szone->large_threshold) { if (SMALL_META_INDEX_FOR_PTR(ptr) >= NUM_SMALL_BLOCKS) { malloc_zone_error(szone->debug_flags, true, "Pointer %p to metadata being freed (2)\n", ptr); return; } free_small(&szone->small_rack, ptr, SMALL_REGION_FOR_PTR(ptr), size); return; } /* check that it's a legal large allocation */ if ((uintptr_t)ptr & (vm_page_quanta_size - 1)) { malloc_zone_error(szone->debug_flags, true, "non-page-aligned, non-allocated pointer %p being freed\n", ptr); return; } free_large(szone, ptr); } MALLOC_NOINLINE void * szone_malloc_should_clear(szone_t *szone, size_t size, boolean_t cleared_requested) { void *ptr; msize_t msize; if (size <= SMALL_THRESHOLD) { // tiny size: <=1008 bytes (64-bit), <=496 bytes (32-bit) // think tiny msize = TINY_MSIZE_FOR_BYTES(size + TINY_QUANTUM - 1); if (!msize) { msize = 1; } ptr = tiny_malloc_should_clear(&szone->tiny_rack, msize, cleared_requested); } else if (size <= szone->large_threshold) { // small size: <=15k (iOS), <=64k (large iOS), <=128k (macOS) // think small msize = SMALL_MSIZE_FOR_BYTES(size + SMALL_QUANTUM - 1); if (!msize) { msize = 1; } ptr = small_malloc_should_clear(&szone->small_rack, msize, cleared_requested); } else { // large: all other allocations size_t num_kernel_pages = round_page_quanta(size) >> vm_page_quanta_shift; if (num_kernel_pages == 0) { /* Overflowed */ ptr = 0; } else { ptr = large_malloc(szone, num_kernel_pages, 0, cleared_requested); } } #if DEBUG_MALLOC if (LOG(szone, ptr)) { malloc_report(ASL_LEVEL_INFO, "szone_malloc returned %p\n", ptr); } #endif /* * If requested, scribble on allocated memory. */ if ((szone->debug_flags & MALLOC_DO_SCRIBBLE) && ptr && !cleared_requested && size) { memset(ptr, SCRIBBLE_BYTE, szone_size(szone, ptr)); } return ptr; } void * szone_malloc(szone_t *szone, size_t size) { return szone_malloc_should_clear(szone, size, 0); } void * szone_calloc(szone_t *szone, size_t num_items, size_t size) { size_t total_bytes; if (calloc_get_size(num_items, size, 0, &total_bytes)) { return NULL; } return szone_malloc_should_clear(szone, total_bytes, 1); } void * szone_valloc(szone_t *szone, size_t size) { void *ptr; if (size <= szone->large_threshold) { ptr = szone_memalign(szone, vm_page_quanta_size, size); } else { size_t num_kernel_pages; num_kernel_pages = round_page_quanta(size) >> vm_page_quanta_shift; ptr = large_malloc(szone, num_kernel_pages, 0, 0); } #if DEBUG_MALLOC if (LOG(szone, ptr)) { malloc_report(ASL_LEVEL_INFO, "szone_valloc returned %p\n", ptr); } #endif return ptr; } /* Isolate PIC-base load here. */ size_t szone_size_try_large(szone_t *szone, const void *ptr) { size_t size = 0; large_entry_t *entry; SZONE_LOCK(szone); entry = large_entry_for_pointer_no_lock(szone, ptr); if (entry) { size = entry->size; } SZONE_UNLOCK(szone); #if DEBUG_MALLOC if (LOG(szone, ptr)) { malloc_report(ASL_LEVEL_INFO, "szone_size for %p returned %d\n", ptr, (unsigned)size); } #endif return size; } size_t szone_size(szone_t *szone, const void *ptr) { size_t sz = 0; if (!ptr) { return 0; } #if DEBUG_MALLOC if (LOG(szone, ptr)) { malloc_report(ASL_LEVEL_INFO, "in szone_size for %p (szone=%p)\n", ptr, szone); } #endif /* * Look for it in a tiny region. */ if ((uintptr_t)ptr & (TINY_QUANTUM - 1)) { return 0; } sz = tiny_size(&szone->tiny_rack, ptr); if (sz) { return sz; } /* * Look for it in a small region. */ if ((uintptr_t)ptr & (SMALL_QUANTUM - 1)) { return 0; } sz = small_size(&szone->small_rack, ptr); if (sz) { return sz; } /* * If not page-aligned, it cannot have come from a large allocation. */ if ((uintptr_t)ptr & (vm_page_quanta_size - 1)) { return 0; } /* * Look for it in a large entry. */ return szone_size_try_large(szone, ptr); } void * szone_realloc(szone_t *szone, void *ptr, size_t new_size) { size_t old_size, new_good_size, valid_size; void *new_ptr; #if DEBUG_MALLOC if (LOG(szone, ptr)) { malloc_report(ASL_LEVEL_INFO, "in szone_realloc for %p, %d\n", ptr, (unsigned)new_size); } #endif if (NULL == ptr) { // If ptr is a null pointer, realloc() shall be equivalent to malloc() for the specified size. return szone_malloc(szone, new_size); } else if (0 == new_size) { // If size is 0 and ptr is not a null pointer, the object pointed to is freed. szone_free(szone, ptr); // If size is 0, either a null pointer or a unique pointer that can be successfully passed // to free() shall be returned. return szone_malloc(szone, 1); } old_size = szone_size(szone, ptr); if (!old_size) { malloc_zone_error(szone->debug_flags, true, "pointer %p being reallocated was not allocated\n", ptr); return NULL; } new_good_size = szone_good_size(szone, new_size); if (new_good_size == old_size) { // Existing allocation is best fit evar? return ptr; } /* * If the new size suits the tiny allocator and the pointer being resized * belongs to a tiny region, try to reallocate in-place. */ if (new_good_size <= SMALL_THRESHOLD) { if (old_size <= SMALL_THRESHOLD) { if (new_good_size <= (old_size >> 1)) { /* * Serious shrinkage (more than half). free() the excess. */ return tiny_try_shrink_in_place(&szone->tiny_rack, ptr, old_size, new_good_size); } else if (new_good_size <= old_size) { /* * new_good_size smaller than old_size but not by much (less than half). * Avoid thrashing at the expense of some wasted storage. */ if (szone->debug_flags & MALLOC_DO_SCRIBBLE) { memset(ptr + new_size, SCRIBBLE_BYTE, old_size - new_size); } return ptr; } else if (tiny_try_realloc_in_place(&szone->tiny_rack, ptr, old_size, new_good_size)) { // try to grow the allocation if (szone->debug_flags & MALLOC_DO_SCRIBBLE) { memset(ptr + old_size, SCRIBBLE_BYTE, new_good_size - old_size); } return ptr; } } /* * Else if the new size suits the small allocator and the pointer being resized * belongs to a small region, and we're not protecting the small allocations * try to reallocate in-place. */ } else if (new_good_size <= szone->large_threshold) { if (SMALL_THRESHOLD < old_size && old_size <= szone->large_threshold) { if (new_good_size <= (old_size >> 1)) { return small_try_shrink_in_place(&szone->small_rack, ptr, old_size, new_good_size); } else if (new_good_size <= old_size) { if (szone->debug_flags & MALLOC_DO_SCRIBBLE) { memset(ptr + new_size, SCRIBBLE_BYTE, old_size - new_size); } return ptr; } else if (small_try_realloc_in_place(&szone->small_rack, ptr, old_size, new_good_size)) { if (szone->debug_flags & MALLOC_DO_SCRIBBLE) { memset(ptr + old_size, SCRIBBLE_BYTE, new_good_size - old_size); } return ptr; } } /* * Else if the allocation's a large allocation, try to reallocate in-place there. */ } else if (!(szone->debug_flags & MALLOC_PURGEABLE) && // purgeable needs fresh allocation (old_size > szone->large_threshold) && (new_good_size > szone->large_threshold)) { if (new_good_size <= (old_size >> 1)) { return large_try_shrink_in_place(szone, ptr, old_size, new_good_size); } else if (new_good_size <= old_size) { if (szone->debug_flags & MALLOC_DO_SCRIBBLE) { memset(ptr + new_size, SCRIBBLE_BYTE, old_size - new_size); } return ptr; } else if (large_try_realloc_in_place(szone, ptr, old_size, new_good_size)) { if (szone->debug_flags & MALLOC_DO_SCRIBBLE) { memset(ptr + old_size, SCRIBBLE_BYTE, new_good_size - old_size); } return ptr; } } /* * Can't reallocate in place for whatever reason; allocate a new buffer and copy. */ if (new_good_size <= (old_size >> 1)) { /* Serious shrinkage (more than half). FALL THROUGH to alloc/copy/free. */ } else if (new_good_size <= old_size) { if (szone->debug_flags & MALLOC_DO_SCRIBBLE) { memset(ptr + new_size, SCRIBBLE_BYTE, old_size - new_size); } return ptr; } new_ptr = szone_malloc(szone, new_size); if (new_ptr == NULL) { return NULL; } /* * If the allocation's large enough, try to copy using VM. If that fails, or * if it's too small, just copy by hand. */ valid_size = MIN(old_size, new_size); if ((valid_size <= szone->vm_copy_threshold) || vm_copy(mach_task_self(), (vm_address_t)ptr, valid_size, (vm_address_t)new_ptr)) { memcpy(new_ptr, ptr, valid_size); } szone_free(szone, ptr); #if DEBUG_MALLOC if (LOG(szone, ptr)) { malloc_report(ASL_LEVEL_INFO, "szone_realloc returned %p for %d\n", new_ptr, (unsigned)new_size); } #endif return new_ptr; } void * szone_memalign(szone_t *szone, size_t alignment, size_t size) { if (size == 0) { size = 1; // Ensures we'll return an aligned free()-able pointer } if ((size + alignment) < size) { // size_t arithmetic wrapped! return NULL; } // alignment is gauranteed a power of 2 at least as large as sizeof(void *), hence non-zero. // Since size + alignment didn't wrap, 0 <= size + alignment - 1 < size + alignment size_t span = size + alignment - 1; if (alignment <= TINY_QUANTUM) { return szone_malloc(szone, size); // Trivially satisfied by tiny, small, or large } if (span <= SMALL_THRESHOLD) { return tiny_memalign(szone, alignment, size, span); } if (SMALL_THRESHOLD < size && alignment <= SMALL_QUANTUM) { return szone_malloc(szone, size); // Trivially satisfied by small or large } if (size <= SMALL_THRESHOLD) { // ensure block allocated by small does not have a tiny-possible size size = SMALL_THRESHOLD + TINY_QUANTUM; span = size + alignment - 1; } if (span <= szone->large_threshold) { return small_memalign(szone, alignment, size, span); } if (szone->large_threshold < size && alignment <= vm_page_quanta_size) { return szone_malloc(szone, size); // Trivially satisfied by large } // ensure block allocated by large does not have a small-possible size size_t num_kernel_pages = round_page_quanta(MAX(szone->large_threshold + 1, size)) >> vm_page_quanta_shift; if (num_kernel_pages == 0) { /* Overflowed */ return NULL; } else { return large_malloc(szone, num_kernel_pages, MAX(vm_page_quanta_shift, __builtin_ctz((unsigned)alignment)), 0); } /* NOTREACHED */ } // Given a size, returns the number of pointers allocated capable of holding // that size, up to the limit specified by the 'count' argument. These pointers // are stored in the 'results' array, which must be allocated by the caller. // May return zero, since this function is only a best attempt at allocating // the pointers. Clients should be prepared to call malloc for any additional // blocks they need. unsigned szone_batch_malloc(szone_t *szone, size_t size, void **results, unsigned count) { // only bother implementing this for tiny if (size <= SMALL_THRESHOLD) { return tiny_batch_malloc(szone, size, results, count); } return 0; } void szone_batch_free(szone_t *szone, void **to_be_freed, unsigned count) { // frees all the pointers in to_be_freed // note that to_be_freed may be overwritten during the process if (!count) { return; } CHECK(szone, __PRETTY_FUNCTION__); // We only support batch malloc in tiny. Let it free all of the pointers // that belong to it, then let the standard free deal with the rest. tiny_batch_free(szone, to_be_freed, count); CHECK(szone, __PRETTY_FUNCTION__); while (count--) { void *ptr = to_be_freed[count]; if (ptr) { szone_free(szone, ptr); } } } // FIXME: Suppose one of the locks is held? static void szone_destroy(szone_t *szone) { size_t index; large_entry_t *large; vm_range_t range_to_deallocate; #if CONFIG_LARGE_CACHE SZONE_LOCK(szone); /* disable any memory pressure responder */ szone->flotsam_enabled = FALSE; // stack allocated copy of the death-row cache int idx = szone->large_entry_cache_oldest, idx_max = szone->large_entry_cache_newest; large_entry_t local_entry_cache[LARGE_ENTRY_CACHE_SIZE]; memcpy((void *)local_entry_cache, (void *)szone->large_entry_cache, sizeof(local_entry_cache)); szone->large_entry_cache_oldest = szone->large_entry_cache_newest = 0; szone->large_entry_cache[0].address = 0x0; szone->large_entry_cache[0].size = 0; szone->large_entry_cache_bytes = 0; szone->large_entry_cache_reserve_bytes = 0; SZONE_UNLOCK(szone); // deallocate the death-row cache outside the zone lock while (idx != idx_max) { mvm_deallocate_pages((void *)local_entry_cache[idx].address, local_entry_cache[idx].size, 0); if (++idx == LARGE_ENTRY_CACHE_SIZE) { idx = 0; } } if (0 != local_entry_cache[idx].address && 0 != local_entry_cache[idx].size) { mvm_deallocate_pages((void *)local_entry_cache[idx].address, local_entry_cache[idx].size, 0); } #endif /* destroy large entries */ index = szone->num_large_entries; while (index--) { large = szone->large_entries + index; if (large->address) { // we deallocate_pages, including guard pages mvm_deallocate_pages((void *)(large->address), large->size, szone->debug_flags); } } large_entries_free_no_lock(szone, szone->large_entries, szone->num_large_entries, &range_to_deallocate); if (range_to_deallocate.size) { mvm_deallocate_pages((void *)range_to_deallocate.address, (size_t)range_to_deallocate.size, 0); } /* destroy allocator regions */ rack_destroy_regions(&szone->tiny_rack, TINY_REGION_SIZE); rack_destroy_regions(&szone->small_rack, SMALL_REGION_SIZE); /* destroy rack region hash rings and racks themselves */ rack_destroy(&szone->tiny_rack); rack_destroy(&szone->small_rack); mvm_deallocate_pages((void *)szone, SZONE_PAGED_SIZE, 0); } size_t szone_good_size(szone_t *szone, size_t size) { msize_t msize; // Find a good size for this tiny allocation. if (size <= SMALL_THRESHOLD) { msize = TINY_MSIZE_FOR_BYTES(size + TINY_QUANTUM - 1); if (!msize) { msize = 1; } return TINY_BYTES_FOR_MSIZE(msize); } // Find a good size for this small allocation. if (size <= szone->large_threshold) { msize = SMALL_MSIZE_FOR_BYTES(size + SMALL_QUANTUM - 1); if (!msize) { msize = 1; } return SMALL_BYTES_FOR_MSIZE(msize); } // Check for integer overflow on the size, since unlike the two cases above, // there is no upper bound on allocation size at this point. if (size > round_page_quanta(size)) { return (size_t)(-1LL); } #if DEBUG_MALLOC // It is not acceptable to see a size of zero here, since that means we // failed to catch a request for zero bytes in the tiny check, or the size // overflowed to zero during some arithmetic. if (size == 0) { malloc_report(ASL_LEVEL_INFO, "szone_good_size() invariant broken %y\n", size); } #endif return round_page_quanta(size); } boolean_t szone_claimed_address(szone_t *szone, void *ptr) { return tiny_claimed_address(&szone->tiny_rack, ptr) || small_claimed_address(&szone->small_rack, ptr) || large_claimed_address(szone, ptr); } unsigned szone_check_counter = 0; unsigned szone_check_start = 0; unsigned szone_check_modulo = 1; static MALLOC_NOINLINE boolean_t szone_check_all(szone_t *szone, const char *function) { size_t index; /* check tiny regions - chould check region count */ for (index = 0; index < szone->tiny_rack.region_generation->num_regions_allocated; ++index) { region_t tiny = szone->tiny_rack.region_generation->hashed_regions[index]; if (HASHRING_REGION_DEALLOCATED == tiny) { continue; } if (tiny) { magazine_t *tiny_mag_ptr = mag_lock_zine_for_region_trailer(szone->tiny_rack.magazines, REGION_TRAILER_FOR_TINY_REGION(tiny), MAGAZINE_INDEX_FOR_TINY_REGION(tiny)); if (!tiny_check_region(&szone->tiny_rack, tiny, index, szone_check_counter)) { SZONE_MAGAZINE_PTR_UNLOCK(tiny_mag_ptr); szone->debug_flags &= ~CHECK_REGIONS; return 0; } SZONE_MAGAZINE_PTR_UNLOCK(tiny_mag_ptr); } } /* check tiny free lists */ for (index = 0; index < NUM_TINY_SLOTS; ++index) { if (!tiny_free_list_check(&szone->tiny_rack, (grain_t)index, szone_check_counter)) { szone->debug_flags &= ~CHECK_REGIONS; return 0; } } /* check small regions - could check region count */ for (index = 0; index < szone->small_rack.region_generation->num_regions_allocated; ++index) { region_t small = szone->small_rack.region_generation->hashed_regions[index]; if (HASHRING_REGION_DEALLOCATED == small) { continue; } if (small) { magazine_t *small_mag_ptr = mag_lock_zine_for_region_trailer(szone->small_rack.magazines, REGION_TRAILER_FOR_SMALL_REGION(small), MAGAZINE_INDEX_FOR_SMALL_REGION(small)); if (!small_check_region(&szone->small_rack, small, index, szone_check_counter)) { SZONE_MAGAZINE_PTR_UNLOCK(small_mag_ptr); szone->debug_flags &= ~CHECK_REGIONS; return 0; } SZONE_MAGAZINE_PTR_UNLOCK(small_mag_ptr); } } /* check small free lists */ for (index = 0; index < SMALL_FREE_SLOT_COUNT(&szone->small_rack); ++index) { if (!small_free_list_check(&szone->small_rack, (grain_t)index, szone_check_counter)) { szone->debug_flags &= ~CHECK_REGIONS; return 0; } } return 1; } static boolean_t szone_check(szone_t *szone) { if ((++szone_check_counter % 10000) == 0) { malloc_report(ASL_LEVEL_NOTICE, "at szone_check counter=%d\n", szone_check_counter); } if (szone_check_counter < szone_check_start) { return 1; } if (szone_check_counter % szone_check_modulo) { return 1; } return szone_check_all(szone, ""); } static kern_return_t szone_ptr_in_use_enumerator(task_t task, void *context, unsigned type_mask, vm_address_t zone_address, memory_reader_t reader, vm_range_recorder_t recorder) { szone_t *szone; kern_return_t err; if (!reader) { reader = _szone_default_reader; } err = reader(task, zone_address, sizeof(szone_t), (void **)&szone); if (err) { return err; } err = tiny_in_use_enumerator(task, context, type_mask, szone, reader, recorder); if (err) { return err; } err = small_in_use_enumerator(task, context, type_mask, szone, reader, recorder); if (err) { return err; } err = large_in_use_enumerator( task, context, type_mask, (vm_address_t)szone->large_entries, szone->num_large_entries, reader, recorder); return err; } // Following method is deprecated: use scalable_zone_statistics instead void scalable_zone_info(malloc_zone_t *zone, unsigned *info_to_fill, unsigned count) { szone_t *szone = (void *)zone; unsigned info[13]; // We do not lock to facilitate debug size_t s = 0; unsigned t = 0; size_t u = 0; mag_index_t mag_index; for (mag_index = -1; mag_index < szone->tiny_rack.num_magazines; mag_index++) { s += szone->tiny_rack.magazines[mag_index].mag_bytes_free_at_start; s += szone->tiny_rack.magazines[mag_index].mag_bytes_free_at_end; t += szone->tiny_rack.magazines[mag_index].mag_num_objects; u += szone->tiny_rack.magazines[mag_index].mag_num_bytes_in_objects; } info[4] = (unsigned)t; info[5] = (unsigned)u; for (t = 0, u = 0, mag_index = -1; mag_index < szone->small_rack.num_magazines; mag_index++) { s += szone->small_rack.magazines[mag_index].mag_bytes_free_at_start; s += szone->small_rack.magazines[mag_index].mag_bytes_free_at_end; t += szone->small_rack.magazines[mag_index].mag_num_objects; u += szone->small_rack.magazines[mag_index].mag_num_bytes_in_objects; } info[6] = (unsigned)t; info[7] = (unsigned)u; info[8] = (unsigned)szone->num_large_objects_in_use; info[9] = (unsigned)szone->num_bytes_in_large_objects; info[10] = 0; // DEPRECATED szone->num_huge_entries; info[11] = 0; // DEPRECATED szone->num_bytes_in_huge_objects; info[12] = szone->debug_flags; info[0] = info[4] + info[6] + info[8] + info[10]; info[1] = info[5] + info[7] + info[9] + info[11]; info[3] = (unsigned)(szone->tiny_rack.num_regions - szone->tiny_rack.num_regions_dealloc) * TINY_REGION_SIZE + (unsigned)(szone->small_rack.num_regions - szone->small_rack.num_regions_dealloc) * SMALL_REGION_SIZE + info[9] + info[11]; info[2] = info[3] - (unsigned)s; memcpy(info_to_fill, info, sizeof(unsigned) * count); } // FIXME: consistent picture requires locking! static MALLOC_NOINLINE void szone_print(szone_t *szone, boolean_t verbose) { unsigned info[13]; size_t index; region_t region; scalable_zone_info((void *)szone, info, 13); malloc_report(MALLOC_REPORT_NOLOG | MALLOC_REPORT_NOPREFIX, "Scalable zone %p: inUse=%u(%y) touched=%y allocated=%y flags=%d\n", szone, info[0], info[1], info[2], info[3], info[12]); malloc_report(MALLOC_REPORT_NOLOG | MALLOC_REPORT_NOPREFIX, "\ttiny=%u(%y) small=%u(%y) large=%u(%y) huge=%u(%y)\n", info[4], info[5], info[6], info[7], info[8], info[9], info[10], info[11]); // tiny malloc_report(MALLOC_REPORT_NOLOG | MALLOC_REPORT_NOPREFIX, "%lu tiny regions:\n", szone->tiny_rack.num_regions); if (szone->tiny_rack.num_regions_dealloc) { malloc_report(MALLOC_REPORT_NOLOG | MALLOC_REPORT_NOPREFIX, "[%lu tiny regions have been vm_deallocate'd]\n", szone->tiny_rack.num_regions_dealloc); } for (index = 0; index < szone->tiny_rack.region_generation->num_regions_allocated; ++index) { region = szone->tiny_rack.region_generation->hashed_regions[index]; if (HASHRING_OPEN_ENTRY != region && HASHRING_REGION_DEALLOCATED != region) { mag_index_t mag_index = MAGAZINE_INDEX_FOR_TINY_REGION(region); print_tiny_region(verbose, region, (region == szone->tiny_rack.magazines[mag_index].mag_last_region) ? szone->tiny_rack.magazines[mag_index].mag_bytes_free_at_start : 0, (region == szone->tiny_rack.magazines[mag_index].mag_last_region) ? szone->tiny_rack.magazines[mag_index].mag_bytes_free_at_end : 0); } } if (verbose) { print_tiny_free_list(&szone->tiny_rack); } // small malloc_report(MALLOC_REPORT_NOLOG | MALLOC_REPORT_NOPREFIX, "%lu small regions:\n", szone->small_rack.num_regions); if (szone->small_rack.num_regions_dealloc) { malloc_report(MALLOC_REPORT_NOLOG | MALLOC_REPORT_NOPREFIX, "[%lu small regions have been vm_deallocate'd]\n", szone->small_rack.num_regions_dealloc); } for (index = 0; index < szone->small_rack.region_generation->num_regions_allocated; ++index) { region = szone->small_rack.region_generation->hashed_regions[index]; if (HASHRING_OPEN_ENTRY != region && HASHRING_REGION_DEALLOCATED != region) { mag_index_t mag_index = MAGAZINE_INDEX_FOR_SMALL_REGION(region); print_small_region(szone, verbose, region, (region == szone->small_rack.magazines[mag_index].mag_last_region) ? szone->small_rack.magazines[mag_index].mag_bytes_free_at_start : 0, (region == szone->small_rack.magazines[mag_index].mag_last_region) ? szone->small_rack.magazines[mag_index].mag_bytes_free_at_end : 0); } } if (verbose) { print_small_free_list(&szone->small_rack); } } static void szone_log(malloc_zone_t *zone, void *log_address) { szone_t *szone = (szone_t *)zone; szone->log_address = log_address; } // <rdar://problem/18001324> // When forcing the lock on the entire zone, make sure we are out of the critical section in each magazine static MALLOC_INLINE void szone_force_lock_magazine(szone_t *szone, magazine_t *mag) { while (1) { SZONE_MAGAZINE_PTR_LOCK(mag); if (!mag->alloc_underway) { return; } SZONE_MAGAZINE_PTR_UNLOCK(mag); yield(); } } static void szone_force_lock(szone_t *szone) { mag_index_t i; for (i = 0; i < szone->tiny_rack.num_magazines; ++i) { szone_force_lock_magazine(szone, &szone->tiny_rack.magazines[i]); } szone_force_lock_magazine(szone, &szone->tiny_rack.magazines[DEPOT_MAGAZINE_INDEX]); for (i = 0; i < szone->small_rack.num_magazines; ++i) { szone_force_lock_magazine(szone, &szone->small_rack.magazines[i]); } szone_force_lock_magazine(szone, &szone->small_rack.magazines[DEPOT_MAGAZINE_INDEX]); SZONE_LOCK(szone); } static void szone_force_unlock(szone_t *szone) { mag_index_t i; SZONE_UNLOCK(szone); for (i = -1; i < szone->small_rack.num_magazines; ++i) { SZONE_MAGAZINE_PTR_UNLOCK((&(szone->small_rack.magazines[i]))); } for (i = -1; i < szone->tiny_rack.num_magazines; ++i) { SZONE_MAGAZINE_PTR_UNLOCK((&(szone->tiny_rack.magazines[i]))); } } static void szone_reinit_lock(szone_t *szone) { mag_index_t i; SZONE_REINIT_LOCK(szone); for (i = -1; i < szone->small_rack.num_magazines; ++i) { SZONE_MAGAZINE_PTR_REINIT_LOCK((&(szone->small_rack.magazines[i]))); } for (i = -1; i < szone->tiny_rack.num_magazines; ++i) { SZONE_MAGAZINE_PTR_REINIT_LOCK((&(szone->tiny_rack.magazines[i]))); } } static boolean_t szone_locked(szone_t *szone) { mag_index_t i; int tookLock; tookLock = SZONE_TRY_LOCK(szone); if (tookLock == 0) { return 1; } SZONE_UNLOCK(szone); for (i = -1; i < szone->small_rack.num_magazines; ++i) { tookLock = SZONE_MAGAZINE_PTR_TRY_LOCK((&(szone->small_rack.magazines[i]))); if (tookLock == 0) { return 1; } SZONE_MAGAZINE_PTR_UNLOCK((&(szone->small_rack.magazines[i]))); } for (i = -1; i < szone->tiny_rack.num_magazines; ++i) { tookLock = SZONE_MAGAZINE_PTR_TRY_LOCK((&(szone->tiny_rack.magazines[i]))); if (tookLock == 0) { return 1; } SZONE_MAGAZINE_PTR_UNLOCK((&(szone->tiny_rack.magazines[i]))); } return 0; } size_t szone_pressure_relief(szone_t *szone, size_t goal) { size_t total = 0; MAGMALLOC_PRESSURERELIEFBEGIN((void *)szone, szone->basic_zone.zone_name, (int)goal); // DTrace USDT Probe MALLOC_TRACE(TRACE_malloc_memory_pressure | DBG_FUNC_START, (uint64_t)szone, goal, 0, 0); #if CONFIG_MADVISE_PRESSURE_RELIEF mag_index_t mag_index; magazine_t *tiny_depot_ptr = (&szone->tiny_rack.magazines[DEPOT_MAGAZINE_INDEX]); magazine_t *small_depot_ptr = (&szone->small_rack.magazines[DEPOT_MAGAZINE_INDEX]); for (mag_index = 0; mag_index < szone->tiny_rack.num_magazines; mag_index++) { size_t index; for (index = 0; index < szone->tiny_rack.region_generation->num_regions_allocated; ++index) { SZONE_LOCK(szone); region_t tiny = szone->tiny_rack.region_generation->hashed_regions[index]; if (!tiny || tiny == HASHRING_REGION_DEALLOCATED) { SZONE_UNLOCK(szone); continue; } magazine_t *mag_ptr = mag_lock_zine_for_region_trailer(szone->tiny_rack.magazines, REGION_TRAILER_FOR_TINY_REGION(tiny), MAGAZINE_INDEX_FOR_TINY_REGION(tiny)); SZONE_UNLOCK(szone); /* Ordering is important here, the magazine of a region may potentially change * during mag_lock_zine_for_region_trailer, so src_mag_index must be taken * after we've obtained the lock. */ mag_index_t src_mag_index = MAGAZINE_INDEX_FOR_TINY_REGION(tiny); /* We can (and must) ignore magazines that are already in the recirc depot. */ if (src_mag_index == DEPOT_MAGAZINE_INDEX) { SZONE_MAGAZINE_PTR_UNLOCK(mag_ptr); continue; } if (tiny == mag_ptr->mag_last_region && (mag_ptr->mag_bytes_free_at_end || mag_ptr->mag_bytes_free_at_start)) { tiny_finalize_region(&szone->tiny_rack, mag_ptr); } /* Because this region is currently in use, we can't safely madvise it while * it's attached to the magazine. For this operation we have to remove it from * the current mag, attach it to the depot and then madvise. */ recirc_list_extract(&szone->tiny_rack, mag_ptr, REGION_TRAILER_FOR_TINY_REGION(tiny)); int objects_in_use = tiny_free_detach_region(&szone->tiny_rack, mag_ptr, tiny); SZONE_MAGAZINE_PTR_LOCK(tiny_depot_ptr); MAGAZINE_INDEX_FOR_TINY_REGION(tiny) = DEPOT_MAGAZINE_INDEX; REGION_TRAILER_FOR_TINY_REGION(tiny)->pinned_to_depot = 0; size_t bytes_inplay = tiny_free_reattach_region(&szone->tiny_rack, tiny_depot_ptr, tiny); /* Fix up the metadata of the target magazine while the region is in the depot. */ mag_ptr->mag_num_bytes_in_objects -= bytes_inplay; mag_ptr->num_bytes_in_magazine -= TINY_REGION_PAYLOAD_BYTES; mag_ptr->mag_num_objects -= objects_in_use; /* Now we can drop the magazine lock of the source mag. */ SZONE_MAGAZINE_PTR_UNLOCK(mag_ptr); tiny_depot_ptr->mag_num_bytes_in_objects += bytes_inplay; tiny_depot_ptr->num_bytes_in_magazine += TINY_REGION_PAYLOAD_BYTES; tiny_depot_ptr->mag_num_objects -= objects_in_use; recirc_list_splice_last(&szone->tiny_rack, tiny_depot_ptr, REGION_TRAILER_FOR_TINY_REGION(tiny)); /* Actually do the scan, done holding the depot lock, the call will drop the lock * around the actual madvise syscalls. */ tiny_free_scan_madvise_free(&szone->tiny_rack, tiny_depot_ptr, tiny); /* Now the region is in the recirc depot, the next allocations to require more * blocks will come along and take one of these regions back out of the depot. * As OS X madvise's reuse on an per-region basis, we leave as many of these * regions in the depot as possible after memory pressure. */ SZONE_MAGAZINE_PTR_UNLOCK(tiny_depot_ptr); } } for (mag_index = 0; mag_index < szone->small_rack.num_magazines; mag_index++) { size_t index; for (index = 0; index < szone->small_rack.region_generation->num_regions_allocated; ++index) { SZONE_LOCK(szone); region_t small = szone->small_rack.region_generation->hashed_regions[index]; if (!small || small == HASHRING_REGION_DEALLOCATED) { SZONE_UNLOCK(szone); continue; } magazine_t *mag_ptr = mag_lock_zine_for_region_trailer(szone->small_rack.magazines, REGION_TRAILER_FOR_SMALL_REGION(small), MAGAZINE_INDEX_FOR_SMALL_REGION(small)); SZONE_UNLOCK(szone); /* Ordering is important here, the magazine of a region may potentially change * during mag_lock_zine_for_region_trailer, so src_mag_index must be taken * after we've obtained the lock. */ mag_index_t src_mag_index = MAGAZINE_INDEX_FOR_SMALL_REGION(small); /* We can (and must) ignore magazines that are already in the recirc depot. */ if (src_mag_index == DEPOT_MAGAZINE_INDEX) { SZONE_MAGAZINE_PTR_UNLOCK(mag_ptr); continue; } if (small == mag_ptr->mag_last_region && (mag_ptr->mag_bytes_free_at_end || mag_ptr->mag_bytes_free_at_start)) { small_finalize_region(&szone->small_rack, mag_ptr); } /* Because this region is currently in use, we can't safely madvise it while * it's attached to the magazine. For this operation we have to remove it from * the current mag, attach it to the depot and then madvise. */ recirc_list_extract(&szone->small_rack, mag_ptr, REGION_TRAILER_FOR_SMALL_REGION(small)); int objects_in_use = small_free_detach_region(&szone->small_rack, mag_ptr, small); SZONE_MAGAZINE_PTR_LOCK(small_depot_ptr); MAGAZINE_INDEX_FOR_SMALL_REGION(small) = DEPOT_MAGAZINE_INDEX; REGION_TRAILER_FOR_SMALL_REGION(small)->pinned_to_depot = 0; size_t bytes_inplay = small_free_reattach_region(&szone->small_rack, small_depot_ptr, small); /* Fix up the metadata of the target magazine while the region is in the depot. */ mag_ptr->mag_num_bytes_in_objects -= bytes_inplay; mag_ptr->num_bytes_in_magazine -= SMALL_REGION_PAYLOAD_BYTES; mag_ptr->mag_num_objects -= objects_in_use; /* Now we can drop the magazine lock of the source mag. */ SZONE_MAGAZINE_PTR_UNLOCK(mag_ptr); small_depot_ptr->mag_num_bytes_in_objects += bytes_inplay; small_depot_ptr->num_bytes_in_magazine += SMALL_REGION_PAYLOAD_BYTES; small_depot_ptr->mag_num_objects -= objects_in_use; recirc_list_splice_last(&szone->small_rack, small_depot_ptr, REGION_TRAILER_FOR_SMALL_REGION(small)); /* Actually do the scan, done holding the depot lock, the call will drop the lock * around the actual madvise syscalls. */ small_free_scan_madvise_free(&szone->small_rack, small_depot_ptr, small); /* Now the region is in the recirc depot, the next allocations to require more * blocks will come along and take one of these regions back out of the depot. * As OS X madvise's reuse on an per-region basis, we leave as many of these * regions in the depot as possible after memory pressure. */ SZONE_MAGAZINE_PTR_UNLOCK(small_depot_ptr); } } #endif #if CONFIG_LARGE_CACHE if (szone->flotsam_enabled) { SZONE_LOCK(szone); // stack allocated copy of the death-row cache int idx = szone->large_entry_cache_oldest, idx_max = szone->large_entry_cache_newest; large_entry_t local_entry_cache[LARGE_ENTRY_CACHE_SIZE]; memcpy((void *)local_entry_cache, (void *)szone->large_entry_cache, sizeof(local_entry_cache)); szone->large_entry_cache_oldest = szone->large_entry_cache_newest = 0; szone->large_entry_cache[0].address = 0x0; szone->large_entry_cache[0].size = 0; szone->large_entry_cache_bytes = 0; szone->large_entry_cache_reserve_bytes = 0; szone->flotsam_enabled = FALSE; SZONE_UNLOCK(szone); // deallocate the death-row cache outside the zone lock size_t total = 0; while (idx != idx_max) { mvm_deallocate_pages((void *)local_entry_cache[idx].address, local_entry_cache[idx].size, 0); total += local_entry_cache[idx].size; if (++idx == LARGE_ENTRY_CACHE_SIZE) { idx = 0; } } if (0 != local_entry_cache[idx].address && 0 != local_entry_cache[idx].size) { mvm_deallocate_pages((void *)local_entry_cache[idx].address, local_entry_cache[idx].size, 0); total += local_entry_cache[idx].size; } } #endif MAGMALLOC_PRESSURERELIEFEND((void *)szone, szone->basic_zone.zone_name, (int)goal, (int)total); // DTrace USDT Probe MALLOC_TRACE(TRACE_malloc_memory_pressure | DBG_FUNC_END, (uint64_t)szone, goal, total, 0); return total; } boolean_t scalable_zone_statistics(malloc_zone_t *zone, malloc_statistics_t *stats, unsigned subzone) { szone_t *szone = (szone_t *)zone; switch (subzone) { case 0: { size_t s = 0; unsigned t = 0; size_t u = 0; mag_index_t mag_index; for (mag_index = -1; mag_index < szone->tiny_rack.num_magazines; mag_index++) { s += szone->tiny_rack.magazines[mag_index].mag_bytes_free_at_start; s += szone->tiny_rack.magazines[mag_index].mag_bytes_free_at_end; t += szone->tiny_rack.magazines[mag_index].mag_num_objects; u += szone->tiny_rack.magazines[mag_index].mag_num_bytes_in_objects; } stats->blocks_in_use = t; stats->size_in_use = u; stats->size_allocated = (szone->tiny_rack.num_regions - szone->tiny_rack.num_regions_dealloc) * TINY_REGION_SIZE; stats->max_size_in_use = stats->size_allocated - s; return 1; } case 1: { size_t s = 0; unsigned t = 0; size_t u = 0; mag_index_t mag_index; for (mag_index = -1; mag_index < szone->small_rack.num_magazines; mag_index++) { s += szone->small_rack.magazines[mag_index].mag_bytes_free_at_start; s += szone->small_rack.magazines[mag_index].mag_bytes_free_at_end; t += szone->small_rack.magazines[mag_index].mag_num_objects; u += szone->small_rack.magazines[mag_index].mag_num_bytes_in_objects; } stats->blocks_in_use = t; stats->size_in_use = u; stats->size_allocated = (szone->small_rack.num_regions - szone->small_rack.num_regions_dealloc) * SMALL_REGION_SIZE; stats->max_size_in_use = stats->size_allocated - s; return 1; } case 2: stats->blocks_in_use = szone->num_large_objects_in_use; stats->size_in_use = szone->num_bytes_in_large_objects; stats->max_size_in_use = stats->size_allocated = stats->size_in_use; return 1; case 3: stats->blocks_in_use = 0; // DEPRECATED szone->num_huge_entries; stats->size_in_use = 0; // DEPRECATED szone->num_bytes_in_huge_objects; stats->max_size_in_use = stats->size_allocated = 0; return 1; } return 0; } static void szone_statistics(szone_t *szone, malloc_statistics_t *stats) { size_t large; size_t s = 0; unsigned t = 0; size_t u = 0; mag_index_t mag_index; for (mag_index = -1; mag_index < szone->tiny_rack.num_magazines; mag_index++) { s += szone->tiny_rack.magazines[mag_index].mag_bytes_free_at_start; s += szone->tiny_rack.magazines[mag_index].mag_bytes_free_at_end; t += szone->tiny_rack.magazines[mag_index].mag_num_objects; u += szone->tiny_rack.magazines[mag_index].mag_num_bytes_in_objects; } for (mag_index = -1; mag_index < szone->small_rack.num_magazines; mag_index++) { s += szone->small_rack.magazines[mag_index].mag_bytes_free_at_start; s += szone->small_rack.magazines[mag_index].mag_bytes_free_at_end; t += szone->small_rack.magazines[mag_index].mag_num_objects; u += szone->small_rack.magazines[mag_index].mag_num_bytes_in_objects; } large = szone->num_bytes_in_large_objects + 0; // DEPRECATED szone->num_bytes_in_huge_objects; stats->blocks_in_use = t + szone->num_large_objects_in_use + 0; // DEPRECATED szone->num_huge_entries; stats->size_in_use = u + large; stats->max_size_in_use = stats->size_allocated = (szone->tiny_rack.num_regions - szone->tiny_rack.num_regions_dealloc) * TINY_REGION_SIZE + (szone->small_rack.num_regions - szone->small_rack.num_regions_dealloc) * SMALL_REGION_SIZE + large; // Now we account for the untouched areas stats->max_size_in_use -= s; } const struct malloc_introspection_t szone_introspect = { (void *)szone_ptr_in_use_enumerator, (void *)szone_good_size, (void *)szone_check, (void *)szone_print, szone_log, (void *)szone_force_lock, (void *)szone_force_unlock, (void *)szone_statistics, (void *)szone_locked, NULL, NULL, NULL, NULL, /* Zone enumeration version 7 and forward. */ (void *)szone_reinit_lock, // reinit_lock version 9 and foward }; // marked as const to spare the DATA section szone_t * create_scalable_szone(size_t initial_size, unsigned debug_flags) { szone_t *szone; #if defined(__i386__) || defined(__x86_64__) if (_COMM_PAGE_VERSION_REQD > (*((uint16_t *)_COMM_PAGE_VERSION))) { MALLOC_REPORT_FATAL_ERROR((*((uint16_t *)_COMM_PAGE_VERSION)), "comm page version mismatch"); } #endif /* get memory for the zone. */ szone = mvm_allocate_pages(SZONE_PAGED_SIZE, 0, 0, VM_MEMORY_MALLOC); if (!szone) { return NULL; } /* set up the szone structure */ #if 0 #warning CHECK_REGIONS enabled debug_flags |= CHECK_REGIONS; #endif #if 0 #warning LOG enabled szone->log_address = ~0; #endif if (mvm_aslr_enabled()) { debug_flags &= ~DISABLE_ASLR; } else { debug_flags |= DISABLE_ASLR; } #if CONFIG_SMALL_CUTOFF_DYNAMIC || CONFIG_LARGE_CACHE uint64_t memsize = platform_hw_memsize(); #endif bool is_largemem = false; #if CONFIG_SMALL_CUTOFF_LARGEMEM is_largemem = true; #elif CONFIG_SMALL_CUTOFF_DYNAMIC // TODO: rdar://problem/35395572 // switch to largemem thresholds on devices with > 2 cores and > 2gb of memory uint32_t nproc = platform_cpu_count(); is_largemem = (nproc > 2) && (memsize > (2ull << 30)); #endif if (is_largemem) { debug_flags |= MALLOC_EXTENDED_SMALL_SLOTS; szone->is_largemem = 1; szone->large_threshold = LARGE_THRESHOLD_LARGEMEM; szone->vm_copy_threshold = VM_COPY_THRESHOLD_LARGEMEM; } else { debug_flags &= ~MALLOC_EXTENDED_SMALL_SLOTS; szone->is_largemem = 0; szone->large_threshold = LARGE_THRESHOLD; szone->vm_copy_threshold = VM_COPY_THRESHOLD; } // Query the number of configured processors. // Uniprocessor case gets just one tiny and one small magazine (whose index is zero). This gives // the same behavior as the original scalable malloc. MP gets per-CPU magazines // that scale (way) better. unsigned int max_mags = mag_max_magazines(); uint32_t num_magazines = (max_mags > 1) ? MIN(max_mags, TINY_MAX_MAGAZINES) : 1; rack_init(&szone->tiny_rack, RACK_TYPE_TINY, num_magazines, debug_flags); rack_init(&szone->small_rack, RACK_TYPE_SMALL, num_magazines, debug_flags); #if CONFIG_LARGE_CACHE // madvise(..., MADV_REUSABLE) death-row arrivals above this threshold [~0.1%] szone->large_entry_cache_reserve_limit = (size_t)(memsize >> 10); /* <rdar://problem/6610904> Reset protection when returning a previous large allocation? */ int32_t libSystemVersion = NSVersionOfLinkTimeLibrary("System"); if ((-1 != libSystemVersion) && ((libSystemVersion >> 16) < 112) /* CFSystemVersionSnowLeopard */) { szone->large_legacy_reset_mprotect = TRUE; } else { szone->large_legacy_reset_mprotect = FALSE; } #endif // Initialize the security token. szone->cookie = (uintptr_t)malloc_entropy[0]; szone->basic_zone.version = 10; szone->basic_zone.size = (void *)szone_size; szone->basic_zone.malloc = (void *)szone_malloc; szone->basic_zone.calloc = (void *)szone_calloc; szone->basic_zone.valloc = (void *)szone_valloc; szone->basic_zone.free = (void *)szone_free; szone->basic_zone.realloc = (void *)szone_realloc; szone->basic_zone.destroy = (void *)szone_destroy; szone->basic_zone.batch_malloc = (void *)szone_batch_malloc; szone->basic_zone.batch_free = (void *)szone_batch_free; szone->basic_zone.introspect = (struct malloc_introspection_t *)&szone_introspect; szone->basic_zone.memalign = (void *)szone_memalign; szone->basic_zone.free_definite_size = (void *)szone_free_definite_size; szone->basic_zone.pressure_relief = (void *)szone_pressure_relief; szone->basic_zone.claimed_address = (void *)szone_claimed_address; /* Set to zero once and for all as required by CFAllocator. */ szone->basic_zone.reserved1 = 0; /* Set to zero once and for all as required by CFAllocator. */ szone->basic_zone.reserved2 = 0; /* Prevent overwriting the function pointers in basic_zone. */ mprotect(szone, sizeof(szone->basic_zone), PROT_READ); szone->debug_flags = debug_flags; _malloc_lock_init(&szone->large_szone_lock); szone->cpu_id_key = -1UL; // Unused. CHECK(szone, __PRETTY_FUNCTION__); return szone; } malloc_zone_t * create_scalable_zone(size_t initial_size, unsigned debug_flags) { return (malloc_zone_t *) create_scalable_szone(initial_size, debug_flags); } /* vim: set noet:ts=4:sw=4:cindent: */ |