Loading...
--- libmalloc/libmalloc-474.0.13/src/magazine_tiny.c
+++ libmalloc/libmalloc-166.251.2/src/magazine_tiny.c
@@ -38,6 +38,25 @@
// reduce the msize part below zero (not checked).
#define TINY_MAG_LAST_FREE_PTR_DEC_MSIZE(x, msize_delta) (x) = ((void *)(x) - (msize_delta))
+static MALLOC_INLINE MALLOC_ALWAYS_INLINE
+mag_index_t
+tiny_mag_get_thread_index(void)
+{
+#if CONFIG_TINY_USES_HYPER_SHIFT
+ if (os_likely(_os_cpu_number_override == -1)) {
+ return _os_cpu_number() >> hyper_shift;
+ } else {
+ return _os_cpu_number_override >> hyper_shift;
+ }
+#else // CONFIG_SMALL_USES_HYPER_SHIFT
+ if (os_likely(_os_cpu_number_override == -1)) {
+ return _os_cpu_number();
+ } else {
+ return _os_cpu_number_override;
+ }
+#endif // CONFIG_SMALL_USES_HYPER_SHIFT
+}
+
static inline grain_t
tiny_slot_from_msize(msize_t msize)
{
@@ -55,18 +74,14 @@
// check whether the previous block is in the tiny region and a block header
// if so, then the size of the previous block is one, and there is no stored
// size.
- if (ptr != TINY_REGION_HEAP_BASE(TINY_REGION_FOR_PTR(ptr))) {
+ if (ptr != TINY_REGION_FOR_PTR(ptr)) {
void *prev_block = (void *)((uintptr_t)ptr - TINY_QUANTUM);
uint32_t *prev_header = TINY_BLOCK_HEADER_FOR_PTR(prev_block);
msize_t prev_index = TINY_INDEX_FOR_PTR(prev_block);
if (BITARRAY_BIT(prev_header, prev_index)) {
return 1;
}
- msize_t *prev_msize_ptr = &TINY_PREVIOUS_MSIZE(ptr);
- // This is a speculative read of potentially in-use app memory, we need
- // to use _malloc_read_uint16_via_rsp to avoid triggering warnings in
- // memory diagnostic tools.
- return _malloc_read_uint16_via_rsp(prev_msize_ptr);
+ return TINY_PREVIOUS_MSIZE(ptr);
}
// don't read possibly unmapped memory before the beginning of the region
return 0;
@@ -184,160 +199,6 @@
}
static MALLOC_INLINE void
-zero_tiny_free_inline_meta(void *ptr, msize_t msize)
-{
- if (malloc_zero_policy == MALLOC_ZERO_ON_FREE) {
- *((tiny_free_list_t *)ptr) = (tiny_free_list_t){ 0 };
- if (msize > 1) {
- TINY_FREE_SIZE(ptr) = 0;
- void *follower = FOLLOWING_TINY_PTR(ptr, msize);
- TINY_PREVIOUS_MSIZE(follower) = 0;
- } else if (msize == 0) {
- TINY_FREE_SIZE(ptr) = 0;
- }
- }
-}
-
-static MALLOC_INLINE void
-zero_tiny_free_inline_meta_following(void *ptr, msize_t msize)
-{
- if (malloc_zero_policy == MALLOC_ZERO_ON_FREE) {
- if (msize > 1) {
- void *follower = FOLLOWING_TINY_PTR(ptr, msize);
- TINY_PREVIOUS_MSIZE(follower) = 0;
- }
- }
-}
-
-static MALLOC_COLD MALLOC_NOINLINE void
-tiny_zero_corruption_abort(void *ptr, msize_t msize)
-{
- uint8_t *bytes = ptr;
- size_t size = TINY_BYTES_FOR_MSIZE(msize);
- uint8_t *start = bytes, *end = bytes + size;
- // scan to the first non-NUL byte
- while (*bytes == '\0') {
- bytes++;
- }
-
- unsigned int offset = (unsigned int)(bytes - start);
- malloc_zone_error(MALLOC_ABORT_ON_CORRUPTION, true,
- "Corruption detected in block %p of size %u at offset %u, "
- "first 32 bytes at that offset are "
- "%02X %02X %02X %02X %02X %02X %02X %02X | "
- "%02X %02X %02X %02X %02X %02X %02X %02X | "
- "%02X %02X %02X %02X %02X %02X %02X %02X | "
- "%02X %02X %02X %02X %02X %02X %02X %02X\n",
- ptr, (unsigned int)size, offset,
- (bytes + 0) < end ? *(bytes + 0) : 0,
- (bytes + 1) < end ? *(bytes + 1) : 0,
- (bytes + 2) < end ? *(bytes + 2) : 0,
- (bytes + 3) < end ? *(bytes + 3) : 0,
- (bytes + 4) < end ? *(bytes + 4) : 0,
- (bytes + 5) < end ? *(bytes + 5) : 0,
- (bytes + 6) < end ? *(bytes + 6) : 0,
- (bytes + 7) < end ? *(bytes + 7) : 0,
- (bytes + 8) < end ? *(bytes + 8) : 0,
- (bytes + 9) < end ? *(bytes + 9) : 0,
- (bytes + 10) < end ? *(bytes + 10) : 0,
- (bytes + 11) < end ? *(bytes + 11) : 0,
- (bytes + 12) < end ? *(bytes + 12) : 0,
- (bytes + 13) < end ? *(bytes + 13) : 0,
- (bytes + 14) < end ? *(bytes + 14) : 0,
- (bytes + 15) < end ? *(bytes + 15) : 0,
- (bytes + 16) < end ? *(bytes + 16) : 0,
- (bytes + 17) < end ? *(bytes + 17) : 0,
- (bytes + 18) < end ? *(bytes + 18) : 0,
- (bytes + 19) < end ? *(bytes + 19) : 0,
- (bytes + 20) < end ? *(bytes + 20) : 0,
- (bytes + 21) < end ? *(bytes + 21) : 0,
- (bytes + 22) < end ? *(bytes + 22) : 0,
- (bytes + 23) < end ? *(bytes + 23) : 0,
- (bytes + 24) < end ? *(bytes + 24) : 0,
- (bytes + 25) < end ? *(bytes + 25) : 0,
- (bytes + 26) < end ? *(bytes + 26) : 0,
- (bytes + 27) < end ? *(bytes + 27) : 0,
- (bytes + 28) < end ? *(bytes + 28) : 0,
- (bytes + 29) < end ? *(bytes + 29) : 0,
- (bytes + 30) < end ? *(bytes + 30) : 0,
- (bytes + 31) < end ? *(bytes + 31) : 0);
-}
-
-static MALLOC_INLINE void
-tiny_check_zero_or_clear(void *ptr, msize_t msize, boolean_t clear)
-{
- switch (malloc_zero_policy) {
- case MALLOC_ZERO_ON_FREE:
- if (zero_on_free_should_sample() &&
- _malloc_memcmp_zero_aligned8(ptr, TINY_BYTES_FOR_MSIZE(msize))) {
- tiny_zero_corruption_abort(ptr, msize);
- }
- break;
- case MALLOC_ZERO_NONE:
- if (!clear) {
- break;
- }
- // fall through
- case MALLOC_ZERO_ON_ALLOC:
- memset(ptr, '\0', TINY_BYTES_FOR_MSIZE(msize));
- break;
- }
-}
-
-// Check the inline metadata of a free block that hasn't already been verified:
-// - the previous freelist pointer
-// - agreement of the inline msizes
-//
-// Then clear all the inline metadata.
-static MALLOC_NOINLINE void
-_tiny_check_and_zero_inline_meta_from_freelist(rack_t *rack, void *ptr,
- msize_t msize)
-{
- tiny_free_list_t *free_ptr = ptr;
-
- // check the previous pointer
- (void)free_list_unchecksum_ptr(rack, &free_ptr->previous);
- // zero both pointers
- *free_ptr = (tiny_free_list_t){ 0 };
-
- // check agreement between msizes and zero
- if (msize > 1) {
- msize_t leading_free_size = TINY_FREE_SIZE(ptr);
- void *follower = FOLLOWING_TINY_PTR(ptr, msize);
- msize_t trailing_free_size = TINY_PREVIOUS_MSIZE(follower);
-
- if (leading_free_size != trailing_free_size) {
- malloc_zone_error(MALLOC_ABORT_ON_CORRUPTION, true,
- "Corruption of free object %p: msizes %u/%u disagree\n",
- ptr, leading_free_size, trailing_free_size);
- } else if (leading_free_size != msize) {
- malloc_zone_error(MALLOC_ABORT_ON_CORRUPTION, true,
- "Corruption at %p: unexpected msizes %u/%u\n",
- ptr, leading_free_size, msize);
- }
-
- TINY_FREE_SIZE(ptr) = 0;
- TINY_PREVIOUS_MSIZE(follower) = 0;
- } else if (msize == 0 && TINY_FREE_SIZE(ptr) != 0) {
- malloc_zone_error(MALLOC_ABORT_ON_CORRUPTION, true,
- "Corruption at %p: unexpected nonzero msize %u\n", ptr,
- TINY_FREE_SIZE(ptr));
- }
-}
-
-static MALLOC_ALWAYS_INLINE MALLOC_INLINE void
-tiny_check_and_zero_inline_meta_from_freelist(rack_t *rack, void *ptr,
- msize_t msize)
-{
- if (malloc_zero_policy != MALLOC_ZERO_ON_FREE) {
- return;
- }
-
- _tiny_check_and_zero_inline_meta_from_freelist(rack, ptr, msize);
-}
-
-
-static MALLOC_INLINE void
set_tiny_meta_header_free(const void *ptr, msize_t msize)
{
// !msize is acceptable and means 65536
@@ -416,7 +277,7 @@
}
previous_index = index - previous_msize;
- previous_ptr = TINY_PTR_FOR_INDEX(previous_index, TINY_REGION_FOR_PTR(ptr));
+ previous_ptr = (void *)((uintptr_t)TINY_REGION_FOR_PTR(ptr) + TINY_BYTES_FOR_MSIZE(previous_index));
if (!BITARRAY_BIT(block_header, previous_index)) {
return NULL;
}
@@ -430,72 +291,6 @@
// conservative check did match true check
*prev_msize = previous_msize;
return previous_ptr;
-}
-
-// Given a region and a slot index, scans regions that precede the region on
-// the magazine region list for one that has something on its free list for
-// the given slot and returns the address of the last such block, or NULL if
-// there is none. To reduce overhead, we scan forward from the first region
-// looking for our region and noting the last on the freelist for the given slot
-// for each earlier region, stopping once we have looked at 5 regions if we did
-// not reach our own. This has the effect of keeping the blocks for early
-// regions near the front of the freelist while not spending large amounts of
-// time looking for the "best" place to put this region's free blocks when there
-// are many regions in the magazine.
-static MALLOC_INLINE void *
-tiny_earlier_region_last_free(magazine_t *tiny_mag_ptr,
- region_trailer_t *trailer, grain_t slot)
-{
- int count = 0;
- uint16_t target_block = 0;
- region_trailer_t *target_trailer = NULL;
- region_trailer_t *next_trailer = tiny_mag_ptr->firstNode;
-
- while (next_trailer && next_trailer != trailer && count++ < 5) {
- tiny_region_t r = TINY_REGION_FOR_PTR(next_trailer);
- uint16_t block = r->free_blocks_by_slot[slot].last_block;
- if (block) {
- target_block = block;
- target_trailer = next_trailer;
- }
- next_trailer = next_trailer->next;
- }
- return target_block ? TINY_PTR_FOR_INDEX(target_block - 1,
- TINY_REGION_FOR_PTR(target_trailer)) : NULL;
-}
-
-static MALLOC_INLINE void
-tiny_update_region_free_list_for_remove(grain_t slot, tiny_free_list_t *ptr,
- tiny_free_list_t *new_head)
-{
- uint16_t ptr_index = TINY_INDEX_FOR_PTR(ptr);
- tiny_region_t ptr_region = TINY_REGION_FOR_PTR(ptr);
- region_free_blocks_t *blocks = &ptr_region->free_blocks_by_slot[slot];
- MALLOC_ASSERT(ptr_index == blocks->first_block - 1);
-
- if (new_head && (TINY_REGION_FOR_PTR(new_head) == TINY_REGION_FOR_PTR(ptr))) {
- uint16_t new_head_block = TINY_INDEX_FOR_PTR(new_head) + 1;
- if (blocks->first_block == blocks->last_block) {
- blocks->last_block = new_head_block;
- }
- blocks->first_block = new_head_block;
- } else {
- // No more entries in this region.
- blocks->first_block = blocks->last_block = 0;
- }
-}
-
-void
-tiny_print_region_free_list(void *ptr, grain_t slot)
-{
- tiny_region_t region = TINY_REGION_FOR_PTR(ptr);
- region_free_blocks_t *blocks = ®ion->free_blocks_by_slot[slot];
- malloc_printf("For region %p, first block: %d (%p), last block: %d (%p)\n",
- region,
- blocks->first_block,
- blocks->first_block ? TINY_PTR_FOR_INDEX(blocks->first_block - 1, region) : (void *)0,
- blocks->last_block,
- blocks->last_block ? TINY_PTR_FOR_INDEX(blocks->last_block - 1, region) : (void *)0);
}
/*
@@ -532,77 +327,14 @@
"ptr=%p slot=%d free_head=%p\n", ptr, slot, (void *)free_head);
}
#endif
+ free_head->previous.u = free_list_checksum_ptr(rack, free_ptr);
} else {
BITMAPV_SET(tiny_mag_ptr->mag_bitmap, slot);
}
-
- tiny_region_t region = TINY_REGION_FOR_PTR(ptr);
- region_free_blocks_t *free_blocks = ®ion->free_blocks_by_slot[slot];
- uint16_t first_free_block_index = free_blocks->first_block;
- uint16_t this_block_index = TINY_INDEX_FOR_PTR(ptr);
-
- if (first_free_block_index) {
- // This region already has something on its free list.
- tiny_free_list_t *old_first_free = TINY_PTR_FOR_INDEX(first_free_block_index - 1, region);
- tiny_free_list_t *prev_ptr = free_list_unchecksum_ptr(rack, &old_first_free->previous);
- if (!prev_ptr) {
- // Old first item was the first item in the magazine free list -
- // update the magazine head pointer to point to this block.
- tiny_mag_ptr->mag_free_list[slot].p = free_ptr;
- } else {
- prev_ptr->next.u = free_list_checksum_ptr(rack, free_ptr); // XXX
- }
-
- // Set our previous pointer to the one from the old first block.
- // It's already checksummed, so just copy it directly. It is NULL if
- // the old first block was also the first block on the magazine free
- // list.
- free_ptr->previous.u = old_first_free->previous.u;
-
- // Our "next" pointer always points to the block that used to be first
- // and we are always its predecessor.
- free_ptr->next.u = free_list_checksum_ptr(rack, old_first_free);
- old_first_free->previous.u = free_list_checksum_ptr(rack, free_ptr);
-
- // Update the first free block index for this region.
- free_blocks->first_block = this_block_index + 1;
- } else {
- // Free list for this region is empty. Add ourselves to the magazine
- // free list between the last block of the preceding region that has
- // a free block and the first block of the next region with a free
- // block (either of which may not exist).
- tiny_free_list_t *prev_free = NULL;
- tiny_free_list_t *next_free;
-
- // If the magazine free list is empty, we know we are going to add at
- // the front. Otherwise, find the correct place. If we are freeing to
- // the recirc depot, we can always free to the front because we don't
- // care about ordering in the depot (since no allocations occur there).
- mag_index_t mag_index = MAGAZINE_INDEX_FOR_TINY_REGION(region);
- if (mag_index != DEPOT_MAGAZINE_INDEX
- && tiny_mag_ptr->mag_free_list[slot].p) {
- region_trailer_t *trailer = REGION_TRAILER_FOR_TINY_REGION(region);
- prev_free = tiny_earlier_region_last_free(tiny_mag_ptr, trailer, slot);
- }
- if (!prev_free) {
- // We are becoming the head of the magazine free list.
- next_free = tiny_mag_ptr->mag_free_list[slot].p;
- tiny_mag_ptr->mag_free_list[slot].p = free_ptr;
- } else {
- next_free = free_list_unchecksum_ptr(rack, &prev_free->next);
- prev_free->next.u = free_list_checksum_ptr(rack, free_ptr);
- }
- free_ptr->previous.u = free_list_checksum_ptr(rack, prev_free);
-
- if (next_free) {
- next_free->previous.u = free_list_checksum_ptr(rack, free_ptr);
- }
- free_ptr->next.u = free_list_checksum_ptr(rack, next_free);
-
- // Set the first and last free block index for this region.
- free_blocks->first_block = free_blocks->last_block =
- this_block_index + 1;
- }
+ free_ptr->previous.u = free_list_checksum_ptr(rack, NULL);
+ free_ptr->next.u = free_list_checksum_ptr(rack, free_head);
+
+ tiny_mag_ptr->mag_free_list[slot].p = free_ptr;
}
/*
@@ -665,24 +397,6 @@
// We know free_ptr is already checksummed, so we don't need to do it
// again.
next->previous = free_ptr->previous;
- }
-
- tiny_region_t region = TINY_REGION_FOR_PTR(ptr);
- region_free_blocks_t *free_blocks = ®ion->free_blocks_by_slot[slot];
- uint16_t this_block_index = TINY_INDEX_FOR_PTR(ptr);
-
- boolean_t is_first = free_blocks->first_block == this_block_index + 1;
- boolean_t is_last = free_blocks->last_block == this_block_index + 1;
-
- if (is_first && is_last) {
- // Removing the one and only item on the list. Set both block indices to 0.
- free_blocks->first_block = free_blocks->last_block = 0;
- } else if (is_first) {
- MALLOC_ASSERT(next);
- free_blocks->first_block = TINY_INDEX_FOR_PTR(next) + 1;
- } else if (is_last) {
- MALLOC_ASSERT(previous);
- free_blocks->last_block = TINY_INDEX_FOR_PTR(previous) + 1;
}
}
@@ -705,7 +419,7 @@
//
if (tiny_mag_ptr->mag_bytes_free_at_end) {
- last_block = (void *)((uintptr_t)TINY_REGION_HEAP_END(tiny_mag_ptr->mag_last_region) - tiny_mag_ptr->mag_bytes_free_at_end);
+ last_block = (void *)((uintptr_t)TINY_REGION_END(tiny_mag_ptr->mag_last_region) - tiny_mag_ptr->mag_bytes_free_at_end);
last_msize = TINY_MSIZE_FOR_BYTES(tiny_mag_ptr->mag_bytes_free_at_end);
last_header = TINY_BLOCK_HEADER_FOR_PTR(last_block);
last_index = TINY_INDEX_FOR_PTR(last_block);
@@ -728,9 +442,6 @@
if (previous_block) {
set_tiny_meta_header_middle(last_block);
tiny_free_list_remove_ptr(rack, tiny_mag_ptr, previous_block, previous_msize);
- // zero out the trailing inline msize of the previous block to
- // connect its zero prefix to the last block
- zero_tiny_free_inline_meta_following(previous_block, previous_msize);
last_block = previous_block;
last_msize += previous_msize;
}
@@ -743,7 +454,7 @@
#if CONFIG_ASLR_INTERNAL
// Coalesce the big free block at start with any following free blocks
if (tiny_mag_ptr->mag_bytes_free_at_start) {
- last_block = TINY_REGION_HEAP_BASE(tiny_mag_ptr->mag_last_region);
+ last_block = TINY_REGION_ADDRESS(tiny_mag_ptr->mag_last_region);
last_msize = TINY_MSIZE_FOR_BYTES(tiny_mag_ptr->mag_bytes_free_at_start);
void *next_block = (void *)((uintptr_t)last_block + tiny_mag_ptr->mag_bytes_free_at_start);
@@ -756,9 +467,6 @@
msize_t next_msize = get_tiny_free_size(next_block);
set_tiny_meta_header_middle(next_block);
tiny_free_list_remove_ptr(rack, tiny_mag_ptr, next_block, next_msize);
- // zero inline metadata of next_block to continue the zero prefix of
- // the big starting free block
- zero_tiny_free_inline_meta(next_block, next_msize);
last_msize += next_msize;
}
@@ -774,12 +482,12 @@
int
tiny_free_detach_region(rack_t *rack, magazine_t *tiny_mag_ptr, region_t r)
{
- uintptr_t start = (uintptr_t)TINY_REGION_HEAP_BASE(r);
+ uintptr_t start = (uintptr_t)TINY_REGION_ADDRESS(r);
uintptr_t current = start;
- uintptr_t limit = (uintptr_t)TINY_REGION_HEAP_END(r);
+ uintptr_t limit = (uintptr_t)TINY_REGION_END(r);
boolean_t is_free;
msize_t msize;
- region_trailer_t *trailer = REGION_TRAILER_FOR_TINY_REGION(r);
+ int total_alloc = 0;
while (current < limit) {
msize = get_tiny_meta_header((void *)current, &is_free);
@@ -795,21 +503,23 @@
}
if (is_free) {
tiny_free_list_remove_ptr(rack, tiny_mag_ptr, (void *)current, msize);
+ } else {
+ total_alloc++;
}
current += TINY_BYTES_FOR_MSIZE(msize);
}
- return trailer->objects_in_use;
+ return total_alloc;
}
size_t
tiny_free_reattach_region(rack_t *rack, magazine_t *tiny_mag_ptr, region_t r)
{
- uintptr_t start = (uintptr_t)TINY_REGION_HEAP_BASE(r);
+ uintptr_t start = (uintptr_t)TINY_REGION_ADDRESS(r);
uintptr_t current = start;
- uintptr_t limit = (uintptr_t)TINY_REGION_HEAP_END(r);
+ uintptr_t limit = (uintptr_t)TINY_REGION_END(r);
boolean_t is_free;
msize_t msize;
- size_t bytes_used = REGION_TRAILER_FOR_TINY_REGION(r)->bytes_used;
+ size_t total_alloc = 0;
while (current < limit) {
msize = get_tiny_meta_header((void *)current, &is_free);
@@ -825,10 +535,12 @@
}
if (is_free) {
tiny_free_list_add_ptr(rack, tiny_mag_ptr, (void *)current, msize);
+ } else {
+ total_alloc += TINY_BYTES_FOR_MSIZE(msize);
}
current += TINY_BYTES_FOR_MSIZE(msize);
}
- return bytes_used;
+ return total_alloc;
}
typedef struct {
@@ -838,12 +550,12 @@
void
tiny_free_scan_madvise_free(rack_t *rack, magazine_t *depot_ptr, region_t r)
{
- uintptr_t start = (uintptr_t)TINY_REGION_HEAP_BASE(r);
+ uintptr_t start = (uintptr_t)TINY_REGION_ADDRESS(r);
uintptr_t current = start;
- uintptr_t limit = (uintptr_t)TINY_REGION_HEAP_END(r);
+ uintptr_t limit = (uintptr_t)TINY_REGION_END(r);
boolean_t is_free;
msize_t msize;
- tiny_pg_pair_t advisory[((TINY_HEAP_SIZE + vm_kernel_page_size - 1) >> vm_kernel_page_shift) >>
+ tiny_pg_pair_t advisory[((TINY_REGION_PAYLOAD_BYTES + vm_page_quanta_size - 1) >> vm_page_quanta_shift) >>
1]; // 256bytes stack allocated
int advisories = 0;
@@ -878,7 +590,7 @@
uintptr_t pgHi = trunc_page_kernel(current + TINY_BYTES_FOR_MSIZE(msize) - sizeof(msize_t));
if (pgLo < pgHi) {
- advisory[advisories].pnum = (pgLo - (uintptr_t)r) >> vm_kernel_page_shift;
+ advisory[advisories].pnum = (pgLo - start) >> vm_kernel_page_shift;
advisory[advisories].size = (pgHi - pgLo) >> vm_kernel_page_shift;
advisories++;
}
@@ -899,7 +611,7 @@
OSAtomicIncrement32Barrier(&(REGION_TRAILER_FOR_TINY_REGION(r)->pinned_to_depot));
SZONE_MAGAZINE_PTR_UNLOCK(depot_ptr);
for (i = 0; i < advisories; ++i) {
- uintptr_t addr = (advisory[i].pnum << vm_kernel_page_shift) + (uintptr_t)r;
+ uintptr_t addr = (advisory[i].pnum << vm_kernel_page_shift) + start;
size_t size = advisory[i].size << vm_kernel_page_shift;
mvm_madvise_free(rack, r, addr, addr + size, NULL, rack->debug_flags & MALLOC_DO_SCRIBBLE);
@@ -909,7 +621,6 @@
}
}
-#if CONFIG_RECIRC_DEPOT
static region_t
tiny_find_msize_region(rack_t *rack, magazine_t *tiny_mag_ptr, mag_index_t mag_index, msize_t msize)
{
@@ -969,7 +680,6 @@
return NULL;
}
-#endif // CONFIG_RECIRC_DEPOT
#if CONFIG_MADVISE_PRESSURE_RELIEF
void
@@ -981,30 +691,18 @@
for (mag_index = 0; mag_index < rack->num_magazines; mag_index++) {
size_t index;
for (index = 0; index < rack->region_generation->num_regions_allocated; ++index) {
- rack_region_lock(rack);
+ SZONE_LOCK(TINY_SZONE_FROM_RACK(rack));
region_t tiny = rack->region_generation->hashed_regions[index];
if (!tiny || tiny == HASHRING_REGION_DEALLOCATED) {
- rack_region_unlock(rack);
+ SZONE_UNLOCK(TINY_SZONE_FROM_RACK(rack));
continue;
}
- region_trailer_t *trailer = REGION_TRAILER_FOR_TINY_REGION(tiny);
- // Make sure that the owning magazine doesn't try and take this out
- // from under our feet.
- trailer->dispose_flags |= RACK_DISPOSE_DELAY;
- rack_region_unlock(rack);
-
magazine_t *mag_ptr = mag_lock_zine_for_region_trailer(rack->magazines,
- trailer, MAGAZINE_INDEX_FOR_TINY_REGION(tiny));
-
- // If acquiring the region lock was enough to prevent the owning
- // magazine from deallocating the region, free it now so we don't
- // do wasted work.
- if (rack_region_maybe_dispose(rack, tiny, TINY_REGION_SIZE, trailer)) {
- SZONE_MAGAZINE_PTR_UNLOCK(mag_ptr);
- continue;
- }
+ REGION_TRAILER_FOR_TINY_REGION(tiny),
+ MAGAZINE_INDEX_FOR_TINY_REGION(tiny));
+ SZONE_UNLOCK(TINY_SZONE_FROM_RACK(rack));
/* 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
@@ -1018,11 +716,6 @@
continue;
}
- if (REGION_TRAILER_FOR_TINY_REGION(tiny)->pinned_to_depot > 0) {
- 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(rack, mag_ptr);
}
@@ -1037,20 +730,20 @@
SZONE_MAGAZINE_PTR_LOCK(tiny_depot_ptr);
MAGAZINE_INDEX_FOR_TINY_REGION(tiny) = DEPOT_MAGAZINE_INDEX;
- MALLOC_ASSERT(REGION_TRAILER_FOR_TINY_REGION(tiny)->pinned_to_depot == 0);
+ REGION_TRAILER_FOR_TINY_REGION(tiny)->pinned_to_depot = 0;
size_t bytes_inplay = tiny_free_reattach_region(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_HEAP_SIZE;
+ 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_HEAP_SIZE;
+ tiny_depot_ptr->num_bytes_in_magazine += TINY_REGION_PAYLOAD_BYTES;
tiny_depot_ptr->mag_num_objects -= objects_in_use;
recirc_list_splice_last(rack, tiny_depot_ptr, REGION_TRAILER_FOR_TINY_REGION(tiny));
@@ -1120,11 +813,15 @@
}
}
-#if CONFIG_RECIRC_DEPOT
static boolean_t
tiny_get_region_from_depot(rack_t *rack, magazine_t *tiny_mag_ptr, mag_index_t mag_index, msize_t msize)
{
magazine_t *depot_ptr = &(rack->magazines[DEPOT_MAGAZINE_INDEX]);
+
+ /* FIXME: Would Uniprocessor benefit from recirc and MADV_FREE? */
+ if (rack->num_magazines == 1) { // Uniprocessor, single magazine, so no recirculation necessary
+ return 0;
+ }
#if DEBUG_MALLOC
if (DEPOT_MAGAZINE_INDEX == mag_index) {
@@ -1138,32 +835,22 @@
// Appropriate a Depot'd region that can satisfy requested msize.
region_trailer_t *node;
region_t sparse_region;
- msize_t try_msize = msize;
while (1) {
- sparse_region = tiny_find_msize_region(rack, depot_ptr, DEPOT_MAGAZINE_INDEX, try_msize);
+ sparse_region = tiny_find_msize_region(rack, depot_ptr, DEPOT_MAGAZINE_INDEX, msize);
if (NULL == sparse_region) { // Depot empty?
SZONE_MAGAZINE_PTR_UNLOCK(depot_ptr);
return 0;
}
node = REGION_TRAILER_FOR_TINY_REGION(sparse_region);
- if (0 == node->pinned_to_depot) {
- // Found one!
+ if (0 >= node->pinned_to_depot) {
break;
}
- // Try the next msize up - maybe the head of its free list will be in
- // a region we can use. Once we get the region we'll still allocate the
- // original msize.
- try_msize++;
-
- if (try_msize > NUM_TINY_SLOTS) {
- // Tried all the msizes but couldn't get a usable region. Let's
- // give up for now and we'll allocate a new region from the kernel.
- SZONE_MAGAZINE_PTR_UNLOCK(depot_ptr);
- return 0;
- }
+ SZONE_MAGAZINE_PTR_UNLOCK(depot_ptr);
+ yield();
+ SZONE_MAGAZINE_PTR_LOCK(depot_ptr);
}
// disconnect node from Depot
@@ -1174,21 +861,21 @@
// Transfer ownership of the region
MAGAZINE_INDEX_FOR_TINY_REGION(sparse_region) = mag_index;
- MALLOC_ASSERT(node->pinned_to_depot == 0);
+ node->pinned_to_depot = 0;
// Iterate the region putting its free entries on its new (locked) magazine's free list
size_t bytes_inplay = tiny_free_reattach_region(rack, tiny_mag_ptr, sparse_region);
depot_ptr->mag_num_bytes_in_objects -= bytes_inplay;
- depot_ptr->num_bytes_in_magazine -= TINY_HEAP_SIZE;
+ depot_ptr->num_bytes_in_magazine -= TINY_REGION_PAYLOAD_BYTES;
depot_ptr->mag_num_objects -= objects_in_use;
tiny_mag_ptr->mag_num_bytes_in_objects += bytes_inplay;
- tiny_mag_ptr->num_bytes_in_magazine += TINY_HEAP_SIZE;
+ tiny_mag_ptr->num_bytes_in_magazine += TINY_REGION_PAYLOAD_BYTES;
tiny_mag_ptr->mag_num_objects += objects_in_use;
- // connect to magazine as last node
- recirc_list_splice_last(rack, tiny_mag_ptr, node);
+ // connect to magazine as first node
+ recirc_list_splice_first(rack, tiny_mag_ptr, node);
SZONE_MAGAZINE_PTR_UNLOCK(depot_ptr);
@@ -1199,6 +886,7 @@
return 1;
}
+#if CONFIG_RECIRC_DEPOT
static region_t
tiny_free_try_depot_unmap_no_lock(rack_t *rack, magazine_t *depot_ptr, region_trailer_t *node)
{
@@ -1216,19 +904,32 @@
int objects_in_use = tiny_free_detach_region(rack, depot_ptr, sparse_region);
if (0 == objects_in_use) {
- if (!rack_region_remove(rack, sparse_region, node)) {
+ // Invalidate the hash table entry for this region with HASHRING_REGION_DEALLOCATED.
+ // Using HASHRING_REGION_DEALLOCATED preserves the collision chain, using HASHRING_OPEN_ENTRY (0) would not.
+ rgnhdl_t pSlot = hash_lookup_region_no_lock(rack->region_generation->hashed_regions,
+ rack->region_generation->num_regions_allocated,
+ rack->region_generation->num_regions_allocated_shift,
+ sparse_region);
+
+ if (NULL == pSlot) {
+ malloc_zone_error(rack->debug_flags, true, "tiny_free_try_depot_unmap_no_lock hash lookup failed: %p\n", sparse_region);
return NULL;
}
- depot_ptr->num_bytes_in_magazine -= TINY_HEAP_SIZE;
+ *pSlot = HASHRING_REGION_DEALLOCATED;
+ depot_ptr->num_bytes_in_magazine -= TINY_REGION_PAYLOAD_BYTES;
+
+ // Atomically increment num_regions_dealloc
+#ifdef __LP64___
+ OSAtomicIncrement64(&rack->num_regions_dealloc);
+#else
+ OSAtomicIncrement32((int32_t *)&rack->num_regions_dealloc);
+#endif
// Caller will transfer ownership of the region back to the OS with no locks held
- MAGMALLOC_DEALLOCREGION(TINY_SZONE_FROM_RACK(rack),
- (void *)sparse_region, TINY_REGION_SIZE); // DTrace USDT Probe
+ MAGMALLOC_DEALLOCREGION(TINY_SZONE_FROM_RACK(rack), (void *)sparse_region, TINY_REGION_SIZE); // DTrace USDT Probe
return sparse_region;
} else {
- malloc_zone_error(rack->debug_flags, true,
- "tiny_free_try_depot_unmap_no_lock objects_in_use not zero: %d\n",
- objects_in_use);
+ malloc_zone_error(rack->debug_flags, true, "tiny_free_try_depot_unmap_no_lock objects_in_use not zero: %d\n", objects_in_use);
return NULL;
}
}
@@ -1239,9 +940,7 @@
// The entire magazine crossed the "emptiness threshold". Transfer a region
// from this magazine to the Depot. Choose a region that itself has crossed the emptiness threshold (i.e
// is at least fraction "f" empty.) Such a region will be marked "suitable" on the recirculation list.
- // Start from the last node in order to keep the regions created earlier at the front of the list for
- // as long as possible. This helps reduce fragmentation.
- region_trailer_t *node = tiny_mag_ptr->lastNode;
+ region_trailer_t *node = tiny_mag_ptr->firstNode;
while (node && (!node->recirc_suitable || node->pinned_to_depot)) {
// If we skip a node due to pinned_to_depot being non-zero, it must be
@@ -1250,10 +949,10 @@
// When that's done, the same thread will enter tiny_free_try_recirc_to_depot()
// for the same region, which will come back here. So this just defers
// recirculation of the region.
- node = node->prev;
- }
-
- if (!node) {
+ node = node->next;
+ }
+
+ if (NULL == node) {
#if DEBUG_MALLOC
malloc_report(ASL_LEVEL_INFO, "*** tiny_free_do_recirc_to_depot end of list\n");
#endif
@@ -1286,13 +985,13 @@
size_t bytes_inplay = tiny_free_reattach_region(rack, depot_ptr, sparse_region);
tiny_mag_ptr->mag_num_bytes_in_objects -= bytes_inplay;
- tiny_mag_ptr->num_bytes_in_magazine -= TINY_HEAP_SIZE;
+ tiny_mag_ptr->num_bytes_in_magazine -= TINY_REGION_PAYLOAD_BYTES;
tiny_mag_ptr->mag_num_objects -= objects_in_use;
SZONE_MAGAZINE_PTR_UNLOCK(tiny_mag_ptr); // Unlock the originating magazine
depot_ptr->mag_num_bytes_in_objects += bytes_inplay;
- depot_ptr->num_bytes_in_magazine += TINY_HEAP_SIZE;
+ depot_ptr->num_bytes_in_magazine += TINY_REGION_PAYLOAD_BYTES;
depot_ptr->mag_num_objects += objects_in_use;
// connect to Depot as last node
@@ -1301,20 +1000,16 @@
MAGMALLOC_RECIRCREGION(TINY_SZONE_FROM_RACK(rack), (int)mag_index, (void *)sparse_region, TINY_REGION_SIZE,
(int)BYTES_USED_FOR_TINY_REGION(sparse_region)); // DTrace USDT Probe
-#if CONFIG_AGGRESSIVE_MADVISE
- if (!aggressive_madvise_enabled)
-#endif
- {
- // Mark free'd dirty pages with MADV_FREE to reduce memory pressure
- tiny_free_scan_madvise_free(rack, depot_ptr, sparse_region);
- }
+#if !CONFIG_AGGRESSIVE_MADVISE
+ // Mark free'd dirty pages with MADV_FREE to reduce memory pressure
+ tiny_free_scan_madvise_free(rack, depot_ptr, sparse_region);
+#endif
// If the region is entirely empty vm_deallocate() it outside the depot lock
region_t r_dealloc = tiny_free_try_depot_unmap_no_lock(rack, depot_ptr, node);
SZONE_MAGAZINE_PTR_UNLOCK(depot_ptr);
if (r_dealloc) {
- mvm_deallocate_pages(r_dealloc, TINY_REGION_SIZE,
- MALLOC_FIX_GUARD_PAGE_FLAGS(rack->debug_flags));
+ mvm_deallocate_pages(r_dealloc, TINY_REGION_SIZE, 0);
}
return FALSE; // Caller need not unlock the originating magazine
}
@@ -1332,9 +1027,13 @@
region_trailer_t *node = REGION_TRAILER_FOR_TINY_REGION(region);
size_t bytes_used = node->bytes_used;
- if (DEPOT_MAGAZINE_INDEX != mag_index) {
+ /* FIXME: Would Uniprocessor benefit from recirc and MADV_FREE? */
+ if (rack->num_magazines == 1) { // Uniprocessor, single magazine, so no recirculation necessary
+ /* NOTHING */
+ return TRUE; // Caller must do SZONE_MAGAZINE_PTR_UNLOCK(tiny_mag_ptr)
+ } else if (DEPOT_MAGAZINE_INDEX != mag_index) {
// Emptiness discriminant
- if (tiny_region_below_recirc_threshold(region)) {
+ if (bytes_used < DENSITY_THRESHOLD(TINY_REGION_PAYLOAD_BYTES)) {
/* Region has crossed threshold from density to sparsity. Mark it "suitable" on the
* recirculation candidates list. */
node->recirc_suitable = TRUE;
@@ -1346,18 +1045,18 @@
// Has the entire magazine crossed the "emptiness threshold"? If so, transfer a region
// from this magazine to the Depot. Choose a region that itself has crossed the emptiness threshold (i.e
// is at least fraction "f" empty.) Such a region will be marked "suitable" on the recirculation list.
- if (tiny_magazine_below_recirc_threshold(tiny_mag_ptr)) {
+ size_t a = tiny_mag_ptr->num_bytes_in_magazine; // Total bytes allocated to this magazine
+ size_t u = tiny_mag_ptr->mag_num_bytes_in_objects; // In use (malloc'd) from this magaqzine
+
+ if (a - u > ((3 * TINY_REGION_PAYLOAD_BYTES) / 2) && u < DENSITY_THRESHOLD(a)) {
return tiny_free_do_recirc_to_depot(rack, tiny_mag_ptr, mag_index);
}
} else {
-#if CONFIG_AGGRESSIVE_MADVISE
- if (!aggressive_madvise_enabled)
-#endif
- {
- // We are free'ing into the depot, so madvise as we do so unless we were madvising every incoming
- // allocation anyway.
- tiny_madvise_free_range_no_lock(rack, tiny_mag_ptr, region, headptr, headsize, ptr, msize);
- }
+#if !CONFIG_AGGRESSIVE_MADVISE
+ // We are free'ing into the depot, so madvise as we do so unless we were madvising every incoming
+ // allocation anyway.
+ tiny_madvise_free_range_no_lock(rack, tiny_mag_ptr, region, headptr, headsize, ptr, msize);
+#endif
if (0 < bytes_used || 0 < node->pinned_to_depot) {
/* Depot'd region is still live. Leave it in place on the Depot's recirculation list
@@ -1368,8 +1067,7 @@
region_t r_dealloc = tiny_free_try_depot_unmap_no_lock(rack, tiny_mag_ptr, node);
SZONE_MAGAZINE_PTR_UNLOCK(tiny_mag_ptr);
if (r_dealloc) {
- mvm_deallocate_pages(r_dealloc, TINY_REGION_SIZE,
- MALLOC_FIX_GUARD_PAGE_FLAGS(rack->debug_flags));
+ mvm_deallocate_pages(r_dealloc, TINY_REGION_SIZE, 0);
}
return FALSE; // Caller need not unlock
}
@@ -1378,12 +1076,8 @@
}
#endif // CONFIG_RECIRC_DEPOT
-#define TINY_FREE_FLAG_PARTIAL 0x1
-#define TINY_FREE_FLAG_FROM_CACHE 0x2
-
boolean_t
-tiny_free_no_lock(rack_t *rack, magazine_t *tiny_mag_ptr, mag_index_t mag_index,
- region_t region, void *ptr, msize_t msize, uint32_t flags)
+tiny_free_no_lock(rack_t *rack, magazine_t *tiny_mag_ptr, mag_index_t mag_index, region_t region, void *ptr, msize_t msize)
{
void *original_ptr = ptr;
size_t original_size = TINY_BYTES_FOR_MSIZE(msize);
@@ -1405,9 +1099,6 @@
}
#endif
- // Check that the region cookie is intact.
- region_check_cookie(region, ®ION_COOKIE_FOR_TINY_REGION(region));
-
// We try to coalesce this block with the preceeding one
previous = tiny_previous_preceding_free(ptr, &previous_msize);
if (previous) {
@@ -1420,17 +1111,11 @@
// clear the meta_header since this is no longer the start of a block
set_tiny_meta_header_middle(ptr);
tiny_free_list_remove_ptr(rack, tiny_mag_ptr, previous, previous_msize);
-
- // zero out the trailing inline msize of the block to connect the zero
- // prefix of this block to the newly free block
- zero_tiny_free_inline_meta_following(previous, previous_msize);
-
ptr = previous;
msize += previous_msize;
}
-
// We try to coalesce with the next block
- if ((next_block < TINY_REGION_HEAP_END(region)) && tiny_meta_header_is_free(next_block)) {
+ if ((next_block < TINY_REGION_END(region)) && tiny_meta_header_is_free(next_block)) {
next_msize = get_tiny_free_size(next_block);
#if DEBUG_MALLOC
if (LOG(szone, ptr) || LOG(szone, next_block)) {
@@ -1465,70 +1150,38 @@
// clear the meta_header to enable coalescing backwards
set_tiny_meta_header_middle(big_free_block);
-
- // zero out inline metadata to continue the zero prefix of the
- // previous block - must happen before set_tiny_meta_header_free()
- // reinitializes the new inline metadata
- zero_tiny_free_inline_meta(big_free_block, next_msize);
-
set_tiny_meta_header_free(ptr, msize);
- uint16_t next_block_index = TINY_INDEX_FOR_PTR(big_free_block) + 1;
- uint16_t ptr_index = TINY_INDEX_FOR_PTR(ptr) + 1;
- const grain_t slot = NUM_TINY_SLOTS;
- region_free_blocks_t *free_blocks = &((tiny_region_t)region)->free_blocks_by_slot[slot];
- if (free_blocks->first_block == next_block_index) {
- free_blocks->first_block = ptr_index;
- }
- if (free_blocks->last_block == next_block_index) {
- free_blocks->last_block = ptr_index;
- }
goto tiny_free_ending;
}
tiny_free_list_remove_ptr(rack, tiny_mag_ptr, next_block, next_msize);
set_tiny_meta_header_middle(next_block); // clear the meta_header to enable coalescing backwards
- // zero out inline metadata to continue the zero prefix of the previous
- // block
- zero_tiny_free_inline_meta(next_block, next_msize);
msize += next_msize;
}
- if (malloc_zero_policy != MALLOC_ZERO_ON_FREE) {
- // The tiny cache already scribbles free blocks as they go through the
- // cache, so we do not need to do it here.
- //
- // XXX This should probably also be conditional on CONFIG_TINY_CACHE
- if ((rack->debug_flags & MALLOC_DO_SCRIBBLE) &&
- !(flags & TINY_FREE_FLAG_FROM_CACHE)) {
- memset(ptr, SCRABBLE_BYTE, TINY_BYTES_FOR_MSIZE(msize));
- }
+ // The tiny cache already scribbles free blocks as they go through the
+ // cache whenever msize < TINY_QUANTUM , so we do not need to do it here.
+ if ((rack->debug_flags & MALLOC_DO_SCRIBBLE) && msize && (msize >= TINY_QUANTUM)) {
+ memset(ptr, SCRABBLE_BYTE, TINY_BYTES_FOR_MSIZE(msize));
}
tiny_free_list_add_ptr(rack, tiny_mag_ptr, ptr, msize);
tiny_free_ending:
+
+ tiny_mag_ptr->mag_num_objects--;
// we use original_size and not msize to avoid double counting the coalesced blocks
tiny_mag_ptr->mag_num_bytes_in_objects -= original_size;
// Update this region's bytes in use count
- region_trailer_t *trailer = REGION_TRAILER_FOR_TINY_REGION(region);
- size_t bytes_used = trailer->bytes_used - original_size;
- trailer->bytes_used = (unsigned int)bytes_used;
-
- // Partial free accounts for the case where we allocate a block for
- // posix_memalign and then free some range of bytes at the start and/or
- // the end. In that case, we aren't changing the number of allocated objects.
- // Similarly for realloc() in the case where we shrink in place.
- if (!(flags & TINY_FREE_FLAG_PARTIAL)) {
- trailer->objects_in_use--;
- tiny_mag_ptr->mag_num_objects--;
- }
+ region_trailer_t *node = REGION_TRAILER_FOR_TINY_REGION(region);
+ size_t bytes_used = node->bytes_used - original_size;
+ node->bytes_used = (unsigned int)bytes_used;
+
#if CONFIG_AGGRESSIVE_MADVISE
- if (aggressive_madvise_enabled) {
- // Platforms that want to madvise every freed allocation do so here, even if we continue
- // on to use the recirc depot after.
- tiny_madvise_free_range_no_lock(rack, tiny_mag_ptr, region, original_ptr, original_size, ptr, msize);
- }
+ // Platforms that want to madvise every freed allocation do so here, even if we continue
+ // on to use the recirc depot after.
+ tiny_madvise_free_range_no_lock(rack, tiny_mag_ptr, region, original_ptr, original_size, ptr, msize);
#endif
// Caller must do SZONE_MAGAZINE_PTR_UNLOCK(tiny_mag_ptr) if this function
@@ -1537,7 +1190,7 @@
#if CONFIG_RECIRC_DEPOT
needs_unlock = tiny_free_try_recirc_to_depot(rack, tiny_mag_ptr, mag_index, region, original_ptr, original_size, ptr, msize);
-#endif // CONFIG_RECIRC_DEPOT
+#endif
return needs_unlock;
}
@@ -1556,28 +1209,25 @@
tiny_finalize_region(rack, tiny_mag_ptr);
}
- tiny_region_t region = (tiny_region_t)aligned_address;
-
// We set the unused bits of the header in the last pair to be all ones, and those of the inuse to zeroes.
#if NUM_TINY_BLOCKS & 31
const uint32_t header = 0xFFFFFFFFU << (NUM_TINY_BLOCKS & 31);
#else
const uint32_t header = 0;
#endif
- region->pairs[CEIL_NUM_TINY_BLOCKS_WORDS - 1].header = header;
- region->pairs[CEIL_NUM_TINY_BLOCKS_WORDS - 1].inuse = 0;
+ ((tiny_region_t)aligned_address)->pairs[CEIL_NUM_TINY_BLOCKS_WORDS - 1].header = header;
+ ((tiny_region_t)aligned_address)->pairs[CEIL_NUM_TINY_BLOCKS_WORDS - 1].inuse = 0;
// Tag the region at "aligned_address" as belonging to us,
// and so put it under the protection of the magazine lock we are holding.
// Do this before advertising "aligned_address" on the hash ring(!)
- MAGAZINE_INDEX_FOR_TINY_REGION(region) = mag_index;
+ MAGAZINE_INDEX_FOR_TINY_REGION(aligned_address) = mag_index;
// Insert the new region into the hash ring
- rack_region_insert(rack, region);
-
- tiny_mag_ptr->mag_last_region = region;
- BYTES_USED_FOR_TINY_REGION(region) = TINY_BYTES_FOR_MSIZE(msize);
- OBJECTS_IN_USE_FOR_TINY_REGION(region) = 1;
+ rack_region_insert(rack, (region_t)aligned_address);
+
+ tiny_mag_ptr->mag_last_region = aligned_address;
+ BYTES_USED_FOR_TINY_REGION(aligned_address) = TINY_BYTES_FOR_MSIZE(msize);
#if CONFIG_ASLR_INTERNAL
int offset_msize = malloc_entropy[0] & TINY_ENTROPY_MASK;
@@ -1586,17 +1236,17 @@
offset_msize = strtol(getenv("MallocASLRForce"), NULL, 0) & TINY_ENTROPY_MASK;
}
if (getenv("MallocASLRPrint")) {
- malloc_report(ASL_LEVEL_INFO, "Region: %p offset: %d\n", region, offset_msize);
+ malloc_report(ASL_LEVEL_INFO, "Region: %p offset: %d\n", aligned_address, offset_msize);
}
#endif
#else
int offset_msize = 0;
#endif
- ptr = (void *)(TINY_REGION_HEAP_BASE(region) + TINY_BYTES_FOR_MSIZE(offset_msize));
+ ptr = (void *)((uintptr_t)aligned_address + TINY_BYTES_FOR_MSIZE(offset_msize));
set_tiny_meta_header_in_use(ptr, msize);
tiny_mag_ptr->mag_num_objects++;
tiny_mag_ptr->mag_num_bytes_in_objects += TINY_BYTES_FOR_MSIZE(msize);
- tiny_mag_ptr->num_bytes_in_magazine += TINY_HEAP_SIZE;
+ tiny_mag_ptr->num_bytes_in_magazine += TINY_REGION_PAYLOAD_BYTES;
// We put a header on the last block so that it appears in use (for coalescing, etc...)
set_tiny_meta_header_in_use_1((void *)((uintptr_t)ptr + TINY_BYTES_FOR_MSIZE(msize)));
@@ -1613,7 +1263,7 @@
#endif
// connect to magazine as last node
- recirc_list_splice_last(rack, tiny_mag_ptr, REGION_TRAILER_FOR_TINY_REGION(region));
+ recirc_list_splice_last(rack, tiny_mag_ptr, REGION_TRAILER_FOR_TINY_REGION(aligned_address));
#if DEBUG_MALLOC
if (LOG(szone, ptr)) {
@@ -1658,7 +1308,7 @@
SZONE_MAGAZINE_PTR_UNLOCK(tiny_mag_ptr);
// Give up mpad blocks beginning at p to the tiny free list
- free_tiny(&szone->tiny_rack, p, TINY_REGION_FOR_PTR(p), TINY_BYTES_FOR_MSIZE(mpad), true);
+ free_tiny(&szone->tiny_rack, p, TINY_REGION_FOR_PTR(p), TINY_BYTES_FOR_MSIZE(mpad));
p = q; // advance p to the desired alignment
}
@@ -1674,7 +1324,7 @@
SZONE_MAGAZINE_PTR_UNLOCK(tiny_mag_ptr);
// Give up mwaste blocks beginning at q to the tiny free list
- free_tiny(&szone->tiny_rack, q, TINY_REGION_FOR_PTR(q), TINY_BYTES_FOR_MSIZE(mwaste), true);
+ free_tiny(&szone->tiny_rack, q, TINY_REGION_FOR_PTR(q), TINY_BYTES_FOR_MSIZE(mwaste));
}
return p; // p has the desired size and alignment, and can later be free()'d
@@ -1684,8 +1334,7 @@
tiny_claimed_address(rack_t *rack, void *ptr)
{
region_t r = tiny_region_for_ptr_no_lock(rack, ptr);
- return r && ptr >= TINY_REGION_HEAP_BASE(r)
- && ptr < TINY_REGION_HEAP_END(r);
+ return r && ptr < TINY_REGION_END(r);
}
void *
@@ -1705,7 +1354,7 @@
tiny_mag_ptr->mag_num_objects++;
SZONE_MAGAZINE_PTR_UNLOCK(tiny_mag_ptr);
- free_tiny(rack, q, TINY_REGION_FOR_PTR(q), 0, true);
+ free_tiny(rack, q, TINY_REGION_FOR_PTR(q), 0);
}
return ptr;
}
@@ -1721,7 +1370,6 @@
boolean_t is_free;
msize_t next_msize, coalesced_msize, leftover_msize, new_msize;
void *leftover;
- region_trailer_t *trailer = REGION_TRAILER_FOR_TINY_REGION(TINY_REGION_FOR_PTR(ptr));
index = TINY_INDEX_FOR_PTR(ptr);
old_msize = TINY_MSIZE_FOR_BYTES(old_size);
@@ -1734,7 +1382,7 @@
next_block = (char *)ptr + old_size;
magazine_t *tiny_mag_ptr = mag_lock_zine_for_region_trailer(rack->magazines,
- trailer,
+ REGION_TRAILER_FOR_TINY_REGION(TINY_REGION_FOR_PTR(ptr)),
MAGAZINE_INDEX_FOR_TINY_REGION(TINY_REGION_FOR_PTR(ptr)));
if (DEPOT_MAGAZINE_INDEX == MAGAZINE_INDEX_FOR_TINY_REGION(TINY_REGION_FOR_PTR(ptr))) {
@@ -1758,25 +1406,21 @@
// The block in mag_last_free is still marked as header and in-use, so copy that
// state to the block that remains. The state for the block that we're going to
// use is adjusted by the set_tiny_meta_header_middle() call below.
- void *leftover_ptr = ((char *)next_block) + TINY_BYTES_FOR_MSIZE(coalesced_msize);
- set_tiny_meta_header_in_use(leftover_ptr, leftover_msize);
+ set_tiny_meta_header_in_use(next_block + TINY_BYTES_FOR_MSIZE(coalesced_msize), leftover_msize);
} else {
// Using the whole block.
tiny_mag_ptr->mag_last_free = NULL;
tiny_mag_ptr->mag_last_free_msize = 0;
tiny_mag_ptr->mag_last_free_rgn = NULL;
- trailer->objects_in_use--;
}
set_tiny_meta_header_middle(next_block);
- tiny_check_zero_or_clear(last_free_ptr, coalesced_msize, false);
- coalesced_msize = 0; // No net change in memory use
} else {
#endif // CONFIG_TINY_CACHE
/*
* Try to expand into unused space immediately after this block.
*/
msize_t unused_msize = TINY_MSIZE_FOR_BYTES(tiny_mag_ptr->mag_bytes_free_at_end);
- void *unused_start = TINY_REGION_HEAP_END(TINY_REGION_FOR_PTR(ptr)) - tiny_mag_ptr->mag_bytes_free_at_end;
+ void *unused_start = TINY_REGION_END(TINY_REGION_FOR_PTR(ptr)) - tiny_mag_ptr->mag_bytes_free_at_end;
if (tiny_mag_ptr->mag_last_region == TINY_REGION_FOR_PTR(ptr)
&& coalesced_msize < unused_msize && unused_start == ptr + old_size) {
// The block at the start of mag_bytes_free_at_end is marked as
@@ -1793,7 +1437,6 @@
// Mark the first block of the remaining free area as a header and in-use.
set_tiny_meta_header_in_use_1(ptr + TINY_BYTES_FOR_MSIZE(new_msize));
}
- tiny_check_zero_or_clear(unused_start, coalesced_msize, false);
} else {
/*
* Look for a free block immediately afterwards. If it's large
@@ -1815,10 +1458,6 @@
*/
tiny_free_list_remove_ptr(rack, tiny_mag_ptr, next_block, next_msize);
set_tiny_meta_header_middle(next_block); // clear the meta_header to enable coalescing backwards
-
- tiny_check_and_zero_inline_meta_from_freelist(rack, next_block, next_msize);
- tiny_check_zero_or_clear(next_block, coalesced_msize, false);
-
leftover_msize = next_msize - coalesced_msize;
if (leftover_msize) {
/* there's some left, so put the remainder back */
@@ -1843,7 +1482,7 @@
node->bytes_used = (unsigned int)bytes_used;
// Emptiness discriminant
- if (bytes_used < DENSITY_THRESHOLD(TINY_HEAP_SIZE)) {
+ if (bytes_used < DENSITY_THRESHOLD(TINY_REGION_PAYLOAD_BYTES)) {
/* After this reallocation the region is still sparse, so it must have been even more so before
* the reallocation. That implies the region is already correctly marked. Do nothing. */
} else {
@@ -1889,7 +1528,7 @@
}
/* establish region limits */
- start = (uintptr_t)TINY_REGION_HEAP_BASE(region);
+ start = (uintptr_t)TINY_REGION_ADDRESS(region);
ptr = start;
if (region == tiny_mag_ptr->mag_last_region) {
ptr += tiny_mag_ptr->mag_bytes_free_at_start;
@@ -1906,7 +1545,7 @@
}
}
}
- region_end = (uintptr_t)TINY_REGION_HEAP_END(region);
+ region_end = (uintptr_t)TINY_REGION_END(region);
/*
* The last region may have a trailing chunk which has not been converted into inuse/freelist
@@ -1980,9 +1619,9 @@
*/
follower = FOLLOWING_TINY_PTR(ptr, msize);
if (((uintptr_t)follower != region_end) && (get_tiny_previous_free_msize(follower) != msize)) {
- TINY_CHECK_FAIL("*** invariant broken for tiny free %p followed by %p in region %p [%p-%p] "
+ TINY_CHECK_FAIL("*** invariant broken for tiny free %p followed by %p in region [%p-%p] "
"(end marker incorrect) should be %d; in fact %d\n",
- (void *)ptr, follower, region, TINY_REGION_HEAP_BASE(region), (void *)region_end,
+ (void *)ptr, follower, TINY_REGION_ADDRESS(region), (void *)region_end,
msize, get_tiny_previous_free_msize(follower));
return 0;
}
@@ -2065,20 +1704,23 @@
for (index = 0; index < num_regions; ++index) {
region = regions[index];
if (HASHRING_OPEN_ENTRY != region && HASHRING_REGION_DEALLOCATED != region) {
- range.address = (vm_address_t)TINY_REGION_HEAP_BASE(region);
- range.size = (vm_size_t)TINY_HEAP_SIZE;
+ range.address = (vm_address_t)TINY_REGION_ADDRESS(region);
+ range.size = (vm_size_t)TINY_REGION_SIZE;
if (type_mask & MALLOC_ADMIN_REGION_RANGE_TYPE) {
- admin_range.address = TINY_REGION_METADATA(region);
+ admin_range.address = range.address + TINY_METADATA_START;
admin_range.size = TINY_METADATA_SIZE;
recorder(task, context, MALLOC_ADMIN_REGION_RANGE_TYPE, &admin_range, 1);
}
if (type_mask & (MALLOC_PTR_REGION_RANGE_TYPE | MALLOC_ADMIN_REGION_RANGE_TYPE)) {
ptr_range.address = range.address;
- ptr_range.size = TINY_HEAP_SIZE;
+ ptr_range.size = NUM_TINY_BLOCKS * TINY_QUANTUM;
recorder(task, context, MALLOC_PTR_REGION_RANGE_TYPE, &ptr_range, 1);
}
if (type_mask & MALLOC_PTR_IN_USE_RANGE_TYPE) {
- err = reader(task, (vm_address_t)region, (vm_size_t)TINY_REGION_SIZE, (void **)&mapped_region);
+ vm_address_t mag_last_free;
+ msize_t mag_last_free_msize = 0;
+
+ err = reader(task, range.address, range.size, (void **)&mapped_region);
if (err) {
return err;
}
@@ -2086,18 +1728,19 @@
mag_index_t mag_index = MAGAZINE_INDEX_FOR_TINY_REGION(mapped_region);
magazine_t *tiny_mag_ptr = tiny_mag_base + mag_index;
- int cached_free_blocks = 0;
-#if CONFIG_TINY_CACHE
- // Each magazine could have a pointer to a cached free block from
- // this region. Count the regions that have such a pointer.
- for (mag_index = 0; mag_index < szone->tiny_rack.num_magazines; mag_index++) {
- if (region == (tiny_mag_base + mag_index)->mag_last_free_rgn) {
- cached_free_blocks++;
+ if (DEPOT_MAGAZINE_INDEX != mag_index) {
+ mag_last_free = (uintptr_t)tiny_mag_ptr->mag_last_free;
+ mag_last_free_msize = tiny_mag_ptr->mag_last_free_msize;
+ } else {
+ for (mag_index = 0; mag_index < szone->tiny_rack.num_magazines; mag_index++) {
+ if ((void *)range.address == (tiny_mag_base + mag_index)->mag_last_free_rgn) {
+ mag_last_free = (uintptr_t)(tiny_mag_base + mag_index)->mag_last_free;
+ mag_last_free_msize = (tiny_mag_base + mag_index)->mag_last_free_msize;
+ }
}
}
-#endif // CONFIG_TINY_CACHE
-
- block_header = TINY_BLOCK_HEADER_FOR_REGION(mapped_region);
+
+ block_header = (uint32_t *)(mapped_region + TINY_METADATA_START + sizeof(region_trailer_t));
in_use = TINY_INUSE_FOR_HEADER(block_header);
block_index = 0;
block_limit = NUM_TINY_BLOCKS;
@@ -2106,11 +1749,11 @@
block_limit -= TINY_MSIZE_FOR_BYTES(tiny_mag_ptr->mag_bytes_free_at_end);
}
- for (; block_index < block_limit; block_index += msize) {
+ while (block_index < block_limit) {
vm_size_t block_offset = TINY_BYTES_FOR_MSIZE(block_index);
is_free = !BITARRAY_BIT(in_use, block_index);
if (is_free) {
- mapped_ptr = TINY_REGION_HEAP_BASE(mapped_region) + block_offset;
+ mapped_ptr = mapped_region + block_offset;
// mapped_region, the address at which 'range' in 'task' has been
// mapped into our process, is not necessarily aligned to
@@ -2126,48 +1769,32 @@
} else {
msize = 1;
}
- } else {
-#if CONFIG_TINY_CACHE
- // If there are still magazines that have cached free
- // blocks in this region, check whether this is one of
- // them and don't return the block pointer if it is.
- void *ptr = TINY_REGION_HEAP_BASE(region) + block_offset;
- boolean_t block_cached = false;
- if (cached_free_blocks) {
- for (mag_index = 0; mag_index < szone->tiny_rack.num_magazines; mag_index++) {
- if (ptr == (tiny_mag_base + mag_index)->mag_last_free) {
- block_cached = true;
- cached_free_blocks--;
- msize = (tiny_mag_base + mag_index)->mag_last_free_msize;
- break;
- }
- }
- }
- if (block_cached) {
- if (!msize) {
- return KERN_FAILURE; // Somethings amiss. Avoid looping at this block_index.
- }
- continue;
- }
-#endif // CONFIG_TINY_CACHE
+
+ } else if (range.address + block_offset != mag_last_free) {
msize = 1;
bit = block_index + 1;
while (!BITARRAY_BIT(block_header, bit)) {
bit++;
msize++;
}
- buffer[count].address = (vm_address_t)TINY_REGION_HEAP_BASE(region) + block_offset;
+ buffer[count].address = range.address + block_offset;
buffer[count].size = TINY_BYTES_FOR_MSIZE(msize);
count++;
if (count >= MAX_RECORDER_BUFFER) {
recorder(task, context, MALLOC_PTR_IN_USE_RANGE_TYPE, buffer, count);
count = 0;
}
+ } else {
+ // Block is not free but it matches mag_last_free_ptr so even
+ // though it is not marked free in the bitmap, we treat it as if
+ // it is and move on
+ msize = mag_last_free_msize;
}
if (!msize) {
return KERN_FAILURE; // Somethings amiss. Avoid looping at this block_index.
}
+ block_index += msize;
}
if (count) {
recorder(task, context, MALLOC_PTR_IN_USE_RANGE_TYPE, buffer, count);
@@ -2217,9 +1844,6 @@
malloc_report(ASL_LEVEL_INFO, "in tiny_malloc_from_free_list(), exact match ptr=%p, this_msize=%d\n", ptr, this_msize);
}
#endif
- tiny_update_region_free_list_for_remove(slot, ptr, next);
- tiny_check_and_zero_inline_meta_from_freelist(rack, ptr, msize);
-
goto return_tiny_alloc;
}
@@ -2250,8 +1874,6 @@
BITMAPV_CLR(tiny_mag_ptr->mag_bitmap, slot);
}
this_msize = get_tiny_free_size(ptr);
- tiny_update_region_free_list_for_remove(slot, ptr, next);
- tiny_check_and_zero_inline_meta_from_freelist(rack, ptr, this_msize);
goto add_leftover_and_proceed;
}
#if DEBUG_MALLOC
@@ -2272,16 +1894,12 @@
// modifying the free list rather than a pop and push of the head
leftover_msize = this_msize - msize;
leftover_ptr = (tiny_free_list_t *)((unsigned char *)ptr + TINY_BYTES_FOR_MSIZE(msize));
-
- tiny_free_list_t tmp_ptr = *ptr;
- tiny_check_and_zero_inline_meta_from_freelist(rack, ptr, this_msize);
-
limit->p = leftover_ptr;
if (next) {
next->previous.u = free_list_checksum_ptr(rack, leftover_ptr);
}
- leftover_ptr->previous = tmp_ptr.previous;
- leftover_ptr->next = tmp_ptr.next;
+ leftover_ptr->previous = ptr->previous;
+ leftover_ptr->next = ptr->next;
set_tiny_meta_header_free(leftover_ptr, leftover_msize);
#if DEBUG_MALLOC
if (LOG(szone, ptr)) {
@@ -2290,16 +1908,12 @@
}
#endif
this_msize = msize;
- tiny_update_region_free_list_for_remove(NUM_TINY_SLOTS, ptr, leftover_ptr);
-
goto return_tiny_alloc;
}
if (next) {
next->previous = ptr->previous;
}
limit->p = next;
- tiny_update_region_free_list_for_remove(slot, ptr, next);
- tiny_check_and_zero_inline_meta_from_freelist(rack, ptr, this_msize);
goto add_leftover_and_proceed;
/* NOTREACHED */
}
@@ -2307,7 +1921,7 @@
try_tiny_malloc_from_end:
// Let's see if we can use tiny_mag_ptr->mag_bytes_free_at_end
if (tiny_mag_ptr->mag_bytes_free_at_end >= TINY_BYTES_FOR_MSIZE(msize)) {
- ptr = (tiny_free_list_t *)((uintptr_t)TINY_REGION_HEAP_END(tiny_mag_ptr->mag_last_region) - tiny_mag_ptr->mag_bytes_free_at_end);
+ ptr = (tiny_free_list_t *)((uintptr_t)TINY_REGION_END(tiny_mag_ptr->mag_last_region) - tiny_mag_ptr->mag_bytes_free_at_end);
tiny_mag_ptr->mag_bytes_free_at_end -= TINY_BYTES_FOR_MSIZE(msize);
if (tiny_mag_ptr->mag_bytes_free_at_end) {
// let's add an in use block after ptr to serve as boundary
@@ -2324,7 +1938,7 @@
#if CONFIG_ASLR_INTERNAL
// Try from start if nothing left at end
if (tiny_mag_ptr->mag_bytes_free_at_start >= TINY_BYTES_FOR_MSIZE(msize)) {
- ptr = (tiny_free_list_t *)(TINY_REGION_HEAP_BASE(tiny_mag_ptr->mag_last_region) + tiny_mag_ptr->mag_bytes_free_at_start -
+ ptr = (tiny_free_list_t *)(TINY_REGION_ADDRESS(tiny_mag_ptr->mag_last_region) + tiny_mag_ptr->mag_bytes_free_at_start -
TINY_BYTES_FOR_MSIZE(msize));
tiny_mag_ptr->mag_bytes_free_at_start -= TINY_BYTES_FOR_MSIZE(msize);
if (tiny_mag_ptr->mag_bytes_free_at_start) {
@@ -2344,8 +1958,6 @@
add_leftover_and_proceed:
if (!this_msize || (this_msize > msize)) {
- // XXX This works even when (this_msize == 0) because the unsigned
- // subtraction wraps around to the correct result
leftover_msize = this_msize - msize;
leftover_ptr = (tiny_free_list_t *)((unsigned char *)ptr + TINY_BYTES_FOR_MSIZE(msize));
#if DEBUG_MALLOC
@@ -2361,23 +1973,19 @@
tiny_mag_ptr->mag_num_objects++;
tiny_mag_ptr->mag_num_bytes_in_objects += TINY_BYTES_FOR_MSIZE(this_msize);
- // Check that the region cookie is intact and update the region's bytes in use count
- tiny_region_t region = TINY_REGION_FOR_PTR(ptr);
- region_check_cookie(region, ®ION_COOKIE_FOR_TINY_REGION(region));
-
- region_trailer_t *trailer = REGION_TRAILER_FOR_TINY_REGION(region);
- size_t bytes_used = trailer->bytes_used + TINY_BYTES_FOR_MSIZE(this_msize);
- trailer->bytes_used = (unsigned int)bytes_used;
- trailer->objects_in_use++;
+ // Update this region's bytes in use count
+ region_trailer_t *node = REGION_TRAILER_FOR_TINY_REGION(TINY_REGION_FOR_PTR(ptr));
+ size_t bytes_used = node->bytes_used + TINY_BYTES_FOR_MSIZE(this_msize);
+ node->bytes_used = (unsigned int)bytes_used;
// Emptiness discriminant
- if (bytes_used < DENSITY_THRESHOLD(TINY_HEAP_SIZE)) {
+ if (bytes_used < DENSITY_THRESHOLD(TINY_REGION_PAYLOAD_BYTES)) {
/* After this allocation the region is still sparse, so it must have been even more so before
* the allocation. That implies the region is already correctly marked. Do nothing. */
} else {
/* Region has crossed threshold from sparsity to density. Mark it not "suitable" on the
* recirculation candidates list. */
- trailer->recirc_suitable = FALSE;
+ node->recirc_suitable = FALSE;
}
#if DEBUG_MALLOC
if (LOG(szone, ptr)) {
@@ -2396,7 +2004,7 @@
tiny_malloc_should_clear(rack_t *rack, msize_t msize, boolean_t cleared_requested)
{
void *ptr;
- mag_index_t mag_index = rack_get_thread_index(rack) % rack->num_magazines;
+ mag_index_t mag_index = tiny_mag_get_thread_index() % rack->num_magazines;
magazine_t *tiny_mag_ptr = &(rack->magazines[mag_index]);
MALLOC_TRACE(TRACE_tiny_malloc, (uintptr_t)rack, TINY_BYTES_FOR_MSIZE(msize), (uintptr_t)tiny_mag_ptr, cleared_requested);
@@ -2425,9 +2033,9 @@
tiny_mag_ptr->mag_last_free_rgn = NULL;
SZONE_MAGAZINE_PTR_UNLOCK(tiny_mag_ptr);
CHECK(szone, __PRETTY_FUNCTION__);
-
- tiny_check_zero_or_clear(ptr, msize, cleared_requested);
-
+ if (cleared_requested) {
+ memset(ptr, 0, TINY_BYTES_FOR_MSIZE(msize));
+ }
#if DEBUG_MALLOC
if (LOG(szone, ptr)) {
malloc_report(ASL_LEVEL_INFO, "in tiny_malloc_should_clear(), tiny cache ptr=%p, msize=%d\n", ptr, msize);
@@ -2442,21 +2050,23 @@
if (ptr) {
SZONE_MAGAZINE_PTR_UNLOCK(tiny_mag_ptr);
CHECK(szone, __PRETTY_FUNCTION__);
- tiny_check_zero_or_clear(ptr, msize, cleared_requested);
+ if (cleared_requested) {
+ memset(ptr, 0, TINY_BYTES_FOR_MSIZE(msize));
+ }
return ptr;
}
-#if CONFIG_RECIRC_DEPOT
if (tiny_get_region_from_depot(rack, tiny_mag_ptr, mag_index, msize)) {
ptr = tiny_malloc_from_free_list(rack, tiny_mag_ptr, mag_index, msize);
if (ptr) {
SZONE_MAGAZINE_PTR_UNLOCK(tiny_mag_ptr);
CHECK(szone, __PRETTY_FUNCTION__);
- tiny_check_zero_or_clear(ptr, msize, cleared_requested);
+ if (cleared_requested) {
+ memset(ptr, 0, TINY_BYTES_FOR_MSIZE(msize));
+ }
return ptr;
}
}
-#endif // CONFIG_RECIRC_DEPOT
// The magazine is exhausted. A new region (heap) must be allocated to satisfy this call to malloc().
// The allocation, an mmap() system call, will be performed outside the magazine spin locks by the first
@@ -2471,10 +2081,7 @@
tiny_mag_ptr->alloc_underway = TRUE;
OSMemoryBarrier();
SZONE_MAGAZINE_PTR_UNLOCK(tiny_mag_ptr);
- fresh_region = mvm_allocate_pages(TINY_REGION_SIZE,
- TINY_BLOCKS_ALIGN,
- MALLOC_FIX_GUARD_PAGE_FLAGS(rack->debug_flags),
- VM_MEMORY_MALLOC_TINY);
+ fresh_region = mvm_allocate_pages_securely(TINY_REGION_SIZE, TINY_BLOCKS_ALIGN, VM_MEMORY_MALLOC_TINY, rack->debug_flags);
SZONE_MAGAZINE_PTR_LOCK(tiny_mag_ptr);
// DTrace USDT Probe
@@ -2487,11 +2094,9 @@
return NULL;
}
- region_set_cookie(®ION_COOKIE_FOR_TINY_REGION(fresh_region));
ptr = tiny_malloc_from_region_no_lock(rack, tiny_mag_ptr, mag_index, msize, fresh_region);
- // we don't clear or zero-check because this freshly allocated space
- // is pristine
+ // we don't clear because this freshly allocated space is pristine
tiny_mag_ptr->alloc_underway = FALSE;
OSMemoryBarrier();
SZONE_MAGAZINE_PTR_UNLOCK(tiny_mag_ptr);
@@ -2511,7 +2116,6 @@
{
if (tiny_region_for_ptr_no_lock(rack, ptr)) {
if (TINY_INDEX_FOR_PTR(ptr) >= NUM_TINY_BLOCKS) {
-malloc_printf("NO ZONE for ptr %p\n", ptr);
return 0;
}
@@ -2550,18 +2154,19 @@
static MALLOC_NOINLINE void
free_tiny_botch(rack_t *rack, tiny_free_list_t *ptr)
{
+ mag_index_t mag_index = MAGAZINE_INDEX_FOR_TINY_REGION(TINY_REGION_FOR_PTR(ptr));
+ magazine_t *tiny_mag_ptr = &(rack->magazines[mag_index]);
+ SZONE_MAGAZINE_PTR_UNLOCK(tiny_mag_ptr);
malloc_zone_error(rack->debug_flags, true, "Double free of object %p\n", ptr);
}
void
-free_tiny(rack_t *rack, void *ptr, region_t tiny_region, size_t known_size,
- boolean_t partial_free)
+free_tiny(rack_t *rack, void *ptr, region_t tiny_region, size_t known_size)
{
msize_t msize;
boolean_t is_free;
mag_index_t mag_index = MAGAZINE_INDEX_FOR_TINY_REGION(tiny_region);
magazine_t *tiny_mag_ptr = &(rack->magazines[mag_index]);
- uint32_t flags = 0;
MALLOC_TRACE(TRACE_tiny_free, (uintptr_t)rack, (uintptr_t)ptr, (uintptr_t)tiny_mag_ptr, known_size);
@@ -2582,15 +2187,11 @@
}
#endif
- if (malloc_zero_policy == MALLOC_ZERO_ON_FREE) {
- memset(ptr, '\0', TINY_BYTES_FOR_MSIZE(msize));
- }
-
SZONE_MAGAZINE_PTR_LOCK(tiny_mag_ptr);
#if CONFIG_TINY_CACHE
// Depot does not participate in CONFIG_TINY_CACHE since it can't be directly malloc()'d
- if (DEPOT_MAGAZINE_INDEX != mag_index && !partial_free) {
+ if (DEPOT_MAGAZINE_INDEX != mag_index) {
if (msize < TINY_QUANTUM) { // to see if the bits fit in the last 4 bits
void *ptr2 = tiny_mag_ptr->mag_last_free; // Might be NULL
msize_t msize2 = tiny_mag_ptr->mag_last_free_msize;
@@ -2598,15 +2199,12 @@
/* check that we don't already have this pointer in the cache */
if (ptr == ptr2) {
- SZONE_MAGAZINE_PTR_UNLOCK(tiny_mag_ptr);
free_tiny_botch(rack, ptr);
return;
}
- if (malloc_zero_policy != MALLOC_ZERO_ON_FREE) {
- if ((rack->debug_flags & MALLOC_DO_SCRIBBLE) && msize) {
- memset(ptr, SCRABBLE_BYTE, TINY_BYTES_FOR_MSIZE(msize));
- }
+ if ((rack->debug_flags & MALLOC_DO_SCRIBBLE) && msize) {
+ memset(ptr, SCRABBLE_BYTE, TINY_BYTES_FOR_MSIZE(msize));
}
tiny_mag_ptr->mag_last_free = ptr;
@@ -2622,7 +2220,6 @@
msize = msize2;
ptr = ptr2;
tiny_region = rgn2;
- flags |= TINY_FREE_FLAG_FROM_CACHE;
}
}
#endif /* CONFIG_TINY_CACHE */
@@ -2641,12 +2238,7 @@
SZONE_MAGAZINE_PTR_LOCK(tiny_mag_ptr);
}
- if (partial_free) {
- flags |= TINY_FREE_FLAG_PARTIAL;
- }
-
- if (tiny_free_no_lock(rack, tiny_mag_ptr, mag_index, tiny_region, ptr,
- msize, flags)) {
+ if (tiny_free_no_lock(rack, tiny_mag_ptr, mag_index, tiny_region, ptr, msize)) {
SZONE_MAGAZINE_PTR_UNLOCK(tiny_mag_ptr);
}
@@ -2658,8 +2250,7 @@
{
msize_t msize = TINY_MSIZE_FOR_BYTES(size + TINY_QUANTUM - 1);
unsigned found = 0;
-
- mag_index_t mag_index = rack_get_thread_index(&szone->tiny_rack) % szone->tiny_rack.num_magazines;
+ mag_index_t mag_index = tiny_mag_get_thread_index() % szone->tiny_rack.num_magazines;
magazine_t *tiny_mag_ptr = &(szone->tiny_rack.magazines[mag_index]);
// make sure to return objects at least one quantum in size
@@ -2734,10 +2325,7 @@
if (is_free) {
break; // a double free; let the standard free deal with it
}
- if (malloc_zero_policy == MALLOC_ZERO_ON_FREE) {
- memset(ptr, '\0', TINY_BYTES_FOR_MSIZE(msize));
- }
- if (!tiny_free_no_lock(&szone->tiny_rack, tiny_mag_ptr, mag_index, tiny_region, ptr, msize, 0)) {
+ if (!tiny_free_no_lock(&szone->tiny_rack, tiny_mag_ptr, mag_index, tiny_region, ptr, msize)) {
// Arrange to re-acquire magazine lock
tiny_mag_ptr = NULL;
tiny_region = NULL;
@@ -2759,83 +2347,50 @@
void
-print_tiny_free_list(task_t task, memory_reader_t reader,
- print_task_printer_t printer, rack_t *rack)
+print_tiny_free_list(rack_t *rack)
{
tiny_free_list_t *ptr;
_SIMPLE_STRING b = _simple_salloc();
mag_index_t mag_index;
if (b) {
- rack_t *mapped_rack;
- magazine_t *mapped_magazines;
- if (reader(task, (vm_address_t)rack, sizeof(struct rack_s),
- (void **)&mapped_rack)) {
- printer("Failed to map tiny rack\n");
- return;
- }
- _simple_sappend(b, "Tiny free sizes:\n");
- if (reader(task, (vm_address_t)mapped_rack->magazines,
- mapped_rack->num_magazines * sizeof(magazine_t),
- (void **)&mapped_magazines)) {
- printer("Failed to map tiny rack magazines\n");
- return;
- }
-
- for (mag_index = -1; mag_index < mapped_rack->num_magazines; mag_index++) {
+ _simple_sappend(b, "tiny free sizes:\n");
+ for (mag_index = -1; mag_index < rack->num_magazines; mag_index++) {
grain_t slot = 0;
- if (mag_index == -1) {
- _simple_sprintf(b, "\tRecirc depot: ");
- } else {
- _simple_sprintf(b, "\tMagazine %d: ", mag_index);
- }
- while (slot <= NUM_TINY_SLOTS) {
- ptr = mapped_magazines[mag_index].mag_free_list[slot].p;
+ _simple_sprintf(b, "\tMagazine %d: ", mag_index);
+ while (slot < NUM_TINY_SLOTS) {
+ ptr = rack->magazines[mag_index].mag_free_list[slot].p;
if (ptr) {
- _simple_sprintf(b, "%s%y[%d]; ",
- (slot == NUM_TINY_SLOTS) ? ">=" : "",
- (slot + 1) * TINY_QUANTUM,
- free_list_count(task, reader, printer, mapped_rack,
- (free_list_t){ .p = ptr }));
+ _simple_sprintf(b, "%s%y[%d]; ", (slot == NUM_TINY_SLOTS) ? ">=" : "", (slot + 1) * TINY_QUANTUM,
+ free_list_count(rack, (free_list_t){ .p = ptr }));
}
slot++;
}
_simple_sappend(b, "\n");
}
- printer("%s\n", _simple_string(b));
+ malloc_report(MALLOC_REPORT_NOLOG | MALLOC_REPORT_NOPREFIX, "%s\n", _simple_string(b));
_simple_sfree(b);
}
}
void
-print_tiny_region(task_t task, memory_reader_t reader,
- print_task_printer_t printer, int level, region_t region,
- size_t bytes_at_start, size_t bytes_at_end)
+print_tiny_region(boolean_t verbose, region_t region, size_t bytes_at_start, size_t bytes_at_end)
{
unsigned counts[1024];
unsigned in_use = 0;
- uintptr_t start = (uintptr_t)TINY_REGION_HEAP_BASE(region);
+ uintptr_t start = (uintptr_t)TINY_REGION_ADDRESS(region);
uintptr_t current = start + bytes_at_start;
- uintptr_t limit = (uintptr_t)TINY_REGION_HEAP_END(region) - bytes_at_end;
- uintptr_t mapped_start;
+ uintptr_t limit = (uintptr_t)TINY_REGION_END(region) - bytes_at_end;
boolean_t is_free;
msize_t msize;
unsigned ci;
_SIMPLE_STRING b;
uintptr_t pgTot = 0;
- if (reader(task, (vm_address_t)start, TINY_REGION_SIZE,
- (void **)&mapped_start)) {
- printer("Failed to map tiny region at %p\n", start);
- return;
- }
- off_t start_offset = mapped_start - start;
- region_t mapped_region = (region_t)mapped_start;
-
if (region == HASHRING_REGION_DEALLOCATED) {
if ((b = _simple_salloc()) != NULL) {
_simple_sprintf(b, "Tiny region [unknown address] was returned to the OS\n");
- printer("%s\n", _simple_string(b));
+ malloc_report(MALLOC_REPORT_NOLOG | MALLOC_REPORT_NOPREFIX, "%s\n", _simple_string(b));
_simple_sfree(b);
}
return;
@@ -2843,7 +2398,7 @@
memset(counts, 0, sizeof(counts));
while (current < limit) {
- msize = get_tiny_meta_header_offset((void *)current, start_offset, &is_free);
+ msize = get_tiny_meta_header((void *)current, &is_free);
if (is_free && !msize && (current == start)) {
// first block is all free
uintptr_t pgLo = round_page_quanta(start + sizeof(tiny_free_list_t) + sizeof(msize_t));
@@ -2855,13 +2410,13 @@
break;
}
if (!msize) {
- printer("*** error with %p: msize=%d\n", (void *)current, (unsigned)msize);
+ malloc_report(ASL_LEVEL_ERR, "*** error with %p: msize=%d\n", (void *)current, (unsigned)msize);
break;
}
if (!is_free) {
// block in use
if (msize > NUM_TINY_SLOTS) {
- printer("*** error at %p msize for in_use is %d\n", (void *)current, msize);
+ malloc_report(ASL_LEVEL_ERR, "*** error at %p msize for in_use is %d\n", (void *)current, msize);
}
if (msize < 1024) {
counts[msize]++;
@@ -2878,38 +2433,26 @@
current += TINY_BYTES_FOR_MSIZE(msize);
}
if ((b = _simple_salloc()) != NULL) {
- mag_index_t mag_index = MAGAZINE_INDEX_FOR_TINY_REGION(mapped_region);
- _simple_sprintf(b, "Tiny region [%p-%p, %y] \t", (void *)start, TINY_REGION_HEAP_END(region), (int)TINY_REGION_SIZE);
- if (mag_index == DEPOT_MAGAZINE_INDEX) {
- _simple_sprintf(b, "Recirc depot \t");
- } else {
- _simple_sprintf(b, "Magazine=%d \t", mag_index);
- }
- _simple_sprintf(b, "Allocations in use=%d \t Bytes in use=%ly (%d%%) \t",
- in_use, BYTES_USED_FOR_TINY_REGION(mapped_region),
- (int)(100.0F * BYTES_USED_FOR_TINY_REGION(mapped_region))/TINY_REGION_SIZE);
+ _simple_sprintf(b, "Tiny region [%p-%p, %y] \t", (void *)start, TINY_REGION_END(region), (int)TINY_REGION_SIZE);
+ _simple_sprintf(b, "Magazine=%d \t", MAGAZINE_INDEX_FOR_TINY_REGION(region));
+ _simple_sprintf(b, "Allocations in use=%d \t Bytes in use=%ly \t", in_use, BYTES_USED_FOR_TINY_REGION(region));
if (bytes_at_end || bytes_at_start) {
_simple_sprintf(b, "Untouched=%ly ", bytes_at_end + bytes_at_start);
}
- if (mag_index == DEPOT_MAGAZINE_INDEX) {
+ if (DEPOT_MAGAZINE_INDEX == MAGAZINE_INDEX_FOR_TINY_REGION(region)) {
_simple_sprintf(b, "Advised MADV_FREE=%ly", pgTot);
} else {
_simple_sprintf(b, "Fragments subject to reclamation=%ly", pgTot);
-#if CONFIG_RECIRC_DEPOT
- _simple_sprintf(b, tiny_region_below_recirc_threshold(mapped_region) ?
- "\tEmpty enough to be moved to recirc depot" :
- "\tNot empty enough to be moved to recirc depot");
-#endif // CONFIG_RECIRC_DEPOT
- }
- if (level >= MALLOC_VERBOSE_PRINT_LEVEL && in_use) {
+ }
+ if (verbose && in_use) {
_simple_sappend(b, "\n\tSizes in use: ");
for (ci = 0; ci < 1024; ci++) {
if (counts[ci]) {
- _simple_sprintf(b, "%y[%d] ", TINY_BYTES_FOR_MSIZE(ci), counts[ci]);
+ _simple_sprintf(b, "%d[%d] ", TINY_BYTES_FOR_MSIZE(ci), counts[ci]);
}
}
}
- printer("%s\n", _simple_string(b));
+ malloc_report(MALLOC_REPORT_NOLOG | MALLOC_REPORT_NOPREFIX, "%s\n", _simple_string(b));
_simple_sfree(b);
}
}
@@ -2965,39 +2508,3 @@
}
return 1;
}
-
-boolean_t
-tiny_check(rack_t *rack, unsigned counter)
-{
- size_t index;
-
- /* check tiny regions - chould check region count */
- for (index = 0; index < rack->region_generation->num_regions_allocated; ++index) {
- region_t 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(rack->magazines,
- REGION_TRAILER_FOR_TINY_REGION(tiny),
- MAGAZINE_INDEX_FOR_TINY_REGION(tiny));
-
- if (!tiny_check_region(rack, tiny, index, counter)) {
- SZONE_MAGAZINE_PTR_UNLOCK(tiny_mag_ptr);
- 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(rack, (grain_t)index, counter)) {
- return 0;
- }
- }
-
- return 1;
-}