about summary refs log tree commit diff
path: root/sysdeps/ieee754/ldbl-128ibm/s_daddl.c
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2024-08-01 23:31:30 +0200
committerFlorian Weimer <fweimer@redhat.com>2024-08-05 18:26:52 +0200
commit5097cd344fd243fb8deb6dec96e8073753f962f9 (patch)
tree72b9f31869f607d91fe11b3a97489d2b4ee5f396 /sysdeps/ieee754/ldbl-128ibm/s_daddl.c
parentfe06fb313bddf7e4530056897d4a706606e49377 (diff)
downloadglibc-master.tar.gz
glibc-master.tar.xz
glibc-master.zip
elf: Avoid re-initializing already allocated TLS in dlopen (bug 31717) HEAD master
The old code used l_init_called as an indicator for whether TLS
initialization was complete.  However, it is possible that
TLS for an object is initialized, written to, and then dlopen
for this object is called again, and l_init_called is not true at
this point.  Previously, this resulted in TLS being initialized
twice, discarding any interim writes (technically introducing a
use-after-free bug even).

This commit introduces an explicit per-object flag, l_tls_in_slotinfo.
It indicates whether _dl_add_to_slotinfo has been called for this
object.  This flag is used to avoid double-initialization of TLS.
In update_tls_slotinfo, the first_static_tls micro-optimization
is removed because preserving the initalization flag for subsequent
use by the second loop for static TLS is a bit complicated, and
another per-object flag does not seem to be worth it.  Furthermore,
the l_init_called flag is dropped from the second loop (for static
TLS initialization) because l_need_tls_init on its own prevents
double-initialization.

The remaining l_init_called usage in resize_scopes and update_scopes
is just an optimization due to the use of scope_has_map, so it is
not changed in this commit.

The isupper check ensures that libc.so.6 is TLS is not reverted.
Such a revert happens if l_need_tls_init is not cleared in
_dl_allocate_tls_init for the main_thread case, now that
l_init_called is not checked anymore in update_tls_slotinfo
in elf/dl-open.c.

Reported-by: Jonathon Anderson <janderson@rice.edu>
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'sysdeps/ieee754/ldbl-128ibm/s_daddl.c')
0 files changed, 0 insertions, 0 deletions