summaryrefslogtreecommitdiff
path: root/src/ldso/dynlink.c
AgeCommit message (Expand)AuthorFilesLines
2015-10-15fix visibility mismatch in dynamic linker stage 2 function definitionRich Felker1-0/+1
2015-09-22fix dlsym RTLD_NEXT behavior for fdpicRich Felker1-4/+28
2015-09-22fix dlsym lookup of function symbols on fdpicRich Felker1-0/+6
2015-09-22move calls to application init functions after crt1 entry pointRich Felker1-1/+5
2015-09-22fix breakage in non-fdpic dynamic linker init/fini processingRich Felker1-1/+1
2015-09-22fix resolving interp string address on fdpic ldd commandRich Felker1-2/+1
2015-09-22add real fdpic loading of shared librariesRich Felker1-9/+54
2015-09-22add general fdpic support in dynamic linker and arch support for shRich Felker1-9/+125
2015-09-21factor symbol counting out of dladdr as its own functionRich Felker1-19/+20
2015-09-17refactor some more dynamic linker load address computationsRich Felker1-7/+7
2015-09-17remove some useless casts in dynamic linkerRich Felker1-2/+2
2015-09-17further refactoring of dynamic linker load address computationsRich Felker1-2/+2
2015-09-17begin refactoring load address computations in dynamic linkerRich Felker1-19/+22
2015-06-28dynlink.c: pass gnu-hash table pointer to gnu_lookupAlexander Monakov1-13/+11
2015-06-28dynlink.c: slim down gnu_lookupAlexander Monakov1-9/+5
2015-06-28dynlink.c: use bloom filter in gnu hash lookupAlexander Monakov1-3/+22
2015-06-27dynlink.c: use a faster expression in gnu_hashAlexander Monakov1-1/+1
2015-06-25fix local-dynamic model TLS on mips and powerpcRich Felker1-3/+3
2015-06-23make dynamic linker work around MAP_FAILED mmap failure on nommu kernelsRich Felker1-2/+24
2015-06-17ignore ENOSYS error from mprotect in pthread_create and dynamic linkerRich Felker1-2/+4
2015-06-07fix regression in pre-v7 arm on kernels with kuser helper removedRich Felker1-17/+14
2015-06-04fix dynamic linker regression processing R_*_NONE type relocationsRich Felker1-0/+1
2015-05-25reprocess all libc/ldso symbolic relocations in dynamic linking stage 3Rich Felker1-11/+43
2015-05-25move call to dynamic linker stage-3 into stage-2 functionRich Felker1-1/+7
2015-05-18reprocess libc/ldso RELA relocations in stage 3 of dynamic linkingRich Felker1-1/+1
2015-04-21remove always-true conditional in dynamic linker TLSDESC processingRich Felker1-1/+1
2015-04-21remove redundant code in do_dlsym functionRich Felker1-1/+1
2015-04-18make dlerror state and message thread-local and dynamically-allocatedRich Felker1-32/+61
2015-04-17apply hidden visibility to tlsdesc accessor functionsRich Felker1-0/+1
2015-04-17ensure debugger hook for dynamic linker does not point to a PLT slotRich Felker1-2/+4
2015-04-14use hidden visibility for call from dlsym to internal __dlsymRich Felker1-0/+1
2015-04-14fix inconsistent visibility for internal __tls_get_new functionRich Felker1-0/+1
2015-04-13remove initializers for decoded aux/dyn arrays in dynamic linkerRich Felker1-5/+5
2015-04-13remove remnants of support for running in no-thread-pointer modeRich Felker1-10/+2
2015-04-13move thread pointer setup to beginning of dynamic linker stage 3Rich Felker1-8/+23
2015-04-13stabilize dynamic linker's layout of static TLSRich Felker1-9/+6
2015-04-13dynamic linker bootstrap overhaulRich Felker1-173/+174
2015-04-04fix rpath string memory leak on failed dlopenRich Felker1-0/+2
2015-04-03halt dynamic linker library search on errors resolving $ORIGIN in rpathRich Felker1-8/+18
2015-04-01harden dynamic linker library path searchRich Felker1-5/+16
2015-03-11copy the dtv pointer to the end of the pthread struct for TLS_ABOVE_TP archsSzabolcs Nagy1-3/+3
2015-03-06fix over-alignment of TLS, insufficient builtin TLS on 64-bit archsRich Felker1-2/+8
2015-03-03make all objects used with atomic operations volatileRich Felker1-1/+1
2014-11-23adapt dynamic linker for new binutils versions that omit DT_RPATHRich Felker1-0/+2
2014-11-19save auxv pointer into libc struct early in dynamic linker startupRich Felker1-0/+1
2014-08-08add dlerror message for static-linked dlsym failureRich Felker1-0/+2
2014-08-08fix dlerror when using dlopen with a static libcClément Vasseur1-0/+2
2014-07-11explicitly reject empty names in dynamic linker load_library functionRich Felker1-0/+5
2014-07-11make dynamic linker accept colon as a separator for LD_PRELOADRich Felker1-2/+2
2014-06-30fix regression in mips dynamic linkerRich Felker1-1/+6