]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
PowerPC: Fix vDSO missing ODP entries
authorAdhemerval Zanella <azanella@linux.vnet.ibm.com>
Thu, 7 Nov 2013 11:34:22 +0000 (05:34 -0600)
committerAdhemerval Zanella <azanella@linux.vnet.ibm.com>
Fri, 16 Jan 2015 02:01:44 +0000 (21:01 -0500)
This patch fixes the vDSO symbol used directed in IFUNC resolver where
they do not have an associated ODP entry leading to undefined behavior
in some cases. It adds an artificial OPD static entry to such cases
and set its TOC to non 0 to avoid triggering lazy resolutions.

ChangeLog
sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h
sysdeps/unix/sysv/linux/powerpc/gettimeofday.c

index e3f16eacb6be995beec554df88f121710f61a1f9..963a282cf10c1f69dd4c99290cd4323db292ba1d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2013-11-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
+
+       * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET):
+       Add artificial ODP entry for vDSO symbol for PPC64.
+       * sysdeps/unix/sysv/linux/powerpc/gettimeofday.c: Adjust includes.
+       * sysdeps/unix/sysv/linux/powerpc/time.c: Likewise.
+
 2014-11-19  Carlos O'Donell  <carlos@redhat.com>
            Florian Weimer  <fweimer@redhat.com>
            Joseph Myers  <joseph@codesourcery.com>
index 820079fc1926fd6a91e7ad4d09f68f4ab064e6e4..4f5268fd373ff74c156454cbdaf04080333af518 100644 (file)
@@ -32,12 +32,34 @@ extern void *__vdso_get_tbfreq;
 
 extern void *__vdso_getcpu;
 
-/* Macro to return vdso_xxx value on IFUNC implementations.
-   On PPC64 the returned value is actually an OPD entry.  */
 #if defined(__PPC64__) || defined(__powerpc64__)
-#define PTR_IFUNC_RET(value)  &value
+/* The correct solution is for _dl_vdso_vsym to return the address of the OPD
+   for the kernel VDSO function.  That address would then be stored in the
+   __vdso_* variables and returned as the result of the IFUNC resolver function.
+   Yet, the kernel does not contain any OPD entries for the VDSO functions
+   (incomplete implementation).  However, PLT relocations for IFUNCs still expect
+   the address of an OPD to be returned from the IFUNC resolver function (since
+   PLT entries on PPC64 are just copies of OPDs).  The solution for now is to
+   create an artificial static OPD for each VDSO function returned by a resolver
+   function.  The TOC value is set to a non-zero value to avoid triggering lazy
+   symbol resolution via .glink0/.plt0 for a zero TOC (requires thread-safe PLT
+   sequences) when the dynamic linker isn't prepared for it e.g. RTLD_NOW.  None
+   of the kernel VDSO routines use the TOC or AUX values so any non-zero value
+   will work.  Note that function pointer comparisons will not use this artificial
+   static OPD since those are resolved via ADDR64 relocations and will point at
+   the non-IFUNC default OPD for the symbol.  Lastly, because the IFUNC relocations
+   are processed immediately at startup the resolver functions and this code need
+   not be thread-safe, but if the caller writes to a PLT slot it must do so in a
+   thread-safe manner with all the required barriers.  */
+#define VDSO_IFUNC_RET(value)                            \
+  ({                                                     \
+    static Elf64_FuncDesc vdso_opd = { .fd_toc = ~0x0 }; \
+    vdso_opd.fd_func = (Elf64_Addr)value;                \
+    &vdso_opd;                                           \
+  })
+
 #else
-#define PTR_IFUNC_RET(value)  value
+#define VDSO_IFUNC_RET(value)  ((void *) (value))
 #endif
 
 #endif
index 5943be77abc55b61ffc3a6dce954d54def6653b5..06aae83cc510c498948ab1b8fbe04595cabf16be 100644 (file)
@@ -21,6 +21,7 @@
 
 # include <dl-vdso.h>
 # include <bits/libc-vdso.h>
+# include <dl-machine.h>
 
 void *gettimeofday_ifunc (void) __asm__ ("__gettimeofday");
 
@@ -34,7 +35,7 @@ void *
 gettimeofday_ifunc (void)
 {
   /* If the vDSO is not available we fall back syscall.  */
-  return (__vdso_gettimeofday ? PTR_IFUNC_RET(__vdso_gettimeofday)
+  return (__vdso_gettimeofday ? VDSO_IFUNC_RET (__vdso_gettimeofday)
          : __gettimeofday_syscall);
 }
 asm (".type __gettimeofday, %gnu_indirect_function");