summaryrefslogtreecommitdiff
path: root/src/ldso/dynlink.c
AgeCommit message (Expand)AuthorLines
2015-04-13remove initializers for decoded aux/dyn arrays in dynamic linkerRich Felker-5/+5
2015-04-13remove remnants of support for running in no-thread-pointer modeRich Felker-10/+2
2015-04-13move thread pointer setup to beginning of dynamic linker stage 3Rich Felker-8/+23
2015-04-13stabilize dynamic linker's layout of static TLSRich Felker-9/+6
2015-04-13dynamic linker bootstrap overhaulRich Felker-173/+174
2015-04-04fix rpath string memory leak on failed dlopenRich Felker-0/+2
2015-04-03halt dynamic linker library search on errors resolving $ORIGIN in rpathRich Felker-8/+18
2015-04-01harden dynamic linker library path searchRich Felker-5/+16
2015-03-11copy the dtv pointer to the end of the pthread struct for TLS_ABOVE_TP archsSzabolcs Nagy-3/+3
2015-03-06fix over-alignment of TLS, insufficient builtin TLS on 64-bit archsRich Felker-2/+8
2015-03-03make all objects used with atomic operations volatileRich Felker-1/+1
2014-11-23adapt dynamic linker for new binutils versions that omit DT_RPATHRich Felker-0/+2
2014-11-19save auxv pointer into libc struct early in dynamic linker startupRich Felker-0/+1
2014-08-08add dlerror message for static-linked dlsym failureRich Felker-0/+2
2014-08-08fix dlerror when using dlopen with a static libcClément Vasseur-0/+2
2014-07-11explicitly reject empty names in dynamic linker load_library functionRich Felker-0/+5
2014-07-11make dynamic linker accept colon as a separator for LD_PRELOADRich Felker-2/+2
2014-06-30fix regression in mips dynamic linkerRich Felker-1/+6
2014-06-29fix regression in dynamic linker error reportingRich Felker-9/+5
2014-06-19separate __tls_get_addr implementation from dynamic linker/init_tlsRich Felker-6/+6
2014-06-19change dynamic TLS installation strategy to optimize accessRich Felker-8/+14
2014-06-19add arch-generic support for tlsdesc relocations to dynamic linkerRich Felker-0/+41
2014-06-18reduce code duplication in dynamic linker error pathsRich Felker-16/+16
2014-06-18refactor to remove arch-specific relocation code from dynamic linkerRich Felker-8/+89
2014-04-16add options when explicitly invoking dynamic loaderRich Felker-2/+21
2014-03-25remove lazy ssp initializationTimo Teräs-13/+0
2014-03-25if dynamic linker's relro mprotect call fails, include reason in messageRich Felker-1/+1
2014-03-25cosmetic improvements in dynamic linker cleanupRich Felker-5/+5
2014-03-25clean up internal dynamic linker functions enumerating phdrsTimo Teräs-28/+23
2014-03-25implement PT_GNU_RELRO supportTimo Teräs-15/+37
2014-03-24always initialize thread pointer at program startRich Felker-9/+19
2014-01-21fix crash in dynamic linker when certain copy relocations are unsatisfiedRich Felker-1/+2
2014-01-06const-qualify the address argument to dladdrRich Felker-2/+2
2013-12-01add infrastructure to record and report the version of libc.soRich Felker-2/+7
2013-11-25remove duplicate includes from dynlink.c, strfmon.c and getaddrinfo.cSzabolcs Nagy-3/+0
2013-10-04fix uninitialized variable in dladdrRich Felker-1/+1
2013-09-15support configurable page size on mips, powerpc and microblazeSzabolcs Nagy-0/+1
2013-09-09do not use default when dynamic linker fails to open existing path fileRich Felker-0/+2
2013-08-23make dlopen honor the rpath of the main programRich Felker-1/+1
2013-08-23fix bugs in $ORIGIN handlingRich Felker-3/+9
2013-08-23use AT_EXECFN, if available, for dynamic linker to identify main programRich Felker-1/+5
2013-08-23add rpath $ORIGIN processing to dynamic linkerRich Felker-3/+59
2013-08-23add recursive rpath support to dynamic linkerRich Felker-12/+13
2013-08-08work around libraries with versioned symbols in dynamic linkerRich Felker-11/+14
2013-08-03add system for resetting TLS to initial valuesRich Felker-0/+13
2013-08-02move RPATH search after LD_LIBRARY_PATH searchRich Felker-2/+2
2013-08-02if map_library has allocated a buffer for phdrs, free it on success tooRich Felker-0/+1
2013-08-02improve error handling in map_library and support long phdrsRich Felker-12/+21
2013-08-02fix uninitialized dyn variable in map_libraryRich Felker-1/+1
2013-07-31fix theoretical out-of-bound access in dynamic linkerRich Felker-1/+1