Merge branch 'vendor/OPENSSH'
[dragonfly.git] / sys / sys / signal2.h
1 /*
2  * Copyright (c) 1991, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. Neither the name of the University nor the names of its contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  *      @(#)signalvar.h 8.6 (Berkeley) 2/19/95
30  * $FreeBSD: src/sys/sys/signalvar.h,v 1.34.2.1 2000/05/16 06:58:05 dillon Exp $
31  * $DragonFly: src/sys/sys/signal2.h,v 1.3 2008/10/14 21:25:14 swildner Exp $
32  */
33
34 #ifndef _SYS_SIGNAL2_H
35 #define _SYS_SIGNAL2_H
36
37 #include <sys/proc.h>
38
39 /*
40  * Inline functions:
41  */
42 /*
43  * Determine which signals are pending for a lwp.
44  *
45  * (Does not need to be interlocked with lwp_spin.  If caller holds a
46  *  critical section races will be resolved through an AST).
47  */
48 static __inline sigset_t
49 lwp_sigpend(struct lwp *lp)
50 {
51         sigset_t set;
52
53         set = lp->lwp_proc->p_siglist;
54         SIGSETOR(set, lp->lwp_siglist);
55
56         return (set);
57 }
58
59 /*
60  * Mark a signal as handled by the lwp.
61  *
62  * (p->p_token must be held, lp->lwp_spin must be held)
63  */
64 static __inline void
65 lwp_delsig(struct lwp *lp, int sig, int fromproc)
66 {
67         SIGDELSET(lp->lwp_siglist, sig);
68         if (fromproc)
69                 SIGDELSET_ATOMIC(lp->lwp_proc->p_siglist, sig);
70 }
71
72 #define CURSIG(lp)                      __cursig(lp, 1, 0, NULL)
73 #define CURSIG_TRACE(lp)                __cursig(lp, 1, 1, NULL)
74 #define CURSIG_LCK_TRACE(lp, ptok)      __cursig(lp, 1, 1, ptok)
75 #define CURSIG_NOBLOCK(lp)              __cursig(lp, 0, 0, NULL)
76
77 /*
78  * Determine signal that should be delivered to process p, the current
79  * process, 0 if none.  If there is a pending stop signal with default
80  * action, the process stops in issignal().
81  *
82  * This function does not interlock pending signals.  If the caller needs
83  * to interlock the caller must acquire the per-proc token.
84  *
85  * If ptok is non-NULL this function may return with proc->p_token held,
86  * indicating that the signal came from the process structure.  This is
87  * used by postsig to avoid holding p_token when possible.  Only applicable
88  * if mayblock is non-zero.
89  */
90 static __inline
91 int
92 __cursig(struct lwp *lp, int mayblock, int maytrace, int *ptok)
93 {
94         struct proc *p = lp->lwp_proc;
95         sigset_t tmpset;
96         int r;
97
98         tmpset = lwp_sigpend(lp);
99         SIGSETNAND(tmpset, lp->lwp_sigmask);
100
101         /* Nothing interesting happening? */
102         if (SIGISEMPTY(tmpset)) {
103                 /*
104                  * Quit here, unless
105                  *  a) we may block and
106                  *  b) somebody is tracing us.
107                  */
108                 if (!(mayblock && (p->p_flags & P_TRACED)))
109                         return (0);
110         }
111
112         if (mayblock)
113                 r = issignal(lp, maytrace, ptok);
114         else
115                 r = TRUE;       /* simply state the fact */
116
117         return(r);
118 }
119
120 #endif