kernel - Fix pmap deactivate/reactivation race.
[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         /*
383          * We need to allow T_DNA faults when the debugger is active since
384          * some dumping paths do large bcopy() which use the floating
385          * point registers for faster copying.
386          */
387         if (db_active && frame->tf_trapno != T_DNA) {
388                 eva = (frame->tf_trapno == T_PAGEFLT ? frame->tf_addr : 0);
389                 ++gd->gd_trap_nesting_level;
390                 MAKEMPSAFE(have_mplock);
391                 trap_fatal(frame, eva);
392                 --gd->gd_trap_nesting_level;
393                 goto out2;
394         }
395 #endif
396
397         eva = 0;
398
399         if ((frame->tf_rflags & PSL_I) == 0) {
400                 /*
401                  * Buggy application or kernel code has disabled interrupts
402                  * and then trapped.  Enabling interrupts now is wrong, but
403                  * it is better than running with interrupts disabled until
404                  * they are accidentally enabled later.
405                  */
406                 type = frame->tf_trapno;
407                 if (ISPL(frame->tf_cs) == SEL_UPL) {
408                         MAKEMPSAFE(have_mplock);
409                         /* JG curproc can be NULL */
410                         kprintf(
411                             "pid %ld (%s): trap %d with interrupts disabled\n",
412                             (long)curproc->p_pid, curproc->p_comm, type);
413                 } else if (type != T_NMI && type != T_BPTFLT &&
414                     type != T_TRCTRAP) {
415                         /*
416                          * XXX not quite right, since this may be for a
417                          * multiple fault in user mode.
418                          */
419                         MAKEMPSAFE(have_mplock);
420                         kprintf("kernel trap %d with interrupts disabled\n",
421                             type);
422                 }
423                 cpu_enable_intr();
424         }
425
426         type = frame->tf_trapno;
427         code = frame->tf_err;
428
429         if (ISPL(frame->tf_cs) == SEL_UPL) {
430                 /* user trap */
431
432                 KTR_LOG(kernentry_trap, p->p_pid, lp->lwp_tid,
433                         frame->tf_trapno, eva);
434
435                 userenter(td, p);
436
437                 sticks = (int)td->td_sticks;
438                 lp->lwp_md.md_regs = frame;
439
440                 switch (type) {
441                 case T_PRIVINFLT:       /* privileged instruction fault */
442                         ucode = ILL_PRVOPC;
443                         i = SIGILL;
444                         break;
445
446                 case T_BPTFLT:          /* bpt instruction fault */
447                 case T_TRCTRAP:         /* trace trap */
448                         frame->tf_rflags &= ~PSL_T;
449                         ucode = TRAP_TRACE;
450                         i = SIGTRAP;
451                         break;
452
453                 case T_ARITHTRAP:       /* arithmetic trap */
454                         ucode = code;
455                         i = SIGFPE;
456 #if 0
457 #if JG
458                         ucode = fputrap();
459 #else
460                         ucode = code;
461 #endif
462                         i = SIGFPE;
463 #endif
464                         break;
465
466                 case T_ASTFLT:          /* Allow process switch */
467                         mycpu->gd_cnt.v_soft++;
468                         if (mycpu->gd_reqflags & RQF_AST_OWEUPC) {
469                                 atomic_clear_int_nonlocked(&mycpu->gd_reqflags,
470                                             RQF_AST_OWEUPC);
471                                 addupc_task(p, p->p_prof.pr_addr,
472                                             p->p_prof.pr_ticks);
473                         }
474                         goto out;
475
476                 case T_PROTFLT:         /* general protection fault */
477                         i = SIGBUS;
478                         ucode = BUS_OBJERR;
479                         break;
480                 case T_SEGNPFLT:        /* segment not present fault */
481                         i = SIGBUS;
482                         ucode = BUS_ADRERR;
483                         break;
484                 case T_TSSFLT:          /* invalid TSS fault */
485                 case T_DOUBLEFLT:       /* double fault */
486                         i = SIGBUS;
487                         ucode = BUS_OBJERR;
488                 default:
489 #if 0
490                         ucode = code + BUS_SEGM_FAULT ; /* XXX: ???*/
491 #endif
492                         ucode = BUS_OBJERR;
493                         i = SIGBUS;
494                         break;
495
496                 case T_PAGEFLT:         /* page fault */
497                         MAKEMPSAFE(have_mplock);
498                         i = trap_pfault(frame, TRUE);
499                         if (frame->tf_rip == 0)
500                                 kprintf("T_PAGEFLT: Warning %%rip == 0!\n");
501                         if (i == -1)
502                                 goto out;
503                         if (i == 0)
504                                 goto out;
505
506 #if 0
507                         ucode = T_PAGEFLT;
508 #endif
509                         if (i == SIGSEGV)
510                                 ucode = SEGV_MAPERR;
511                         else
512                                 ucode = BUS_ADRERR;
513                         break;
514
515                 case T_DIVIDE:          /* integer divide fault */
516                         ucode = FPE_INTDIV;
517                         i = SIGFPE;
518                         break;
519
520                 case T_NMI:
521                         MAKEMPSAFE(have_mplock);
522                         /* machine/parity/power fail/"kitchen sink" faults */
523                         if (isa_nmi(code) == 0) {
524 #ifdef DDB
525                                 /*
526                                  * NMI can be hooked up to a pushbutton
527                                  * for debugging.
528                                  */
529                                 if (ddb_on_nmi) {
530                                         kprintf ("NMI ... going to debugger\n");
531                                         kdb_trap(type, 0, frame);
532                                 }
533 #endif /* DDB */
534                                 goto out2;
535                         } else if (panic_on_nmi)
536                                 panic("NMI indicates hardware failure");
537                         break;
538
539                 case T_OFLOW:           /* integer overflow fault */
540                         ucode = FPE_INTOVF;
541                         i = SIGFPE;
542                         break;
543
544                 case T_BOUND:           /* bounds check fault */
545                         ucode = FPE_FLTSUB;
546                         i = SIGFPE;
547                         break;
548
549                 case T_DNA:
550                         /*
551                          * Virtual kernel intercept - pass the DNA exception
552                          * to the virtual kernel if it asked to handle it.
553                          * This occurs when the virtual kernel is holding
554                          * onto the FP context for a different emulated
555                          * process then the one currently running.
556                          *
557                          * We must still call npxdna() since we may have
558                          * saved FP state that the virtual kernel needs
559                          * to hand over to a different emulated process.
560                          */
561                         if (lp->lwp_vkernel && lp->lwp_vkernel->ve &&
562                             (td->td_pcb->pcb_flags & FP_VIRTFP)
563                         ) {
564                                 npxdna();
565                                 break;
566                         }
567
568                         /*
569                          * The kernel may have switched out the FP unit's
570                          * state, causing the user process to take a fault
571                          * when it tries to use the FP unit.  Restore the
572                          * state here
573                          */
574                         if (npxdna())
575                                 goto out;
576                         i = SIGFPE;
577                         ucode = FPE_FPU_NP_TRAP;
578                         break;
579
580                 case T_FPOPFLT:         /* FPU operand fetch fault */
581                         ucode = ILL_COPROC;
582                         i = SIGILL;
583                         break;
584
585                 case T_XMMFLT:          /* SIMD floating-point exception */
586                         ucode = 0; /* XXX */
587                         i = SIGFPE;
588                         break;
589                 }
590         } else {
591                 /* kernel trap */
592
593                 switch (type) {
594                 case T_PAGEFLT:                 /* page fault */
595                         MAKEMPSAFE(have_mplock);
596                         trap_pfault(frame, FALSE);
597                         goto out2;
598
599                 case T_DNA:
600                         /*
601                          * The kernel is apparently using fpu for copying.
602                          * XXX this should be fatal unless the kernel has
603                          * registered such use.
604                          */
605                         if (npxdna())
606                                 goto out2;
607                         break;
608
609                 case T_STKFLT:          /* stack fault */
610                         break;
611
612                 case T_PROTFLT:         /* general protection fault */
613                 case T_SEGNPFLT:        /* segment not present fault */
614                         /*
615                          * Invalid segment selectors and out of bounds
616                          * %rip's and %rsp's can be set up in user mode.
617                          * This causes a fault in kernel mode when the
618                          * kernel tries to return to user mode.  We want
619                          * to get this fault so that we can fix the
620                          * problem here and not have to check all the
621                          * selectors and pointers when the user changes
622                          * them.
623                          */
624                         if (mycpu->gd_intr_nesting_level == 0) {
625                                 if (td->td_pcb->pcb_onfault) {
626                                         frame->tf_rip = (register_t)
627                                                 td->td_pcb->pcb_onfault;
628                                         goto out2;
629                                 }
630                                 if (frame->tf_rip == (long)doreti_iret) {
631                                         frame->tf_rip = (long)doreti_iret_fault;
632                                         goto out2;
633                                 }
634                         }
635                         break;
636
637                 case T_TSSFLT:
638                         /*
639                          * PSL_NT can be set in user mode and isn't cleared
640                          * automatically when the kernel is entered.  This
641                          * causes a TSS fault when the kernel attempts to
642                          * `iret' because the TSS link is uninitialized.  We
643                          * want to get this fault so that we can fix the
644                          * problem here and not every time the kernel is
645                          * entered.
646                          */
647                         if (frame->tf_rflags & PSL_NT) {
648                                 frame->tf_rflags &= ~PSL_NT;
649                                 goto out2;
650                         }
651                         break;
652
653                 case T_TRCTRAP:  /* trace trap */
654 #if 0
655                         if (frame->tf_rip == (int)IDTVEC(syscall)) {
656                                 /*
657                                  * We've just entered system mode via the
658                                  * syscall lcall.  Continue single stepping
659                                  * silently until the syscall handler has
660                                  * saved the flags.
661                                  */
662                                 goto out2;
663                         }
664                         if (frame->tf_rip == (int)IDTVEC(syscall) + 1) {
665                                 /*
666                                  * The syscall handler has now saved the
667                                  * flags.  Stop single stepping it.
668                                  */
669                                 frame->tf_rflags &= ~PSL_T;
670                                 goto out2;
671                         }
672 #endif
673
674                         /*
675                          * Ignore debug register trace traps due to
676                          * accesses in the user's address space, which
677                          * can happen under several conditions such as
678                          * if a user sets a watchpoint on a buffer and
679                          * then passes that buffer to a system call.
680                          * We still want to get TRCTRAPS for addresses
681                          * in kernel space because that is useful when
682                          * debugging the kernel.
683                          */
684 #if JG
685                         if (user_dbreg_trap()) {
686                                 /*
687                                  * Reset breakpoint bits because the
688                                  * processor doesn't
689                                  */
690                                 /* XXX check upper bits here */
691                                 load_dr6(rdr6() & 0xfffffff0);
692                                 goto out2;
693                         }
694 #endif
695                         /*
696                          * FALLTHROUGH (TRCTRAP kernel mode, kernel address)
697                          */
698                 case T_BPTFLT:
699                         /*
700                          * If DDB is enabled, let it handle the debugger trap.
701                          * Otherwise, debugger traps "can't happen".
702                          */
703                         ucode = TRAP_BRKPT;
704 #ifdef DDB
705                         MAKEMPSAFE(have_mplock);
706                         if (kdb_trap(type, 0, frame))
707                                 goto out2;
708 #endif
709                         break;
710
711                 case T_NMI:
712                         MAKEMPSAFE(have_mplock);
713                         /* machine/parity/power fail/"kitchen sink" faults */
714 #if NISA > 0
715                         if (isa_nmi(code) == 0) {
716 #ifdef DDB
717                                 /*
718                                  * NMI can be hooked up to a pushbutton
719                                  * for debugging.
720                                  */
721                                 if (ddb_on_nmi) {
722                                         kprintf ("NMI ... going to debugger\n");
723                                         kdb_trap(type, 0, frame);
724                                 }
725 #endif /* DDB */
726                                 goto out2;
727                         } else if (panic_on_nmi == 0)
728                                 goto out2;
729                         /* FALL THROUGH */
730 #endif /* NISA > 0 */
731                 }
732                 MAKEMPSAFE(have_mplock);
733                 trap_fatal(frame, 0);
734                 goto out2;
735         }
736
737         /*
738          * Virtual kernel intercept - if the fault is directly related to a
739          * VM context managed by a virtual kernel then let the virtual kernel
740          * handle it.
741          */
742         if (lp->lwp_vkernel && lp->lwp_vkernel->ve) {
743                 vkernel_trap(lp, frame);
744                 goto out;
745         }
746
747         /*
748          * Translate fault for emulators (e.g. Linux) 
749          */
750         if (*p->p_sysent->sv_transtrap)
751                 i = (*p->p_sysent->sv_transtrap)(i, type);
752
753         MAKEMPSAFE(have_mplock);
754         trapsignal(lp, i, ucode);
755
756 #ifdef DEBUG
757         if (type <= MAX_TRAP_MSG) {
758                 uprintf("fatal process exception: %s",
759                         trap_msg[type]);
760                 if ((type == T_PAGEFLT) || (type == T_PROTFLT))
761                         uprintf(", fault VA = 0x%lx", frame->tf_addr);
762                 uprintf("\n");
763         }
764 #endif
765
766 out:
767 #ifdef SMP
768         if (ISPL(frame->tf_cs) == SEL_UPL) {
769                 KASSERT(td->td_mpcount == have_mplock,
770                         ("badmpcount trap/end from %p", (void *)frame->tf_rip));
771         }
772 #endif
773         userret(lp, frame, sticks);
774         userexit(lp);
775 out2:   ;
776 #ifdef SMP
777         if (have_mplock)
778                 rel_mplock();
779 #endif
780         if (p != NULL && lp != NULL)
781                 KTR_LOG(kernentry_trap_ret, p->p_pid, lp->lwp_tid);
782 #ifdef INVARIANTS
783         KASSERT(crit_count == td->td_critcount,
784                 ("trap: critical section count mismatch! %d/%d",
785                 crit_count, td->td_pri));
786         KASSERT(curstop == td->td_toks_stop,
787                 ("trap: extra tokens held after trap! %ld/%ld",
788                 curstop - &td->td_toks_base,
789                 td->td_toks_stop - &td->td_toks_base));
790 #endif
791 }
792
793 static int
794 trap_pfault(struct trapframe *frame, int usermode)
795 {
796         vm_offset_t va;
797         struct vmspace *vm = NULL;
798         vm_map_t map;
799         int rv = 0;
800         int fault_flags;
801         vm_prot_t ftype;
802         thread_t td = curthread;
803         struct lwp *lp = td->td_lwp;
804         struct proc *p;
805
806         va = trunc_page(frame->tf_addr);
807         if (va >= VM_MIN_KERNEL_ADDRESS) {
808                 /*
809                  * Don't allow user-mode faults in kernel address space.
810                  */
811                 if (usermode) {
812                         fault_flags = -1;
813                         ftype = -1;
814                         goto nogo;
815                 }
816
817                 map = &kernel_map;
818         } else {
819                 /*
820                  * This is a fault on non-kernel virtual memory.
821                  * vm is initialized above to NULL. If curproc is NULL
822                  * or curproc->p_vmspace is NULL the fault is fatal.
823                  */
824                 if (lp != NULL)
825                         vm = lp->lwp_vmspace;
826
827                 if (vm == NULL) {
828                         fault_flags = -1;
829                         ftype = -1;
830                         goto nogo;
831                 }
832
833                 map = &vm->vm_map;
834         }
835
836         /*
837          * PGEX_I is defined only if the execute disable bit capability is
838          * supported and enabled.
839          */
840         if (frame->tf_err & PGEX_W)
841                 ftype = VM_PROT_WRITE;
842 #if JG
843         else if ((frame->tf_err & PGEX_I) && pg_nx != 0)
844                 ftype = VM_PROT_EXECUTE;
845 #endif
846         else
847                 ftype = VM_PROT_READ;
848
849         if (map != &kernel_map) {
850                 /*
851                  * Keep swapout from messing with us during this
852                  *      critical time.
853                  */
854                 PHOLD(lp->lwp_proc);
855
856                 /*
857                  * Issue fault
858                  */
859                 fault_flags = 0;
860                 if (usermode)
861                         fault_flags |= VM_FAULT_BURST;
862                 if (ftype & VM_PROT_WRITE)
863                         fault_flags |= VM_FAULT_DIRTY;
864                 else
865                         fault_flags |= VM_FAULT_NORMAL;
866                 rv = vm_fault(map, va, ftype, fault_flags);
867
868                 PRELE(lp->lwp_proc);
869         } else {
870                 /*
871                  * Don't have to worry about process locking or stacks
872                  * in the kernel.
873                  */
874                 fault_flags = VM_FAULT_NORMAL;
875                 rv = vm_fault(map, va, ftype, VM_FAULT_NORMAL);
876         }
877
878         if (rv == KERN_SUCCESS)
879                 return (0);
880 nogo:
881         if (!usermode) {
882                 if (td->td_gd->gd_intr_nesting_level == 0 &&
883                     td->td_pcb->pcb_onfault) {
884                         frame->tf_rip = (register_t)td->td_pcb->pcb_onfault;
885                         return (0);
886                 }
887                 trap_fatal(frame, frame->tf_addr);
888                 return (-1);
889         }
890
891         /*
892          * NOTE: on x86_64 we have a tf_addr field in the trapframe, no
893          * kludge is needed to pass the fault address to signal handlers.
894          */
895         p = td->td_proc;
896         if (td->td_lwp->lwp_vkernel == NULL) {
897                 kprintf("seg-fault ft=%04x ff=%04x addr=%p rip=%p "
898                         "pid=%d p_comm=%s\n",
899                         ftype, fault_flags,
900                         (void *)frame->tf_addr,
901                         (void *)frame->tf_rip,
902                         p->p_pid, p->p_comm);
903                 if (ddb_on_seg_fault)
904                         Debugger("ddb_on_seg_fault");
905         }
906         /* Debugger("seg-fault"); */
907
908         return((rv == KERN_PROTECTION_FAILURE) ? SIGBUS : SIGSEGV);
909 }
910
911 static void
912 trap_fatal(struct trapframe *frame, vm_offset_t eva)
913 {
914         int code, ss;
915         u_int type;
916         long rsp;
917         struct soft_segment_descriptor softseg;
918         char *msg;
919
920         code = frame->tf_err;
921         type = frame->tf_trapno;
922         sdtossd(&gdt[IDXSEL(frame->tf_cs & 0xffff)], &softseg);
923
924         if (type <= MAX_TRAP_MSG)
925                 msg = trap_msg[type];
926         else
927                 msg = "UNKNOWN";
928         kprintf("\n\nFatal trap %d: %s while in %s mode\n", type, msg,
929             ISPL(frame->tf_cs) == SEL_UPL ? "user" : "kernel");
930 #ifdef SMP
931         /* three separate prints in case of a trap on an unmapped page */
932         kprintf("mp_lock = %08x; ", mp_lock);
933         kprintf("cpuid = %d; ", mycpu->gd_cpuid);
934         kprintf("lapic->id = %08x\n", lapic->id);
935 #endif
936         if (type == T_PAGEFLT) {
937                 kprintf("fault virtual address  = 0x%lx\n", eva);
938                 kprintf("fault code             = %s %s %s, %s\n",
939                         code & PGEX_U ? "user" : "supervisor",
940                         code & PGEX_W ? "write" : "read",
941                         code & PGEX_I ? "instruction" : "data",
942                         code & PGEX_P ? "protection violation" : "page not present");
943         }
944         kprintf("instruction pointer    = 0x%lx:0x%lx\n",
945                frame->tf_cs & 0xffff, frame->tf_rip);
946         if (ISPL(frame->tf_cs) == SEL_UPL) {
947                 ss = frame->tf_ss & 0xffff;
948                 rsp = frame->tf_rsp;
949         } else {
950                 ss = GSEL(GDATA_SEL, SEL_KPL);
951                 rsp = (long)&frame->tf_rsp;
952         }
953         kprintf("stack pointer          = 0x%x:0x%lx\n", ss, rsp);
954         kprintf("frame pointer          = 0x%x:0x%lx\n", ss, frame->tf_rbp);
955         kprintf("code segment           = base 0x%lx, limit 0x%lx, type 0x%x\n",
956                softseg.ssd_base, softseg.ssd_limit, softseg.ssd_type);
957         kprintf("                       = DPL %d, pres %d, long %d, def32 %d, gran %d\n",
958                softseg.ssd_dpl, softseg.ssd_p, softseg.ssd_long, softseg.ssd_def32,
959                softseg.ssd_gran);
960         kprintf("processor eflags       = ");
961         if (frame->tf_rflags & PSL_T)
962                 kprintf("trace trap, ");
963         if (frame->tf_rflags & PSL_I)
964                 kprintf("interrupt enabled, ");
965         if (frame->tf_rflags & PSL_NT)
966                 kprintf("nested task, ");
967         if (frame->tf_rflags & PSL_RF)
968                 kprintf("resume, ");
969         kprintf("IOPL = %ld\n", (frame->tf_rflags & PSL_IOPL) >> 12);
970         kprintf("current process                = ");
971         if (curproc) {
972                 kprintf("%lu\n",
973                     (u_long)curproc->p_pid);
974         } else {
975                 kprintf("Idle\n");
976         }
977         kprintf("current thread          = pri %d ", curthread->td_pri);
978         if (curthread->td_critcount)
979                 kprintf("(CRIT)");
980         kprintf("\n");
981
982 #ifdef DDB
983         if ((debugger_on_panic || db_active) && kdb_trap(type, code, frame))
984                 return;
985 #endif
986         kprintf("trap number            = %d\n", type);
987         if (type <= MAX_TRAP_MSG)
988                 panic("%s", trap_msg[type]);
989         else
990                 panic("unknown/reserved trap");
991 }
992
993 /*
994  * Double fault handler. Called when a fault occurs while writing
995  * a frame for a trap/exception onto the stack. This usually occurs
996  * when the stack overflows (such is the case with infinite recursion,
997  * for example).
998  */
999 void
1000 dblfault_handler(struct trapframe *frame)
1001 {
1002         kprintf0("DOUBLE FAULT\n");
1003         kprintf("\nFatal double fault\n");
1004         kprintf("rip = 0x%lx\n", frame->tf_rip);
1005         kprintf("rsp = 0x%lx\n", frame->tf_rsp);
1006         kprintf("rbp = 0x%lx\n", frame->tf_rbp);
1007 #ifdef SMP
1008         /* three separate prints in case of a trap on an unmapped page */
1009         kprintf("mp_lock = %08x; ", mp_lock);
1010         kprintf("cpuid = %d; ", mycpu->gd_cpuid);
1011         kprintf("lapic->id = %08x\n", lapic->id);
1012 #endif
1013         panic("double fault");
1014 }
1015
1016 /*
1017  * syscall2 -   MP aware system call request C handler
1018  *
1019  * A system call is essentially treated as a trap except that the
1020  * MP lock is not held on entry or return.  We are responsible for
1021  * obtaining the MP lock if necessary and for handling ASTs
1022  * (e.g. a task switch) prior to return.
1023  *
1024  * MPSAFE
1025  */
1026 void
1027 syscall2(struct trapframe *frame)
1028 {
1029         struct thread *td = curthread;
1030         struct proc *p = td->td_proc;
1031         struct lwp *lp = td->td_lwp;
1032         caddr_t params;
1033         struct sysent *callp;
1034         register_t orig_tf_rflags;
1035         int sticks;
1036         int error;
1037         int narg;
1038 #ifdef INVARIANTS
1039         int crit_count = td->td_critcount;
1040 #endif
1041 #ifdef SMP
1042         int have_mplock = 0;
1043 #endif
1044         register_t *argp;
1045         u_int code;
1046         int reg, regcnt;
1047         union sysunion args;
1048         register_t *argsdst;
1049
1050         mycpu->gd_cnt.v_syscall++;
1051
1052 #ifdef DIAGNOSTIC
1053         if (ISPL(frame->tf_cs) != SEL_UPL) {
1054                 get_mplock();
1055                 panic("syscall");
1056                 /* NOT REACHED */
1057         }
1058 #endif
1059
1060         KTR_LOG(kernentry_syscall, p->p_pid, lp->lwp_tid,
1061                 frame->tf_rax);
1062
1063 #ifdef SMP
1064         KASSERT(td->td_mpcount == 0,
1065                 ("badmpcount syscall2 from %p", (void *)frame->tf_rip));
1066 #endif
1067         userenter(td, p);       /* lazy raise our priority */
1068
1069         reg = 0;
1070         regcnt = 6;
1071         /*
1072          * Misc
1073          */
1074         sticks = (int)td->td_sticks;
1075         orig_tf_rflags = frame->tf_rflags;
1076
1077         /*
1078          * Virtual kernel intercept - if a VM context managed by a virtual
1079          * kernel issues a system call the virtual kernel handles it, not us.
1080          * Restore the virtual kernel context and return from its system
1081          * call.  The current frame is copied out to the virtual kernel.
1082          */
1083         if (lp->lwp_vkernel && lp->lwp_vkernel->ve) {
1084                 vkernel_trap(lp, frame);
1085                 error = EJUSTRETURN;
1086                 goto out;
1087         }
1088
1089         /*
1090          * Get the system call parameters and account for time
1091          */
1092         lp->lwp_md.md_regs = frame;
1093         params = (caddr_t)frame->tf_rsp + sizeof(register_t);
1094         code = frame->tf_rax;
1095
1096         if (p->p_sysent->sv_prepsyscall) {
1097                 (*p->p_sysent->sv_prepsyscall)(
1098                         frame, (int *)(&args.nosys.sysmsg + 1),
1099                         &code, &params);
1100         } else {
1101                 if (code == SYS_syscall || code == SYS___syscall) {
1102                         code = frame->tf_rdi;
1103                         reg++;
1104                         regcnt--;
1105                 }
1106         }
1107
1108         if (p->p_sysent->sv_mask)
1109                 code &= p->p_sysent->sv_mask;
1110
1111         if (code >= p->p_sysent->sv_size)
1112                 callp = &p->p_sysent->sv_table[0];
1113         else
1114                 callp = &p->p_sysent->sv_table[code];
1115
1116         narg = callp->sy_narg & SYF_ARGMASK;
1117
1118         /*
1119          * On x86_64 we get up to six arguments in registers. The rest are
1120          * on the stack. The first six members of 'struct trapframe' happen
1121          * to be the registers used to pass arguments, in exactly the right
1122          * order.
1123          */
1124         argp = &frame->tf_rdi;
1125         argp += reg;
1126         argsdst = (register_t *)(&args.nosys.sysmsg + 1);
1127         /*
1128          * JG can we overflow the space pointed to by 'argsdst'
1129          * either with 'bcopy' or with 'copyin'?
1130          */
1131         bcopy(argp, argsdst, sizeof(register_t) * regcnt);
1132         /*
1133          * copyin is MP aware, but the tracing code is not
1134          */
1135         if (narg > regcnt) {
1136                 KASSERT(params != NULL, ("copyin args with no params!"));
1137                 error = copyin(params, &argsdst[regcnt],
1138                         (narg - regcnt) * sizeof(register_t));
1139                 if (error) {
1140 #ifdef KTRACE
1141                         if (KTRPOINT(td, KTR_SYSCALL)) {
1142                                 MAKEMPSAFE(have_mplock);
1143                                 
1144                                 ktrsyscall(lp, code, narg,
1145                                         (void *)(&args.nosys.sysmsg + 1));
1146                         }
1147 #endif
1148                         goto bad;
1149                 }
1150         }
1151
1152 #ifdef KTRACE
1153         if (KTRPOINT(td, KTR_SYSCALL)) {
1154                 MAKEMPSAFE(have_mplock);
1155                 ktrsyscall(lp, code, narg, (void *)(&args.nosys.sysmsg + 1));
1156         }
1157 #endif
1158
1159         /*
1160          * Default return value is 0 (will be copied to %rax).  Double-value
1161          * returns use %rax and %rdx.  %rdx is left unchanged for system
1162          * calls which return only one result.
1163          */
1164         args.sysmsg_fds[0] = 0;
1165         args.sysmsg_fds[1] = frame->tf_rdx;
1166
1167         /*
1168          * The syscall might manipulate the trap frame. If it does it
1169          * will probably return EJUSTRETURN.
1170          */
1171         args.sysmsg_frame = frame;
1172
1173         STOPEVENT(p, S_SCE, narg);      /* MP aware */
1174
1175         /*
1176          * NOTE: All system calls run MPSAFE now.  The system call itself
1177          *       is responsible for getting the MP lock.
1178          */
1179         error = (*callp->sy_call)(&args);
1180
1181 out:
1182         /*
1183          * MP SAFE (we may or may not have the MP lock at this point)
1184          */
1185         //kprintf("SYSMSG %d ", error);
1186         switch (error) {
1187         case 0:
1188                 /*
1189                  * Reinitialize proc pointer `p' as it may be different
1190                  * if this is a child returning from fork syscall.
1191                  */
1192                 p = curproc;
1193                 lp = curthread->td_lwp;
1194                 frame->tf_rax = args.sysmsg_fds[0];
1195                 frame->tf_rdx = args.sysmsg_fds[1];
1196                 frame->tf_rflags &= ~PSL_C;
1197                 break;
1198         case ERESTART:
1199                 /*
1200                  * Reconstruct pc, we know that 'syscall' is 2 bytes.
1201                  * We have to do a full context restore so that %r10
1202                  * (which was holding the value of %rcx) is restored for
1203                  * the next iteration.
1204                  */
1205                 frame->tf_rip -= frame->tf_err;
1206                 frame->tf_r10 = frame->tf_rcx;
1207                 break;
1208         case EJUSTRETURN:
1209                 break;
1210         case EASYNC:
1211                 panic("Unexpected EASYNC return value (for now)");
1212         default:
1213 bad:
1214                 if (p->p_sysent->sv_errsize) {
1215                         if (error >= p->p_sysent->sv_errsize)
1216                                 error = -1;     /* XXX */
1217                         else
1218                                 error = p->p_sysent->sv_errtbl[error];
1219                 }
1220                 frame->tf_rax = error;
1221                 frame->tf_rflags |= PSL_C;
1222                 break;
1223         }
1224
1225         /*
1226          * Traced syscall.  trapsignal() is not MP aware.
1227          */
1228         if (orig_tf_rflags & PSL_T) {
1229                 MAKEMPSAFE(have_mplock);
1230                 frame->tf_rflags &= ~PSL_T;
1231                 trapsignal(lp, SIGTRAP, TRAP_TRACE);
1232         }
1233
1234         /*
1235          * Handle reschedule and other end-of-syscall issues
1236          */
1237         userret(lp, frame, sticks);
1238
1239 #ifdef KTRACE
1240         if (KTRPOINT(td, KTR_SYSRET)) {
1241                 MAKEMPSAFE(have_mplock);
1242                 ktrsysret(lp, code, error, args.sysmsg_result);
1243         }
1244 #endif
1245
1246         /*
1247          * This works because errno is findable through the
1248          * register set.  If we ever support an emulation where this
1249          * is not the case, this code will need to be revisited.
1250          */
1251         STOPEVENT(p, S_SCX, code);
1252
1253         userexit(lp);
1254 #ifdef SMP
1255         /*
1256          * Release the MP lock if we had to get it
1257          */
1258         KASSERT(td->td_mpcount == have_mplock, 
1259                 ("badmpcount syscall2/end from %p", (void *)frame->tf_rip));
1260         if (have_mplock)
1261                 rel_mplock();
1262 #endif
1263         KTR_LOG(kernentry_syscall_ret, p->p_pid, lp->lwp_tid, error);
1264 #ifdef INVARIANTS
1265         KASSERT(crit_count == td->td_critcount,
1266                 ("syscall: critical section count mismatch! %d/%d",
1267                 crit_count, td->td_pri));
1268         KASSERT(&td->td_toks_base == td->td_toks_stop,
1269                 ("syscall: extra tokens held after trap! %ld",
1270                 td->td_toks_stop - &td->td_toks_base));
1271 #endif
1272 }
1273
1274 /*
1275  * NOTE: mplock not held at any point
1276  */
1277 void
1278 fork_return(struct lwp *lp, struct trapframe *frame)
1279 {
1280         frame->tf_rax = 0;              /* Child returns zero */
1281         frame->tf_rflags &= ~PSL_C;     /* success */
1282         frame->tf_rdx = 1;
1283
1284         generic_lwp_return(lp, frame);
1285         KTR_LOG(kernentry_fork_ret, lp->lwp_proc->p_pid, lp->lwp_tid);
1286 }
1287
1288 /*
1289  * Simplified back end of syscall(), used when returning from fork()
1290  * directly into user mode.
1291  *
1292  * This code will return back into the fork trampoline code which then
1293  * runs doreti.
1294  *
1295  * NOTE: The mplock is not held at any point.
1296  */
1297 void
1298 generic_lwp_return(struct lwp *lp, struct trapframe *frame)
1299 {
1300         struct proc *p = lp->lwp_proc;
1301
1302         /*
1303          * Newly forked processes are given a kernel priority.  We have to
1304          * adjust the priority to a normal user priority and fake entry
1305          * into the kernel (call userenter()) to install a passive release
1306          * function just in case userret() decides to stop the process.  This
1307          * can occur when ^Z races a fork.  If we do not install the passive
1308          * release function the current process designation will not be
1309          * released when the thread goes to sleep.
1310          */
1311         lwkt_setpri_self(TDPRI_USER_NORM);
1312         userenter(lp->lwp_thread, p);
1313         userret(lp, frame, 0);
1314 #ifdef KTRACE
1315         if (KTRPOINT(lp->lwp_thread, KTR_SYSRET))
1316                 ktrsysret(lp, SYS_fork, 0, 0);
1317 #endif
1318         p->p_flag |= P_PASSIVE_ACQ;
1319         userexit(lp);
1320         p->p_flag &= ~P_PASSIVE_ACQ;
1321 }
1322
1323 /*
1324  * If PGEX_FPFAULT is set then set FP_VIRTFP in the PCB to force a T_DNA
1325  * fault (which is then passed back to the virtual kernel) if an attempt is
1326  * made to use the FP unit.
1327  *
1328  * XXX this is a fairly big hack.
1329  */
1330 void
1331 set_vkernel_fp(struct trapframe *frame)
1332 {
1333         struct thread *td = curthread;
1334
1335         if (frame->tf_xflags & PGEX_FPFAULT) {
1336                 td->td_pcb->pcb_flags |= FP_VIRTFP;
1337                 if (mdcpu->gd_npxthread == td)
1338                         npxexit();
1339         } else {
1340                 td->td_pcb->pcb_flags &= ~FP_VIRTFP;
1341         }
1342 }
1343
1344 /*
1345  * Called from vkernel_trap() to fixup the vkernel's syscall
1346  * frame for vmspace_ctl() return.
1347  */
1348 void
1349 cpu_vkernel_trap(struct trapframe *frame, int error)
1350 {
1351         frame->tf_rax = error;
1352         if (error)
1353                 frame->tf_rflags |= PSL_C;
1354         else
1355                 frame->tf_rflags &= ~PSL_C;
1356 }