about summary refs log tree commit diff
path: root/src/ldso/dynlink.c
Commit message (Expand)AuthorAgeFilesLines
* make dynamic linker accept : or \n as path separatorRich Felker2013-04-201-8/+8
* fix uninitialized map_len being used in munmap failure paths in load_libraryRich Felker2013-02-021-3/+2
* add support for RTLD_NOLOAD to dlopenRich Felker2013-01-231-3/+7
* fix regression in dlsym: rejection of special RTLD_* handles as invalidRich Felker2013-01-231-1/+2
* fix warning building dynlink.c stub for static libcRich Felker2013-01-161-2/+2
* fix bug in dladdr that prevented resolving addresses in the PLTRich Felker2013-01-161-1/+1
* check for invalid handles in dlsym/dlcloseRich Felker2013-01-101-1/+17
* fix breakage in ldd (failure to print library load address)Rich Felker2012-12-151-2/+2
* fix ordering of shared library ctors with respect to libc initRich Felker2012-11-301-3/+6
* eliminate gdb complaints about missing linux-gate.so.1Rich Felker2012-11-251-1/+2
* fix typo in dynamic linker path file loading codeRich Felker2012-11-171-1/+1
* support ldso path files without final newlineRich Felker2012-11-091-2/+5
* change ldso path file logic to replace rather than add to search pathRich Felker2012-11-081-2/+2
* remove one unnecessary static var from dynamic linkerRich Felker2012-11-011-2/+2
* fix more unused variable warningsRich Felker2012-11-011-3/+2
* 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