1 /* $NetBSD: sig_machdep.c,v 1.19 2009/12/14 00:46:07 matt Exp $ */ 2 3 /*- 4 * Copyright (c) 2003 The NetBSD Foundation, Inc. 5 * All rights reserved. 6 * 7 * This code is derived from software contributed to The NetBSD Foundation 8 * by Christos Zoulas. 9 * 10 * Redistribution and use in source and binary forms, with or without 11 * modification, are permitted provided that the following conditions 12 * are met: 13 * 1. Redistributions of source code must retain the above copyright 14 * notice, this list of conditions and the following disclaimer. 15 * 2. Redistributions in binary form must reproduce the above copyright 16 * notice, this list of conditions and the following disclaimer in the 17 * documentation and/or other materials provided with the distribution. 18 * 19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 29 * POSSIBILITY OF SUCH DAMAGE. 30 */ 31 32 #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */ 33 34 __KERNEL_RCSID(0, "$NetBSD: sig_machdep.c,v 1.19 2009/12/14 00:46:07 matt Exp $"); 35 36 #include "opt_cputype.h" 37 38 #include <sys/param.h> 39 #include <sys/systm.h> 40 #include <sys/kernel.h> 41 #include <sys/proc.h> 42 #include <sys/signal.h> 43 #include <sys/signalvar.h> 44 #include <sys/mount.h> 45 #include <sys/syscallargs.h> 46 47 #include <machine/cpu.h> 48 49 #include <mips/frame.h> 50 #include <mips/regnum.h> 51 52 void * 53 getframe(struct lwp *l, int sig, int *onstack) 54 { 55 struct proc *p = l->l_proc; 56 struct frame *fp = l->l_md.md_regs; 57 58 /* Do we need to jump onto the signal stack? */ 59 *onstack = (l->l_sigstk.ss_flags & (SS_DISABLE | SS_ONSTACK)) == 0 60 && (SIGACTION(p, sig).sa_flags & SA_ONSTACK) != 0; 61 if (*onstack) 62 return (char *)l->l_sigstk.ss_sp + l->l_sigstk.ss_size; 63 else 64 return (void *)(intptr_t)fp->f_regs[_R_SP]; 65 } 66 67 struct sigframe_siginfo { 68 siginfo_t sf_si; 69 ucontext_t sf_uc; 70 }; 71 72 /* 73 * Send a signal to process. 74 */ 75 void 76 sendsig_siginfo(const ksiginfo_t *ksi, const sigset_t *mask) 77 { 78 struct lwp *l = curlwp; 79 struct proc *p = l->l_proc; 80 struct sigacts *ps = p->p_sigacts; 81 int onstack, error; 82 int sig = ksi->ksi_signo; 83 struct sigframe_siginfo *fp = getframe(l, sig, &onstack); 84 struct frame *tf; 85 ucontext_t uc; 86 size_t ucsz; 87 sig_t catcher = SIGACTION(p, sig).sa_handler; 88 89 tf = l->l_md.md_regs; 90 fp--; 91 92 uc.uc_flags = _UC_SIGMASK 93 | ((l->l_sigstk.ss_flags & SS_ONSTACK) 94 ? _UC_SETSTACK : _UC_CLRSTACK); 95 uc.uc_sigmask = *mask; 96 uc.uc_link = l->l_ctxlink; 97 memset(&uc.uc_stack, 0, sizeof(uc.uc_stack)); 98 ucsz = (char *)&uc.__uc_pad - (char *)&uc; 99 sendsig_reset(l, sig); 100 mutex_exit(p->p_lock); 101 cpu_getmcontext(l, &uc.uc_mcontext, &uc.uc_flags); 102 error = copyout(&ksi->ksi_info, &fp->sf_si, sizeof(ksi->ksi_info)); 103 if (error == 0) 104 error = copyout(&uc, &fp->sf_uc, ucsz); 105 mutex_enter(p->p_lock); 106 107 if (error != 0) { 108 /* 109 * Process has trashed its stack; give it an illegal 110 * instruction to halt it in its tracks. 111 */ 112 sigexit(l, SIGILL); 113 /* NOTREACHED */ 114 } 115 116 /* 117 * Set up the registers to directly invoke the signal 118 * handler. The return address will be set up to point 119 * to the signal trampoline to bounce us back. 120 */ 121 tf->f_regs[_R_A0] = sig; 122 tf->f_regs[_R_A1] = (intptr_t)&fp->sf_si; 123 tf->f_regs[_R_A2] = (intptr_t)&fp->sf_uc; 124 125 tf->f_regs[_R_PC] = (intptr_t)catcher; 126 tf->f_regs[_R_T9] = (intptr_t)catcher; 127 tf->f_regs[_R_SP] = (intptr_t)fp; 128 tf->f_regs[_R_RA] = (intptr_t)ps->sa_sigdesc[sig].sd_tramp; 129 130 /* Remember that we're now on the signal stack. */ 131 if (onstack) 132 l->l_sigstk.ss_flags |= SS_ONSTACK; 133 } 134