diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2024-07-25 15:41:44 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2024-07-30 08:54:23 -0300 |
commit | f6ba993e0cda0ca5554fd47b00e6a87be5fdf05e (patch) | |
tree | 037d48e49be508168157ed6377136814c2a208bc /stdlib/stdc_count_zeros_uc.c | |
parent | 28f8cee64a3223636d15c78f69432503d8ef1c22 (diff) | |
download | glibc-f6ba993e0cda0ca5554fd47b00e6a87be5fdf05e.tar.gz glibc-f6ba993e0cda0ca5554fd47b00e6a87be5fdf05e.tar.xz glibc-f6ba993e0cda0ca5554fd47b00e6a87be5fdf05e.zip |
stdlib: Allow concurrent exit (BZ 31997)
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 'stdlib/stdc_count_zeros_uc.c')
0 files changed, 0 insertions, 0 deletions