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_kern.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_kern.c')
-rw-r--r-- | lib/libpthread/thread/thr_kern.c | 48 |
1 files changed, 44 insertions, 4 deletions
diff --git a/lib/libpthread/thread/thr_kern.c b/lib/libpthread/thread/thr_kern.c index b3fbc3a..b833061 100644 --- a/lib/libpthread/thread/thr_kern.c +++ b/lib/libpthread/thread/thr_kern.c @@ -122,6 +122,17 @@ __asm__("fnsave %0": :"m"(*fdata)); pthread_testcancel(); } +#ifndef _NO_UNDISPATCH + /* + * Check for undispatched signals due to calls to + * pthread_kill(). + */ + if (_thread_run->undispatched_signals != 0) { + _thread_run->undispatched_signals = 0; + _dispatch_signals(); + } +#endif + if (_sched_switch_hook != NULL) { /* Run the installed switch hook: */ thread_run_switch_hook(_last_user_thread, _thread_run); @@ -365,8 +376,7 @@ __asm__("fnsave %0": :"m"(*fdata)); * something happens that changes this condition: */ _thread_kern_poll(1); - } - else { + } else { /* Remove the thread from the ready queue: */ PTHREAD_PRIOQ_REMOVE(pthread_h); @@ -537,8 +547,38 @@ __asm__("fnsave %0": :"m"(*fdata)); } } + /* + * Check if this thread is being continued from a + * longjmp() out of a signal handler: + */ + if ((_thread_run->jmpflags & JMPFLAGS_LONGJMP) != 0) { + _thread_run->jmpflags = 0; + __longjmp(_thread_run->nested_jmp.jmp, + _thread_run->longjmp_val); + } + /* + * Check if this thread is being continued from a + * _longjmp() out of a signal handler: + */ + else if ((_thread_run->jmpflags & JMPFLAGS__LONGJMP) != + 0) { + _thread_run->jmpflags = 0; + ___longjmp(_thread_run->nested_jmp.jmp, + _thread_run->longjmp_val); + } + /* + * Check if this thread is being continued from a + * siglongjmp() out of a signal handler: + */ + else if ((_thread_run->jmpflags & JMPFLAGS_SIGLONGJMP) + != 0) { + _thread_run->jmpflags = 0; + __siglongjmp( + _thread_run->nested_jmp.sigjmp, + _thread_run->longjmp_val); + } /* Check if a signal context was saved: */ - if (_thread_run->sig_saved == 1) { + else if (_thread_run->sig_saved == 1) { #ifndef __alpha__ /* * Point to the floating point data in the @@ -571,7 +611,7 @@ __asm__("fnsave %0": :"m"(*fdata)); * was context switched out (by a longjmp to * a different thread): */ - longjmp(_thread_run->saved_jmp_buf, 1); + __longjmp(_thread_run->saved_jmp_buf, 1); } /* This point should not be reached. */ |