2009-06-05 Doug Kwan <dougkwan@google.com>
[deliverable/binutils-gdb.git] / bfd / elf64-x86-64.c
index 253473f6f85bc475aed090a6e7e0f5da7f0800f0..041e28519e83e2a567e4e854de0a31308181e628 100644 (file)
@@ -143,12 +143,15 @@ static reloc_howto_type x86_64_elf_howto_table[] =
        complain_overflow_bitfield, bfd_elf_generic_reloc,
        "R_X86_64_TLSDESC",
        FALSE, MINUS_ONE, MINUS_ONE, FALSE),
+  HOWTO(R_X86_64_IRELATIVE, 0, 4, 64, FALSE, 0, complain_overflow_bitfield,
+       bfd_elf_generic_reloc, "R_X86_64_IRELATIVE", FALSE, MINUS_ONE,
+       MINUS_ONE, FALSE),
 
   /* We have a gap in the reloc numbers here.
      R_X86_64_standard counts the number up to this point, and
      R_X86_64_vt_offset is the value to subtract from a reloc type of
      R_X86_64_GNU_VT* to form an index into this table.  */
-#define R_X86_64_standard (R_X86_64_TLSDESC + 1)
+#define R_X86_64_standard (R_X86_64_IRELATIVE + 1)
 #define R_X86_64_vt_offset (R_X86_64_GNU_VTINHERIT - R_X86_64_standard)
 
 /* GNU extension to record C++ vtable hierarchy.  */
@@ -211,6 +214,7 @@ static const struct elf_reloc_map x86_64_reloc_map[] =
   { BFD_RELOC_X86_64_GOTPC32_TLSDESC, R_X86_64_GOTPC32_TLSDESC, },
   { BFD_RELOC_X86_64_TLSDESC_CALL, R_X86_64_TLSDESC_CALL, },
   { BFD_RELOC_X86_64_TLSDESC,  R_X86_64_TLSDESC, },
+  { BFD_RELOC_X86_64_IRELATIVE,        R_X86_64_IRELATIVE, },
   { BFD_RELOC_VTABLE_INHERIT,  R_X86_64_GNU_VTINHERIT, },
   { BFD_RELOC_VTABLE_ENTRY,    R_X86_64_GNU_VTENTRY, },
 };
@@ -489,6 +493,9 @@ struct elf64_x86_64_link_hash_table
   asection *srelplt;
   asection *sdynbss;
   asection *srelbss;
+  asection *igotplt;
+  asection *iplt;
+  asection *irelplt;
 
   /* The offset into splt of the PLT entry for the TLS descriptor
      resolver.  Special values are 0, if not necessary (or not found
@@ -581,6 +588,9 @@ elf64_x86_64_link_hash_table_create (bfd *abfd)
   ret->srelplt = NULL;
   ret->sdynbss = NULL;
   ret->srelbss = NULL;
+  ret->igotplt= NULL;
+  ret->iplt = NULL;
+  ret->irelplt= NULL;
   ret->sym_sec.abfd = NULL;
   ret->tlsdesc_plt = 0;
   ret->tlsdesc_got = 0;
@@ -1011,7 +1021,7 @@ elf64_x86_64_check_relocs (bfd *abfd, struct bfd_link_info *info,
   sym_hashes = elf_sym_hashes (abfd);
 
   sreloc = NULL;
-  
+
   rel_end = relocs + sec->reloc_count;
   for (rel = relocs; rel < rel_end; rel++)
     {
@@ -1037,6 +1047,95 @@ elf64_x86_64_check_relocs (bfd *abfd, struct bfd_link_info *info,
          while (h->root.type == bfd_link_hash_indirect
                 || h->root.type == bfd_link_hash_warning)
            h = (struct elf_link_hash_entry *) h->root.u.i.link;
+
+         /* Create the ifunc sections for static executables.  If we
+            never see an indirect function symbol nor we are building
+            a static executable, those sections will be empty and
+            won't appear in output.  */
+         switch (r_type)
+           {
+           default:
+             break;
+
+           case R_X86_64_32S:
+           case R_X86_64_32:
+           case R_X86_64_64:
+           case R_X86_64_PC32:
+           case R_X86_64_PC64:
+           case R_X86_64_PLT32:
+           case R_X86_64_GOTPCREL:
+           case R_X86_64_GOTPCREL64:
+             if (!info->shared && htab->iplt == NULL)
+               {
+                 if (!_bfd_elf_create_static_ifunc_sections (abfd,
+                                                             info))
+                   return FALSE;
+
+                 htab->iplt = bfd_get_section_by_name (abfd, ".iplt");
+                 htab->irelplt = bfd_get_section_by_name (abfd,
+                                                          ".rela.iplt");
+                 htab->igotplt = bfd_get_section_by_name (abfd,
+                                                          ".igot.plt");
+                 if (!htab->iplt
+                     || !htab->irelplt
+                     || !htab->igotplt)
+                   abort ();
+               }
+             break;
+           }
+
+         /* Since STT_GNU_IFUNC symbol must go through PLT, we handle
+            it here if it is defined in a non-shared object.  */
+         if (h->type == STT_GNU_IFUNC
+             && h->def_regular)
+           {
+             /* It is referenced by a non-shared object. */
+             h->ref_regular = 1;
+             /* STT_GNU_IFUNC symbol must go through PLT.  */
+             h->plt.refcount += 1;
+
+             /* STT_GNU_IFUNC needs dynamic sections.  */
+             if (htab->elf.dynobj == NULL)
+               htab->elf.dynobj = abfd;
+
+             switch (r_type)
+               {
+                default:
+                  (*_bfd_error_handler)
+                    (_("%B: relocation %s against STT_GNU_IFUNC "
+                       "symbol `%s' isn't handled by %s"), abfd,
+                     x86_64_elf_howto_table[r_type].name,
+                     h->root.root.string, __FUNCTION__);
+                  bfd_set_error (bfd_error_bad_value);
+                  return FALSE;
+
+               case R_X86_64_32S:
+               case R_X86_64_32:
+               case R_X86_64_64:
+               case R_X86_64_PC32:
+               case R_X86_64_PC64:
+                 h->non_got_ref = 1;
+                 if (r_type != R_X86_64_PC32
+                     && r_type != R_X86_64_PC64)
+                   h->pointer_equality_needed = 1;
+                 break;
+
+               case R_X86_64_PLT32:
+                 break;
+
+               case R_X86_64_GOTPCREL:
+               case R_X86_64_GOTPCREL64:
+                 h->got.refcount += 1;
+                 if (htab->sgot == NULL
+                     && !elf64_x86_64_create_got_section (htab->elf.dynobj,
+                                                          info))
+                   return FALSE;
+                 break;
+               }
+
+             continue;
+           }
        }
 
       if (! elf64_x86_64_tls_transition (info, abfd, sec, NULL,
@@ -1298,12 +1397,6 @@ elf64_x86_64_check_relocs (bfd *abfd, struct bfd_link_info *info,
 
                  if (sreloc == NULL)
                    return FALSE;
-
-                 /* Create the ifunc section, even if we will not encounter an
-                    indirect function symbol.  We may not even see one in the input
-                    object file, but we can still encounter them in libraries.  */
-                 (void) _bfd_elf_make_ifunc_reloc_section
-                   (abfd, sec, htab->elf.dynobj, 2);
                }
 
              /* If this is a global symbol, we count the number of
@@ -1528,6 +1621,17 @@ elf64_x86_64_adjust_dynamic_symbol (struct bfd_link_info *info,
   struct elf64_x86_64_link_hash_table *htab;
   asection *s;
 
+  /* STT_GNU_IFUNC symbol must go through PLT. */
+  if (h->type == STT_GNU_IFUNC)
+    {
+      if (h->plt.refcount <= 0)
+       {
+         h->plt.offset = (bfd_vma) -1;
+         h->needs_plt = 0;
+       }
+      return TRUE;
+    }
+
   /* If this is a function, put it in the procedure linkage table.  We
      will fill in the contents of the procedure linkage table later,
      when we know the address of the .got section.  */
@@ -1659,19 +1763,104 @@ elf64_x86_64_allocate_dynrelocs (struct elf_link_hash_entry *h, void * inf)
   struct elf64_x86_64_link_hash_table *htab;
   struct elf64_x86_64_link_hash_entry *eh;
   struct elf64_x86_64_dyn_relocs *p;
-  bfd_boolean use_indirect_section = FALSE;
 
   if (h->root.type == bfd_link_hash_indirect)
     return TRUE;
 
   if (h->root.type == bfd_link_hash_warning)
     h = (struct elf_link_hash_entry *) h->root.u.i.link;
+  eh = (struct elf64_x86_64_link_hash_entry *) h;
 
   info = (struct bfd_link_info *) inf;
   htab = elf64_x86_64_hash_table (info);
 
-  if (htab->elf.dynamic_sections_created
-      && h->plt.refcount > 0)
+  /* Since STT_GNU_IFUNC symbol must go through PLT, we handle it
+     here if it is defined and referenced in a non-shared object.  */
+  if (h->type == STT_GNU_IFUNC
+      && h->def_regular)
+    {
+      asection *plt, *gotplt, *relplt;
+
+      /* Return and discard space for dynamic relocations against it if
+        it is never referenced in a non-shared object.  */
+      if (!h->ref_regular)
+       {
+         if (h->plt.refcount > 0
+             || h->got.refcount > 0)
+           abort ();
+         h->got.offset = (bfd_vma) -1;
+         eh->dyn_relocs = NULL;
+         return TRUE;
+       }
+
+      /* When building a static executable, use .iplt, .igot.plt and
+        .rela.iplt sections for STT_GNU_IFUNC symbols.  */
+      if (htab->splt != 0)
+       {
+         plt = htab->splt;
+         gotplt = htab->sgotplt;
+         relplt = htab->srelplt;
+         
+         /* If this is the first .plt entry, make room for the special
+            first entry.  */
+         if (plt->size == 0)
+           plt->size += PLT_ENTRY_SIZE;
+       }
+      else
+       {
+         plt = htab->iplt;
+         gotplt = htab->igotplt;
+         relplt = htab->irelplt;
+       }
+
+      /* Don't update value of STT_GNU_IFUNC symbol to PLT.  We need
+        the original value for R_X86_64_IRELATIVE.  */  
+      h->plt.offset = plt->size;
+
+      /* Make room for this entry in the .plt/.iplt section.  */
+      plt->size += PLT_ENTRY_SIZE;
+
+      /* We also need to make an entry in the .got.plt/.got.iplt
+        section, which will be placed in the .got section by the
+        linker script.  */
+      gotplt->size += GOT_ENTRY_SIZE;
+
+      /* We also need to make an entry in the .rela.plt/.rela.iplt
+        section.  */
+      relplt->size += sizeof (Elf64_External_Rela);
+      relplt->reloc_count++;
+
+      /* No need for dynamic relocation for local STT_GNU_IFUNC symbol.
+        Discard space for relocations against it.  */
+      if (h->dynindx == -1 || h->forced_local)
+       eh->dyn_relocs = NULL;
+
+      /* STT_GNU_IFUNC symbol uses .got.plt, not .got.  But for
+        shared library, we must go through GOT and we can't
+        use R_X86_64_IRELATIVE unless it is forced local.   */
+      if (info->executable
+         || info->symbolic
+         || h->forced_local)
+       {
+         if (h->pointer_equality_needed
+             && htab->sgot != NULL)
+           {
+             /* We can't use .got.plt, which contains the real
+                function addres, since we need pointer equality.
+                We will load the GOT entry with the PLT entry
+                in elf64_x86_64_finish_dynamic_symbol and don't
+                need GOT relocation.  */
+             h->got.offset = htab->sgot->size;
+             htab->sgot->size += GOT_ENTRY_SIZE;
+             eh->tlsdesc_got = (bfd_vma) -1;
+             goto skip_relgot;
+           }
+         else
+           h->got.refcount = 0;
+       }
+    }
+  else if (htab->elf.dynamic_sections_created
+          && h->plt.refcount > 0)
     {
       /* Make sure this symbol is output as a dynamic symbol.
         Undefined weak syms won't yet be marked as dynamic.  */
@@ -1729,7 +1918,6 @@ elf64_x86_64_allocate_dynrelocs (struct elf_link_hash_entry *h, void * inf)
       h->needs_plt = 0;
     }
 
-  eh = (struct elf64_x86_64_link_hash_entry *) h;
   eh->tlsdesc_got = (bfd_vma) -1;
 
   /* If R_X86_64_GOTTPOFF symbol is now local to the binary,
@@ -1796,6 +1984,7 @@ elf64_x86_64_allocate_dynrelocs (struct elf_link_hash_entry *h, void * inf)
   else
     h->got.offset = (bfd_vma) -1;
 
+skip_relgot:
   if (eh->dyn_relocs == NULL)
     return TRUE;
 
@@ -1843,16 +2032,7 @@ elf64_x86_64_allocate_dynrelocs (struct elf_link_hash_entry *h, void * inf)
                   && ! bfd_elf_link_record_dynamic_symbol (info, h))
            return FALSE;
        }
-    }
-  else if (_bfd_elf_is_ifunc_symbol (info->output_bfd, h)
-          && h->dynindx == -1
-          && ! h->forced_local)
-    {
-      if (bfd_elf_link_record_dynamic_symbol (info, h)
-         && h->dynindx != -1)
-       use_indirect_section = TRUE;
-      else
-       return FALSE;
+
     }
   else if (ELIMINATE_COPY_RELOCS)
     {
@@ -1890,10 +2070,7 @@ elf64_x86_64_allocate_dynrelocs (struct elf_link_hash_entry *h, void * inf)
     {
       asection * sreloc;
 
-      if (use_indirect_section)
-       sreloc = elf_section_data (p->sec)->indirect_relocs;
-      else
-       sreloc = elf_section_data (p->sec)->sreloc;
+      sreloc = elf_section_data (p->sec)->sreloc;
 
       BFD_ASSERT (sreloc != NULL);
 
@@ -2110,6 +2287,8 @@ elf64_x86_64_size_dynamic_sections (bfd *output_bfd ATTRIBUTE_UNUSED,
       if (s == htab->splt
          || s == htab->sgot
          || s == htab->sgotplt
+         || s == htab->iplt
+         || s == htab->igotplt
          || s == htab->sdynbss)
        {
          /* Strip this section if we don't need it; see the
@@ -2362,6 +2541,7 @@ elf64_x86_64_relocate_section (bfd *output_bfd, struct bfd_link_info *info,
       bfd_boolean unresolved_reloc;
       bfd_reloc_status_type r;
       int tls_type;
+      asection *base_got;
 
       r_type = ELF64_R_TYPE (rel->r_info);
       if (r_type == (int) R_X86_64_GNU_VTINHERIT
@@ -2411,11 +2591,122 @@ elf64_x86_64_relocate_section (bfd *output_bfd, struct bfd_link_info *info,
       if (info->relocatable)
        continue;
 
+      /* Since STT_GNU_IFUNC symbol must go through PLT, we handle
+        it here if it is defined in a non-shared object.  */
+      if (h != NULL
+         && h->type == STT_GNU_IFUNC
+         && h->def_regular)
+       {
+         asection *plt;
+         bfd_vma plt_index;
+
+         if ((input_section->flags & SEC_ALLOC) == 0
+             || h->plt.offset == (bfd_vma) -1)
+           abort ();
+
+         /* STT_GNU_IFUNC symbol must go through PLT.  */
+         plt = htab->splt ? htab->splt : htab->iplt;
+         relocation = (plt->output_section->vma
+                       + plt->output_offset + h->plt.offset);
+
+         switch (r_type)
+           {
+           default:
+             (*_bfd_error_handler)
+               (_("%B: relocation %s against STT_GNU_IFUNC "
+                  "symbol `%s' isn't handled by %s"), input_bfd,
+                x86_64_elf_howto_table[r_type].name,
+                h->root.root.string, __FUNCTION__);
+             bfd_set_error (bfd_error_bad_value);
+             return FALSE;
+
+           case R_X86_64_32S:
+             if (!info->executable)
+               abort ();
+
+           case R_X86_64_32:
+           case R_X86_64_64:
+           case R_X86_64_PC32:
+           case R_X86_64_PC64:
+           case R_X86_64_PLT32:
+             goto do_relocation;
+
+           case R_X86_64_GOTPCREL:
+           case R_X86_64_GOTPCREL64:
+             base_got = htab->sgot;
+             off = h->got.offset;
+
+             if (base_got == NULL)
+               abort ();
+
+             if (off == (bfd_vma) -1)
+               {
+                 /* We can't use h->got.offset here to save state, or
+                    even just remember the offset, as finish_dynamic_symbol
+                    would use that as offset into .got.  */
+
+                 if (htab->splt != NULL)
+                   {
+                     plt_index = h->plt.offset / PLT_ENTRY_SIZE - 1;
+                     off = (plt_index + 3) * GOT_ENTRY_SIZE;
+                     base_got = htab->sgotplt;
+                   }
+                 else
+                   {
+                     plt_index = h->plt.offset / PLT_ENTRY_SIZE;
+                     off = plt_index * GOT_ENTRY_SIZE;
+                     base_got = htab->igotplt;
+                   }
+
+                 if (h->dynindx == -1
+                     || h->forced_local
+                     || info->symbolic)
+                   {
+                     /* This references the local defitionion.  We must 
+                        initialize this entry in the global offset table.
+                        Since the offset must always be a multiple of 8, 
+                        we use the least significant bit to record
+                        whether we have initialized it already.
+
+                        When doing a dynamic link, we create a .rela.got
+                        relocation entry to initialize the value.  This
+                        is done in the finish_dynamic_symbol routine.   */
+                     if ((off & 1) != 0)
+                       off &= ~1;
+                     else
+                       {
+                         bfd_put_64 (output_bfd, relocation,
+                                     base_got->contents + off);
+                         /* Note that this is harmless for the GOTPLT64
+                            case, as -1 | 1 still is -1.  */
+                         h->got.offset |= 1;
+                       }
+                   }
+               }
+
+             relocation = (base_got->output_section->vma
+                           + base_got->output_offset + off);
+
+             if (r_type != R_X86_64_GOTPCREL
+                 && r_type != R_X86_64_GOTPCREL64)
+               {
+                 asection *gotplt;
+                 if (htab->splt != NULL)
+                   gotplt = htab->sgotplt;
+                 else
+                   gotplt = htab->igotplt;
+                 relocation -= (gotplt->output_section->vma
+                                - gotplt->output_offset);
+               }
+
+             goto do_relocation;
+           }
+       }
+
       /* When generating a shared object, the relocations handled here are
         copied into the output file to be resolved at run time.  */
       switch (r_type)
        {
-       asection *base_got;
        case R_X86_64_GOT32:
        case R_X86_64_GOT64:
          /* Relocation is to the entry for this symbol in the global
@@ -2700,12 +2991,6 @@ elf64_x86_64_relocate_section (bfd *output_bfd, struct bfd_link_info *info,
                   || h->root.type != bfd_link_hash_undefweak)
               && (! IS_X86_64_PCREL_TYPE (r_type)
                   || ! SYMBOL_CALLS_LOCAL (info, h)))
-             || (! info->shared
-                 && h != NULL
-                 && h->dynindx != -1
-                 && ! h->forced_local
-                 && ((struct elf64_x86_64_link_hash_entry *) h)->dyn_relocs != NULL
-                 && _bfd_elf_is_ifunc_symbol (output_bfd, h))
              || (ELIMINATE_COPY_RELOCS
                  && !info->shared
                  && h != NULL
@@ -2797,16 +3082,7 @@ elf64_x86_64_relocate_section (bfd *output_bfd, struct bfd_link_info *info,
                    }
                }
 
-             if (! info->shared
-                 && h != NULL
-                 && h->dynindx != -1
-                 && ! h->forced_local
-                 && _bfd_elf_is_ifunc_symbol (output_bfd, h)
-                 && elf_section_data (input_section)->indirect_relocs != NULL
-                 && elf_section_data (input_section)->indirect_relocs->contents != NULL)
-               sreloc = elf_section_data (input_section)->indirect_relocs;
-             else
-               sreloc = elf_section_data (input_section)->sreloc;
+             sreloc = elf_section_data (input_section)->sreloc;
 
              BFD_ASSERT (sreloc != NULL && sreloc->contents != NULL);
 
@@ -3253,6 +3529,7 @@ elf64_x86_64_relocate_section (bfd *output_bfd, struct bfd_link_info *info,
           howto->name,
           h->root.root.string);
 
+do_relocation:
       r = _bfd_final_link_relocate (howto, input_bfd, input_section,
                                    contents, rel->r_offset,
                                    relocation, rel->r_addend);
@@ -3315,28 +3592,58 @@ elf64_x86_64_finish_dynamic_symbol (bfd *output_bfd,
       bfd_vma got_offset;
       Elf_Internal_Rela rela;
       bfd_byte *loc;
+      asection *plt, *gotplt, *relplt;
+
+      /* When building a static executable, use .iplt, .igot.plt and
+        .rela.iplt sections for STT_GNU_IFUNC symbols.  */
+      if (htab->splt != 0)
+       {
+         plt = htab->splt;
+         gotplt = htab->sgotplt;
+         relplt = htab->srelplt;
+       }
+      else
+       {
+         plt = htab->iplt;
+         gotplt = htab->igotplt;
+         relplt = htab->irelplt;
+       }
 
       /* This symbol has an entry in the procedure linkage table.  Set
         it up.  */
-      if (h->dynindx == -1
-         || htab->splt == NULL
-         || htab->sgotplt == NULL
-         || htab->srelplt == NULL)
+      if ((h->dynindx == -1
+          && !((h->forced_local || info->executable)
+               && h->def_regular
+               && h->type == STT_GNU_IFUNC))
+         || plt == NULL
+         || gotplt == NULL
+         || relplt == NULL)
        abort ();
 
       /* Get the index in the procedure linkage table which
         corresponds to this symbol.  This is the index of this symbol
         in all the symbols for which we are making plt entries.  The
-        first entry in the procedure linkage table is reserved.  */
-      plt_index = h->plt.offset / PLT_ENTRY_SIZE - 1;
-
-      /* Get the offset into the .got table of the entry that
+        first entry in the procedure linkage table is reserved.
+        
+        Get the offset into the .got table of the entry that
         corresponds to this function.  Each .got entry is GOT_ENTRY_SIZE
-        bytes. The first three are reserved for the dynamic linker.  */
-      got_offset = (plt_index + 3) * GOT_ENTRY_SIZE;
+        bytes. The first three are reserved for the dynamic linker.
+
+        For static executables, we don't reserve anything.  */
+
+      if (plt == htab->splt)
+       {
+         plt_index = h->plt.offset / PLT_ENTRY_SIZE - 1;
+         got_offset = (plt_index + 3) * GOT_ENTRY_SIZE;
+       }
+      else
+       {
+         plt_index = h->plt.offset / PLT_ENTRY_SIZE;
+         got_offset = plt_index * GOT_ENTRY_SIZE;
+       }
 
       /* Fill in the entry in the procedure linkage table.  */
-      memcpy (htab->splt->contents + h->plt.offset, elf64_x86_64_plt_entry,
+      memcpy (plt->contents + h->plt.offset, elf64_x86_64_plt_entry,
              PLT_ENTRY_SIZE);
 
       /* Insert the relocation positions of the plt section.  The magic
@@ -3345,35 +3652,56 @@ elf64_x86_64_finish_dynamic_symbol (bfd *output_bfd,
       /* Put offset for jmp *name@GOTPCREL(%rip), since the
         instruction uses 6 bytes, subtract this value.  */
       bfd_put_32 (output_bfd,
-                     (htab->sgotplt->output_section->vma
-                      + htab->sgotplt->output_offset
+                     (gotplt->output_section->vma
+                      + gotplt->output_offset
                       + got_offset
-                      - htab->splt->output_section->vma
-                      - htab->splt->output_offset
+                      - plt->output_section->vma
+                      - plt->output_offset
                       - h->plt.offset
                       - 6),
-                 htab->splt->contents + h->plt.offset + 2);
-      /* Put relocation index.  */
-      bfd_put_32 (output_bfd, plt_index,
-                 htab->splt->contents + h->plt.offset + 7);
-      /* Put offset for jmp .PLT0.  */
-      bfd_put_32 (output_bfd, - (h->plt.offset + PLT_ENTRY_SIZE),
-                 htab->splt->contents + h->plt.offset + 12);
+                 plt->contents + h->plt.offset + 2);
+
+      /* Don't fill PLT entry for static executables.  */
+      if (plt == htab->splt)
+       {
+         /* Put relocation index.  */
+         bfd_put_32 (output_bfd, plt_index,
+                     plt->contents + h->plt.offset + 7);
+         /* Put offset for jmp .PLT0.  */
+         bfd_put_32 (output_bfd, - (h->plt.offset + PLT_ENTRY_SIZE),
+                     plt->contents + h->plt.offset + 12);
+       }
 
       /* Fill in the entry in the global offset table, initially this
         points to the pushq instruction in the PLT which is at offset 6.  */
-      bfd_put_64 (output_bfd, (htab->splt->output_section->vma
-                              + htab->splt->output_offset
+      bfd_put_64 (output_bfd, (plt->output_section->vma
+                              + plt->output_offset
                               + h->plt.offset + 6),
-                 htab->sgotplt->contents + got_offset);
+                 gotplt->contents + got_offset);
 
       /* Fill in the entry in the .rela.plt section.  */
-      rela.r_offset = (htab->sgotplt->output_section->vma
-                      + htab->sgotplt->output_offset
+      rela.r_offset = (gotplt->output_section->vma
+                      + gotplt->output_offset
                       + got_offset);
-      rela.r_info = ELF64_R_INFO (h->dynindx, R_X86_64_JUMP_SLOT);
-      rela.r_addend = 0;
-      loc = htab->srelplt->contents + plt_index * sizeof (Elf64_External_Rela);
+      if (h->dynindx == -1
+         || ((info->executable
+              || ELF_ST_VISIBILITY (h->other) != STV_DEFAULT)
+             && h->def_regular
+             && h->type == STT_GNU_IFUNC))
+       {
+         /* If an STT_GNU_IFUNC symbol is locally defined, generate
+            R_X86_64_IRELATIVE instead of R_X86_64_JUMP_SLOT.  */
+         rela.r_info = ELF64_R_INFO (0, R_X86_64_IRELATIVE);
+         rela.r_addend = (h->root.u.def.value
+                          + h->root.u.def.section->output_section->vma
+                          + h->root.u.def.section->output_offset);
+       }
+      else
+       {
+         rela.r_info = ELF64_R_INFO (h->dynindx, R_X86_64_JUMP_SLOT);
+         rela.r_addend = 0;
+       }
+      loc = relplt->contents + plt_index * sizeof (Elf64_External_Rela);
       bfd_elf64_swap_reloca_out (output_bfd, &rela, loc);
 
       if (!h->def_regular)
@@ -3413,8 +3741,28 @@ elf64_x86_64_finish_dynamic_symbol (bfd *output_bfd,
         of a version file, we just want to emit a RELATIVE reloc.
         The entry in the global offset table will already have been
         initialized in the relocate_section function.  */
-      if (info->shared
-         && SYMBOL_REFERENCES_LOCAL (info, h))
+      if ((info->executable
+          || info->symbolic
+          || h->forced_local)
+         && h->def_regular
+         && h->pointer_equality_needed
+         && h->type == STT_GNU_IFUNC)
+       {
+         /* The STT_GNU_IFUNC symbol is locally defined.  But we can't
+            use .got.plt, which contains the real function addres,
+            since we need pointer equality.  We load the GOT entry
+            with the PLT entry without relocation.  */
+         asection *plt = htab->splt ? htab->splt : htab->iplt;
+         if (htab->sgot == NULL
+             || h->plt.offset == (bfd_vma) -1)
+           abort ();
+         bfd_put_64 (output_bfd, (plt->output_section->vma
+                                  + plt->output_offset + h->plt.offset),
+                     htab->sgot->contents + h->got.offset);
+         return TRUE;
+       }
+      else if (info->shared
+              && SYMBOL_REFERENCES_LOCAL (info, h))
        {
          if (!h->def_regular)
            return FALSE;
This page took 0.031282 seconds and 4 git commands to generate.