compat_13_machdep.c revision 1.19
11.19Sdsl/* $NetBSD: compat_13_machdep.c,v 1.19 2007/12/20 23:02:42 dsl Exp $ */ 21.1Sthorpej 31.1Sthorpej/*- 41.1Sthorpej * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc. 51.1Sthorpej * All rights reserved. 61.1Sthorpej * 71.1Sthorpej * This code is derived from software contributed to The NetBSD Foundation 81.1Sthorpej * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility, 91.1Sthorpej * NASA Ames Research Center. 101.1Sthorpej * 111.1Sthorpej * Redistribution and use in source and binary forms, with or without 121.1Sthorpej * modification, are permitted provided that the following conditions 131.1Sthorpej * are met: 141.1Sthorpej * 1. Redistributions of source code must retain the above copyright 151.1Sthorpej * notice, this list of conditions and the following disclaimer. 161.1Sthorpej * 2. Redistributions in binary form must reproduce the above copyright 171.1Sthorpej * notice, this list of conditions and the following disclaimer in the 181.1Sthorpej * documentation and/or other materials provided with the distribution. 191.1Sthorpej * 3. All advertising materials mentioning features or use of this software 201.1Sthorpej * must display the following acknowledgement: 211.1Sthorpej * This product includes software developed by the NetBSD 221.1Sthorpej * Foundation, Inc. and its contributors. 231.1Sthorpej * 4. Neither the name of The NetBSD Foundation nor the names of its 241.1Sthorpej * contributors may be used to endorse or promote products derived 251.1Sthorpej * from this software without specific prior written permission. 261.1Sthorpej * 271.1Sthorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 281.1Sthorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 291.1Sthorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 301.1Sthorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 311.1Sthorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 321.1Sthorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 331.1Sthorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 341.1Sthorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 351.1Sthorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 361.1Sthorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 371.1Sthorpej * POSSIBILITY OF SUCH DAMAGE. 381.1Sthorpej */ 391.14Slukem 401.14Slukem#include <sys/cdefs.h> 411.19Sdsl__KERNEL_RCSID(0, "$NetBSD: compat_13_machdep.c,v 1.19 2007/12/20 23:02:42 dsl Exp $"); 421.7Smrg 431.7Smrg#include "opt_ddb.h" 441.1Sthorpej 451.1Sthorpej#include <sys/param.h> 461.1Sthorpej#include <sys/systm.h> 471.1Sthorpej#include <sys/proc.h> 481.1Sthorpej#include <sys/user.h> 491.1Sthorpej#include <sys/kernel.h> 501.1Sthorpej#include <sys/mount.h> 511.1Sthorpej#include <sys/signal.h> 521.1Sthorpej#include <sys/signalvar.h> 531.1Sthorpej 541.1Sthorpej#include <sys/syscallargs.h> 551.5Seeh#include <sparc64/sparc64/sigdebug.h> 561.1Sthorpej 571.15Schristos#include <compat/sys/signal.h> 581.15Schristos#include <compat/sys/signalvar.h> 591.1Sthorpej/* 601.1Sthorpej * System call to cleanup state after a signal 611.1Sthorpej * has been taken. Reset signal mask and 621.1Sthorpej * stack state from context left by sendsig (above), 631.1Sthorpej * and return to the given trap frame (if there is one). 641.1Sthorpej * Check carefully to make sure that the user has not 651.1Sthorpej * modified the state to gain improper privileges or to cause 661.1Sthorpej * a machine fault. 671.1Sthorpej */ 681.1Sthorpej/* ARGSUSED */ 691.1Sthorpejint 701.19Sdslcompat_13_sys_sigreturn(struct lwp *l, const struct compat_13_sys_sigreturn_args *uap, register_t *retval) 711.1Sthorpej{ 721.19Sdsl /* { 731.1Sthorpej syscallarg(struct sigcontext13 *) sigcntxp; 741.19Sdsl } */ 751.1Sthorpej struct sigcontext13 sc, *scp; 761.13Sthorpej struct trapframe64 *tf; 771.17Sad struct proc *p = l->l_proc; 781.1Sthorpej sigset_t mask; 791.1Sthorpej 801.1Sthorpej /* First ensure consistent stack state (see sendsig). */ 811.1Sthorpej write_user_windows(); 821.13Sthorpej if (rwindow_save(l)) { 831.5Seeh#ifdef DEBUG 841.13Sthorpej printf("compat_13_sys_sigreturn: rwindow_save(%p) failed, sending SIGILL\n", l); 851.8Spk#ifdef DDB 861.5Seeh Debugger(); 871.5Seeh#endif 881.8Spk#endif 891.17Sad mutex_enter(&p->p_smutex); 901.13Sthorpej sigexit(l, SIGILL); 911.5Seeh } 921.5Seeh#ifdef DEBUG 931.5Seeh if (sigdebug & SDB_FOLLOW) { 941.5Seeh printf("compat_13_sys_sigreturn: %s[%d], sigcntxp %p\n", 951.5Seeh p->p_comm, p->p_pid, SCARG(uap, sigcntxp)); 961.8Spk#ifdef DDB 971.5Seeh if (sigdebug & SDB_DDB) Debugger(); 981.8Spk#endif 991.5Seeh } 1001.5Seeh#endif 1011.1Sthorpej 1021.1Sthorpej scp = SCARG(uap, sigcntxp); 1031.18Schristos if ((vaddr_t)scp & 3 || (copyin((void *)scp, &sc, sizeof sc) != 0)) 1041.5Seeh#ifdef DEBUG 1051.5Seeh { 1061.5Seeh printf("compat_13_sys_sigreturn: copyin failed: scp=%p\n", scp); 1071.8Spk#ifdef DDB 1081.5Seeh Debugger(); 1091.8Spk#endif 1101.1Sthorpej return (EFAULT); 1111.5Seeh } 1121.5Seeh#else 1131.5Seeh return (EFAULT); 1141.5Seeh#endif 1151.5Seeh 1161.1Sthorpej scp = ≻ 1171.1Sthorpej 1181.13Sthorpej tf = l->l_md.md_tf; 1191.1Sthorpej /* 1201.1Sthorpej * Only the icc bits in the psr are used, so it need not be 1211.1Sthorpej * verified. pc and npc must be multiples of 4. This is all 1221.1Sthorpej * that is required; if it holds, just do it. 1231.1Sthorpej */ 1241.3Seeh if (((scp->sc_pc | scp->sc_npc) & 3) != 0 || scp->sc_pc == 0 || scp->sc_npc == 0) 1251.3Seeh#ifdef DEBUG 1261.3Seeh { 1271.12Seeh printf("compat_13_sys_sigreturn: pc %p or npc %p invalid\n", 1281.12Seeh (void *)scp->sc_pc, (void *)scp->sc_npc); 1291.8Spk#ifdef DDB 1301.3Seeh Debugger(); 1311.8Spk#endif 1321.3Seeh return (EINVAL); 1331.3Seeh } 1341.3Seeh#endif 1351.1Sthorpej return (EINVAL); 1361.1Sthorpej /* take only psr ICC field */ 1371.4Smrg#ifdef __arch64__ 1381.2Seeh tf->tf_tstate = (int64_t)(tf->tf_tstate & ~TSTATE_CCR) | scp->sc_tstate; 1391.2Seeh#else 1401.1Sthorpej tf->tf_tstate = (int64_t)(tf->tf_tstate & ~TSTATE_CCR) | PSRCC_TO_TSTATE(scp->sc_psr); 1411.2Seeh#endif 1421.1Sthorpej tf->tf_pc = scp->sc_pc; 1431.1Sthorpej tf->tf_npc = scp->sc_npc; 1441.1Sthorpej tf->tf_global[1] = scp->sc_g1; 1451.1Sthorpej tf->tf_out[0] = scp->sc_o0; 1461.1Sthorpej tf->tf_out[6] = scp->sc_sp; 1471.5Seeh#ifdef DEBUG 1481.5Seeh if (sigdebug & SDB_FOLLOW) { 1491.12Seeh printf("compat_13_sys_sigreturn: return trapframe pc=%llx sp=%llx tstate=%llx\n", 1501.12Seeh (long long)tf->tf_pc, (long long)tf->tf_out[6], 1511.12Seeh (long long)tf->tf_tstate); 1521.8Spk#ifdef DDB 1531.5Seeh if (sigdebug & SDB_DDB) Debugger(); 1541.8Spk#endif 1551.5Seeh } 1561.5Seeh#endif 1571.1Sthorpej 1581.17Sad mutex_enter(&p->p_smutex); 1591.1Sthorpej if (scp->sc_onstack & SS_ONSTACK) 1601.17Sad l->l_sigstk.ss_flags |= SS_ONSTACK; 1611.1Sthorpej else 1621.17Sad l->l_sigstk.ss_flags &= ~SS_ONSTACK; 1631.1Sthorpej 1641.1Sthorpej /* Restore signal mask */ 1651.1Sthorpej native_sigset13_to_sigset(&scp->sc_mask, &mask); 1661.17Sad (void) sigprocmask1(l, SIG_SETMASK, &mask, 0); 1671.17Sad mutex_exit(&p->p_smutex); 1681.1Sthorpej 1691.1Sthorpej return (EJUSTRETURN); 1701.1Sthorpej} 171