about summary refs log tree commit diff
path: root/src/ldso/dynlink.c
Commit message (Expand)AuthorAgeFilesLines
...
* add dl_iterate_phdr interfaceRich Felker2012-10-311-7/+44
* support looking up thread-local objects with dlsymRich Felker2012-10-191-0/+6
* fix breakage in dlsym for looking up RTLD_DEFAULT, etc.Rich Felker2012-10-191-2/+5
* add support for TLS variant I, presently needed for arm and mipsRich Felker2012-10-151-3/+32
* fix main program TLS alignment for dynamic-linked programsRich Felker2012-10-141-6/+5
* fix namespace clash (libc) in dynlink.cRich Felker2012-10-131-14/+13
* remove dead code from dynamic linkerRich Felker2012-10-131-10/+0
* clean up and refactor program initializationRich Felker2012-10-071-2/+2
* fix breakage due to initializing thread pointer when loading libsRich Felker2012-10-071-1/+1
* make new TLS setup block even implementation-internals signalsRich Felker2012-10-061-2/+1
* don't crash if TLS library is loaded into process with no thread pointerRich Felker2012-10-061-0/+5
* fix symbol acceptance/rejection rules for TLSRich Felker2012-10-061-8/+14
* TLS fixes, mainly alignment handlingRich Felker2012-10-061-39/+48
* fix/improve shared library ctor/dtor handling, allow recursive dlopenRich Felker2012-10-051-7/+29
* small dynamic linker module search fixRich Felker2012-10-051-1/+2
* support for TLS in dynamic-loaded (dlopen) modulesRich Felker2012-10-051-19/+81
* fix race condition in dlopenRich Felker2012-10-051-1/+3
* dynamic-linked TLS support for everything but dlopen'd libsRich Felker2012-10-041-38/+58
* remove freeing of dynamic linker data when dlopen/dlsym are not usedRich Felker2012-10-041-11/+0
* beginnings of full TLS support in shared librariesRich Felker2012-10-041-0/+10
* partial TLS support for dynamic-linked programsRich Felker2012-10-041-22/+72
* TLS (GNU/C11 thread-local storage) support for static-linked programsRich Felker2012-10-041-0/+10
* more close-on-exec fixes, mostly using new "e" flag to fopenRich Felker2012-09-291-1/+1
* fix some more O_CLOEXEC/SOCK_CLOEXEC issuesRich Felker2012-09-291-2/+2
* use restrict everywhere it's required by c99 and/or posix 2008Rich Felker2012-09-061-2/+2
* fix bug caused by main app & libc having map set; cannot free themRich Felker2012-08-271-1/+1
* dladdr support for dynamic linker (nonstandard extension)Rich Felker2012-08-261-0/+86
* fix bug in gnu hash lookup on dlsym(handle, name) lookupsRich Felker2012-08-251-1/+1
* clean up search_vec usage for vdsoRich Felker2012-08-251-2/+2
* use new search_vec function to find vdso in dynamic linkerRich Felker2012-08-251-4/+2
* ensure canary is setup if stack-prot libs are dlopen'd into non-ssp appRich Felker2012-08-251-1/+4
* add gnu hash support in the dynamic linkerRich Felker2012-08-251-12/+85
* make dynamic linker report all failures before exitingRich Felker2012-08-181-2/+6
* fix bug dlsym bug that slipped in during dynamic linker cleanupRich Felker2012-08-071-1/+1
* more changes that were lost when committing mips dynamic linkerRich Felker2012-08-051-0/+4
* fix change lost in the process of integrating mips dynamic linkerRich Felker2012-08-051-2/+2
* mips dynamic linker supportRich Felker2012-08-051-0/+3
* more cleanup of dynamic linker internalsRich Felker2012-08-051-8/+9
* more dynamic linker internals cleanupRich Felker2012-08-051-6/+6
* dynamic linker internals cleanupRich Felker2012-08-051-5/+7
* make dynamic linker tell the debugger its own pathnameRich Felker2012-07-131-0/+5
* make dynamic linker depend on -DSHARED not -fPICRich Felker2012-07-111-1/+1
* fix lots of breakage on dlopen, mostly with explicit pathnamesRich Felker2012-07-111-14/+21
* fix dlsym RTLD_NEXT supportRich Felker2012-07-071-1/+3
* fix char signedness bug (arm-specific) in dynamic linkerRich Felker2012-06-091-1/+1
* treat failure of mprotect in map_library as a fatal load failureRich Felker2012-06-061-9/+9
* add ldd and main program loading support to dynamic linkerRich Felker2012-05-271-21/+68
* fix error reporting for dlsym with global symbolsRich Felker2012-05-041-1/+2
* overhaul SSP support to use a real canaryRich Felker2012-05-031-4/+3
* gdb shared library debugging supportRich Felker2012-04-251-5/+32