Merge from vendor branch OPENSSH:
[dragonfly.git] / sys / platform / pc64 / amd64 / trap.c
1 /*-
2  * Copyright (c) 1990, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  * Copyright (C) 1994, David Greenman
5  * Copyright (c) 2008 The DragonFly Project.
6  * Copyright (c) 2008 Jordan Gordeev.
7  *
8  * This code is derived from software contributed to Berkeley by
9  * the University of Utah, and William Jolitz.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. All advertising materials mentioning features or use of this software
20  *    must display the following acknowledgement:
21  *      This product includes software developed by the University of
22  *      California, Berkeley and its contributors.
23  * 4. Neither the name of the University nor the names of its contributors
24  *    may be used to endorse or promote products derived from this software
25  *    without specific prior written permission.
26  *
27  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37  * SUCH DAMAGE.
38  *
39  * from: @(#)trap.c     7.4 (Berkeley) 5/13/91
40  * $FreeBSD: src/sys/i386/i386/trap.c,v 1.147.2.11 2003/02/27 19:09:59 luoqi Exp $
41  * $DragonFly: src/sys/platform/pc64/amd64/trap.c,v 1.3 2008/09/09 04:06:18 dillon Exp $
42  */
43
44 /*
45  * AMD64 Trap and System call handling
46  */
47
48 #include "opt_ddb.h"
49 #include "opt_ktrace.h"
50
51 #include <machine/frame.h>
52 #include <sys/param.h>
53 #include <sys/systm.h>
54 #include <sys/kernel.h>
55 #include <sys/proc.h>
56 #include <sys/pioctl.h>
57 #include <sys/types.h>
58 #include <sys/signal2.h>
59 #include <sys/syscall.h>
60 #include <sys/sysctl.h>
61 #include <sys/sysent.h>
62 #include <sys/systm.h>
63 #ifdef KTRACE
64 #include <sys/ktrace.h>
65 #endif
66 #include <sys/ktr.h>
67 #include <sys/sysmsg.h>
68 #include <sys/sysproto.h>
69 #include <sys/sysunion.h>
70
71 #include <vm/pmap.h>
72 #include <vm/vm.h>
73 #include <vm/vm_extern.h>
74 #include <vm/vm_kern.h>
75 #include <vm/vm_param.h>
76 #include <machine/cpu.h>
77 #include <machine/pcb.h>
78 #include <machine/thread.h>
79 #include <machine/vmparam.h>
80 #include <machine/md_var.h>
81
82 #include <ddb/ddb.h>
83
84 #ifdef SMP
85
86 #define MAKEMPSAFE(have_mplock)                 \
87         if (have_mplock == 0) {                 \
88                 get_mplock();                   \
89                 have_mplock = 1;                \
90         }
91
92 #else
93
94 #define MAKEMPSAFE(have_mplock)
95
96 #endif
97
98 extern void trap(struct trapframe *frame);
99 extern void syscall2(struct trapframe *frame);
100
101 static int trap_pfault(struct trapframe *, int);
102 static void trap_fatal(struct trapframe *, vm_offset_t);
103 void dblfault_handler(struct trapframe *frame);
104
105 #define PCPU_GET(member) ((mycpu)->gd_##member)
106 #define PCPU_INC(member) ((mycpu)->gd_##member)++
107
108 #define MAX_TRAP_MSG            30
109 static char *trap_msg[] = {
110         "",                                     /*  0 unused */
111         "privileged instruction fault",         /*  1 T_PRIVINFLT */
112         "",                                     /*  2 unused */
113         "breakpoint instruction fault",         /*  3 T_BPTFLT */
114         "",                                     /*  4 unused */
115         "",                                     /*  5 unused */
116         "arithmetic trap",                      /*  6 T_ARITHTRAP */
117         "system forced exception",              /*  7 T_ASTFLT */
118         "",                                     /*  8 unused */
119         "general protection fault",             /*  9 T_PROTFLT */
120         "trace trap",                           /* 10 T_TRCTRAP */
121         "",                                     /* 11 unused */
122         "page fault",                           /* 12 T_PAGEFLT */
123         "",                                     /* 13 unused */
124         "alignment fault",                      /* 14 T_ALIGNFLT */
125         "",                                     /* 15 unused */
126         "",                                     /* 16 unused */
127         "",                                     /* 17 unused */
128         "integer divide fault",                 /* 18 T_DIVIDE */
129         "non-maskable interrupt trap",          /* 19 T_NMI */
130         "overflow trap",                        /* 20 T_OFLOW */
131         "FPU bounds check fault",               /* 21 T_BOUND */
132         "FPU device not available",             /* 22 T_DNA */
133         "double fault",                         /* 23 T_DOUBLEFLT */
134         "FPU operand fetch fault",              /* 24 T_FPOPFLT */
135         "invalid TSS fault",                    /* 25 T_TSSFLT */
136         "segment not present fault",            /* 26 T_SEGNPFLT */
137         "stack fault",                          /* 27 T_STKFLT */
138         "machine check trap",                   /* 28 T_MCHK */
139         "SIMD floating-point exception",        /* 29 T_XMMFLT */
140         "reserved (unknown) fault",             /* 30 T_RESERVED */
141 };
142
143 #ifdef DDB
144 static int ddb_on_nmi = 1;
145 SYSCTL_INT(_machdep, OID_AUTO, ddb_on_nmi, CTLFLAG_RW,
146         &ddb_on_nmi, 0, "Go to DDB on NMI");
147 #endif
148 static int panic_on_nmi = 1;
149 SYSCTL_INT(_machdep, OID_AUTO, panic_on_nmi, CTLFLAG_RW,
150         &panic_on_nmi, 0, "Panic on NMI");
151 static int fast_release;
152 SYSCTL_INT(_machdep, OID_AUTO, fast_release, CTLFLAG_RW,
153         &fast_release, 0, "Passive Release was optimal");
154 static int slow_release;
155 SYSCTL_INT(_machdep, OID_AUTO, slow_release, CTLFLAG_RW,
156         &slow_release, 0, "Passive Release was nonoptimal");
157 #ifdef SMP
158 static int syscall_mpsafe = 1;
159 SYSCTL_INT(_kern, OID_AUTO, syscall_mpsafe, CTLFLAG_RW,
160         &syscall_mpsafe, 0, "Allow MPSAFE marked syscalls to run without BGL");
161 TUNABLE_INT("kern.syscall_mpsafe", &syscall_mpsafe);
162 static int trap_mpsafe = 1;
163 SYSCTL_INT(_kern, OID_AUTO, trap_mpsafe, CTLFLAG_RW,
164         &trap_mpsafe, 0, "Allow traps to mostly run without the BGL");
165 TUNABLE_INT("kern.trap_mpsafe", &trap_mpsafe);
166 #endif
167
168
169
170 /*
171  * Passive USER->KERNEL transition.  This only occurs if we block in the
172  * kernel while still holding our userland priority.  We have to fixup our
173  * priority in order to avoid potential deadlocks before we allow the system
174  * to switch us to another thread.
175  */
176 static void
177 passive_release(struct thread *td)
178 {
179         struct lwp *lp = td->td_lwp;
180
181         td->td_release = NULL;
182         lwkt_setpri_self(TDPRI_KERN_USER);
183         lp->lwp_proc->p_usched->release_curproc(lp);
184 }
185
186 /*
187  * userenter() passively intercepts the thread switch function to increase
188  * the thread priority from a user priority to a kernel priority, reducing
189  * syscall and trap overhead for the case where no switch occurs.
190  */
191
192 static __inline void
193 userenter(struct thread *curtd)
194 {
195         curtd->td_release = passive_release;
196 }
197
198 /*
199  * Handle signals, upcalls, profiling, and other AST's and/or tasks that
200  * must be completed before we can return to or try to return to userland.
201  *
202  * Note that td_sticks is a 64 bit quantity, but there's no point doing 64
203  * arithmatic on the delta calculation so the absolute tick values are
204  * truncated to an integer.
205  */
206 static void
207 userret(struct lwp *lp, struct trapframe *frame, int sticks)
208 {
209         struct proc *p = lp->lwp_proc;
210         int sig;
211
212         /*
213          * Charge system time if profiling.  Note: times are in microseconds.
214          * This may do a copyout and block, so do it first even though it
215          * means some system time will be charged as user time.
216          */
217         if (p->p_flag & P_PROFIL) {
218                 addupc_task(p, frame->tf_rip, 
219                         (u_int)((int)lp->lwp_thread->td_sticks - sticks));
220         }
221
222 recheck:
223         /*
224          * If the jungle wants us dead, so be it.
225          */
226         if (lp->lwp_flag & LWP_WEXIT) {
227                 get_mplock();
228                 lwp_exit(0);
229                 rel_mplock(); /* NOT REACHED */
230         }
231
232         /*
233          * Block here if we are in a stopped state.
234          */
235         if (p->p_stat == SSTOP) {
236                 get_mplock();
237                 tstop();
238                 rel_mplock();
239                 goto recheck;
240         }
241
242         /*
243          * Post any pending upcalls.  If running a virtual kernel be sure
244          * to restore the virtual kernel's vmspace before posting the upcall.
245          */
246         if (p->p_flag & P_UPCALLPEND) {
247                 p->p_flag &= ~P_UPCALLPEND;
248                 get_mplock();
249                 postupcall(lp);
250                 rel_mplock();
251                 goto recheck;
252         }
253
254         /*
255          * Post any pending signals.  If running a virtual kernel be sure
256          * to restore the virtual kernel's vmspace before posting the signal.
257          */
258         if ((sig = CURSIG(lp)) != 0) {
259                 get_mplock();
260                 postsig(sig);
261                 rel_mplock();
262                 goto recheck;
263         }
264
265         /*
266          * block here if we are swapped out, but still process signals
267          * (such as SIGKILL).  proc0 (the swapin scheduler) is already
268          * aware of our situation, we do not have to wake it up.
269          */
270         if (p->p_flag & P_SWAPPEDOUT) {
271                 get_mplock();
272                 p->p_flag |= P_SWAPWAIT;
273                 swapin_request();
274                 if (p->p_flag & P_SWAPWAIT)
275                         tsleep(p, PCATCH, "SWOUT", 0);
276                 p->p_flag &= ~P_SWAPWAIT;
277                 rel_mplock();
278                 goto recheck;
279         }
280
281         /*
282          * Make sure postsig() handled request to restore old signal mask after
283          * running signal handler.
284          */
285         KKASSERT((lp->lwp_flag & LWP_OLDMASK) == 0);
286 }
287
288 /*
289  * Cleanup from userenter and any passive release that might have occured.
290  * We must reclaim the current-process designation before we can return
291  * to usermode.  We also handle both LWKT and USER reschedule requests.
292  */
293 static __inline void
294 userexit(struct lwp *lp)
295 {
296         struct thread *td = lp->lwp_thread;
297         globaldata_t gd = td->td_gd;
298
299 #if 0
300         /*
301          * If a user reschedule is requested force a new process to be
302          * chosen by releasing the current process.  Our process will only
303          * be chosen again if it has a considerably better priority.
304          */
305         if (user_resched_wanted())
306                 lp->lwp_proc->p_usched->release_curproc(lp);
307 #endif
308
309         /*
310          * Handle a LWKT reschedule request first.  Since our passive release
311          * is still in place we do not have to do anything special.
312          */
313         while (lwkt_resched_wanted()) {
314                 lwkt_switch();
315
316                 /*
317                  * The thread that preempted us may have stopped our process.
318                  */
319                 while (lp->lwp_proc->p_stat == SSTOP) {
320                         get_mplock();
321                         tstop();
322                         rel_mplock();
323                 }
324         }
325
326         /*
327          * Acquire the current process designation for this user scheduler
328          * on this cpu.  This will also handle any user-reschedule requests.
329          */
330         lp->lwp_proc->p_usched->acquire_curproc(lp);
331         /* We may have switched cpus on acquisition */
332         gd = td->td_gd;
333
334         /*
335          * Reduce our priority in preparation for a return to userland.  If
336          * our passive release function was still in place, our priority was
337          * never raised and does not need to be reduced.
338          *
339          * Note that at this point there may be other LWKT thread at
340          * TDPRI_KERN_USER (aka higher then our currenet priority).  We
341          * do NOT want to run these threads yet.
342          */
343         if (td->td_release == NULL)
344                 lwkt_setpri_self(TDPRI_USER_NORM);
345         td->td_release = NULL;
346 }
347
348 /*
349  * Exception, fault, and trap interface to the kernel.
350  * This common code is called from assembly language IDT gate entry
351  * routines that prepare a suitable stack frame, and restore this
352  * frame after the exception has been processed.
353  *
354  * This function is also called from doreti in an interlock to handle ASTs.
355  * For example:  hardwareint->INTROUTINE->(set ast)->doreti->trap
356  *
357  * NOTE!  We have to retrieve the fault address prior to obtaining the
358  * MP lock because get_mplock() may switch out.  YYY cr2 really ought
359  * to be retrieved by the assembly code, not here.
360  *
361  * XXX gd_trap_nesting_level currently prevents lwkt_switch() from panicing
362  * if an attempt is made to switch from a fast interrupt or IPI.  This is
363  * necessary to properly take fatal kernel traps on SMP machines if 
364  * get_mplock() has to block.
365  */
366
367 void
368 trap(struct trapframe *frame)
369 {
370         struct globaldata *gd = mycpu;
371         struct thread *td = gd->gd_curthread;
372         struct lwp *lp = td->td_lwp;
373         struct proc *p;
374         int sticks = 0;
375         int i = 0, ucode = 0, type, code;
376 #ifdef SMP
377         int have_mplock = 0;
378 #endif
379 #ifdef INVARIANTS
380         int crit_count = td->td_pri & ~TDPRI_MASK;
381 #endif
382         vm_offset_t eva;
383
384         p = td->td_proc;
385
386 #ifndef JG
387         kprintf0("TRAP ");
388         kprintf0("\"%s\" type=%ld\n",
389                 trap_msg[frame->tf_trapno], frame->tf_trapno);
390         kprintf0(" rip=%lx rsp=%lx\n", frame->tf_rip, frame->tf_rsp);
391         kprintf0(" err=%lx addr=%lx\n", frame->tf_err, frame->tf_addr);
392         kprintf0(" cs=%lx ss=%lx rflags=%lx\n", (unsigned long)frame->tf_cs, (unsigned long)frame->tf_ss, frame->tf_rflags);
393 #endif
394
395 #ifdef DDB
396         if (db_active) {
397                 ++gd->gd_trap_nesting_level;
398                 MAKEMPSAFE(have_mplock);
399                 trap_fatal(frame, frame->tf_addr);
400                 --gd->gd_trap_nesting_level;
401                 goto out2;
402         }
403 #endif
404 #ifdef DDB
405         if (db_active) {
406                 eva = (frame->tf_trapno == T_PAGEFLT ? frame->tf_addr : 0);
407                 ++gd->gd_trap_nesting_level;
408                 MAKEMPSAFE(have_mplock);
409                 trap_fatal(frame, eva);
410                 --gd->gd_trap_nesting_level;
411                 goto out2;
412         }
413 #endif
414
415         eva = 0;
416
417 #ifdef SMP
418         if (trap_mpsafe == 0) {
419                 ++gd->gd_trap_nesting_level;
420                 MAKEMPSAFE(have_mplock);
421                 --gd->gd_trap_nesting_level;
422         }
423 #endif
424
425         if ((frame->tf_rflags & PSL_I) == 0) {
426                 /*
427                  * Buggy application or kernel code has disabled interrupts
428                  * and then trapped.  Enabling interrupts now is wrong, but
429                  * it is better than running with interrupts disabled until
430                  * they are accidentally enabled later.
431                  */
432                 type = frame->tf_trapno;
433                 if (ISPL(frame->tf_cs) == SEL_UPL) {
434                         MAKEMPSAFE(have_mplock);
435                         /* JG curproc can be NULL */
436                         kprintf(
437                             "pid %ld (%s): trap %d with interrupts disabled\n",
438                             (long)curproc->p_pid, curproc->p_comm, type);
439                 } else if (type != T_NMI && type != T_BPTFLT &&
440                     type != T_TRCTRAP) {
441                         /*
442                          * XXX not quite right, since this may be for a
443                          * multiple fault in user mode.
444                          */
445                         MAKEMPSAFE(have_mplock);
446                         kprintf("kernel trap %d with interrupts disabled\n",
447                             type);
448                 }
449                 cpu_enable_intr();
450         }
451
452         type = frame->tf_trapno;
453         code = frame->tf_err;
454
455         if (ISPL(frame->tf_cs) == SEL_UPL) {
456                 /* user trap */
457
458                 KTR_LOG(kernentry_trap, p->p_pid, lp->lwp_tid,
459                         frame->tf_trapno, eva);
460
461                 userenter(td);
462
463                 sticks = (int)td->td_sticks;
464                 lp->lwp_md.md_regs = frame;
465
466                 switch (type) {
467                 case T_PRIVINFLT:       /* privileged instruction fault */
468                         ucode = ILL_PRVOPC;
469                         i = SIGILL;
470                         break;
471
472                 case T_BPTFLT:          /* bpt instruction fault */
473                 case T_TRCTRAP:         /* trace trap */
474                         frame->tf_rflags &= ~PSL_T;
475                         i = SIGTRAP;
476                         break;
477
478                 case T_ARITHTRAP:       /* arithmetic trap */
479                         ucode = code;
480                         i = SIGFPE;
481 #if 0
482 #if JG
483                         ucode = fputrap();
484 #else
485                         ucode = code;
486 #endif
487                         i = SIGFPE;
488 #endif
489                         break;
490
491                 case T_ASTFLT:          /* Allow process switch */
492                         mycpu->gd_cnt.v_soft++;
493                         if (mycpu->gd_reqflags & RQF_AST_OWEUPC) {
494                                 atomic_clear_int_nonlocked(&mycpu->gd_reqflags,
495                                             RQF_AST_OWEUPC);
496                                 addupc_task(p, p->p_prof.pr_addr,
497                                             p->p_prof.pr_ticks);
498                         }
499                         goto out;
500
501                 case T_PROTFLT:         /* general protection fault */
502                 case T_SEGNPFLT:        /* segment not present fault */
503                 case T_TSSFLT:          /* invalid TSS fault */
504                 case T_DOUBLEFLT:       /* double fault */
505                 default:
506                         ucode = code + BUS_SEGM_FAULT ;
507                         i = SIGBUS;
508                         break;
509
510                 case T_PAGEFLT:         /* page fault */
511                         MAKEMPSAFE(have_mplock);
512                         i = trap_pfault(frame, TRUE);
513                         kprintf("TRAP_PFAULT %d\n", i);
514                         if (frame->tf_rip == 0)
515                                 Debugger("debug");
516                         if (i == -1)
517                                 goto out;
518                         if (i == 0)
519                                 goto out;
520
521                         ucode = T_PAGEFLT;
522                         break;
523
524                 case T_DIVIDE:          /* integer divide fault */
525                         ucode = FPE_INTDIV;
526                         i = SIGFPE;
527                         break;
528
529                 case T_NMI:
530                         MAKEMPSAFE(have_mplock);
531                         /* machine/parity/power fail/"kitchen sink" faults */
532                         if (isa_nmi(code) == 0) {
533 #ifdef DDB
534                                 /*
535                                  * NMI can be hooked up to a pushbutton
536                                  * for debugging.
537                                  */
538                                 if (ddb_on_nmi) {
539                                         kprintf ("NMI ... going to debugger\n");
540                                         kdb_trap(type, 0, frame);
541                                 }
542 #endif /* DDB */
543                                 goto out2;
544                         } else if (panic_on_nmi)
545                                 panic("NMI indicates hardware failure");
546                         break;
547
548                 case T_OFLOW:           /* integer overflow fault */
549                         ucode = FPE_INTOVF;
550                         i = SIGFPE;
551                         break;
552
553                 case T_BOUND:           /* bounds check fault */
554                         ucode = FPE_FLTSUB;
555                         i = SIGFPE;
556                         break;
557
558                 case T_DNA:
559                         /*
560                          * Virtual kernel intercept - pass the DNA exception
561                          * to the virtual kernel if it asked to handle it.
562                          * This occurs when the virtual kernel is holding
563                          * onto the FP context for a different emulated
564                          * process then the one currently running.
565                          *
566                          * We must still call npxdna() since we may have
567                          * saved FP state that the virtual kernel needs
568                          * to hand over to a different emulated process.
569                          */
570                         if (lp->lwp_vkernel && lp->lwp_vkernel->ve &&
571                             (td->td_pcb->pcb_flags & FP_VIRTFP)
572                         ) {
573                                 npxdna();
574                                 break;
575                         }
576
577                         /*
578                          * The kernel may have switched out the FP unit's
579                          * state, causing the user process to take a fault
580                          * when it tries to use the FP unit.  Restore the
581                          * state here
582                          */
583                         if (npxdna())
584                                 goto out;
585                         i = SIGFPE;
586                         ucode = FPE_FPU_NP_TRAP;
587                         break;
588
589                 case T_FPOPFLT:         /* FPU operand fetch fault */
590                         ucode = T_FPOPFLT;
591                         i = SIGILL;
592                         break;
593
594                 case T_XMMFLT:          /* SIMD floating-point exception */
595                         ucode = 0; /* XXX */
596                         i = SIGFPE;
597                         break;
598                 }
599         } else {
600                 /* kernel trap */
601
602                 switch (type) {
603                 case T_PAGEFLT:                 /* page fault */
604                         MAKEMPSAFE(have_mplock);
605                         trap_pfault(frame, FALSE);
606                         goto out2;
607
608                 case T_DNA:
609                         /*
610                          * The kernel is apparently using fpu for copying.
611                          * XXX this should be fatal unless the kernel has
612                          * registered such use.
613                          */
614                         if (npxdna())
615                                 goto out2;
616                         break;
617
618                 case T_STKFLT:          /* stack fault */
619                         break;
620
621                 case T_PROTFLT:         /* general protection fault */
622                 case T_SEGNPFLT:        /* segment not present fault */
623                         /*
624                          * Invalid segment selectors and out of bounds
625                          * %rip's and %rsp's can be set up in user mode.
626                          * This causes a fault in kernel mode when the
627                          * kernel tries to return to user mode.  We want
628                          * to get this fault so that we can fix the
629                          * problem here and not have to check all the
630                          * selectors and pointers when the user changes
631                          * them.
632                          */
633                         kprintf0("trap.c line %d\n", __LINE__);
634                         if (mycpu->gd_intr_nesting_level == 0) {
635                                 if (td->td_pcb->pcb_onfault) {
636                                         frame->tf_rip = (register_t)
637                                                 td->td_pcb->pcb_onfault;
638                                         goto out2;
639                                 }
640                         }
641                         break;
642
643                 case T_TSSFLT:
644                         /*
645                          * PSL_NT can be set in user mode and isn't cleared
646                          * automatically when the kernel is entered.  This
647                          * causes a TSS fault when the kernel attempts to
648                          * `iret' because the TSS link is uninitialized.  We
649                          * want to get this fault so that we can fix the
650                          * problem here and not every time the kernel is
651                          * entered.
652                          */
653                         if (frame->tf_rflags & PSL_NT) {
654                                 frame->tf_rflags &= ~PSL_NT;
655                                 goto out2;
656                         }
657                         break;
658
659                 case T_TRCTRAP:  /* trace trap */
660 #if 0
661                         if (frame->tf_rip == (int)IDTVEC(syscall)) {
662                                 /*
663                                  * We've just entered system mode via the
664                                  * syscall lcall.  Continue single stepping
665                                  * silently until the syscall handler has
666                                  * saved the flags.
667                                  */
668                                 goto out2;
669                         }
670                         if (frame->tf_rip == (int)IDTVEC(syscall) + 1) {
671                                 /*
672                                  * The syscall handler has now saved the
673                                  * flags.  Stop single stepping it.
674                                  */
675                                 frame->tf_rflags &= ~PSL_T;
676                                 goto out2;
677                         }
678 #endif
679
680                         /*
681                          * Ignore debug register trace traps due to
682                          * accesses in the user's address space, which
683                          * can happen under several conditions such as
684                          * if a user sets a watchpoint on a buffer and
685                          * then passes that buffer to a system call.
686                          * We still want to get TRCTRAPS for addresses
687                          * in kernel space because that is useful when
688                          * debugging the kernel.
689                          */
690 #if JG
691                         if (user_dbreg_trap()) {
692                                 /*
693                                  * Reset breakpoint bits because the
694                                  * processor doesn't
695                                  */
696                                 /* XXX check upper bits here */
697                                 load_dr6(rdr6() & 0xfffffff0);
698                                 goto out2;
699                         }
700 #endif
701                         /*
702                          * FALLTHROUGH (TRCTRAP kernel mode, kernel address)
703                          */
704                 case T_BPTFLT:
705                         /*
706                          * If DDB is enabled, let it handle the debugger trap.
707                          * Otherwise, debugger traps "can't happen".
708                          */
709 #ifdef DDB
710                         MAKEMPSAFE(have_mplock);
711                         if (kdb_trap(type, 0, frame))
712                                 goto out2;
713 #endif
714                         break;
715
716                 case T_NMI:
717                         MAKEMPSAFE(have_mplock);
718                         /* machine/parity/power fail/"kitchen sink" faults */
719 #if NISA > 0
720                         if (isa_nmi(code) == 0) {
721 #ifdef DDB
722                                 /*
723                                  * NMI can be hooked up to a pushbutton
724                                  * for debugging.
725                                  */
726                                 if (ddb_on_nmi) {
727                                         kprintf ("NMI ... going to debugger\n");
728                                         kdb_trap(type, 0, frame);
729                                 }
730 #endif /* DDB */
731                                 goto out2;
732                         } else if (panic_on_nmi == 0)
733                                 goto out2;
734                         /* FALL THROUGH */
735 #endif /* NISA > 0 */
736                 }
737                 MAKEMPSAFE(have_mplock);
738                 trap_fatal(frame, 0);
739                 goto out2;
740         }
741
742         /*
743          * Virtual kernel intercept - if the fault is directly related to a
744          * VM context managed by a virtual kernel then let the virtual kernel
745          * handle it.
746          */
747         if (lp->lwp_vkernel && lp->lwp_vkernel->ve) {
748                 vkernel_trap(lp, frame);
749                 goto out2;
750         }
751
752         /*
753          * Virtual kernel intercept - if the fault is directly related to a
754          * VM context managed by a virtual kernel then let the virtual kernel
755          * handle it.
756          */
757         if (lp->lwp_vkernel && lp->lwp_vkernel->ve) {
758                 vkernel_trap(lp, frame);
759                 goto out;
760         }
761
762         /*
763          * Translate fault for emulators (e.g. Linux) 
764          */
765         if (*p->p_sysent->sv_transtrap)
766                 i = (*p->p_sysent->sv_transtrap)(i, type);
767
768         MAKEMPSAFE(have_mplock);
769         trapsignal(lp, i, ucode);
770
771 #ifdef DEBUG
772         if (type <= MAX_TRAP_MSG) {
773                 uprintf("fatal process exception: %s",
774                         trap_msg[type]);
775                 if ((type == T_PAGEFLT) || (type == T_PROTFLT))
776                         uprintf(", fault VA = 0x%lx", frame->tf_addr);
777                 uprintf("\n");
778         }
779 #endif
780
781 out:
782 #ifdef SMP
783         if (ISPL(frame->tf_cs) == SEL_UPL)
784                 KASSERT(td->td_mpcount == have_mplock, ("badmpcount trap/end from %p", (void *)frame->tf_rip));
785 #endif
786         userret(lp, frame, sticks);
787         userexit(lp);
788 out2:   ;
789 #ifdef SMP
790         if (have_mplock)
791                 rel_mplock();
792 #endif
793         if (p != NULL && lp != NULL)
794                 KTR_LOG(kernentry_trap_ret, p->p_pid, lp->lwp_tid);
795 #ifdef INVARIANTS
796         KASSERT(crit_count == (td->td_pri & ~TDPRI_MASK),
797                 ("syscall: critical section count mismatch! %d/%d",
798                 crit_count / TDPRI_CRIT, td->td_pri / TDPRI_CRIT));
799 #endif
800 }
801
802 static int
803 trap_pfault(struct trapframe *frame, int usermode)
804 {
805         vm_offset_t va;
806         struct vmspace *vm = NULL;
807         vm_map_t map;
808         int rv = 0;
809         vm_prot_t ftype;
810         thread_t td = curthread;
811         struct lwp *lp = td->td_lwp;
812
813         va = trunc_page(frame->tf_addr);
814         if (va >= VM_MIN_KERNEL_ADDRESS) {
815                 /*
816                  * Don't allow user-mode faults in kernel address space.
817                  */
818                 if (usermode)
819                         goto nogo;
820
821                 map = &kernel_map;
822         } else {
823                 /*
824                  * This is a fault on non-kernel virtual memory.
825                  * vm is initialized above to NULL. If curproc is NULL
826                  * or curproc->p_vmspace is NULL the fault is fatal.
827                  */
828                 if (lp != NULL)
829                         vm = lp->lwp_vmspace;
830
831                 if (vm == NULL)
832                         goto nogo;
833
834                 map = &vm->vm_map;
835         }
836
837         /*
838          * PGEX_I is defined only if the execute disable bit capability is
839          * supported and enabled.
840          */
841         if (frame->tf_err & PGEX_W)
842                 ftype = VM_PROT_WRITE;
843 #if JG
844         else if ((frame->tf_err & PGEX_I) && pg_nx != 0)
845                 ftype = VM_PROT_EXECUTE;
846 #endif
847         else
848                 ftype = VM_PROT_READ;
849
850         if (map != &kernel_map) {
851                 /*
852                  * Keep swapout from messing with us during this
853                  *      critical time.
854                  */
855                 PHOLD(lp->lwp_proc);
856
857                 /*
858                  * Grow the stack if necessary
859                  */
860                 /* grow_stack returns false only if va falls into
861                  * a growable stack region and the stack growth
862                  * fails.  It returns true if va was not within
863                  * a growable stack region, or if the stack 
864                  * growth succeeded.
865                  */
866                 if (!grow_stack(lp->lwp_proc, va)) {
867                         rv = KERN_FAILURE;
868                         PRELE(lp->lwp_proc);
869                         goto nogo;
870                 }
871
872                 /* Fault in the user page: */
873                 rv = vm_fault(map, va, ftype,
874                               (ftype & VM_PROT_WRITE) ? VM_FAULT_DIRTY
875                                                       : VM_FAULT_NORMAL);
876
877                 PRELE(lp->lwp_proc);
878         } else {
879                 /*
880                  * Don't have to worry about process locking or stacks
881                  * in the kernel.
882                  */
883                 rv = vm_fault(map, va, ftype, VM_FAULT_NORMAL);
884         }
885
886         if (rv == KERN_SUCCESS)
887                 return (0);
888 nogo:
889         if (!usermode) {
890                 if (td->td_gd->gd_intr_nesting_level == 0 &&
891                     td->td_pcb->pcb_onfault) {
892                         frame->tf_rip = (register_t)td->td_pcb->pcb_onfault;
893                         return (0);
894                 }
895                 trap_fatal(frame, frame->tf_addr);
896                 return (-1);
897         }
898
899         /*
900          * NOTE: on amd64 we have a tf_addr field in the trapframe, no
901          * kludge is needed to pass the fault address to signal handlers.
902          */
903
904         return((rv == KERN_PROTECTION_FAILURE) ? SIGBUS : SIGSEGV);
905 }
906
907 static void
908 trap_fatal(struct trapframe *frame, vm_offset_t eva)
909 {
910         int code, ss;
911         u_int type;
912         long rsp;
913         struct soft_segment_descriptor softseg;
914         char *msg;
915
916         code = frame->tf_err;
917         type = frame->tf_trapno;
918         sdtossd(&gdt[IDXSEL(frame->tf_cs & 0xffff)], &softseg);
919
920         if (type <= MAX_TRAP_MSG)
921                 msg = trap_msg[type];
922         else
923                 msg = "UNKNOWN";
924         kprintf("\n\nFatal trap %d: %s while in %s mode\n", type, msg,
925             ISPL(frame->tf_cs) == SEL_UPL ? "user" : "kernel");
926 #ifdef SMP
927         /* two separate prints in case of a trap on an unmapped page */
928         kprintf("cpuid = %d; ", PCPU_GET(cpuid));
929         kprintf("apic id = %02x\n", PCPU_GET(apic_id));
930 #endif
931         if (type == T_PAGEFLT) {
932                 kprintf("fault virtual address  = 0x%lx\n", eva);
933                 kprintf("fault code             = %s %s %s, %s\n",
934                         code & PGEX_U ? "user" : "supervisor",
935                         code & PGEX_W ? "write" : "read",
936                         code & PGEX_I ? "instruction" : "data",
937                         code & PGEX_P ? "protection violation" : "page not present");
938         }
939         kprintf("instruction pointer    = 0x%lx:0x%lx\n",
940                frame->tf_cs & 0xffff, frame->tf_rip);
941         if (ISPL(frame->tf_cs) == SEL_UPL) {
942                 ss = frame->tf_ss & 0xffff;
943                 rsp = frame->tf_rsp;
944         } else {
945                 ss = GSEL(GDATA_SEL, SEL_KPL);
946                 rsp = (long)&frame->tf_rsp;
947         }
948         kprintf("stack pointer          = 0x%x:0x%lx\n", ss, rsp);
949         kprintf("frame pointer          = 0x%x:0x%lx\n", ss, frame->tf_rbp);
950         kprintf("code segment           = base 0x%lx, limit 0x%lx, type 0x%x\n",
951                softseg.ssd_base, softseg.ssd_limit, softseg.ssd_type);
952         kprintf("                       = DPL %d, pres %d, long %d, def32 %d, gran %d\n",
953                softseg.ssd_dpl, softseg.ssd_p, softseg.ssd_long, softseg.ssd_def32,
954                softseg.ssd_gran);
955         kprintf("processor eflags       = ");
956         if (frame->tf_rflags & PSL_T)
957                 kprintf("trace trap, ");
958         if (frame->tf_rflags & PSL_I)
959                 kprintf("interrupt enabled, ");
960         if (frame->tf_rflags & PSL_NT)
961                 kprintf("nested task, ");
962         if (frame->tf_rflags & PSL_RF)
963                 kprintf("resume, ");
964         kprintf("IOPL = %ld\n", (frame->tf_rflags & PSL_IOPL) >> 12);
965         kprintf("current process                = ");
966         if (curproc) {
967                 kprintf("%lu\n",
968                     (u_long)curproc->p_pid);
969         } else {
970                 kprintf("Idle\n");
971         }
972         kprintf("current thread          = pri %d ", curthread->td_pri);
973         if (curthread->td_pri >= TDPRI_CRIT)
974                 kprintf("(CRIT)");
975         kprintf("\n");
976
977 #ifdef DDB
978         if ((debugger_on_panic || db_active) && kdb_trap(type, code, frame))
979                 return;
980 #endif
981         kprintf("trap number            = %d\n", type);
982         if (type <= MAX_TRAP_MSG)
983                 panic("%s", trap_msg[type]);
984         else
985                 panic("unknown/reserved trap");
986 }
987
988 /*
989  * Double fault handler. Called when a fault occurs while writing
990  * a frame for a trap/exception onto the stack. This usually occurs
991  * when the stack overflows (such is the case with infinite recursion,
992  * for example).
993  */
994 void
995 dblfault_handler(struct trapframe *frame)
996 {
997         kprintf0("DOUBLE FAULT\n");
998         kprintf("\nFatal double fault\n");
999         kprintf("rip = 0x%lx\n", frame->tf_rip);
1000         kprintf("rsp = 0x%lx\n", frame->tf_rsp);
1001         kprintf("rbp = 0x%lx\n", frame->tf_rbp);
1002 #ifdef SMP
1003         /* two separate prints in case of a trap on an unmapped page */
1004         kprintf("cpuid = %d; ", PCPU_GET(cpuid));
1005         kprintf("apic id = %02x\n", PCPU_GET(apic_id));
1006 #endif
1007         panic("double fault");
1008 }
1009
1010 /*
1011  *      syscall2 -      MP aware system call request C handler
1012  *
1013  *      A system call is essentially treated as a trap except that the
1014  *      MP lock is not held on entry or return.  We are responsible for
1015  *      obtaining the MP lock if necessary and for handling ASTs
1016  *      (e.g. a task switch) prior to return.
1017  *
1018  *      In general, only simple access and manipulation of curproc and
1019  *      the current stack is allowed without having to hold MP lock.
1020  *
1021  *      MPSAFE - note that large sections of this routine are run without
1022  *               the MP lock.
1023  */
1024 void
1025 syscall2(struct trapframe *frame)
1026 {
1027         struct thread *td = curthread;
1028         struct proc *p = td->td_proc;
1029         struct lwp *lp = td->td_lwp;
1030         caddr_t params;
1031         struct sysent *callp;
1032         register_t orig_tf_rflags;
1033         int sticks;
1034         int error;
1035         int narg;
1036 #ifdef INVARIANTS
1037         int crit_count = td->td_pri & ~TDPRI_MASK;
1038 #endif
1039 #ifdef SMP
1040         int have_mplock = 0;
1041 #endif
1042         register_t *argp;
1043         u_int code;
1044         int reg, regcnt;
1045         union sysunion args;
1046         register_t *argsdst;
1047         kprintf0("SYSCALL rip = %016llx\n", frame->tf_rip);
1048
1049         PCPU_INC(cnt.v_syscall);
1050
1051         kprintf0("\033[31mSYSCALL %ld\033[39m\n", frame->tf_rax);
1052 #ifdef DIAGNOSTIC
1053         if (ISPL(frame->tf_cs) != SEL_UPL) {
1054                 get_mplock();
1055                 panic("syscall");
1056                 /* NOT REACHED */
1057         }
1058 #endif
1059
1060         KTR_LOG(kernentry_syscall, p->p_pid, lp->lwp_tid,
1061                 frame->tf_eax);
1062
1063 #ifdef SMP
1064         KASSERT(td->td_mpcount == 0, ("badmpcount syscall2 from %p", (void *)frame->tf_eip));
1065         if (syscall_mpsafe == 0)
1066                 MAKEMPSAFE(have_mplock);
1067 #endif
1068         userenter(td);          /* lazy raise our priority */
1069
1070         reg = 0;
1071         regcnt = 6;
1072         /*
1073          * Misc
1074          */
1075         sticks = (int)td->td_sticks;
1076         orig_tf_rflags = frame->tf_rflags;
1077
1078         /*
1079          * Virtual kernel intercept - if a VM context managed by a virtual
1080          * kernel issues a system call the virtual kernel handles it, not us.
1081          * Restore the virtual kernel context and return from its system
1082          * call.  The current frame is copied out to the virtual kernel.
1083          */
1084         if (lp->lwp_vkernel && lp->lwp_vkernel->ve) {
1085                 error = vkernel_trap(lp, frame);
1086                 frame->tf_rax = error;
1087                 if (error)
1088                         frame->tf_rflags |= PSL_C;
1089                 error = EJUSTRETURN;
1090                 goto out;
1091         }
1092
1093         /*
1094          * Get the system call parameters and account for time
1095          */
1096         lp->lwp_md.md_regs = frame;
1097         params = (caddr_t)frame->tf_rsp + sizeof(register_t);
1098         code = frame->tf_rax;
1099
1100         if (p->p_sysent->sv_prepsyscall) {
1101                 (*p->p_sysent->sv_prepsyscall)(
1102                         frame, (int *)(&args.nosys.sysmsg + 1),
1103                         &code, &params);
1104         } else {
1105                 if (code == SYS_syscall || code == SYS___syscall) {
1106                         code = frame->tf_rdi;
1107                         reg++;
1108                         regcnt--;
1109                 }
1110         }
1111
1112         if (p->p_sysent->sv_mask)
1113                 code &= p->p_sysent->sv_mask;
1114
1115         if (code >= p->p_sysent->sv_size)
1116                 callp = &p->p_sysent->sv_table[0];
1117         else
1118                 callp = &p->p_sysent->sv_table[code];
1119
1120         narg = callp->sy_narg & SYF_ARGMASK;
1121
1122         /*
1123          * On amd64 we get up to six arguments in registers. The rest are
1124          * on the stack. The first six members of 'struct trampframe' happen
1125          * to be the registers used to pass arguments, in exactly the right
1126          * order.
1127          */
1128         argp = &frame->tf_rdi;
1129         argp += reg;
1130         argsdst = (register_t *)(&args.nosys.sysmsg + 1);
1131         /*
1132          * JG can we overflow the space pointed to by 'argsdst'
1133          * either with 'bcopy' or with 'copyin'?
1134          */
1135         bcopy(argp, argsdst, sizeof(register_t) * regcnt);
1136         /*
1137          * copyin is MP aware, but the tracing code is not
1138          */
1139         if (narg > regcnt) {
1140                 KASSERT(params != NULL, ("copyin args with no params!"));
1141                 error = copyin(params, &argsdst[regcnt],
1142                         (narg - regcnt) * sizeof(register_t));
1143                 if (error) {
1144 #ifdef KTRACE
1145                         if (KTRPOINT(td, KTR_SYSCALL)) {
1146                                 MAKEMPSAFE(have_mplock);
1147                                 
1148                                 ktrsyscall(lp, code, narg,
1149                                         (void *)(&args.nosys.sysmsg + 1));
1150                         }
1151 #endif
1152                         goto bad;
1153                 }
1154         }
1155
1156 #ifdef KTRACE
1157         if (KTRPOINT(td, KTR_SYSCALL)) {
1158                 MAKEMPSAFE(have_mplock);
1159                 ktrsyscall(lp, code, narg, (void *)(&args.nosys.sysmsg + 1));
1160         }
1161 #endif
1162
1163         /*
1164          * Default return value is 0 (will be copied to %rax).  Double-value
1165          * returns use %rax and %rdx.  %rdx is left unchanged for system
1166          * calls which return only one result.
1167          */
1168         args.sysmsg_fds[0] = 0;
1169         args.sysmsg_fds[1] = frame->tf_rdx;
1170
1171         /*
1172          * The syscall might manipulate the trap frame. If it does it
1173          * will probably return EJUSTRETURN.
1174          */
1175         args.sysmsg_frame = frame;
1176
1177         STOPEVENT(p, S_SCE, narg);      /* MP aware */
1178
1179 #ifdef SMP
1180         /*
1181          * Try to run the syscall without the MP lock if the syscall
1182          * is MP safe.  We have to obtain the MP lock no matter what if 
1183          * we are ktracing
1184          */
1185         if ((callp->sy_narg & SYF_MPSAFE) == 0)
1186                 MAKEMPSAFE(have_mplock);
1187 #endif
1188
1189         error = (*callp->sy_call)(&args);
1190
1191 out:
1192         /*
1193          * MP SAFE (we may or may not have the MP lock at this point)
1194          */
1195         kprintf("SYSMSG %d ", error);
1196         switch (error) {
1197         case 0:
1198                 /*
1199                  * Reinitialize proc pointer `p' as it may be different
1200                  * if this is a child returning from fork syscall.
1201                  */
1202                 p = curproc;
1203                 lp = curthread->td_lwp;
1204                 frame->tf_rax = args.sysmsg_fds[0];
1205                 frame->tf_rdx = args.sysmsg_fds[1];
1206                 kprintf0("RESULT %lld %lld\n", frame->tf_rax, frame->tf_rdx);
1207                 frame->tf_rflags &= ~PSL_C;
1208                 break;
1209         case ERESTART:
1210                 /*
1211                  * Reconstruct pc, we know that 'syscall' is 2 bytes.
1212                  * We have to do a full context restore so that %r10
1213                  * (which was holding the value of %rcx) is restored for
1214                  * the next iteration.
1215                  */
1216                 frame->tf_rip -= frame->tf_err;
1217                 frame->tf_r10 = frame->tf_rcx;
1218                 td->td_pcb->pcb_flags |= PCB_FULLCTX;
1219                 break;
1220         case EJUSTRETURN:
1221                 break;
1222         case EASYNC:
1223                 panic("Unexpected EASYNC return value (for now)");
1224         default:
1225 bad:
1226                 if (p->p_sysent->sv_errsize) {
1227                         if (error >= p->p_sysent->sv_errsize)
1228                                 error = -1;     /* XXX */
1229                         else
1230                                 error = p->p_sysent->sv_errtbl[error];
1231                 }
1232                 kprintf0("ERROR %d\n", error);
1233                 frame->tf_rax = error;
1234                 frame->tf_rflags |= PSL_C;
1235                 break;
1236         }
1237
1238         /*
1239          * Traced syscall.  trapsignal() is not MP aware.
1240          */
1241         if (orig_tf_rflags & PSL_T) {
1242                 MAKEMPSAFE(have_mplock);
1243                 frame->tf_rflags &= ~PSL_T;
1244                 trapsignal(lp, SIGTRAP, 0);
1245         }
1246
1247         /*
1248          * Handle reschedule and other end-of-syscall issues
1249          */
1250         userret(lp, frame, sticks);
1251
1252 #ifdef KTRACE
1253         if (KTRPOINT(td, KTR_SYSRET)) {
1254                 MAKEMPSAFE(have_mplock);
1255                 ktrsysret(lp, code, error, args.sysmsg_result);
1256         }
1257 #endif
1258
1259         /*
1260          * This works because errno is findable through the
1261          * register set.  If we ever support an emulation where this
1262          * is not the case, this code will need to be revisited.
1263          */
1264         STOPEVENT(p, S_SCX, code);
1265
1266         userexit(lp);
1267 #ifdef SMP
1268         /*
1269          * Release the MP lock if we had to get it
1270          */
1271         KASSERT(td->td_mpcount == have_mplock, 
1272                 ("badmpcount syscall2/end from %p", (void *)frame->tf_eip));
1273         if (have_mplock)
1274                 rel_mplock();
1275 #endif
1276         KTR_LOG(kernentry_syscall_ret, p->p_pid, lp->lwp_tid, error);
1277 #ifdef INVARIANTS
1278         KASSERT(crit_count == (td->td_pri & ~TDPRI_MASK), 
1279                 ("syscall: critical section count mismatch! %d/%d",
1280                 crit_count / TDPRI_CRIT, td->td_pri / TDPRI_CRIT));
1281 #endif
1282 }
1283
1284 void
1285 fork_return(struct lwp *lp, struct trapframe *frame)
1286 {
1287         kprintf0("fork return\n");
1288         frame->tf_rax = 0;              /* Child returns zero */
1289         frame->tf_rflags &= ~PSL_C;     /* success */
1290         frame->tf_rdx = 1;
1291
1292         generic_lwp_return(lp, frame);
1293         KTR_LOG(kernentry_fork_ret, lp->lwp_proc->p_pid, lp->lwp_tid);
1294 }
1295
1296 /*
1297  * Simplified back end of syscall(), used when returning from fork()
1298  * directly into user mode.  MP lock is held on entry and should be
1299  * released on return.  This code will return back into the fork
1300  * trampoline code which then runs doreti.
1301  */
1302 void
1303 generic_lwp_return(struct lwp *lp, struct trapframe *frame)
1304 {
1305         kprintf0("generic_lwp_return\n");
1306         struct proc *p = lp->lwp_proc;
1307
1308         /*
1309          * Newly forked processes are given a kernel priority.  We have to
1310          * adjust the priority to a normal user priority and fake entry
1311          * into the kernel (call userenter()) to install a passive release
1312          * function just in case userret() decides to stop the process.  This
1313          * can occur when ^Z races a fork.  If we do not install the passive
1314          * release function the current process designation will not be
1315          * released when the thread goes to sleep.
1316          */
1317         lwkt_setpri_self(TDPRI_USER_NORM);
1318         userenter(lp->lwp_thread);
1319         userret(lp, frame, 0);
1320 #ifdef KTRACE
1321         if (KTRPOINT(lp->lwp_thread, KTR_SYSRET))
1322                 ktrsysret(lp, SYS_fork, 0, 0);
1323 #endif
1324         p->p_flag |= P_PASSIVE_ACQ;
1325         userexit(lp);
1326         p->p_flag &= ~P_PASSIVE_ACQ;
1327 #ifdef SMP
1328         KKASSERT(lp->lwp_thread->td_mpcount == 1);
1329         rel_mplock();
1330 #endif
1331 }
1332
1333 /*
1334  * If PGEX_FPFAULT is set then set FP_VIRTFP in the PCB to force a T_DNA
1335  * fault (which is then passed back to the virtual kernel) if an attempt is
1336  * made to use the FP unit.
1337  *
1338  * XXX this is a fairly big hack.
1339  */
1340 void
1341 set_vkernel_fp(struct trapframe *frame)
1342 {
1343         /* JGXXX */
1344 }