Home | History | Annotate | Line # | Download | only in powerpc
linux_machdep.c revision 1.34.16.2
      1  1.34.16.2      matt /*	$NetBSD: linux_machdep.c,v 1.34.16.2 2008/01/09 01:51:05 matt 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.12     lukem 
     39       1.12     lukem #include <sys/cdefs.h>
     40  1.34.16.2      matt __KERNEL_RCSID(0, "$NetBSD: linux_machdep.c,v 1.34.16.2 2008/01/09 01:51:05 matt 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.1      manu #include <sys/syscallargs.h>
     61        1.1      manu #include <sys/filedesc.h>
     62        1.1      manu #include <sys/exec_elf.h>
     63        1.1      manu #include <sys/disklabel.h>
     64        1.3      manu #include <sys/ioctl.h>
     65        1.1      manu #include <miscfs/specfs/specdev.h>
     66        1.1      manu 
     67        1.1      manu #include <compat/linux/common/linux_types.h>
     68        1.1      manu #include <compat/linux/common/linux_signal.h>
     69        1.1      manu #include <compat/linux/common/linux_util.h>
     70        1.1      manu #include <compat/linux/common/linux_ioctl.h>
     71        1.1      manu #include <compat/linux/common/linux_hdio.h>
     72        1.1      manu #include <compat/linux/common/linux_exec.h>
     73        1.1      manu #include <compat/linux/common/linux_machdep.h>
     74        1.1      manu 
     75        1.1      manu #include <compat/linux/linux_syscallargs.h>
     76        1.1      manu 
     77  1.34.16.1      matt #include <sys/cpu.h>
     78       1.11       wiz #include <machine/fpu.h>
     79        1.1      manu #include <machine/psl.h>
     80        1.1      manu #include <machine/reg.h>
     81        1.1      manu #include <machine/vmparam.h>
     82        1.1      manu 
     83        1.1      manu /*
     84        1.1      manu  * To see whether wscons is configured (for virtual console ioctl calls).
     85        1.1      manu  */
     86       1.10       mrg #if defined(_KERNEL_OPT)
     87        1.1      manu #include "wsdisplay.h"
     88        1.1      manu #endif
     89        1.1      manu #if (NWSDISPLAY > 0)
     90        1.1      manu #include <dev/wscons/wsconsio.h>
     91        1.1      manu #include <dev/wscons/wsdisplay_usl_io.h>
     92        1.1      manu #endif
     93        1.1      manu 
     94       1.29     perry /*
     95        1.1      manu  * Set set up registers on exec.
     96        1.1      manu  * XXX not used at the moment since in sys/kern/exec_conf, LINUX_COMPAT
     97        1.1      manu  * entry uses NetBSD's native setregs instead of linux_setregs
     98        1.1      manu  */
     99        1.1      manu void
    100  1.34.16.2      matt linux_setregs(struct lwp *l, struct exec_package *pack, u_long stack)
    101       1.29     perry {
    102       1.20   thorpej 	setregs(l, pack, stack);
    103        1.1      manu }
    104        1.1      manu 
    105        1.1      manu /*
    106        1.1      manu  * Send an interrupt to process.
    107        1.1      manu  *
    108        1.1      manu  * Adapted from arch/powerpc/powerpc/sig_machdep.c:sendsig and
    109        1.1      manu  * compat/linux/arch/i386/linux_machdep.c:linux_sendsig
    110        1.1      manu  *
    111        1.6      manu  * XXX Does not work well yet with RT signals
    112        1.1      manu  *
    113        1.1      manu  */
    114        1.1      manu 
    115       1.23      matt void
    116       1.24  christos linux_sendsig(const ksiginfo_t *ksi, const sigset_t *mask)
    117        1.1      manu {
    118       1.26   thorpej 	const int sig = ksi->ksi_signo;
    119       1.20   thorpej 	struct lwp *l = curlwp;
    120       1.20   thorpej 	struct proc *p = l->l_proc;
    121        1.1      manu 	struct trapframe *tf;
    122       1.16   thorpej 	sig_t catcher = SIGACTION(p, sig).sa_handler;
    123        1.8      manu 	struct linux_sigregs frame;
    124        1.4  christos 	struct linux_pt_regs linux_regs;
    125        1.1      manu 	struct linux_sigcontext sc;
    126        1.8      manu 	register_t fp;
    127       1.32        ad 	int onstack, error;
    128        1.1      manu 	int i;
    129        1.1      manu 
    130       1.20   thorpej 	tf = trapframe(l);
    131       1.29     perry 
    132       1.29     perry 	/*
    133       1.29     perry 	 * Do we need to jump onto the signal stack?
    134        1.1      manu 	 */
    135        1.1      manu 	onstack =
    136       1.32        ad 	    (l->l_sigstk.ss_flags & (SS_DISABLE | SS_ONSTACK)) == 0 &&
    137        1.1      manu 	    (SIGACTION(p, sig).sa_flags & SA_ONSTACK) != 0;
    138        1.1      manu 
    139        1.1      manu 	/*
    140        1.1      manu 	 * Signal stack is broken (see at the end of linux_sigreturn), so we do
    141        1.1      manu 	 * not use it yet. XXX fix this.
    142        1.1      manu 	 */
    143        1.1      manu 	onstack=0;
    144        1.1      manu 
    145       1.29     perry 	/*
    146       1.29     perry 	 * Allocate space for the signal handler context.
    147        1.1      manu 	 */
    148        1.4  christos 	if (onstack) {
    149        1.8      manu 		fp = (register_t)
    150       1.34   tsutsui 		    ((char *)l->l_sigstk.ss_sp +
    151       1.32        ad 		    l->l_sigstk.ss_size);
    152        1.4  christos 	} else {
    153        1.8      manu 		fp = tf->fixreg[1];
    154        1.4  christos 	}
    155        1.8      manu #ifdef DEBUG_LINUX
    156        1.8      manu 	printf("fp at start of linux_sendsig = %x\n", fp);
    157        1.8      manu #endif
    158        1.8      manu 	fp -= sizeof(struct linux_sigregs);
    159        1.8      manu 	fp &= ~0xf;
    160        1.1      manu 
    161       1.29     perry 	/*
    162        1.1      manu 	 * Prepare a sigcontext for later.
    163        1.1      manu 	 */
    164        1.8      manu 	memset(&sc, 0, sizeof sc);
    165       1.14  christos 	sc.lsignal = (int)native_to_linux_signo[sig];
    166        1.1      manu 	sc.lhandler = (unsigned long)catcher;
    167       1.13  christos 	native_to_linux_old_extra_sigset(&sc.lmask, &sc._unused[3], mask);
    168        1.1      manu 	sc.lregs = (struct linux_pt_regs*)fp;
    169        1.1      manu 
    170        1.1      manu 	/*
    171       1.29     perry 	 * Setup the signal stack frame as Linux does it in
    172        1.1      manu 	 * arch/ppc/kernel/signal.c:setup_frame()
    173        1.1      manu 	 *
    174       1.29     perry 	 * Save register context.
    175        1.1      manu 	 */
    176       1.29     perry 	for (i = 0; i < 32; i++)
    177        1.1      manu 		linux_regs.lgpr[i] = tf->fixreg[i];
    178       1.29     perry 	linux_regs.lnip = tf->srr0;
    179       1.28      matt 	linux_regs.lmsr = tf->srr1 & PSL_USERSRR1;
    180        1.1      manu 	linux_regs.lorig_gpr3 = tf->fixreg[3]; /* XXX Is that right? */
    181        1.1      manu 	linux_regs.lctr = tf->ctr;
    182        1.1      manu 	linux_regs.llink = tf->lr;
    183        1.1      manu 	linux_regs.lxer = tf->xer;
    184       1.29     perry 	linux_regs.lccr = tf->cr;
    185        1.1      manu 	linux_regs.lmq = 0;  			/* Unused, 601 only */
    186        1.8      manu 	linux_regs.ltrap = tf->exc;
    187       1.29     perry 	linux_regs.ldar = tf->dar;
    188        1.8      manu 	linux_regs.ldsisr = tf->dsisr;
    189        1.8      manu 	linux_regs.lresult = 0;
    190        1.8      manu 
    191        1.8      manu 	memset(&frame, 0, sizeof(frame));
    192        1.8      manu 	memcpy(&frame.lgp_regs, &linux_regs, sizeof(linux_regs));
    193        1.1      manu 
    194       1.28      matt 	save_fpu_lwp(curlwp, FPU_SAVE);
    195       1.28      matt 	memcpy(&frame.lfp_regs, curpcb->pcb_fpu.fpreg, sizeof(frame.lfp_regs));
    196        1.1      manu 
    197        1.1      manu 	/*
    198        1.4  christos 	 * Copy Linux's signal trampoline on the user stack It should not
    199        1.6      manu 	 * be used, but Linux binaries might expect it to be there.
    200        1.1      manu 	 */
    201        1.4  christos 	frame.ltramp[0] = 0x38997777; /* li r0, 0x7777 */
    202        1.4  christos 	frame.ltramp[1] = 0x44000002; /* sc */
    203       1.29     perry 
    204        1.1      manu 	/*
    205        1.1      manu 	 * Move it to the user stack
    206       1.29     perry 	 * There is a little trick here, about the LINUX_ABIGAP: the
    207        1.1      manu 	 * linux_sigreg structure has a 56 int gap to support rs6000/xcoff
    208        1.1      manu 	 * binaries. But the Linux kernel seems to do without it, and it
    209        1.1      manu 	 * just skip it when building the stack frame. Hence the LINUX_ABIGAP.
    210        1.1      manu 	 */
    211       1.32        ad 	sendsig_reset(l, sig);
    212       1.32        ad 	mutex_exit(&p->p_smutex);
    213       1.33  christos 	error = copyout(&frame, (void *)fp, sizeof (frame) - LINUX_ABIGAP);
    214       1.32        ad 
    215       1.32        ad 	if (error != 0) {
    216        1.1      manu 		/*
    217        1.1      manu 		 * Process has trashed its stack; give it an illegal
    218        1.9      manu 		 * instruction to halt it in its tracks.
    219        1.1      manu 		 */
    220       1.32        ad 		mutex_enter(&p->p_smutex);
    221       1.20   thorpej 		sigexit(l, SIGILL);
    222        1.1      manu 		/* NOTREACHED */
    223        1.1      manu 	}
    224        1.1      manu 
    225        1.1      manu 	/*
    226        1.1      manu 	 * Add a sigcontext on the stack
    227        1.1      manu 	 */
    228        1.8      manu 	fp -= sizeof(struct linux_sigcontext);
    229       1.33  christos 	error = copyout(&sc, (void *)fp, sizeof (struct linux_sigcontext));
    230       1.32        ad 	mutex_enter(&p->p_smutex);
    231       1.32        ad 
    232       1.32        ad 	if (error != 0) {
    233        1.1      manu 		/*
    234        1.1      manu 		 * Process has trashed its stack; give it an illegal
    235        1.9      manu 		 * instruction to halt it in its tracks.
    236        1.1      manu 		 */
    237       1.20   thorpej 		sigexit(l, SIGILL);
    238        1.1      manu 		/* NOTREACHED */
    239        1.1      manu 	}
    240        1.1      manu 
    241        1.1      manu 	/*
    242        1.8      manu 	 * Set the registers according to how the Linux process expects them.
    243        1.8      manu 	 * "Mind the gap" Linux expects a gap here.
    244        1.1      manu 	 */
    245        1.8      manu 	tf->fixreg[1] = fp - LINUX__SIGNAL_FRAMESIZE;
    246        1.1      manu 	tf->lr = (int)catcher;
    247       1.14  christos 	tf->fixreg[3] = (int)native_to_linux_signo[sig];
    248        1.8      manu 	tf->fixreg[4] = fp;
    249        1.1      manu 	tf->srr0 = (int)p->p_sigctx.ps_sigcode;
    250        1.1      manu 
    251        1.8      manu #ifdef DEBUG_LINUX
    252        1.8      manu 	printf("fp at end of linux_sendsig = %x\n", fp);
    253        1.8      manu #endif
    254       1.29     perry 	/*
    255       1.29     perry 	 * Remember that we're now on the signal stack.
    256        1.1      manu 	 */
    257        1.1      manu 	if (onstack)
    258       1.32        ad 		l->l_sigstk.ss_flags |= SS_ONSTACK;
    259        1.1      manu #ifdef DEBUG_LINUX
    260        1.1      manu 	printf("linux_sendsig: exitting. fp=0x%lx\n",(long)fp);
    261        1.1      manu #endif
    262        1.1      manu }
    263        1.1      manu 
    264        1.1      manu /*
    265        1.1      manu  * System call to cleanup state after a signal
    266        1.1      manu  * has been taken.  Reset signal mask and
    267        1.1      manu  * stack state from context left by sendsig (above).
    268        1.1      manu  * Return to previous pc and psl as specified by
    269        1.1      manu  * context left by sendsig. Check carefully to
    270        1.1      manu  * make sure that the user has not modified the
    271        1.1      manu  * psl to gain improper privileges or to cause
    272        1.1      manu  * a machine fault.
    273        1.1      manu  *
    274        1.1      manu  * XXX not tested
    275        1.1      manu  */
    276        1.1      manu int
    277  1.34.16.2      matt linux_sys_rt_sigreturn(struct lwp *l, const struct linux_sys_rt_sigreturn_args *uap, register_t *retval)
    278        1.1      manu {
    279  1.34.16.2      matt 	/* {
    280        1.1      manu 		syscallarg(struct linux_rt_sigframe *) sfp;
    281  1.34.16.2      matt 	} */
    282       1.20   thorpej 	struct proc *p = l->l_proc;
    283        1.1      manu 	struct linux_rt_sigframe *scp, sigframe;
    284        1.8      manu 	struct linux_sigregs sregs;
    285        1.8      manu 	struct linux_pt_regs *lregs;
    286        1.1      manu 	struct trapframe *tf;
    287        1.1      manu 	sigset_t mask;
    288        1.1      manu 	int i;
    289        1.1      manu 
    290        1.1      manu 	/*
    291        1.1      manu 	 * The trampoline code hands us the context.
    292        1.1      manu 	 * It is unsafe to keep track of it ourselves, in the event that a
    293        1.1      manu 	 * program jumps out of a signal handler.
    294        1.1      manu 	 */
    295        1.1      manu 	scp = SCARG(uap, sfp);
    296        1.1      manu 
    297        1.1      manu 	/*
    298        1.1      manu 	 * Get the context from user stack
    299        1.1      manu 	 */
    300       1.33  christos 	if (copyin((void *)scp, &sigframe, sizeof(*scp)))
    301        1.1      manu 		return (EFAULT);
    302        1.1      manu 
    303        1.1      manu 	/*
    304        1.8      manu 	 *  Restore register context.
    305        1.1      manu 	 */
    306       1.33  christos 	if (copyin((void *)sigframe.luc.luc_context.lregs,
    307        1.8      manu 		   &sregs, sizeof(sregs)))
    308        1.8      manu 		return (EFAULT);
    309        1.8      manu 	lregs = (struct linux_pt_regs *)&sregs.lgp_regs;
    310        1.8      manu 
    311       1.20   thorpej 	tf = trapframe(l);
    312        1.1      manu #ifdef DEBUG_LINUX
    313        1.1      manu 	    (unsigned long)tf, (unsigned long)scp);
    314        1.1      manu #endif
    315        1.1      manu 
    316       1.28      matt 	if (!PSL_USEROK_P(lregs->lmsr))
    317       1.29     perry 		return (EINVAL);
    318        1.1      manu 
    319       1.29     perry 	for (i = 0; i < 32; i++)
    320        1.8      manu 		tf->fixreg[i] = lregs->lgpr[i];
    321        1.8      manu 	tf->lr = lregs->llink;
    322        1.8      manu 	tf->cr = lregs->lccr;
    323        1.8      manu 	tf->xer = lregs->lxer;
    324        1.8      manu 	tf->ctr = lregs->lctr;
    325        1.8      manu 	tf->srr0 = lregs->lnip;
    326        1.8      manu 	tf->srr1 = lregs->lmsr;
    327        1.8      manu 
    328       1.28      matt 	/*
    329       1.28      matt 	 * Make sure the fpu state is discarded
    330       1.28      matt 	 */
    331       1.28      matt 	save_fpu_lwp(curlwp, FPU_DISCARD);
    332       1.28      matt 
    333       1.33  christos 	memcpy(curpcb->pcb_fpu.fpreg, (void *)&sregs.lfp_regs,
    334       1.28      matt 	       sizeof(curpcb->pcb_fpu.fpreg));
    335        1.1      manu 
    336       1.32        ad 	mutex_enter(&p->p_smutex);
    337       1.32        ad 
    338       1.29     perry 	/*
    339       1.29     perry 	 * Restore signal stack.
    340       1.29     perry 	 *
    341       1.29     perry 	 * XXX cannot find the onstack information in Linux sig context.
    342        1.1      manu 	 * Is signal stack really supported on Linux?
    343       1.29     perry 	 *
    344        1.1      manu 	 * It seems to be supported in libc6...
    345        1.1      manu 	 */
    346       1.29     perry 	/* if (sc.sc_onstack & SS_ONSTACK)
    347       1.32        ad 		l->l_sigstk.ss_flags |= SS_ONSTACK;
    348        1.1      manu 	else */
    349       1.32        ad 		l->l_sigstk.ss_flags &= ~SS_ONSTACK;
    350        1.1      manu 
    351        1.8      manu 	/*
    352        1.8      manu 	 * Grab the signal mask
    353        1.8      manu 	 */
    354       1.13  christos 	linux_to_native_sigset(&mask, &sigframe.luc.luc_sigmask);
    355       1.32        ad 	(void) sigprocmask1(l, SIG_SETMASK, &mask, 0);
    356       1.32        ad 
    357       1.32        ad 	mutex_exit(&p->p_smutex);
    358        1.8      manu 
    359        1.1      manu 	return (EJUSTRETURN);
    360        1.1      manu }
    361        1.1      manu 
    362        1.1      manu 
    363        1.1      manu /*
    364        1.1      manu  * The following needs code review for potential security issues
    365        1.1      manu  */
    366        1.1      manu int
    367  1.34.16.2      matt linux_sys_sigreturn(struct lwp *l, const struct linux_sys_sigreturn_args *uap, register_t *retval)
    368        1.1      manu {
    369  1.34.16.2      matt 	/* {
    370        1.1      manu 		syscallarg(struct linux_sigcontext *) scp;
    371  1.34.16.2      matt 	} */
    372       1.20   thorpej 	struct proc *p = l->l_proc;
    373        1.1      manu 	struct linux_sigcontext *scp, context;
    374        1.8      manu 	struct linux_sigregs sregs;
    375        1.8      manu 	struct linux_pt_regs *lregs;
    376        1.1      manu 	struct trapframe *tf;
    377        1.1      manu 	sigset_t mask;
    378        1.1      manu 	int i;
    379        1.1      manu 
    380        1.1      manu 	/*
    381        1.1      manu 	 * The trampoline code hands us the context.
    382        1.1      manu 	 * It is unsafe to keep track of it ourselves, in the event that a
    383        1.1      manu 	 * program jumps out of a signal handler.
    384        1.1      manu 	 */
    385        1.1      manu 	scp = SCARG(uap, scp);
    386        1.1      manu 
    387        1.1      manu 	/*
    388        1.8      manu 	 * Get the context from user stack
    389        1.1      manu 	 */
    390        1.8      manu 	if (copyin(scp, &context, sizeof(*scp)))
    391        1.8      manu 		return (EFAULT);
    392        1.1      manu 
    393        1.1      manu 	/*
    394        1.8      manu 	 *  Restore register context.
    395        1.1      manu 	 */
    396       1.33  christos 	if (copyin((void *)context.lregs, &sregs, sizeof(sregs)))
    397        1.8      manu 		return (EFAULT);
    398        1.8      manu 	lregs = (struct linux_pt_regs *)&sregs.lgp_regs;
    399        1.8      manu 
    400       1.20   thorpej 	tf = trapframe(l);
    401        1.1      manu #ifdef DEBUG_LINUX
    402        1.1      manu 	printf("linux_sys_sigreturn: trapframe=0x%lx scp=0x%lx\n",
    403        1.1      manu 	    (unsigned long)tf, (unsigned long)scp);
    404        1.1      manu #endif
    405        1.1      manu 
    406       1.28      matt 	if (!PSL_USEROK_P(lregs->lmsr))
    407       1.29     perry 		return (EINVAL);
    408        1.1      manu 
    409       1.29     perry 	for (i = 0; i < 32; i++)
    410        1.8      manu 		tf->fixreg[i] = lregs->lgpr[i];
    411        1.8      manu 	tf->lr = lregs->llink;
    412        1.8      manu 	tf->cr = lregs->lccr;
    413        1.8      manu 	tf->xer = lregs->lxer;
    414        1.8      manu 	tf->ctr = lregs->lctr;
    415        1.8      manu 	tf->srr0 = lregs->lnip;
    416        1.8      manu 	tf->srr1 = lregs->lmsr;
    417        1.8      manu 
    418       1.28      matt 	/*
    419       1.28      matt 	 * Make sure the fpu state is discarded
    420       1.28      matt 	 */
    421       1.28      matt 	save_fpu_lwp(curlwp, FPU_DISCARD);
    422       1.28      matt 
    423       1.33  christos 	memcpy(curpcb->pcb_fpu.fpreg, (void *)&sregs.lfp_regs,
    424       1.28      matt 	       sizeof(curpcb->pcb_fpu.fpreg));
    425        1.1      manu 
    426       1.32        ad 	mutex_enter(&p->p_smutex);
    427       1.32        ad 
    428       1.29     perry 	/*
    429       1.29     perry 	 * Restore signal stack.
    430       1.29     perry 	 *
    431       1.29     perry 	 * XXX cannot find the onstack information in Linux sig context.
    432        1.1      manu 	 * Is signal stack really supported on Linux?
    433        1.1      manu 	 */
    434        1.4  christos #if 0
    435       1.29     perry 	if (sc.sc_onstack & SS_ONSTACK)
    436       1.32        ad 		l->l_sigstk.ss_flags |= SS_ONSTACK;
    437        1.4  christos 	else
    438        1.4  christos #endif
    439       1.32        ad 		l->l_sigstk.ss_flags &= ~SS_ONSTACK;
    440        1.1      manu 
    441        1.1      manu 	/* Restore signal mask. */
    442       1.13  christos 	linux_old_extra_to_native_sigset(&mask, &context.lmask,
    443       1.13  christos 	    &context._unused[3]);
    444       1.32        ad 	(void) sigprocmask1(l, SIG_SETMASK, &mask, 0);
    445       1.32        ad 
    446       1.32        ad 	mutex_exit(&p->p_smutex);
    447        1.1      manu 
    448        1.1      manu 	return (EJUSTRETURN);
    449        1.1      manu }
    450        1.1      manu 
    451        1.1      manu 
    452       1.11       wiz #if 0
    453        1.1      manu int
    454  1.34.16.2      matt linux_sys_modify_ldt(struct proc *p, void *v, register_t *retval)
    455        1.1      manu {
    456       1.29     perry 	/*
    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.29     perry 	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.11       wiz #endif
    466        1.1      manu 
    467       1.29     perry /*
    468        1.6      manu  * major device numbers remapping
    469        1.6      manu  */
    470        1.1      manu dev_t
    471  1.34.16.2      matt linux_fakedev(dev_t dev, int raw)
    472        1.1      manu {
    473       1.15  jdolecek 	/* XXX write me */
    474       1.15  jdolecek 	return dev;
    475        1.1      manu }
    476        1.1      manu 
    477        1.1      manu /*
    478        1.1      manu  * We come here in a last attempt to satisfy a Linux ioctl() call
    479        1.1      manu  */
    480        1.1      manu int
    481  1.34.16.2      matt linux_machdepioctl(struct lwp *l, const struct linux_sys_ioctl_args *uap, register_t *retval)
    482       1.29     perry {
    483  1.34.16.2      matt 	/* {
    484        1.1      manu 		syscallarg(int) fd;
    485        1.1      manu 		syscallarg(u_long) com;
    486       1.33  christos 		syscallarg(void *) data;
    487  1.34.16.2      matt 	} */
    488        1.1      manu 	struct sys_ioctl_args bia;
    489        1.1      manu 	u_long com;
    490       1.29     perry 
    491        1.1      manu 	SCARG(&bia, fd) = SCARG(uap, fd);
    492        1.1      manu 	SCARG(&bia, data) = SCARG(uap, data);
    493        1.1      manu 	com = SCARG(uap, com);
    494       1.29     perry 
    495        1.1      manu 	switch (com) {
    496        1.1      manu 	default:
    497        1.1      manu 		printf("linux_machdepioctl: invalid ioctl %08lx\n", com);
    498        1.1      manu 		return EINVAL;
    499        1.1      manu 	}
    500        1.1      manu 	SCARG(&bia, com) = com;
    501       1.20   thorpej 	/* XXX NJWLWP */
    502       1.22      fvdl 	return sys_ioctl(curlwp, &bia, retval);
    503        1.1      manu }
    504       1.11       wiz #if 0
    505        1.1      manu /*
    506        1.1      manu  * Set I/O permissions for a process. Just set the maximum level
    507        1.1      manu  * right away (ignoring the argument), otherwise we would have
    508        1.1      manu  * to rely on I/O permission maps, which are not implemented.
    509        1.1      manu  */
    510        1.1      manu int
    511  1.34.16.2      matt linux_sys_iopl(struct lwp *l, const void *v, register_t *retval)
    512        1.1      manu {
    513       1.29     perry 	/*
    514        1.1      manu 	 * This syscall is not implemented in Linux/PowerPC: we should not be here
    515        1.1      manu 	 */
    516        1.1      manu #ifdef DEBUG_LINUX
    517        1.1      manu 	printf("linux_sys_iopl: should not be here.\n");
    518        1.1      manu #endif
    519        1.1      manu 	return 0;
    520        1.1      manu }
    521       1.11       wiz #endif
    522        1.1      manu 
    523        1.1      manu /*
    524        1.1      manu  * See above. If a root process tries to set access to an I/O port,
    525        1.1      manu  * just let it have the whole range.
    526        1.1      manu  */
    527        1.1      manu int
    528  1.34.16.2      matt linux_sys_ioperm(struct lwp *l, const struct linux_sys_ioperm_args *uap, register_t *retval)
    529        1.1      manu {
    530       1.29     perry 	/*
    531        1.1      manu 	 * This syscall is not implemented in Linux/PowerPC: we should not be here
    532        1.1      manu 	 */
    533        1.1      manu #ifdef DEBUG_LINUX
    534       1.29     perry 	printf("linux_sys_ioperm: should not be here.\n");
    535        1.1      manu #endif
    536        1.1      manu 	return 0;
    537        1.1      manu }
    538        1.1      manu 
    539        1.1      manu /*
    540       1.29     perry  * wrapper linux_sys_new_uname() -> linux_sys_uname()
    541        1.1      manu  */
    542       1.29     perry int
    543  1.34.16.2      matt linux_sys_new_uname(struct lwp *l, const struct linux_sys_new_uname_args *uap, register_t *retval)
    544        1.1      manu {
    545  1.34.16.2      matt 	return linux_sys_uname(l, (const void *)uap, retval);
    546        1.1      manu }
    547        1.1      manu 
    548        1.1      manu /*
    549       1.29     perry  * wrapper linux_sys_new_select() -> linux_sys_select()
    550        1.1      manu  */
    551       1.29     perry int
    552  1.34.16.2      matt linux_sys_new_select(struct lwp *l, const struct linux_sys_new_select_args *uap, register_t *retval)
    553        1.1      manu {
    554  1.34.16.2      matt 	return linux_sys_select(l, (const void *)uap, retval);
    555        1.1      manu }
    556       1.30      fvdl 
    557       1.30      fvdl int
    558       1.30      fvdl linux_usertrap(struct lwp *l, vaddr_t trapaddr, void *arg)
    559       1.30      fvdl {
    560       1.30      fvdl 	return 0;
    561       1.30      fvdl }
    562