diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-05-15 10:12:35 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-05-15 19:37:12 -0700 |
commit | 1a7f254b4b0590bfab1baa1400705265b1b23b97 (patch) | |
tree | fb7ce319a3acac401040d173397132e8ea8ae765 /nptl/cancellation.c | |
parent | 2e180a26222caf478f29e272c9d1b5d9c6299752 (diff) | |
download | glibc-1a7f254b4b0590bfab1baa1400705265b1b23b97.zip glibc-1a7f254b4b0590bfab1baa1400705265b1b23b97.tar.gz glibc-1a7f254b4b0590bfab1baa1400705265b1b23b97.tar.bz2 |
No cancel signal in unsafe places.
When disabling async cancellation we cannot return from the function
call if the thread is canceled. This happens when the cancel bits
have been set before async cancel is disabled but the signal hasn't
been sent/received yet. Delay for as long as necessary since
otherwise the signal might be received in an unsafe context.
Diffstat (limited to 'nptl/cancellation.c')
-rw-r--r-- | nptl/cancellation.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/nptl/cancellation.c b/nptl/cancellation.c index 81134a6..4d528cf 100644 --- a/nptl/cancellation.c +++ b/nptl/cancellation.c @@ -70,15 +70,17 @@ __pthread_disable_asynccancel (int oldtype) return; struct pthread *self = THREAD_SELF; + int newval; #ifdef THREAD_ATOMIC_AND THREAD_ATOMIC_AND (self, cancelhandling, ~CANCELTYPE_BITMASK); + newval = THREAD_GETMEM (self, cancelhandling); #else int oldval = THREAD_GETMEM (self, cancelhandling); while (1) { - int newval = oldval & ~CANCELTYPE_BITMASK; + newval = oldval & ~CANCELTYPE_BITMASK; if (newval == oldval) break; @@ -92,4 +94,14 @@ __pthread_disable_asynccancel (int oldtype) oldval = curval; } #endif + + /* We cannot return when we are being canceled. Upon return the + thread might be things which would have to be undone. The + following loop should loop until the cancellation signal is + delivered. */ + while (__builtin_expect (newval & CANCELED_BITMASK, 0)) + { + lll_futex_wait (&self->cancelhandling, newval, LLL_PRIVATE); + newval = THREAD_GETMEM (self, cancelhandling); + } } |