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