PR ld/21334: Always call `_bfd_elf_link_renumber_dynsyms' if required
[deliverable/binutils-gdb.git] / bfd / ChangeLog
index 4703b21f8ee57ace640b7170a9e18ca941df1b78..c75897c2558edecb089d6a7057dccad42afe978e 100644 (file)
@@ -1,3 +1,375 @@
+2017-04-26  Maciej W. Rozycki  <macro@imgtec.com>
+
+       PR ld/21334
+       * elf-bfd.h (elf_backend_data): Add `always_renumber_dynsyms'
+       member.
+       * elfxx-target.h [!elf_backend_always_renumber_dynsyms]
+       (elf_backend_always_renumber_dynsyms): Define.
+       (elfNN_bed): Initialize `always_renumber_dynsyms' member.
+       * elfxx-mips.h (elf_backend_always_renumber_dynsyms): Define.
+       * elflink.c (bfd_elf_size_dynamic_sections): Also call
+       `_bfd_elf_link_renumber_dynsyms' if the backend has requested
+       it.
+       (bfd_elf_size_dynsym_hash_dynstr): Likewise.
+
+2017-04-26  Maciej W. Rozycki  <macro@imgtec.com>
+
+       * elflink.c (bfd_elf_size_dynamic_sections): Only call
+       `_bfd_elf_link_renumber_dynsyms' after section GC if dynamic
+       sections have been created.
+
+2017-04-26  Nick Clifton  <nickc@redhat.com>
+
+       PR binutils/21431
+       * compress.c (bfd_init_section_compress_status): Check the return
+       value from bfd_malloc.
+
+2017-04-24  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * elf64-x86-64.c (elf_x86_64_link_hash_entry): Add
+       no_finish_dynamic_symbol.
+       (elf_x86_64_link_hash_newfunc): Set no_finish_dynamic_symbol to
+       0.
+       (elf_x86_64_allocate_dynrelocs): If a symbol isn't undefined
+       weak symbol, don't make it dynamic.
+       (elf_x86_64_relocate_section): If a symbol isn't dynamic in PIC,
+       set no_finish_dynamic_symbol and generate R_X86_64_RELATIVE
+       relocation for GOT reference.
+       (elf_x86_64_finish_dynamic_symbol): Abort if
+       no_finish_dynamic_symbol isn't 0.
+
+2017-04-24  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR ld/21402
+       * elf32-i386.c (elf_i386_allocate_dynrelocs): If a symbol isn't
+       undefined weak symbol, don't make it dynamic.
+       (elf_i386_relocate_section): If a symbol isn't dynamic in PIC,
+       set no_finish_dynamic_symbol and generate R_386_RELATIVE
+       relocation for R_386_GOT32.
+
+2017-04-24  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR ld/21425
+       * elf32-i386.c (ELF_MAXPAGESIZE): Set to 0x1000 for VxWorks.
+
+2017-04-23  Alan Modra  <amodra@gmail.com>
+
+       PR 21414
+       * section.c (GLOBAL_SYM_INIT): Make available in bfd.h.
+       * elf.c (lcomm_sym): New.
+       (_bfd_elf_large_com_section): Use lcomm_sym section symbol.
+       * bfd-in2.h: Regenerate.
+
+2017-04-23  Alan Modra  <amodra@gmail.com>
+
+       PR 21412
+       * elf-bfd.h (struct elf_backend_data <get_reloc_section>): Change
+       parameters and comment.
+       (_bfd_elf_get_reloc_section): Delete.
+       (_bfd_elf_plt_get_reloc_section): Declare.
+       * elf.c (_bfd_elf_plt_get_reloc_section, elf_get_reloc_section):
+       New functions.  Don't blindly skip over assumed .rel/.rela prefix.
+       Extracted from..
+       (_bfd_elf_get_reloc_section): ..here.  Delete.
+       (assign_section_numbers): Call elf_get_reloc_section.
+       * elf64-ppc.c (elf_backend_get_reloc_section): Define.
+       * elfxx-target.h (elf_backend_get_reloc_section): Update.
+
+2017-04-23  Alan Modra  <amodra@gmail.com>
+
+       PR 21409
+       * dwarf2.c (_bfd_dwarf2_find_nearest_line): Don't segfault when
+       no symbols.
+
+2017-04-21  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR ld/21402
+       * elf32-i386.c (elf_i386_link_hash_entry): Add
+       no_finish_dynamic_symbol.
+       (elf_i386_link_hash_newfunc): Set no_finish_dynamic_symbol to 0.
+       (elf_i386_allocate_dynrelocs): If a symbol isn't undefined weak
+       symbol, don't make it dynamic in PIE.
+       (elf_i386_relocate_section): If a symbol isn't dynamic in PIE,
+       set no_finish_dynamic_symbol and generate R_386_RELATIVE
+       relocation for R_386_GOT32
+       (elf_i386_finish_dynamic_symbol): Abort if no_finish_dynamic_symbol
+       isn't 0.
+
+2017-04-21  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR ld/19617
+       PR ld/21086
+       * elflink.c (elf_link_add_object_symbols): Require
+       --no-dynamic-linker with -E/--dynamic-list when creating
+       dynamic sections.
+
+2017-04-20  Maciej W. Rozycki  <macro@imgtec.com>
+
+       * elflink.c (_bfd_elf_symbol_refs_local_p): Always return TRUE
+       if forced local.
+
+2017-04-20  Maciej W. Rozycki  <macro@imgtec.com>
+
+       * elfxx-mips.c (_bfd_mips_elf_final_link): Reorder comment about
+       dynamic symbol sorting.
+
+2017-04-20  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR ld/21382
+       * elflink.c (elf_link_add_object_symbols): Preserve
+       dynamic_ref_after_ir_def when restoring the symbol table for
+       unneeded dynamic object.
+
+2017-04-19  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR ld/21401
+       * elf64-x86-64.c (elf_x86_64_finish_dynamic_symbol): Don't abort
+       on on undefined IFUNC symbol in the second PLT.
+
+2017-04-19  Wedson Almeida Filho  <wedsonaf@gmail.com>
+
+       * peXXigen.c (pe_print_reloc): Correct chunk_end.
+
+2017-04-19  Alan Modra  <amodra@gmail.com>
+
+       * elflink.c (_bfd_elf_adjust_dynamic_symbol): Hide undefweak
+       or make dynamic for info->dynamic_undefined_weak 0 and 1.
+       * elf32-ppc.c:Formatting.
+       (ensure_undefweak_dynamic): Don't make dynamic when
+       info->dynamic_undefined_weak is zero.
+       (allocate_dynrelocs): Discard undefweak dyn_relocs for
+       info->dynamic_undefined_weak.  Discard undef dyn_relocs when
+       not default visibility.  Discard undef and undefweak
+       dyn_relocs earlier.
+       (ppc_elf_relocate_section): Adjust to suit.
+       * elf64-ppc.c: Formatting.
+       (ensure_undefweak_dynamic): Don't make dynamic when
+       info->dynamic_undefined_weak is zero.
+       (allocate_dynrelocs): Discard undefweak dyn_relocs for
+       info->dynamic_undefined_weak.  Discard them earlier.
+
+2017-04-17  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR ld/21389
+       * elflink.c (bfd_elf_size_dynamic_sections): Get soname index
+       before generating the version definition section.
+
+2017-04-17  Alan Modra  <amodra@gmail.com>
+
+       * elflink.c (_bfd_elf_merge_symbol): Undo dynamic linking
+       state when a regular object file defines a symbol with
+       incompatible type to that defined by an earlier shared lib.
+
+2017-04-13  Alan Modra  <amodra@gmail.com>
+
+       * coffcode.h: Wrap some overly long _bfd_error_handler args.
+       * elf.c: Likewise.
+       * elf32-arm.c: Likewise.
+       * elf32-i386.c: Likewise.
+       * elf32-mep.c: Likewise.
+       * elf64-ia64-vms.c: Likewise.
+       * elf64-x86-64.c: Likewise.
+       * elflink.c: Likewise.
+       * elfnn-ia64.c: Likewise.
+       * elfxx-mips.c: Likewise.
+
+2017-04-13  Alan Modra  <amodra@gmail.com>
+
+       * aoutx.h: Use %B and %A in error messages throughout file.
+       * aout-cris.c: Likewise.
+       * archive.c: Likewise.
+       * binary.c: Likewise.
+       * coff-rs6000.c: Likewise.
+       * coff-tic4x.c: Likewise.
+       * coffcode.h: Likewise.
+       * coffgen.c: Likewise.
+       * cofflink.c: Likewise.
+       * coffswap.h: Likewise.
+       * cpu-arm.c: Likewise.
+       * elf-eh-frame.c: Likewise.
+       * elf-m10300.c: Likewise.
+       * elf.c: Likewise.
+       * elf32-arc.c: Likewise.
+       * elf32-arm.c: Likewise.
+       * elf32-bfin.c: Likewise.
+       * elf32-frv.c: Likewise.
+       * elf32-iq2000.c: Likewise.
+       * elf32-m32c.c: Likewise.
+       * elf32-microblaze.c: Likewise.
+       * elf32-nds32.c: Likewise.
+       * elf32-rl78.c: Likewise.
+       * elf32-rx.c: Likewise.
+       * elf32-score.c: Likewise.
+       * elf32-score7.c: Likewise.
+       * elf32-sh64.c: Likewise.
+       * elf32-v850.c: Likewise.
+       * elf32-vax.c: Likewise.
+       * elf32-visium.c: Likewise.
+       * elf64-ia64-vms.c: Likewise.
+       * elf64-mmix.c: Likewise.
+       * elf64-sh64.c: Likewise.
+       * elfcode.h: Likewise.
+       * elfnn-aarch64.c: Likewise.
+       * elfnn-ia64.c: Likewise.
+       * elfxx-mips.c: Likewise.
+       * hpux-core.c: Likewise.
+       * ieee.c: Likewise.
+       * ihex.c: Likewise.
+       * linker.c: Likewise.
+       * merge.c: Likewise.
+       * mmo.c: Likewise.
+       * oasys.c: Likewise.
+       * pdp11.c: Likewise.
+       * peXXigen.c: Likewise.
+       * rs6000-core.c: Likewise.
+       * vms-alpha.c: Likewise.
+       * xcofflink.c: Likewise.
+
+2017-04-13  Alan Modra  <amodra@gmail.com>
+
+       * bfd.c (PRINT_TYPE): Define.
+       (_doprnt): New function.
+       (error_handler_internal): Use _doprnt.
+       * coff-arm.c: Put %A and %B arguments to _bfd_error_handler
+       calls in their natural order, throughout file.
+       * coff-mcore.c: Likewise.
+       * coff-ppc.c: Likewise.
+       * coff-tic80.c: Likewise.
+       * cofflink.c: Likewise.
+       * elf-s390-common.c: Likewise.
+       * elf.c: Likewise.
+       * elf32-arm.c: Likewise.
+       * elf32-i386.c: Likewise.
+       * elf32-m32r.c: Likewise.
+       * elf32-msp430.c: Likewise.
+       * elf32-spu.c: Likewise.
+       * elf64-ia64-vms.c: Likewise.
+       * elf64-sparc.c: Likewise.
+       * elf64-x86-64.c: Likewise.
+       * elflink.c: Likewise.
+       * elfnn-aarch64.c: Likewise.
+       * elfnn-ia64.c: Likewise.
+       * elfxx-mips.c: Likewise.
+
+2017-04-13  Alan Modra  <amodra@gmail.com>
+
+       * elf32-arm.c (arm_type_of_stub): Supply missing args to "long
+       branch veneers" error.  Fix double space and format message.
+       * elf32-avr.c (avr_add_stub): Do not pass NULL as %B arg.
+       * elf64-ppc.c (tocsave_find): Supply missing %B arg.
+
+2017-04-13  Alan Modra  <amodra@gmail.com>
+
+       * bfd-in2.h: Regenerate.
+
+2017-04-11  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * elf-properties.c (_bfd_elf_parse_gnu_properties): Remove the
+       extra `\n' in warning/error messages.
+       * elf32-i386.c (elf_i386_parse_gnu_properties): Likewise.
+       * elf64-x86-64.c (elf_x86_64_parse_gnu_properties): Likewise.
+
+2017-04-11  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * elf-properties.c (_bfd_elf_parse_gnu_properties): Ignore
+       processor-specific properties with generic ELF target vector.
+
+2017-04-10  Qing Zhao  <qing.zhao@oracle.com>
+
+        * elf32-sparc.c (elf_backend_fixup_symbol): New.
+        * elf64-sparc.c (elf_backend_fixup_symbol): New.
+        * elfxx-sparc.c (UNDEFINED_WEAK_RESOLVED_TO_ZERO): New.
+        (_bfd_sparc_elf_link_hash_entry): Add has_got_reloc and
+        has_non_got_reloc.
+        (link_hash_newfunc): Initialize has_got_reloc and
+       has_non_got_reloc.
+        (_bfd_sparc_elf_size_dynamic_sections): Set interp to .interp
+        section.
+        (_bfd_sparc_elf_copy_indirect_symbol): Copy has_got_reloc and
+        has_non_got_reloc.
+        (_bfd_sparc_elf_check_relocs): Set has_got_reloc and
+        has_non_got_reloc.
+        (_bfd_sparc_elf_fixup_symbol): New function.
+        (allocate_dynrelocs): Don't allocate space for dynamic
+        relocations and discard relocations against resolved undefined
+        weak symbols in executable.  Don't make resolved undefined weak
+        symbols in executable dynamic.  Keep dynamic non-GOT/non-PLT
+        relocation against undefined weak symbols in PIE.
+        (_bfd_sparc_elf_relocate_section): Don't generate dynamic
+        relocations against resolved undefined weak symbols in PIE
+        (_bfd_sparc_elf_finish_dynamic_symbol): Keep PLT/GOT entries
+        without ynamic PLT/GOT relocations for resolved undefined weak
+        symbols.
+        Don't generate dynamic relocation against resolved undefined
+        weak symbol in executable.
+        (pie_finish_undefweak_symbol): New function.
+        (_bfd_sparc_elf_finish_dynamic_sections): Call
+        pie_finish_undefweak_symbol on all symbols in PIE.
+        * elfxx-sparc.h (_bfd_sparc_elf_link_hash_table): Add interp.
+        (_bfd_sparc_elf_fixup_symbol): New function.
+
+2017-04-10  Nick Clifton  <nickc@redhat.com>
+
+       * config.bfd: Remove ns32k from obsolete list.
+
+2017-04-10  Alan Modra  <amodra@gmail.com>
+
+       PR 21287
+       * elf.c (special_sections_f): Match .fini_array and .fini_array.*.
+       (special_sections_i): Likewise for .init_array.
+       (special_sections_p): Likewise for .preinit_array.
+
+2017-04-07  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR ld/19579
+       PR ld/21306
+       * elf32-s390.c (elf_s390_finish_dynamic_symbol): Check
+       ELF_COMMON_DEF_P for common symbols.
+       * elf64-s390.c (elf_s390_finish_dynamic_symbol): Likewise.
+       * elf64-x86-64.c (elf_x86_64_relocate_section): Likewise.
+       * elflink.c (_bfd_elf_merge_symbol): Revert commits
+       202ac193bbbecc96a4978d1ac3d17148253f9b01 and
+       07492f668d2173da7a2bda3707ff0985e0f460b6.
+
+2017-04-07  Pedro Alves  <palves@redhat.com>
+
+       * opncls.c (bfd_get_debug_link_info): Rename to...
+       (bfd_get_debug_link_info_1): ... this.  Change type of second
+       parameter to void pointer.  Adjust.
+       (bfd_get_debug_link_info): Reimplement on top of
+       bfd_get_debug_link_info_1.
+       (separate_debug_file_exists, separate_alt_debug_file_exists):
+       Change type of second parameter to void pointer.  Adjust.
+       (get_func_type, check_func_type): Change type of second parameter
+       to void pointer.
+       (find_separate_debug_file): Add 'func_data' parameter.  Pass it to
+       the callback functions instead of passing the address of a local.
+       (bfd_follow_gnu_debuglink): Pass address of unsigned long local to
+       find_separate_debug_file.
+       (get_alt_debug_link_info_shim): Change type of second parameter to
+       void pointer.  Adjust.
+       (bfd_follow_gnu_debugaltlink): Adjust to pass NULL to
+       find_separate_debug_file.
+       (get_build_id_name, bfd_boolean check_build_id_file): Change type
+       of second parameter to void pointer.  Adjust.
+       (bfd_follow_build_id_debuglink): Pass address of bfd_build_id
+       pointer local to find_separate_debug_file.
+
+2017-04-07  Tristan Gingold  <gingold@gingold-Precision-7510>
+
+       * coffgen.c (_bfd_coff_gc_mark_hook): Handle PE weak
+       external symbols with a definition.
+       (_bfd_coff_gc_mark_extra_sections): Fix typo.
+
+2017-04-07  Alan Modra  <amodra@gmail.com>
+
+       * po/SRC-POTFILES.in: Regenerate.
+
+2017-04-05  Alan Modra  <amodra@gmail.com>
+
+       * elf64-ppc.c (ppc64_elf_gc_sweep_hook): Support ELFv2 PLT
+       reference counting.
+
 2017-04-02  Jon Turney  <jon.turney@dronecode.org.uk>
 
        (_bfd_XXi_swap_aouthdr_out): For clarity, use defines rather than
This page took 0.029928 seconds and 4 git commands to generate.