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