introduce new symbol-lookup-free rcrt1/dlstart stage chaining
authorRich Felker <dalias@aerifal.cx>
Thu, 17 Sep 2015 06:30:55 +0000 (06:30 +0000)
committerRich Felker <dalias@aerifal.cx>
Thu, 17 Sep 2015 06:30:55 +0000 (06:30 +0000)
commit2907afb8dbd4c1d34825c3c9bd2b41564baca210
tree60ee15a829cd0cee1e02007704acff9bf9f1c6e1
parenta603a75a72bb469c6be4963ed1b55fabe675fe15
introduce new symbol-lookup-free rcrt1/dlstart stage chaining

previously, the call into stage 2 was made by looking up the symbol
name "__dls2" (which was chosen short to be easy to look up) from the
dynamic symbol table. this was no problem for the dynamic linker,
since it always exports all its symbols. in the case of the static pie
entry point, however, the dynamic symbol table does not contain the
necessary symbol unless -rdynamic/-E was used when linking. this
linking requirement is a major obstacle both to practical use of
static-pie as a nommu binary format (since it greatly enlarges the
file) and to upstream toolchain support for static-pie (adding -E to
default linking specs is not reasonable).

this patch replaces the runtime symbolic lookup with a link-time
lookup via an inline asm fragment, which reloc.h is responsible for
providing. in this initial commit, the asm is provided only for i386,
and the old lookup code is left in place as a fallback for archs that
have not yet transitioned.

modifying crt_arch.h to pass the stage-2 function pointer as an
argument was considered as an alternative, but such an approach would
not be compatible with fdpic, where it's impossible to compute
function pointers without already having performed relocations. it was
also deemed desirable to keep crt_arch.h as simple/minimal as
possible.

in principle, archs with pc-relative or got-relative addressing of
static variables could instead load the stage-2 function pointer from
a static volatile object. that does not work for fdpic, and is not
safe against reordering on mips-like archs that use got slots even for
static functions, but it's a valid on i386 and many others, and could
provide a reasonable default implementation in the future.
arch/i386/reloc.h
src/ldso/dlstart.c