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