Fix deadlock occuring when booting vkernel from gdb. One lwp in the vkernel
[dragonfly.git] / sys / platform / vkernel / i386 / trap.c
blob5b57216e0fe17234a3ff9a2a98aebce11c84a774
1 /*-
2 * Copyright (C) 1994, David Greenman
3 * Copyright (c) 1990, 1993
4 * The Regents of the University of California. All rights reserved.
6 * This code is derived from software contributed to Berkeley by
7 * the University of Utah, and William Jolitz.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. All advertising materials mentioning features or use of this software
18 * must display the following acknowledgement:
19 * This product includes software developed by the University of
20 * California, Berkeley and its contributors.
21 * 4. Neither the name of the University nor the names of its contributors
22 * may be used to endorse or promote products derived from this software
23 * without specific prior written permission.
25 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * SUCH DAMAGE.
37 * from: @(#)trap.c 7.4 (Berkeley) 5/13/91
38 * $FreeBSD: src/sys/i386/i386/trap.c,v 1.147.2.11 2003/02/27 19:09:59 luoqi Exp $
39 * $DragonFly: src/sys/platform/vkernel/i386/trap.c,v 1.34 2008/07/13 10:28:51 nth Exp $
43 * 386 Trap and System call handling
46 #include "use_isa.h"
47 #include "use_npx.h"
49 #include "opt_ddb.h"
50 #include "opt_ktrace.h"
52 #include <sys/param.h>
53 #include <sys/systm.h>
54 #include <sys/proc.h>
55 #include <sys/pioctl.h>
56 #include <sys/kernel.h>
57 #include <sys/resourcevar.h>
58 #include <sys/signalvar.h>
59 #include <sys/signal2.h>
60 #include <sys/syscall.h>
61 #include <sys/sysctl.h>
62 #include <sys/sysent.h>
63 #include <sys/uio.h>
64 #include <sys/vmmeter.h>
65 #include <sys/malloc.h>
66 #ifdef KTRACE
67 #include <sys/ktrace.h>
68 #endif
69 #include <sys/ktr.h>
70 #include <sys/upcall.h>
71 #include <sys/vkernel.h>
72 #include <sys/sysproto.h>
73 #include <sys/sysunion.h>
74 #include <sys/vmspace.h>
76 #include <vm/vm.h>
77 #include <vm/vm_param.h>
78 #include <sys/lock.h>
79 #include <vm/pmap.h>
80 #include <vm/vm_kern.h>
81 #include <vm/vm_map.h>
82 #include <vm/vm_page.h>
83 #include <vm/vm_extern.h>
85 #include <machine/cpu.h>
86 #include <machine/md_var.h>
87 #include <machine/pcb.h>
88 #include <machine/smp.h>
89 #include <machine/tss.h>
90 #include <machine/globaldata.h>
92 #include <machine/vm86.h>
94 #include <ddb/ddb.h>
95 #include <sys/msgport2.h>
96 #include <sys/thread2.h>
98 #ifdef SMP
100 #define MAKEMPSAFE(have_mplock) \
101 if (have_mplock == 0) { \
102 get_mplock(); \
103 have_mplock = 1; \
106 #else
108 #define MAKEMPSAFE(have_mplock)
110 #endif
112 int (*pmath_emulate) (struct trapframe *);
114 extern int trapwrite (unsigned addr);
116 static int trap_pfault (struct trapframe *, int, vm_offset_t);
117 static void trap_fatal (struct trapframe *, int, vm_offset_t);
118 void dblfault_handler (void);
120 #if 0
121 extern inthand_t IDTVEC(syscall);
122 #endif
124 #define MAX_TRAP_MSG 28
125 static char *trap_msg[] = {
126 "", /* 0 unused */
127 "privileged instruction fault", /* 1 T_PRIVINFLT */
128 "", /* 2 unused */
129 "breakpoint instruction fault", /* 3 T_BPTFLT */
130 "", /* 4 unused */
131 "", /* 5 unused */
132 "arithmetic trap", /* 6 T_ARITHTRAP */
133 "system forced exception", /* 7 T_ASTFLT */
134 "", /* 8 unused */
135 "general protection fault", /* 9 T_PROTFLT */
136 "trace trap", /* 10 T_TRCTRAP */
137 "", /* 11 unused */
138 "page fault", /* 12 T_PAGEFLT */
139 "", /* 13 unused */
140 "alignment fault", /* 14 T_ALIGNFLT */
141 "", /* 15 unused */
142 "", /* 16 unused */
143 "", /* 17 unused */
144 "integer divide fault", /* 18 T_DIVIDE */
145 "non-maskable interrupt trap", /* 19 T_NMI */
146 "overflow trap", /* 20 T_OFLOW */
147 "FPU bounds check fault", /* 21 T_BOUND */
148 "FPU device not available", /* 22 T_DNA */
149 "double fault", /* 23 T_DOUBLEFLT */
150 "FPU operand fetch fault", /* 24 T_FPOPFLT */
151 "invalid TSS fault", /* 25 T_TSSFLT */
152 "segment not present fault", /* 26 T_SEGNPFLT */
153 "stack fault", /* 27 T_STKFLT */
154 "machine check trap", /* 28 T_MCHK */
157 #ifdef DDB
158 static int ddb_on_nmi = 1;
159 SYSCTL_INT(_machdep, OID_AUTO, ddb_on_nmi, CTLFLAG_RW,
160 &ddb_on_nmi, 0, "Go to DDB on NMI");
161 #endif
162 static int panic_on_nmi = 1;
163 SYSCTL_INT(_machdep, OID_AUTO, panic_on_nmi, CTLFLAG_RW,
164 &panic_on_nmi, 0, "Panic on NMI");
165 static int fast_release;
166 SYSCTL_INT(_machdep, OID_AUTO, fast_release, CTLFLAG_RW,
167 &fast_release, 0, "Passive Release was optimal");
168 static int slow_release;
169 SYSCTL_INT(_machdep, OID_AUTO, slow_release, CTLFLAG_RW,
170 &slow_release, 0, "Passive Release was nonoptimal");
171 #ifdef SMP
172 static int syscall_mpsafe = 1;
173 SYSCTL_INT(_kern, OID_AUTO, syscall_mpsafe, CTLFLAG_RW,
174 &syscall_mpsafe, 0, "Allow MPSAFE marked syscalls to run without BGL");
175 TUNABLE_INT("kern.syscall_mpsafe", &syscall_mpsafe);
176 static int trap_mpsafe = 1;
177 SYSCTL_INT(_kern, OID_AUTO, trap_mpsafe, CTLFLAG_RW,
178 &trap_mpsafe, 0, "Allow traps to mostly run without the BGL");
179 TUNABLE_INT("kern.trap_mpsafe", &trap_mpsafe);
180 #endif
182 MALLOC_DEFINE(M_SYSMSG, "sysmsg", "sysmsg structure");
183 extern int max_sysmsg;
186 * Passive USER->KERNEL transition. This only occurs if we block in the
187 * kernel while still holding our userland priority. We have to fixup our
188 * priority in order to avoid potential deadlocks before we allow the system
189 * to switch us to another thread.
191 static void
192 passive_release(struct thread *td)
194 struct lwp *lp = td->td_lwp;
196 td->td_release = NULL;
197 lwkt_setpri_self(TDPRI_KERN_USER);
198 lp->lwp_proc->p_usched->release_curproc(lp);
202 * userenter() passively intercepts the thread switch function to increase
203 * the thread priority from a user priority to a kernel priority, reducing
204 * syscall and trap overhead for the case where no switch occurs.
207 static __inline void
208 userenter(struct thread *curtd)
210 curtd->td_release = passive_release;
214 * Handle signals, upcalls, profiling, and other AST's and/or tasks that
215 * must be completed before we can return to or try to return to userland.
217 * Note that td_sticks is a 64 bit quantity, but there's no point doing 64
218 * arithmatic on the delta calculation so the absolute tick values are
219 * truncated to an integer.
221 static void
222 userret(struct lwp *lp, struct trapframe *frame, int sticks)
224 struct proc *p = lp->lwp_proc;
225 int sig;
228 * Charge system time if profiling. Note: times are in microseconds.
229 * This may do a copyout and block, so do it first even though it
230 * means some system time will be charged as user time.
232 if (p->p_flag & P_PROFIL) {
233 addupc_task(p, frame->tf_eip,
234 (u_int)((int)lp->lwp_thread->td_sticks - sticks));
237 recheck:
239 * If the jungle wants us dead, so be it.
241 if (lp->lwp_flag & LWP_WEXIT) {
242 get_mplock();
243 lwp_exit(0);
244 rel_mplock(); /* NOT REACHED */
248 * Block here if we are in a stopped state.
250 if (p->p_stat == SSTOP) {
251 get_mplock();
252 tstop();
253 rel_mplock();
254 goto recheck;
258 * Post any pending upcalls
260 if (p->p_flag & P_UPCALLPEND) {
261 get_mplock();
262 p->p_flag &= ~P_UPCALLPEND;
263 postupcall(lp);
264 rel_mplock();
265 goto recheck;
269 * Post any pending signals
271 if ((sig = CURSIG(lp)) != 0) {
272 get_mplock();
273 postsig(sig);
274 rel_mplock();
275 goto recheck;
279 * block here if we are swapped out, but still process signals
280 * (such as SIGKILL). proc0 (the swapin scheduler) is already
281 * aware of our situation, we do not have to wake it up.
283 if (p->p_flag & P_SWAPPEDOUT) {
284 get_mplock();
285 p->p_flag |= P_SWAPWAIT;
286 swapin_request();
287 if (p->p_flag & P_SWAPWAIT)
288 tsleep(p, PCATCH, "SWOUT", 0);
289 p->p_flag &= ~P_SWAPWAIT;
290 rel_mplock();
291 goto recheck;
295 * Make sure postsig() handled request to restore old signal mask after
296 * running signal handler.
298 KKASSERT((lp->lwp_flag & LWP_OLDMASK) == 0);
302 * Cleanup from userenter and any passive release that might have occured.
303 * We must reclaim the current-process designation before we can return
304 * to usermode. We also handle both LWKT and USER reschedule requests.
306 static __inline void
307 userexit(struct lwp *lp)
309 struct thread *td = lp->lwp_thread;
310 globaldata_t gd = td->td_gd;
312 #if 0
314 * If a user reschedule is requested force a new process to be
315 * chosen by releasing the current process. Our process will only
316 * be chosen again if it has a considerably better priority.
318 if (user_resched_wanted())
319 lp->lwp_proc->p_usched->release_curproc(lp);
320 #endif
323 * Handle a LWKT reschedule request first. Since our passive release
324 * is still in place we do not have to do anything special.
326 while (lwkt_resched_wanted()) {
327 lwkt_switch();
330 * The thread that preempted us may have stopped our process.
332 while (lp->lwp_proc->p_stat == SSTOP) {
333 get_mplock();
334 tstop();
335 rel_mplock();
340 * Acquire the current process designation for this user scheduler
341 * on this cpu. This will also handle any user-reschedule requests.
343 lp->lwp_proc->p_usched->acquire_curproc(lp);
344 /* We may have switched cpus on acquisition */
345 gd = td->td_gd;
348 * Reduce our priority in preparation for a return to userland. If
349 * our passive release function was still in place, our priority was
350 * never raised and does not need to be reduced.
352 if (td->td_release == NULL)
353 lwkt_setpri_self(TDPRI_USER_NORM);
354 td->td_release = NULL;
357 * After reducing our priority there might be other kernel-level
358 * LWKTs that now have a greater priority. Run them as necessary.
359 * We don't have to worry about losing cpu to userland because
360 * we still control the current-process designation and we no longer
361 * have a passive release function installed.
363 if (lwkt_checkpri_self())
364 lwkt_switch();
368 #if !defined(KTR_KERNENTRY)
369 #define KTR_KERNENTRY KTR_ALL
370 #endif
371 KTR_INFO_MASTER(kernentry);
372 KTR_INFO(KTR_KERNENTRY, kernentry, trap, 0, "pid=%d, tid=%d, trapno=%d, eva=%p",
373 sizeof(int) + sizeof(int) + sizeof(int) + sizeof(vm_offset_t));
374 KTR_INFO(KTR_KERNENTRY, kernentry, trap_ret, 0, "pid=%d, tid=%d",
375 sizeof(int) + sizeof(int));
376 KTR_INFO(KTR_KERNENTRY, kernentry, syscall, 0, "pid=%d, tid=%d, call=%d",
377 sizeof(int) + sizeof(int) + sizeof(int));
378 KTR_INFO(KTR_KERNENTRY, kernentry, syscall_ret, 0, "pid=%d, tid=%d, err=%d",
379 sizeof(int) + sizeof(int) + sizeof(int));
380 KTR_INFO(KTR_KERNENTRY, kernentry, fork_ret, 0, "pid=%d, tid=%d",
381 sizeof(int) + sizeof(int));
384 * Exception, fault, and trap interface to the kernel.
385 * This common code is called from assembly language IDT gate entry
386 * routines that prepare a suitable stack frame, and restore this
387 * frame after the exception has been processed.
389 * This function is also called from doreti in an interlock to handle ASTs.
390 * For example: hardwareint->INTROUTINE->(set ast)->doreti->trap
392 * NOTE! We have to retrieve the fault address prior to obtaining the
393 * MP lock because get_mplock() may switch out. YYY cr2 really ought
394 * to be retrieved by the assembly code, not here.
396 * XXX gd_trap_nesting_level currently prevents lwkt_switch() from panicing
397 * if an attempt is made to switch from a fast interrupt or IPI. This is
398 * necessary to properly take fatal kernel traps on SMP machines if
399 * get_mplock() has to block.
402 void
403 user_trap(struct trapframe *frame)
405 struct globaldata *gd = mycpu;
406 struct thread *td = gd->gd_curthread;
407 struct lwp *lp = td->td_lwp;
408 struct proc *p;
409 int sticks = 0;
410 int i = 0, ucode = 0, type, code;
411 #ifdef SMP
412 int have_mplock = 0;
413 #endif
414 #ifdef INVARIANTS
415 int crit_count = td->td_pri & ~TDPRI_MASK;
416 #endif
417 vm_offset_t eva;
419 p = td->td_proc;
422 * This is a bad kludge to avoid changing the various trapframe
423 * structures. Because we are enabled as a virtual kernel,
424 * the original tf_err field will be passed to us shifted 16
425 * over in the tf_trapno field for T_PAGEFLT.
427 if (frame->tf_trapno == T_PAGEFLT)
428 eva = frame->tf_err;
429 else
430 eva = 0;
431 #if 0
432 kprintf("USER_TRAP AT %08x xflags %d trapno %d eva %08x\n",
433 frame->tf_eip, frame->tf_xflags, frame->tf_trapno, eva);
434 #endif
437 * Everything coming from user mode runs through user_trap,
438 * including system calls.
440 if (frame->tf_trapno == T_SYSCALL80) {
441 syscall2(frame);
442 return;
445 KTR_LOG(kernentry_trap, lp->lwp_proc->p_pid, lp->lwp_tid,
446 frame->tf_trapno, eva);
448 #ifdef DDB
449 if (db_active) {
450 eva = (frame->tf_trapno == T_PAGEFLT ? rcr2() : 0);
451 ++gd->gd_trap_nesting_level;
452 MAKEMPSAFE(have_mplock);
453 trap_fatal(frame, TRUE, eva);
454 --gd->gd_trap_nesting_level;
455 goto out2;
457 #endif
459 ++gd->gd_trap_nesting_level;
460 #ifdef SMP
461 if (trap_mpsafe == 0)
462 MAKEMPSAFE(have_mplock);
463 #endif
465 --gd->gd_trap_nesting_level;
467 #if defined(I586_CPU) && !defined(NO_F00F_HACK)
468 restart:
469 #endif
470 type = frame->tf_trapno;
471 code = frame->tf_err;
473 userenter(td);
475 sticks = (int)td->td_sticks;
476 lp->lwp_md.md_regs = frame;
478 switch (type) {
479 case T_PRIVINFLT: /* privileged instruction fault */
480 ucode = type;
481 i = SIGILL;
482 break;
484 case T_BPTFLT: /* bpt instruction fault */
485 case T_TRCTRAP: /* trace trap */
486 frame->tf_eflags &= ~PSL_T;
487 i = SIGTRAP;
488 break;
490 case T_ARITHTRAP: /* arithmetic trap */
491 ucode = code;
492 i = SIGFPE;
493 break;
495 case T_ASTFLT: /* Allow process switch */
496 mycpu->gd_cnt.v_soft++;
497 if (mycpu->gd_reqflags & RQF_AST_OWEUPC) {
498 atomic_clear_int_nonlocked(&mycpu->gd_reqflags,
499 RQF_AST_OWEUPC);
500 addupc_task(p, p->p_prof.pr_addr,
501 p->p_prof.pr_ticks);
503 goto out;
506 * The following two traps can happen in
507 * vm86 mode, and, if so, we want to handle
508 * them specially.
510 case T_PROTFLT: /* general protection fault */
511 case T_STKFLT: /* stack fault */
512 #if 0
513 if (frame->tf_eflags & PSL_VM) {
514 i = vm86_emulate((struct vm86frame *)frame);
515 if (i == 0)
516 goto out;
517 break;
519 #endif
520 /* FALL THROUGH */
522 case T_SEGNPFLT: /* segment not present fault */
523 case T_TSSFLT: /* invalid TSS fault */
524 case T_DOUBLEFLT: /* double fault */
525 default:
526 ucode = code + BUS_SEGM_FAULT ;
527 i = SIGBUS;
528 break;
530 case T_PAGEFLT: /* page fault */
531 MAKEMPSAFE(have_mplock);
532 i = trap_pfault(frame, TRUE, eva);
533 if (i == -1)
534 goto out;
535 #if defined(I586_CPU) && !defined(NO_F00F_HACK)
536 if (i == -2)
537 goto restart;
538 #endif
539 if (i == 0)
540 goto out;
542 ucode = T_PAGEFLT;
543 break;
545 case T_DIVIDE: /* integer divide fault */
546 ucode = FPE_INTDIV;
547 i = SIGFPE;
548 break;
550 #if NISA > 0
551 case T_NMI:
552 MAKEMPSAFE(have_mplock);
553 /* machine/parity/power fail/"kitchen sink" faults */
554 if (isa_nmi(code) == 0) {
555 #ifdef DDB
557 * NMI can be hooked up to a pushbutton
558 * for debugging.
560 if (ddb_on_nmi) {
561 kprintf ("NMI ... going to debugger\n");
562 kdb_trap (type, 0, frame);
564 #endif /* DDB */
565 goto out2;
566 } else if (panic_on_nmi)
567 panic("NMI indicates hardware failure");
568 break;
569 #endif /* NISA > 0 */
571 case T_OFLOW: /* integer overflow fault */
572 ucode = FPE_INTOVF;
573 i = SIGFPE;
574 break;
576 case T_BOUND: /* bounds check fault */
577 ucode = FPE_FLTSUB;
578 i = SIGFPE;
579 break;
581 case T_DNA:
583 * Virtual kernel intercept - pass the DNA exception
584 * to the (emulated) virtual kernel if it asked to handle
585 * it. This occurs when the virtual kernel is holding
586 * onto the FP context for a different emulated
587 * process then the one currently running.
589 * We must still call npxdna() since we may have
590 * saved FP state that the (emulated) virtual kernel
591 * needs to hand over to a different emulated process.
593 if (lp->lwp_vkernel && lp->lwp_vkernel->ve &&
594 (td->td_pcb->pcb_flags & FP_VIRTFP)
596 npxdna(frame);
597 break;
599 #if NNPX > 0
601 * The kernel may have switched out the FP unit's
602 * state, causing the user process to take a fault
603 * when it tries to use the FP unit. Restore the
604 * state here
606 if (npxdna(frame))
607 goto out;
608 #endif
609 if (!pmath_emulate) {
610 i = SIGFPE;
611 ucode = FPE_FPU_NP_TRAP;
612 break;
614 i = (*pmath_emulate)(frame);
615 if (i == 0) {
616 if (!(frame->tf_eflags & PSL_T))
617 goto out2;
618 frame->tf_eflags &= ~PSL_T;
619 i = SIGTRAP;
621 /* else ucode = emulator_only_knows() XXX */
622 break;
624 case T_FPOPFLT: /* FPU operand fetch fault */
625 ucode = T_FPOPFLT;
626 i = SIGILL;
627 break;
629 case T_XMMFLT: /* SIMD floating-point exception */
630 ucode = 0; /* XXX */
631 i = SIGFPE;
632 break;
636 * Virtual kernel intercept - if the fault is directly related to a
637 * VM context managed by a virtual kernel then let the virtual kernel
638 * handle it.
640 if (lp->lwp_vkernel && lp->lwp_vkernel->ve) {
641 vkernel_trap(lp, frame);
642 goto out;
646 * Translate fault for emulators (e.g. Linux)
648 if (*p->p_sysent->sv_transtrap)
649 i = (*p->p_sysent->sv_transtrap)(i, type);
651 MAKEMPSAFE(have_mplock);
652 trapsignal(lp, i, ucode);
654 #ifdef DEBUG
655 if (type <= MAX_TRAP_MSG) {
656 uprintf("fatal process exception: %s",
657 trap_msg[type]);
658 if ((type == T_PAGEFLT) || (type == T_PROTFLT))
659 uprintf(", fault VA = 0x%lx", (u_long)eva);
660 uprintf("\n");
662 #endif
664 out:
665 #ifdef SMP
666 KASSERT(td->td_mpcount == have_mplock, ("badmpcount trap/end from %p", (void *)frame->tf_eip));
667 #endif
668 userret(lp, frame, sticks);
669 userexit(lp);
670 out2: ;
671 #ifdef SMP
672 if (have_mplock)
673 rel_mplock();
674 #endif
675 KTR_LOG(kernentry_trap_ret, lp->lwp_proc->p_pid, lp->lwp_tid);
676 #ifdef INVARIANTS
677 KASSERT(crit_count == (td->td_pri & ~TDPRI_MASK),
678 ("syscall: critical section count mismatch! %d/%d",
679 crit_count / TDPRI_CRIT, td->td_pri / TDPRI_CRIT));
680 #endif
683 void
684 kern_trap(struct trapframe *frame)
686 struct globaldata *gd = mycpu;
687 struct thread *td = gd->gd_curthread;
688 struct lwp *lp;
689 struct proc *p;
690 int i = 0, ucode = 0, type, code;
691 #ifdef SMP
692 int have_mplock = 0;
693 #endif
694 #ifdef INVARIANTS
695 int crit_count = td->td_pri & ~TDPRI_MASK;
696 #endif
697 vm_offset_t eva;
699 lp = td->td_lwp;
700 p = td->td_proc;
702 if (frame->tf_trapno == T_PAGEFLT)
703 eva = frame->tf_err;
704 else
705 eva = 0;
707 #ifdef DDB
708 if (db_active) {
709 ++gd->gd_trap_nesting_level;
710 MAKEMPSAFE(have_mplock);
711 trap_fatal(frame, FALSE, eva);
712 --gd->gd_trap_nesting_level;
713 goto out2;
715 #endif
717 ++gd->gd_trap_nesting_level;
719 #ifdef SMP
720 if (trap_mpsafe == 0)
721 MAKEMPSAFE(have_mplock);
722 #endif
724 --gd->gd_trap_nesting_level;
726 type = frame->tf_trapno;
727 code = frame->tf_err;
729 #if 0
730 kernel_trap:
731 #endif
732 /* kernel trap */
734 switch (type) {
735 case T_PAGEFLT: /* page fault */
736 MAKEMPSAFE(have_mplock);
737 trap_pfault(frame, FALSE, eva);
738 goto out2;
740 case T_DNA:
741 #if NNPX > 0
743 * The kernel may be using npx for copying or other
744 * purposes.
746 panic("kernel NPX should not happen");
747 if (npxdna(frame))
748 goto out2;
749 #endif
750 break;
752 case T_PROTFLT: /* general protection fault */
753 case T_SEGNPFLT: /* segment not present fault */
755 * Invalid segment selectors and out of bounds
756 * %eip's and %esp's can be set up in user mode.
757 * This causes a fault in kernel mode when the
758 * kernel tries to return to user mode. We want
759 * to get this fault so that we can fix the
760 * problem here and not have to check all the
761 * selectors and pointers when the user changes
762 * them.
764 if (mycpu->gd_intr_nesting_level == 0) {
765 if (td->td_pcb->pcb_onfault) {
766 frame->tf_eip =
767 (register_t)td->td_pcb->pcb_onfault;
768 goto out2;
771 break;
773 case T_TSSFLT:
775 * PSL_NT can be set in user mode and isn't cleared
776 * automatically when the kernel is entered. This
777 * causes a TSS fault when the kernel attempts to
778 * `iret' because the TSS link is uninitialized. We
779 * want to get this fault so that we can fix the
780 * problem here and not every time the kernel is
781 * entered.
783 if (frame->tf_eflags & PSL_NT) {
784 frame->tf_eflags &= ~PSL_NT;
785 goto out2;
787 break;
789 case T_TRCTRAP: /* trace trap */
790 #if 0
791 if (frame->tf_eip == (int)IDTVEC(syscall)) {
793 * We've just entered system mode via the
794 * syscall lcall. Continue single stepping
795 * silently until the syscall handler has
796 * saved the flags.
798 goto out2;
800 if (frame->tf_eip == (int)IDTVEC(syscall) + 1) {
802 * The syscall handler has now saved the
803 * flags. Stop single stepping it.
805 frame->tf_eflags &= ~PSL_T;
806 goto out2;
808 #endif
809 #if 0
811 * Ignore debug register trace traps due to
812 * accesses in the user's address space, which
813 * can happen under several conditions such as
814 * if a user sets a watchpoint on a buffer and
815 * then passes that buffer to a system call.
816 * We still want to get TRCTRAPS for addresses
817 * in kernel space because that is useful when
818 * debugging the kernel.
820 if (user_dbreg_trap()) {
822 * Reset breakpoint bits because the
823 * processor doesn't
825 load_dr6(rdr6() & 0xfffffff0);
826 goto out2;
828 #endif
830 * Fall through (TRCTRAP kernel mode, kernel address)
832 case T_BPTFLT:
834 * If DDB is enabled, let it handle the debugger trap.
835 * Otherwise, debugger traps "can't happen".
837 #ifdef DDB
838 MAKEMPSAFE(have_mplock);
839 if (kdb_trap (type, 0, frame))
840 goto out2;
841 #endif
842 break;
843 case T_DIVIDE:
844 MAKEMPSAFE(have_mplock);
845 trap_fatal(frame, FALSE, eva);
846 goto out2;
847 case T_NMI:
848 MAKEMPSAFE(have_mplock);
849 trap_fatal(frame, FALSE, eva);
850 goto out2;
851 case T_SYSCALL80:
853 * Ignore this trap generated from a spurious SIGTRAP.
855 * single stepping in / syscalls leads to spurious / SIGTRAP
856 * so ignore
858 * Haiku (c) 2007 Simon 'corecode' Schubert
860 goto out2;
864 * Translate fault for emulators (e.g. Linux)
866 if (*p->p_sysent->sv_transtrap)
867 i = (*p->p_sysent->sv_transtrap)(i, type);
869 MAKEMPSAFE(have_mplock);
870 trapsignal(lp, i, ucode);
872 #ifdef DEBUG
873 if (type <= MAX_TRAP_MSG) {
874 uprintf("fatal process exception: %s",
875 trap_msg[type]);
876 if ((type == T_PAGEFLT) || (type == T_PROTFLT))
877 uprintf(", fault VA = 0x%lx", (u_long)eva);
878 uprintf("\n");
880 #endif
882 out2:
884 #ifdef SMP
885 if (have_mplock)
886 rel_mplock();
887 #endif
888 #ifdef INVARIANTS
889 KASSERT(crit_count == (td->td_pri & ~TDPRI_MASK),
890 ("syscall: critical section count mismatch! %d/%d",
891 crit_count / TDPRI_CRIT, td->td_pri / TDPRI_CRIT));
892 #endif
896 trap_pfault(struct trapframe *frame, int usermode, vm_offset_t eva)
898 vm_offset_t va;
899 struct vmspace *vm = NULL;
900 vm_map_t map = 0;
901 int rv = 0;
902 vm_prot_t ftype;
903 thread_t td = curthread;
904 struct lwp *lp = td->td_lwp;
906 va = trunc_page(eva);
907 if (usermode == FALSE) {
909 * This is a fault on kernel virtual memory.
911 map = &kernel_map;
912 } else {
914 * This is a fault on non-kernel virtual memory.
915 * vm is initialized above to NULL. If curproc is NULL
916 * or curproc->p_vmspace is NULL the fault is fatal.
918 if (lp != NULL)
919 vm = lp->lwp_vmspace;
921 if (vm == NULL)
922 goto nogo;
924 map = &vm->vm_map;
927 if (frame->tf_xflags & PGEX_W)
928 ftype = VM_PROT_READ | VM_PROT_WRITE;
929 else
930 ftype = VM_PROT_READ;
932 if (map != &kernel_map) {
934 * Keep swapout from messing with us during this
935 * critical time.
937 PHOLD(lp->lwp_proc);
940 * Grow the stack if necessary
942 /* grow_stack returns false only if va falls into
943 * a growable stack region and the stack growth
944 * fails. It returns true if va was not within
945 * a growable stack region, or if the stack
946 * growth succeeded.
948 if (!grow_stack (lp->lwp_proc, va)) {
949 rv = KERN_FAILURE;
950 PRELE(lp->lwp_proc);
951 goto nogo;
954 /* Fault in the user page: */
955 rv = vm_fault(map, va, ftype,
956 (ftype & VM_PROT_WRITE) ? VM_FAULT_DIRTY
957 : VM_FAULT_NORMAL);
959 PRELE(lp->lwp_proc);
960 } else {
962 * Don't have to worry about process locking or stacks in the kernel.
964 rv = vm_fault(map, va, ftype, VM_FAULT_NORMAL);
967 if (rv == KERN_SUCCESS)
968 return (0);
969 nogo:
970 if (!usermode) {
971 if (td->td_gd->gd_intr_nesting_level == 0 &&
972 td->td_pcb->pcb_onfault) {
973 frame->tf_eip = (register_t)td->td_pcb->pcb_onfault;
974 return (0);
976 trap_fatal(frame, usermode, eva);
977 return (-1);
979 return((rv == KERN_PROTECTION_FAILURE) ? SIGBUS : SIGSEGV);
982 static void
983 trap_fatal(struct trapframe *frame, int usermode, vm_offset_t eva)
985 int code, type, ss, esp;
987 code = frame->tf_xflags;
988 type = frame->tf_trapno;
990 if (type <= MAX_TRAP_MSG) {
991 kprintf("\n\nFatal trap %d: %s while in %s mode\n",
992 type, trap_msg[type],
993 (usermode ? "user" : "kernel"));
995 #ifdef SMP
996 /* two separate prints in case of a trap on an unmapped page */
997 kprintf("mp_lock = %08x; ", mp_lock);
998 kprintf("cpuid = %d\n", mycpu->gd_cpuid);
999 #endif
1000 if (type == T_PAGEFLT) {
1001 kprintf("fault virtual address = 0x%x\n", eva);
1002 kprintf("fault code = %s %s, %s\n",
1003 usermode ? "user" : "supervisor",
1004 code & PGEX_W ? "write" : "read",
1005 code & PGEX_P ? "protection violation" : "page not present");
1007 kprintf("instruction pointer = 0x%x:0x%x\n",
1008 frame->tf_cs & 0xffff, frame->tf_eip);
1009 if (usermode) {
1010 ss = frame->tf_ss & 0xffff;
1011 esp = frame->tf_esp;
1012 } else {
1013 ss = GSEL(GDATA_SEL, SEL_KPL);
1014 esp = (int)&frame->tf_esp;
1016 kprintf("stack pointer = 0x%x:0x%x\n", ss, esp);
1017 kprintf("frame pointer = 0x%x:0x%x\n", ss, frame->tf_ebp);
1018 kprintf("processor eflags = ");
1019 if (frame->tf_eflags & PSL_T)
1020 kprintf("trace trap, ");
1021 if (frame->tf_eflags & PSL_I)
1022 kprintf("interrupt enabled, ");
1023 if (frame->tf_eflags & PSL_NT)
1024 kprintf("nested task, ");
1025 if (frame->tf_eflags & PSL_RF)
1026 kprintf("resume, ");
1027 #if 0
1028 if (frame->tf_eflags & PSL_VM)
1029 kprintf("vm86, ");
1030 #endif
1031 kprintf("IOPL = %d\n", (frame->tf_eflags & PSL_IOPL) >> 12);
1032 kprintf("current process = ");
1033 if (curproc) {
1034 kprintf("%lu (%s)\n",
1035 (u_long)curproc->p_pid, curproc->p_comm ?
1036 curproc->p_comm : "");
1037 } else {
1038 kprintf("Idle\n");
1040 kprintf("current thread = pri %d ", curthread->td_pri);
1041 if (curthread->td_pri >= TDPRI_CRIT)
1042 kprintf("(CRIT)");
1043 kprintf("\n");
1044 #ifdef SMP
1046 * XXX FIXME:
1047 * we probably SHOULD have stopped the other CPUs before now!
1048 * another CPU COULD have been touching cpl at this moment...
1050 kprintf(" <- SMP: XXX");
1051 #endif
1052 kprintf("\n");
1054 #ifdef KDB
1055 if (kdb_trap(&psl))
1056 return;
1057 #endif
1058 #ifdef DDB
1059 if ((debugger_on_panic || db_active) && kdb_trap(type, code, frame))
1060 return;
1061 #endif
1062 kprintf("trap number = %d\n", type);
1063 if (type <= MAX_TRAP_MSG)
1064 panic("%s", trap_msg[type]);
1065 else
1066 panic("unknown/reserved trap");
1070 * Double fault handler. Called when a fault occurs while writing
1071 * a frame for a trap/exception onto the stack. This usually occurs
1072 * when the stack overflows (such is the case with infinite recursion,
1073 * for example).
1075 * XXX Note that the current PTD gets replaced by IdlePTD when the
1076 * task switch occurs. This means that the stack that was active at
1077 * the time of the double fault is not available at <kstack> unless
1078 * the machine was idle when the double fault occurred. The downside
1079 * of this is that "trace <ebp>" in ddb won't work.
1081 void
1082 dblfault_handler(void)
1084 struct mdglobaldata *gd = mdcpu;
1086 kprintf("\nFatal double fault:\n");
1087 kprintf("eip = 0x%x\n", gd->gd_common_tss.tss_eip);
1088 kprintf("esp = 0x%x\n", gd->gd_common_tss.tss_esp);
1089 kprintf("ebp = 0x%x\n", gd->gd_common_tss.tss_ebp);
1090 #ifdef SMP
1091 /* two separate prints in case of a trap on an unmapped page */
1092 kprintf("mp_lock = %08x; ", mp_lock);
1093 kprintf("cpuid = %d\n", mycpu->gd_cpuid);
1094 #endif
1095 panic("double fault");
1099 * Compensate for 386 brain damage (missing URKR).
1100 * This is a little simpler than the pagefault handler in trap() because
1101 * it the page tables have already been faulted in and high addresses
1102 * are thrown out early for other reasons.
1105 trapwrite(unsigned addr)
1107 struct lwp *lp;
1108 vm_offset_t va;
1109 struct vmspace *vm;
1110 int rv;
1112 va = trunc_page((vm_offset_t)addr);
1114 * XXX - MAX is END. Changed > to >= for temp. fix.
1116 if (va >= VM_MAX_USER_ADDRESS)
1117 return (1);
1119 lp = curthread->td_lwp;
1120 vm = lp->lwp_vmspace;
1122 PHOLD(lp->lwp_proc);
1124 if (!grow_stack (lp->lwp_proc, va)) {
1125 PRELE(lp->lwp_proc);
1126 return (1);
1130 * fault the data page
1132 rv = vm_fault(&vm->vm_map, va, VM_PROT_WRITE, VM_FAULT_DIRTY);
1134 PRELE(lp->lwp_proc);
1136 if (rv != KERN_SUCCESS)
1137 return 1;
1139 return (0);
1143 * syscall2 - MP aware system call request C handler
1145 * A system call is essentially treated as a trap except that the
1146 * MP lock is not held on entry or return. We are responsible for
1147 * obtaining the MP lock if necessary and for handling ASTs
1148 * (e.g. a task switch) prior to return.
1150 * In general, only simple access and manipulation of curproc and
1151 * the current stack is allowed without having to hold MP lock.
1153 * MPSAFE - note that large sections of this routine are run without
1154 * the MP lock.
1157 void
1158 syscall2(struct trapframe *frame)
1160 struct thread *td = curthread;
1161 struct proc *p = td->td_proc;
1162 struct lwp *lp = td->td_lwp;
1163 caddr_t params;
1164 struct sysent *callp;
1165 register_t orig_tf_eflags;
1166 int sticks;
1167 int error;
1168 int narg;
1169 #ifdef INVARIANTS
1170 int crit_count = td->td_pri & ~TDPRI_MASK;
1171 #endif
1172 #ifdef SMP
1173 int have_mplock = 0;
1174 #endif
1175 u_int code;
1176 union sysunion args;
1178 KTR_LOG(kernentry_syscall, lp->lwp_proc->p_pid, lp->lwp_tid,
1179 frame->tf_eax);
1181 #ifdef SMP
1182 KASSERT(td->td_mpcount == 0, ("badmpcount syscall2 from %p", (void *)frame->tf_eip));
1183 if (syscall_mpsafe == 0)
1184 MAKEMPSAFE(have_mplock);
1185 #endif
1186 userenter(td); /* lazy raise our priority */
1189 * Misc
1191 sticks = (int)td->td_sticks;
1192 orig_tf_eflags = frame->tf_eflags;
1195 * Virtual kernel intercept - if a VM context managed by a virtual
1196 * kernel issues a system call the virtual kernel handles it, not us.
1197 * Restore the virtual kernel context and return from its system
1198 * call. The current frame is copied out to the virtual kernel.
1200 if (lp->lwp_vkernel && lp->lwp_vkernel->ve) {
1201 error = vkernel_trap(lp, frame);
1202 frame->tf_eax = error;
1203 if (error)
1204 frame->tf_eflags |= PSL_C;
1205 error = EJUSTRETURN;
1206 goto out;
1210 * Get the system call parameters and account for time
1212 lp->lwp_md.md_regs = frame;
1213 params = (caddr_t)frame->tf_esp + sizeof(int);
1214 code = frame->tf_eax;
1216 if (p->p_sysent->sv_prepsyscall) {
1217 (*p->p_sysent->sv_prepsyscall)(
1218 frame, (int *)(&args.nosys.sysmsg + 1),
1219 &code, &params);
1220 } else {
1222 * Need to check if this is a 32 bit or 64 bit syscall.
1223 * fuword is MP aware.
1225 if (code == SYS_syscall) {
1227 * Code is first argument, followed by actual args.
1229 code = fuword(params);
1230 params += sizeof(int);
1231 } else if (code == SYS___syscall) {
1233 * Like syscall, but code is a quad, so as to maintain
1234 * quad alignment for the rest of the arguments.
1236 code = fuword(params);
1237 params += sizeof(quad_t);
1241 code &= p->p_sysent->sv_mask;
1242 if (code >= p->p_sysent->sv_size)
1243 callp = &p->p_sysent->sv_table[0];
1244 else
1245 callp = &p->p_sysent->sv_table[code];
1247 narg = callp->sy_narg & SYF_ARGMASK;
1250 * copyin is MP aware, but the tracing code is not
1252 if (narg && params) {
1253 error = copyin(params, (caddr_t)(&args.nosys.sysmsg + 1),
1254 narg * sizeof(register_t));
1255 if (error) {
1256 #ifdef KTRACE
1257 if (KTRPOINT(td, KTR_SYSCALL)) {
1258 MAKEMPSAFE(have_mplock);
1260 ktrsyscall(lp, code, narg,
1261 (void *)(&args.nosys.sysmsg + 1));
1263 #endif
1264 goto bad;
1268 #ifdef KTRACE
1269 if (KTRPOINT(td, KTR_SYSCALL)) {
1270 MAKEMPSAFE(have_mplock);
1271 ktrsyscall(lp, code, narg, (void *)(&args.nosys.sysmsg + 1));
1273 #endif
1276 * For traditional syscall code edx is left untouched when 32 bit
1277 * results are returned. Since edx is loaded from fds[1] when the
1278 * system call returns we pre-set it here.
1280 args.sysmsg_fds[0] = 0;
1281 args.sysmsg_fds[1] = frame->tf_edx;
1284 * The syscall might manipulate the trap frame. If it does it
1285 * will probably return EJUSTRETURN.
1287 args.sysmsg_frame = frame;
1289 STOPEVENT(p, S_SCE, narg); /* MP aware */
1291 #ifdef SMP
1293 * Try to run the syscall without the MP lock if the syscall
1294 * is MP safe. We have to obtain the MP lock no matter what if
1295 * we are ktracing
1297 if ((callp->sy_narg & SYF_MPSAFE) == 0)
1298 MAKEMPSAFE(have_mplock);
1299 #endif
1301 error = (*callp->sy_call)(&args);
1303 #if 0
1304 kprintf("system call %d returned %d\n", code, error);
1305 #endif
1307 out:
1309 * MP SAFE (we may or may not have the MP lock at this point)
1311 switch (error) {
1312 case 0:
1314 * Reinitialize proc pointer `p' as it may be different
1315 * if this is a child returning from fork syscall.
1317 p = curproc;
1318 lp = curthread->td_lwp;
1319 frame->tf_eax = args.sysmsg_fds[0];
1320 frame->tf_edx = args.sysmsg_fds[1];
1321 frame->tf_eflags &= ~PSL_C;
1322 break;
1323 case ERESTART:
1325 * Reconstruct pc, assuming lcall $X,y is 7 bytes,
1326 * int 0x80 is 2 bytes. We saved this in tf_err.
1328 frame->tf_eip -= frame->tf_err;
1329 break;
1330 case EJUSTRETURN:
1331 break;
1332 case EASYNC:
1333 panic("Unexpected EASYNC return value (for now)");
1334 default:
1335 bad:
1336 if (p->p_sysent->sv_errsize) {
1337 if (error >= p->p_sysent->sv_errsize)
1338 error = -1; /* XXX */
1339 else
1340 error = p->p_sysent->sv_errtbl[error];
1342 frame->tf_eax = error;
1343 frame->tf_eflags |= PSL_C;
1344 break;
1348 * Traced syscall. trapsignal() is not MP aware.
1350 if ((orig_tf_eflags & PSL_T) /*&& !(orig_tf_eflags & PSL_VM)*/) {
1351 MAKEMPSAFE(have_mplock);
1352 frame->tf_eflags &= ~PSL_T;
1353 trapsignal(lp, SIGTRAP, 0);
1357 * Handle reschedule and other end-of-syscall issues
1359 userret(lp, frame, sticks);
1361 #ifdef KTRACE
1362 if (KTRPOINT(td, KTR_SYSRET)) {
1363 MAKEMPSAFE(have_mplock);
1364 ktrsysret(lp, code, error, args.sysmsg_result);
1366 #endif
1369 * This works because errno is findable through the
1370 * register set. If we ever support an emulation where this
1371 * is not the case, this code will need to be revisited.
1373 STOPEVENT(p, S_SCX, code);
1375 userexit(lp);
1376 #ifdef SMP
1378 * Release the MP lock if we had to get it
1380 KASSERT(td->td_mpcount == have_mplock,
1381 ("badmpcount syscall2/end from %p", (void *)frame->tf_eip));
1382 if (have_mplock)
1383 rel_mplock();
1384 #endif
1385 KTR_LOG(kernentry_syscall_ret, lp->lwp_proc->p_pid, lp->lwp_tid, error);
1386 #ifdef INVARIANTS
1387 KASSERT(crit_count == (td->td_pri & ~TDPRI_MASK),
1388 ("syscall: critical section count mismatch! %d/%d",
1389 crit_count / TDPRI_CRIT, td->td_pri / TDPRI_CRIT));
1390 #endif
1393 void
1394 fork_return(struct lwp *lp, struct trapframe *frame)
1396 frame->tf_eax = 0; /* Child returns zero */
1397 frame->tf_eflags &= ~PSL_C; /* success */
1398 frame->tf_edx = 1;
1400 generic_lwp_return(lp, frame);
1401 KTR_LOG(kernentry_fork_ret, lp->lwp_proc->p_pid, lp->lwp_tid);
1405 * Simplified back end of syscall(), used when returning from fork()
1406 * or lwp_create() directly into user mode. MP lock is held on entry and
1407 * should be released on return. This code will return back into the fork
1408 * trampoline code which then runs doreti.
1410 void
1411 generic_lwp_return(struct lwp *lp, struct trapframe *frame)
1413 struct proc *p = lp->lwp_proc;
1416 * Newly forked processes are given a kernel priority. We have to
1417 * adjust the priority to a normal user priority and fake entry
1418 * into the kernel (call userenter()) to install a passive release
1419 * function just in case userret() decides to stop the process. This
1420 * can occur when ^Z races a fork. If we do not install the passive
1421 * release function the current process designation will not be
1422 * released when the thread goes to sleep.
1424 lwkt_setpri_self(TDPRI_USER_NORM);
1425 userenter(lp->lwp_thread);
1426 userret(lp, frame, 0);
1427 #ifdef KTRACE
1428 if (KTRPOINT(lp->lwp_thread, KTR_SYSRET))
1429 ktrsysret(lp, SYS_fork, 0, 0);
1430 #endif
1431 p->p_flag |= P_PASSIVE_ACQ;
1432 userexit(lp);
1433 p->p_flag &= ~P_PASSIVE_ACQ;
1434 #ifdef SMP
1435 KKASSERT(lp->lwp_thread->td_mpcount == 1);
1436 rel_mplock();
1437 #endif
1441 * doreti has turned into this. The frame is directly on the stack. We
1442 * pull everything else we need (fpu and tls context) from the current
1443 * thread.
1445 * Note on fpu interactions: In a virtual kernel, the fpu context for
1446 * an emulated user mode process is not shared with the virtual kernel's
1447 * fpu context, so we only have to 'stack' fpu contexts within the virtual
1448 * kernel itself, and not even then since the signal() contexts that we care
1449 * about save and restore the FPU state (I think anyhow).
1451 * vmspace_ctl() returns an error only if it had problems instaling the
1452 * context we supplied or problems copying data to/from our VM space.
1454 void
1455 go_user(struct intrframe *frame)
1457 struct trapframe *tf = (void *)&frame->if_gs;
1458 int r;
1461 * Interrupts may be disabled on entry, make sure all signals
1462 * can be received before beginning our loop.
1464 sigsetmask(0);
1467 * Switch to the current simulated user process, then call
1468 * user_trap() when we break out of it (usually due to a signal).
1470 for (;;) {
1472 * Tell the real kernel whether it is ok to use the FP
1473 * unit or not.
1475 if (mdcpu->gd_npxthread == curthread) {
1476 tf->tf_xflags &= ~PGEX_FPFAULT;
1477 } else {
1478 tf->tf_xflags |= PGEX_FPFAULT;
1482 * Run emulated user process context. This call interlocks
1483 * with new mailbox signals.
1485 * Set PGEX_U unconditionally, indicating a user frame (the
1486 * bit is normally set only by T_PAGEFLT).
1488 r = vmspace_ctl(&curproc->p_vmspace->vm_pmap, VMSPACE_CTL_RUN,
1489 tf, &curthread->td_savevext);
1490 frame->if_xflags |= PGEX_U;
1491 #if 0
1492 kprintf("GO USER %d trap %d EVA %08x EIP %08x ESP %08x XFLAGS %02x/%02x\n",
1493 r, tf->tf_trapno, tf->tf_err, tf->tf_eip, tf->tf_esp,
1494 tf->tf_xflags, frame->if_xflags);
1495 #endif
1496 if (r < 0) {
1497 if (errno != EINTR)
1498 panic("vmspace_ctl failed");
1499 } else {
1500 if (tf->tf_trapno) {
1501 user_trap(tf);
1502 } else if (mycpu->gd_reqflags & RQF_AST_MASK) {
1503 tf->tf_trapno = T_ASTFLT;
1504 user_trap(tf);
1506 tf->tf_trapno = 0;
1512 * If PGEX_FPFAULT is set then set FP_VIRTFP in the PCB to force a T_DNA
1513 * fault (which is then passed back to the virtual kernel) if an attempt is
1514 * made to use the FP unit.
1516 * XXX this is a fairly big hack.
1518 void
1519 set_vkernel_fp(struct trapframe *frame)
1521 struct thread *td = curthread;
1523 if (frame->tf_xflags & PGEX_FPFAULT) {
1524 td->td_pcb->pcb_flags |= FP_VIRTFP;
1525 if (mdcpu->gd_npxthread == td)
1526 npxexit();
1527 } else {
1528 td->td_pcb->pcb_flags &= ~FP_VIRTFP;