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