summaryrefslogtreecommitdiff
path: root/src/ldso
AgeCommit message (Expand)AuthorFilesLines
2012-06-09fix char signedness bug (arm-specific) in dynamic linkerRich Felker1-1/+1
2012-06-06treat failure of mprotect in map_library as a fatal load failureRich Felker1-9/+9
2012-05-27add ldd and main program loading support to dynamic linkerRich Felker4-21/+89
2012-05-27cleanup dynamic linker start code cruftRich Felker3-13/+6
2012-05-04fix error reporting for dlsym with global symbolsRich Felker1-1/+2
2012-05-03overhaul SSP support to use a real canaryRich Felker1-4/+3
2012-04-25gdb shared library debugging supportRich Felker1-5/+32
2012-04-24first attempt at enabling stack protector supportRich Felker1-0/+7
2012-04-23make dlerror produce informative resultsRich Felker1-4/+15
2012-03-23make dlerror conform to posixRich Felker1-6/+16
2012-02-07protect against cancellation in dlopenRich Felker1-2/+5
2012-02-07reduce some wasted space in dso structureRich Felker1-3/+3
2012-02-06run ctors/dtors for shared objects loaded with dlopenRich Felker1-0/+1
2012-02-06add support for init/finit (constructors and destructors)Rich Felker1-0/+19
2012-02-03include dummied-out dlopen and dlsym functions for static binariesRich Felker1-1/+10
2012-01-23fix broken copy relocations from dynamic linker cleanupRich Felker1-1/+4
2012-01-23dynamic linker support for PIE binaries (position-independent main program)Rich Felker1-3/+6
2012-01-23cleanup dynamic linker, removing some code duplicationRich Felker1-80/+66
2012-01-20fix dynamic linker not to depend on DYNAMIC ptr in 0th entry of GOTRich Felker1-3/+12
2012-01-17fix char signedness bug in dynlinker hash functionRich Felker1-1/+2
2011-10-01dlsym entry point for armRich Felker1-0/+6
2011-10-01dynamic linker entry point for armRich Felker1-0/+14
2011-09-18disable dynamic linking/loading code in static libc builds, for nowRich Felker1-0/+2
2011-09-03fix RTLD_NEXT on x86_64Rich Felker1-1/+1
2011-08-16ldso: move the suid/secure check code closer to env/auxv processingRich Felker1-7/+7
2011-08-16honor AT_SECURE aux vector flagRich Felker1-2/+2
2011-08-16RTLD_NEXT supportRich Felker4-3/+32
2011-08-16LD_PRELOAD supportRich Felker1-0/+20
2011-07-25when resolving symbols with only weak defs, use first def, not last defRich Felker1-0/+1
2011-07-24fix resolution of weak symbols (hopefully right now) and vdsoRich Felker1-3/+9
2011-07-24load vdso, if present, into the dso listRich Felker1-2/+31
2011-07-24simplify dynamic linker startupRich Felker1-23/+17
2011-07-01fix dlopen UB due to longjmp/volatile rules violationRich Felker1-1/+1
2011-06-30simple rpath support (no token expansion yet) for dynamic linkerRich Felker1-2/+8
2011-06-29textrel support, cheap and uglyRich Felker1-0/+5
2011-06-28reclaim the memory wasted by dynamic linking for use by mallocRich Felker1-0/+39
2011-06-28use load address from elf header if possibleRich Felker1-1/+1
2011-06-28make dynamic linker relocate the main program image last, after all libsRich Felker1-0/+1
2011-06-26fix stale pointer issue in dynamic linker with dlopenRich Felker1-0/+1
2011-06-26don't leave the lock held on dlopen failure..Rich Felker1-2/+2
2011-06-26add RTLD_DEFAULT supportRich Felker1-1/+2
2011-06-26in dlopen: don't use null pointerRich Felker1-3/+3
2011-06-26fix resolving symbols in objects loaded in RTLD_LOCAL modeRich Felker1-0/+11
2011-06-26experimental dlopen/dlsym and dynlink changes needed to support themRich Felker1-8/+125
2011-06-26error handling in dynamic linkingRich Felker1-2/+19
2011-06-25fix some symbol resolution issues in dynamic linkerRich Felker1-4/+4
2011-06-25handle library paths better (ignore empty path components, etc.)Rich Felker1-3/+5
2011-06-25fix possible (questionable) strict aliasing violations and ptr arithRich Felker1-3/+3
2011-06-25proper path searching for dynamic linkerRich Felker1-14/+38
2011-06-25discard dso descriptors after performing relocationsRich Felker1-0/+12