mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03:00
nptl: Set cancellation type and state on pthread_exit (BZ #28267)
It is required by POSIX XSH 2.9.5 Thread Cancellation under the heading Thread Cancellation Cleanup Handlers. Checked x86_64-linux-gnu.
This commit is contained in:
@@ -282,6 +282,7 @@ tests = \
|
|||||||
tst-cancel17 \
|
tst-cancel17 \
|
||||||
tst-cancel24 \
|
tst-cancel24 \
|
||||||
tst-cancel31 \
|
tst-cancel31 \
|
||||||
|
tst-cleanup5 \
|
||||||
tst-cond26 \
|
tst-cond26 \
|
||||||
tst-context1 \
|
tst-context1 \
|
||||||
tst-default-attr \
|
tst-default-attr \
|
||||||
|
133
nptl/tst-cleanup5.c
Normal file
133
nptl/tst-cleanup5.c
Normal file
@@ -0,0 +1,133 @@
|
|||||||
|
/* Check if cancellation state and type is correctly set on thread exit.
|
||||||
|
Copyright (C) 2022 Free Software Foundation, Inc.
|
||||||
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU Lesser General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 2.1 of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
The GNU C Library is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public
|
||||||
|
License along with the GNU C Library; if not, see
|
||||||
|
<https://www.gnu.org/licenses/>. */
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <support/check.h>
|
||||||
|
#include <support/xthread.h>
|
||||||
|
#include <support/xunistd.h>
|
||||||
|
|
||||||
|
static int pipefds[2];
|
||||||
|
static pthread_barrier_t b;
|
||||||
|
|
||||||
|
static void
|
||||||
|
clh (void *arg)
|
||||||
|
{
|
||||||
|
/* Although POSIX state setting either the cancellation state or type is
|
||||||
|
undefined during cleanup handler execution, both calls should be safe
|
||||||
|
since none has any side-effect (they should not change current state
|
||||||
|
neither trigger a pending cancellation). */
|
||||||
|
|
||||||
|
int state;
|
||||||
|
TEST_VERIFY (pthread_setcancelstate (PTHREAD_CANCEL_DISABLE, &state) == 0);
|
||||||
|
TEST_COMPARE (state, PTHREAD_CANCEL_DISABLE);
|
||||||
|
|
||||||
|
int type;
|
||||||
|
TEST_VERIFY (pthread_setcanceltype (PTHREAD_CANCEL_DEFERRED, &type) == 0);
|
||||||
|
TEST_COMPARE (type, PTHREAD_CANCEL_DEFERRED);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Check if a thread with PTHREAD_CANCEL_DEFERRED cancellation on
|
||||||
|
pthread_cleanup_pop sets the correct state and type as pthread_exit. */
|
||||||
|
static void *
|
||||||
|
tf_cancel_deferred (void *arg)
|
||||||
|
{
|
||||||
|
xpthread_barrier_wait (&b);
|
||||||
|
|
||||||
|
pthread_cleanup_push (clh, NULL);
|
||||||
|
|
||||||
|
char c;
|
||||||
|
xread (pipefds[0], &c, 1);
|
||||||
|
|
||||||
|
pthread_cleanup_pop (1);
|
||||||
|
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Check if a thread with PTHREAD_CANCEL_DEFERRED cancellation on
|
||||||
|
blocked read() sets the correct state and type as pthread_exit. */
|
||||||
|
static void *
|
||||||
|
tf_testcancel (void *arg)
|
||||||
|
{
|
||||||
|
xpthread_barrier_wait (&b);
|
||||||
|
|
||||||
|
pthread_cleanup_push (clh, NULL);
|
||||||
|
|
||||||
|
char c;
|
||||||
|
xread (pipefds[0], &c, 1);
|
||||||
|
|
||||||
|
pthread_testcancel ();
|
||||||
|
|
||||||
|
pthread_cleanup_pop (1);
|
||||||
|
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
#define EXIT_EXPECTED_VALUE ((void *) 42)
|
||||||
|
|
||||||
|
/* Check if a thread with PTHREAD_CANCEL_DEFERRED cancellation on
|
||||||
|
pthread_exit() sets the correct state and type. */
|
||||||
|
static void *
|
||||||
|
tf_exit (void *arg)
|
||||||
|
{
|
||||||
|
xpthread_barrier_wait (&b);
|
||||||
|
|
||||||
|
pthread_cleanup_push (clh, NULL);
|
||||||
|
|
||||||
|
pthread_exit (EXIT_EXPECTED_VALUE);
|
||||||
|
|
||||||
|
pthread_cleanup_pop (1);
|
||||||
|
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
do_test (void)
|
||||||
|
{
|
||||||
|
xpipe (pipefds);
|
||||||
|
|
||||||
|
xpthread_barrier_init (&b, NULL, 2);
|
||||||
|
{
|
||||||
|
printf ("info: checking PTHREAD_CANCEL_DEFERRED\n");
|
||||||
|
pthread_t th = xpthread_create (NULL, tf_cancel_deferred, NULL);
|
||||||
|
xpthread_barrier_wait (&b);
|
||||||
|
xpthread_cancel (th);
|
||||||
|
void *r = xpthread_join (th);
|
||||||
|
TEST_VERIFY (r == PTHREAD_CANCELED);
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
printf ("info: checking PTHREAD_CANCEL_DEFERRED with pthread_testcancel\n");
|
||||||
|
pthread_t th = xpthread_create (NULL, tf_testcancel, NULL);
|
||||||
|
xpthread_barrier_wait (&b);
|
||||||
|
xpthread_cancel (th);
|
||||||
|
void *r = xpthread_join (th);
|
||||||
|
TEST_VERIFY (r == PTHREAD_CANCELED);
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
printf ("info: checking PTHREAD_CANCEL_DEFERRED with pthread_exit\n");
|
||||||
|
pthread_t th = xpthread_create (NULL, tf_exit, NULL);
|
||||||
|
xpthread_barrier_wait (&b);
|
||||||
|
void *r = xpthread_join (th);
|
||||||
|
TEST_VERIFY (r == EXIT_EXPECTED_VALUE);
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#include <support/test-driver.c>
|
@@ -268,7 +268,20 @@ __do_cancel (void *result)
|
|||||||
self->result = result;
|
self->result = result;
|
||||||
|
|
||||||
/* Make sure we get no more cancellations. */
|
/* Make sure we get no more cancellations. */
|
||||||
atomic_fetch_or_relaxed (&self->cancelhandling, EXITING_BITMASK);
|
int oldval = atomic_load_relaxed (&self->cancelhandling);
|
||||||
|
int newval;
|
||||||
|
do
|
||||||
|
{
|
||||||
|
/* It is required by POSIX XSH 2.9.5 Thread Cancellation under the
|
||||||
|
heading Thread Cancellation Cleanup Handlers and also avoid further
|
||||||
|
cancellation wrapper to act on cancellation. */
|
||||||
|
newval = oldval | CANCELSTATE_BITMASK | EXITING_BITMASK;
|
||||||
|
newval = newval & ~CANCELTYPE_BITMASK;
|
||||||
|
if (oldval == newval)
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
while (!atomic_compare_exchange_weak_acquire (&self->cancelhandling,
|
||||||
|
&oldval, newval));
|
||||||
|
|
||||||
__pthread_unwind ((__pthread_unwind_buf_t *)
|
__pthread_unwind ((__pthread_unwind_buf_t *)
|
||||||
THREAD_GETMEM (self, cleanup_jmp_buf));
|
THREAD_GETMEM (self, cleanup_jmp_buf));
|
||||||
|
Reference in New Issue
Block a user