dm dumping - peripheral changes
[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/kerneldump.h>
55 #include <sys/proc.h>
56 #include <sys/pioctl.h>
57 #include <sys/types.h>
58 #include <sys/signal2.h>
59 #include <sys/syscall.h>
60 #include <sys/sysctl.h>
61 #include <sys/sysent.h>
62 #include <sys/systm.h>
63 #ifdef KTRACE
64 #include <sys/ktrace.h>
65 #endif
66 #include <sys/ktr.h>
67 #include <sys/sysmsg.h>
68 #include <sys/sysproto.h>
69 #include <sys/sysunion.h>
70
71 #include <vm/pmap.h>
72 #include <vm/vm.h>
73 #include <vm/vm_extern.h>
74 #include <vm/vm_kern.h>
75 #include <vm/vm_param.h>
76 #include <machine/cpu.h>
77 #include <machine/pcb.h>
78 #include <machine/smp.h>
79 #include <machine/thread.h>
80 #include <machine/vmparam.h>
81 #include <machine/md_var.h>
82 #include <machine_base/isa/intr_machdep.h>
83
84 #include <ddb/ddb.h>
85
86 #include <sys/thread2.h>
87 #include <sys/mplock2.h>
88
89 #ifdef SMP
90
91 #define MAKEMPSAFE(have_mplock)                 \
92         if (have_mplock == 0) {                 \
93                 get_mplock();                   \
94                 have_mplock = 1;                \
95         }
96
97 #else
98
99 #define MAKEMPSAFE(have_mplock)
100
101 #endif
102
103 extern void trap(struct trapframe *frame);
104
105 static int trap_pfault(struct trapframe *, int);
106 static void trap_fatal(struct trapframe *, vm_offset_t);
107 void dblfault_handler(struct trapframe *frame);
108
109 #define MAX_TRAP_MSG            30
110 static char *trap_msg[] = {
111         "",                                     /*  0 unused */
112         "privileged instruction fault",         /*  1 T_PRIVINFLT */
113         "",                                     /*  2 unused */
114         "breakpoint instruction fault",         /*  3 T_BPTFLT */
115         "",                                     /*  4 unused */
116         "",                                     /*  5 unused */
117         "arithmetic trap",                      /*  6 T_ARITHTRAP */
118         "system forced exception",              /*  7 T_ASTFLT */
119         "",                                     /*  8 unused */
120         "general protection fault",             /*  9 T_PROTFLT */
121         "trace trap",                           /* 10 T_TRCTRAP */
122         "",                                     /* 11 unused */
123         "page fault",                           /* 12 T_PAGEFLT */
124         "",                                     /* 13 unused */
125         "alignment fault",                      /* 14 T_ALIGNFLT */
126         "",                                     /* 15 unused */
127         "",                                     /* 16 unused */
128         "",                                     /* 17 unused */
129         "integer divide fault",                 /* 18 T_DIVIDE */
130         "non-maskable interrupt trap",          /* 19 T_NMI */
131         "overflow trap",                        /* 20 T_OFLOW */
132         "FPU bounds check fault",               /* 21 T_BOUND */
133         "FPU device not available",             /* 22 T_DNA */
134         "double fault",                         /* 23 T_DOUBLEFLT */
135         "FPU operand fetch fault",              /* 24 T_FPOPFLT */
136         "invalid TSS fault",                    /* 25 T_TSSFLT */
137         "segment not present fault",            /* 26 T_SEGNPFLT */
138         "stack fault",                          /* 27 T_STKFLT */
139         "machine check trap",                   /* 28 T_MCHK */
140         "SIMD floating-point exception",        /* 29 T_XMMFLT */
141         "reserved (unknown) fault",             /* 30 T_RESERVED */
142 };
143
144 #ifdef DDB
145 static int ddb_on_nmi = 1;
146 SYSCTL_INT(_machdep, OID_AUTO, ddb_on_nmi, CTLFLAG_RW,
147         &ddb_on_nmi, 0, "Go to DDB on NMI");
148 static int ddb_on_seg_fault = 0;
149 SYSCTL_INT(_machdep, OID_AUTO, ddb_on_seg_fault, CTLFLAG_RW,
150         &ddb_on_seg_fault, 0, "Go to DDB on user seg-fault");
151 #endif
152 static int panic_on_nmi = 1;
153 SYSCTL_INT(_machdep, OID_AUTO, panic_on_nmi, CTLFLAG_RW,
154         &panic_on_nmi, 0, "Panic on NMI");
155 static int fast_release;
156 SYSCTL_INT(_machdep, OID_AUTO, fast_release, CTLFLAG_RW,
157         &fast_release, 0, "Passive Release was optimal");
158 static int slow_release;
159 SYSCTL_INT(_machdep, OID_AUTO, slow_release, CTLFLAG_RW,
160         &slow_release, 0, "Passive Release was nonoptimal");
161
162 /*
163  * Passively intercepts the thread switch function to increase
164  * the thread priority from a user priority to a kernel priority, reducing
165  * syscall and trap overhead for the case where no switch occurs.
166  *
167  * Synchronizes td_ucred with p_ucred.  This is used by system calls,
168  * signal handling, faults, AST traps, and anything else that enters the
169  * kernel from userland and provides the kernel with a stable read-only
170  * copy of the process ucred.
171  */
172 static __inline void
173 userenter(struct thread *curtd, struct proc *curp)
174 {
175         struct ucred *ocred;
176         struct ucred *ncred;
177
178         curtd->td_release = lwkt_passive_release;
179
180         if (curtd->td_ucred != curp->p_ucred) {
181                 ncred = crhold(curp->p_ucred);
182                 ocred = curtd->td_ucred;
183                 curtd->td_ucred = ncred;
184                 if (ocred)
185                         crfree(ocred);
186         }
187 }
188
189 /*
190  * Handle signals, upcalls, profiling, and other AST's and/or tasks that
191  * must be completed before we can return to or try to return to userland.
192  *
193  * Note that td_sticks is a 64 bit quantity, but there's no point doing 64
194  * arithmatic on the delta calculation so the absolute tick values are
195  * truncated to an integer.
196  */
197 static void
198 userret(struct lwp *lp, struct trapframe *frame, int sticks)
199 {
200         struct proc *p = lp->lwp_proc;
201         int sig;
202
203         /*
204          * Charge system time if profiling.  Note: times are in microseconds.
205          * This may do a copyout and block, so do it first even though it
206          * means some system time will be charged as user time.
207          */
208         if (p->p_flag & P_PROFIL) {
209                 addupc_task(p, frame->tf_rip, 
210                         (u_int)((int)lp->lwp_thread->td_sticks - sticks));
211         }
212
213 recheck:
214         /*
215          * If the jungle wants us dead, so be it.
216          */
217         if (lp->lwp_flag & LWP_WEXIT) {
218                 get_mplock();
219                 lwp_exit(0);
220                 rel_mplock(); /* NOT REACHED */
221         }
222
223         /*
224          * Block here if we are in a stopped state.
225          */
226         if (p->p_stat == SSTOP || dump_stop_usertds) {
227                 get_mplock();
228                 tstop();
229                 rel_mplock();
230                 goto recheck;
231         }
232
233         /*
234          * Post any pending upcalls.  If running a virtual kernel be sure
235          * to restore the virtual kernel's vmspace before posting the upcall.
236          */
237         if (p->p_flag & P_UPCALLPEND) {
238                 p->p_flag &= ~P_UPCALLPEND;
239                 get_mplock();
240                 postupcall(lp);
241                 rel_mplock();
242                 goto recheck;
243         }
244
245         /*
246          * Post any pending signals.  If running a virtual kernel be sure
247          * to restore the virtual kernel's vmspace before posting the signal.
248          *
249          * WARNING!  postsig() can exit and not return.
250          */
251         if ((sig = CURSIG_TRACE(lp)) != 0) {
252                 get_mplock();
253                 postsig(sig);
254                 rel_mplock();
255                 goto recheck;
256         }
257
258         /*
259          * block here if we are swapped out, but still process signals
260          * (such as SIGKILL).  proc0 (the swapin scheduler) is already
261          * aware of our situation, we do not have to wake it up.
262          */
263         if (p->p_flag & P_SWAPPEDOUT) {
264                 get_mplock();
265                 p->p_flag |= P_SWAPWAIT;
266                 swapin_request();
267                 if (p->p_flag & P_SWAPWAIT)
268                         tsleep(p, PCATCH, "SWOUT", 0);
269                 p->p_flag &= ~P_SWAPWAIT;
270                 rel_mplock();
271                 goto recheck;
272         }
273
274         /*
275          * Make sure postsig() handled request to restore old signal mask after
276          * running signal handler.
277          */
278         KKASSERT((lp->lwp_flag & LWP_OLDMASK) == 0);
279 }
280
281 /*
282  * Cleanup from userenter and any passive release that might have occured.
283  * We must reclaim the current-process designation before we can return
284  * to usermode.  We also handle both LWKT and USER reschedule requests.
285  */
286 static __inline void
287 userexit(struct lwp *lp)
288 {
289         struct thread *td = lp->lwp_thread;
290 /*      globaldata_t gd = td->td_gd;*/
291
292         /*
293          * Handle stop requests at kernel priority.  Any requests queued
294          * after this loop will generate another AST.
295          */
296         while (lp->lwp_proc->p_stat == SSTOP) {
297                 get_mplock();
298                 tstop();
299                 rel_mplock();
300         }
301
302         /*
303          * Reduce our priority in preparation for a return to userland.  If
304          * our passive release function was still in place, our priority was
305          * never raised and does not need to be reduced.
306          */
307         lwkt_passive_recover(td);
308
309         /*
310          * Become the current user scheduled process if we aren't already,
311          * and deal with reschedule requests and other factors.
312          */
313         lp->lwp_proc->p_usched->acquire_curproc(lp);
314         /* WARNING: we may have migrated cpu's */
315         /* gd = td->td_gd; */
316 }
317
318 #if !defined(KTR_KERNENTRY)
319 #define KTR_KERNENTRY   KTR_ALL
320 #endif
321 KTR_INFO_MASTER(kernentry);
322 KTR_INFO(KTR_KERNENTRY, kernentry, trap, 0, "STR",
323          sizeof(long) + sizeof(long) + sizeof(long) + sizeof(vm_offset_t));
324 KTR_INFO(KTR_KERNENTRY, kernentry, trap_ret, 0, "STR",
325          sizeof(long) + sizeof(long));
326 KTR_INFO(KTR_KERNENTRY, kernentry, syscall, 0, "STR",
327          sizeof(long) + sizeof(long) + sizeof(long));
328 KTR_INFO(KTR_KERNENTRY, kernentry, syscall_ret, 0, "STR",
329          sizeof(long) + sizeof(long) + sizeof(long));
330 KTR_INFO(KTR_KERNENTRY, kernentry, fork_ret, 0, "STR",
331          sizeof(long) + sizeof(long));
332
333 /*
334  * Exception, fault, and trap interface to the kernel.
335  * This common code is called from assembly language IDT gate entry
336  * routines that prepare a suitable stack frame, and restore this
337  * frame after the exception has been processed.
338  *
339  * This function is also called from doreti in an interlock to handle ASTs.
340  * For example:  hardwareint->INTROUTINE->(set ast)->doreti->trap
341  *
342  * NOTE!  We have to retrieve the fault address prior to obtaining the
343  * MP lock because get_mplock() may switch out.  YYY cr2 really ought
344  * to be retrieved by the assembly code, not here.
345  *
346  * XXX gd_trap_nesting_level currently prevents lwkt_switch() from panicing
347  * if an attempt is made to switch from a fast interrupt or IPI.  This is
348  * necessary to properly take fatal kernel traps on SMP machines if 
349  * get_mplock() has to block.
350  */
351
352 void
353 trap(struct trapframe *frame)
354 {
355         struct globaldata *gd = mycpu;
356         struct thread *td = gd->gd_curthread;
357         struct lwp *lp = td->td_lwp;
358         struct proc *p;
359         int sticks = 0;
360         int i = 0, ucode = 0, type, code;
361 #ifdef SMP
362         int have_mplock = 0;
363 #endif
364 #ifdef INVARIANTS
365         int crit_count = td->td_critcount;
366         lwkt_tokref_t curstop = td->td_toks_stop;
367 #endif
368         vm_offset_t eva;
369
370         p = td->td_proc;
371
372 #ifdef JG
373         kprintf0("TRAP ");
374         kprintf0("\"%s\" type=%ld\n",
375                 trap_msg[frame->tf_trapno], frame->tf_trapno);
376         kprintf0(" rip=%lx rsp=%lx\n", frame->tf_rip, frame->tf_rsp);
377         kprintf0(" err=%lx addr=%lx\n", frame->tf_err, frame->tf_addr);
378         kprintf0(" cs=%lx ss=%lx rflags=%lx\n", (unsigned long)frame->tf_cs, (unsigned long)frame->tf_ss, frame->tf_rflags);
379 #endif
380
381 #ifdef DDB
382         if (db_active && frame->tf_trapno != T_DNA) {
383                 eva = (frame->tf_trapno == T_PAGEFLT ? frame->tf_addr : 0);
384                 ++gd->gd_trap_nesting_level;
385                 MAKEMPSAFE(have_mplock);
386                 trap_fatal(frame, eva);
387                 --gd->gd_trap_nesting_level;
388                 goto out2;
389         }
390 #endif
391
392         eva = 0;
393
394         if ((frame->tf_rflags & PSL_I) == 0) {
395                 /*
396                  * Buggy application or kernel code has disabled interrupts
397                  * and then trapped.  Enabling interrupts now is wrong, but
398                  * it is better than running with interrupts disabled until
399                  * they are accidentally enabled later.
400                  */
401                 type = frame->tf_trapno;
402                 if (ISPL(frame->tf_cs) == SEL_UPL) {
403                         MAKEMPSAFE(have_mplock);
404                         /* JG curproc can be NULL */
405                         kprintf(
406                             "pid %ld (%s): trap %d with interrupts disabled\n",
407                             (long)curproc->p_pid, curproc->p_comm, type);
408                 } else if (type != T_NMI && type != T_BPTFLT &&
409                     type != T_TRCTRAP) {
410                         /*
411                          * XXX not quite right, since this may be for a
412                          * multiple fault in user mode.
413                          */
414                         MAKEMPSAFE(have_mplock);
415                         kprintf("kernel trap %d with interrupts disabled\n",
416                             type);
417                 }
418                 cpu_enable_intr();
419         }
420
421         type = frame->tf_trapno;
422         code = frame->tf_err;
423
424         if (ISPL(frame->tf_cs) == SEL_UPL) {
425                 /* user trap */
426
427                 KTR_LOG(kernentry_trap, p->p_pid, lp->lwp_tid,
428                         frame->tf_trapno, eva);
429
430                 userenter(td, p);
431
432                 sticks = (int)td->td_sticks;
433                 lp->lwp_md.md_regs = frame;
434
435                 switch (type) {
436                 case T_PRIVINFLT:       /* privileged instruction fault */
437                         ucode = ILL_PRVOPC;
438                         i = SIGILL;
439                         break;
440
441                 case T_BPTFLT:          /* bpt instruction fault */
442                 case T_TRCTRAP:         /* trace trap */
443                         frame->tf_rflags &= ~PSL_T;
444                         ucode = TRAP_TRACE;
445                         i = SIGTRAP;
446                         break;
447
448                 case T_ARITHTRAP:       /* arithmetic trap */
449                         ucode = code;
450                         i = SIGFPE;
451 #if 0
452 #if JG
453                         ucode = fputrap();
454 #else
455                         ucode = code;
456 #endif
457                         i = SIGFPE;
458 #endif
459                         break;
460
461                 case T_ASTFLT:          /* Allow process switch */
462                         mycpu->gd_cnt.v_soft++;
463                         if (mycpu->gd_reqflags & RQF_AST_OWEUPC) {
464                                 atomic_clear_int_nonlocked(&mycpu->gd_reqflags,
465                                             RQF_AST_OWEUPC);
466                                 addupc_task(p, p->p_prof.pr_addr,
467                                             p->p_prof.pr_ticks);
468                         }
469                         goto out;
470
471                 case T_PROTFLT:         /* general protection fault */
472                         i = SIGBUS;
473                         ucode = BUS_OBJERR;
474                         break;
475                 case T_SEGNPFLT:        /* segment not present fault */
476                         i = SIGBUS;
477                         ucode = BUS_ADRERR;
478                         break;
479                 case T_TSSFLT:          /* invalid TSS fault */
480                 case T_DOUBLEFLT:       /* double fault */
481                         i = SIGBUS;
482                         ucode = BUS_OBJERR;
483                 default:
484 #if 0
485                         ucode = code + BUS_SEGM_FAULT ; /* XXX: ???*/
486 #endif
487                         ucode = BUS_OBJERR;
488                         i = SIGBUS;
489                         break;
490
491                 case T_PAGEFLT:         /* page fault */
492                         MAKEMPSAFE(have_mplock);
493                         i = trap_pfault(frame, TRUE);
494                         if (frame->tf_rip == 0)
495                                 kprintf("T_PAGEFLT: Warning %%rip == 0!\n");
496                         if (i == -1)
497                                 goto out;
498                         if (i == 0)
499                                 goto out;
500
501 #if 0
502                         ucode = T_PAGEFLT;
503 #endif
504                         if (i == SIGSEGV)
505                                 ucode = SEGV_MAPERR;
506                         else
507                                 ucode = BUS_ADRERR;
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 = ILL_COPROC;
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                         ucode = TRAP_BRKPT;
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 out;
741         }
742
743         /*
744          * Translate fault for emulators (e.g. Linux) 
745          */
746         if (*p->p_sysent->sv_transtrap)
747                 i = (*p->p_sysent->sv_transtrap)(i, type);
748
749         MAKEMPSAFE(have_mplock);
750         trapsignal(lp, i, ucode);
751
752 #ifdef DEBUG
753         if (type <= MAX_TRAP_MSG) {
754                 uprintf("fatal process exception: %s",
755                         trap_msg[type]);
756                 if ((type == T_PAGEFLT) || (type == T_PROTFLT))
757                         uprintf(", fault VA = 0x%lx", frame->tf_addr);
758                 uprintf("\n");
759         }
760 #endif
761
762 out:
763 #ifdef SMP
764         if (ISPL(frame->tf_cs) == SEL_UPL) {
765                 KASSERT(td->td_mpcount == have_mplock,
766                         ("badmpcount trap/end from %p", (void *)frame->tf_rip));
767         }
768 #endif
769         userret(lp, frame, sticks);
770         userexit(lp);
771 out2:   ;
772 #ifdef SMP
773         if (have_mplock)
774                 rel_mplock();
775 #endif
776         if (p != NULL && lp != NULL)
777                 KTR_LOG(kernentry_trap_ret, p->p_pid, lp->lwp_tid);
778 #ifdef INVARIANTS
779         KASSERT(crit_count == td->td_critcount,
780                 ("trap: critical section count mismatch! %d/%d",
781                 crit_count, td->td_pri));
782         KASSERT(curstop == td->td_toks_stop,
783                 ("trap: extra tokens held after trap! %ld/%ld",
784                 curstop - &td->td_toks_base,
785                 td->td_toks_stop - &td->td_toks_base));
786 #endif
787 }
788
789 static int
790 trap_pfault(struct trapframe *frame, int usermode)
791 {
792         vm_offset_t va;
793         struct vmspace *vm = NULL;
794         vm_map_t map;
795         int rv = 0;
796         int fault_flags;
797         vm_prot_t ftype;
798         thread_t td = curthread;
799         struct lwp *lp = td->td_lwp;
800         struct proc *p;
801
802         va = trunc_page(frame->tf_addr);
803         if (va >= VM_MIN_KERNEL_ADDRESS) {
804                 /*
805                  * Don't allow user-mode faults in kernel address space.
806                  */
807                 if (usermode) {
808                         fault_flags = -1;
809                         ftype = -1;
810                         goto nogo;
811                 }
812
813                 map = &kernel_map;
814         } else {
815                 /*
816                  * This is a fault on non-kernel virtual memory.
817                  * vm is initialized above to NULL. If curproc is NULL
818                  * or curproc->p_vmspace is NULL the fault is fatal.
819                  */
820                 if (lp != NULL)
821                         vm = lp->lwp_vmspace;
822
823                 if (vm == NULL) {
824                         fault_flags = -1;
825                         ftype = -1;
826                         goto nogo;
827                 }
828
829                 map = &vm->vm_map;
830         }
831
832         /*
833          * PGEX_I is defined only if the execute disable bit capability is
834          * supported and enabled.
835          */
836         if (frame->tf_err & PGEX_W)
837                 ftype = VM_PROT_WRITE;
838 #if JG
839         else if ((frame->tf_err & PGEX_I) && pg_nx != 0)
840                 ftype = VM_PROT_EXECUTE;
841 #endif
842         else
843                 ftype = VM_PROT_READ;
844
845         if (map != &kernel_map) {
846                 /*
847                  * Keep swapout from messing with us during this
848                  *      critical time.
849                  */
850                 PHOLD(lp->lwp_proc);
851
852                 /*
853                  * Issue fault
854                  */
855                 fault_flags = 0;
856                 if (usermode)
857                         fault_flags |= VM_FAULT_BURST;
858                 if (ftype & VM_PROT_WRITE)
859                         fault_flags |= VM_FAULT_DIRTY;
860                 else
861                         fault_flags |= VM_FAULT_NORMAL;
862                 rv = vm_fault(map, va, ftype, fault_flags);
863
864                 PRELE(lp->lwp_proc);
865         } else {
866                 /*
867                  * Don't have to worry about process locking or stacks
868                  * in the kernel.
869                  */
870                 fault_flags = VM_FAULT_NORMAL;
871                 rv = vm_fault(map, va, ftype, VM_FAULT_NORMAL);
872         }
873
874         if (rv == KERN_SUCCESS)
875                 return (0);
876 nogo:
877         if (!usermode) {
878                 if (td->td_gd->gd_intr_nesting_level == 0 &&
879                     td->td_pcb->pcb_onfault) {
880                         frame->tf_rip = (register_t)td->td_pcb->pcb_onfault;
881                         return (0);
882                 }
883                 trap_fatal(frame, frame->tf_addr);
884                 return (-1);
885         }
886
887         /*
888          * NOTE: on x86_64 we have a tf_addr field in the trapframe, no
889          * kludge is needed to pass the fault address to signal handlers.
890          */
891         p = td->td_proc;
892         if (td->td_lwp->lwp_vkernel == NULL) {
893                 kprintf("seg-fault ft=%04x ff=%04x addr=%p rip=%p "
894                         "pid=%d p_comm=%s\n",
895                         ftype, fault_flags,
896                         (void *)frame->tf_addr,
897                         (void *)frame->tf_rip,
898                         p->p_pid, p->p_comm);
899                 if (ddb_on_seg_fault)
900                         Debugger("ddb_on_seg_fault");
901         }
902         /* Debugger("seg-fault"); */
903
904         return((rv == KERN_PROTECTION_FAILURE) ? SIGBUS : SIGSEGV);
905 }
906
907 static void
908 trap_fatal(struct trapframe *frame, vm_offset_t eva)
909 {
910         int code, ss;
911         u_int type;
912         long rsp;
913         struct soft_segment_descriptor softseg;
914         char *msg;
915
916         code = frame->tf_err;
917         type = frame->tf_trapno;
918         sdtossd(&gdt[IDXSEL(frame->tf_cs & 0xffff)], &softseg);
919
920         if (type <= MAX_TRAP_MSG)
921                 msg = trap_msg[type];
922         else
923                 msg = "UNKNOWN";
924         kprintf("\n\nFatal trap %d: %s while in %s mode\n", type, msg,
925             ISPL(frame->tf_cs) == SEL_UPL ? "user" : "kernel");
926 #ifdef SMP
927         /* three separate prints in case of a trap on an unmapped page */
928         kprintf("mp_lock = %08x; ", mp_lock);
929         kprintf("cpuid = %d; ", mycpu->gd_cpuid);
930         kprintf("lapic->id = %08x\n", lapic->id);
931 #endif
932         if (type == T_PAGEFLT) {
933                 kprintf("fault virtual address  = 0x%lx\n", eva);
934                 kprintf("fault code             = %s %s %s, %s\n",
935                         code & PGEX_U ? "user" : "supervisor",
936                         code & PGEX_W ? "write" : "read",
937                         code & PGEX_I ? "instruction" : "data",
938                         code & PGEX_P ? "protection violation" : "page not present");
939         }
940         kprintf("instruction pointer    = 0x%lx:0x%lx\n",
941                frame->tf_cs & 0xffff, frame->tf_rip);
942         if (ISPL(frame->tf_cs) == SEL_UPL) {
943                 ss = frame->tf_ss & 0xffff;
944                 rsp = frame->tf_rsp;
945         } else {
946                 ss = GSEL(GDATA_SEL, SEL_KPL);
947                 rsp = (long)&frame->tf_rsp;
948         }
949         kprintf("stack pointer          = 0x%x:0x%lx\n", ss, rsp);
950         kprintf("frame pointer          = 0x%x:0x%lx\n", ss, frame->tf_rbp);
951         kprintf("code segment           = base 0x%lx, limit 0x%lx, type 0x%x\n",
952                softseg.ssd_base, softseg.ssd_limit, softseg.ssd_type);
953         kprintf("                       = DPL %d, pres %d, long %d, def32 %d, gran %d\n",
954                softseg.ssd_dpl, softseg.ssd_p, softseg.ssd_long, softseg.ssd_def32,
955                softseg.ssd_gran);
956         kprintf("processor eflags       = ");
957         if (frame->tf_rflags & PSL_T)
958                 kprintf("trace trap, ");
959         if (frame->tf_rflags & PSL_I)
960                 kprintf("interrupt enabled, ");
961         if (frame->tf_rflags & PSL_NT)
962                 kprintf("nested task, ");
963         if (frame->tf_rflags & PSL_RF)
964                 kprintf("resume, ");
965         kprintf("IOPL = %ld\n", (frame->tf_rflags & PSL_IOPL) >> 12);
966         kprintf("current process                = ");
967         if (curproc) {
968                 kprintf("%lu\n",
969                     (u_long)curproc->p_pid);
970         } else {
971                 kprintf("Idle\n");
972         }
973         kprintf("current thread          = pri %d ", curthread->td_pri);
974         if (curthread->td_critcount)
975                 kprintf("(CRIT)");
976         kprintf("\n");
977
978 #ifdef DDB
979         if ((debugger_on_panic || db_active) && kdb_trap(type, code, frame))
980                 return;
981 #endif
982         kprintf("trap number            = %d\n", type);
983         if (type <= MAX_TRAP_MSG)
984                 panic("%s", trap_msg[type]);
985         else
986                 panic("unknown/reserved trap");
987 }
988
989 /*
990  * Double fault handler. Called when a fault occurs while writing
991  * a frame for a trap/exception onto the stack. This usually occurs
992  * when the stack overflows (such is the case with infinite recursion,
993  * for example).
994  */
995 void
996 dblfault_handler(struct trapframe *frame)
997 {
998         kprintf0("DOUBLE FAULT\n");
999         kprintf("\nFatal double fault\n");
1000         kprintf("rip = 0x%lx\n", frame->tf_rip);
1001         kprintf("rsp = 0x%lx\n", frame->tf_rsp);
1002         kprintf("rbp = 0x%lx\n", frame->tf_rbp);
1003 #ifdef SMP
1004         /* three separate prints in case of a trap on an unmapped page */
1005         kprintf("mp_lock = %08x; ", mp_lock);
1006         kprintf("cpuid = %d; ", mycpu->gd_cpuid);
1007         kprintf("lapic->id = %08x\n", lapic->id);
1008 #endif
1009         panic("double fault");
1010 }
1011
1012 /*
1013  * syscall2 -   MP aware system call request C handler
1014  *
1015  * A system call is essentially treated as a trap except that the
1016  * MP lock is not held on entry or return.  We are responsible for
1017  * obtaining the MP lock if necessary and for handling ASTs
1018  * (e.g. a task switch) prior to return.
1019  *
1020  * MPSAFE
1021  */
1022 void
1023 syscall2(struct trapframe *frame)
1024 {
1025         struct thread *td = curthread;
1026         struct proc *p = td->td_proc;
1027         struct lwp *lp = td->td_lwp;
1028         caddr_t params;
1029         struct sysent *callp;
1030         register_t orig_tf_rflags;
1031         int sticks;
1032         int error;
1033         int narg;
1034 #ifdef INVARIANTS
1035         int crit_count = td->td_critcount;
1036 #endif
1037 #ifdef SMP
1038         int have_mplock = 0;
1039 #endif
1040         register_t *argp;
1041         u_int code;
1042         int reg, regcnt;
1043         union sysunion args;
1044         register_t *argsdst;
1045
1046         mycpu->gd_cnt.v_syscall++;
1047
1048 #ifdef DIAGNOSTIC
1049         if (ISPL(frame->tf_cs) != SEL_UPL) {
1050                 get_mplock();
1051                 panic("syscall");
1052                 /* NOT REACHED */
1053         }
1054 #endif
1055
1056         KTR_LOG(kernentry_syscall, p->p_pid, lp->lwp_tid,
1057                 frame->tf_rax);
1058
1059 #ifdef SMP
1060         KASSERT(td->td_mpcount == 0,
1061                 ("badmpcount syscall2 from %p", (void *)frame->tf_rip));
1062 #endif
1063         userenter(td, p);       /* lazy raise our priority */
1064
1065         reg = 0;
1066         regcnt = 6;
1067         /*
1068          * Misc
1069          */
1070         sticks = (int)td->td_sticks;
1071         orig_tf_rflags = frame->tf_rflags;
1072
1073         /*
1074          * Virtual kernel intercept - if a VM context managed by a virtual
1075          * kernel issues a system call the virtual kernel handles it, not us.
1076          * Restore the virtual kernel context and return from its system
1077          * call.  The current frame is copied out to the virtual kernel.
1078          */
1079         if (lp->lwp_vkernel && lp->lwp_vkernel->ve) {
1080                 vkernel_trap(lp, frame);
1081                 error = EJUSTRETURN;
1082                 goto out;
1083         }
1084
1085         /*
1086          * Get the system call parameters and account for time
1087          */
1088         lp->lwp_md.md_regs = frame;
1089         params = (caddr_t)frame->tf_rsp + sizeof(register_t);
1090         code = frame->tf_rax;
1091
1092         if (p->p_sysent->sv_prepsyscall) {
1093                 (*p->p_sysent->sv_prepsyscall)(
1094                         frame, (int *)(&args.nosys.sysmsg + 1),
1095                         &code, &params);
1096         } else {
1097                 if (code == SYS_syscall || code == SYS___syscall) {
1098                         code = frame->tf_rdi;
1099                         reg++;
1100                         regcnt--;
1101                 }
1102         }
1103
1104         if (p->p_sysent->sv_mask)
1105                 code &= p->p_sysent->sv_mask;
1106
1107         if (code >= p->p_sysent->sv_size)
1108                 callp = &p->p_sysent->sv_table[0];
1109         else
1110                 callp = &p->p_sysent->sv_table[code];
1111
1112         narg = callp->sy_narg & SYF_ARGMASK;
1113
1114         /*
1115          * On x86_64 we get up to six arguments in registers. The rest are
1116          * on the stack. The first six members of 'struct trapframe' happen
1117          * to be the registers used to pass arguments, in exactly the right
1118          * order.
1119          */
1120         argp = &frame->tf_rdi;
1121         argp += reg;
1122         argsdst = (register_t *)(&args.nosys.sysmsg + 1);
1123         /*
1124          * JG can we overflow the space pointed to by 'argsdst'
1125          * either with 'bcopy' or with 'copyin'?
1126          */
1127         bcopy(argp, argsdst, sizeof(register_t) * regcnt);
1128         /*
1129          * copyin is MP aware, but the tracing code is not
1130          */
1131         if (narg > regcnt) {
1132                 KASSERT(params != NULL, ("copyin args with no params!"));
1133                 error = copyin(params, &argsdst[regcnt],
1134                         (narg - regcnt) * sizeof(register_t));
1135                 if (error) {
1136 #ifdef KTRACE
1137                         if (KTRPOINT(td, KTR_SYSCALL)) {
1138                                 MAKEMPSAFE(have_mplock);
1139                                 
1140                                 ktrsyscall(lp, code, narg,
1141                                         (void *)(&args.nosys.sysmsg + 1));
1142                         }
1143 #endif
1144                         goto bad;
1145                 }
1146         }
1147
1148 #ifdef KTRACE
1149         if (KTRPOINT(td, KTR_SYSCALL)) {
1150                 MAKEMPSAFE(have_mplock);
1151                 ktrsyscall(lp, code, narg, (void *)(&args.nosys.sysmsg + 1));
1152         }
1153 #endif
1154
1155         /*
1156          * Default return value is 0 (will be copied to %rax).  Double-value
1157          * returns use %rax and %rdx.  %rdx is left unchanged for system
1158          * calls which return only one result.
1159          */
1160         args.sysmsg_fds[0] = 0;
1161         args.sysmsg_fds[1] = frame->tf_rdx;
1162
1163         /*
1164          * The syscall might manipulate the trap frame. If it does it
1165          * will probably return EJUSTRETURN.
1166          */
1167         args.sysmsg_frame = frame;
1168
1169         STOPEVENT(p, S_SCE, narg);      /* MP aware */
1170
1171         /*
1172          * NOTE: All system calls run MPSAFE now.  The system call itself
1173          *       is responsible for getting the MP lock.
1174          */
1175         error = (*callp->sy_call)(&args);
1176
1177 out:
1178         /*
1179          * MP SAFE (we may or may not have the MP lock at this point)
1180          */
1181         //kprintf("SYSMSG %d ", error);
1182         switch (error) {
1183         case 0:
1184                 /*
1185                  * Reinitialize proc pointer `p' as it may be different
1186                  * if this is a child returning from fork syscall.
1187                  */
1188                 p = curproc;
1189                 lp = curthread->td_lwp;
1190                 frame->tf_rax = args.sysmsg_fds[0];
1191                 frame->tf_rdx = args.sysmsg_fds[1];
1192                 frame->tf_rflags &= ~PSL_C;
1193                 break;
1194         case ERESTART:
1195                 /*
1196                  * Reconstruct pc, we know that 'syscall' is 2 bytes.
1197                  * We have to do a full context restore so that %r10
1198                  * (which was holding the value of %rcx) is restored for
1199                  * the next iteration.
1200                  */
1201                 frame->tf_rip -= frame->tf_err;
1202                 frame->tf_r10 = frame->tf_rcx;
1203                 break;
1204         case EJUSTRETURN:
1205                 break;
1206         case EASYNC:
1207                 panic("Unexpected EASYNC return value (for now)");
1208         default:
1209 bad:
1210                 if (p->p_sysent->sv_errsize) {
1211                         if (error >= p->p_sysent->sv_errsize)
1212                                 error = -1;     /* XXX */
1213                         else
1214                                 error = p->p_sysent->sv_errtbl[error];
1215                 }
1216                 frame->tf_rax = error;
1217                 frame->tf_rflags |= PSL_C;
1218                 break;
1219         }
1220
1221         /*
1222          * Traced syscall.  trapsignal() is not MP aware.
1223          */
1224         if (orig_tf_rflags & PSL_T) {
1225                 MAKEMPSAFE(have_mplock);
1226                 frame->tf_rflags &= ~PSL_T;
1227                 trapsignal(lp, SIGTRAP, TRAP_TRACE);
1228         }
1229
1230         /*
1231          * Handle reschedule and other end-of-syscall issues
1232          */
1233         userret(lp, frame, sticks);
1234
1235 #ifdef KTRACE
1236         if (KTRPOINT(td, KTR_SYSRET)) {
1237                 MAKEMPSAFE(have_mplock);
1238                 ktrsysret(lp, code, error, args.sysmsg_result);
1239         }
1240 #endif
1241
1242         /*
1243          * This works because errno is findable through the
1244          * register set.  If we ever support an emulation where this
1245          * is not the case, this code will need to be revisited.
1246          */
1247         STOPEVENT(p, S_SCX, code);
1248
1249         userexit(lp);
1250 #ifdef SMP
1251         /*
1252          * Release the MP lock if we had to get it
1253          */
1254         KASSERT(td->td_mpcount == have_mplock, 
1255                 ("badmpcount syscall2/end from %p", (void *)frame->tf_rip));
1256         if (have_mplock)
1257                 rel_mplock();
1258 #endif
1259         KTR_LOG(kernentry_syscall_ret, p->p_pid, lp->lwp_tid, error);
1260 #ifdef INVARIANTS
1261         KASSERT(crit_count == td->td_critcount,
1262                 ("syscall: critical section count mismatch! %d/%d",
1263                 crit_count, td->td_pri));
1264         KASSERT(&td->td_toks_base == td->td_toks_stop,
1265                 ("syscall: extra tokens held after trap! %ld",
1266                 td->td_toks_stop - &td->td_toks_base));
1267 #endif
1268 }
1269
1270 /*
1271  * NOTE: mplock not held at any point
1272  */
1273 void
1274 fork_return(struct lwp *lp, struct trapframe *frame)
1275 {
1276         frame->tf_rax = 0;              /* Child returns zero */
1277         frame->tf_rflags &= ~PSL_C;     /* success */
1278         frame->tf_rdx = 1;
1279
1280         generic_lwp_return(lp, frame);
1281         KTR_LOG(kernentry_fork_ret, lp->lwp_proc->p_pid, lp->lwp_tid);
1282 }
1283
1284 /*
1285  * Simplified back end of syscall(), used when returning from fork()
1286  * directly into user mode.
1287  *
1288  * This code will return back into the fork trampoline code which then
1289  * runs doreti.
1290  *
1291  * NOTE: The mplock is not held at any point.
1292  */
1293 void
1294 generic_lwp_return(struct lwp *lp, struct trapframe *frame)
1295 {
1296         struct proc *p = lp->lwp_proc;
1297
1298         /*
1299          * Newly forked processes are given a kernel priority.  We have to
1300          * adjust the priority to a normal user priority and fake entry
1301          * into the kernel (call userenter()) to install a passive release
1302          * function just in case userret() decides to stop the process.  This
1303          * can occur when ^Z races a fork.  If we do not install the passive
1304          * release function the current process designation will not be
1305          * released when the thread goes to sleep.
1306          */
1307         lwkt_setpri_self(TDPRI_USER_NORM);
1308         userenter(lp->lwp_thread, p);
1309         userret(lp, frame, 0);
1310 #ifdef KTRACE
1311         if (KTRPOINT(lp->lwp_thread, KTR_SYSRET))
1312                 ktrsysret(lp, SYS_fork, 0, 0);
1313 #endif
1314         p->p_flag |= P_PASSIVE_ACQ;
1315         userexit(lp);
1316         p->p_flag &= ~P_PASSIVE_ACQ;
1317 }
1318
1319 /*
1320  * If PGEX_FPFAULT is set then set FP_VIRTFP in the PCB to force a T_DNA
1321  * fault (which is then passed back to the virtual kernel) if an attempt is
1322  * made to use the FP unit.
1323  *
1324  * XXX this is a fairly big hack.
1325  */
1326 void
1327 set_vkernel_fp(struct trapframe *frame)
1328 {
1329         struct thread *td = curthread;
1330
1331         if (frame->tf_xflags & PGEX_FPFAULT) {
1332                 td->td_pcb->pcb_flags |= FP_VIRTFP;
1333                 if (mdcpu->gd_npxthread == td)
1334                         npxexit();
1335         } else {
1336                 td->td_pcb->pcb_flags &= ~FP_VIRTFP;
1337         }
1338 }
1339
1340 /*
1341  * Called from vkernel_trap() to fixup the vkernel's syscall
1342  * frame for vmspace_ctl() return.
1343  */
1344 void
1345 cpu_vkernel_trap(struct trapframe *frame, int error)
1346 {
1347         frame->tf_rax = error;
1348         if (error)
1349                 frame->tf_rflags |= PSL_C;
1350         else
1351                 frame->tf_rflags &= ~PSL_C;
1352 }