diff options
author | Florian Weimer <fweimer@redhat.com> | 2023-11-27 11:28:13 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2023-11-27 11:28:13 +0100 |
commit | 78ca44da0160a0b442f0ca1f253e3360f044b2ec (patch) | |
tree | 248cff1b3dc9e22595ad4d9871598bf6bd389c74 /elf/dl-open.c | |
parent | a74c2e1cbc8673dd7e97aae2f2705392e2ccc3f6 (diff) | |
download | glibc-78ca44da0160a0b442f0ca1f253e3360f044b2ec.tar glibc-78ca44da0160a0b442f0ca1f253e3360f044b2ec.tar.gz glibc-78ca44da0160a0b442f0ca1f253e3360f044b2ec.tar.bz2 glibc-78ca44da0160a0b442f0ca1f253e3360f044b2ec.zip |
elf: Relocate libc.so early during startup and dlmopen (bug 31083)
This makes it more likely that objects without dependencies can
use IFUNC resolvers in libc.so.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'elf/dl-open.c')
-rw-r--r-- | elf/dl-open.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/elf/dl-open.c b/elf/dl-open.c index 417d2fb948..b748c278ac 100644 --- a/elf/dl-open.c +++ b/elf/dl-open.c @@ -708,6 +708,17 @@ dl_open_worker_begin (void *a) them. However, such relocation dependencies in IFUNC resolvers are undefined anyway, so this is not a problem. */ + /* Ensure that libc is relocated first. This helps with the + execution of IFUNC resolvers in libc, and matters only to newly + created dlmopen namespaces. Do not do this for static dlopen + because libc has relocations against ld.so, which may not have + been relocated at this point. */ +#ifdef SHARED + if (GL(dl_ns)[args->nsid].libc_map != NULL) + _dl_open_relocate_one_object (args, r, GL(dl_ns)[args->nsid].libc_map, + reloc_mode, &relocation_in_progress); +#endif + for (unsigned int i = last; i-- > first; ) _dl_open_relocate_one_object (args, r, new->l_initfini[i], reloc_mode, &relocation_in_progress); |