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