diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2017-09-28 15:28:00 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2017-09-28 15:28:12 -0700 |
commit | 4088d8dd29ce0629eeaa7cceca02414c85d98e05 (patch) | |
tree | 0b807276e1826b3c4522721d076aa81c23c5da8b /sysdeps/i386/dl-machine.h | |
parent | 4d3693ec1cb7d247a217dc1eb7121c658f818dca (diff) | |
download | glibc-4088d8dd29ce0629eeaa7cceca02414c85d98e05.tar.gz glibc-4088d8dd29ce0629eeaa7cceca02414c85d98e05.tar.xz glibc-4088d8dd29ce0629eeaa7cceca02414c85d98e05.zip |
x86: Allow undefined _DYNAMIC in static executable
When --enable-static-pie is used to build static PIE, _DYNAMIC is used to compute the load address of static PIE. But _DYNAMIC is undefined when creating static executable. This patch makes _DYNAMIC weak in PIE libc.a so that it can be undefined. * sysdeps/i386/dl-machine.h (elf_machine_load_address): Allow undefined _DYNAMIC in PIE libc.a. * sysdeps/x86_64/dl-machine.h (elf_machine_load_address): Likewse.
Diffstat (limited to 'sysdeps/i386/dl-machine.h')
-rw-r--r-- | sysdeps/i386/dl-machine.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/sysdeps/i386/dl-machine.h b/sysdeps/i386/dl-machine.h index 2e17eba5c0..242c692c17 100644 --- a/sysdeps/i386/dl-machine.h +++ b/sysdeps/i386/dl-machine.h @@ -54,8 +54,15 @@ elf_machine_load_address (void) /* Compute the difference between the runtime address of _DYNAMIC as seen by a GOTOFF reference, and the link-time address found in the special unrelocated first GOT entry. */ - extern Elf32_Dyn bygotoff[] asm ("_DYNAMIC") attribute_hidden; - return (Elf32_Addr) &bygotoff - elf_machine_dynamic (); +#ifndef SHARED + extern Elf32_Dyn _DYNAMIC[] __attribute__((weak, visibility ("hidden"))); + if (!_DYNAMIC) + return 0; +#endif + /* The address of dynamic must be taken as non-weak to avoid dynamic + relocation. */ + extern Elf32_Dyn dynamic[] asm ("_DYNAMIC") attribute_hidden; + return (Elf32_Addr) &dynamic - elf_machine_dynamic (); } /* Set up the loaded object described by L so its unrelocated PLT |