diff options
author | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-04-06 12:24:42 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-04-14 12:48:31 -0300 |
commit | 404656009b459658138ed1bd18f3c6cf3863e6a6 (patch) | |
tree | 3cbfb1da2b0f8e657f72a53abf1c5bf85b8d43c3 /manual | |
parent | 2376944b9e5c0364b9fb473e4d8dabca31b57167 (diff) | |
download | glibc-404656009b459658138ed1bd18f3c6cf3863e6a6.zip glibc-404656009b459658138ed1bd18f3c6cf3863e6a6.tar.gz glibc-404656009b459658138ed1bd18f3c6cf3863e6a6.tar.bz2 |
nptl: Handle spurious EINTR when thread cancellation is disabled (BZ#29029)
Some Linux interfaces never restart after being interrupted by a signal
handler, regardless of the use of SA_RESTART [1]. It means that for
pthread cancellation, if the target thread disables cancellation with
pthread_setcancelstate and calls such interfaces (like poll or select),
it should not see spurious EINTR failures due the internal SIGCANCEL.
However recent changes made pthread_cancel to always sent the internal
signal, regardless of the target thread cancellation status or type.
To fix it, the previous semantic is restored, where the cancel signal
is only sent if the target thread has cancelation enabled in
asynchronous mode.
The cancel state and cancel type is moved back to cancelhandling
and atomic operation are used to synchronize between threads. The
patch essentially revert the following commits:
8c1c0aae20 nptl: Move cancel type out of cancelhandling
2b51742531 nptl: Move cancel state out of cancelhandling
26cfbb7162 nptl: Remove CANCELING_BITMASK
However I changed the atomic operation to follow the internal C11
semantic and removed the MACRO usage, it simplifies a bit the
resulting code (and removes another usage of the old atomic macros).
Checked on x86_64-linux-gnu, i686-linux-gnu, aarch64-linux-gnu,
and powerpc64-linux-gnu.
[1] https://man7.org/linux/man-pages/man7/signal.7.html
Reviewed-by: Florian Weimer <fweimer@redhat.com>
Tested-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'manual')
-rw-r--r-- | manual/process.texi | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/manual/process.texi b/manual/process.texi index 28c9531..9307379 100644 --- a/manual/process.texi +++ b/manual/process.texi @@ -68,8 +68,7 @@ until the subprogram terminates before you can do anything else. @c CLEANUP_HANDLER @ascuplugin @ascuheap @acsmem @c libc_cleanup_region_start @ascuplugin @ascuheap @acsmem @c pthread_cleanup_push_defer @ascuplugin @ascuheap @acsmem -@c __pthread_testcancel @ascuplugin @ascuheap @acsmem -@c CANCEL_ENABLED_AND_CANCELED ok +@c cancel_enabled_and_canceled @ascuplugin @ascuheap @acsmem @c do_cancel @ascuplugin @ascuheap @acsmem @c cancel_handler ok @c kill syscall ok |