mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-10-18 21:34:13 +08:00
PR22746, crash when running 32-bit objdump on corrupted file
Avoid unsigned int overflow by performing bfd_size_type multiplication. PR 22746 * elfcode.h (elf_object_p): Avoid integer overflow.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2018-01-25 Alan Modra <amodra@gmail.com>
|
||||||
|
|
||||||
|
PR 22746
|
||||||
|
* elfcode.h (elf_object_p): Avoid integer overflow.
|
||||||
|
|
||||||
2018-01-25 Eric Botcazou <ebotcazou@adacore.com>
|
2018-01-25 Eric Botcazou <ebotcazou@adacore.com>
|
||||||
|
|
||||||
PR ld/22727
|
PR ld/22727
|
||||||
|
@ -680,7 +680,7 @@ elf_object_p (bfd *abfd)
|
|||||||
if (i_ehdrp->e_shnum > ((bfd_size_type) -1) / sizeof (*i_shdrp))
|
if (i_ehdrp->e_shnum > ((bfd_size_type) -1) / sizeof (*i_shdrp))
|
||||||
goto got_wrong_format_error;
|
goto got_wrong_format_error;
|
||||||
#endif
|
#endif
|
||||||
amt = sizeof (*i_shdrp) * i_ehdrp->e_shnum;
|
amt = sizeof (*i_shdrp) * (bfd_size_type) i_ehdrp->e_shnum;
|
||||||
i_shdrp = (Elf_Internal_Shdr *) bfd_alloc (abfd, amt);
|
i_shdrp = (Elf_Internal_Shdr *) bfd_alloc (abfd, amt);
|
||||||
if (!i_shdrp)
|
if (!i_shdrp)
|
||||||
goto got_no_match;
|
goto got_no_match;
|
||||||
@ -776,7 +776,7 @@ elf_object_p (bfd *abfd)
|
|||||||
if (i_ehdrp->e_phnum > ((bfd_size_type) -1) / sizeof (*i_phdr))
|
if (i_ehdrp->e_phnum > ((bfd_size_type) -1) / sizeof (*i_phdr))
|
||||||
goto got_wrong_format_error;
|
goto got_wrong_format_error;
|
||||||
#endif
|
#endif
|
||||||
amt = i_ehdrp->e_phnum * sizeof (*i_phdr);
|
amt = (bfd_size_type) i_ehdrp->e_phnum * sizeof (*i_phdr);
|
||||||
elf_tdata (abfd)->phdr = (Elf_Internal_Phdr *) bfd_alloc (abfd, amt);
|
elf_tdata (abfd)->phdr = (Elf_Internal_Phdr *) bfd_alloc (abfd, amt);
|
||||||
if (elf_tdata (abfd)->phdr == NULL)
|
if (elf_tdata (abfd)->phdr == NULL)
|
||||||
goto got_no_match;
|
goto got_no_match;
|
||||||
|
Reference in New Issue
Block a user