avoid malloc failure for small requests when brk can't be extended
authorRich Felker <dalias@aerifal.cx>
Wed, 2 Apr 2014 21:57:15 +0000 (17:57 -0400)
committerRich Felker <dalias@aerifal.cx>
Mon, 30 Mar 2015 05:54:08 +0000 (01:54 -0400)
commitfdc39fac106fdb0df66c6fbc686b1b52159cc7df
treed1ce4c9fb46f50b3c0ad3f63e9a2fbf0928fba1e
parente2063ac08b6d7a9b7049e41a399e639b738a6510
avoid malloc failure for small requests when brk can't be extended

this issue mainly affects PIE binaries and execution of programs via
direct invocation of the dynamic linker binary: depending on kernel
behavior, in these cases the initial brk may be placed at at location
where it cannot be extended, due to conflicting adjacent maps.

when brk fails, mmap is used instead to expand the heap. in order to
avoid expensive bookkeeping for managing fragmentation by merging
these new heap regions, the minimum size for new heap regions
increases exponentially in the number of regions. this limits the
number of regions, and thereby the number of fixed fragmentation
points, to a quantity which is logarithmic with respect to the size of
virtual address space and thus negligible. the exponential growth is
tuned so as to avoid expanding the heap by more than approximately 50%
of its current total size.

(cherry picked from commit 5446303328adf4b4e36d9fba21848e6feb55fab4)
src/malloc/malloc.c