]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Handle STT_GNU_IFUNC symols when building shared library.
authorH.J. Lu <hjl.tools@gmail.com>
Wed, 25 May 2011 17:41:35 +0000 (17:41 +0000)
committerH.J. Lu <hjl.tools@gmail.com>
Wed, 25 May 2011 17:41:35 +0000 (17:41 +0000)
bfd/

2012-05-25  H.J. Lu  <hongjiu.lu@intel.com>

Backport from mainline
2012-01-06  H.J. Lu  <hongjiu.lu@intel.com>

PR ld/12366
PR ld/12371
* elf-ifunc.c (_bfd_elf_allocate_ifunc_dyn_relocs): Properly
handle symbols marked with regular reference, but not non-GOT
reference when building shared library.

* elf32-i386.c (elf_i386_gc_sweep_hook): Properly handle
local and global STT_GNU_IFUNC symols when building shared
library.
* elf64-x86-64.c (elf_x86_64_gc_sweep_hook): Likewise.

ld/testsuite/

2012-05-25  H.J. Lu  <hongjiu.lu@intel.com>

Backport from mainline
2012-01-06  H.J. Lu  <hongjiu.lu@intel.com>

PR ld/12366
PR ld/12371
* ld-ifunc/ifunc-10-i386.s: Add more tests.
* ld-ifunc/ifunc-10-x86-64.s: Likewise.
* ld-ifunc/ifunc-11-i386.s: Likewise.
* ld-ifunc/ifunc-11-x86-64.s: Likewise.

* ld-ifunc/ifunc-12-i386.d: New.
* ld-ifunc/ifunc-12-i386.s: Likewise.
* ld-ifunc/ifunc-12-x86-64.d: Likewise.
* ld-ifunc/ifunc-12-x86-64.s: Likewise.
* ld-ifunc/ifunc-13-i386.d: Likewise.
* ld-ifunc/ifunc-13-x86-64.d: Likewise.
* ld-ifunc/ifunc-13a-i386.s: Likewise.
* ld-ifunc/ifunc-13a-x86-64.s: Likewise.
* ld-ifunc/ifunc-13b-i386.s: Likewise.
* ld-ifunc/ifunc-13b-x86-64.s: Likewise.

bfd/ChangeLog
bfd/elf-ifunc.c
bfd/elf32-i386.c
bfd/elf64-x86-64.c
ld/testsuite/ChangeLog
ld/testsuite/ld-ifunc/ifunc-10-i386.s
ld/testsuite/ld-ifunc/ifunc-10-x86-64.s
ld/testsuite/ld-ifunc/ifunc-11-i386.s
ld/testsuite/ld-ifunc/ifunc-11-x86-64.s

index 64bdff6c93a4e72cb47f3b69fc7cabde05ce2ad7..bcc02f3bf13593c0df5ecd5adb1a18574f0c17b6 100644 (file)
@@ -1,3 +1,19 @@
+2012-05-25  H.J. Lu  <hongjiu.lu@intel.com>
+
+       Backport from mainline
+       2012-01-06  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR ld/12366
+       PR ld/12371
+       * elf-ifunc.c (_bfd_elf_allocate_ifunc_dyn_relocs): Properly
+       handle symbols marked with regular reference, but not non-GOT
+       reference when building shared library.
+
+       * elf32-i386.c (elf_i386_gc_sweep_hook): Properly handle
+       local and global STT_GNU_IFUNC symols when building shared
+       library.
+       * elf64-x86-64.c (elf_x86_64_gc_sweep_hook): Likewise.
+
 2011-05-23  DJ Delorie  <dj@redhat.com>
 
        * elf32-rx.c (rx_elf_object_p): When reading an RX object in, undo
index 760fc26c1a158b7cb7aebc67a02db933ccaedd22..17b23c2ffc0e7688d1cbde0bd705c276f7cb08e6 100644 (file)
@@ -190,10 +190,29 @@ _bfd_elf_allocate_ifunc_dyn_relocs (struct bfd_link_info *info,
   /* Support garbage collection against STT_GNU_IFUNC symbols.  */
   if (h->plt.refcount <= 0 && h->got.refcount <= 0)
     {
-      h->got = htab->init_got_offset;
-      h->plt = htab->init_plt_offset;
-      *head = NULL;
-      return TRUE;
+      /* When building shared library, we need to handle the case
+         where it is marked with regular reference, but not non-GOT
+        reference.  It may happen if we didn't see STT_GNU_IFUNC
+        symbol at the time when checking relocations.  */
+      bfd_size_type count = 0;
+
+      if (info->shared
+         && !h->non_got_ref
+         && h->ref_regular)
+       {
+         for (p = *head; p != NULL; p = p->next)
+           count += p->count;
+         if (count != 0)
+           h->non_got_ref = 1;
+       }
+
+      if (count == 0)
+       {
+         h->got = htab->init_got_offset;
+         h->plt = htab->init_plt_offset;
+         *head = NULL;
+         return TRUE;
+       }
     }
 
   /* Return and discard space for dynamic relocations against it if
index 1071f015d04e36d5c0e6d2a31ca15ab61fb1dc22..bd349e108350f0c20d159f8ba69a7a522ccbdf57 100644 (file)
@@ -1807,23 +1807,10 @@ elf_i386_gc_sweep_hook (bfd *abfd,
       r_symndx = ELF32_R_SYM (rel->r_info);
       if (r_symndx >= symtab_hdr->sh_info)
        {
-         struct elf_i386_link_hash_entry *eh;
-         struct elf_dyn_relocs **pp;
-         struct elf_dyn_relocs *p;
-
          h = sym_hashes[r_symndx - symtab_hdr->sh_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;
-         eh = (struct elf_i386_link_hash_entry *) h;
-
-         for (pp = &eh->dyn_relocs; (p = *pp) != NULL; pp = &p->next)
-           if (p->sec == sec)
-             {
-               /* Everything must go for SEC.  */
-               *pp = p->next;
-               break;
-             }
        }
       else
        {
@@ -1843,6 +1830,22 @@ elf_i386_gc_sweep_hook (bfd *abfd,
            }
        }
 
+      if (h)
+       {
+         struct elf_i386_link_hash_entry *eh;
+         struct elf_dyn_relocs **pp;
+         struct elf_dyn_relocs *p;
+
+         eh = (struct elf_i386_link_hash_entry *) h;
+         for (pp = &eh->dyn_relocs; (p = *pp) != NULL; pp = &p->next)
+           if (p->sec == sec)
+             {
+               /* Everything must go for SEC.  */
+               *pp = p->next;
+               break;
+             }
+       }
+
       r_type = ELF32_R_TYPE (rel->r_info);
       if (! elf_i386_tls_transition (info, abfd, sec, NULL,
                                     symtab_hdr, sym_hashes,
@@ -1883,7 +1886,8 @@ elf_i386_gc_sweep_hook (bfd *abfd,
 
        case R_386_32:
        case R_386_PC32:
-         if (info->shared)
+         if (info->shared
+             && (h == NULL || h->type != STT_GNU_IFUNC))
            break;
          /* Fall through */
 
index 09af249dfeb261cca156ba33e87142dddcc97080..04c74550be681209e8f8ce836b611a4fbb262f65 100644 (file)
@@ -1645,23 +1645,10 @@ elf64_x86_64_gc_sweep_hook (bfd *abfd, struct bfd_link_info *info,
       r_symndx = ELF64_R_SYM (rel->r_info);
       if (r_symndx >= symtab_hdr->sh_info)
        {
-         struct elf64_x86_64_link_hash_entry *eh;
-         struct elf_dyn_relocs **pp;
-         struct elf_dyn_relocs *p;
-
          h = sym_hashes[r_symndx - symtab_hdr->sh_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;
-         eh = (struct elf64_x86_64_link_hash_entry *) h;
-
-         for (pp = &eh->dyn_relocs; (p = *pp) != NULL; pp = &p->next)
-           if (p->sec == sec)
-             {
-               /* Everything must go for SEC.  */
-               *pp = p->next;
-               break;
-             }
        }
       else
        {
@@ -1682,7 +1669,24 @@ elf64_x86_64_gc_sweep_hook (bfd *abfd, struct bfd_link_info *info,
            }
        }
 
-      r_type = ELF64_R_TYPE (rel->r_info);
+      if (h)
+       {
+         struct elf64_x86_64_link_hash_entry *eh;
+         struct elf_dyn_relocs **pp;
+         struct elf_dyn_relocs *p;
+
+         eh = (struct elf64_x86_64_link_hash_entry *) h;
+
+         for (pp = &eh->dyn_relocs; (p = *pp) != NULL; pp = &p->next)
+           if (p->sec == sec)
+             {
+               /* Everything must go for SEC.  */
+               *pp = p->next;
+               break;
+             }
+       }
+
+      r_type = ELF32_R_TYPE (rel->r_info);
       if (! elf64_x86_64_tls_transition (info, abfd, sec, NULL,
                                         symtab_hdr, sym_hashes,
                                         &r_type, GOT_UNKNOWN,
@@ -1733,7 +1737,8 @@ elf64_x86_64_gc_sweep_hook (bfd *abfd, struct bfd_link_info *info,
        case R_X86_64_PC16:
        case R_X86_64_PC32:
        case R_X86_64_PC64:
-         if (info->shared)
+         if (info->shared
+             && (h == NULL || h->type != STT_GNU_IFUNC))
            break;
          /* Fall thru */
 
index 8c7d51570f408404dd8956a2b5d703da6c0164ea..4dfdd5785581e319afed996ed67430c72e88ea9b 100644 (file)
@@ -1,3 +1,26 @@
+2012-05-25  H.J. Lu  <hongjiu.lu@intel.com>
+
+       Backport from mainline
+       2012-01-06  H.J. Lu  <hongjiu.lu@intel.com>
+
+       PR ld/12366
+       PR ld/12371
+       * ld-ifunc/ifunc-10-i386.s: Add more tests.
+       * ld-ifunc/ifunc-10-x86-64.s: Likewise.
+       * ld-ifunc/ifunc-11-i386.s: Likewise.
+       * ld-ifunc/ifunc-11-x86-64.s: Likewise.
+
+       * ld-ifunc/ifunc-12-i386.d: New.
+       * ld-ifunc/ifunc-12-i386.s: Likewise.
+       * ld-ifunc/ifunc-12-x86-64.d: Likewise.
+       * ld-ifunc/ifunc-12-x86-64.s: Likewise.
+       * ld-ifunc/ifunc-13-i386.d: Likewise.
+       * ld-ifunc/ifunc-13-x86-64.d: Likewise.
+       * ld-ifunc/ifunc-13a-i386.s: Likewise.
+       * ld-ifunc/ifunc-13a-x86-64.s: Likewise.
+       * ld-ifunc/ifunc-13b-i386.s: Likewise.
+       * ld-ifunc/ifunc-13b-x86-64.s: Likewise.
+
 2011-05-15  Richard Sandiford  <rdsandiford@googlemail.com>
 
        * lib/ld-lib.exp (run_ld_link_tests): Simplify pass/fail logic.
index 8411e815eb60967cce00ba644b5a50d69ab7b9f8..76c5bef9bda8601a98f930b37ed8fe4faf60daee 100644 (file)
@@ -6,6 +6,8 @@ foo:
         movl ifunc@GOTOFF(%ecx), %eax
        call ifunc@PLT
        call ifunc
+        movl xxx@GOT(%ecx), %eax
+        movl xxx, %eax
         ret
 
         .section .text.bar,"ax",@progbits
@@ -18,3 +20,7 @@ bar:
         .type ifunc, @gnu_indirect_function
 ifunc:
         ret
+
+        .section .data.foo,"aw",@progbits
+xxx:
+       .long ifunc 
index ea6f8c2d16e4fc1cdc58116c874e9d3abd92ee58..11e29b52b489d14645e6bc8bf31f163c3ad822c2 100644 (file)
@@ -6,6 +6,7 @@ foo:
         movl ifunc(%rip), %eax
        call ifunc@PLT
        call ifunc
+        movl xxx(%rip), %eax
         ret
 
         .section .text.bar,"ax",@progbits
@@ -18,3 +19,7 @@ bar:
         .type ifunc, @gnu_indirect_function
 ifunc:
         ret
+
+        .section .data.foo,"aw",@progbits
+xxx:
+       .quad ifunc 
index 06f592400e89815c87ee636804b555bab8b6dc28..e0e474079546077ea9e4e9caf8e9f9c3fdc18a17 100644 (file)
@@ -3,9 +3,11 @@
 foo:
         .global foo
         movl ifunc@GOT(%ecx), %eax
-       movl ifunc@GOTOFF(%ecx), %eax
+        movl ifunc@GOTOFF(%ecx), %eax
        call ifunc@PLT
        call ifunc
+        movl xxx@GOT(%ecx), %eax
+        movl xxx, %eax
         ret
 
         .section .text.bar,"ax",@progbits
@@ -16,6 +18,10 @@ bar:
 
         .section .text.ifunc,"ax",@progbits
         .type ifunc, @gnu_indirect_function
-        .global ifunc
+       .global ifunc
 ifunc:
         ret
+
+        .section .data.foo,"aw",@progbits
+xxx:
+       .long ifunc 
index 70d4fbfdb16bceae38ba149f98df445bf2bb3588..8525419b5296b3109d3fdbe8a528a8b8cf341ef0 100644 (file)
@@ -6,6 +6,7 @@ foo:
         movl ifunc(%rip), %eax
        call ifunc@PLT
        call ifunc
+        movl xxx(%rip), %eax
         ret
 
         .section .text.bar,"ax",@progbits
@@ -19,3 +20,7 @@ bar:
         .global ifunc
 ifunc:
         ret
+
+        .section .data.foo,"aw",@progbits
+xxx:
+       .quad ifunc