From: Nick Clifton Date: Tue, 2 May 2017 10:54:53 +0000 (+0100) Subject: Prevent memory exhaustion from a corrupt PE binary with an overlarge number of relocs. X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=39ff1b79f687b65f4144ddb379f22587003443fb;p=deliverable%2Fbinutils-gdb.git Prevent memory exhaustion from a corrupt PE binary with an overlarge number of relocs. PR 21440 * objdump.c (dump_relocs_in_section): Check for an excessive number of relocs before attempting to dump them. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index ae8defb4dd..5fdcd4dd77 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,9 @@ +2017-05-02 Nick Clifton + + PR 21440 + * objdump.c (dump_relocs_in_section): Check for an excessive + number of relocs before attempting to dump them. + 2017-05-01 Alan Modra * objcopy.c (merge_gnu_build_notes): Correct code deleting diff --git a/binutils/objdump.c b/binutils/objdump.c index bc610003a7..5972da1d4e 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -3379,6 +3379,14 @@ dump_relocs_in_section (bfd *abfd, return; } + if ((bfd_get_file_flags (abfd) & (BFD_IN_MEMORY | BFD_LINKER_CREATED)) == 0 + && relsize > get_file_size (bfd_get_filename (abfd))) + { + printf (" (too many: 0x%x)\n", section->reloc_count); + bfd_set_error (bfd_error_file_truncated); + bfd_fatal (bfd_get_filename (abfd)); + } + relpp = (arelent **) xmalloc (relsize); relcount = bfd_canonicalize_reloc (abfd, section, relpp, syms);