1 /* $NetBSD: sunos_machdep.c,v 1.36 2008/04/24 18:39:20 ad Exp $ */
4 * Copyright (c) 1982, 1986, 1990 The Regents of the University of California.
7 * This code is derived from software contributed to Berkeley by
8 * the Systems Programming Group of the University of Utah Computer
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * from: Utah $Hdr: machdep.c 1.63 91/04/24$
37 * @(#)machdep.c 7.16 (Berkeley) 6/3/91
40 * Copyright (c) 1988 University of Utah.
42 * This code is derived from software contributed to Berkeley by
43 * the Systems Programming Group of the University of Utah Computer
46 * Redistribution and use in source and binary forms, with or without
47 * modification, are permitted provided that the following conditions
49 * 1. Redistributions of source code must retain the above copyright
50 * notice, this list of conditions and the following disclaimer.
51 * 2. Redistributions in binary form must reproduce the above copyright
52 * notice, this list of conditions and the following disclaimer in the
53 * documentation and/or other materials provided with the distribution.
54 * 3. All advertising materials mentioning features or use of this software
55 * must display the following acknowledgement:
56 * This product includes software developed by the University of
57 * California, Berkeley and its contributors.
58 * 4. Neither the name of the University nor the names of its contributors
59 * may be used to endorse or promote products derived from this software
60 * without specific prior written permission.
62 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
63 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
64 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
65 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
66 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
67 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
68 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
69 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
70 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
71 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
74 * from: Utah $Hdr: machdep.c 1.63 91/04/24$
76 * @(#)machdep.c 7.16 (Berkeley) 6/3/91
79 #include <sys/cdefs.h>
80 __KERNEL_RCSID(0, "$NetBSD: sunos_machdep.c,v 1.36 2008/04/24 18:39:20 ad Exp $");
82 #include <sys/param.h>
83 #include <sys/systm.h>
84 #include <sys/namei.h>
86 #include <sys/filedesc.h>
87 #include <sys/ioctl.h>
88 #include <sys/mount.h>
89 #include <sys/kernel.h>
90 #include <sys/signal.h>
91 #include <sys/signalvar.h>
92 #include <sys/malloc.h>
95 #include <sys/syscallargs.h>
96 #include <compat/sunos/sunos.h>
97 #include <compat/sunos/sunos_syscallargs.h>
98 #include <compat/sys/signal.h>
99 #include <compat/sys/signalvar.h>
101 #include <machine/reg.h>
106 #define SDB_FOLLOW 0x01
107 #define SDB_KSTACK 0x02
108 #define SDB_FPSTATE 0x04
111 /* sigh.. I guess it's too late to change now, but "our" sigcontext
112 is plain vax, not very 68000 (ap, for example..) */
113 struct sunos_sigcontext
{
114 int sc_onstack
; /* sigstack state to restore */
115 int sc_mask
; /* signal mask to restore */
116 int sc_sp
; /* sp to restore */
117 int sc_pc
; /* pc to restore */
118 int sc_ps
; /* psl to restore */
120 struct sunos_sigframe
{
121 int sf_signum
; /* signo for handler */
122 int sf_code
; /* additional info for handler */
123 struct sunos_sigcontext
*sf_scp
;/* context pointer for handler */
124 u_int sf_addr
; /* even more info for handler */
125 struct sunos_sigcontext sf_sc
; /* I don't know if that's what
129 * much simpler sendsig() for SunOS processes, as SunOS does the whole
130 * context-saving in usermode. For now, no hardware information (ie.
131 * frames for buserror etc) is saved. This could be fatal, so I take
132 * SIG_DFL for "dangerous" signals.
135 sunos_sendsig(const ksiginfo_t
*ksi
, const sigset_t
*mask
)
137 u_long code
= KSI_TRAPCODE(ksi
);
138 int sig
= ksi
->ksi_signo
;
139 struct lwp
*l
= curlwp
;
140 struct proc
*p
= l
->l_proc
;
141 struct frame
*frame
= (struct frame
*)l
->l_md
.md_regs
;
143 struct sunos_sigframe
*fp
= getframe(l
, sig
, &onstack
), kf
;
144 sig_t catcher
= SIGACTION(p
, sig
).sa_handler
;
145 short ft
= frame
->f_format
;
148 * if this is a hardware fault (ft >= FMT9), sunos_sendsig
149 * can't currently handle it. Reset signal actions and
150 * have the process die unconditionally.
153 SIGACTION(p
, sig
).sa_handler
= SIG_DFL
;
154 sigdelset(&p
->p_sigctx
.ps_sigignore
, sig
);
155 sigdelset(&p
->p_sigctx
.ps_sigcatch
, sig
);
156 sigdelset(&l
->l_sigmask
, sig
);
157 mutex_exit(p
->p_lock
);
159 mutex_enter(p
->p_lock
);
166 if ((sigdebug
& SDB_KSTACK
) && p
->p_pid
== sigpid
)
167 printf("sunos_sendsig(%d): sig %d ssp %p usp %p scp %p ft %d\n",
168 p
->p_pid
, sig
, &onstack
, fp
, &fp
->sf_sc
, ft
);
171 /* Build stack frame for signal trampoline. */
174 kf
.sf_scp
= &fp
->sf_sc
;
175 kf
.sf_addr
= ~0; /* means: not computable */
177 /* Build the signal context to be used by sigreturn. */
178 kf
.sf_sc
.sc_sp
= frame
->f_regs
[SP
];
179 kf
.sf_sc
.sc_pc
= frame
->f_pc
;
180 kf
.sf_sc
.sc_ps
= frame
->f_sr
;
182 /* Save signal stack. */
183 kf
.sf_sc
.sc_onstack
= l
->l_sigstk
.ss_flags
& SS_ONSTACK
;
185 /* Save signal mask. */
186 native_sigset_to_sigset13(mask
, &kf
.sf_sc
.sc_mask
);
188 sendsig_reset(l
, sig
);
189 mutex_exit(p
->p_lock
);
190 error
= copyout(&kf
, fp
, sizeof(kf
));
191 mutex_enter(p
->p_lock
);
195 if ((sigdebug
& SDB_KSTACK
) && p
->p_pid
== sigpid
)
196 printf("sendsig(%d): copyout failed on sig %d\n",
200 * Process has trashed its stack; give it an illegal
201 * instruction to halt it in its tracks.
207 if (sigdebug
& SDB_FOLLOW
)
208 printf("sunos_sendsig(%d): sig %d scp %p sc_sp %x\n",
209 p
->p_pid
, sig
, &fp
->sf_sc
,kf
.sf_sc
.sc_sp
);
212 buildcontext(l
, catcher
, fp
);
214 /* Remember that we're now on the signal stack. */
216 l
->l_sigstk
.ss_flags
|= SS_ONSTACK
;
219 if ((sigdebug
& SDB_KSTACK
) && p
->p_pid
== sigpid
)
220 printf("sunos_sendsig(%d): sig %d returns\n",
227 * System call to cleanup state after a signal
228 * has been taken. Reset signal mask and
229 * stack state from context left by sendsig (above).
230 * Return to previous pc and psl as specified by
231 * context left by sendsig. Check carefully to
232 * make sure that the user has not modified the
233 * psl to gain improper privileges or to cause
237 sunos_sys_sigreturn(struct lwp
*l
, const struct sunos_sys_sigreturn_args
*uap
, register_t
*retval
)
239 struct proc
*p
= l
->l_proc
;
240 struct sunos_sigcontext
*scp
;
242 struct sunos_sigcontext tsigc
;
245 scp
= (struct sunos_sigcontext
*) SCARG(uap
, sigcntxp
);
247 if (sigdebug
& SDB_FOLLOW
)
248 printf("sunos_sigreturn: pid %d, scp %p\n", p
->p_pid
, scp
);
252 if (copyin((void *)scp
, (void *)&tsigc
, sizeof(tsigc
)) != 0)
256 /* Make sure the user isn't pulling a fast one on us! */
257 if ((scp
->sc_ps
& (PSL_MBZ
|PSL_IPL
|PSL_S
)) != 0)
261 * Restore the user supplied information
264 frame
= (struct frame
*) l
->l_md
.md_regs
;
265 frame
->f_regs
[SP
] = scp
->sc_sp
;
266 frame
->f_pc
= scp
->sc_pc
;
267 frame
->f_sr
= scp
->sc_ps
;
269 mutex_enter(p
->p_lock
);
271 /* Restore signal stack. */
272 if (scp
->sc_onstack
& SS_ONSTACK
)
273 l
->l_sigstk
.ss_flags
|= SS_ONSTACK
;
275 l
->l_sigstk
.ss_flags
&= ~SS_ONSTACK
;
277 /* Restore signal mask. */
278 native_sigset13_to_sigset(&scp
->sc_mask
, &mask
);
279 (void)sigprocmask1(l
, SIG_SETMASK
, &mask
, 0);
281 mutex_exit(p
->p_lock
);