implement PT_GNU_RELRO support
[musl] / src / ldso / dynlink.c
2014-03-25 Timo Teräsimplement PT_GNU_RELRO support
2014-03-24 Rich Felkeralways initialize thread pointer at program start
2014-01-21 Rich Felkerfix crash in dynamic linker when certain copy relocatio...
2014-01-07 Rich Felkerconst-qualify the address argument to dladdr
2013-12-01 Rich Felkeradd infrastructure to record and report the version...
2013-11-25 Szabolcs Nagyremove duplicate includes from dynlink.c, strfmon.c...
2013-10-04 Rich Felkerfix uninitialized variable in dladdr
2013-09-15 Szabolcs Nagysupport configurable page size on mips, powerpc and...
2013-09-09 Rich Felkerdo not use default when dynamic linker fails to open...
2013-08-24 Rich Felkermake dlopen honor the rpath of the main program
2013-08-23 Rich Felkerfix bugs in $ORIGIN handling
2013-08-23 Rich Felkeruse AT_EXECFN, if available, for dynamic linker to...
2013-08-23 Rich Felkeradd rpath $ORIGIN processing to dynamic linker
2013-08-23 Rich Felkeradd recursive rpath support to dynamic linker
2013-08-08 Rich Felkerwork around libraries with versioned symbols in dynamic...
2013-08-03 Rich Felkeradd system for resetting TLS to initial values
2013-08-02 Rich Felkermove RPATH search after LD_LIBRARY_PATH search
2013-08-02 Rich Felkerif map_library has allocated a buffer for phdrs, free...
2013-08-02 Rich Felkerimprove error handling in map_library and support long...
2013-08-02 Rich Felkerfix uninitialized dyn variable in map_library
2013-07-31 Rich Felkerfix theoretical out-of-bound access in dynamic linker
2013-07-31 Rich Felkerprevent passing PT_INTERP name to dlopen from double...
2013-07-31 Rich Felkeradd some sanity checks in dynamic loader code
2013-07-31 Rich Felkerfix bug where read error was treated as success reading...
2013-07-31 Rich Felkerdon't call null pointer if DT_INIT/DT_FINI are null
2013-07-28 Rich Felkerfix indention-with-spaces
2013-07-26 Rich Felkermake ldd report the libc/dynamic linker itself
2013-07-26 Rich Felkerfix computation of entry point and main app phdrs when...
2013-07-24 Rich Felkersupport STB_GNU_UNIQUE symbol bindings in dynamic linker
2013-07-24 Rich Felkermove the dynamic linker's jmp_buf from static to automa...
2013-07-22 Rich Felkerdisable legacy init/fini processing on ARM
2013-07-21 Rich Felkeradd support for init/fini array in main program, and...
2013-07-21 Rich Felkerfix order of fini_array execution for shared libs
2013-07-20 Rich Felkeradd support for init_array/fini_array ctors/dtors to...
2013-07-18 Rich Felkermake the dynamic linker find its path file relative...
2013-07-10 Rich Felkerfix invalid library phdr pointers passed to callback...
2013-06-29 Rich Felkerimplement minimal dlinfo function
2013-06-29 Rich Felkerfix missing synchronization in calls from dynamic linke...
2013-06-26 Rich Felkerremove useless conditional before free from dynamic...
2013-06-26 Rich Felkerfix dynamic linker handling of empty path file or error...
2013-06-26 Rich Felkermake newline-delimited dynamic linker path file actuall...
2013-06-03 Rich Felkerensure that thread dtv pointer is never null to optimiz...
2013-04-20 Rich Felkermake dynamic linker accept : or \n as path separator
2013-02-02 Rich Felkerfix uninitialized map_len being used in munmap failure...
2013-01-24 Rich Felkeradd support for RTLD_NOLOAD to dlopen
2013-01-24 Rich Felkerfix regression in dlsym: rejection of special RTLD_...
2013-01-16 Rich Felkerfix warning building dynlink.c stub for static libc
2013-01-16 Rich Felkerfix bug in dladdr that prevented resolving addresses...
2013-01-14 Rich FelkerMerge remote-tracking branch 'nsz/math'
2013-01-10 Rich Felkercheck for invalid handles in dlsym/dlclose
2012-12-16 Rich Felkerfix breakage in ldd (failure to print library load...
2012-11-30 Rich Felkerfix ordering of shared library ctors with respect to...
2012-11-26 Rich Felkereliminate gdb complaints about missing linux-gate.so.1
2012-11-18 Rich FelkerMerge remote-tracking branch 'nsz/math'
2012-11-18 Rich Felkerfix typo in dynamic linker path file loading code
2012-11-14 Rich FelkerMerge remote-tracking branch 'ppc-port/ppc-squashed'
2012-11-09 Rich Felkersupport ldso path files without final newline
2012-11-09 Rich Felkerchange ldso path file logic to replace rather than...
2012-11-02 Rich Felkerremove one unnecessary static var from dynamic linker
2012-11-02 Rich Felkerfix more unused variable warnings
2012-11-01 Rich Felkeradd dl_iterate_phdr interface
2012-10-20 Rich Felkersupport looking up thread-local objects with dlsym
2012-10-20 Rich Felkerfix breakage in dlsym for looking up RTLD_DEFAULT,...
2012-10-15 Rich Felkeradd support for TLS variant I, presently needed for...
2012-10-14 Rich Felkerfix main program TLS alignment for dynamic-linked programs
2012-10-14 Rich Felkerfix namespace clash (libc) in dynlink.c
2012-10-14 Rich Felkerremove dead code from dynamic linker
2012-10-08 Rich Felkerclean up and refactor program initialization
2012-10-08 Rich Felkerfix breakage due to initializing thread pointer when...
2012-10-07 Rich Felkermake new TLS setup block even implementation-internals...
2012-10-06 Rich Felkerdon't crash if TLS library is loaded into process with...
2012-10-06 Rich Felkerfix symbol acceptance/rejection rules for TLS
2012-10-06 Rich FelkerTLS fixes, mainly alignment handling
2012-10-05 Rich Felkerfix/improve shared library ctor/dtor handling, allow...
2012-10-05 Rich Felkersmall dynamic linker module search fix
2012-10-05 Rich Felkersupport for TLS in dynamic-loaded (dlopen) modules
2012-10-05 Rich Felkerfix race condition in dlopen
2012-10-05 Rich Felkerdynamic-linked TLS support for everything but dlopen...
2012-10-05 Rich Felkerremove freeing of dynamic linker data when dlopen/dlsym...
2012-10-05 Rich Felkerbeginnings of full TLS support in shared libraries
2012-10-05 Rich Felkerpartial TLS support for dynamic-linked programs
2012-10-04 Rich FelkerTLS (GNU/C11 thread-local storage) support for static...
2012-09-29 Rich Felkermore close-on-exec fixes, mostly using new "e" flag...
2012-09-29 Rich Felkerfix some more O_CLOEXEC/SOCK_CLOEXEC issues
2012-09-07 Rich Felkeruse restrict everywhere it's required by c99 and/or...
2012-08-27 Rich Felkerfix bug caused by main app & libc having map set; canno...
2012-08-27 Rich Felkerdladdr support for dynamic linker (nonstandard extension)
2012-08-25 Rich Felkerfix bug in gnu hash lookup on dlsym(handle, name) lookups
2012-08-25 Rich Felkerclean up search_vec usage for vdso
2012-08-25 Rich Felkeruse new search_vec function to find vdso in dynamic...
2012-08-25 Rich Felkerensure canary is setup if stack-prot libs are dlopen...
2012-08-25 Rich Felkeradd gnu hash support in the dynamic linker
2012-08-18 Rich Felkermake dynamic linker report all failures before exiting
2012-08-07 Rich Felkerfix bug dlsym bug that slipped in during dynamic linker...
2012-08-05 Rich Felkermore changes that were lost when committing mips dynami...
2012-08-05 Rich Felkerfix change lost in the process of integrating mips...
2012-08-05 Rich Felkermips dynamic linker support
2012-08-05 Rich Felkermore cleanup of dynamic linker internals
2012-08-05 Rich Felkermore dynamic linker internals cleanup
2012-08-05 Rich Felkerdynamic linker internals cleanup
next