about summary refs log tree commit diff
path: root/src/ldso
Commit message (Expand)AuthorAgeFilesLines
* add ldd and main program loading support to dynamic linkerRich Felker2012-05-274-21/+89
* cleanup dynamic linker start code cruftRich Felker2012-05-273-13/+6
* 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
* first attempt at enabling stack protector supportRich Felker2012-04-241-0/+7
* make dlerror produce informative resultsRich Felker2012-04-231-4/+15
* make dlerror conform to posixRich Felker2012-03-231-6/+16
* protect against cancellation in dlopenRich Felker2012-02-071-2/+5
* reduce some wasted space in dso structureRich Felker2012-02-071-3/+3
* run ctors/dtors for shared objects loaded with dlopenRich Felker2012-02-061-0/+1
* add support for init/finit (constructors and destructors)Rich Felker2012-02-061-0/+19
* include dummied-out dlopen and dlsym functions for static binariesRich Felker2012-02-031-1/+10
* fix broken copy relocations from dynamic linker cleanupRich Felker2012-01-231-1/+4
* dynamic linker support for PIE binaries (position-independent main program)Rich Felker2012-01-231-3/+6
* cleanup dynamic linker, removing some code duplicationRich Felker2012-01-231-80/+66
* fix dynamic linker not to depend on DYNAMIC ptr in 0th entry of GOTRich Felker2012-01-201-3/+12
* fix char signedness bug in dynlinker hash functionRich Felker2012-01-171-1/+2
* dlsym entry point for armRich Felker2011-10-011-0/+6
* dynamic linker entry point for armRich Felker2011-10-011-0/+14
* disable dynamic linking/loading code in static libc builds, for nowRich Felker2011-09-181-0/+2
* fix RTLD_NEXT on x86_64Rich Felker2011-09-031-1/+1
* ldso: move the suid/secure check code closer to env/auxv processingRich Felker2011-08-161-7/+7
* honor AT_SECURE aux vector flagRich Felker2011-08-161-2/+2
* RTLD_NEXT supportRich Felker2011-08-164-3/+32
* LD_PRELOAD supportRich Felker2011-08-161-0/+20
* when resolving symbols with only weak defs, use first def, not last defRich Felker2011-07-251-0/+1
* fix resolution of weak symbols (hopefully right now) and vdsoRich Felker2011-07-241-3/+9
* load vdso, if present, into the dso listRich Felker2011-07-241-2/+31
* simplify dynamic linker startupRich Felker2011-07-241-23/+17
* fix dlopen UB due to longjmp/volatile rules violationRich Felker2011-07-011-1/+1
* simple rpath support (no token expansion yet) for dynamic linkerRich Felker2011-06-301-2/+8
* textrel support, cheap and uglyRich Felker2011-06-291-0/+5
* reclaim the memory wasted by dynamic linking for use by mallocRich Felker2011-06-281-0/+39
* use load address from elf header if possibleRich Felker2011-06-281-1/+1
* make dynamic linker relocate the main program image last, after all libsRich Felker2011-06-281-0/+1
* fix stale pointer issue in dynamic linker with dlopenRich Felker2011-06-261-0/+1
* don't leave the lock held on dlopen failure..Rich Felker2011-06-261-2/+2
* add RTLD_DEFAULT supportRich Felker2011-06-261-1/+2
* in dlopen: don't use null pointerRich Felker2011-06-261-3/+3
* fix resolving symbols in objects loaded in RTLD_LOCAL modeRich Felker2011-06-261-0/+11
* experimental dlopen/dlsym and dynlink changes needed to support themRich Felker2011-06-261-8/+125
* error handling in dynamic linkingRich Felker2011-06-261-2/+19
* fix some symbol resolution issues in dynamic linkerRich Felker2011-06-251-4/+4
* handle library paths better (ignore empty path components, etc.)Rich Felker2011-06-251-3/+5
* fix possible (questionable) strict aliasing violations and ptr arithRich Felker2011-06-251-3/+3
* proper path searching for dynamic linkerRich Felker2011-06-251-14/+38
* discard dso descriptors after performing relocationsRich Felker2011-06-251-0/+12
* keep track of which dsos have been relocatedRich Felker2011-06-251-0/+1
* prepare support for LD_LIBRARY_PATH (checking suid/sgid safety)Rich Felker2011-06-231-0/+6