about summary refs log tree commit diff
path: root/sysdeps/x86_64/fpu/svml_d_log2_core.S
diff options
context:
space:
mode:
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>2024-07-25 15:41:44 -0300
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2024-07-30 08:54:23 -0300
commitf6ba993e0cda0ca5554fd47b00e6a87be5fdf05e (patch)
tree037d48e49be508168157ed6377136814c2a208bc /sysdeps/x86_64/fpu/svml_d_log2_core.S
parent28f8cee64a3223636d15c78f69432503d8ef1c22 (diff)
downloadglibc-master.tar.gz
glibc-master.tar.xz
glibc-master.zip
stdlib: Allow concurrent exit (BZ 31997) HEAD master
Even if C/POSIX standard states that exit is not formally thread-unsafe,
calling it more than once is UB.  The glibc already supports
it for the single-thread, and both elf/nodelete2.c and tst-rseq-disable.c
call exit from a DSO destructor (which is called by _dl_fini, registered
at program startup with __cxa_atexit).

However, there are still race issues when it is called more than once
concurrently by multiple threads.  A recent Rust PR triggered this
issue [1], which resulted in an Austin Group ask for clarification [2].
Besides it, there is a discussion to make concurrent calling not UB [3],
wtih a defined semantic where any remaining callers block until the first
call to exit has finished (reentrant calls, leaving through longjmp, and
exceptions are still undefined).

For glibc, at least reentrant calls are required to be supported to avoid
changing the current behaviour.  This requires locking using a recursive
lock, where any exit called by atexit() handlers resumes at the point of
the current handler (thus avoiding calling the current handle multiple
times).

Checked on x86_64-linux-gnu and aarch64-linux-gnu.

[1] https://github.com/rust-lang/rust/issues/126600
[2] https://austingroupbugs.net/view.php?id=1845
[3] https://www.openwall.com/lists/libc-coord/2024/07/24/4
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'sysdeps/x86_64/fpu/svml_d_log2_core.S')
0 files changed, 0 insertions, 0 deletions