summaryrefslogtreecommitdiff
path: root/src/ldso
AgeCommit message (Expand)AuthorLines
2012-09-06use restrict everywhere it's required by c99 and/or posix 2008Rich Felker-4/+4
2012-08-27fix bug caused by main app & libc having map set; cannot free themRich Felker-1/+1
2012-08-26dladdr support for dynamic linker (nonstandard extension)Rich Felker-0/+95
2012-08-25fix bug in gnu hash lookup on dlsym(handle, name) lookupsRich Felker-1/+1
2012-08-25clean up search_vec usage for vdsoRich Felker-2/+2
2012-08-25use new search_vec function to find vdso in dynamic linkerRich Felker-4/+2
2012-08-25ensure canary is setup if stack-prot libs are dlopen'd into non-ssp appRich Felker-1/+4
2012-08-25add gnu hash support in the dynamic linkerRich Felker-12/+85
2012-08-18make dynamic linker report all failures before exitingRich Felker-2/+6
2012-08-17fix bug computing argc when invoking ld-musl-mips.so.1 progname ...Rich Felker-3/+3
2012-08-07fix bug dlsym bug that slipped in during dynamic linker cleanupRich Felker-1/+1
2012-08-05dlsym RTLD_NEXT support for mipsRich Felker-0/+15
2012-08-05more changes that were lost when committing mips dynamic linkerRich Felker-0/+4
2012-08-05fix change lost in the process of integrating mips dynamic linkerRich Felker-2/+2
2012-08-05mips dynamic linker supportRich Felker-0/+49
2012-08-05more cleanup of dynamic linker internalsRich Felker-8/+9
2012-08-05more dynamic linker internals cleanupRich Felker-6/+6
2012-08-05dynamic linker internals cleanupRich Felker-5/+7
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