mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
ldso: don't reclaim zero-memory-sized segments
Some weird linkers may emit PT_LOAD segments with memsz = 0. ELF specification does not forbid this, but such a segment with non-zero p_vaddr will result in reclaiming of invalid memory address. This patch skips such segments during reclaiming for better compatibility.
This commit is contained in:
parent
1a98576401
commit
5ccf05d86d
1 changed files with 1 additions and 0 deletions
|
@ -616,6 +616,7 @@ static void reclaim_gaps(struct dso *dso)
|
|||
for (; phcnt--; ph=(void *)((char *)ph+dso->phentsize)) {
|
||||
if (ph->p_type!=PT_LOAD) continue;
|
||||
if ((ph->p_flags&(PF_R|PF_W))!=(PF_R|PF_W)) continue;
|
||||
if (ph->p_memsz == 0) continue;
|
||||
reclaim(dso, ph->p_vaddr & -PAGE_SIZE, ph->p_vaddr);
|
||||
reclaim(dso, ph->p_vaddr+ph->p_memsz,
|
||||
ph->p_vaddr+ph->p_memsz+PAGE_SIZE-1 & -PAGE_SIZE);
|
||||
|
|
Loading…
Add table
Reference in a new issue