elfload: Fix alignment when unmapping excess reservation
authorFabiano Rosas <farosas@suse.de>
Thu, 13 Feb 2025 14:35:58 +0000 (11:35 -0300)
committerRichard Henderson <richard.henderson@linaro.org>
Tue, 18 Feb 2025 16:29:03 +0000 (08:29 -0800)
commit4b7b20a3b72c5000ea71bef505c16e6e628268b6
tree01134adbde36739121af623db7c79271bf949039
parent1bbcae5adaad2d8f026194002f54913be5ee0933
elfload: Fix alignment when unmapping excess reservation

When complying with the alignment requested in the ELF and unmapping
the excess reservation, having align_end not aligned to the guest page
causes the unmap to be rejected by the alignment check at
target_munmap and later brk adjustments hit an EEXIST.

Fix by aligning the start of region to be unmapped.

Fixes: c81d1fafa6 ("linux-user: Honor elf alignment when placing images")
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1913
Signed-off-by: Fabiano Rosas <farosas@suse.de>
[rth: Align load_end as well.]
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-ID: <20250213143558.10504-1-farosas@suse.de>
linux-user/elfload.c