diff options
author | Dave Anglin <dave.anglin@nrc.ca> | 2005-08-14 22:34:11 +0000 |
---|---|---|
committer | Dave Anglin <dave.anglin@nrc.ca> | 2005-08-14 22:34:11 +0000 |
commit | 1c0751b201c5c544bbb7c1e917e9c27e64fd5d47 (patch) | |
tree | 39357dadc6bf4631ac1e883dd444ef48e729187a /binutils | |
parent | 63a3357b7b8d2528e233fd6507eec9c57de346a2 (diff) | |
download | gdb-1c0751b201c5c544bbb7c1e917e9c27e64fd5d47.zip gdb-1c0751b201c5c544bbb7c1e917e9c27e64fd5d47.tar.gz gdb-1c0751b201c5c544bbb7c1e917e9c27e64fd5d47.tar.bz2 |
* readelf.c (slurp_hppa_unwind_table): Fix entry size on hppa64-hpux.
Don't access table entries past the end of the table.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 5 | ||||
-rw-r--r-- | binutils/readelf.c | 36 |
2 files changed, 19 insertions, 22 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 00048c1..55d8ce9 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2005-08-14 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> + + * readelf.c (slurp_hppa_unwind_table): Fix entry size on hppa64-hpux. + Don't access table entries past the end of the table. + 2005-08-13 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> * readelf.c (get_parisc_segment_type): Handle PT_PARISC_WEAKORDER. diff --git a/binutils/readelf.c b/binutils/readelf.c index 5bd38f6..57a6047 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -5198,7 +5198,7 @@ slurp_hppa_unwind_table (FILE *file, struct hppa_unw_aux_info *aux, Elf_Internal_Shdr *sec) { - unsigned long size, unw_ent_size, nrelas, i; + unsigned long size, unw_ent_size, nentries, nrelas, i; Elf_Internal_Phdr *seg; struct hppa_unw_table_entry *tep; Elf_Internal_Shdr *relsec; @@ -5238,31 +5238,26 @@ slurp_hppa_unwind_table (FILE *file, if (!table) return 0; - unw_ent_size = 2 * eh_addr_size + 8; + unw_ent_size = 16; + nentries = size / unw_ent_size; + size = unw_ent_size * nentries; - tep = aux->table = xcmalloc (size / unw_ent_size, sizeof (aux->table[0])); + tep = aux->table = xcmalloc (nentries, sizeof (aux->table[0])); - for (tp = table; tp < table + size; tp += (2 * eh_addr_size + 8), ++tep) + for (tp = table; tp < table + size; tp += unw_ent_size, ++tep) { unsigned int tmp1, tmp2; tep->start.section = SHN_UNDEF; tep->end.section = SHN_UNDEF; - if (is_32bit_elf) - { - tep->start.offset = byte_get ((unsigned char *) tp + 0, 4); - tep->end.offset = byte_get ((unsigned char *) tp + 4, 4); - tmp1 = byte_get ((unsigned char *) tp + 8, 4); - tmp2 = byte_get ((unsigned char *) tp + 12, 4); - } - else - { - tep->start.offset = BYTE_GET ((unsigned char *) tp + 0); - tep->end.offset = BYTE_GET ((unsigned char *) tp + 8); - tmp1 = byte_get ((unsigned char *) tp + 16, 4); - tmp2 = byte_get ((unsigned char *) tp + 20, 4); - } + tep->start.offset = byte_get ((unsigned char *) tp + 0, 4); + tep->end.offset = byte_get ((unsigned char *) tp + 4, 4); + tmp1 = byte_get ((unsigned char *) tp + 8, 4); + tmp2 = byte_get ((unsigned char *) tp + 12, 4); + + tep->start.offset += aux->seg_base; + tep->end.offset += aux->seg_base; tep->Cannot_unwind = (tmp1 >> 31) & 0x1; tep->Millicode = (tmp1 >> 30) & 0x1; @@ -5295,9 +5290,6 @@ slurp_hppa_unwind_table (FILE *file, tep->Pseudo_SP_Set = (tmp2 >> 28) & 0x1; tep->reserved4 = (tmp2 >> 27) & 0x1; tep->Total_frame_size = tmp2 & 0x7ffffff; - - tep->start.offset += aux->seg_base; - tep->end.offset += aux->seg_base; } free (table); @@ -5356,7 +5348,7 @@ slurp_hppa_unwind_table (FILE *file, free (rela); } - aux->table_len = size / unw_ent_size; + aux->table_len = nentries; return 1; } |