From: Alan Modra Date: Mon, 16 Mar 2020 09:04:00 +0000 (+1030) Subject: PR25675: SIGSEGV in bfd_octets_per_byte X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=4b3ecb3b91b1b6154a6444efdcbadb90854a6654;hp=28d1356774c2c61adc7d6e6723de2351cd9f4ddc;p=deliverable%2Fbinutils-gdb.git PR25675: SIGSEGV in bfd_octets_per_byte PR 25675 * elf.c (elf_sort_segments): Don't call bfd_octets_per_byte unless we have a non-zero section count. Do lma comparison in octets. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index cd421649cc..76e2ba0fb8 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,9 @@ +2020-03-16 Alan Modra + + PR 25675 + * elf.c (elf_sort_segments): Don't call bfd_octets_per_byte unless + we have a non-zero section count. Do lma comparison in octets. + 2020-03-16 Alan Modra * vms-alpha.c (dst_restore_location): Validate index into diff --git a/bfd/elf.c b/bfd/elf.c index c8241cc579..8ab7b3e2e8 100644 --- a/bfd/elf.c +++ b/bfd/elf.c @@ -5312,19 +5312,25 @@ elf_sort_segments (const void *arg1, const void *arg2) return m1->no_sort_lma ? -1 : 1; if (m1->p_type == PT_LOAD && !m1->no_sort_lma) { - unsigned int opb = bfd_octets_per_byte (m1->sections[0]->owner, - m1->sections[0]); - bfd_vma lma1, lma2; /* Bytes. */ + bfd_vma lma1, lma2; /* Octets. */ lma1 = 0; if (m1->p_paddr_valid) - lma1 = m1->p_paddr / opb; + lma1 = m1->p_paddr; else if (m1->count != 0) - lma1 = m1->sections[0]->lma + m1->p_vaddr_offset; + { + unsigned int opb = bfd_octets_per_byte (m1->sections[0]->owner, + m1->sections[0]); + lma1 = (m1->sections[0]->lma + m1->p_vaddr_offset) * opb; + } lma2 = 0; if (m2->p_paddr_valid) - lma2 = m2->p_paddr / opb; + lma2 = m2->p_paddr; else if (m2->count != 0) - lma2 = m2->sections[0]->lma + m2->p_vaddr_offset; + { + unsigned int opb = bfd_octets_per_byte (m2->sections[0]->owner, + m2->sections[0]); + lma2 = (m2->sections[0]->lma + m2->p_vaddr_offset) * opb; + } if (lma1 != lma2) return lma1 < lma2 ? -1 : 1; }