diff options
author | mtm <mtm@FreeBSD.org> | 2004-05-20 12:06:16 +0000 |
---|---|---|
committer | mtm <mtm@FreeBSD.org> | 2004-05-20 12:06:16 +0000 |
commit | d835c0621f34028252fad957e6061920d493021d (patch) | |
tree | 191973c93de49160bb4144ea98ee350f5906d883 /lib/libthr/thread/thr_sig.c | |
parent | 2b949599bf280f4ce2bc5250ba241e9ee64bed2b (diff) | |
download | FreeBSD-src-d835c0621f34028252fad957e6061920d493021d.zip FreeBSD-src-d835c0621f34028252fad957e6061920d493021d.tar.gz |
Make libthr async-signal-safe without costly signal masking. The guidlines I
followed are: Only 3 functions (pthread_cancel, pthread_setcancelstate,
pthread_setcanceltype) are required to be async-signal-safe by POSIX. None of
the rest of the pthread api is required to be async-signal-safe. This means
that only the three mentioned functions are safe to use from inside
signal handlers.
However, there are certain system/libc calls that are
cancellation points that a caller may call from within a signal handler,
and since they are cancellation points calls have to be made into libthr
to test for cancellation and exit the thread if necessary. So, the
cancellation test and thread exit code paths must be async-signal-safe
as well. A summary of the changes follows:
o Almost all of the code paths that masked signals, as well as locking the
pthread structure now lock only the pthread structure.
o Signals are masked (and left that way) as soon as a thread enters
pthread_exit().
o The active and dead threads locks now explicitly require that signals
are masked.
o Access to the isdead field of the pthread structure is protected by both
the active and dead list locks for writing. Either one is sufficient for
reading.
o The thread state and type fields have been combined into one three-state
switch to make it easier to read without requiring a lock. It doesn't need
a lock for writing (and therefore for reading either) because only the
current thread can write to it and it is an integer value.
o The thread state field of the pthread structure has been eliminated. It
was an unnecessary field that mostly duplicated the flags field, but
required additional locking that would make a lot more code paths require
signal masking. Any truly unique values (such as PS_DEAD) have been
reborn as separate members of the pthread structure.
o Since the mutex and condvar pthread functions are not async-signal-safe
there is no need to muck about with the wait queues when handling
a signal ...
o ... which also removes the need for wrapping signal handlers and sigaction(2).
o The condvar and mutex async-cancellation code had to be revised as a result
of some of these changes, which resulted in semi-unrelated changes which
would have been difficult to work on as a separate commit, so they are
included as well.
The only part of the changes I am worried about is related to locking for
the pthread joining fields. But, I will take a closer look at them once this
mega-patch is committed.
Diffstat (limited to 'lib/libthr/thread/thr_sig.c')
-rw-r--r-- | lib/libthr/thread/thr_sig.c | 77 |
1 files changed, 0 insertions, 77 deletions
diff --git a/lib/libthr/thread/thr_sig.c b/lib/libthr/thread/thr_sig.c index efc6d5a..8a805af 100644 --- a/lib/libthr/thread/thr_sig.c +++ b/lib/libthr/thread/thr_sig.c @@ -93,80 +93,3 @@ _pthread_kill(pthread_t pthread, int sig) return (thr_kill(pthread->thr_id, sig)); } - -/* - * User thread signal handler wrapper. - */ -void -_thread_sig_wrapper(int sig, siginfo_t *info, void *context) -{ - struct pthread_state_data psd; - struct sigaction *actp; - __siginfohandler_t *handler; - struct umtx *up; - spinlock_t *sp; - - /* - * Do a little cleanup handling for those threads in - * queues before calling the signal handler. Signals - * for these threads are temporarily blocked until - * after cleanup handling. - */ - switch (curthread->state) { - case PS_BARRIER_WAIT: - /* - * XXX - The thread has reached the barrier. We can't - * "back it away" from the barrier. - */ - _thread_critical_enter(curthread); - break; - case PS_COND_WAIT: - /* - * Cache the address, since it will not be available - * after it has been backed out. - */ - up = &curthread->data.cond->c_lock; - - UMTX_LOCK(up); - _thread_critical_enter(curthread); - _cond_wait_backout(curthread); - UMTX_UNLOCK(up); - break; - case PS_MUTEX_WAIT: - /* - * Cache the address, since it will not be available - * after it has been backed out. - */ - sp = &curthread->data.mutex->lock; - - _SPINLOCK(sp); - _thread_critical_enter(curthread); - _mutex_lock_backout(curthread); - _SPINUNLOCK(sp); - break; - default: - /* - * We need to lock the thread to read it's flags. - */ - _thread_critical_enter(curthread); - break; - } - - /* - * We save the flags now so that any modifications done as part - * of the backout are reflected when the flags are restored. - */ - psd.psd_flags = curthread->flags; - - PTHREAD_SET_STATE(curthread, PS_RUNNING); - _thread_critical_exit(curthread); - actp = proc_sigact_sigaction(sig); - handler = (__siginfohandler_t *)actp->sa_handler; - handler(sig, info, (ucontext_t *)context); - - /* Restore the thread's flags, and make it runnable */ - _thread_critical_enter(curthread); - curthread->flags = psd.psd_flags; - PTHREAD_SET_STATE(curthread, PS_RUNNING); - _thread_critical_exit(curthread); -} |