Merge branch 'vendor/NCURSES'
[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 #include <sys/thread2.h>
59
60 #define ONSIG   32              /* NSIG for osig* syscalls.  XXX. */
61
62 #define SIG2OSIG(sig, osig)     osig = (sig).__bits[0]
63 #define OSIG2SIG(osig, sig)     SIGEMPTYSET(sig); (sig).__bits[0] = osig
64
65 #define SIGSETLO(set1, set2)    ((set1).__bits[0] = (set2).__bits[0])
66
67 /*
68  * These syscalls are unncessary because it is next to impossible to
69  * find 4.3BSD binaries built for i386.  The current libc has routines
70  * which fake the 4.3BSD family of signal syscalls, so anything built
71  * from source won't be using these.
72  *
73  * This file is provided for educational purposes only.  The osigvec()
74  * syscall is probably broken because the current signal code uses
75  * a different signal trampoline.
76  *
77  * MPALMOSTSAFE
78  */
79 int
80 sys_osigvec(struct osigvec_args *uap)
81 {
82         struct sigvec vec;
83         struct sigaction nsa, osa;
84         struct sigaction *nsap, *osap;
85         int error;
86
87         if (uap->signum <= 0 || uap->signum >= ONSIG)
88                 return (EINVAL);
89         nsap = (uap->nsv != NULL) ? &nsa : NULL;
90         osap = (uap->osv != NULL) ? &osa : NULL;
91         if (nsap) {
92                 error = copyin(uap->nsv, &vec, sizeof(vec));
93                 if (error)
94                         return (error);
95                 nsap->sa_handler = vec.sv_handler;
96                 OSIG2SIG(vec.sv_mask, nsap->sa_mask);
97                 nsap->sa_flags = vec.sv_flags;
98                 nsap->sa_flags ^= SA_RESTART;   /* opposite of SV_INTERRUPT */
99         }
100
101         get_mplock();
102         error = kern_sigaction(uap->signum, nsap, osap);
103         rel_mplock();
104
105         if (osap && !error) {
106                 vec.sv_handler = osap->sa_handler;
107                 SIG2OSIG(osap->sa_mask, vec.sv_mask);
108                 vec.sv_flags = osap->sa_flags;
109                 vec.sv_flags &= ~SA_NOCLDWAIT;
110                 vec.sv_flags ^= SA_RESTART;
111                 error = copyout(&vec, uap->osv, sizeof(vec));
112         }
113         return (error);
114 }
115
116 /*
117  * MPSAFE
118  */
119 int
120 sys_osigblock(struct osigblock_args *uap)
121 {
122         struct lwp *lp = curthread->td_lwp;
123         sigset_t set;
124
125         OSIG2SIG(uap->mask, set);
126         SIG_CANTMASK(set);
127         crit_enter();
128         SIG2OSIG(lp->lwp_sigmask, uap->sysmsg_iresult);
129         SIGSETOR(lp->lwp_sigmask, set);
130         crit_exit();
131         return (0);
132 }
133
134 /*
135  * MPSAFE
136  */
137 int
138 sys_osigsetmask(struct osigsetmask_args *uap)
139 {
140         struct lwp *lp = curthread->td_lwp;
141         sigset_t set;
142
143         OSIG2SIG(uap->mask, set);
144         SIG_CANTMASK(set);
145         crit_enter();
146         SIG2OSIG(lp->lwp_sigmask, uap->sysmsg_iresult);
147         SIGSETLO(lp->lwp_sigmask, set);
148         crit_exit();
149         return (0);
150 }
151
152 /*
153  * MPSAFE
154  */
155 int
156 sys_osigstack(struct osigstack_args *uap)
157 {
158         struct lwp *lp = curthread->td_lwp;
159         struct sigstack ss;
160         int error = 0;
161
162         ss.ss_sp = lp->lwp_sigstk.ss_sp;
163         ss.ss_onstack = lp->lwp_sigstk.ss_flags & SS_ONSTACK;
164         if (uap->oss && (error = copyout(&ss, uap->oss,
165                                          sizeof(struct sigstack)))) {
166                 return (error);
167         }
168         if (uap->nss && (error = copyin(uap->nss, &ss, sizeof(ss))) == 0) {
169                 lp->lwp_sigstk.ss_sp = ss.ss_sp;
170                 lp->lwp_sigstk.ss_size = 0;
171                 lp->lwp_sigstk.ss_flags |= ss.ss_onstack & SS_ONSTACK;
172                 lp->lwp_flag |= LWP_ALTSTACK;
173         }
174         return (error);
175 }
176
177 /*
178  * MPALMOSTSAFE
179  */
180 int
181 sys_okillpg(struct okillpg_args *uap)
182 {
183         int error;
184
185         get_mplock();
186         error = kern_kill(uap->signum, -uap->pgid, -1);
187         rel_mplock();
188
189         return (error);
190 }