From 774852e913cf7d602c54d6422d40e5995a08a8ae Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Thu, 20 Aug 1998 22:08:22 +0000 Subject: [PATCH] Fix seg fault when displaying linker error message --- bfd/ChangeLog | 9 +++++++++ bfd/elf32-arm.c | 46 ++++++++++++++++++++++++++-------------------- 2 files changed, 35 insertions(+), 20 deletions(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index a15d3ada70..80c329cfdd 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,12 @@ +start-sanitize-armelf +Thu Aug 20 15:03:45 1998 Nick Clifton + + * elf32-arm.c (elf32_thumb_to_arm_stub): Check sym_sec is not NULL + before looking at owner field. + (elf32_arm_to_thumb_stub): Ditto. + (elf32_arm_relocate_section): Compute name before calling + elf32_arm_final_link_relocate(). +end-sanitize-armelf Wed Aug 19 15:43:26 1998 Michael Snyder * elfcode.h (elf_object_p): Reject files of header type ET_CORE diff --git a/bfd/elf32-arm.c b/bfd/elf32-arm.c index 877dd2dd55..55a777782a 100644 --- a/bfd/elf32-arm.c +++ b/bfd/elf32-arm.c @@ -1010,6 +1010,9 @@ insert_thumb_branch (br_insn, rel_off) return br_insn; } + +/* Thumb code calling an ARM function */ +int elf32_thumb_to_arm_stub (info, name, input_bfd, output_bfd, input_section, hit_data, sym_sec, offset, addend, val) struct bfd_link_info *info; @@ -1023,8 +1026,6 @@ elf32_thumb_to_arm_stub (info, name, input_bfd, output_bfd, input_section, int addend; bfd_vma val; { - - /* Thumb code calling an ARM function */ asection *s = 0; long int my_offset; unsigned long int tmp; @@ -1052,8 +1053,8 @@ elf32_thumb_to_arm_stub (info, name, input_bfd, output_bfd, input_section, if ((my_offset & 0x01) == 0x01) { - - if (sym_sec->owner != NULL + if (sym_sec != NULL + && sym_sec->owner != NULL && !INTERWORK_FLAG (sym_sec->owner)) { _bfd_error_handler @@ -1105,6 +1106,9 @@ elf32_thumb_to_arm_stub (info, name, input_bfd, output_bfd, input_section, insert_thumb_branch (tmp, ret_offset), hit_data - input_section->vma); } + +/* Arm code calling a Thumb function */ +int elf32_arm_to_thumb_stub (info, name, input_bfd, output_bfd, input_section, hit_data, sym_sec, offset, addend, val) @@ -1119,7 +1123,6 @@ elf32_arm_to_thumb_stub (info, name, input_bfd, output_bfd, input_section, int addend; bfd_vma val; { - /* Arm code calling a Thumb function */ unsigned long int tmp; long int my_offset; asection *s; @@ -1145,8 +1148,8 @@ elf32_arm_to_thumb_stub (info, name, input_bfd, output_bfd, input_section, if ((my_offset & 0x01) == 0x01) { - - if (sym_sec->owner != NULL + if (sym_sec != NULL + && sym_sec->owner != NULL && !INTERWORK_FLAG (sym_sec->owner)) { _bfd_error_handler @@ -1190,6 +1193,7 @@ elf32_arm_to_thumb_stub (info, name, input_bfd, output_bfd, input_section, - input_section->vma); } + /* Perform a relocation as part of a final link. */ static bfd_reloc_status_type elf32_arm_final_link_relocate (howto, input_bfd, output_bfd, @@ -1205,7 +1209,7 @@ elf32_arm_final_link_relocate (howto, input_bfd, output_bfd, bfd_vma addend; struct bfd_link_info *info; asection *sym_sec; - char *sym_name; + const char *sym_name; unsigned char sym_flags; { unsigned long r_type = howto->type; @@ -1410,6 +1414,8 @@ elf32_arm_final_link_relocate (howto, input_bfd, output_bfd, return bfd_reloc_notsupported; } } + + /* Relocate an ARM ELF section. */ static boolean elf32_arm_relocate_section (output_bfd, info, input_bfd, input_section, @@ -1426,6 +1432,7 @@ elf32_arm_relocate_section (output_bfd, info, input_bfd, input_section, Elf_Internal_Shdr *symtab_hdr; struct elf_link_hash_entry **sym_hashes; Elf_Internal_Rela *rel, *relend; + const char *name; symtab_hdr = &elf_tdata (input_bfd)->symtab_hdr; sym_hashes = elf_sym_hashes (input_bfd); @@ -1504,29 +1511,28 @@ elf32_arm_relocate_section (output_bfd, info, input_bfd, input_section, } } + if (h != NULL) + name = h->root.root.string; + else + { + name = (bfd_elf_string_from_elf_section + (input_bfd, symtab_hdr->sh_link, sym->st_name)); + if (name == NULL || *name == '\0') + name = bfd_section_name (input_bfd, sec); + } + r = elf32_arm_final_link_relocate (howto, input_bfd, output_bfd, input_section, contents, rel->r_offset, relocation, rel->r_addend, - info, sec, (h ? h->root.root.string : 0), + info, sec, name, (h ? h->other : sym->st_other)); if (r != bfd_reloc_ok) { - const char *name; const char *msg = (const char *) 0; - if (h != NULL) - name = h->root.root.string; - else - { - name = (bfd_elf_string_from_elf_section - (input_bfd, symtab_hdr->sh_link, sym->st_name)); - if (name == NULL || *name == '\0') - name = bfd_section_name (input_bfd, sec); - } - switch (r) { case bfd_reloc_overflow: -- 2.34.1