aboutsummaryrefslogtreecommitdiff
path: root/bfd/elf.c
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2018-02-08 10:28:25 +0000
committerNick Clifton <nickc@redhat.com>2018-02-08 10:28:25 +0000
commitef135d4314fd4c2d7da66b9d7b59af4a85b0f7e6 (patch)
treea2773089464d8c0792dfa2fc4e3e88fc69907e20 /bfd/elf.c
parentPR22819, powerpc gas "instruction address is not a multiple of 4" (diff)
downloadbinutils-gdb-ef135d4314fd4c2d7da66b9d7b59af4a85b0f7e6.tar.gz
binutils-gdb-ef135d4314fd4c2d7da66b9d7b59af4a85b0f7e6.tar.bz2
binutils-gdb-ef135d4314fd4c2d7da66b9d7b59af4a85b0f7e6.zip
Fix a seg-fault in the ELF note parser when a note with an excessively large alignment is encountered.
PR 22788 * elf.c (elf_parse_notes): Reject notes with excessuively large alignments.
Diffstat (limited to 'bfd/elf.c')
-rw-r--r--bfd/elf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/bfd/elf.c b/bfd/elf.c
index dedf35feb3c..db1e076b554 100644
--- a/bfd/elf.c
+++ b/bfd/elf.c
@@ -11012,6 +11012,8 @@ elf_parse_notes (bfd *abfd, char *buf, size_t size, file_ptr offset,
align is less than 4, we use 4 byte alignment. */
if (align < 4)
align = 4;
+ if (align != 4 && align != 8)
+ return FALSE;
p = buf;
while (p < buf + size)