From: Mark Wielaard Date: Wed, 9 May 2012 09:27:44 +0000 (+0200) Subject: elflint: Allow zero sized sections at (filesz) end of segment. X-Git-Tag: elfutils-0.154~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=36aa5987df20c340fdfc584e04f4b3931a89abbd;p=thirdparty%2Felfutils.git elflint: Allow zero sized sections at (filesz) end of segment. --- diff --git a/src/ChangeLog b/src/ChangeLog index cae5e6b30..af1d92bd7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2012-05-09 Roland McGrath + + * elflint (check_sections): Allow zero sized sections at (filesz) end + of segment. And make check overflow-proofed. + 2012-04-24 Mark Wielaard * readelf.c (print_ops): Add DW_OP_GNU_push_tls_address, diff --git a/src/elflint.c b/src/elflint.c index a03caac1d..7c5606943 100644 --- a/src/elflint.c +++ b/src/elflint.c @@ -3716,8 +3716,10 @@ section [%2zu] '%s' is both executable and writable\n"), || (phdr->p_type == PT_TLS && (shdr->sh_flags & SHF_TLS) != 0)) && phdr->p_offset <= shdr->sh_offset - && (phdr->p_offset + phdr->p_filesz > shdr->sh_offset - || (phdr->p_offset + phdr->p_memsz > shdr->sh_offset + && ((shdr->sh_offset - phdr->p_offset <= phdr->p_filesz + && (shdr->sh_offset - phdr->p_offset < phdr->p_filesz + || shdr->sh_size == 0)) + || (shdr->sh_offset - phdr->p_offset < phdr->p_memsz && shdr->sh_type == SHT_NOBITS))) { /* Found the segment. */