diff options
author | jasone <jasone@FreeBSD.org> | 2000-01-19 07:04:50 +0000 |
---|---|---|
committer | jasone <jasone@FreeBSD.org> | 2000-01-19 07:04:50 +0000 |
commit | 0b9957ff21dc2a9c577ff23b99d36d1787633701 (patch) | |
tree | fd1e0fc8602718af3b54f1661587a1462b98ccdd /lib/libpthread/thread/thr_cancel.c | |
parent | 2c6582da15d1ca764e0434cfacf0ab1cc7fe11f0 (diff) | |
download | FreeBSD-src-0b9957ff21dc2a9c577ff23b99d36d1787633701.zip FreeBSD-src-0b9957ff21dc2a9c577ff23b99d36d1787633701.tar.gz |
Implement continuations to correctly handle [sig|_]longjmp() inside of a
signal handler. Explicitly check for jumps to anywhere other than the
current stack, since such jumps are undefined according to POSIX.
While we're at it, convert thread cancellation to use continuations, since
it's cleaner than the original cancellation code.
Avoid delivering a signal to a thread twice. This was a pre-existing bug,
but was likely unexposed until these other changes were made.
Defer signals generated by pthread_kill() so that they can be delivered on
the appropriate stack. deischen claims that this is unnecessary, which is
likely true, but without this change, pthread_kill() can cause undefined
priority queue states and/or PANICs in [sig|_]longjmp(), so I'm leaving
this in for now. To compile this code out and exercise the bug, define
the _NO_UNDISPATCH cpp macro. Defining _PTHREADS_INVARIANTS as well will
cause earlier crashes.
PR: kern/14685
Collaboration with: deischen
Diffstat (limited to 'lib/libpthread/thread/thr_cancel.c')
-rw-r--r-- | lib/libpthread/thread/thr_cancel.c | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/lib/libpthread/thread/thr_cancel.c b/lib/libpthread/thread/thr_cancel.c index de7c491..f22bfb5 100644 --- a/lib/libpthread/thread/thr_cancel.c +++ b/lib/libpthread/thread/thr_cancel.c @@ -2,11 +2,12 @@ * David Leonard <d@openbsd.org>, 1999. Public domain. * $FreeBSD$ */ - #include <sys/errno.h> #include <pthread.h> #include "pthread_private.h" +static void finish_cancellation(void *arg); + int pthread_cancel(pthread_t pthread) { @@ -71,11 +72,13 @@ pthread_cancel(pthread_t pthread) * queue. Mark the thread as interrupted and * needing cancellation, and set the state to * running. When the thread resumes, it will - * exit after removing itself from the queue. + * remove itself from the queue and call the + * cancellation completion routine. */ pthread->interrupted = 1; pthread->cancelflags |= PTHREAD_CANCEL_NEEDED; PTHREAD_NEW_STATE(pthread,PS_RUNNING); + pthread->continuation = finish_cancellation; break; case PS_DEAD: @@ -172,7 +175,6 @@ pthread_testcancel(void) void _thread_enter_cancellation_point(void) { - /* Look for a cancellation before we block: */ pthread_testcancel(); _thread_run->cancelflags |= PTHREAD_AT_CANCEL_POINT; @@ -181,8 +183,20 @@ _thread_enter_cancellation_point(void) void _thread_leave_cancellation_point(void) { - _thread_run->cancelflags &= ~PTHREAD_AT_CANCEL_POINT; /* Look for a cancellation after we unblock: */ pthread_testcancel(); } + +static void +finish_cancellation(void *arg) +{ + _thread_run->continuation = NULL; + _thread_run->interrupted = 0; + + if ((_thread_run->cancelflags & PTHREAD_CANCEL_NEEDED) != 0) { + _thread_run->cancelflags &= ~PTHREAD_CANCEL_NEEDED; + _thread_exit_cleanup(); + pthread_exit(PTHREAD_CANCELED); + } +} |