Merge branch 'vendor/OPENSSH'
[dragonfly.git] / sys / emulation / 43bsd / 43bsd_signal.c
1 /*
2  * 43BSD_SIGNAL.C       - 4.3BSD compatibility signal syscalls
3  *
4  * Copyright (c) 1989, 1993
5  *      The Regents of the University of California.  All rights reserved.
6  * (c) UNIX System Laboratories, Inc.
7  * All or some portions of this file are derived from material licensed
8  * to the University of California by American Telephone and Telegraph
9  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
10  * the permission of UNIX System Laboratories, Inc.
11  *
12  * Redistribution and use in source and binary forms, with or without
13  * modification, are permitted provided that the following conditions
14  * are met:
15  * 1. Redistributions of source code must retain the above copyright
16  *    notice, this list of conditions and the following disclaimer.
17  * 2. Redistributions in binary form must reproduce the above copyright
18  *    notice, this list of conditions and the following disclaimer in the
19  *    documentation and/or other materials provided with the distribution.
20  * 3. All advertising materials mentioning features or use of this software
21  *    must display the following acknowledgement:
22  *      This product includes software developed by the University of
23  *      California, Berkeley and its contributors.
24  * 4. Neither the name of the University nor the names of its contributors
25  *    may be used to endorse or promote products derived from this software
26  *    without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38  * SUCH DAMAGE.
39  *
40  * $DragonFly: src/sys/emulation/43bsd/43bsd_signal.c,v 1.5 2007/03/12 21:07:42 corecode Exp $
41  *      from: DragonFly kern/kern_sig.c,v 1.22
42  *
43  * These syscalls used to live in kern/kern_sig.c.  They are modified
44  * to use the new split syscalls.
45  */
46
47 #include "opt_compat.h"
48
49 #include <sys/param.h>
50 #include <sys/systm.h>
51 #include <sys/sysproto.h>
52 #include <sys/conf.h>
53 #include <sys/kernel.h>
54 #include <sys/kern_syscall.h>
55 #include <sys/proc.h>
56 #include <sys/signal.h>
57 #include <sys/signalvar.h>
58
59 #include <sys/thread2.h>
60 #include <sys/mplock2.h>
61
62 #define ONSIG   32              /* NSIG for osig* syscalls.  XXX. */
63
64 #define SIG2OSIG(sig, osig)     osig = (sig).__bits[0]
65 #define OSIG2SIG(osig, sig)     SIGEMPTYSET(sig); (sig).__bits[0] = osig
66
67 #define SIGSETLO(set1, set2)    ((set1).__bits[0] = (set2).__bits[0])
68
69 /*
70  * These syscalls are unncessary because it is next to impossible to
71  * find 4.3BSD binaries built for i386.  The current libc has routines
72  * which fake the 4.3BSD family of signal syscalls, so anything built
73  * from source won't be using these.
74  *
75  * This file is provided for educational purposes only.  The osigvec()
76  * syscall is probably broken because the current signal code uses
77  * a different signal trampoline.
78  *
79  * MPALMOSTSAFE
80  */
81 int
82 sys_osigvec(struct osigvec_args *uap)
83 {
84         struct sigvec vec;
85         struct sigaction nsa, osa;
86         struct sigaction *nsap, *osap;
87         int error;
88
89         if (uap->signum <= 0 || uap->signum >= ONSIG)
90                 return (EINVAL);
91         nsap = (uap->nsv != NULL) ? &nsa : NULL;
92         osap = (uap->osv != NULL) ? &osa : NULL;
93         if (nsap) {
94                 error = copyin(uap->nsv, &vec, sizeof(vec));
95                 if (error)
96                         return (error);
97                 nsap->sa_handler = vec.sv_handler;
98                 OSIG2SIG(vec.sv_mask, nsap->sa_mask);
99                 nsap->sa_flags = vec.sv_flags;
100                 nsap->sa_flags ^= SA_RESTART;   /* opposite of SV_INTERRUPT */
101         }
102
103         get_mplock();
104         error = kern_sigaction(uap->signum, nsap, osap);
105         rel_mplock();
106
107         if (osap && !error) {
108                 vec.sv_handler = osap->sa_handler;
109                 SIG2OSIG(osap->sa_mask, vec.sv_mask);
110                 vec.sv_flags = osap->sa_flags;
111                 vec.sv_flags &= ~SA_NOCLDWAIT;
112                 vec.sv_flags ^= SA_RESTART;
113                 error = copyout(&vec, uap->osv, sizeof(vec));
114         }
115         return (error);
116 }
117
118 /*
119  * MPSAFE
120  */
121 int
122 sys_osigblock(struct osigblock_args *uap)
123 {
124         struct lwp *lp = curthread->td_lwp;
125         sigset_t set;
126
127         OSIG2SIG(uap->mask, set);
128         SIG_CANTMASK(set);
129         crit_enter();
130         SIG2OSIG(lp->lwp_sigmask, uap->sysmsg_iresult);
131         SIGSETOR(lp->lwp_sigmask, set);
132         crit_exit();
133         return (0);
134 }
135
136 /*
137  * MPSAFE
138  */
139 int
140 sys_osigsetmask(struct osigsetmask_args *uap)
141 {
142         struct lwp *lp = curthread->td_lwp;
143         sigset_t set;
144
145         OSIG2SIG(uap->mask, set);
146         SIG_CANTMASK(set);
147         crit_enter();
148         SIG2OSIG(lp->lwp_sigmask, uap->sysmsg_iresult);
149         SIGSETLO(lp->lwp_sigmask, set);
150         crit_exit();
151         return (0);
152 }
153
154 /*
155  * MPSAFE
156  */
157 int
158 sys_osigstack(struct osigstack_args *uap)
159 {
160         struct lwp *lp = curthread->td_lwp;
161         struct sigstack ss;
162         int error = 0;
163
164         ss.ss_sp = lp->lwp_sigstk.ss_sp;
165         ss.ss_onstack = lp->lwp_sigstk.ss_flags & SS_ONSTACK;
166         if (uap->oss && (error = copyout(&ss, uap->oss,
167                                          sizeof(struct sigstack)))) {
168                 return (error);
169         }
170         if (uap->nss && (error = copyin(uap->nss, &ss, sizeof(ss))) == 0) {
171                 lp->lwp_sigstk.ss_sp = ss.ss_sp;
172                 lp->lwp_sigstk.ss_size = 0;
173                 lp->lwp_sigstk.ss_flags |= ss.ss_onstack & SS_ONSTACK;
174                 lp->lwp_flag |= LWP_ALTSTACK;
175         }
176         return (error);
177 }
178
179 /*
180  * MPALMOSTSAFE
181  */
182 int
183 sys_okillpg(struct okillpg_args *uap)
184 {
185         int error;
186
187         get_mplock();
188         error = kern_kill(uap->signum, -uap->pgid, -1);
189         rel_mplock();
190
191         return (error);
192 }