2002-07-23 23:12:01 +00:00
|
|
|
/* Initialization code for TLS in statically linked application.
|
2025-01-01 18:14:45 +00:00
|
|
|
Copyright (C) 2002-2025 Free Software Foundation, Inc.
|
2002-07-23 23:12:01 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2002-07-23 23:12:01 +00:00
|
|
|
|
i386: Add <startup.h> [BZ #21913]
On Linux/i386, there are 3 ways to make a system call:
1. call *%gs:SYSINFO_OFFSET. This requires TLS initialization.
2. call *_dl_sysinfo. This requires relocation of _dl_sysinfo.
3. int $0x80. This is slower than #2 and #3, but works everywhere.
When an object file is compiled with PIC, #1 is prefered since it is
faster than #3 and doesn't require relocation of _dl_sysinfo. For
dynamic executables, ld.so initializes TLS. However, for static
executables, before TLS is initialized by __libc_setup_tls, #3 should
be used for system calls.
This patch adds <startup.h> which defines _startup_fatal and defaults
it to __libc_fatal. It replaces __libc_fatal with _startup_fatal in
static executables where it is called before __libc_setup_tls is called.
This header file is included in all files containing functions which are
called before __libc_setup_tls is called. On Linux/i386, when PIE is
enabled by default, _startup_fatal is turned into ABORT_INSTRUCTION and
I386_USE_SYSENTER is defined to 0 so that "int $0x80" is used for system
calls before __libc_setup_tls is called.
Tested on i686 and x86-64. Without this patch, all statically-linked
tests will fail on i686 when the compiler defaults to -fPIE.
[BZ #21913]
* csu/libc-tls.c: Include <startup.h> first.
(__libc_setup_tls): Call _startup_fatal instead of __libc_fatal.
* elf/dl-tunables.c: Include <startup.h> first.
* include/libc-symbols.h (BUILD_PIE_DEFAULT): New.
* sysdeps/generic/startup.h: New file.
* sysdeps/unix/sysv/linux/i386/startup.h: Likewise.
* sysdeps/unix/sysv/linux/i386/brk.c [BUILD_PIE_DEFAULT != 0]
(I386_USE_SYSENTER): New. Defined to 0.
2017-08-08 15:41:08 +00:00
|
|
|
#include <startup.h>
|
2002-08-08 04:16:54 +00:00
|
|
|
#include <errno.h>
|
2002-07-23 23:12:01 +00:00
|
|
|
#include <ldsodefs.h>
|
|
|
|
#include <tls.h>
|
2024-07-10 19:48:11 +00:00
|
|
|
#include <dl-tls.h>
|
2002-07-23 23:12:01 +00:00
|
|
|
#include <unistd.h>
|
2002-12-07 21:55:56 +00:00
|
|
|
#include <stdio.h>
|
2002-12-07 18:46:53 +00:00
|
|
|
#include <sys/param.h>
|
2019-11-12 11:41:34 +00:00
|
|
|
#include <array_length.h>
|
Remove TLS_TCB_ALIGN and TLS_INIT_TCB_ALIGN
TLS_INIT_TCB_ALIGN is not actually used. TLS_TCB_ALIGN was likely
introduced to support a configuration where the thread pointer
has not the same alignment as THREAD_SELF. Only ia64 seems to use
that, but for the stack/pointer guard, not for storing tcbhead_t.
Some ports use TLS_TCB_OFFSET and TLS_PRE_TCB_SIZE to shift
the thread pointer, potentially landing in a different residue class
modulo the alignment, but the changes should not impact that.
In general, given that TLS variables have their own alignment
requirements, having different alignment for the (unshifted) thread
pointer and struct pthread would potentially result in dynamic
offsets, leading to more complexity.
hppa had different values before: __alignof__ (tcbhead_t), which
seems to be 4, and __alignof__ (struct pthread), which was 8
(old default) and is now 32. However, it defines THREAD_SELF as:
/* Return the thread descriptor for the current thread. */
# define THREAD_SELF \
({ struct pthread *__self; \
__self = __get_cr27(); \
__self - 1; \
})
So the thread pointer points after struct pthread (hence __self - 1),
and they have to have the same alignment on hppa as well.
Similarly, on ia64, the definitions were different. We have:
# define TLS_PRE_TCB_SIZE \
(sizeof (struct pthread) \
+ (PTHREAD_STRUCT_END_PADDING < 2 * sizeof (uintptr_t) \
? ((2 * sizeof (uintptr_t) + __alignof__ (struct pthread) - 1) \
& ~(__alignof__ (struct pthread) - 1)) \
: 0))
# define THREAD_SELF \
((struct pthread *) ((char *) __thread_self - TLS_PRE_TCB_SIZE))
And TLS_PRE_TCB_SIZE is a multiple of the struct pthread alignment
(confirmed by the new _Static_assert in sysdeps/ia64/libc-tls.c).
On m68k, we have a larger gap between tcbhead_t and struct pthread.
But as far as I can tell, the port is fine with that. The definition
of TCB_OFFSET is sufficient to handle the shifted TCB scenario.
This fixes commit 23c77f60181eb549f11ec2f913b4270af29eee38
("nptl: Increase default TCB alignment to 32").
Reviewed-by: H.J. Lu <hjl.tools@gmail.com>
2021-12-09 16:57:11 +00:00
|
|
|
#include <pthreadP.h>
|
2022-11-03 16:28:03 +00:00
|
|
|
#include <dl-call_tls_init_tp.h>
|
2024-07-10 19:48:11 +00:00
|
|
|
#include <dl-extra_tls.h>
|
2025-01-16 19:02:42 +00:00
|
|
|
#include <array_length.h>
|
|
|
|
#include <elf/dl-tls_block_align.h>
|
2025-02-02 15:22:23 +00:00
|
|
|
#include <dl-symbol-redir-ifunc.h>
|
2002-12-07 21:55:56 +00:00
|
|
|
|
2002-10-18 01:13:06 +00:00
|
|
|
#ifdef SHARED
|
|
|
|
#error makefile bug, this file is for static only
|
|
|
|
#endif
|
2002-07-23 23:12:01 +00:00
|
|
|
|
2012-09-06 23:03:32 +00:00
|
|
|
dtv_t _dl_static_dtv[2 + TLS_SLOTINFO_SURPLUS];
|
2002-07-23 23:12:01 +00:00
|
|
|
|
|
|
|
|
2019-11-12 11:41:34 +00:00
|
|
|
static struct dtv_slotinfo_list static_slotinfo =
|
|
|
|
{
|
|
|
|
/* Allocate an array of 2 + TLS_SLOTINFO_SURPLUS elements. */
|
|
|
|
.slotinfo = { [array_length (_dl_static_dtv) - 1] = { 0 } },
|
|
|
|
};
|
2002-07-23 23:12:01 +00:00
|
|
|
|
2002-10-18 01:13:06 +00:00
|
|
|
/* Highest dtv index currently needed. */
|
|
|
|
size_t _dl_tls_max_dtv_idx;
|
|
|
|
/* Flag signalling whether there are gaps in the module ID allocation. */
|
|
|
|
bool _dl_tls_dtv_gaps;
|
|
|
|
/* Information about the dtv slots. */
|
|
|
|
struct dtv_slotinfo_list *_dl_tls_dtv_slotinfo_list;
|
|
|
|
/* Number of modules in the static TLS block. */
|
|
|
|
size_t _dl_tls_static_nelem;
|
2020-06-09 08:57:28 +00:00
|
|
|
/* Size of the static TLS block. */
|
|
|
|
size_t _dl_tls_static_size;
|
2002-11-04 07:14:09 +00:00
|
|
|
/* Size actually allocated in the static TLS block. */
|
|
|
|
size_t _dl_tls_static_used;
|
2002-10-18 01:13:06 +00:00
|
|
|
/* Alignment requirement of the static TLS block. */
|
|
|
|
size_t _dl_tls_static_align;
|
2020-06-09 08:57:28 +00:00
|
|
|
/* Size of surplus space in the static TLS area for dynamically
|
|
|
|
loaded modules with IE-model TLS or for TLSDESC optimization.
|
|
|
|
See comments in elf/dl-tls.c where it is initialized. */
|
|
|
|
size_t _dl_tls_static_surplus;
|
2020-06-10 12:40:40 +00:00
|
|
|
/* Remaining amount of static TLS that may be used for optimizing
|
|
|
|
dynamic TLS access (e.g. with TLSDESC). */
|
|
|
|
size_t _dl_tls_static_optional;
|
2002-10-18 01:13:06 +00:00
|
|
|
|
|
|
|
/* Generation counter for the dtv. */
|
|
|
|
size_t _dl_tls_generation;
|
|
|
|
|
|
|
|
|
2002-08-15 13:04:07 +00:00
|
|
|
/* Additional definitions needed by TLS initialization. */
|
|
|
|
#ifdef TLS_INIT_HELPER
|
|
|
|
TLS_INIT_HELPER
|
|
|
|
#endif
|
|
|
|
|
2013-02-07 22:44:18 +00:00
|
|
|
static void
|
2025-01-16 19:02:42 +00:00
|
|
|
init_slotinfo (struct link_map *main_map)
|
2002-12-04 12:30:40 +00:00
|
|
|
{
|
2019-11-12 11:41:34 +00:00
|
|
|
/* Create the slotinfo list. Note that the type of static_slotinfo
|
|
|
|
has effectively a zero-length array, so we cannot use the size of
|
|
|
|
static_slotinfo to determine the array length. */
|
|
|
|
static_slotinfo.len = array_length (_dl_static_dtv);
|
|
|
|
/* static_slotinfo.next = NULL; -- Already zero. */
|
2002-12-04 12:30:40 +00:00
|
|
|
|
2025-01-16 19:02:42 +00:00
|
|
|
main_map->l_tls_modid = 1;
|
|
|
|
static_slotinfo.slotinfo[1].map = main_map;
|
|
|
|
main_map->l_tls_in_slotinfo = 1;
|
|
|
|
|
2002-12-04 12:30:40 +00:00
|
|
|
/* The slotinfo list. Will be extended by the code doing dynamic
|
|
|
|
linking. */
|
|
|
|
GL(dl_tls_max_dtv_idx) = 1;
|
2019-11-12 11:41:34 +00:00
|
|
|
GL(dl_tls_dtv_slotinfo_list) = &static_slotinfo;
|
2002-12-04 12:30:40 +00:00
|
|
|
}
|
|
|
|
|
2025-01-16 19:02:42 +00:00
|
|
|
/* Perform TLS setup for statically linked binaries. Similar to
|
|
|
|
init_tls in elf/rtld.c. */
|
2002-07-23 23:12:01 +00:00
|
|
|
void
|
2016-12-26 09:08:34 +00:00
|
|
|
__libc_setup_tls (void)
|
2002-07-23 23:12:01 +00:00
|
|
|
{
|
|
|
|
size_t memsz = 0;
|
|
|
|
size_t filesz = 0;
|
2002-08-28 10:28:11 +00:00
|
|
|
void *initimage = NULL;
|
2002-07-23 23:12:01 +00:00
|
|
|
size_t align = 0;
|
2016-12-26 09:08:34 +00:00
|
|
|
size_t max_align = TCB_ALIGNMENT;
|
2013-03-28 22:39:32 +00:00
|
|
|
const ElfW(Phdr) *phdr;
|
2002-07-23 23:12:01 +00:00
|
|
|
|
Add --enable-static-pie configure option to build static PIE [BZ #19574]
Static PIE extends address space layout randomization to static
executables. It provides additional security hardening benefits at
the cost of some memory and performance.
Dynamic linker, ld.so, is a standalone program which can be loaded at
any address. This patch adds a configure option, --enable-static-pie,
to embed the part of ld.so in static executable to create static position
independent executable (static PIE). A static PIE is similar to static
executable, but can be loaded at any address without help from a dynamic
linker. When --enable-static-pie is used to configure glibc, libc.a is
built as PIE and all static executables, including tests, are built as
static PIE. The resulting libc.a can be used together with GCC 8 or
above to build static PIE with the compiler option, -static-pie. But
GCC 8 isn't required to build glibc with --enable-static-pie. Only GCC
with PIE support is needed. When an older GCC is used to build glibc
with --enable-static-pie, proper input files are passed to linker to
create static executables as static PIE, together with "-z text" to
prevent dynamic relocations in read-only segments, which are not allowed
in static PIE.
The following changes are made for static PIE:
1. Add a new function, _dl_relocate_static_pie, to:
a. Get the run-time load address.
b. Read the dynamic section.
c. Perform dynamic relocations.
Dynamic linker also performs these steps. But static PIE doesn't load
any shared objects.
2. Call _dl_relocate_static_pie at entrance of LIBC_START_MAIN in
libc.a. crt1.o, which is used to create dynamic and non-PIE static
executables, is updated to include a dummy _dl_relocate_static_pie.
rcrt1.o is added to create static PIE, which will link in the real
_dl_relocate_static_pie. grcrt1.o is also added to create static PIE
with -pg. GCC 8 has been updated to support rcrt1.o and grcrt1.o for
static PIE.
Static PIE can work on all architectures which support PIE, provided:
1. Target must support accessing of local functions without dynamic
relocations, which is needed in start.S to call __libc_start_main with
function addresses of __libc_csu_init, __libc_csu_fini and main. All
functions in static PIE are local functions. If PIE start.S can't reach
main () defined in a shared object, the code sequence:
pass address of local_main to __libc_start_main
...
local_main:
tail call to main via PLT
can be used.
2. start.S is updated to check PIC instead SHARED for PIC code path and
avoid dynamic relocation, when PIC is defined and SHARED isn't defined,
to support static PIE.
3. All assembly codes are updated check PIC instead SHARED for PIC code
path to avoid dynamic relocations in read-only sections.
4. All assembly codes are updated check SHARED instead PIC for static
symbol name.
5. elf_machine_load_address in dl-machine.h are updated to support static
PIE.
6. __brk works without TLS nor dynamic relocations in read-only section
so that it can be used by __libc_setup_tls to initializes TLS in static
PIE.
NB: When glibc is built with GCC defaulted to PIE, libc.a is compiled
with -fPIE, regardless if --enable-static-pie is used to configure glibc.
When glibc is configured with --enable-static-pie, libc.a is compiled
with -fPIE, regardless whether GCC defaults to PIE or not. The same
libc.a can be used to build both static executable and static PIE.
There is no need for separate PIE copy of libc.a.
On x86-64, the normal static sln:
text data bss dec hex filename
625425 8284 5456 639165 9c0bd elf/sln
the static PIE sln:
text data bss dec hex filename
657626 20636 5392 683654 a6e86 elf/sln
The code size is increased by 5% and the binary size is increased by 7%.
Linker requirements to build glibc with --enable-static-pie:
1. Linker supports --no-dynamic-linker to remove PT_INTERP segment from
static PIE.
2. Linker can create working static PIE. The x86-64 linker needs the
fix for
https://sourceware.org/bugzilla/show_bug.cgi?id=21782
The i386 linker needs to be able to convert "movl main@GOT(%ebx), %eax"
to "leal main@GOTOFF(%ebx), %eax" if main is defined locally.
Binutils 2.29 or above are OK for i686 and x86-64. But linker status for
other targets need to be verified.
3. Linker should resolve undefined weak symbols to 0 in static PIE:
https://sourceware.org/bugzilla/show_bug.cgi?id=22269
4. Many ELF backend linkers incorrectly check bfd_link_pic for TLS
relocations, which should check bfd_link_executable instead:
https://sourceware.org/bugzilla/show_bug.cgi?id=22263
Tested on aarch64, i686 and x86-64.
Using GCC 7 and binutils master branch, build-many-glibcs.py with
--enable-static-pie with all patches for static PIE applied have the
following build successes:
PASS: glibcs-aarch64_be-linux-gnu build
PASS: glibcs-aarch64-linux-gnu build
PASS: glibcs-armeb-linux-gnueabi-be8 build
PASS: glibcs-armeb-linux-gnueabi build
PASS: glibcs-armeb-linux-gnueabihf-be8 build
PASS: glibcs-armeb-linux-gnueabihf build
PASS: glibcs-arm-linux-gnueabi build
PASS: glibcs-arm-linux-gnueabihf build
PASS: glibcs-arm-linux-gnueabihf-v7a build
PASS: glibcs-arm-linux-gnueabihf-v7a-disable-multi-arch build
PASS: glibcs-m68k-linux-gnu build
PASS: glibcs-microblazeel-linux-gnu build
PASS: glibcs-microblaze-linux-gnu build
PASS: glibcs-mips64el-linux-gnu-n32 build
PASS: glibcs-mips64el-linux-gnu-n32-nan2008 build
PASS: glibcs-mips64el-linux-gnu-n32-nan2008-soft build
PASS: glibcs-mips64el-linux-gnu-n32-soft build
PASS: glibcs-mips64el-linux-gnu-n64 build
PASS: glibcs-mips64el-linux-gnu-n64-nan2008 build
PASS: glibcs-mips64el-linux-gnu-n64-nan2008-soft build
PASS: glibcs-mips64el-linux-gnu-n64-soft build
PASS: glibcs-mips64-linux-gnu-n32 build
PASS: glibcs-mips64-linux-gnu-n32-nan2008 build
PASS: glibcs-mips64-linux-gnu-n32-nan2008-soft build
PASS: glibcs-mips64-linux-gnu-n32-soft build
PASS: glibcs-mips64-linux-gnu-n64 build
PASS: glibcs-mips64-linux-gnu-n64-nan2008 build
PASS: glibcs-mips64-linux-gnu-n64-nan2008-soft build
PASS: glibcs-mips64-linux-gnu-n64-soft build
PASS: glibcs-mipsel-linux-gnu build
PASS: glibcs-mipsel-linux-gnu-nan2008 build
PASS: glibcs-mipsel-linux-gnu-nan2008-soft build
PASS: glibcs-mipsel-linux-gnu-soft build
PASS: glibcs-mips-linux-gnu build
PASS: glibcs-mips-linux-gnu-nan2008 build
PASS: glibcs-mips-linux-gnu-nan2008-soft build
PASS: glibcs-mips-linux-gnu-soft build
PASS: glibcs-nios2-linux-gnu build
PASS: glibcs-powerpc64le-linux-gnu build
PASS: glibcs-powerpc64-linux-gnu build
PASS: glibcs-tilegxbe-linux-gnu-32 build
PASS: glibcs-tilegxbe-linux-gnu build
PASS: glibcs-tilegx-linux-gnu-32 build
PASS: glibcs-tilegx-linux-gnu build
PASS: glibcs-tilepro-linux-gnu build
and the following build failures:
FAIL: glibcs-alpha-linux-gnu build
elf/sln is failed to link due to:
assertion fail bfd/elf64-alpha.c:4125
This is caused by linker bug and/or non-PIC code in PIE libc.a.
FAIL: glibcs-hppa-linux-gnu build
elf/sln is failed to link due to:
collect2: fatal error: ld terminated with signal 11 [Segmentation fault]
https://sourceware.org/bugzilla/show_bug.cgi?id=22537
FAIL: glibcs-ia64-linux-gnu build
elf/sln is failed to link due to:
collect2: fatal error: ld terminated with signal 11 [Segmentation fault]
FAIL: glibcs-powerpc-linux-gnu build
FAIL: glibcs-powerpc-linux-gnu-soft build
FAIL: glibcs-powerpc-linux-gnuspe build
FAIL: glibcs-powerpc-linux-gnuspe-e500v1 build
elf/sln is failed to link due to:
ld: read-only segment has dynamic relocations.
This is caused by linker bug and/or non-PIC code in PIE libc.a. See:
https://sourceware.org/bugzilla/show_bug.cgi?id=22264
FAIL: glibcs-powerpc-linux-gnu-power4 build
elf/sln is failed to link due to:
findlocale.c:96:(.text+0x22c): @local call to ifunc memchr
This is caused by linker bug and/or non-PIC code in PIE libc.a.
FAIL: glibcs-s390-linux-gnu build
elf/sln is failed to link due to:
collect2: fatal error: ld terminated with signal 11 [Segmentation fault], core dumped
assertion fail bfd/elflink.c:14299
This is caused by linker bug and/or non-PIC code in PIE libc.a.
FAIL: glibcs-sh3eb-linux-gnu build
FAIL: glibcs-sh3-linux-gnu build
FAIL: glibcs-sh4eb-linux-gnu build
FAIL: glibcs-sh4eb-linux-gnu-soft build
FAIL: glibcs-sh4-linux-gnu build
FAIL: glibcs-sh4-linux-gnu-soft build
elf/sln is failed to link due to:
ld: read-only segment has dynamic relocations.
This is caused by linker bug and/or non-PIC code in PIE libc.a. See:
https://sourceware.org/bugzilla/show_bug.cgi?id=22263
Also TLS code sequence in SH assembly syscalls in glibc doesn't match TLS
code sequence expected by ld:
https://sourceware.org/bugzilla/show_bug.cgi?id=22270
FAIL: glibcs-sparc64-linux-gnu build
FAIL: glibcs-sparcv9-linux-gnu build
FAIL: glibcs-tilegxbe-linux-gnu build
FAIL: glibcs-tilegxbe-linux-gnu-32 build
FAIL: glibcs-tilegx-linux-gnu build
FAIL: glibcs-tilegx-linux-gnu-32 build
FAIL: glibcs-tilepro-linux-gnu build
elf/sln is failed to link due to:
ld: read-only segment has dynamic relocations.
This is caused by linker bug and/or non-PIC code in PIE libc.a. See:
https://sourceware.org/bugzilla/show_bug.cgi?id=22263
[BZ #19574]
* INSTALL: Regenerated.
* Makeconfig (real-static-start-installed-name): New.
(pic-default): Updated for --enable-static-pie.
(pie-default): New for --enable-static-pie.
(default-pie-ldflag): Likewise.
(+link-static-before-libc): Replace $(DEFAULT-LDFLAGS-$(@F))
with $(if $($(@F)-no-pie),$(no-pie-ldflag),$(default-pie-ldflag)).
Replace $(static-start-installed-name) with
$(real-static-start-installed-name).
(+prectorT): Updated for --enable-static-pie.
(+postctorT): Likewise.
(CFLAGS-.o): Add $(pie-default).
(CFLAGS-.op): Likewise.
* NEWS: Mention --enable-static-pie.
* config.h.in (ENABLE_STATIC_PIE): New.
* configure.ac (--enable-static-pie): New configure option.
(have-no-dynamic-linker): New LIBC_CONFIG_VAR.
(have-static-pie): Likewise.
Enable static PIE if linker supports --no-dynamic-linker.
(ENABLE_STATIC_PIE): New AC_DEFINE.
(enable-static-pie): New LIBC_CONFIG_VAR.
* configure: Regenerated.
* csu/Makefile (omit-deps): Add r$(start-installed-name) and
gr$(start-installed-name) for --enable-static-pie.
(extra-objs): Likewise.
(install-lib): Likewise.
(extra-objs): Add static-reloc.o and static-reloc.os
($(objpfx)$(start-installed-name)): Also depend on
$(objpfx)static-reloc.o.
($(objpfx)r$(start-installed-name)): New.
($(objpfx)g$(start-installed-name)): Also depend on
$(objpfx)static-reloc.os.
($(objpfx)gr$(start-installed-name)): New.
* csu/libc-start.c (LIBC_START_MAIN): Call _dl_relocate_static_pie
in libc.a.
* csu/libc-tls.c (__libc_setup_tls): Add main_map->l_addr to
initimage.
* csu/static-reloc.c: New file.
* elf/Makefile (routines): Add dl-reloc-static-pie.
(elide-routines.os): Likewise.
(DEFAULT-LDFLAGS-tst-tls1-static-non-pie): Removed.
(tst-tls1-static-non-pie-no-pie): New.
* elf/dl-reloc-static-pie.c: New file.
* elf/dl-support.c (_dl_get_dl_main_map): New function.
* elf/dynamic-link.h (ELF_DURING_STARTUP): Also check
STATIC_PIE_BOOTSTRAP.
* elf/get-dynamic-info.h (elf_get_dynamic_info): Likewise.
* gmon/Makefile (tests): Add tst-gmon-static-pie.
(tests-static): Likewise.
(DEFAULT-LDFLAGS-tst-gmon-static): Removed.
(tst-gmon-static-no-pie): New.
(CFLAGS-tst-gmon-static-pie.c): Likewise.
(CRT-tst-gmon-static-pie): Likewise.
(tst-gmon-static-pie-ENV): Likewise.
(tests-special): Likewise.
($(objpfx)tst-gmon-static-pie.out): Likewise.
(clean-tst-gmon-static-pie-data): Likewise.
($(objpfx)tst-gmon-static-pie-gprof.out): Likewise.
* gmon/tst-gmon-static-pie.c: New file.
* manual/install.texi: Document --enable-static-pie.
* sysdeps/generic/ldsodefs.h (_dl_relocate_static_pie): New.
(_dl_get_dl_main_map): Likewise.
* sysdeps/i386/configure.ac: Check if linker supports static PIE.
* sysdeps/x86_64/configure.ac: Likewise.
* sysdeps/i386/configure: Regenerated.
* sysdeps/x86_64/configure: Likewise.
* sysdeps/mips/Makefile (ASFLAGS-.o): Add $(pie-default).
(ASFLAGS-.op): Likewise.
2017-12-16 00:59:33 +00:00
|
|
|
struct link_map *main_map = GL(dl_ns)[LM_ID_BASE]._ns_loaded;
|
|
|
|
|
2021-05-10 08:31:41 +00:00
|
|
|
__tls_pre_init_tp ();
|
|
|
|
|
2002-07-23 23:12:01 +00:00
|
|
|
/* Look through the TLS segment if there is any. */
|
2023-01-03 12:56:28 +00:00
|
|
|
for (phdr = _dl_phdr; phdr < &_dl_phdr[_dl_phnum]; ++phdr)
|
|
|
|
if (phdr->p_type == PT_TLS)
|
|
|
|
{
|
|
|
|
/* Remember the values we need. */
|
|
|
|
memsz = phdr->p_memsz;
|
|
|
|
filesz = phdr->p_filesz;
|
|
|
|
initimage = (void *) phdr->p_vaddr + main_map->l_addr;
|
|
|
|
align = phdr->p_align;
|
|
|
|
if (phdr->p_align > max_align)
|
|
|
|
max_align = phdr->p_align;
|
2025-01-16 19:02:42 +00:00
|
|
|
|
|
|
|
main_map->l_tls_align = align;
|
|
|
|
main_map->l_tls_blocksize = memsz;
|
|
|
|
main_map->l_tls_initimage = initimage;
|
|
|
|
main_map->l_tls_initimage_size = filesz;
|
|
|
|
init_slotinfo (main_map);
|
2023-01-03 12:56:28 +00:00
|
|
|
break;
|
|
|
|
}
|
2002-07-23 23:12:01 +00:00
|
|
|
|
2025-01-16 19:02:42 +00:00
|
|
|
/* Number of elements in the static TLS block. */
|
|
|
|
GL(dl_tls_static_nelem) = GL(dl_tls_max_dtv_idx);
|
|
|
|
|
2020-07-07 09:49:11 +00:00
|
|
|
/* Calculate the size of the static TLS surplus, with 0 auditors. */
|
|
|
|
_dl_tls_static_surplus_init (0);
|
2020-06-09 08:57:28 +00:00
|
|
|
|
2025-01-16 19:02:42 +00:00
|
|
|
/* Calculate the TLS block size. */
|
|
|
|
_dl_determine_tlsoffset ();
|
2024-07-10 19:48:11 +00:00
|
|
|
|
2025-01-16 19:02:42 +00:00
|
|
|
/* See _dl_allocate_tls_storage in elf/dl-tls.c. */
|
|
|
|
void *tcbp;
|
|
|
|
{
|
|
|
|
size_t size = _dl_tls_block_size_with_pre ();
|
|
|
|
void *allocated = _dl_early_allocate (size + GLRO (dl_tls_static_align));
|
|
|
|
if (allocated == NULL)
|
|
|
|
_startup_fatal_tls_error ();
|
|
|
|
tcbp = _dl_tls_block_align (size, allocated);
|
|
|
|
}
|
2002-07-23 23:12:01 +00:00
|
|
|
|
|
|
|
/* Initialize the dtv. [0] is the length, [1] the generation counter. */
|
2025-01-16 19:02:42 +00:00
|
|
|
_dl_static_dtv[0].counter = array_length (_dl_static_dtv) - 2;
|
2002-07-23 23:12:01 +00:00
|
|
|
|
2025-01-16 19:02:42 +00:00
|
|
|
/* Install the pointer to the DTV. See allocate_dtv in elf/dl-tls.c. */
|
|
|
|
INSTALL_DTV (tcbp, _dl_static_dtv);
|
2002-07-23 23:12:01 +00:00
|
|
|
|
2025-01-16 19:02:42 +00:00
|
|
|
/* _dl_allocate_tls_init uses recursive locking and the TCB, so this
|
|
|
|
has to come first. */
|
|
|
|
call_tls_init_tp (tcbp);
|
2002-07-23 23:12:01 +00:00
|
|
|
|
2025-01-16 19:02:42 +00:00
|
|
|
/* Initialize the TLS image for the allocated TCB. */
|
|
|
|
_dl_allocate_tls_init (tcbp, true);
|
2002-12-04 12:30:40 +00:00
|
|
|
}
|