linux_signal.c revision 1.40 1 1.40 thorpej /* $NetBSD: linux_signal.c,v 1.40 2003/01/18 21:21:33 thorpej Exp $ */
2 1.16 fvdl /*-
3 1.16 fvdl * Copyright (c) 1995, 1998 The NetBSD Foundation, Inc.
4 1.1 fvdl * All rights reserved.
5 1.1 fvdl *
6 1.16 fvdl * This code is derived from software contributed to The NetBSD Foundation
7 1.16 fvdl * by Frank van der Linden and Eric Haszlakiewicz.
8 1.16 fvdl *
9 1.1 fvdl * Redistribution and use in source and binary forms, with or without
10 1.1 fvdl * modification, are permitted provided that the following conditions
11 1.1 fvdl * are met:
12 1.1 fvdl * 1. Redistributions of source code must retain the above copyright
13 1.1 fvdl * notice, this list of conditions and the following disclaimer.
14 1.1 fvdl * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 fvdl * notice, this list of conditions and the following disclaimer in the
16 1.1 fvdl * documentation and/or other materials provided with the distribution.
17 1.1 fvdl * 3. All advertising materials mentioning features or use of this software
18 1.1 fvdl * must display the following acknowledgement:
19 1.16 fvdl * This product includes software developed by the NetBSD
20 1.16 fvdl * Foundation, Inc. and its contributors.
21 1.16 fvdl * 4. Neither the name of The NetBSD Foundation nor the names of its
22 1.16 fvdl * contributors may be used to endorse or promote products derived
23 1.16 fvdl * from this software without specific prior written permission.
24 1.1 fvdl *
25 1.16 fvdl * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
26 1.16 fvdl * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 1.16 fvdl * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 1.16 fvdl * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
29 1.16 fvdl * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 1.16 fvdl * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 1.16 fvdl * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 1.16 fvdl * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 1.16 fvdl * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 1.16 fvdl * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 1.16 fvdl * POSSIBILITY OF SUCH DAMAGE.
36 1.16 fvdl */
37 1.16 fvdl /*
38 1.1 fvdl * heavily from: svr4_signal.c,v 1.7 1995/01/09 01:04:21 christos Exp
39 1.1 fvdl */
40 1.1 fvdl
41 1.14 erh /*
42 1.14 erh * Functions in multiarch:
43 1.14 erh * linux_sys_signal : linux_sig_notalpha.c
44 1.14 erh * linux_sys_siggetmask : linux_sig_notalpha.c
45 1.14 erh * linux_sys_sigsetmask : linux_sig_notalpha.c
46 1.14 erh * linux_sys_pause : linux_sig_notalpha.c
47 1.14 erh * linux_sys_sigaction : linux_sigaction.c
48 1.14 erh *
49 1.14 erh */
50 1.14 erh
51 1.14 erh /*
52 1.14 erh * Unimplemented:
53 1.14 erh * linux_sys_rt_sigtimedwait : sigsuspend w/timeout.
54 1.14 erh */
55 1.32 lukem
56 1.32 lukem #include <sys/cdefs.h>
57 1.40 thorpej __KERNEL_RCSID(0, "$NetBSD: linux_signal.c,v 1.40 2003/01/18 21:21:33 thorpej Exp $");
58 1.21 drochner
59 1.21 drochner #define COMPAT_LINUX 1
60 1.14 erh
61 1.1 fvdl #include <sys/param.h>
62 1.1 fvdl #include <sys/systm.h>
63 1.1 fvdl #include <sys/namei.h>
64 1.1 fvdl #include <sys/proc.h>
65 1.1 fvdl #include <sys/filedesc.h>
66 1.1 fvdl #include <sys/ioctl.h>
67 1.1 fvdl #include <sys/mount.h>
68 1.1 fvdl #include <sys/kernel.h>
69 1.1 fvdl #include <sys/signal.h>
70 1.1 fvdl #include <sys/signalvar.h>
71 1.1 fvdl #include <sys/malloc.h>
72 1.1 fvdl
73 1.40 thorpej #include <sys/sa.h>
74 1.1 fvdl #include <sys/syscallargs.h>
75 1.1 fvdl
76 1.15 christos #include <compat/linux/common/linux_types.h>
77 1.15 christos #include <compat/linux/common/linux_signal.h>
78 1.17 erh #include <compat/linux/common/linux_siginfo.h>
79 1.15 christos #include <compat/linux/common/linux_util.h>
80 1.15 christos
81 1.1 fvdl #include <compat/linux/linux_syscallargs.h>
82 1.1 fvdl
83 1.14 erh /* Locally used defines (in bsd<->linux conversion functions): */
84 1.11 perry #define linux_sigemptyset(s) memset((s), 0, sizeof(*(s)))
85 1.20 itohy #define linux_sigismember(s, n) ((s)->sig[((n) - 1) / LINUX__NSIG_BPW] \
86 1.20 itohy & (1 << ((n) - 1) % LINUX__NSIG_BPW))
87 1.20 itohy #define linux_sigaddset(s, n) ((s)->sig[((n) - 1) / LINUX__NSIG_BPW] \
88 1.20 itohy |= (1 << ((n) - 1) % LINUX__NSIG_BPW))
89 1.6 mycroft
90 1.36 christos #ifdef DEBUG_LINUX
91 1.36 christos #define DPRINTF(a) uprintf a
92 1.36 christos #else
93 1.36 christos #define DPRINTF(a)
94 1.36 christos #endif
95 1.36 christos
96 1.37 christos extern const int native_to_linux_signo[];
97 1.37 christos extern const int linux_to_native_signo[];
98 1.6 mycroft
99 1.14 erh /*
100 1.20 itohy * Convert between Linux and BSD signal sets.
101 1.14 erh */
102 1.20 itohy #if LINUX__NSIG_WORDS > 1
103 1.6 mycroft void
104 1.33 christos linux_old_extra_to_native_sigset(bss, lss, extra)
105 1.33 christos sigset_t *bss;
106 1.14 erh const linux_old_sigset_t *lss;
107 1.20 itohy const unsigned long *extra;
108 1.20 itohy {
109 1.20 itohy linux_sigset_t lsnew;
110 1.20 itohy
111 1.20 itohy /* convert old sigset to new sigset */
112 1.20 itohy linux_sigemptyset(&lsnew);
113 1.20 itohy lsnew.sig[0] = *lss;
114 1.20 itohy if (extra)
115 1.33 christos memcpy(&lsnew.sig[1], extra,
116 1.33 christos sizeof(linux_sigset_t) - sizeof(linux_old_sigset_t));
117 1.20 itohy
118 1.33 christos linux_to_native_sigset(bss, &lsnew);
119 1.20 itohy }
120 1.20 itohy
121 1.20 itohy void
122 1.33 christos native_to_linux_old_extra_sigset(lss, extra, bss)
123 1.20 itohy linux_old_sigset_t *lss;
124 1.20 itohy unsigned long *extra;
125 1.33 christos const sigset_t *bss;
126 1.20 itohy {
127 1.20 itohy linux_sigset_t lsnew;
128 1.20 itohy
129 1.33 christos native_to_linux_sigset(&lsnew, bss);
130 1.20 itohy
131 1.20 itohy /* convert new sigset to old sigset */
132 1.20 itohy *lss = lsnew.sig[0];
133 1.20 itohy if (extra)
134 1.33 christos memcpy(extra, &lsnew.sig[1],
135 1.33 christos sizeof(linux_sigset_t) - sizeof(linux_old_sigset_t));
136 1.20 itohy }
137 1.20 itohy #endif
138 1.20 itohy
139 1.20 itohy void
140 1.33 christos linux_to_native_sigset(bss, lss)
141 1.33 christos sigset_t *bss;
142 1.20 itohy const linux_sigset_t *lss;
143 1.1 fvdl {
144 1.1 fvdl int i, newsig;
145 1.1 fvdl
146 1.6 mycroft sigemptyset(bss);
147 1.20 itohy for (i = 1; i < LINUX__NSIG; i++) {
148 1.6 mycroft if (linux_sigismember(lss, i)) {
149 1.37 christos newsig = linux_to_native_signo[i];
150 1.1 fvdl if (newsig)
151 1.6 mycroft sigaddset(bss, newsig);
152 1.1 fvdl }
153 1.1 fvdl }
154 1.1 fvdl }
155 1.1 fvdl
156 1.1 fvdl void
157 1.33 christos native_to_linux_sigset(lss, bss)
158 1.33 christos linux_sigset_t *lss;
159 1.1 fvdl const sigset_t *bss;
160 1.1 fvdl {
161 1.1 fvdl int i, newsig;
162 1.20 itohy
163 1.6 mycroft linux_sigemptyset(lss);
164 1.6 mycroft for (i = 1; i < NSIG; i++) {
165 1.6 mycroft if (sigismember(bss, i)) {
166 1.37 christos newsig = native_to_linux_signo[i];
167 1.1 fvdl if (newsig)
168 1.6 mycroft linux_sigaddset(lss, newsig);
169 1.1 fvdl }
170 1.1 fvdl }
171 1.1 fvdl }
172 1.1 fvdl
173 1.34 christos unsigned int
174 1.34 christos native_to_linux_sigflags(bsf)
175 1.34 christos const int bsf;
176 1.33 christos {
177 1.34 christos unsigned int lsf = 0;
178 1.34 christos if ((bsf & SA_NOCLDSTOP) != 0)
179 1.34 christos lsf |= LINUX_SA_NOCLDSTOP;
180 1.34 christos if ((bsf & SA_NOCLDWAIT) != 0)
181 1.34 christos lsf |= LINUX_SA_NOCLDWAIT;
182 1.34 christos if ((bsf & SA_ONSTACK) != 0)
183 1.34 christos lsf |= LINUX_SA_ONSTACK;
184 1.34 christos if ((bsf & SA_RESTART) != 0)
185 1.34 christos lsf |= LINUX_SA_RESTART;
186 1.34 christos if ((bsf & SA_NODEFER) != 0)
187 1.34 christos lsf |= LINUX_SA_NOMASK;
188 1.34 christos if ((bsf & SA_RESETHAND) != 0)
189 1.34 christos lsf |= LINUX_SA_ONESHOT;
190 1.34 christos if ((bsf & SA_SIGINFO) != 0)
191 1.34 christos lsf |= LINUX_SA_SIGINFO;
192 1.34 christos return lsf;
193 1.33 christos }
194 1.33 christos
195 1.34 christos int
196 1.34 christos linux_to_native_sigflags(lsf)
197 1.34 christos const unsigned long lsf;
198 1.33 christos {
199 1.34 christos int bsf = 0;
200 1.34 christos if ((lsf & LINUX_SA_NOCLDSTOP) != 0)
201 1.34 christos bsf |= SA_NOCLDSTOP;
202 1.34 christos if ((lsf & LINUX_SA_NOCLDWAIT) != 0)
203 1.34 christos bsf |= SA_NOCLDWAIT;
204 1.34 christos if ((lsf & LINUX_SA_ONSTACK) != 0)
205 1.34 christos bsf |= SA_ONSTACK;
206 1.34 christos if ((lsf & LINUX_SA_RESTART) != 0)
207 1.34 christos bsf |= SA_RESTART;
208 1.34 christos if ((lsf & LINUX_SA_ONESHOT) != 0)
209 1.34 christos bsf |= SA_RESETHAND;
210 1.34 christos if ((lsf & LINUX_SA_NOMASK) != 0)
211 1.34 christos bsf |= SA_NODEFER;
212 1.34 christos if ((lsf & LINUX_SA_SIGINFO) != 0)
213 1.34 christos bsf |= SA_SIGINFO;
214 1.34 christos if ((lsf & ~LINUX_SA_ALLBITS) != 0)
215 1.36 christos DPRINTF(("linux_old_to_native_sigflags: "
216 1.36 christos "%lx extra bits ignored\n", lsf));
217 1.34 christos return bsf;
218 1.33 christos }
219 1.33 christos
220 1.1 fvdl /*
221 1.14 erh * Convert between Linux and BSD sigaction structures. Linux sometimes
222 1.14 erh * has one extra field (sa_restorer) which we don't support.
223 1.1 fvdl */
224 1.1 fvdl void
225 1.33 christos linux_old_to_native_sigaction(bsa, lsa)
226 1.14 erh struct sigaction *bsa;
227 1.33 christos const struct linux_old_sigaction *lsa;
228 1.14 erh {
229 1.39 christos bsa->sa_handler = lsa->linux_sa_handler;
230 1.39 christos linux_old_to_native_sigset(&bsa->sa_mask, &lsa->linux_sa_mask);
231 1.39 christos bsa->sa_flags = linux_to_native_sigflags(lsa->linux_sa_flags);
232 1.34 christos #ifndef __alpha__
233 1.34 christos /*
234 1.34 christos * XXX: On the alpha sa_restorer is elsewhere.
235 1.34 christos */
236 1.39 christos if (lsa->linux_sa_restorer != NULL)
237 1.36 christos DPRINTF(("linux_old_to_native_sigaction: "
238 1.36 christos "sa_restorer ignored\n"));
239 1.34 christos #endif
240 1.14 erh }
241 1.14 erh
242 1.14 erh void
243 1.33 christos native_to_linux_old_sigaction(lsa, bsa)
244 1.14 erh struct linux_old_sigaction *lsa;
245 1.33 christos const struct sigaction *bsa;
246 1.14 erh {
247 1.39 christos lsa->linux_sa_handler = bsa->sa_handler;
248 1.39 christos native_to_linux_old_sigset(&lsa->linux_sa_mask, &bsa->sa_mask);
249 1.39 christos lsa->linux_sa_flags = native_to_linux_sigflags(bsa->sa_flags);
250 1.34 christos #ifndef __alpha__
251 1.39 christos lsa->linux_sa_restorer = NULL;
252 1.34 christos #endif
253 1.14 erh }
254 1.14 erh
255 1.14 erh /* ...and the new sigaction conversion funcs. */
256 1.14 erh void
257 1.33 christos linux_to_native_sigaction(bsa, lsa)
258 1.1 fvdl struct sigaction *bsa;
259 1.33 christos const struct linux_sigaction *lsa;
260 1.1 fvdl {
261 1.39 christos bsa->sa_handler = lsa->linux_sa_handler;
262 1.39 christos linux_to_native_sigset(&bsa->sa_mask, &lsa->linux_sa_mask);
263 1.39 christos bsa->sa_flags = linux_to_native_sigflags(lsa->linux_sa_flags);
264 1.34 christos #ifndef __alpha__
265 1.39 christos if (lsa->linux_sa_restorer != 0)
266 1.36 christos DPRINTF(("linux_to_native_sigaction: sa_restorer ignored\n"));
267 1.34 christos #endif
268 1.1 fvdl }
269 1.1 fvdl
270 1.1 fvdl void
271 1.33 christos native_to_linux_sigaction(lsa, bsa)
272 1.1 fvdl struct linux_sigaction *lsa;
273 1.33 christos const struct sigaction *bsa;
274 1.1 fvdl {
275 1.39 christos lsa->linux_sa_handler = bsa->sa_handler;
276 1.39 christos native_to_linux_sigset(&lsa->linux_sa_mask, &bsa->sa_mask);
277 1.39 christos lsa->linux_sa_flags = native_to_linux_sigflags(bsa->sa_flags);
278 1.34 christos #ifndef __alpha__
279 1.39 christos lsa->linux_sa_restorer = NULL;
280 1.34 christos #endif
281 1.1 fvdl }
282 1.1 fvdl
283 1.14 erh /* ----------------------------------------------------------------------- */
284 1.1 fvdl
285 1.1 fvdl /*
286 1.1 fvdl * The Linux sigaction() system call. Do the usual conversions,
287 1.1 fvdl * and just call sigaction(). Some flags and values are silently
288 1.1 fvdl * ignored (see above).
289 1.1 fvdl */
290 1.1 fvdl int
291 1.40 thorpej linux_sys_rt_sigaction(l, v, retval)
292 1.40 thorpej struct lwp *l;
293 1.8 thorpej void *v;
294 1.8 thorpej register_t *retval;
295 1.8 thorpej {
296 1.14 erh struct linux_sys_rt_sigaction_args /* {
297 1.1 fvdl syscallarg(int) signum;
298 1.12 mycroft syscallarg(const struct linux_sigaction *) nsa;
299 1.1 fvdl syscallarg(struct linux_sigaction *) osa;
300 1.14 erh syscallarg(size_t) sigsetsize;
301 1.8 thorpej } */ *uap = v;
302 1.40 thorpej struct proc *p = l->l_proc;
303 1.12 mycroft struct linux_sigaction nlsa, olsa;
304 1.12 mycroft struct sigaction nbsa, obsa;
305 1.25 tron int error, sig;
306 1.1 fvdl
307 1.14 erh if (SCARG(uap, sigsetsize) != sizeof(linux_sigset_t))
308 1.14 erh return (EINVAL);
309 1.14 erh
310 1.12 mycroft if (SCARG(uap, nsa)) {
311 1.12 mycroft error = copyin(SCARG(uap, nsa), &nlsa, sizeof(nlsa));
312 1.12 mycroft if (error)
313 1.12 mycroft return (error);
314 1.33 christos linux_to_native_sigaction(&nbsa, &nlsa);
315 1.12 mycroft }
316 1.25 tron sig = SCARG(uap, signum);
317 1.25 tron if (sig < 0 || sig >= LINUX__NSIG)
318 1.25 tron return (EINVAL);
319 1.37 christos if (sig > 0 && !linux_to_native_signo[sig]) {
320 1.29 tv /* Pretend that we did something useful for unknown signals. */
321 1.29 tv obsa.sa_handler = SIG_IGN;
322 1.29 tv sigemptyset(&obsa.sa_mask);
323 1.29 tv obsa.sa_flags = 0;
324 1.29 tv } else {
325 1.37 christos error = sigaction1(p, linux_to_native_signo[sig],
326 1.38 thorpej SCARG(uap, nsa) ? &nbsa : NULL,
327 1.38 thorpej SCARG(uap, osa) ? &obsa : NULL,
328 1.38 thorpej NULL, 0);
329 1.29 tv if (error)
330 1.29 tv return (error);
331 1.29 tv }
332 1.12 mycroft if (SCARG(uap, osa)) {
333 1.33 christos native_to_linux_sigaction(&olsa, &obsa);
334 1.12 mycroft error = copyout(&olsa, SCARG(uap, osa), sizeof(olsa));
335 1.12 mycroft if (error)
336 1.12 mycroft return (error);
337 1.1 fvdl }
338 1.12 mycroft return (0);
339 1.1 fvdl }
340 1.1 fvdl
341 1.1 fvdl int
342 1.17 erh linux_sigprocmask1(p, how, set, oset)
343 1.26 augustss struct proc *p;
344 1.17 erh int how;
345 1.17 erh const linux_old_sigset_t *set;
346 1.17 erh linux_old_sigset_t *oset;
347 1.8 thorpej {
348 1.14 erh linux_old_sigset_t nlss, olss;
349 1.12 mycroft sigset_t nbss, obss;
350 1.12 mycroft int error;
351 1.1 fvdl
352 1.17 erh switch (how) {
353 1.1 fvdl case LINUX_SIG_BLOCK:
354 1.12 mycroft how = SIG_BLOCK;
355 1.1 fvdl break;
356 1.1 fvdl case LINUX_SIG_UNBLOCK:
357 1.12 mycroft how = SIG_UNBLOCK;
358 1.1 fvdl break;
359 1.1 fvdl case LINUX_SIG_SETMASK:
360 1.12 mycroft how = SIG_SETMASK;
361 1.1 fvdl break;
362 1.1 fvdl default:
363 1.12 mycroft return (EINVAL);
364 1.1 fvdl }
365 1.1 fvdl
366 1.17 erh if (set) {
367 1.17 erh error = copyin(set, &nlss, sizeof(nlss));
368 1.12 mycroft if (error)
369 1.12 mycroft return (error);
370 1.33 christos linux_old_to_native_sigset(&nbss, &nlss);
371 1.12 mycroft }
372 1.12 mycroft error = sigprocmask1(p, how,
373 1.27 tron set ? &nbss : NULL, oset ? &obss : NULL);
374 1.12 mycroft if (error)
375 1.12 mycroft return (error);
376 1.17 erh if (oset) {
377 1.33 christos native_to_linux_old_sigset(&olss, &obss);
378 1.17 erh error = copyout(&olss, oset, sizeof(olss));
379 1.12 mycroft if (error)
380 1.12 mycroft return (error);
381 1.12 mycroft }
382 1.12 mycroft return (error);
383 1.17 erh }
384 1.17 erh
385 1.17 erh int
386 1.40 thorpej linux_sys_rt_sigprocmask(l, v, retval)
387 1.40 thorpej struct lwp *l;
388 1.17 erh void *v;
389 1.17 erh register_t *retval;
390 1.17 erh {
391 1.17 erh struct linux_sys_rt_sigprocmask_args /* {
392 1.17 erh syscallarg(int) how;
393 1.17 erh syscallarg(const linux_sigset_t *) set;
394 1.17 erh syscallarg(linux_sigset_t *) oset;
395 1.17 erh syscallarg(size_t) sigsetsize;
396 1.17 erh } */ *uap = v;
397 1.40 thorpej struct proc *p = l->l_proc;
398 1.24 fvdl linux_sigset_t nlss, olss, *oset;
399 1.24 fvdl const linux_sigset_t *set;
400 1.24 fvdl sigset_t nbss, obss;
401 1.24 fvdl int error, how;
402 1.24 fvdl
403 1.24 fvdl if (SCARG(uap, sigsetsize) != sizeof(linux_sigset_t))
404 1.24 fvdl return (EINVAL);
405 1.24 fvdl
406 1.24 fvdl switch (SCARG(uap, how)) {
407 1.24 fvdl case LINUX_SIG_BLOCK:
408 1.24 fvdl how = SIG_BLOCK;
409 1.24 fvdl break;
410 1.24 fvdl case LINUX_SIG_UNBLOCK:
411 1.24 fvdl how = SIG_UNBLOCK;
412 1.24 fvdl break;
413 1.24 fvdl case LINUX_SIG_SETMASK:
414 1.24 fvdl how = SIG_SETMASK;
415 1.24 fvdl break;
416 1.24 fvdl default:
417 1.24 fvdl return (EINVAL);
418 1.17 erh }
419 1.17 erh
420 1.24 fvdl set = SCARG(uap, set);
421 1.24 fvdl oset = SCARG(uap, oset);
422 1.24 fvdl
423 1.24 fvdl if (set) {
424 1.24 fvdl error = copyin(set, &nlss, sizeof(nlss));
425 1.24 fvdl if (error)
426 1.24 fvdl return (error);
427 1.33 christos linux_to_native_sigset(&nbss, &nlss);
428 1.24 fvdl }
429 1.24 fvdl error = sigprocmask1(p, how,
430 1.27 tron set ? &nbss : NULL, oset ? &obss : NULL);
431 1.28 tron if (!error && oset) {
432 1.33 christos native_to_linux_sigset(&olss, &obss);
433 1.24 fvdl error = copyout(&olss, oset, sizeof(olss));
434 1.24 fvdl }
435 1.24 fvdl return (error);
436 1.1 fvdl }
437 1.1 fvdl
438 1.1 fvdl int
439 1.40 thorpej linux_sys_rt_sigpending(l, v, retval)
440 1.40 thorpej struct lwp *l;
441 1.9 mycroft void *v;
442 1.1 fvdl register_t *retval;
443 1.1 fvdl {
444 1.14 erh struct linux_sys_rt_sigpending_args /* {
445 1.14 erh syscallarg(linux_sigset_t *) set;
446 1.14 erh syscallarg(size_t) sigsetsize;
447 1.14 erh } */ *uap = v;
448 1.40 thorpej struct proc *p = l->l_proc;
449 1.12 mycroft sigset_t bss;
450 1.12 mycroft linux_sigset_t lss;
451 1.6 mycroft
452 1.14 erh if (SCARG(uap, sigsetsize) != sizeof(linux_sigset_t))
453 1.14 erh return (EINVAL);
454 1.14 erh
455 1.14 erh sigpending1(p, &bss);
456 1.33 christos native_to_linux_sigset(&lss, &bss);
457 1.14 erh return copyout(&lss, SCARG(uap, set), sizeof(lss));
458 1.1 fvdl }
459 1.24 fvdl
460 1.1 fvdl int
461 1.40 thorpej linux_sys_sigpending(l, v, retval)
462 1.40 thorpej struct lwp *l;
463 1.8 thorpej void *v;
464 1.8 thorpej register_t *retval;
465 1.8 thorpej {
466 1.9 mycroft struct linux_sys_sigpending_args /* {
467 1.14 erh syscallarg(linux_old_sigset_t *) mask;
468 1.8 thorpej } */ *uap = v;
469 1.40 thorpej struct proc *p = l->l_proc;
470 1.12 mycroft sigset_t bss;
471 1.14 erh linux_old_sigset_t lss;
472 1.1 fvdl
473 1.12 mycroft sigpending1(p, &bss);
474 1.33 christos native_to_linux_old_sigset(&lss, &bss);
475 1.12 mycroft return copyout(&lss, SCARG(uap, set), sizeof(lss));
476 1.1 fvdl }
477 1.1 fvdl
478 1.1 fvdl int
479 1.40 thorpej linux_sys_sigsuspend(l, v, retval)
480 1.40 thorpej struct lwp *l;
481 1.8 thorpej void *v;
482 1.8 thorpej register_t *retval;
483 1.8 thorpej {
484 1.9 mycroft struct linux_sys_sigsuspend_args /* {
485 1.3 fvdl syscallarg(caddr_t) restart;
486 1.3 fvdl syscallarg(int) oldmask;
487 1.1 fvdl syscallarg(int) mask;
488 1.8 thorpej } */ *uap = v;
489 1.40 thorpej struct proc *p = l->l_proc;
490 1.14 erh linux_old_sigset_t lss;
491 1.14 erh sigset_t bss;
492 1.14 erh
493 1.14 erh lss = SCARG(uap, mask);
494 1.33 christos linux_old_to_native_sigset(&bss, &lss);
495 1.14 erh return (sigsuspend1(p, &bss));
496 1.14 erh }
497 1.14 erh int
498 1.40 thorpej linux_sys_rt_sigsuspend(l, v, retval)
499 1.40 thorpej struct lwp *l;
500 1.14 erh void *v;
501 1.14 erh register_t *retval;
502 1.14 erh {
503 1.14 erh struct linux_sys_rt_sigsuspend_args /* {
504 1.14 erh syscallarg(linux_sigset_t *) unewset;
505 1.14 erh syscallarg(size_t) sigsetsize;
506 1.14 erh } */ *uap = v;
507 1.40 thorpej struct proc *p = l->l_proc;
508 1.12 mycroft linux_sigset_t lss;
509 1.12 mycroft sigset_t bss;
510 1.14 erh int error;
511 1.14 erh
512 1.14 erh if (SCARG(uap, sigsetsize) != sizeof(linux_sigset_t))
513 1.14 erh return (EINVAL);
514 1.14 erh
515 1.14 erh error = copyin(SCARG(uap, unewset), &lss, sizeof(linux_sigset_t));
516 1.14 erh if (error)
517 1.14 erh return (error);
518 1.14 erh
519 1.33 christos linux_to_native_sigset(&bss, &lss);
520 1.14 erh
521 1.12 mycroft return (sigsuspend1(p, &bss));
522 1.3 fvdl }
523 1.3 fvdl
524 1.3 fvdl /*
525 1.14 erh * Once more: only a signal conversion is needed.
526 1.14 erh * Note: also used as sys_rt_queueinfo. The info field is ignored.
527 1.3 fvdl */
528 1.3 fvdl int
529 1.40 thorpej linux_sys_rt_queueinfo(l, v, retval)
530 1.40 thorpej struct lwp *l;
531 1.14 erh void *v;
532 1.3 fvdl register_t *retval;
533 1.14 erh {
534 1.14 erh /* XXX XAX This isn't this really int, int, siginfo_t *, is it? */
535 1.14 erh #if 0
536 1.14 erh struct linux_sys_rt_queueinfo_args /* {
537 1.14 erh syscallarg(int) pid;
538 1.14 erh syscallarg(int) signum;
539 1.14 erh syscallarg(siginfo_t *) uinfo;
540 1.14 erh } */ *uap = v;
541 1.14 erh #endif
542 1.3 fvdl
543 1.14 erh /* XXX To really implement this we need to */
544 1.14 erh /* XXX keep a list of queued signals somewhere. */
545 1.40 thorpej return (linux_sys_kill(l, v, retval));
546 1.1 fvdl }
547 1.1 fvdl
548 1.1 fvdl int
549 1.40 thorpej linux_sys_kill(l, v, retval)
550 1.40 thorpej struct lwp *l;
551 1.8 thorpej void *v;
552 1.8 thorpej register_t *retval;
553 1.8 thorpej {
554 1.9 mycroft struct linux_sys_kill_args /* {
555 1.1 fvdl syscallarg(int) pid;
556 1.1 fvdl syscallarg(int) signum;
557 1.8 thorpej } */ *uap = v;
558 1.40 thorpej
559 1.9 mycroft struct sys_kill_args ka;
560 1.25 tron int sig;
561 1.6 mycroft
562 1.6 mycroft SCARG(&ka, pid) = SCARG(uap, pid);
563 1.25 tron sig = SCARG(uap, signum);
564 1.25 tron if (sig < 0 || sig >= LINUX__NSIG)
565 1.25 tron return (EINVAL);
566 1.37 christos SCARG(&ka, signum) = linux_to_native_signo[sig];
567 1.40 thorpej return sys_kill(l, &ka, retval);
568 1.1 fvdl }
569 1.30 christos
570 1.30 christos #ifdef LINUX_SS_ONSTACK
571 1.30 christos static void linux_to_native_sigaltstack __P((struct sigaltstack *,
572 1.30 christos const struct linux_sigaltstack *));
573 1.30 christos static void native_to_linux_sigaltstack __P((struct linux_sigaltstack *,
574 1.30 christos const struct sigaltstack *));
575 1.30 christos
576 1.30 christos static void
577 1.30 christos linux_to_native_sigaltstack(bss, lss)
578 1.30 christos struct sigaltstack *bss;
579 1.30 christos const struct linux_sigaltstack *lss;
580 1.30 christos {
581 1.30 christos bss->ss_sp = lss->ss_sp;
582 1.30 christos bss->ss_size = lss->ss_size;
583 1.30 christos if (lss->ss_flags & LINUX_SS_ONSTACK)
584 1.30 christos bss->ss_flags = SS_ONSTACK;
585 1.30 christos else if (lss->ss_flags & LINUX_SS_DISABLE)
586 1.30 christos bss->ss_flags = SS_DISABLE;
587 1.30 christos else
588 1.30 christos bss->ss_flags = 0;
589 1.30 christos }
590 1.30 christos
591 1.30 christos static void
592 1.30 christos native_to_linux_sigaltstack(lss, bss)
593 1.30 christos struct linux_sigaltstack *lss;
594 1.30 christos const struct sigaltstack *bss;
595 1.30 christos {
596 1.30 christos lss->ss_sp = bss->ss_sp;
597 1.30 christos lss->ss_size = bss->ss_size;
598 1.30 christos if (bss->ss_flags & SS_ONSTACK)
599 1.30 christos lss->ss_flags = LINUX_SS_ONSTACK;
600 1.30 christos else if (bss->ss_flags & SS_DISABLE)
601 1.30 christos lss->ss_flags = LINUX_SS_DISABLE;
602 1.30 christos else
603 1.30 christos lss->ss_flags = 0;
604 1.30 christos }
605 1.30 christos
606 1.30 christos int
607 1.40 thorpej linux_sys_sigaltstack(l, v, retval)
608 1.40 thorpej struct lwp *l;
609 1.30 christos void *v;
610 1.30 christos register_t *retval;
611 1.30 christos {
612 1.30 christos struct linux_sys_sigaltstack_args /* {
613 1.30 christos syscallarg(const struct linux_sigaltstack *) ss;
614 1.30 christos syscallarg(struct linux_sigaltstack *) oss;
615 1.30 christos } */ *uap = v;
616 1.40 thorpej struct proc *p = l->l_proc;
617 1.30 christos struct linux_sigaltstack ss;
618 1.30 christos struct sigaltstack nss, oss;
619 1.30 christos int error;
620 1.30 christos
621 1.30 christos if (SCARG(uap, ss) != NULL) {
622 1.30 christos if ((error = copyin(SCARG(uap, ss), &ss, sizeof(ss))) != 0)
623 1.30 christos return error;
624 1.30 christos linux_to_native_sigaltstack(&nss, &ss);
625 1.30 christos }
626 1.30 christos
627 1.30 christos error = sigaltstack1(p,
628 1.30 christos SCARG(uap, ss) ? &nss : NULL, SCARG(uap, oss) ? &oss : NULL);
629 1.30 christos if (error)
630 1.30 christos return error;
631 1.30 christos
632 1.30 christos if (SCARG(uap, oss) != NULL) {
633 1.30 christos native_to_linux_sigaltstack(&ss, &oss);
634 1.30 christos if ((error = copyout(&ss, SCARG(uap, oss), sizeof(ss))) != 0)
635 1.30 christos return error;
636 1.30 christos }
637 1.30 christos return 0;
638 1.30 christos }
639 1.30 christos #endif
640