/
githubmirror
/
libmicrohttpd
Обзор
Документация
Войти
/
githubmirror
/
libmicrohttpd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/microhttpd/memorypool.c
879 строк
29 KB
Christian Grothoff
fix red-zone support in memorypool
29 июл 2026, 14:19
Не верифицирован
29 июл 2026, 14:19
669daf7
Код
Авторство
О чём код?
/* This file is part of libmicrohttpd Copyright (C) 2007--2024 Daniel Pittman and Christian Grothoff Copyright (C) 2014--2024 Evgeny Grin (Karlson2k) This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ /** * @file memorypool.c * @brief memory pool * @author Christian Grothoff * @author Karlson2k (Evgeny Grin) */ #include "memorypool.h" #ifdef HAVE_STDLIB_H #include <stdlib.h> #endif /* HAVE_STDLIB_H */ #include <string.h> #include <stdint.h> #include "mhd_assert.h" #include "mhd_check.h" #ifdef HAVE_SYS_MMAN_H #include <sys/mman.h> #endif #ifdef _WIN32 #include <windows.h> #endif #ifdef HAVE_SYSCONF #include <unistd.h> #if defined(_SC_PAGE_SIZE) #define MHD_SC_PAGESIZE _SC_PAGE_SIZE #elif defined(_SC_PAGESIZE) #define MHD_SC_PAGESIZE _SC_PAGESIZE #endif /* _SC_PAGESIZE */ #endif /* HAVE_SYSCONF */ #include "mhd_limits.h" /* for SIZE_MAX, PAGESIZE / PAGE_SIZE */ #if defined(MHD_USE_PAGESIZE_MACRO) || defined(MHD_USE_PAGE_SIZE_MACRO) #ifndef HAVE_SYSCONF /* Avoid duplicate include */ #include <unistd.h> #endif /* HAVE_SYSCONF */ #ifdef HAVE_SYS_PARAM_H #include <sys/param.h> #endif /* HAVE_SYS_PARAM_H */ #endif /* MHD_USE_PAGESIZE_MACRO || MHD_USE_PAGE_SIZE_MACRO */ /** * Fallback value of page size */ #define _MHD_FALLBACK_PAGE_SIZE (4096) #if defined(MHD_USE_PAGESIZE_MACRO) #define MHD_DEF_PAGE_SIZE_ PAGESIZE #elif defined(MHD_USE_PAGE_SIZE_MACRO) #define MHD_DEF_PAGE_SIZE_ PAGE_SIZE #else /* ! PAGESIZE */ #define MHD_DEF_PAGE_SIZE_ _MHD_FALLBACK_PAGE_SIZE #endif /* ! PAGESIZE */ #ifdef MHD_ASAN_POISON_ACTIVE #include <sanitizer/asan_interface.h> #endif /* MHD_ASAN_POISON_ACTIVE */ /* define MAP_ANONYMOUS for Mac OS X */ #if defined(MAP_ANON) && ! defined(MAP_ANONYMOUS) #define MAP_ANONYMOUS MAP_ANON #endif #if defined(_WIN32) #define MAP_FAILED NULL #elif ! defined(MAP_FAILED) #define MAP_FAILED ((void*) -1) #endif /** * Align to 2x word size (as GNU libc does). */ #define ALIGN_SIZE (2 * sizeof(void*)) /** * Round up 'n' to a multiple of ALIGN_SIZE. */ #define ROUND_TO_ALIGN(n) (((n) + (ALIGN_SIZE - 1)) \ / (ALIGN_SIZE) *(ALIGN_SIZE)) /* ROUND_TO_ALIGN_PLUS_RED_ZONE() rounds up and, when user poisoning is active, adds a red zone, so its result is always >= its argument -- unless it wrapped. Every caller that passes a caller-supplied size must therefore reject the result with if (asize < size) and not by testing for zero. Testing for zero is correct only in the build where the red zone is 0: ROUND_TO_ALIGN() lands exactly on 0 for the top ALIGN_SIZE-1 values of size_t, so a zero result is the only wrapped outcome there. Adding a red zone moves that outcome to _MHD_RED_ZONE_SIZE, which is non-zero and small enough to pass the remaining-space test below it, so a zero test silently stops firing in exactly the build that has the extra instrumentation. Sizes that are already bounded by pool->size (MHD_pool_reset(), the block_offset + block_size expressions) cannot wrap and need no such test -- but they do need the trailing red zone clamped to pool->size, see the two sites that do so. */ #ifndef MHD_ASAN_POISON_ACTIVE #define _MHD_NOSANITIZE_PTRS /**/ #define _MHD_RED_ZONE_SIZE (0) #define ROUND_TO_ALIGN_PLUS_RED_ZONE(n) ROUND_TO_ALIGN(n) #define _MHD_POISON_MEMORY(pointer, size) (void)0 #define _MHD_UNPOISON_MEMORY(pointer, size) (void)0 /** * Boolean 'true' if the first pointer is less or equal the second pointer */ #define mp_ptr_le_(p1,p2) \ (((const uint8_t*)(p1)) <= ((const uint8_t*)(p2))) /** * The difference in bytes between positions of the first and * the second pointers */ #define mp_ptr_diff_(p1,p2) \ ((size_t)(((const uint8_t*)(p1)) - ((const uint8_t*)(p2)))) #else /* MHD_ASAN_POISON_ACTIVE */ #define _MHD_RED_ZONE_SIZE (ALIGN_SIZE) #define ROUND_TO_ALIGN_PLUS_RED_ZONE(n) (ROUND_TO_ALIGN(n) + _MHD_RED_ZONE_SIZE) #define _MHD_POISON_MEMORY(pointer, size) \ ASAN_POISON_MEMORY_REGION ((pointer), (size)) #define _MHD_UNPOISON_MEMORY(pointer, size) \ ASAN_UNPOISON_MEMORY_REGION ((pointer), (size)) #if defined(FUNC_PTRCOMPARE_CAST_WORKAROUND_WORKS) /** * Boolean 'true' if the first pointer is less or equal the second pointer */ #define mp_ptr_le_(p1,p2) \ (((uintptr_t)((const void*)(p1))) <= ((uintptr_t)((const void*)(p2)))) /** * The difference in bytes between positions of the first and * the second pointers */ #define mp_ptr_diff_(p1,p2) \ ((size_t)(((uintptr_t)((const uint8_t*)(p1))) - \ ((uintptr_t)((const uint8_t*)(p2))))) #elif defined(FUNC_ATTR_PTRCOMPARE_WORKS) && \ defined(FUNC_ATTR_PTRSUBTRACT_WORKS) #ifdef _DEBUG /** * Boolean 'true' if the first pointer is less or equal the second pointer */ __attribute__((no_sanitize ("pointer-compare"))) static bool mp_ptr_le_ (const void *p1, const void *p2) { return (((const uint8_t *) p1) <= ((const uint8_t *) p2)); } #endif /* _DEBUG */ /** * The difference in bytes between positions of the first and * the second pointers */ __attribute__((no_sanitize ("pointer-subtract"))) static size_t mp_ptr_diff_ (const void *p1, const void *p2) { return (size_t) (((const uint8_t *) p1) - ((const uint8_t *) p2)); } #elif defined(FUNC_ATTR_NOSANITIZE_WORKS) #ifdef _DEBUG /** * Boolean 'true' if the first pointer is less or equal the second pointer */ __attribute__((no_sanitize ("address"))) static bool mp_ptr_le_ (const void *p1, const void *p2) { return (((const uint8_t *) p1) <= ((const uint8_t *) p2)); } #endif /* _DEBUG */ /** * The difference in bytes between positions of the first and * the second pointers */ __attribute__((no_sanitize ("address"))) static size_t mp_ptr_diff_ (const void *p1, const void *p2) { return (size_t) (((const uint8_t *) p1) - ((const uint8_t *) p2)); } #else /* ! FUNC_ATTR_NOSANITIZE_WORKS */ #error User-poisoning cannot be used #endif /* ! FUNC_ATTR_NOSANITIZE_WORKS */ #endif /* MHD_ASAN_POISON_ACTIVE */ /** * Size of memory page */ static size_t MHD_sys_page_size_ = (size_t) #if defined(MHD_USE_PAGESIZE_MACRO_STATIC) PAGESIZE; #elif defined(MHD_USE_PAGE_SIZE_MACRO_STATIC) PAGE_SIZE; #else /* ! MHD_USE_PAGE_SIZE_MACRO_STATIC */ _MHD_FALLBACK_PAGE_SIZE; /* Default fallback value */ #endif /* ! MHD_USE_PAGE_SIZE_MACRO_STATIC */ /** * Initialise values for memory pools */ void MHD_init_mem_pools_ (void) { #ifdef MHD_SC_PAGESIZE long result; result = sysconf (MHD_SC_PAGESIZE); if (-1 != result) MHD_sys_page_size_ = (size_t) result; else MHD_sys_page_size_ = (size_t) MHD_DEF_PAGE_SIZE_; #elif defined(_WIN32) SYSTEM_INFO si; GetSystemInfo (&si); MHD_sys_page_size_ = (size_t) si.dwPageSize; #else MHD_sys_page_size_ = (size_t) MHD_DEF_PAGE_SIZE_; #endif /* _WIN32 */ mhd_assert (0 == (MHD_sys_page_size_ % ALIGN_SIZE)); } /** * Handle for a memory pool. Pools are not reentrant and must not be * used by multiple threads. */ struct MemoryPool { /** * Pointer to the pool's memory */ uint8_t *memory; /** * Size of the pool. */ size_t size; /** * Offset of the first unallocated byte. */ size_t pos; /** * Offset of the byte after the last unallocated byte. */ size_t end; /** * 'false' if pool was malloc'ed, 'true' if mmapped (VirtualAlloc'ed for W32). */ bool is_mmap; }; /** * Create a memory pool. * * @param max maximum size of the pool * @return NULL on error */ struct MemoryPool * MHD_pool_create (size_t max) { struct MemoryPool *pool; size_t alloc_size; mhd_assert (max > 0); alloc_size = 0; pool = malloc (sizeof (struct MemoryPool)); if (NULL == pool) return NULL; #if defined(MAP_ANONYMOUS) || defined(_WIN32) if ( (max <= 32 * 1024) || (max < MHD_sys_page_size_ * 4 / 3) ) { pool->memory = MAP_FAILED; } else { /* Round up allocation to page granularity. */ alloc_size = max + MHD_sys_page_size_ - 1; alloc_size -= alloc_size % MHD_sys_page_size_; #if defined(MAP_ANONYMOUS) && ! defined(_WIN32) pool->memory = mmap (NULL, alloc_size, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0); #elif defined(_WIN32) pool->memory = VirtualAlloc (NULL, alloc_size, MEM_COMMIT | MEM_RESERVE, PAGE_READWRITE); #endif /* _WIN32 */ } #else /* ! _WIN32 && ! MAP_ANONYMOUS */ pool->memory = MAP_FAILED; #endif /* ! _WIN32 && ! MAP_ANONYMOUS */ if (MAP_FAILED == pool->memory) { alloc_size = ROUND_TO_ALIGN (max); pool->memory = malloc (alloc_size); if (NULL == pool->memory) { free (pool); return NULL; } pool->is_mmap = false; } #if defined(MAP_ANONYMOUS) || defined(_WIN32) else { pool->is_mmap = true; } #endif /* _WIN32 || MAP_ANONYMOUS */ mhd_assert (0 == (((uintptr_t) pool->memory) % ALIGN_SIZE)); pool->pos = 0; pool->end = alloc_size; pool->size = alloc_size; mhd_assert (0 < alloc_size); _MHD_POISON_MEMORY (pool->memory, pool->size); return pool; } /** * Destroy a memory pool. * * @param pool memory pool to destroy */ void MHD_pool_destroy (struct MemoryPool *pool) { if (NULL == pool) return; mhd_assert (pool->end >= pool->pos); mhd_assert (pool->size >= pool->end - pool->pos); mhd_assert (pool->pos == ROUND_TO_ALIGN (pool->pos)); _MHD_UNPOISON_MEMORY (pool->memory, pool->size); if (! pool->is_mmap) free (pool->memory); else #if defined(MAP_ANONYMOUS) && ! defined(_WIN32) munmap (pool->memory, pool->size); #elif defined(_WIN32) VirtualFree (pool->memory, 0, MEM_RELEASE); #else abort (); #endif free (pool); } /** * Check how much memory is left in the @a pool * * @param pool pool to check * @return number of bytes still available in @a pool */ size_t MHD_pool_get_free (struct MemoryPool *pool) { mhd_assert (pool->end >= pool->pos); mhd_assert (pool->size >= pool->end - pool->pos); mhd_assert (pool->pos == ROUND_TO_ALIGN (pool->pos)); #ifdef MHD_ASAN_POISON_ACTIVE if ((pool->end - pool->pos) <= _MHD_RED_ZONE_SIZE) return 0; #endif /* MHD_ASAN_POISON_ACTIVE */ return (pool->end - pool->pos) - _MHD_RED_ZONE_SIZE; } /** * Allocate size bytes from the pool. * * @param pool memory pool to use for the operation * @param size number of bytes to allocate * @param from_end allocate from end of pool (set to 'true'); * use this for small, persistent allocations that * will never be reallocated * @return NULL if the pool cannot support size more * bytes */ void * MHD_pool_allocate (struct MemoryPool *pool, size_t size, bool from_end) { void *ret; size_t asize; mhd_assert (pool->end >= pool->pos); mhd_assert (pool->size >= pool->end - pool->pos); mhd_assert (pool->pos == ROUND_TO_ALIGN (pool->pos)); asize = ROUND_TO_ALIGN_PLUS_RED_ZONE (size); if (asize < size) return NULL; /* Value wrap, @a size is too close to SIZE_MAX */ if (asize > pool->end - pool->pos) return NULL; if (from_end) { ret = &pool->memory[pool->end - asize]; pool->end -= asize; } else { ret = &pool->memory[pool->pos]; pool->pos += asize; } _MHD_UNPOISON_MEMORY (ret, size); return ret; } /** * Checks whether allocated block is re-sizable in-place. * If block is not re-sizable in-place, it still could be shrunk, but freed * memory will not be re-used until reset of the pool. * @param pool the memory pool to use * @param block the pointer to the allocated block to check * @param block_size the size of the allocated @a block * @return true if block can be resized in-place in the optimal way, * false otherwise */ bool MHD_pool_is_resizable_inplace (struct MemoryPool *pool, void *block, size_t block_size) { mhd_assert (pool->end >= pool->pos); mhd_assert (pool->size >= pool->end - pool->pos); mhd_assert (block != NULL || block_size == 0); mhd_assert (pool->size >= block_size); if (NULL != block) { const size_t block_offset = mp_ptr_diff_ (block, pool->memory); mhd_assert (mp_ptr_le_ (pool->memory, block)); mhd_assert (pool->size >= block_offset); mhd_assert (pool->size >= block_offset + block_size); return (pool->pos == ROUND_TO_ALIGN_PLUS_RED_ZONE (block_offset + block_size)); } return false; /* Unallocated blocks cannot be resized in-place */ } /** * Try to allocate @a size bytes memory area from the @a pool. * * If allocation fails, @a required_bytes is updated with size required to be * freed in the @a pool from rellocatable area to allocate requested number * of bytes. * Allocated memory area is always not rellocatable ("from end"). * * @param pool memory pool to use for the operation * @param size the size of memory in bytes to allocate * @param[out] required_bytes the pointer to variable to be updated with * the size of the required additional free * memory area, set to 0 if function succeeds. * Cannot be NULL. * @return the pointer to allocated memory area if succeed, * NULL if the pool doesn't have enough space, required_bytes is updated * with amount of space needed to be freed in rellocatable area or * set to SIZE_MAX if requested size is too large for the pool. */ void * MHD_pool_try_alloc (struct MemoryPool *pool, size_t size, size_t *required_bytes) { void *ret; size_t asize; mhd_assert (pool->end >= pool->pos); mhd_assert (pool->size >= pool->end - pool->pos); mhd_assert (pool->pos == ROUND_TO_ALIGN (pool->pos)); asize = ROUND_TO_ALIGN_PLUS_RED_ZONE (size); if (asize < size) { /* Value wrap, @a size is too close to SIZE_MAX, very unlikely */ *required_bytes = SIZE_MAX; return NULL; } if (asize > pool->end - pool->pos) { mhd_assert ((pool->end - pool->pos) == \ ROUND_TO_ALIGN (pool->end - pool->pos)); if (asize <= pool->end) *required_bytes = asize - (pool->end - pool->pos); else *required_bytes = SIZE_MAX; return NULL; } *required_bytes = 0; ret = &pool->memory[pool->end - asize]; pool->end -= asize; _MHD_UNPOISON_MEMORY (ret, size); return ret; } /** * Reallocate a block of memory obtained from the pool. * This is particularly efficient when growing or * shrinking the block that was last (re)allocated. * If the given block is not the most recently * (re)allocated block, the memory of the previous * allocation may be not released until the pool is * destroyed or reset. * * @param pool memory pool to use for the operation * @param old the existing block * @param old_size the size of the existing block * @param new_size the new size of the block * @return new address of the block, or * NULL if the pool cannot support @a new_size * bytes (old continues to be valid for @a old_size) */ void * MHD_pool_reallocate (struct MemoryPool *pool, void *old, size_t old_size, size_t new_size) { size_t asize; uint8_t *new_blc; mhd_assert (pool->end >= pool->pos); mhd_assert (pool->size >= pool->end - pool->pos); mhd_assert (old != NULL || old_size == 0); mhd_assert (pool->size >= old_size); mhd_assert (pool->pos == ROUND_TO_ALIGN (pool->pos)); #if defined(MHD_ASAN_POISON_ACTIVE) && defined(HAVE___ASAN_REGION_IS_POISONED) mhd_assert (NULL == __asan_region_is_poisoned (old, old_size)); #endif /* MHD_ASAN_POISON_ACTIVE && HAVE___ASAN_REGION_IS_POISONED */ /* No block can ever be larger than the pool, so reject that here once rather than in each of the paths below. This is what stops a wrapping @a new_size: both remaining size tests are made on values that ROUND_TO_ALIGN_PLUS_RED_ZONE() has already wrapped back to something small and plausible, so neither of them fires and the caller is handed a block it believes is nearly SIZE_MAX bytes long. The documented contract is to return NULL when the pool cannot support @a new_size bytes. */ if (new_size > pool->size) return NULL; if (NULL != old) { /* Have previously allocated data */ const size_t old_offset = mp_ptr_diff_ (old, pool->memory); const bool shrinking = (old_size > new_size); /* 'old' and 'old_size' come from the caller and bound both the memset() that shrinking performs a few lines below and the memcpy (new_blc, old, old_size) at the end of this function, so this is the precondition of two unbounded copies and must hold in release builds too. Failing it returns NULL, aka "the pool cannot satisfy this request" and which leaves 'old' valid, so the connection is failed by the caller instead of corrupting the pool. The lower bound stays an assertion because mp_ptr_le_() only exists in debug builds when user-poisoning is active; it is subsumed anyway, because mp_ptr_diff_() wraps for a pointer below pool->memory and the resulting huge 'old_offset' fails the bound below. */ mhd_assert (mp_ptr_le_ (pool->memory, old)); /* (pool->memory + pool->size >= (uint8_t*) old + old_size) */ MHD_CHECK_RET_ ((pool->size - _MHD_RED_ZONE_SIZE) >= (old_offset + old_size), NULL); /* Blocks "from the end" must not be reallocated */ /* (old_size == 0 || pool->memory + pool->pos > (uint8_t*) old) */ mhd_assert ((old_size == 0) || \ (pool->pos > old_offset)); mhd_assert ((old_size == 0) || \ ((pool->end - _MHD_RED_ZONE_SIZE) >= (old_offset + old_size))); /* Try resizing in-place */ if (shrinking) { /* Shrinking in-place, zero-out freed part */ memset ((uint8_t *) old + new_size, 0, old_size - new_size); _MHD_POISON_MEMORY ((uint8_t *) old + new_size, old_size - new_size); } if (pool->pos == ROUND_TO_ALIGN_PLUS_RED_ZONE (old_offset + old_size)) { /* "old" block is the last allocated block */ const size_t new_apos = ROUND_TO_ALIGN_PLUS_RED_ZONE (old_offset + new_size); if (! shrinking) { /* Grow in-place, check for enough space. */ /* Reject a wrapping @a new_size before looking at 'new_apos'. 'old_offset + new_size' can wrap all the way round and land back inside [pool->pos, pool->end], and the two tests below then both pass: the caller is handed a block it believes is nearly SIZE_MAX bytes long. The "allocate a new block" path further down already has an explicit wrap test; this is the same check for the in-place path. */ if (new_size > pool->size - old_offset) return NULL; /* Value wrap, or beyond the pool */ if ( (new_apos > pool->end) || (new_apos < pool->pos) ) /* Value wrap */ return NULL; /* No space */ } /* Resized in-place */ pool->pos = new_apos; _MHD_UNPOISON_MEMORY (old, new_size); return old; } if (shrinking) return old; /* Resized in-place, freed part remains allocated */ } /* Need to allocate new block */ asize = ROUND_TO_ALIGN_PLUS_RED_ZONE (new_size); if ( (asize < new_size) || /* Value wrap, too large new_size. */ (asize > pool->end - pool->pos) ) /* Not enough space */ return NULL; new_blc = pool->memory + pool->pos; pool->pos += asize; _MHD_UNPOISON_MEMORY (new_blc, new_size); if (0 != old_size) { /* Move data to new block, old block remains allocated */ memcpy (new_blc, old, old_size); /* Zero-out old block */ memset (old, 0, old_size); _MHD_POISON_MEMORY (old, old_size); } return new_blc; } /** * Deallocate a block of memory obtained from the pool. * * If the given block is not the most recently * (re)allocated block, the memory of the this block * allocation may be not released until the pool is * destroyed or reset. * * @param pool memory pool to use for the operation * @param block the allocated block, the NULL is tolerated * @param block_size the size of the allocated block */ void MHD_pool_deallocate (struct MemoryPool *pool, void *block, size_t block_size) { mhd_assert (pool->end >= pool->pos); mhd_assert (pool->size >= pool->end - pool->pos); mhd_assert (block != NULL || block_size == 0); mhd_assert (pool->size >= block_size); mhd_assert (pool->pos == ROUND_TO_ALIGN (pool->pos)); if (NULL != block) { /* Have previously allocated data */ const size_t block_offset = mp_ptr_diff_ (block, pool->memory); mhd_assert (mp_ptr_le_ (pool->memory, block)); mhd_assert (block_offset <= pool->size); /* A block allocated "from the end" starts at or after pool->end, a "normal" block starts before it. Those two ranges meet when the pool is exactly full (pool->pos == pool->end), so an end block may legitimately start at pool->pos; only a normal block may not. */ mhd_assert ((block_offset >= pool->end) || \ (block_offset != pool->pos) || (block_size == 0)); /* Zero-out deallocated region */ if (0 != block_size) { memset (block, 0, block_size); _MHD_POISON_MEMORY (block, block_size); } #if ! defined(MHD_FAVOR_SMALL_CODE) && ! defined(MHD_ASAN_POISON_ACTIVE) else return; /* Zero size, no need to do anything */ #endif /* ! MHD_FAVOR_SMALL_CODE && ! MHD_ASAN_POISON_ACTIVE */ if (block_offset < pool->end) { /* "Normal" block, not allocated "from the end". The test is against pool->end, not pool->pos: when the pool is exactly full the two are equal, and a block allocated "from the end" then also satisfies 'block_offset <= pool->pos', so it would be mistaken for a normal block and never returned. */ size_t alg_end = ROUND_TO_ALIGN_PLUS_RED_ZONE (block_offset + block_size); /* Clamped exactly as MHD_pool_reset() clamps pool->pos, and for the same reason: a block that reaches the end of the pool has no room for a trailing red zone, so its recorded end is pool->size. The two have to agree or the "is this the last block" test below can never match such a block. */ if (alg_end > pool->size) alg_end = pool->size; mhd_assert (alg_end <= pool->pos); if (alg_end == pool->pos) { /* The last allocated block, return deallocated block to the pool */ size_t alg_start = ROUND_TO_ALIGN (block_offset); mhd_assert (alg_start >= block_offset); #if defined(MHD_ASAN_POISON_ACTIVE) if (alg_start != block_offset) { _MHD_POISON_MEMORY (pool->memory + block_offset, \ alg_start - block_offset); } else if (0 != alg_start) { bool need_red_zone_before; mhd_assert (_MHD_RED_ZONE_SIZE <= alg_start); #if defined(HAVE___ASAN_REGION_IS_POISONED) need_red_zone_before = (NULL == __asan_region_is_poisoned (pool->memory + alg_start - _MHD_RED_ZONE_SIZE, _MHD_RED_ZONE_SIZE)); #elif defined(HAVE___ASAN_ADDRESS_IS_POISONED) need_red_zone_before = (0 == __asan_address_is_poisoned (pool->memory + alg_start - 1)); #else /* ! HAVE___ASAN_ADDRESS_IS_POISONED */ need_red_zone_before = true; /* Unknown, assume new red zone needed */ #endif /* ! HAVE___ASAN_ADDRESS_IS_POISONED */ if (need_red_zone_before) { _MHD_POISON_MEMORY (pool->memory + alg_start, _MHD_RED_ZONE_SIZE); alg_start += _MHD_RED_ZONE_SIZE; } } #endif /* MHD_ASAN_POISON_ACTIVE */ mhd_assert (alg_start <= pool->pos); mhd_assert (alg_start == ROUND_TO_ALIGN (alg_start)); pool->pos = alg_start; } } else { /* Allocated "from the end" block. */ /* The size and the pointers of such block should not be manipulated by MHD code (block split is disallowed). */ mhd_assert (block_offset >= pool->end); mhd_assert (ROUND_TO_ALIGN (block_offset) == block_offset); if (block_offset == pool->end) { /* The last allocated block, return deallocated block to the pool */ const size_t alg_end = ROUND_TO_ALIGN_PLUS_RED_ZONE (block_offset + block_size); pool->end = alg_end; } } } } /** * Clear all entries from the memory pool except * for @a keep of the given @a copy_bytes. The pointer * returned should be a buffer of @a new_size where * the first @a copy_bytes are from @a keep. * * @param pool memory pool to use for the operation * @param keep pointer to the entry to keep (maybe NULL) * @param copy_bytes how many bytes need to be kept at this address * @param new_size how many bytes should the allocation we return have? * (should be larger or equal to @a copy_bytes) * @return addr new address of @a keep (if it had to change) */ void * MHD_pool_reset (struct MemoryPool *pool, void *keep, size_t copy_bytes, size_t new_size) { mhd_assert (pool->end >= pool->pos); mhd_assert (pool->size >= pool->end - pool->pos); mhd_assert (copy_bytes <= new_size); mhd_assert (new_size <= pool->size); mhd_assert (copy_bytes <= pool->size); mhd_assert (keep != NULL || copy_bytes == 0); mhd_assert (keep == NULL || mp_ptr_le_ (pool->memory, keep)); /* (keep == NULL || pool->memory + pool->size >= (uint8_t*) keep + copy_bytes) */ mhd_assert ((keep == NULL) || \ (pool->size >= mp_ptr_diff_ (keep, pool->memory) + copy_bytes)); #if defined(MHD_ASAN_POISON_ACTIVE) && defined(HAVE___ASAN_REGION_IS_POISONED) mhd_assert (NULL == __asan_region_is_poisoned (keep, copy_bytes)); #endif /* MHD_ASAN_POISON_ACTIVE && HAVE___ASAN_REGION_IS_POISONED */ _MHD_UNPOISON_MEMORY (pool->memory, new_size); if ( (NULL != keep) && (keep != pool->memory) ) { if (0 != copy_bytes) memmove (pool->memory, keep, copy_bytes); } /* technically not needed, but safer to zero out */ if (pool->size > copy_bytes) { size_t to_zero; /** Size of area to zero-out */ to_zero = pool->size - copy_bytes; _MHD_UNPOISON_MEMORY (pool->memory + copy_bytes, to_zero); #ifdef _WIN32 if (pool->is_mmap) { size_t to_recommit; /** Size of decommitted and re-committed area. */ uint8_t *recommit_addr; /* Round down to page size */ to_recommit = to_zero - to_zero % MHD_sys_page_size_; recommit_addr = pool->memory + pool->size - to_recommit; /* De-committing and re-committing again clear memory and make * pages free / available for other needs until accessed. */ if (VirtualFree (recommit_addr, to_recommit, MEM_DECOMMIT)) { to_zero -= to_recommit; if (recommit_addr != VirtualAlloc (recommit_addr, to_recommit, MEM_COMMIT, PAGE_READWRITE)) abort (); /* Serious error, must never happen */ } } #endif /* _WIN32 */ memset (&pool->memory[copy_bytes], 0, to_zero); } pool->pos = ROUND_TO_ALIGN_PLUS_RED_ZONE (new_size); /* The red zone is a gap kept *inside* the pool so that an overrun of the block lands in poisoned bytes. There is no room for it once the kept block reaches the end of the pool, and none is needed there either -- past pool->size the allocation's own ASAN red zone takes over. Without this clamp pool->pos would be set past pool->end for any @a new_size within a red zone of pool->size, breaking the pool->end >= pool->pos invariant that every other entry point asserts. In the build with no user poisoning _MHD_RED_ZONE_SIZE is 0 and this can never fire. */ if (pool->pos > pool->size) pool->pos = pool->size; pool->end = pool->size; _MHD_POISON_MEMORY (((uint8_t *) pool->memory) + new_size, \ pool->size - new_size); return pool->memory; } /* end of memorypool.c */