]> git.ipfire.org Git - thirdparty/glibc.git/commit
elf: Avoid some free (NULL) calls in _dl_update_slotinfo
authorFlorian Weimer <fweimer@redhat.com>
Mon, 3 Jun 2024 08:49:40 +0000 (10:49 +0200)
committerSunil K Pandey <skpgkp2@gmail.com>
Sat, 11 Jan 2025 16:19:21 +0000 (08:19 -0800)
commitdaa48c814b3746425c57a9b4ea68f299d0e4422e
tree4386a5bcb133701f78c6d9ebb78a97daa4a7c190
parentf7397059447651a98fb7b3c605baa4872bc18f96
elf: Avoid some free (NULL) calls in _dl_update_slotinfo

This has been confirmed to work around some interposed mallocs.  Here
is a discussion of the impact test ust/libc-wrapper/test_libc-wrapper
in lttng-tools:

  New TLS usage in libgcc_s.so.1, compatibility impact
  <https://inbox.sourceware.org/libc-alpha/8734v1ieke.fsf@oldenburg.str.redhat.com/>

Reportedly, this patch also papers over a similar issue when tcmalloc
2.9.1 is not compiled with -ftls-model=initial-exec.  Of course the
goal really should be to compile mallocs with the initial-exec TLS
model, but this commit appears to be a useful interim workaround.

Fixes commit d2123d68275acc0f061e73d5f86ca504e0d5a344 ("elf: Fix slow
tls access after dlopen [BZ #19924]").

Reviewed-by: Carlos O'Donell <carlos@redhat.com>
(cherry picked from commit afe42e935b3ee97bac9a7064157587777259c60e)
elf/dl-tls.c