Home | History | Annotate | Line # | Download | only in amd64
linux_machdep.c revision 1.34.8.2
      1  1.34.8.2       jym /*	$NetBSD: linux_machdep.c,v 1.34.8.2 2009/07/23 23:31:39 jym Exp $ */
      2       1.1      manu 
      3       1.1      manu /*-
      4       1.1      manu  * Copyright (c) 2005 Emmanuel Dreyfus, all rights reserved.
      5       1.1      manu  *
      6       1.1      manu  * Redistribution and use in source and binary forms, with or without
      7       1.1      manu  * modification, are permitted provided that the following conditions
      8       1.1      manu  * are met:
      9       1.1      manu  * 1. Redistributions of source code must retain the above copyright
     10       1.1      manu  *    notice, this list of conditions and the following disclaimer.
     11       1.1      manu  * 2. Redistributions in binary form must reproduce the above copyright
     12       1.1      manu  *    notice, this list of conditions and the following disclaimer in the
     13       1.1      manu  *    documentation and/or other materials provided with the distribution.
     14       1.1      manu  * 3. All advertising materials mentioning features or use of this software
     15       1.1      manu  *    must display the following acknowledgement:
     16       1.1      manu  *	This product includes software developed by Emmanuel Dreyfus
     17       1.1      manu  * 4. The name of the author may not be used to endorse or promote
     18       1.1      manu  *    products derived from this software without specific prior written
     19       1.1      manu  *    permission.
     20       1.1      manu  *
     21       1.1      manu  * THIS SOFTWARE IS PROVIDED BY THE THE AUTHOR AND CONTRIBUTORS ``AS IS''
     22       1.1      manu  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
     23       1.1      manu  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     24       1.1      manu  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
     25       1.1      manu  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     26       1.1      manu  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     27       1.1      manu  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     28       1.1      manu  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     29       1.1      manu  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     30       1.1      manu  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     31       1.1      manu  * POSSIBILITY OF SUCH DAMAGE.
     32       1.1      manu  */
     33       1.1      manu 
     34       1.1      manu #include <sys/cdefs.h>
     35       1.1      manu 
     36  1.34.8.2       jym __KERNEL_RCSID(0, "$NetBSD: linux_machdep.c,v 1.34.8.2 2009/07/23 23:31:39 jym Exp $");
     37       1.1      manu 
     38       1.1      manu #include <sys/param.h>
     39       1.1      manu #include <sys/types.h>
     40       1.1      manu #include <sys/systm.h>
     41       1.1      manu #include <sys/signal.h>
     42       1.1      manu #include <sys/exec.h>
     43       1.1      manu #include <sys/proc.h>
     44       1.1      manu #include <sys/ptrace.h> /* for process_read_fpregs() */
     45       1.1      manu #include <sys/user.h>
     46       1.1      manu #include <sys/ucontext.h>
     47      1.21      manu #include <sys/conf.h>
     48       1.1      manu 
     49       1.1      manu #include <machine/reg.h>
     50       1.1      manu #include <machine/pcb.h>
     51       1.1      manu #include <machine/fpu.h>
     52       1.1      manu #include <machine/mcontext.h>
     53       1.2      fvdl #include <machine/specialreg.h>
     54       1.2      fvdl #include <machine/vmparam.h>
     55      1.30  jmcneill #include <machine/cpufunc.h>
     56       1.1      manu 
     57      1.21      manu /*
     58      1.21      manu  * To see whether wscons is configured (for virtual console ioctl calls).
     59      1.21      manu  */
     60      1.21      manu #if defined(_KERNEL_OPT)
     61      1.21      manu #include "wsdisplay.h"
     62      1.21      manu #endif
     63      1.21      manu #if (NWSDISPLAY > 0)
     64      1.21      manu #include <dev/wscons/wsconsio.h>
     65      1.21      manu #include <dev/wscons/wsdisplay_usl_io.h>
     66      1.21      manu #endif
     67      1.21      manu 
     68      1.21      manu 
     69       1.1      manu #include <compat/linux/common/linux_signal.h>
     70       1.1      manu #include <compat/linux/common/linux_errno.h>
     71       1.1      manu #include <compat/linux/common/linux_exec.h>
     72       1.1      manu #include <compat/linux/common/linux_ioctl.h>
     73       1.1      manu #include <compat/linux/common/linux_prctl.h>
     74       1.1      manu #include <compat/linux/common/linux_machdep.h>
     75      1.25     njoly #include <compat/linux/common/linux_ipc.h>
     76      1.25     njoly #include <compat/linux/common/linux_sem.h>
     77       1.4      fvdl #include <compat/linux/linux_syscall.h>
     78       1.1      manu #include <compat/linux/linux_syscallargs.h>
     79       1.1      manu 
     80       1.5      fvdl static void linux_buildcontext(struct lwp *, void *, void *);
     81       1.5      fvdl 
     82       1.1      manu void
     83      1.27       dsl linux_setregs(struct lwp *l, struct exec_package *epp, u_long stack)
     84       1.1      manu {
     85       1.1      manu 	struct pcb *pcb = &l->l_addr->u_pcb;
     86       1.1      manu 	struct trapframe *tf;
     87       1.1      manu 
     88       1.1      manu 	/* If we were using the FPU, forget about it. */
     89       1.1      manu 	if (l->l_addr->u_pcb.pcb_fpcpu != NULL)
     90       1.1      manu 		fpusave_lwp(l, 0);
     91       1.1      manu 
     92       1.1      manu 	l->l_md.md_flags &= ~MDP_USEDFPU;
     93       1.1      manu 	pcb->pcb_flags = 0;
     94       1.1      manu 	pcb->pcb_savefpu.fp_fxsave.fx_fcw = __NetBSD_NPXCW__;
     95       1.1      manu 	pcb->pcb_savefpu.fp_fxsave.fx_mxcsr = __INITIAL_MXCSR__;
     96       1.1      manu 	pcb->pcb_savefpu.fp_fxsave.fx_mxcsr_mask = __INITIAL_MXCSR_MASK__;
     97       1.4      fvdl 	pcb->pcb_fs = 0;
     98       1.4      fvdl 	pcb->pcb_gs = 0;
     99       1.1      manu 
    100      1.18     pavel 	l->l_proc->p_flag &= ~PK_32;
    101       1.1      manu 
    102       1.1      manu 	tf = l->l_md.md_regs;
    103       1.1      manu 	tf->tf_rax = 0;
    104       1.1      manu 	tf->tf_rbx = 0;
    105       1.1      manu 	tf->tf_rcx = epp->ep_entry;
    106       1.1      manu 	tf->tf_rdx = 0;
    107       1.1      manu 	tf->tf_rsi = 0;
    108       1.1      manu 	tf->tf_rdi = 0;
    109       1.1      manu 	tf->tf_rbp = 0;
    110       1.1      manu 	tf->tf_rsp = stack;
    111       1.1      manu 	tf->tf_r8 = 0;
    112       1.1      manu 	tf->tf_r9 = 0;
    113       1.1      manu 	tf->tf_r10 = 0;
    114       1.1      manu 	tf->tf_r11 = 0;
    115       1.1      manu 	tf->tf_r12 = 0;
    116       1.1      manu 	tf->tf_r13 = 0;
    117       1.1      manu 	tf->tf_r14 = 0;
    118       1.1      manu 	tf->tf_r15 = 0;
    119       1.1      manu 	tf->tf_rip = epp->ep_entry;
    120       1.4      fvdl 	tf->tf_rflags = PSL_USERSET;
    121       1.4      fvdl 	tf->tf_cs = GSEL(GUCODE_SEL, SEL_UPL);
    122       1.4      fvdl 	tf->tf_ss = GSEL(GUDATA_SEL, SEL_UPL);
    123       1.1      manu 	tf->tf_ds = 0;
    124       1.1      manu 	tf->tf_es = 0;
    125       1.1      manu 	tf->tf_fs = 0;
    126       1.1      manu 	tf->tf_gs = 0;
    127       1.1      manu 
    128       1.1      manu 	return;
    129       1.1      manu }
    130       1.1      manu 
    131      1.27       dsl void
    132      1.26       dsl linux_sendsig(const ksiginfo_t *ksi, const sigset_t *mask)
    133       1.1      manu {
    134       1.1      manu 	struct lwp *l = curlwp;
    135       1.1      manu 	struct proc *p = l->l_proc;
    136       1.1      manu 	struct sigacts *ps = p->p_sigacts;
    137      1.16        ad 	int onstack, error;
    138       1.1      manu 	int sig = ksi->ksi_signo;
    139       1.1      manu 	struct linux_rt_sigframe *sfp, sigframe;
    140       1.1      manu 	struct linux__fpstate *fpsp, fpstate;
    141       1.1      manu 	struct fpreg fpregs;
    142       1.1      manu 	struct trapframe *tf = l->l_md.md_regs;
    143       1.1      manu 	sig_t catcher = SIGACTION(p, sig).sa_handler;
    144       1.1      manu 	linux_sigset_t lmask;
    145       1.1      manu 	char *sp;
    146       1.4      fvdl 
    147       1.1      manu 	/* Do we need to jump onto the signal stack? */
    148       1.1      manu 	onstack =
    149      1.17        ad 	    (l->l_sigstk.ss_flags & (SS_DISABLE | SS_ONSTACK)) == 0 &&
    150       1.1      manu 	    (SIGACTION(p, sig).sa_flags & SA_ONSTACK) != 0;
    151       1.1      manu 
    152       1.1      manu 	/* Allocate space for the signal handler context. */
    153       1.1      manu 	if (onstack)
    154      1.20  christos 		sp = ((char *)l->l_sigstk.ss_sp +
    155      1.17        ad 		    l->l_sigstk.ss_size);
    156       1.1      manu 	else
    157      1.20  christos 		sp = (char *)tf->tf_rsp - 128;
    158       1.1      manu 
    159       1.1      manu 	/*
    160       1.1      manu 	 * Save FPU state, if any
    161       1.1      manu 	 */
    162       1.1      manu 	if (l->l_md.md_flags & MDP_USEDFPU) {
    163       1.1      manu 		sp = (char *)
    164       1.1      manu 		    (((long)sp - sizeof(struct linux__fpstate)) & ~0xfUL);
    165       1.1      manu 		fpsp = (struct linux__fpstate *)sp;
    166      1.17        ad 	} else
    167       1.1      manu 		fpsp = NULL;
    168       1.1      manu 
    169       1.1      manu 	/*
    170       1.1      manu 	 * Populate the rt_sigframe
    171       1.1      manu 	 */
    172       1.1      manu 	sp = (char *)
    173       1.1      manu 	    ((((long)sp - sizeof(struct linux_rt_sigframe)) & ~0xfUL) - 8);
    174       1.1      manu 	sfp = (struct linux_rt_sigframe *)sp;
    175       1.1      manu 
    176  1.34.8.1       jym 	memset(&sigframe, 0, sizeof(sigframe));
    177       1.3      manu 	if (ps->sa_sigdesc[sig].sd_vers != 0)
    178       1.7      manu 		sigframe.pretcode =
    179       1.7      manu 		    (char *)(u_long)ps->sa_sigdesc[sig].sd_tramp;
    180       1.3      manu 	else
    181       1.3      manu 		sigframe.pretcode = NULL;
    182       1.1      manu 
    183       1.1      manu 	/*
    184       1.1      manu 	 * The user context
    185       1.1      manu 	 */
    186       1.1      manu 	sigframe.uc.luc_flags = 0;
    187       1.1      manu 	sigframe.uc.luc_link = NULL;
    188       1.1      manu 
    189       1.1      manu 	/* This is used regardless of SA_ONSTACK in Linux */
    190      1.17        ad 	sigframe.uc.luc_stack.ss_sp = l->l_sigstk.ss_sp;
    191      1.17        ad 	sigframe.uc.luc_stack.ss_size = l->l_sigstk.ss_size;
    192       1.1      manu 	sigframe.uc.luc_stack.ss_flags = 0;
    193      1.17        ad 	if (l->l_sigstk.ss_flags & SS_ONSTACK)
    194       1.1      manu 		sigframe.uc.luc_stack.ss_flags |= LINUX_SS_ONSTACK;
    195      1.17        ad 	if (l->l_sigstk.ss_flags & SS_DISABLE)
    196       1.1      manu 		sigframe.uc.luc_stack.ss_flags |= LINUX_SS_DISABLE;
    197       1.1      manu 
    198       1.1      manu 	sigframe.uc.luc_mcontext.r8 = tf->tf_r8;
    199       1.1      manu 	sigframe.uc.luc_mcontext.r9 = tf->tf_r9;
    200       1.1      manu 	sigframe.uc.luc_mcontext.r10 = tf->tf_r10;
    201       1.1      manu 	sigframe.uc.luc_mcontext.r11 = tf->tf_r11;
    202       1.1      manu 	sigframe.uc.luc_mcontext.r12 = tf->tf_r12;
    203       1.1      manu 	sigframe.uc.luc_mcontext.r13 = tf->tf_r13;
    204       1.1      manu 	sigframe.uc.luc_mcontext.r14 = tf->tf_r14;
    205       1.1      manu 	sigframe.uc.luc_mcontext.r15 = tf->tf_r15;
    206       1.1      manu 	sigframe.uc.luc_mcontext.rdi = tf->tf_rdi;
    207       1.1      manu 	sigframe.uc.luc_mcontext.rsi = tf->tf_rsi;
    208       1.1      manu 	sigframe.uc.luc_mcontext.rbp = tf->tf_rbp;
    209       1.1      manu 	sigframe.uc.luc_mcontext.rbx = tf->tf_rbx;
    210       1.1      manu 	sigframe.uc.luc_mcontext.rdx = tf->tf_rdx;
    211      1.23     njoly 	sigframe.uc.luc_mcontext.rax = tf->tf_rax;
    212       1.1      manu 	sigframe.uc.luc_mcontext.rcx = tf->tf_rcx;
    213       1.1      manu 	sigframe.uc.luc_mcontext.rsp = tf->tf_rsp;
    214       1.6      fvdl 	sigframe.uc.luc_mcontext.rip = tf->tf_rip;
    215       1.1      manu 	sigframe.uc.luc_mcontext.eflags = tf->tf_rflags;
    216       1.1      manu 	sigframe.uc.luc_mcontext.cs = tf->tf_cs;
    217       1.1      manu 	sigframe.uc.luc_mcontext.gs = tf->tf_gs;
    218       1.1      manu 	sigframe.uc.luc_mcontext.fs = tf->tf_fs;
    219       1.1      manu 	sigframe.uc.luc_mcontext.err = tf->tf_err;
    220       1.1      manu 	sigframe.uc.luc_mcontext.trapno = tf->tf_trapno;
    221       1.1      manu 	native_to_linux_sigset(&lmask, mask);
    222       1.1      manu 	sigframe.uc.luc_mcontext.oldmask = lmask.sig[0];
    223       1.1      manu 	sigframe.uc.luc_mcontext.cr2 = (long)l->l_addr->u_pcb.pcb_onfault;
    224       1.1      manu 	sigframe.uc.luc_mcontext.fpstate = fpsp;
    225       1.1      manu 	native_to_linux_sigset(&sigframe.uc.luc_sigmask, mask);
    226       1.1      manu 
    227       1.1      manu 	/*
    228       1.1      manu 	 * the siginfo structure
    229       1.1      manu 	 */
    230       1.1      manu 	sigframe.info.lsi_signo = native_to_linux_signo[sig];
    231       1.1      manu 	sigframe.info.lsi_errno = native_to_linux_errno[ksi->ksi_errno];
    232      1.33     njoly 	sigframe.info.lsi_code = native_to_linux_si_code(ksi->ksi_code);
    233       1.1      manu 
    234       1.1      manu 	/* XXX This is a rought conversion, taken from i386 code */
    235       1.1      manu 	switch (sigframe.info.lsi_signo) {
    236       1.1      manu 	case LINUX_SIGILL:
    237       1.1      manu 	case LINUX_SIGFPE:
    238       1.1      manu 	case LINUX_SIGSEGV:
    239       1.1      manu 	case LINUX_SIGBUS:
    240       1.1      manu 	case LINUX_SIGTRAP:
    241       1.1      manu 		sigframe.info._sifields._sigfault._addr = ksi->ksi_addr;
    242       1.1      manu 		break;
    243       1.1      manu 	case LINUX_SIGCHLD:
    244       1.1      manu 		sigframe.info._sifields._sigchld._pid = ksi->ksi_pid;
    245       1.1      manu 		sigframe.info._sifields._sigchld._uid = ksi->ksi_uid;
    246       1.1      manu 		sigframe.info._sifields._sigchld._utime = ksi->ksi_utime;
    247       1.1      manu 		sigframe.info._sifields._sigchld._stime = ksi->ksi_stime;
    248  1.34.8.2       jym 		sigframe.info._sifields._sigchld._status =
    249  1.34.8.2       jym 		    native_to_linux_si_status(ksi->ksi_code, ksi->ksi_status);
    250       1.1      manu 		break;
    251       1.1      manu 	case LINUX_SIGIO:
    252       1.1      manu 		sigframe.info._sifields._sigpoll._band = ksi->ksi_band;
    253       1.1      manu 		sigframe.info._sifields._sigpoll._fd = ksi->ksi_fd;
    254       1.1      manu 		break;
    255       1.1      manu 	default:
    256       1.1      manu 		sigframe.info._sifields._sigchld._pid = ksi->ksi_pid;
    257       1.1      manu 		sigframe.info._sifields._sigchld._uid = ksi->ksi_uid;
    258       1.1      manu 		if ((sigframe.info.lsi_signo == LINUX_SIGALRM) ||
    259       1.1      manu 		    (sigframe.info.lsi_signo >= LINUX_SIGRTMIN))
    260       1.1      manu 			sigframe.info._sifields._timer._sigval.sival_ptr =
    261      1.22  christos 			     ksi->ksi_value.sival_ptr;
    262       1.1      manu 		break;
    263       1.1      manu 	}
    264       1.1      manu 
    265      1.16        ad 	sendsig_reset(l, sig);
    266      1.29        ad 	mutex_exit(p->p_lock);
    267      1.17        ad 	error = 0;
    268      1.17        ad 
    269      1.17        ad 	/*
    270      1.17        ad 	 * Save FPU state, if any
    271      1.17        ad 	 */
    272      1.17        ad 	if (fpsp != NULL) {
    273      1.17        ad 		(void)process_read_fpregs(l, &fpregs);
    274  1.34.8.1       jym 		memset(&fpstate, 0, sizeof(fpstate));
    275      1.17        ad 		fpstate.cwd = fpregs.fp_fcw;
    276      1.17        ad 		fpstate.swd = fpregs.fp_fsw;
    277      1.17        ad 		fpstate.twd = fpregs.fp_ftw;
    278      1.17        ad 		fpstate.fop = fpregs.fp_fop;
    279      1.17        ad 		fpstate.rip = fpregs.fp_rip;
    280      1.17        ad 		fpstate.rdp = fpregs.fp_rdp;
    281      1.17        ad 		fpstate.mxcsr = fpregs.fp_mxcsr;
    282      1.17        ad 		fpstate.mxcsr_mask = fpregs.fp_mxcsr_mask;
    283      1.17        ad 		memcpy(&fpstate.st_space, &fpregs.fp_st,
    284      1.17        ad 		    sizeof(fpstate.st_space));
    285      1.17        ad 		memcpy(&fpstate.xmm_space, &fpregs.fp_xmm,
    286      1.17        ad 		    sizeof(fpstate.xmm_space));
    287      1.17        ad 		error = copyout(&fpstate, fpsp, sizeof(fpstate));
    288      1.17        ad 	}
    289      1.17        ad 
    290      1.17        ad 	if (error == 0)
    291      1.17        ad 		error = copyout(&sigframe, sp, sizeof(sigframe));
    292      1.17        ad 
    293      1.29        ad 	mutex_enter(p->p_lock);
    294      1.16        ad 
    295      1.16        ad 	if (error != 0) {
    296       1.1      manu 		sigexit(l, SIGILL);
    297       1.1      manu 		return;
    298       1.1      manu 	}
    299       1.1      manu 
    300       1.6      fvdl 	linux_buildcontext(l, catcher, sp);
    301       1.1      manu 	tf->tf_rdi = sigframe.info.lsi_signo;
    302       1.1      manu 	tf->tf_rax = 0;
    303       1.1      manu 	tf->tf_rsi = (long)&sfp->info;
    304       1.1      manu 	tf->tf_rdx = (long)&sfp->uc;
    305       1.1      manu 
    306       1.1      manu 	/*
    307       1.1      manu 	 * Remember we use signal stack
    308       1.1      manu 	 */
    309       1.1      manu 	if (onstack)
    310      1.17        ad 		l->l_sigstk.ss_flags |= SS_ONSTACK;
    311       1.1      manu 	return;
    312       1.1      manu }
    313       1.1      manu 
    314      1.27       dsl int
    315      1.27       dsl linux_sys_modify_ldt(struct lwp *l, const struct linux_sys_modify_ldt_args *v, register_t *retval)
    316      1.27       dsl {
    317      1.14      manu 	printf("linux_sys_modify_ldt\n");
    318       1.1      manu 	return 0;
    319       1.1      manu }
    320       1.1      manu 
    321      1.27       dsl int
    322      1.27       dsl linux_sys_iopl(struct lwp *l, const struct linux_sys_iopl_args *v, register_t *retval)
    323      1.27       dsl {
    324       1.1      manu 	return 0;
    325       1.1      manu }
    326       1.1      manu 
    327      1.27       dsl int
    328      1.27       dsl linux_sys_ioperm(struct lwp *l, const struct linux_sys_ioperm_args *v, register_t *retval)
    329      1.27       dsl {
    330       1.1      manu 	return 0;
    331       1.1      manu }
    332       1.1      manu 
    333       1.1      manu dev_t
    334      1.26       dsl linux_fakedev(dev_t dev, int raw)
    335       1.1      manu {
    336      1.21      manu 
    337      1.21      manu        extern const struct cdevsw ptc_cdevsw, pts_cdevsw;
    338      1.21      manu        const struct cdevsw *cd = cdevsw_lookup(dev);
    339      1.21      manu 
    340      1.21      manu        if (raw) {
    341      1.21      manu #if (NWSDISPLAY > 0)
    342      1.21      manu 	       extern const struct cdevsw wsdisplay_cdevsw;
    343      1.21      manu 	       if (cd == &wsdisplay_cdevsw)
    344      1.21      manu 		       return makedev(LINUX_CONS_MAJOR, (minor(dev) + 1));
    345      1.21      manu #endif
    346      1.21      manu        }
    347      1.21      manu 
    348      1.21      manu        if (cd == &ptc_cdevsw)
    349      1.21      manu 	       return makedev(LINUX_PTC_MAJOR, minor(dev));
    350      1.21      manu        if (cd == &pts_cdevsw)
    351      1.21      manu 	       return makedev(LINUX_PTS_MAJOR, minor(dev));
    352      1.21      manu 
    353      1.15      manu 	return ((minor(dev) & 0xff) | ((major(dev) & 0xfff) << 8)
    354      1.15      manu 	    | (((unsigned long long int) (minor(dev) & ~0xff)) << 12)
    355      1.15      manu 	    | (((unsigned long long int) (major(dev) & ~0xfff)) << 32));
    356       1.1      manu }
    357       1.1      manu 
    358      1.27       dsl int
    359      1.27       dsl linux_machdepioctl(struct lwp *l, const struct linux_sys_ioctl_args *v, register_t *retval)
    360      1.27       dsl {
    361       1.1      manu 	return 0;
    362       1.1      manu }
    363       1.1      manu 
    364       1.1      manu int
    365      1.27       dsl linux_sys_rt_sigreturn(struct lwp *l, const void *v, register_t *retval)
    366      1.27       dsl {
    367       1.6      fvdl 	struct linux_ucontext *luctx;
    368       1.1      manu 	struct trapframe *tf = l->l_md.md_regs;
    369       1.1      manu 	struct linux_sigcontext *lsigctx;
    370       1.1      manu 	struct linux__fpstate fpstate;
    371       1.6      fvdl 	struct linux_rt_sigframe frame, *fp;
    372       1.1      manu 	ucontext_t uctx;
    373       1.1      manu 	mcontext_t *mctx;
    374      1.24        ad 	struct fxsave64 *fxarea;
    375       1.1      manu 	int error;
    376       1.1      manu 
    377       1.6      fvdl 	fp = (struct linux_rt_sigframe *)(tf->tf_rsp - 8);
    378       1.6      fvdl 	if ((error = copyin(fp, &frame, sizeof(frame))) != 0) {
    379      1.29        ad 		mutex_enter(l->l_proc->p_lock);
    380       1.1      manu 		sigexit(l, SIGILL);
    381       1.1      manu 		return error;
    382       1.1      manu 	}
    383       1.6      fvdl 	luctx = &frame.uc;
    384       1.6      fvdl 	lsigctx = &luctx->luc_mcontext;
    385       1.1      manu 
    386  1.34.8.1       jym 	memset(&uctx, 0, sizeof(uctx));
    387       1.1      manu 	mctx = (mcontext_t *)&uctx.uc_mcontext;
    388      1.24        ad 	fxarea = (struct fxsave64 *)&mctx->__fpregs;
    389       1.1      manu 
    390       1.1      manu 	/*
    391       1.1      manu 	 * Set the flags. Linux always have CPU, stack and signal state,
    392       1.1      manu 	 * FPU is optional. uc_flags is not used to tell what we have.
    393       1.1      manu 	 */
    394       1.1      manu 	uctx.uc_flags = (_UC_SIGMASK|_UC_CPU|_UC_STACK|_UC_CLRSTACK);
    395       1.1      manu 	if (lsigctx->fpstate != NULL)
    396       1.1      manu 		uctx.uc_flags |= _UC_FPU;
    397       1.1      manu 	uctx.uc_link = NULL;
    398       1.1      manu 
    399       1.1      manu 	/*
    400       1.1      manu 	 * Signal set
    401       1.1      manu 	 */
    402       1.6      fvdl 	linux_to_native_sigset(&uctx.uc_sigmask, &luctx->luc_sigmask);
    403       1.1      manu 
    404       1.1      manu 	/*
    405       1.1      manu 	 * CPU state
    406       1.1      manu 	 */
    407       1.1      manu 	mctx->__gregs[_REG_R8] = lsigctx->r8;
    408       1.1      manu 	mctx->__gregs[_REG_R9] = lsigctx->r9;
    409       1.1      manu 	mctx->__gregs[_REG_R10] = lsigctx->r10;
    410       1.1      manu 	mctx->__gregs[_REG_R11] = lsigctx->r11;
    411       1.1      manu 	mctx->__gregs[_REG_R12] = lsigctx->r12;
    412       1.1      manu 	mctx->__gregs[_REG_R13] = lsigctx->r13;
    413       1.1      manu 	mctx->__gregs[_REG_R14] = lsigctx->r14;
    414       1.1      manu 	mctx->__gregs[_REG_R15] = lsigctx->r15;
    415       1.1      manu 	mctx->__gregs[_REG_RDI] = lsigctx->rdi;
    416       1.1      manu 	mctx->__gregs[_REG_RSI] = lsigctx->rsi;
    417       1.1      manu 	mctx->__gregs[_REG_RBP] = lsigctx->rbp;
    418       1.1      manu 	mctx->__gregs[_REG_RBX] = lsigctx->rbx;
    419      1.23     njoly 	mctx->__gregs[_REG_RAX] = lsigctx->rax;
    420       1.1      manu 	mctx->__gregs[_REG_RDX] = lsigctx->rdx;
    421       1.1      manu 	mctx->__gregs[_REG_RCX] = lsigctx->rcx;
    422       1.1      manu 	mctx->__gregs[_REG_RIP] = lsigctx->rip;
    423      1.28       dsl 	mctx->__gregs[_REG_RFLAGS] = lsigctx->eflags;
    424       1.1      manu 	mctx->__gregs[_REG_CS] = lsigctx->cs;
    425       1.1      manu 	mctx->__gregs[_REG_GS] = lsigctx->gs;
    426       1.1      manu 	mctx->__gregs[_REG_FS] = lsigctx->fs;
    427       1.1      manu 	mctx->__gregs[_REG_ERR] = lsigctx->err;
    428       1.1      manu 	mctx->__gregs[_REG_TRAPNO] = lsigctx->trapno;
    429       1.1      manu 	mctx->__gregs[_REG_ES] = tf->tf_es;
    430       1.1      manu 	mctx->__gregs[_REG_DS] = tf->tf_ds;
    431      1.28       dsl 	mctx->__gregs[_REG_RSP] = lsigctx->rsp; /* XXX */
    432       1.1      manu 	mctx->__gregs[_REG_SS] = tf->tf_ss;
    433       1.1      manu 
    434       1.1      manu 	/*
    435       1.1      manu 	 * FPU state
    436       1.1      manu 	 */
    437       1.1      manu 	if (lsigctx->fpstate != NULL) {
    438       1.1      manu 		error = copyin(lsigctx->fpstate, &fpstate, sizeof(fpstate));
    439       1.1      manu 		if (error != 0) {
    440      1.29        ad 			mutex_enter(l->l_proc->p_lock);
    441       1.1      manu 			sigexit(l, SIGILL);
    442       1.1      manu 			return error;
    443       1.1      manu 		}
    444       1.1      manu 
    445      1.24        ad 		fxarea->fx_fcw = fpstate.cwd;
    446      1.24        ad 		fxarea->fx_fsw = fpstate.swd;
    447      1.24        ad 		fxarea->fx_ftw = fpstate.twd;
    448      1.24        ad 		fxarea->fx_fop = fpstate.fop;
    449      1.24        ad 		fxarea->fx_rip = fpstate.rip;
    450      1.24        ad 		fxarea->fx_rdp = fpstate.rdp;
    451      1.24        ad 		fxarea->fx_mxcsr = fpstate.mxcsr;
    452      1.24        ad 		fxarea->fx_mxcsr_mask = fpstate.mxcsr_mask;
    453      1.24        ad 		memcpy(&fxarea->fx_st, &fpstate.st_space,
    454      1.24        ad 		    sizeof(fxarea->fx_st));
    455      1.24        ad 		memcpy(&fxarea->fx_xmm, &fpstate.xmm_space,
    456      1.24        ad 		    sizeof(fxarea->fx_xmm));
    457       1.1      manu 	}
    458       1.1      manu 
    459       1.1      manu 	/*
    460       1.1      manu 	 * And the stack
    461       1.1      manu 	 */
    462       1.1      manu 	uctx.uc_stack.ss_flags = 0;
    463      1.31  jmcneill 	if (luctx->luc_stack.ss_flags & LINUX_SS_ONSTACK)
    464      1.31  jmcneill 		uctx.uc_stack.ss_flags |= SS_ONSTACK;
    465       1.1      manu 
    466      1.31  jmcneill 	if (luctx->luc_stack.ss_flags & LINUX_SS_DISABLE)
    467      1.31  jmcneill 		uctx.uc_stack.ss_flags |= SS_DISABLE;
    468       1.1      manu 
    469       1.6      fvdl 	uctx.uc_stack.ss_sp = luctx->luc_stack.ss_sp;
    470       1.6      fvdl 	uctx.uc_stack.ss_size = luctx->luc_stack.ss_size;
    471       1.1      manu 
    472       1.1      manu 	/*
    473       1.1      manu 	 * And let setucontext deal with that.
    474       1.1      manu 	 */
    475      1.29        ad 	mutex_enter(l->l_proc->p_lock);
    476      1.16        ad 	error = setucontext(l, &uctx);
    477      1.29        ad 	mutex_exit(l->l_proc->p_lock);
    478      1.23     njoly 	if (error)
    479      1.23     njoly 		return error;
    480      1.16        ad 
    481      1.23     njoly 	return EJUSTRETURN;
    482       1.1      manu }
    483       1.1      manu 
    484       1.1      manu int
    485      1.27       dsl linux_sys_arch_prctl(struct lwp *l, const struct linux_sys_arch_prctl_args *uap, register_t *retval)
    486       1.1      manu {
    487      1.27       dsl 	/* {
    488       1.1      manu 		syscallarg(int) code;
    489       1.1      manu 		syscallarg(unsigned long) addr;
    490      1.27       dsl 	} */
    491       1.2      fvdl 	struct pcb *pcb = &l->l_addr->u_pcb;
    492       1.2      fvdl 	struct trapframe *tf = l->l_md.md_regs;
    493       1.1      manu 	int error;
    494       1.2      fvdl 	uint64_t taddr;
    495       1.1      manu 
    496       1.1      manu 	switch(SCARG(uap, code)) {
    497       1.1      manu 	case LINUX_ARCH_SET_GS:
    498       1.2      fvdl 		taddr = SCARG(uap, addr);
    499       1.2      fvdl 		if (taddr >= VM_MAXUSER_ADDRESS)
    500       1.2      fvdl 			return EINVAL;
    501       1.2      fvdl 		pcb->pcb_gs = taddr;
    502       1.2      fvdl 		pcb->pcb_flags |= PCB_GS64;
    503       1.2      fvdl 		if (l == curlwp)
    504       1.2      fvdl 			wrmsr(MSR_KERNELGSBASE, taddr);
    505       1.1      manu 		break;
    506       1.1      manu 
    507       1.1      manu 	case LINUX_ARCH_GET_GS:
    508       1.2      fvdl 		if (pcb->pcb_flags & PCB_GS64)
    509       1.2      fvdl 			taddr = pcb->pcb_gs;
    510       1.2      fvdl 		else {
    511       1.2      fvdl 			error = memseg_baseaddr(l, tf->tf_fs, NULL, 0, &taddr);
    512       1.2      fvdl 			if (error != 0)
    513       1.2      fvdl 				return error;
    514       1.2      fvdl 		}
    515       1.2      fvdl 		error = copyout(&taddr, (char *)SCARG(uap, addr), 8);
    516       1.2      fvdl 		if (error != 0)
    517       1.1      manu 			return error;
    518       1.1      manu 		break;
    519       1.1      manu 
    520       1.1      manu 	case LINUX_ARCH_SET_FS:
    521       1.2      fvdl 		taddr = SCARG(uap, addr);
    522       1.2      fvdl 		if (taddr >= VM_MAXUSER_ADDRESS)
    523       1.2      fvdl 			return EINVAL;
    524       1.2      fvdl 		pcb->pcb_fs = taddr;
    525       1.2      fvdl 		pcb->pcb_flags |= PCB_FS64;
    526       1.2      fvdl 		if (l == curlwp)
    527       1.2      fvdl 			wrmsr(MSR_FSBASE, taddr);
    528       1.1      manu 		break;
    529       1.1      manu 
    530       1.1      manu 	case LINUX_ARCH_GET_FS:
    531       1.2      fvdl 		if (pcb->pcb_flags & PCB_FS64)
    532       1.2      fvdl 			taddr = pcb->pcb_fs;
    533       1.2      fvdl 		else {
    534       1.2      fvdl 			error = memseg_baseaddr(l, tf->tf_fs, NULL, 0, &taddr);
    535       1.2      fvdl 			if (error != 0)
    536       1.2      fvdl 				return error;
    537       1.2      fvdl 		}
    538       1.2      fvdl 		error = copyout(&taddr, (char *)SCARG(uap, addr), 8);
    539       1.2      fvdl 		if (error != 0)
    540       1.1      manu 			return error;
    541       1.1      manu 		break;
    542       1.1      manu 
    543       1.1      manu 	default:
    544       1.1      manu #ifdef DEBUG_LINUX
    545       1.1      manu 		printf("linux_sys_arch_prctl: unexpected code %d\n",
    546       1.1      manu 		    SCARG(uap, code));
    547       1.1      manu #endif
    548       1.1      manu 		return EINVAL;
    549       1.1      manu 	}
    550       1.1      manu 
    551       1.1      manu 	return 0;
    552       1.1      manu }
    553       1.4      fvdl 
    554       1.4      fvdl const int linux_vsyscall_to_syscall[] = {
    555       1.4      fvdl 	LINUX_SYS_gettimeofday,
    556       1.4      fvdl 	LINUX_SYS_time,
    557      1.34  christos 	LINUX_SYS_nosys,	/* nosys */
    558      1.34  christos 	LINUX_SYS_nosys,	/* nosys */
    559       1.4      fvdl };
    560       1.4      fvdl 
    561       1.4      fvdl int
    562       1.4      fvdl linux_usertrap(struct lwp *l, vaddr_t trapaddr, void *arg)
    563       1.4      fvdl {
    564       1.4      fvdl 	struct trapframe *tf = arg;
    565       1.4      fvdl 	uint64_t retaddr;
    566       1.4      fvdl 	int vsyscallnr;
    567       1.4      fvdl 
    568       1.4      fvdl 	/*
    569       1.4      fvdl 	 * Check for a vsyscall. %rip must be the fault address,
    570       1.4      fvdl 	 * and the address must be in the Linux vsyscall area.
    571       1.4      fvdl 	 * Also, vsyscalls are only done at 1024-byte boundaries.
    572       1.4      fvdl 	 */
    573       1.4      fvdl 
    574       1.4      fvdl 	if (__predict_true(trapaddr < LINUX_VSYSCALL_START))
    575       1.4      fvdl 		return 0;
    576       1.4      fvdl 
    577       1.4      fvdl 	if (trapaddr != tf->tf_rip)
    578       1.4      fvdl 		return 0;
    579       1.4      fvdl 
    580       1.4      fvdl 	if ((tf->tf_rip & (LINUX_VSYSCALL_SIZE - 1)) != 0)
    581       1.4      fvdl 		return 0;
    582       1.4      fvdl 
    583       1.4      fvdl 	vsyscallnr = (tf->tf_rip - LINUX_VSYSCALL_START) / LINUX_VSYSCALL_SIZE;
    584       1.4      fvdl 
    585       1.4      fvdl 	if (vsyscallnr > LINUX_VSYSCALL_MAXNR)
    586       1.4      fvdl 		return 0;
    587       1.4      fvdl 
    588       1.4      fvdl 	/*
    589       1.4      fvdl 	 * Get the return address from the top of the stack,
    590       1.4      fvdl 	 * and fix up the return address.
    591       1.4      fvdl 	 * This assumes the faulting instruction was callq *reg,
    592       1.4      fvdl 	 * which is the only way that vsyscalls are ever entered.
    593       1.4      fvdl 	 */
    594       1.4      fvdl 	if (copyin((void *)tf->tf_rsp, &retaddr, sizeof retaddr) != 0)
    595       1.4      fvdl 		return 0;
    596       1.4      fvdl 	tf->tf_rip = retaddr;
    597       1.4      fvdl 	tf->tf_rax = linux_vsyscall_to_syscall[vsyscallnr];
    598       1.4      fvdl 	tf->tf_rsp += 8;	/* "pop" the return address */
    599       1.4      fvdl 
    600       1.4      fvdl #if 0
    601       1.4      fvdl 	printf("usertrap: rip %p rsp %p retaddr %p vsys %d sys %d\n",
    602       1.4      fvdl 	    (void *)tf->tf_rip, (void *)tf->tf_rsp, (void *)retaddr,
    603       1.4      fvdl 	    vsyscallnr, (int)tf->tf_rax);
    604       1.4      fvdl #endif
    605       1.4      fvdl 
    606       1.4      fvdl 	(*l->l_proc->p_md.md_syscall)(tf);
    607       1.4      fvdl 
    608       1.4      fvdl 	return 1;
    609       1.4      fvdl }
    610       1.5      fvdl 
    611       1.5      fvdl static void
    612       1.5      fvdl linux_buildcontext(struct lwp *l, void *catcher, void *f)
    613       1.5      fvdl {
    614       1.5      fvdl 	struct trapframe *tf = l->l_md.md_regs;
    615       1.5      fvdl 
    616       1.5      fvdl 	tf->tf_ds = GSEL(GUDATA_SEL, SEL_UPL);
    617       1.5      fvdl 	tf->tf_rip = (u_int64_t)catcher;
    618       1.5      fvdl 	tf->tf_cs = GSEL(GUCODE_SEL, SEL_UPL);
    619      1.32  christos 	tf->tf_rflags &= ~PSL_CLEARSIG;
    620       1.5      fvdl 	tf->tf_rsp = (u_int64_t)f;
    621       1.5      fvdl 	tf->tf_ss = GSEL(GUDATA_SEL, SEL_UPL);
    622       1.5      fvdl }
    623      1.11      manu 
    624      1.14      manu void *
    625      1.26       dsl linux_get_newtls(struct lwp *l)
    626      1.11      manu {
    627      1.11      manu 	struct trapframe *tf = l->l_md.md_regs;
    628      1.11      manu 
    629      1.14      manu 	return (void *)tf->tf_r8;
    630      1.11      manu }
    631      1.11      manu 
    632      1.11      manu int
    633      1.26       dsl linux_set_newtls(struct lwp *l, void *tls)
    634      1.11      manu {
    635      1.11      manu 	struct linux_sys_arch_prctl_args cup;
    636      1.11      manu 	register_t retval;
    637      1.11      manu 
    638      1.11      manu 	SCARG(&cup, code) = LINUX_ARCH_SET_FS;
    639      1.14      manu 	SCARG(&cup, addr) = (unsigned long)tls;
    640      1.11      manu 
    641      1.11      manu 	return linux_sys_arch_prctl(l, &cup, &retval);
    642      1.11      manu }
    643