Age | Commit message (Expand) | Author |
2024-04-05 | ld.so should stop calling msyscall(2), since it is fully neutered and | Theo de Raadt |
2024-01-17 | very ugly whitespaces | Theo de Raadt |
2024-01-16 | Read PT_OPENBSD_SYSCALLS in libc.so, and convert it to a table for | Theo de Raadt |
2023-12-19 | whitespaces | Theo de Raadt |
2023-08-15 | Skip the _dl_msyscall() invocation if tracing library loading. | Philip Guenther |
2023-07-12 | validate alignment of ELF program headers | Jasper Lievisse Adriaanse |
2023-01-29 | Accumulate intermediate imutables locally before applying | Greg Steuck |
2022-12-04 | The next step for mimmutable(). ld.so figures out what regions of memory | Theo de Raadt |
2022-11-07 | dtors were broken by trying to reuse DF_1_NODELETE to hint that this | Theo de Raadt |
2022-08-20 | Support RTLD_NOLOAD in ld.so. From guenther@. OK jca@ guenther@ | Stuart Henderson |
2022-01-08 | Prep .c files for removing the #includes from */archdep.h | Philip Guenther |
2021-03-16 | On i386 don't attempt to map shared libraries in low memory when | Kurt Miller |
2019-12-09 | When loading a library, mmap(2) may fail. Then everything gets | Alexander Bluhm |
2019-12-09 | print addresses upon msyscall failure, for now | Theo de Raadt |
2019-11-30 | Sigh, fix i386 msyscall() case to permission the correct address range. | Theo de Raadt |
2019-11-29 | Repurpose the "syscalls must be on a writeable page" mechanism to | Theo de Raadt |
2019-10-04 | Convert the child_list member from a linked list to a vector. | Philip Guenther |
2019-01-25 | On i386, ensure that the first PT_LOAD segment is below the W^X | Kurt Miller |
2017-12-08 | Everyone knows this as ld.so, nor by the ancient name rtld. | Theo de Raadt |
2017-01-24 | On fatal errors, kill ourselves with thrkill(0,9,NULL) instead of | Philip Guenther |
2016-08-12 | the slimmed down random functions inside ld.so are strict clones of the | Theo de Raadt |
2016-08-08 | Look for a PT_GNU_RELRO section per object and, if present, mprotect that | Philip Guenther |
2016-07-04 | Remove prebind support: binding to symbol table indices is too fragile | Philip Guenther |
2016-05-07 | Use a Thread Information Block in both single and multi-threaded programs. | Philip Guenther |
2016-03-20 | Export environ and __progname, making the latter a copy of just the filename | Philip Guenther |
2015-12-22 | assign pointers to NULL rather than 0 | mmcc |
2015-11-06 | Fix unloading of load groups when the last reference wasn't on the | Philip Guenther |
2015-01-22 | delete annoying white space that annoy | Theo de Raadt |
2015-01-16 | <sys/param.h> to <limits.h> conversion. Verified binaries | Theo de Raadt |
2014-07-10 | check all memory allocations; ok miod@ guenther@ | Otto Moerbeek |
2014-07-09 | Use O_CLOEXEC to make sure fork+exec in a threaded process can't | Philip Guenther |
2014-06-21 | Move to a non-zeroing _dl_malloc, a _dl_calloc and _dl_reallocarry and | Otto Moerbeek |
2012-08-20 | Add support for .openbsd.randomdata sections and PT_OPENBSD_RANDOMIZE | Matthew Dempsky |
2012-07-21 | Add a new mmap(2) flag __MAP_NOREMAP for use with MAP_FIXED to | Matthew Dempsky |
2012-06-12 | Fix loaded object sod matching: when we load libfoo.so.X.Y into | Matthew Dempsky |
2012-05-08 | Refuse to load ELF objects that contain a PT_TLS program header. | Joel Sing |
2012-01-09 | Don't mmap 0 byte areas, treat them as a noop instead. | Ariane van der Steldt |
2011-11-28 | Add support for getting some flags from DT_FLAGS_1: new flags | Philip Guenthe |
2010-11-16 | Fix error message when ld.so ends up loading a different than expected | Dale Rahn |
2010-10-25 | Search loaded libs first and add support for SONAME matching. ok drahn@ | Kurt Miller |
2008-10-02 | Fix mmap() error checking to be correct 64-bit addresses. Consistently | Kurt Miller |
2008-05-05 | Constantly fill in the program header pointer and count in elf_object_t | Kurt Miller |
2006-05-10 | pretty this up; ok drahn | Theo de Raadt |
2006-05-03 | prebind - how to prelink a binary without throwing security out the window | Dale Rahn |
2005-11-09 | add RTLD_NOW support to dlopen and propogate -z now to dep libs. | Kurt Miller |
2005-10-12 | Split grpsym_list creation away from child_list creation and change | Kurt Miller |
2005-10-09 | introduce object ref count macros (suggested by dale). no functional | Kurt Miller |
2005-10-06 | separate load group references from dep lib child/dload lists. move load | Kurt Miller |
2005-10-03 | refcount corrections: count common dep libs once and centralize dep lib | Kurt Miller |
2005-10-01 | handle references to load groups caused by dlopen()ing of depenant | Dale Rahn |