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