[PATCH] D42797: [LLD][ELF] Implement --[no-]apply-dynamic-relocs option.

Peter Smith via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 1 08:00:48 PST 2018


peter.smith created this revision.
peter.smith added reviewers: ruiu, rafael.
Herald added subscribers: kristof.beyls, emaste, aemerson.

When resolving dynamic RELA relocations the addend is taken from the relocation and not the place being relocated. Accordingly lld does not write the addend field to the place like it would for a REL relocation. Unfortunately there is some system software, in particlar dynamic loaders such as Bionic's linker64 that use the value of the place prior to
relocation to find the offset that they have been loaded at. Both gold and bfd control this behavior with the --[no-]apply-dynamic-relocs option.

      

This change implements the option and defaults it to true for compatibility with gold and bfd. I've chosen the same default (--apply-dynamic-relocs) but I don't have a strong opinion.

I found this out the hard way while trying to see if LLD could be used as the linker for Android AOSP. The resulting image wouldn't boot with LLD linking the Bionic dynamic loader linker64. It turns out that the Bionic loader makes use of the addend in the place prior to relocation:

In Bionic linker_main.cpp (https://android.googlesource.com/platform/bionic/+/master/linker/linker_main.cpp)

  extern "C" ElfW(Addr) __linker_init(void* raw_args) {
    KernelArgumentBlock args(raw_args);
  
    // AT_BASE is set to 0 in the case when linker is run by iself
    // so in order to link the linker it needs to calcuate AT_BASE
    // using information at hand. The trick below takes advantage
    // of the fact that the value of linktime_addr before relocations
    // are run is an offset and this can be used to calculate AT_BASE.
    static uintptr_t linktime_addr = reinterpret_cast<uintptr_t>(&linktime_addr);
    ElfW(Addr) linker_addr = reinterpret_cast<uintptr_t>(&linktime_addr) - linktime_addr;

This results in a R*RELATIVE relocation on linktime_addr with the addend field on RELA containing the address of linktime_addr. If 0 is written to the place this calculation goes wrong and the dynamic linker fails to relocate itself. I've raised https://issuetracker.google.com/issues/72789859 on Bionic to see if there is an alternative mechanism that they can use.

Both gold and recent versions of BFD (Binutils 2.26 https://sourceware.org/ml/binutils/2016-04/msg00407.html) write the addend into the place. Due to another bug in Bionic https://android-review.googlesource.com/c/platform/bionic/+/176902 there is an option --[no-]apply-dynamic-relocs that controls whether the addends are written to the place.

For reference it seems like glibc on aarch64 uses a similar trick, but relies on a different convention.

  /* Return the link-time address of _DYNAMIC.  Conveniently, this is the
     first element of the GOT. */
  static inline ElfW(Addr) __attribute__ ((unused))
  elf_machine_dynamic (void)
  {
    extern const ElfW(Addr) _GLOBAL_OFFSET_TABLE_[] attribute_hidden;
    return _GLOBAL_OFFSET_TABLE_[0];
  }
  
  /* Return the run-time load address of the shared object.  */
  
  static inline ElfW(Addr) __attribute__ ((unused))
  elf_machine_load_address (void)
  {
    /* To figure out the load address we use the definition that for any symbol:
       dynamic_addr(symbol) = static_addr(symbol) + load_addr
  
      _DYNAMIC sysmbol is used here as its link-time address stored in
      the special unrelocated first GOT entry.  */
  
      extern ElfW(Dyn) _DYNAMIC[] attribute_hidden;
      return (ElfW(Addr)) &_DYNAMIC - elf_machine_dynamic ();
  }


https://reviews.llvm.org/D42797

Files:
  ELF/Config.h
  ELF/Driver.cpp
  ELF/Options.td
  ELF/SyntheticSections.cpp
  test/ELF/dynamic-got-rela.s
  test/ELF/relocation-non-alloc.s

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D42797.132397.patch
Type: text/x-patch
Size: 7401 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180201/5ba5ea5d/attachment.bin>


More information about the llvm-commits mailing list