1. a60b9e0 fix tls offsets when p_vaddr%p_align != 0 on TLS_ABOVE_TP targets by Szabolcs Nagy · 5 years ago
  2. 6104dae fix static tls offsets of shared libs on TLS_ABOVE_TP targets by Szabolcs Nagy · 5 years ago
  3. f450c15 remove unused struct dso members from dynlink.c by Fangrui Song · 5 years ago
  4. 22e5bbd overhaul i386 syscall mechanism not to depend on external asm source by Rich Felker · 5 years ago
  5. 7784680 fix the use of syscall result in dl_mmap by Ilya Matveychikov · 6 years ago
  6. 086a12b delete a redundant if in dynamic linker ctor execution loop by Ray · 6 years ago
  7. 50cd023 fix invalid-/double-/use-after-free in new dlopen ctor execution by Rich Felker · 6 years ago
  8. 43e7efb avoid malloc of ctor queue for programs with no external deps by Rich Felker · 6 years ago
  9. f034f14 avoid malloc of deps arrays for ldso and vdso by Rich Felker · 6 years ago
  10. e612d09 avoid malloc of deps array for programs with no external deps by Rich Felker · 6 years ago
  11. 2f1f51a fix malloc misuse for startup ctor queue, breakage on fdpic archs by Rich Felker · 6 years ago
  12. 8e43b56 synchronize shared library dtor exec against concurrent loads/ctors by Rich Felker · 6 years ago
  13. 188759b overhaul shared library ctor execution for dependency order, concurrency by Rich Felker · 6 years ago
  14. 8820736 record preloaded libraries as direct pseudo-dependencies of main app by Rich Felker · 6 years ago
  15. 0c5c8f5 fix unsafety of new ldso dep tracking in presence of malloc replacement by Rich Felker · 6 years ago
  16. 4035556 fix and overhaul dlsym depedency order, always record direct deps by Rich Felker · 6 years ago
  17. 71db5df fix crash/misbehavior from oob read in new dynamic tls installation by Rich Felker · 6 years ago
  18. 6516282 fix crash in new dynamic tls installation when last dep lacks tls by Rich Felker · 6 years ago
  19. ba18c1e add membarrier syscall wrapper, refactor dynamic tls install to use it by Rich Felker · 6 years ago
  20. 609dd57 fix loop logic cruft in dynamic tls installation by Rich Felker · 6 years ago
  21. 9d44b64 install dynamic tls synchronously at dlopen, streamline access by Rich Felker · 6 years ago
  22. 1c84c99 add new stage 2b to dynamic linker bootstrap for thread pointer by Rich Felker · 6 years ago
  23. b36c37f fix misleading placement of statement on same line as for loop in ldso by Rich Felker · 6 years ago
  24. 37cd167 fix dlsym of thread-local symbols on archs with DTP_OFFSET!=0 by Rich Felker · 6 years ago
  25. b6d701a combine arch ABI's DTP_OFFSET into DTV pointers by Rich Felker · 6 years ago
  26. 0beb9df add TLSDESC support for 32-bit arm by Rich Felker · 6 years ago
  27. 7b3348a support setting of default thread stack size via PT_GNU_STACK header by Rich Felker · 6 years ago
  28. 13d1afa overhaul internally-public declarations using wrapper headers by Rich Felker · 6 years ago
  29. 1bbe166 move tlsdesc and internal dl function declarations to dynlink.h by Rich Felker · 6 years ago
  30. 91c6a18 move declarations of tls setup/access functions to pthread_impl.h by Rich Felker · 6 years ago
  31. 55a1c9c move declarations for malloc internals to malloc_impl.h by Rich Felker · 6 years ago
  32. 18bf082 improve machinery for ldso to report libc version by Rich Felker · 6 years ago
  33. 9b95fd0 define and use internal macros for hidden visibility, weak refs by Rich Felker · 6 years ago
  34. 5c2f46a block dlopen of libraries with initial-exec refs to dynamic TLS by Rich Felker · 6 years ago
  35. 5fdccbc fix inefficient choice of tlsdesc function due to off-by-one by Rich Felker · 6 years ago
  36. 193338e avoid spurious dso matches by dladdr outside bounds of load segments by Rich Felker · 6 years ago
  37. f6870d6 make dladdr consistently produce the first symbol in presence of aliases by Rich Felker · 6 years ago
  38. c8b49b2 fix symtab-order-dependent spurious matches in dladdr by Rich Felker · 6 years ago
  39. 8b8fb7f correctly handle non-matching symbols in dladdr by Rich Felker · 6 years ago
  40. e829695 avoid using undefined pointer arithmetic in dladdr by Rich Felker · 6 years ago
  41. 68a5a23 fix dynamic linker mapping/clearing bss in first/only LOAD segment by Rich Felker · 6 years ago
  42. 610c5a8 fix TLS layout of TLS variant I when there is a gap above TP by Szabolcs Nagy · 6 years ago
  43. b4b1e10 reintroduce hardening against partially-replaced allocator by Rich Felker · 6 years ago
  44. d610c14 enable reclaim_gaps for fdpic by Rich Felker · 6 years ago
  45. ce7ae11 ldso, malloc: implement reclaim_gaps via __malloc_donate by Alexander Monakov · 6 years ago
  46. 376b3c5 disallow non-absolute rpath $ORIGIN for suid/sgid/AT_SECURE processes by Rich Felker · 7 years ago
  47. f0b235c honor rpath $ORIGIN for ldd/ldso command with program in working dir by Rich Felker · 7 years ago
  48. b3ae7be adjust dladdr dli_fbase definition to match other implementations by Rich Felker · 7 years ago
  49. a71b46c fix malloc state corruption when ldso rejects loading a second libc by Rich Felker · 7 years ago
  50. f3055e0 allow specifying argv[0] when invoking a program via ldso command by Rich Felker · 7 years ago
  51. 43c423a fix regression in dlopen promotion from RTLD_LOCAL to RTLD_GLOBAL by Rich Felker · 7 years ago
  52. 66b53cf ldso: avoid spurious & possible erroneous work for libs with no deps by Rich Felker · 7 years ago
  53. 0c53178 fix dlopen/dlsym regression opening libs already loaded at startup by Rich Felker · 7 years ago
  54. a393d5c precalculate gnu hash rather than doing it lazily in find_sym inner loop by Rich Felker · 8 years ago
  55. cb52539 remove unused refcnt field for shared libraries by Rich Felker · 8 years ago
  56. c49d3c8 avoid loading of multiple libc versions via explicit pathname by Rich Felker · 8 years ago
  57. 6476b81 emulate lazy relocation as deferrable relocation by Rich Felker · 8 years ago
  58. 4823b13 reorder addend handling before symbol lookup in relocation code by Rich Felker · 8 years ago
  59. 4ff234f rework ldso handling of global symbol table for consistency by Rich Felker · 8 years ago
  60. c9783e4 treat STB_WEAK and STB_GNU_UNIQUE like STB_GLOBAL in find_sym by Szabolcs Nagy · 8 years ago
  61. 1f53e7d fix crashes in x32 __tls_get_addr by rofl0r · 8 years ago
  62. 27b3fd6 fix crash from corrupted tls module list after failed dlopen by Rich Felker · 8 years ago
  63. 5448289 treat null vdso base same as missing by Bobby Bingham · 8 years ago
  64. b418ea1 generalize ELF hash table types not to assume 32-bit entries by Rich Felker · 8 years ago
  65. 5ffe515 fix ldso reserved library name handling by Szabolcs Nagy · 8 years ago
  66. 86e8cc0 fix accidental global static pointer in ldso by Szabolcs Nagy · 8 years ago
  67. 71392a9 generalize mips-specific reloc code not to hard-code sym/type encoding by Rich Felker · 9 years ago
  68. 2d0290d fix regression in SH/FDPIC dynamic linker by Rich Felker · 9 years ago
  69. c18d05f ldso: fix GDB dynamic linker info on MIPS by Felix Fietkau · 9 years ago
  70. 140ad50 fix regression in dynamic-linked tls when both main app & libs have tls by Rich Felker · 9 years ago
  71. 5552ce5 move dynamic linker to its own top-level directory, ldso by Rich Felker · 9 years ago