diff options
author | Nick Clifton <nickc@redhat.com> | 2005-05-17 18:08:08 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2005-05-17 18:08:08 +0000 |
commit | 5982e3c7e8b3c1a9c67fb064f19bd00557bcd19c (patch) | |
tree | ce0173aecf9a4e4325d7c479cbe5861b5aa9c60d /bfd/elf.c | |
parent | fc3ab699092349e7567ea846f264e1e7e166338d (diff) | |
download | gdb-5982e3c7e8b3c1a9c67fb064f19bd00557bcd19c.zip gdb-5982e3c7e8b3c1a9c67fb064f19bd00557bcd19c.tar.gz gdb-5982e3c7e8b3c1a9c67fb064f19bd00557bcd19c.tar.bz2 |
(group_signature): Check for a group section which is actually a (corrupt)
symbol table section in disguise and prevent an infinite loop from occurring.
Diffstat (limited to 'bfd/elf.c')
-rw-r--r-- | bfd/elf.c | 17 |
1 files changed, 16 insertions, 1 deletions
@@ -451,8 +451,23 @@ group_signature (bfd *abfd, Elf_Internal_Shdr *ghdr) unsigned char esym[sizeof (Elf64_External_Sym)]; Elf_External_Sym_Shndx eshndx; Elf_Internal_Sym isym; + unsigned int i; + + if (ghdr == NULL) + return NULL; + + /* If this section is linked to by other sections then it is a symbol or + string section which is masquerading as a group. This is a bad thing, + and if we carry on to the call to bfd_section_from_shdr below we will + enter an infinite loop. So check now and break out if we detect this + case. See: + http://sources.redhat.com/ml/binutils/2005-05/msg00421.html + for a report of a case that tirggers this code. */ + for (i = elf_numsections (abfd); i--;) + if (elf_elfsections (abfd) [elf_elfsections (abfd) [i]->sh_link] == ghdr) + return NULL; - /* First we need to ensure the symbol table is available. */ + /* Next we need to ensure the symbol table is available. */ if (! bfd_section_from_shdr (abfd, ghdr->sh_link)) return NULL; |