Home | History | Annotate | Line # | Download | only in powerpc
linux_machdep.c revision 1.5.4.11
      1  1.5.4.11   nathanw /*	$NetBSD: linux_machdep.c,v 1.5.4.11 2002/10/18 02:41:11 nathanw Exp $ */
      2       1.1      manu 
      3       1.1      manu /*-
      4       1.1      manu  * Copyright (c) 1995, 2000, 2001 The NetBSD Foundation, Inc.
      5       1.1      manu  * All rights reserved.
      6       1.1      manu  *
      7       1.1      manu  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1      manu  * by Frank van der Linden and Emmanuel Dreyfus.
      9       1.1      manu  *
     10       1.1      manu  * Redistribution and use in source and binary forms, with or without
     11       1.1      manu  * modification, are permitted provided that the following conditions
     12       1.1      manu  * are met:
     13       1.1      manu  * 1. Redistributions of source code must retain the above copyright
     14       1.1      manu  *    notice, this list of conditions and the following disclaimer.
     15       1.1      manu  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1      manu  *    notice, this list of conditions and the following disclaimer in the
     17       1.1      manu  *    documentation and/or other materials provided with the distribution.
     18       1.1      manu  * 3. All advertising materials mentioning features or use of this software
     19       1.1      manu  *    must display the following acknowledgement:
     20       1.1      manu  *	This product includes software developed by the NetBSD
     21       1.1      manu  *	Foundation, Inc. and its contributors.
     22       1.1      manu  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23       1.1      manu  *    contributors may be used to endorse or promote products derived
     24       1.1      manu  *    from this software without specific prior written permission.
     25       1.1      manu  *
     26       1.1      manu  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27       1.1      manu  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28       1.1      manu  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29       1.1      manu  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30       1.1      manu  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31       1.1      manu  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32       1.1      manu  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33       1.1      manu  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34       1.1      manu  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35       1.1      manu  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36       1.1      manu  * POSSIBILITY OF SUCH DAMAGE.
     37       1.1      manu  */
     38   1.5.4.3   nathanw 
     39   1.5.4.3   nathanw #include <sys/cdefs.h>
     40  1.5.4.11   nathanw __KERNEL_RCSID(0, "$NetBSD: linux_machdep.c,v 1.5.4.11 2002/10/18 02:41:11 nathanw Exp $");
     41       1.1      manu 
     42       1.1      manu #include <sys/param.h>
     43       1.1      manu #include <sys/systm.h>
     44       1.1      manu #include <sys/signalvar.h>
     45       1.1      manu #include <sys/kernel.h>
     46       1.1      manu #include <sys/proc.h>
     47       1.1      manu #include <sys/user.h>
     48       1.1      manu #include <sys/buf.h>
     49       1.1      manu #include <sys/reboot.h>
     50       1.1      manu #include <sys/conf.h>
     51       1.1      manu #include <sys/exec.h>
     52       1.1      manu #include <sys/file.h>
     53       1.1      manu #include <sys/callout.h>
     54       1.1      manu #include <sys/malloc.h>
     55       1.1      manu #include <sys/mbuf.h>
     56       1.1      manu #include <sys/msgbuf.h>
     57       1.1      manu #include <sys/mount.h>
     58       1.1      manu #include <sys/vnode.h>
     59       1.1      manu #include <sys/device.h>
     60   1.5.4.6   nathanw #include <sys/sa.h>
     61       1.1      manu #include <sys/syscallargs.h>
     62       1.1      manu #include <sys/filedesc.h>
     63       1.1      manu #include <sys/exec_elf.h>
     64       1.1      manu #include <sys/disklabel.h>
     65       1.3      manu #include <sys/ioctl.h>
     66       1.1      manu #include <miscfs/specfs/specdev.h>
     67       1.1      manu 
     68       1.1      manu #include <compat/linux/common/linux_types.h>
     69       1.1      manu #include <compat/linux/common/linux_signal.h>
     70       1.1      manu #include <compat/linux/common/linux_util.h>
     71       1.1      manu #include <compat/linux/common/linux_ioctl.h>
     72       1.1      manu #include <compat/linux/common/linux_hdio.h>
     73       1.1      manu #include <compat/linux/common/linux_exec.h>
     74       1.1      manu #include <compat/linux/common/linux_machdep.h>
     75       1.1      manu 
     76       1.1      manu #include <compat/linux/linux_syscallargs.h>
     77       1.1      manu 
     78       1.1      manu #include <machine/cpu.h>
     79   1.5.4.2   nathanw #include <machine/fpu.h>
     80       1.1      manu #include <machine/psl.h>
     81       1.1      manu #include <machine/reg.h>
     82       1.1      manu #include <machine/vmparam.h>
     83       1.1      manu 
     84       1.1      manu /*
     85       1.1      manu  * To see whether wscons is configured (for virtual console ioctl calls).
     86       1.1      manu  */
     87   1.5.4.2   nathanw #if defined(_KERNEL_OPT)
     88       1.1      manu #include "wsdisplay.h"
     89       1.1      manu #endif
     90       1.1      manu #if (NWSDISPLAY > 0)
     91       1.1      manu #include <dev/wscons/wsconsio.h>
     92       1.1      manu #include <dev/wscons/wsdisplay_usl_io.h>
     93       1.1      manu #endif
     94       1.1      manu 
     95       1.1      manu /*
     96       1.1      manu  * Set set up registers on exec.
     97       1.1      manu  * XXX not used at the moment since in sys/kern/exec_conf, LINUX_COMPAT
     98       1.1      manu  * entry uses NetBSD's native setregs instead of linux_setregs
     99       1.1      manu  */
    100       1.1      manu void
    101   1.5.4.8   nathanw linux_setregs(l, pack, stack)
    102   1.5.4.8   nathanw 	struct lwp *l;
    103       1.1      manu 	struct exec_package *pack;
    104       1.1      manu 	u_long stack;
    105       1.1      manu {
    106   1.5.4.8   nathanw 	setregs(l, pack, stack);
    107       1.1      manu }
    108       1.1      manu 
    109       1.1      manu /*
    110       1.1      manu  * Send an interrupt to process.
    111       1.1      manu  *
    112       1.1      manu  * Adapted from arch/powerpc/powerpc/sig_machdep.c:sendsig and
    113       1.1      manu  * compat/linux/arch/i386/linux_machdep.c:linux_sendsig
    114       1.1      manu  *
    115   1.5.4.1   nathanw  * XXX Does not work well yet with RT signals
    116       1.1      manu  *
    117       1.1      manu  */
    118       1.1      manu 
    119       1.1      manu void
    120   1.5.4.9   nathanw linux_sendsig(sig, mask, code)  /* XXX Check me */
    121       1.1      manu 	int sig;
    122       1.1      manu 	sigset_t *mask;
    123       1.1      manu 	u_long code;
    124       1.1      manu {
    125   1.5.4.8   nathanw 	struct lwp *l = curlwp;
    126   1.5.4.8   nathanw 	struct proc *p = l->l_proc;
    127       1.1      manu 	struct trapframe *tf;
    128   1.5.4.9   nathanw 	sig_t catcher = SIGACTION(p, sig).sa_handler;
    129   1.5.4.2   nathanw 	struct linux_sigregs frame;
    130       1.4  christos 	struct linux_pt_regs linux_regs;
    131       1.1      manu 	struct linux_sigcontext sc;
    132   1.5.4.2   nathanw 	register_t fp;
    133       1.1      manu 	int onstack;
    134       1.1      manu 	int i;
    135       1.1      manu 
    136   1.5.4.8   nathanw 	tf = trapframe(l);
    137       1.1      manu 
    138       1.1      manu 	/*
    139       1.1      manu 	 * Do we need to jump onto the signal stack?
    140       1.1      manu 	 */
    141       1.1      manu 	onstack =
    142       1.1      manu 	    (p->p_sigctx.ps_sigstk.ss_flags & (SS_DISABLE | SS_ONSTACK)) == 0 &&
    143       1.1      manu 	    (SIGACTION(p, sig).sa_flags & SA_ONSTACK) != 0;
    144       1.1      manu 
    145       1.1      manu 	/*
    146       1.1      manu 	 * Signal stack is broken (see at the end of linux_sigreturn), so we do
    147       1.1      manu 	 * not use it yet. XXX fix this.
    148       1.1      manu 	 */
    149       1.1      manu 	onstack=0;
    150       1.1      manu 
    151       1.1      manu 	/*
    152       1.1      manu 	 * Allocate space for the signal handler context.
    153       1.1      manu 	 */
    154       1.4  christos 	if (onstack) {
    155   1.5.4.2   nathanw 		fp = (register_t)
    156       1.4  christos 		    ((caddr_t)p->p_sigctx.ps_sigstk.ss_sp +
    157       1.1      manu 		    p->p_sigctx.ps_sigstk.ss_size);
    158       1.4  christos 	} else {
    159   1.5.4.2   nathanw 		fp = tf->fixreg[1];
    160       1.4  christos 	}
    161   1.5.4.2   nathanw #ifdef DEBUG_LINUX
    162   1.5.4.2   nathanw 	printf("fp at start of linux_sendsig = %x\n", fp);
    163   1.5.4.2   nathanw #endif
    164   1.5.4.2   nathanw 	fp -= sizeof(struct linux_sigregs);
    165   1.5.4.2   nathanw 	fp &= ~0xf;
    166       1.1      manu 
    167       1.1      manu 	/*
    168       1.1      manu 	 * Prepare a sigcontext for later.
    169       1.1      manu 	 */
    170   1.5.4.2   nathanw 	memset(&sc, 0, sizeof sc);
    171   1.5.4.5   nathanw 	sc.lsignal = (int)native_to_linux_signo[sig];
    172       1.1      manu 	sc.lhandler = (unsigned long)catcher;
    173   1.5.4.4   nathanw 	native_to_linux_old_extra_sigset(&sc.lmask, &sc._unused[3], mask);
    174       1.1      manu 	sc.lregs = (struct linux_pt_regs*)fp;
    175       1.1      manu 
    176       1.1      manu 	/*
    177       1.1      manu 	 * Setup the signal stack frame as Linux does it in
    178       1.1      manu 	 * arch/ppc/kernel/signal.c:setup_frame()
    179       1.1      manu 	 *
    180       1.1      manu 	 * Save register context.
    181       1.1      manu 	 */
    182       1.4  christos 	for (i = 0; i < 32; i++)
    183       1.1      manu 		linux_regs.lgpr[i] = tf->fixreg[i];
    184       1.1      manu 	linux_regs.lnip = tf->srr0;
    185       1.1      manu 	linux_regs.lmsr = tf->srr1;
    186       1.1      manu 	linux_regs.lorig_gpr3 = tf->fixreg[3]; /* XXX Is that right? */
    187       1.1      manu 	linux_regs.lctr = tf->ctr;
    188       1.1      manu 	linux_regs.llink = tf->lr;
    189       1.1      manu 	linux_regs.lxer = tf->xer;
    190       1.1      manu 	linux_regs.lccr = tf->cr;
    191       1.1      manu 	linux_regs.lmq = 0;  			/* Unused, 601 only */
    192   1.5.4.2   nathanw 	linux_regs.ltrap = tf->exc;
    193       1.1      manu 	linux_regs.ldar = tf->dar;
    194   1.5.4.2   nathanw 	linux_regs.ldsisr = tf->dsisr;
    195   1.5.4.2   nathanw 	linux_regs.lresult = 0;
    196       1.1      manu 
    197   1.5.4.2   nathanw 	memset(&frame, 0, sizeof(frame));
    198   1.5.4.2   nathanw 	memcpy(&frame.lgp_regs, &linux_regs, sizeof(linux_regs));
    199   1.5.4.2   nathanw 
    200  1.5.4.10   nathanw 	save_fpu_lwp(curlwp);
    201   1.5.4.2   nathanw 	memcpy(&frame.lfp_regs, curpcb->pcb_fpu.fpr, sizeof(frame.lfp_regs));
    202       1.1      manu 
    203       1.1      manu 	/*
    204       1.4  christos 	 * Copy Linux's signal trampoline on the user stack It should not
    205   1.5.4.1   nathanw 	 * be used, but Linux binaries might expect it to be there.
    206       1.1      manu 	 */
    207       1.4  christos 	frame.ltramp[0] = 0x38997777; /* li r0, 0x7777 */
    208       1.4  christos 	frame.ltramp[1] = 0x44000002; /* sc */
    209       1.1      manu 
    210       1.1      manu 	/*
    211       1.1      manu 	 * Move it to the user stack
    212       1.1      manu 	 * There is a little trick here, about the LINUX_ABIGAP: the
    213       1.1      manu 	 * linux_sigreg structure has a 56 int gap to support rs6000/xcoff
    214       1.1      manu 	 * binaries. But the Linux kernel seems to do without it, and it
    215       1.1      manu 	 * just skip it when building the stack frame. Hence the LINUX_ABIGAP.
    216       1.1      manu 	 */
    217   1.5.4.2   nathanw 	if (copyout(&frame, (caddr_t)fp, sizeof (frame) - LINUX_ABIGAP) != 0) {
    218       1.1      manu 		/*
    219       1.1      manu 		 * Process has trashed its stack; give it an illegal
    220   1.5.4.2   nathanw 		 * instruction to halt it in its tracks.
    221       1.1      manu 		 */
    222   1.5.4.8   nathanw 		sigexit(l, SIGILL);
    223       1.1      manu 		/* NOTREACHED */
    224       1.1      manu 	}
    225       1.1      manu 
    226       1.1      manu 	/*
    227       1.1      manu 	 * Add a sigcontext on the stack
    228       1.1      manu 	 */
    229   1.5.4.2   nathanw 	fp -= sizeof(struct linux_sigcontext);
    230   1.5.4.2   nathanw 	if (copyout(&sc, (caddr_t)fp, sizeof (struct linux_sigcontext)) != 0) {
    231       1.1      manu 		/*
    232       1.1      manu 		 * Process has trashed its stack; give it an illegal
    233   1.5.4.2   nathanw 		 * instruction to halt it in its tracks.
    234       1.1      manu 		 */
    235   1.5.4.8   nathanw 		sigexit(l, SIGILL);
    236       1.1      manu 		/* NOTREACHED */
    237       1.1      manu 	}
    238       1.1      manu 
    239       1.1      manu 	/*
    240   1.5.4.2   nathanw 	 * Set the registers according to how the Linux process expects them.
    241   1.5.4.2   nathanw 	 * "Mind the gap" Linux expects a gap here.
    242       1.1      manu 	 */
    243   1.5.4.2   nathanw 	tf->fixreg[1] = fp - LINUX__SIGNAL_FRAMESIZE;
    244       1.1      manu 	tf->lr = (int)catcher;
    245   1.5.4.5   nathanw 	tf->fixreg[3] = (int)native_to_linux_signo[sig];
    246   1.5.4.2   nathanw 	tf->fixreg[4] = fp;
    247       1.1      manu 	tf->srr0 = (int)p->p_sigctx.ps_sigcode;
    248       1.1      manu 
    249   1.5.4.2   nathanw #ifdef DEBUG_LINUX
    250   1.5.4.2   nathanw 	printf("fp at end of linux_sendsig = %x\n", fp);
    251   1.5.4.2   nathanw #endif
    252       1.1      manu 	/*
    253       1.1      manu 	 * Remember that we're now on the signal stack.
    254       1.1      manu 	 */
    255       1.1      manu 	if (onstack)
    256       1.1      manu 		p->p_sigctx.ps_sigstk.ss_flags |= SS_ONSTACK;
    257       1.1      manu #ifdef DEBUG_LINUX
    258       1.1      manu 	printf("linux_sendsig: exitting. fp=0x%lx\n",(long)fp);
    259       1.1      manu #endif
    260       1.1      manu }
    261       1.1      manu 
    262       1.1      manu /*
    263       1.1      manu  * System call to cleanup state after a signal
    264       1.1      manu  * has been taken.  Reset signal mask and
    265       1.1      manu  * stack state from context left by sendsig (above).
    266       1.1      manu  * Return to previous pc and psl as specified by
    267       1.1      manu  * context left by sendsig. Check carefully to
    268       1.1      manu  * make sure that the user has not modified the
    269       1.1      manu  * psl to gain improper privileges or to cause
    270       1.1      manu  * a machine fault.
    271       1.1      manu  *
    272       1.1      manu  * XXX not tested
    273       1.1      manu  */
    274       1.1      manu int
    275   1.5.4.8   nathanw linux_sys_rt_sigreturn(l, v, retval)
    276   1.5.4.8   nathanw 	struct lwp *l;
    277       1.1      manu 	void *v;
    278       1.1      manu 	register_t *retval;
    279       1.1      manu {
    280       1.1      manu 	struct linux_sys_rt_sigreturn_args /* {
    281       1.1      manu 		syscallarg(struct linux_rt_sigframe *) sfp;
    282       1.1      manu 	} */ *uap = v;
    283   1.5.4.8   nathanw 	struct proc *p = l->l_proc;
    284       1.1      manu 	struct linux_rt_sigframe *scp, sigframe;
    285   1.5.4.2   nathanw 	struct linux_sigregs sregs;
    286   1.5.4.2   nathanw 	struct linux_pt_regs *lregs;
    287       1.1      manu 	struct trapframe *tf;
    288       1.1      manu 	sigset_t mask;
    289       1.1      manu 	int i;
    290       1.1      manu 
    291       1.1      manu 	/*
    292       1.1      manu 	 * The trampoline code hands us the context.
    293       1.1      manu 	 * It is unsafe to keep track of it ourselves, in the event that a
    294       1.1      manu 	 * program jumps out of a signal handler.
    295       1.1      manu 	 */
    296       1.1      manu 	scp = SCARG(uap, sfp);
    297       1.1      manu 
    298       1.1      manu 	/*
    299       1.1      manu 	 * Get the context from user stack
    300       1.1      manu 	 */
    301   1.5.4.2   nathanw 	if (copyin((caddr_t)scp, &sigframe, sizeof(*scp)))
    302       1.1      manu 		return (EFAULT);
    303       1.1      manu 
    304       1.1      manu 	/*
    305   1.5.4.2   nathanw 	 * Make sure, fpu is sync'ed
    306       1.1      manu 	 */
    307  1.5.4.10   nathanw 	save_fpu_lwp(curlwp);
    308       1.1      manu 
    309       1.1      manu 	/*
    310   1.5.4.2   nathanw 	 *  Restore register context.
    311       1.1      manu 	 */
    312   1.5.4.2   nathanw 	if (copyin((caddr_t)sigframe.luc.luc_context.lregs,
    313   1.5.4.2   nathanw 		   &sregs, sizeof(sregs)))
    314   1.5.4.2   nathanw 		return (EFAULT);
    315   1.5.4.2   nathanw 	lregs = (struct linux_pt_regs *)&sregs.lgp_regs;
    316   1.5.4.2   nathanw 
    317   1.5.4.8   nathanw 	tf = trapframe(l);
    318       1.1      manu #ifdef DEBUG_LINUX
    319       1.1      manu 	printf("linux_sys_sigreturn: trapframe=0x%lx scp=0x%lx\n",
    320       1.1      manu 	    (unsigned long)tf, (unsigned long)scp);
    321       1.1      manu #endif
    322       1.1      manu 
    323   1.5.4.2   nathanw 	if ((lregs->lmsr & PSL_USERSTATIC) !=  (tf->srr1 & PSL_USERSTATIC))
    324       1.1      manu 		return (EINVAL);
    325       1.1      manu 
    326       1.4  christos 	for (i = 0; i < 32; i++)
    327   1.5.4.2   nathanw 		tf->fixreg[i] = lregs->lgpr[i];
    328   1.5.4.2   nathanw 	tf->lr = lregs->llink;
    329   1.5.4.2   nathanw 	tf->cr = lregs->lccr;
    330   1.5.4.2   nathanw 	tf->xer = lregs->lxer;
    331   1.5.4.2   nathanw 	tf->ctr = lregs->lctr;
    332   1.5.4.2   nathanw 	tf->srr0 = lregs->lnip;
    333   1.5.4.2   nathanw 	tf->srr1 = lregs->lmsr;
    334   1.5.4.2   nathanw 
    335   1.5.4.2   nathanw 	memcpy(curpcb->pcb_fpu.fpr, (caddr_t)&sregs.lfp_regs,
    336   1.5.4.2   nathanw 	       sizeof(curpcb->pcb_fpu.fpr));
    337       1.1      manu 
    338       1.1      manu 	/*
    339       1.1      manu 	 * Restore signal stack.
    340       1.1      manu 	 *
    341       1.1      manu 	 * XXX cannot find the onstack information in Linux sig context.
    342       1.1      manu 	 * Is signal stack really supported on Linux?
    343       1.1      manu 	 *
    344       1.1      manu 	 * It seems to be supported in libc6...
    345       1.1      manu 	 */
    346       1.1      manu 	/* if (sc.sc_onstack & SS_ONSTACK)
    347       1.1      manu 		p->p_sigctx.ps_sigstk.ss_flags |= SS_ONSTACK;
    348       1.1      manu 	else */
    349       1.1      manu 		p->p_sigctx.ps_sigstk.ss_flags &= ~SS_ONSTACK;
    350       1.1      manu 
    351   1.5.4.2   nathanw 	/*
    352   1.5.4.2   nathanw 	 * Grab the signal mask
    353   1.5.4.2   nathanw 	 */
    354   1.5.4.4   nathanw 	linux_to_native_sigset(&mask, &sigframe.luc.luc_sigmask);
    355   1.5.4.2   nathanw 	(void) sigprocmask1(p, SIG_SETMASK, &mask, 0);
    356   1.5.4.2   nathanw 
    357       1.1      manu 	return (EJUSTRETURN);
    358       1.1      manu }
    359       1.1      manu 
    360       1.1      manu 
    361       1.1      manu /*
    362       1.1      manu  * The following needs code review for potential security issues
    363       1.1      manu  */
    364       1.1      manu int
    365   1.5.4.8   nathanw linux_sys_sigreturn(l, v, retval)
    366   1.5.4.8   nathanw 	struct lwp *l;
    367       1.1      manu 	void *v;
    368       1.1      manu 	register_t *retval;
    369       1.1      manu {
    370       1.1      manu 	struct linux_sys_sigreturn_args /* {
    371       1.1      manu 		syscallarg(struct linux_sigcontext *) scp;
    372       1.1      manu 	} */ *uap = v;
    373   1.5.4.8   nathanw 	struct proc *p = l->l_proc;
    374       1.1      manu 	struct linux_sigcontext *scp, context;
    375   1.5.4.2   nathanw 	struct linux_sigregs sregs;
    376   1.5.4.2   nathanw 	struct linux_pt_regs *lregs;
    377       1.1      manu 	struct trapframe *tf;
    378       1.1      manu 	sigset_t mask;
    379       1.1      manu 	int i;
    380       1.1      manu 
    381       1.1      manu 	/*
    382       1.1      manu 	 * The trampoline code hands us the context.
    383       1.1      manu 	 * It is unsafe to keep track of it ourselves, in the event that a
    384       1.1      manu 	 * program jumps out of a signal handler.
    385       1.1      manu 	 */
    386       1.1      manu 	scp = SCARG(uap, scp);
    387       1.1      manu 
    388       1.1      manu 	/*
    389   1.5.4.2   nathanw 	 * Get the context from user stack
    390       1.1      manu 	 */
    391   1.5.4.2   nathanw 	if (copyin(scp, &context, sizeof(*scp)))
    392   1.5.4.2   nathanw 		return (EFAULT);
    393       1.1      manu 
    394       1.1      manu 	/*
    395   1.5.4.2   nathanw 	 * Make sure, fpu is in sync
    396       1.1      manu 	 */
    397  1.5.4.10   nathanw 	save_fpu_lwp(curlwp);
    398       1.1      manu 
    399       1.1      manu 	/*
    400   1.5.4.2   nathanw 	 *  Restore register context.
    401       1.1      manu 	 */
    402   1.5.4.2   nathanw 	if (copyin((caddr_t)context.lregs, &sregs, sizeof(sregs)))
    403   1.5.4.2   nathanw 		return (EFAULT);
    404   1.5.4.2   nathanw 	lregs = (struct linux_pt_regs *)&sregs.lgp_regs;
    405   1.5.4.2   nathanw 
    406   1.5.4.8   nathanw 	tf = trapframe(l);
    407       1.1      manu #ifdef DEBUG_LINUX
    408       1.1      manu 	printf("linux_sys_sigreturn: trapframe=0x%lx scp=0x%lx\n",
    409       1.1      manu 	    (unsigned long)tf, (unsigned long)scp);
    410       1.1      manu #endif
    411       1.1      manu 
    412   1.5.4.2   nathanw 	if ((lregs->lmsr & PSL_USERSTATIC) != (tf->srr1 & PSL_USERSTATIC))
    413       1.1      manu 		return (EINVAL);
    414       1.1      manu 
    415       1.4  christos 	for (i = 0; i < 32; i++)
    416   1.5.4.2   nathanw 		tf->fixreg[i] = lregs->lgpr[i];
    417   1.5.4.2   nathanw 	tf->lr = lregs->llink;
    418   1.5.4.2   nathanw 	tf->cr = lregs->lccr;
    419   1.5.4.2   nathanw 	tf->xer = lregs->lxer;
    420   1.5.4.2   nathanw 	tf->ctr = lregs->lctr;
    421   1.5.4.2   nathanw 	tf->srr0 = lregs->lnip;
    422   1.5.4.2   nathanw 	tf->srr1 = lregs->lmsr;
    423   1.5.4.2   nathanw 
    424   1.5.4.2   nathanw 	memcpy(curpcb->pcb_fpu.fpr, (caddr_t)&sregs.lfp_regs,
    425   1.5.4.2   nathanw 	       sizeof(curpcb->pcb_fpu.fpr));
    426       1.1      manu 
    427       1.1      manu 	/*
    428       1.1      manu 	 * Restore signal stack.
    429       1.1      manu 	 *
    430       1.1      manu 	 * XXX cannot find the onstack information in Linux sig context.
    431       1.1      manu 	 * Is signal stack really supported on Linux?
    432       1.1      manu 	 */
    433       1.4  christos #if 0
    434       1.4  christos 	if (sc.sc_onstack & SS_ONSTACK)
    435       1.1      manu 		p->p_sigctx.ps_sigstk.ss_flags |= SS_ONSTACK;
    436       1.4  christos 	else
    437       1.4  christos #endif
    438       1.1      manu 		p->p_sigctx.ps_sigstk.ss_flags &= ~SS_ONSTACK;
    439       1.1      manu 
    440       1.1      manu 	/* Restore signal mask. */
    441   1.5.4.4   nathanw 	linux_old_extra_to_native_sigset(&mask, &context.lmask,
    442   1.5.4.4   nathanw 	    &context._unused[3]);
    443       1.1      manu 	(void) sigprocmask1(p, SIG_SETMASK, &mask, 0);
    444       1.1      manu 
    445       1.1      manu 	return (EJUSTRETURN);
    446       1.1      manu }
    447       1.1      manu 
    448       1.1      manu 
    449   1.5.4.2   nathanw #if 0
    450       1.1      manu int
    451       1.1      manu linux_sys_modify_ldt(p, v, retval)
    452       1.1      manu 	struct proc *p;
    453       1.1      manu 	void *v;
    454       1.1      manu 	register_t *retval;
    455       1.1      manu {
    456       1.1      manu 	/*
    457       1.4  christos 	 * This syscall is not implemented in Linux/PowerPC: we should not
    458       1.4  christos 	 * be here
    459       1.1      manu 	 */
    460       1.1      manu #ifdef DEBUG_LINUX
    461       1.1      manu 	printf("linux_sys_modify_ldt: should not be here.\n");
    462       1.1      manu #endif
    463       1.1      manu   return 0;
    464       1.1      manu }
    465   1.5.4.2   nathanw #endif
    466       1.1      manu 
    467   1.5.4.1   nathanw /*
    468   1.5.4.1   nathanw  * major device numbers remapping
    469   1.5.4.1   nathanw  */
    470       1.1      manu dev_t
    471   1.5.4.4   nathanw linux_fakedev(dev, raw)
    472       1.1      manu 	dev_t dev;
    473   1.5.4.4   nathanw 	int raw;
    474       1.1      manu {
    475   1.5.4.7   nathanw 	/* XXX write me */
    476   1.5.4.7   nathanw 	return dev;
    477       1.1      manu }
    478       1.1      manu 
    479       1.1      manu /*
    480       1.1      manu  * We come here in a last attempt to satisfy a Linux ioctl() call
    481       1.1      manu  */
    482       1.1      manu int
    483       1.1      manu linux_machdepioctl(p, v, retval)
    484       1.1      manu 	struct proc *p;
    485       1.1      manu 	void *v;
    486       1.1      manu 	register_t *retval;
    487       1.1      manu {
    488       1.1      manu 	struct linux_sys_ioctl_args /* {
    489       1.1      manu 		syscallarg(int) fd;
    490       1.1      manu 		syscallarg(u_long) com;
    491       1.1      manu 		syscallarg(caddr_t) data;
    492       1.1      manu 	} */ *uap = v;
    493       1.1      manu 	struct sys_ioctl_args bia;
    494       1.1      manu 	u_long com;
    495       1.1      manu 
    496       1.1      manu 	SCARG(&bia, fd) = SCARG(uap, fd);
    497       1.1      manu 	SCARG(&bia, data) = SCARG(uap, data);
    498       1.1      manu 	com = SCARG(uap, com);
    499       1.1      manu 
    500       1.1      manu 	switch (com) {
    501       1.1      manu 	default:
    502       1.1      manu 		printf("linux_machdepioctl: invalid ioctl %08lx\n", com);
    503       1.1      manu 		return EINVAL;
    504       1.1      manu 	}
    505       1.1      manu 	SCARG(&bia, com) = com;
    506   1.5.4.8   nathanw 	/* XXX NJWLWP */
    507   1.5.4.8   nathanw 	return sys_ioctl(curlwp, &bia, retval);
    508       1.1      manu }
    509   1.5.4.2   nathanw #if 0
    510       1.1      manu /*
    511       1.1      manu  * Set I/O permissions for a process. Just set the maximum level
    512       1.1      manu  * right away (ignoring the argument), otherwise we would have
    513       1.1      manu  * to rely on I/O permission maps, which are not implemented.
    514       1.1      manu  */
    515       1.1      manu int
    516   1.5.4.8   nathanw linux_sys_iopl(l, v, retval)
    517   1.5.4.8   nathanw 	struct lwp *l;
    518       1.1      manu 	void *v;
    519       1.1      manu 	register_t *retval;
    520       1.1      manu {
    521       1.1      manu 	/*
    522       1.1      manu 	 * This syscall is not implemented in Linux/PowerPC: we should not be here
    523       1.1      manu 	 */
    524       1.1      manu #ifdef DEBUG_LINUX
    525       1.1      manu 	printf("linux_sys_iopl: should not be here.\n");
    526       1.1      manu #endif
    527       1.1      manu 	return 0;
    528       1.1      manu }
    529   1.5.4.2   nathanw #endif
    530       1.1      manu 
    531       1.1      manu /*
    532       1.1      manu  * See above. If a root process tries to set access to an I/O port,
    533       1.1      manu  * just let it have the whole range.
    534       1.1      manu  */
    535       1.1      manu int
    536   1.5.4.8   nathanw linux_sys_ioperm(l, v, retval)
    537   1.5.4.8   nathanw 	struct lwp *l;
    538       1.1      manu 	void *v;
    539       1.1      manu 	register_t *retval;
    540       1.1      manu {
    541       1.1      manu 	/*
    542       1.1      manu 	 * This syscall is not implemented in Linux/PowerPC: we should not be here
    543       1.1      manu 	 */
    544       1.1      manu #ifdef DEBUG_LINUX
    545       1.1      manu 	printf("linux_sys_ioperm: should not be here.\n");
    546       1.1      manu #endif
    547       1.1      manu 	return 0;
    548       1.1      manu }
    549       1.1      manu 
    550       1.1      manu /*
    551       1.1      manu  * wrapper linux_sys_new_uname() -> linux_sys_uname()
    552       1.1      manu  */
    553       1.1      manu int
    554   1.5.4.8   nathanw linux_sys_new_uname(l, v, retval)
    555   1.5.4.8   nathanw 	struct lwp *l;
    556       1.1      manu 	void *v;
    557       1.1      manu 	register_t *retval;
    558       1.1      manu {
    559   1.5.4.8   nathanw 	return linux_sys_uname(l, v, retval);
    560       1.1      manu }
    561       1.1      manu 
    562       1.1      manu /*
    563       1.1      manu  * wrapper linux_sys_new_select() -> linux_sys_select()
    564       1.1      manu  */
    565       1.1      manu int
    566   1.5.4.8   nathanw linux_sys_new_select(l, v, retval)
    567   1.5.4.8   nathanw 	struct lwp *l;
    568       1.1      manu 	void *v;
    569       1.1      manu 	register_t *retval;
    570       1.1      manu {
    571   1.5.4.8   nathanw 	return linux_sys_select(l, v, retval);
    572       1.1      manu }
    573