summaryrefslogtreecommitdiff
path: root/src/ldso
AgeCommit message (Expand)AuthorLines
2012-10-19support looking up thread-local objects with dlsymRich Felker-0/+6
2012-10-19fix breakage in dlsym for looking up RTLD_DEFAULT, etc.Rich Felker-2/+5
2012-10-17fix microblaze asm relocations for shared libcRich Felker-3/+3
2012-10-15add support for TLS variant I, presently needed for arm and mipsRich Felker-3/+32
2012-10-14fix main program TLS alignment for dynamic-linked programsRich Felker-6/+5
2012-10-13fix namespace clash (libc) in dynlink.cRich Felker-14/+13
2012-10-13remove dead code from dynamic linkerRich Felker-10/+0
2012-10-07clean up and refactor program initializationRich Felker-2/+2
2012-10-07fix breakage due to initializing thread pointer when loading libsRich Felker-1/+1
2012-10-06make new TLS setup block even implementation-internals signalsRich Felker-2/+1
2012-10-06don't crash if TLS library is loaded into process with no thread pointerRich Felker-0/+5
2012-10-06fix symbol acceptance/rejection rules for TLSRich Felker-8/+14
2012-10-06TLS fixes, mainly alignment handlingRich Felker-39/+48
2012-10-05fix/improve shared library ctor/dtor handling, allow recursive dlopenRich Felker-7/+29
2012-10-05small dynamic linker module search fixRich Felker-1/+2
2012-10-05support for TLS in dynamic-loaded (dlopen) modulesRich Felker-19/+81
2012-10-05fix race condition in dlopenRich Felker-1/+3
2012-10-04dynamic-linked TLS support for everything but dlopen'd libsRich Felker-38/+58
2012-10-04remove freeing of dynamic linker data when dlopen/dlsym are not usedRich Felker-11/+0
2012-10-04beginnings of full TLS support in shared librariesRich Felker-0/+10
2012-10-04partial TLS support for dynamic-linked programsRich Felker-22/+72
2012-10-04TLS (GNU/C11 thread-local storage) support for static-linked programsRich Felker-0/+10
2012-09-29more close-on-exec fixes, mostly using new "e" flag to fopenRich Felker-1/+1
2012-09-29fix some more O_CLOEXEC/SOCK_CLOEXEC issuesRich Felker-2/+2
2012-09-29microblaze portRich Felker-0/+32
2012-09-06use restrict everywhere it's required by c99 and/or posix 2008Rich Felker-4/+4
2012-08-27fix bug caused by main app & libc having map set; cannot free themRich Felker-1/+1
2012-08-26dladdr support for dynamic linker (nonstandard extension)Rich Felker-0/+95
2012-08-25fix bug in gnu hash lookup on dlsym(handle, name) lookupsRich Felker-1/+1
2012-08-25clean up search_vec usage for vdsoRich Felker-2/+2
2012-08-25use new search_vec function to find vdso in dynamic linkerRich Felker-4/+2
2012-08-25ensure canary is setup if stack-prot libs are dlopen'd into non-ssp appRich Felker-1/+4
2012-08-25add gnu hash support in the dynamic linkerRich Felker-12/+85
2012-08-18make dynamic linker report all failures before exitingRich Felker-2/+6
2012-08-17fix bug computing argc when invoking ld-musl-mips.so.1 progname ...Rich Felker-3/+3
2012-08-07fix bug dlsym bug that slipped in during dynamic linker cleanupRich Felker-1/+1
2012-08-05dlsym RTLD_NEXT support for mipsRich Felker-0/+15
2012-08-05more changes that were lost when committing mips dynamic linkerRich Felker-0/+4
2012-08-05fix change lost in the process of integrating mips dynamic linkerRich Felker-2/+2
2012-08-05mips dynamic linker supportRich Felker-0/+49
2012-08-05more cleanup of dynamic linker internalsRich Felker-8/+9
2012-08-05more dynamic linker internals cleanupRich Felker-6/+6
2012-08-05dynamic linker internals cleanupRich Felker-5/+7
2012-07-13make dynamic linker tell the debugger its own pathnameRich Felker-0/+5
2012-07-11make dynamic linker depend on -DSHARED not -fPICRich Felker-1/+1
2012-07-11fix lots of breakage on dlopen, mostly with explicit pathnamesRich Felker-14/+21
2012-07-07fix dlsym RTLD_NEXT supportRich Felker-1/+3
2012-06-09fix char signedness bug (arm-specific) in dynamic linkerRich Felker-1/+1
2012-06-06treat failure of mprotect in map_library as a fatal load failureRich Felker-9/+9
2012-05-27add ldd and main program loading support to dynamic linkerRich Felker-21/+89