]> sourceware.org Git - glibc.git/commit
elf: Implement __libc_early_init
authorFlorian Weimer <fweimer@redhat.com>
Fri, 24 Apr 2020 20:31:15 +0000 (22:31 +0200)
committerFlorian Weimer <fweimer@redhat.com>
Fri, 24 Apr 2020 20:32:09 +0000 (22:32 +0200)
commitec935dea6332cb22f9881cd1162bad156173f4b0
treefb49cc7ca93492277c35b413626ee5fb1c6e37b9
parent50a2d83c08a94a10f88a1fedeb7a6e3667a6b732
elf: Implement __libc_early_init

This function is defined in libc.so, and the dynamic loader calls
right after relocation has been finished, before any ELF constructors
or the preinit function is invoked.  It is also used in the static
build for initializing parts of the static libc.

To locate __libc_early_init, a direct symbol lookup function is used,
_dl_lookup_direct.  It does not search the entire symbol scope and
consults merely a single link map.  This function could also be used
to implement lookups in the vDSO (as an optimization).

A per-namespace variable (libc_map) is added for locating libc.so,
to avoid repeated traversals of the search scope.  It is similar to
GL(dl_initfirst).  An alternative would have been to thread a context
argument from _dl_open down to _dl_map_object_from_fd (where libc.so
is identified).  This could have avoided the global variable, but
the change would be larger as a result.  It would not have been
possible to use this to replace GL(dl_initfirst) because that global
variable is used to pass the function pointer past the stack switch
from dl_main to the main program.  Replacing that requires adding
a new argument to _dl_init, which in turn needs changes to the
architecture-specific libc.so startup code written in assembler.

__libc_early_init should not be used to replace _dl_var_init (as
it exists today on some architectures).  Instead, _dl_lookup_direct
should be used to look up a new variable symbol in libc.so, and
that should then be initialized from the dynamic loader, immediately
after the object has been loaded in _dl_map_object_from_fd (before
relocation is run).  This way, more IFUNC resolvers which depend on
these variables will work.

Reviewed-by: Carlos O'Donell <carlos@redhat.com>
13 files changed:
csu/init-first.c
csu/libc-start.c
elf/Makefile
elf/Versions
elf/dl-call-libc-early-init.c [new file with mode: 0644]
elf/dl-load.c
elf/dl-lookup-direct.c [new file with mode: 0644]
elf/dl-open.c
elf/libc-early-init.h [new file with mode: 0644]
elf/libc_early_init.c [new file with mode: 0644]
elf/rtld.c
sysdeps/generic/ldsodefs.h
sysdeps/mach/hurd/i386/init-first.c
This page took 0.046384 seconds and 5 git commands to generate.