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
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
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.27 2007/07/01 02:51:43 dillon Exp $
43 * 386 Trap and System call handling
50 #include "opt_ktrace.h"
52 #include <sys/param.h>
53 #include <sys/systm.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>
64 #include <sys/vmmeter.h>
65 #include <sys/malloc.h>
67 #include <sys/ktrace.h>
69 #include <sys/upcall.h>
70 #include <sys/vkernel.h>
71 #include <sys/sysproto.h>
72 #include <sys/sysunion.h>
73 #include <sys/vmspace.h>
76 #include <vm/vm_param.h>
79 #include <vm/vm_kern.h>
80 #include <vm/vm_map.h>
81 #include <vm/vm_page.h>
82 #include <vm/vm_extern.h>
84 #include <machine/cpu.h>
85 #include <machine/md_var.h>
86 #include <machine/pcb.h>
87 #include <machine/smp.h>
88 #include <machine/tss.h>
89 #include <machine/globaldata.h>
91 #include <machine/vm86.h>
94 #include <sys/msgport2.h>
95 #include <sys/thread2.h>
99 #define MAKEMPSAFE(have_mplock) \
100 if (have_mplock == 0) { \
107 #define MAKEMPSAFE(have_mplock)
111 int (*pmath_emulate
) (struct trapframe
*);
113 extern int trapwrite (unsigned addr
);
115 static int trap_pfault (struct trapframe
*, int, vm_offset_t
);
116 static void trap_fatal (struct trapframe
*, int, vm_offset_t
);
117 void dblfault_handler (void);
120 extern inthand_t
IDTVEC(syscall
);
123 #define MAX_TRAP_MSG 28
124 static char *trap_msg
[] = {
126 "privileged instruction fault", /* 1 T_PRIVINFLT */
128 "breakpoint instruction fault", /* 3 T_BPTFLT */
131 "arithmetic trap", /* 6 T_ARITHTRAP */
132 "system forced exception", /* 7 T_ASTFLT */
134 "general protection fault", /* 9 T_PROTFLT */
135 "trace trap", /* 10 T_TRCTRAP */
137 "page fault", /* 12 T_PAGEFLT */
139 "alignment fault", /* 14 T_ALIGNFLT */
143 "integer divide fault", /* 18 T_DIVIDE */
144 "non-maskable interrupt trap", /* 19 T_NMI */
145 "overflow trap", /* 20 T_OFLOW */
146 "FPU bounds check fault", /* 21 T_BOUND */
147 "FPU device not available", /* 22 T_DNA */
148 "double fault", /* 23 T_DOUBLEFLT */
149 "FPU operand fetch fault", /* 24 T_FPOPFLT */
150 "invalid TSS fault", /* 25 T_TSSFLT */
151 "segment not present fault", /* 26 T_SEGNPFLT */
152 "stack fault", /* 27 T_STKFLT */
153 "machine check trap", /* 28 T_MCHK */
157 static int ddb_on_nmi
= 1;
158 SYSCTL_INT(_machdep
, OID_AUTO
, ddb_on_nmi
, CTLFLAG_RW
,
159 &ddb_on_nmi
, 0, "Go to DDB on NMI");
161 static int panic_on_nmi
= 1;
162 SYSCTL_INT(_machdep
, OID_AUTO
, panic_on_nmi
, CTLFLAG_RW
,
163 &panic_on_nmi
, 0, "Panic on NMI");
164 static int fast_release
;
165 SYSCTL_INT(_machdep
, OID_AUTO
, fast_release
, CTLFLAG_RW
,
166 &fast_release
, 0, "Passive Release was optimal");
167 static int slow_release
;
168 SYSCTL_INT(_machdep
, OID_AUTO
, slow_release
, CTLFLAG_RW
,
169 &slow_release
, 0, "Passive Release was nonoptimal");
171 static int syscall_mpsafe
= 0;
172 SYSCTL_INT(_kern
, OID_AUTO
, syscall_mpsafe
, CTLFLAG_RW
,
173 &syscall_mpsafe
, 0, "Allow MPSAFE marked syscalls to run without BGL");
174 TUNABLE_INT("kern.syscall_mpsafe", &syscall_mpsafe
);
175 static int trap_mpsafe
= 0;
176 SYSCTL_INT(_kern
, OID_AUTO
, trap_mpsafe
, CTLFLAG_RW
,
177 &trap_mpsafe
, 0, "Allow traps to mostly run without the BGL");
178 TUNABLE_INT("kern.trap_mpsafe", &trap_mpsafe
);
181 MALLOC_DEFINE(M_SYSMSG
, "sysmsg", "sysmsg structure");
182 extern int max_sysmsg
;
185 * Passive USER->KERNEL transition. This only occurs if we block in the
186 * kernel while still holding our userland priority. We have to fixup our
187 * priority in order to avoid potential deadlocks before we allow the system
188 * to switch us to another thread.
191 passive_release(struct thread
*td
)
193 struct lwp
*lp
= td
->td_lwp
;
195 td
->td_release
= NULL
;
196 lwkt_setpri_self(TDPRI_KERN_USER
);
197 lp
->lwp_proc
->p_usched
->release_curproc(lp
);
201 * userenter() passively intercepts the thread switch function to increase
202 * the thread priority from a user priority to a kernel priority, reducing
203 * syscall and trap overhead for the case where no switch occurs.
207 userenter(struct thread
*curtd
)
209 curtd
->td_release
= passive_release
;
213 * Handle signals, upcalls, profiling, and other AST's and/or tasks that
214 * must be completed before we can return to or try to return to userland.
216 * Note that td_sticks is a 64 bit quantity, but there's no point doing 64
217 * arithmatic on the delta calculation so the absolute tick values are
218 * truncated to an integer.
221 userret(struct lwp
*lp
, struct trapframe
*frame
, int sticks
)
223 struct proc
*p
= lp
->lwp_proc
;
227 * Charge system time if profiling. Note: times are in microseconds.
228 * This may do a copyout and block, so do it first even though it
229 * means some system time will be charged as user time.
231 if (p
->p_flag
& P_PROFIL
) {
232 addupc_task(p
, frame
->tf_eip
,
233 (u_int
)((int)lp
->lwp_thread
->td_sticks
- sticks
));
238 * If the jungle wants us dead, so be it.
240 if (lp
->lwp_flag
& LWP_WEXIT
)
244 * Block here if we are in a stopped state.
246 if (p
->p_stat
== SSTOP
) {
254 * Post any pending upcalls
256 if (p
->p_flag
& P_UPCALLPEND
) {
258 p
->p_flag
&= ~P_UPCALLPEND
;
265 * Post any pending signals
267 if ((sig
= CURSIG(lp
)) != 0) {
275 * block here if we are swapped out, but still process signals
276 * (such as SIGKILL). proc0 (the swapin scheduler) is already
277 * aware of our situation, we do not have to wake it up.
279 if (p
->p_flag
& P_SWAPPEDOUT
) {
281 p
->p_flag
|= P_SWAPWAIT
;
283 if (p
->p_flag
& P_SWAPWAIT
)
284 tsleep(p
, PCATCH
, "SWOUT", 0);
285 p
->p_flag
&= ~P_SWAPWAIT
;
292 * Cleanup from userenter and any passive release that might have occured.
293 * We must reclaim the current-process designation before we can return
294 * to usermode. We also handle both LWKT and USER reschedule requests.
297 userexit(struct lwp
*lp
)
299 struct thread
*td
= lp
->lwp_thread
;
300 globaldata_t gd
= td
->td_gd
;
304 * If a user reschedule is requested force a new process to be
305 * chosen by releasing the current process. Our process will only
306 * be chosen again if it has a considerably better priority.
308 if (user_resched_wanted())
309 lp
->lwp_proc
->p_usched
->release_curproc(lp
);
313 * Handle a LWKT reschedule request first. Since our passive release
314 * is still in place we do not have to do anything special.
316 if (lwkt_resched_wanted())
320 * Acquire the current process designation for this user scheduler
321 * on this cpu. This will also handle any user-reschedule requests.
323 lp
->lwp_proc
->p_usched
->acquire_curproc(lp
);
324 /* We may have switched cpus on acquisition */
328 * Reduce our priority in preparation for a return to userland. If
329 * our passive release function was still in place, our priority was
330 * never raised and does not need to be reduced.
332 if (td
->td_release
== NULL
)
333 lwkt_setpri_self(TDPRI_USER_NORM
);
334 td
->td_release
= NULL
;
337 * After reducing our priority there might be other kernel-level
338 * LWKTs that now have a greater priority. Run them as necessary.
339 * We don't have to worry about losing cpu to userland because
340 * we still control the current-process designation and we no longer
341 * have a passive release function installed.
343 if (lwkt_checkpri_self())
348 * Exception, fault, and trap interface to the kernel.
349 * This common code is called from assembly language IDT gate entry
350 * routines that prepare a suitable stack frame, and restore this
351 * frame after the exception has been processed.
353 * This function is also called from doreti in an interlock to handle ASTs.
354 * For example: hardwareint->INTROUTINE->(set ast)->doreti->trap
356 * NOTE! We have to retrieve the fault address prior to obtaining the
357 * MP lock because get_mplock() may switch out. YYY cr2 really ought
358 * to be retrieved by the assembly code, not here.
360 * XXX gd_trap_nesting_level currently prevents lwkt_switch() from panicing
361 * if an attempt is made to switch from a fast interrupt or IPI. This is
362 * necessary to properly take fatal kernel traps on SMP machines if
363 * get_mplock() has to block.
367 user_trap(struct trapframe
*frame
)
369 struct globaldata
*gd
= mycpu
;
370 struct thread
*td
= gd
->gd_curthread
;
371 struct lwp
*lp
= td
->td_lwp
;
374 int i
= 0, ucode
= 0, type
, code
;
379 int crit_count
= td
->td_pri
& ~TDPRI_MASK
;
386 * This is a bad kludge to avoid changing the various trapframe
387 * structures. Because we are enabled as a virtual kernel,
388 * the original tf_err field will be passed to us shifted 16
389 * over in the tf_trapno field for T_PAGEFLT.
391 if (frame
->tf_trapno
== T_PAGEFLT
)
396 kprintf("USER_TRAP AT %08x xflags %d trapno %d eva %08x\n",
397 frame
->tf_eip
, frame
->tf_xflags
, frame
->tf_trapno
, eva
);
401 * Everything coming from user mode runs through user_trap,
402 * including system calls.
404 if (frame
->tf_trapno
== T_SYSCALL80
) {
411 eva
= (frame
->tf_trapno
== T_PAGEFLT
? rcr2() : 0);
412 ++gd
->gd_trap_nesting_level
;
413 MAKEMPSAFE(have_mplock
);
414 trap_fatal(frame
, TRUE
, eva
);
415 --gd
->gd_trap_nesting_level
;
420 ++gd
->gd_trap_nesting_level
;
422 if (trap_mpsafe
== 0)
423 MAKEMPSAFE(have_mplock
);
426 --gd
->gd_trap_nesting_level
;
428 #if defined(I586_CPU) && !defined(NO_F00F_HACK)
431 type
= frame
->tf_trapno
;
432 code
= frame
->tf_err
;
436 sticks
= (int)td
->td_sticks
;
437 lp
->lwp_md
.md_regs
= frame
;
440 case T_PRIVINFLT
: /* privileged instruction fault */
445 case T_BPTFLT
: /* bpt instruction fault */
446 case T_TRCTRAP
: /* trace trap */
447 frame
->tf_eflags
&= ~PSL_T
;
451 case T_ARITHTRAP
: /* arithmetic trap */
456 case T_ASTFLT
: /* Allow process switch */
457 mycpu
->gd_cnt
.v_soft
++;
458 if (mycpu
->gd_reqflags
& RQF_AST_OWEUPC
) {
459 atomic_clear_int_nonlocked(&mycpu
->gd_reqflags
,
461 addupc_task(p
, p
->p_prof
.pr_addr
,
467 * The following two traps can happen in
468 * vm86 mode, and, if so, we want to handle
471 case T_PROTFLT
: /* general protection fault */
472 case T_STKFLT
: /* stack fault */
474 if (frame
->tf_eflags
& PSL_VM
) {
475 i
= vm86_emulate((struct vm86frame
*)frame
);
483 case T_SEGNPFLT
: /* segment not present fault */
484 case T_TSSFLT
: /* invalid TSS fault */
485 case T_DOUBLEFLT
: /* double fault */
487 ucode
= code
+ BUS_SEGM_FAULT
;
491 case T_PAGEFLT
: /* page fault */
492 MAKEMPSAFE(have_mplock
);
493 i
= trap_pfault(frame
, TRUE
, eva
);
496 #if defined(I586_CPU) && !defined(NO_F00F_HACK)
506 case T_DIVIDE
: /* integer divide fault */
513 MAKEMPSAFE(have_mplock
);
514 /* machine/parity/power fail/"kitchen sink" faults */
515 if (isa_nmi(code
) == 0) {
518 * NMI can be hooked up to a pushbutton
522 kprintf ("NMI ... going to debugger\n");
523 kdb_trap (type
, 0, frame
);
527 } else if (panic_on_nmi
)
528 panic("NMI indicates hardware failure");
530 #endif /* NISA > 0 */
532 case T_OFLOW
: /* integer overflow fault */
537 case T_BOUND
: /* bounds check fault */
544 * Virtual kernel intercept - pass the DNA exception
545 * to the (emulated) virtual kernel if it asked to handle
546 * it. This occurs when the virtual kernel is holding
547 * onto the FP context for a different emulated
548 * process then the one currently running.
550 * We must still call npxdna() since we may have
551 * saved FP state that the (emulated) virtual kernel
552 * needs to hand over to a different emulated process.
554 if (lp
->lwp_vkernel
&& lp
->lwp_vkernel
->ve
&&
555 (td
->td_pcb
->pcb_flags
& FP_VIRTFP
)
562 * The kernel may have switched out the FP unit's
563 * state, causing the user process to take a fault
564 * when it tries to use the FP unit. Restore the
570 if (!pmath_emulate
) {
572 ucode
= FPE_FPU_NP_TRAP
;
575 i
= (*pmath_emulate
)(frame
);
577 if (!(frame
->tf_eflags
& PSL_T
))
579 frame
->tf_eflags
&= ~PSL_T
;
582 /* else ucode = emulator_only_knows() XXX */
585 case T_FPOPFLT
: /* FPU operand fetch fault */
590 case T_XMMFLT
: /* SIMD floating-point exception */
597 * Virtual kernel intercept - if the fault is directly related to a
598 * VM context managed by a virtual kernel then let the virtual kernel
601 if (lp
->lwp_vkernel
&& lp
->lwp_vkernel
->ve
) {
602 vkernel_trap(lp
, frame
);
607 * Translate fault for emulators (e.g. Linux)
609 if (*p
->p_sysent
->sv_transtrap
)
610 i
= (*p
->p_sysent
->sv_transtrap
)(i
, type
);
612 MAKEMPSAFE(have_mplock
);
613 trapsignal(lp
, i
, ucode
);
616 if (type
<= MAX_TRAP_MSG
) {
617 uprintf("fatal process exception: %s",
619 if ((type
== T_PAGEFLT
) || (type
== T_PROTFLT
))
620 uprintf(", fault VA = 0x%lx", (u_long
)eva
);
627 KASSERT(td
->td_mpcount
== have_mplock
, ("badmpcount trap/end from %p", (void *)frame
->tf_eip
));
629 userret(lp
, frame
, sticks
);
637 KASSERT(crit_count
== (td
->td_pri
& ~TDPRI_MASK
),
638 ("syscall: critical section count mismatch! %d/%d",
639 crit_count
/ TDPRI_CRIT
, td
->td_pri
/ TDPRI_CRIT
));
644 kern_trap(struct trapframe
*frame
)
646 struct globaldata
*gd
= mycpu
;
647 struct thread
*td
= gd
->gd_curthread
;
650 int i
= 0, ucode
= 0, type
, code
;
655 int crit_count
= td
->td_pri
& ~TDPRI_MASK
;
662 if (frame
->tf_trapno
== T_PAGEFLT
)
669 ++gd
->gd_trap_nesting_level
;
670 MAKEMPSAFE(have_mplock
);
671 trap_fatal(frame
, FALSE
, eva
);
672 --gd
->gd_trap_nesting_level
;
677 ++gd
->gd_trap_nesting_level
;
680 if (trap_mpsafe
== 0)
681 MAKEMPSAFE(have_mplock
);
684 --gd
->gd_trap_nesting_level
;
686 type
= frame
->tf_trapno
;
687 code
= frame
->tf_err
;
695 case T_PAGEFLT
: /* page fault */
696 MAKEMPSAFE(have_mplock
);
697 trap_pfault(frame
, FALSE
, eva
);
703 * The kernel may be using npx for copying or other
706 panic("kernel NPX should not happen");
712 case T_PROTFLT
: /* general protection fault */
713 case T_SEGNPFLT
: /* segment not present fault */
715 * Invalid segment selectors and out of bounds
716 * %eip's and %esp's can be set up in user mode.
717 * This causes a fault in kernel mode when the
718 * kernel tries to return to user mode. We want
719 * to get this fault so that we can fix the
720 * problem here and not have to check all the
721 * selectors and pointers when the user changes
724 if (mycpu
->gd_intr_nesting_level
== 0) {
725 if (td
->td_pcb
->pcb_onfault
) {
727 (register_t
)td
->td_pcb
->pcb_onfault
;
735 * PSL_NT can be set in user mode and isn't cleared
736 * automatically when the kernel is entered. This
737 * causes a TSS fault when the kernel attempts to
738 * `iret' because the TSS link is uninitialized. We
739 * want to get this fault so that we can fix the
740 * problem here and not every time the kernel is
743 if (frame
->tf_eflags
& PSL_NT
) {
744 frame
->tf_eflags
&= ~PSL_NT
;
749 case T_TRCTRAP
: /* trace trap */
751 if (frame
->tf_eip
== (int)IDTVEC(syscall
)) {
753 * We've just entered system mode via the
754 * syscall lcall. Continue single stepping
755 * silently until the syscall handler has
760 if (frame
->tf_eip
== (int)IDTVEC(syscall
) + 1) {
762 * The syscall handler has now saved the
763 * flags. Stop single stepping it.
765 frame
->tf_eflags
&= ~PSL_T
;
771 * Ignore debug register trace traps due to
772 * accesses in the user's address space, which
773 * can happen under several conditions such as
774 * if a user sets a watchpoint on a buffer and
775 * then passes that buffer to a system call.
776 * We still want to get TRCTRAPS for addresses
777 * in kernel space because that is useful when
778 * debugging the kernel.
780 if (user_dbreg_trap()) {
782 * Reset breakpoint bits because the
785 load_dr6(rdr6() & 0xfffffff0);
790 * Fall through (TRCTRAP kernel mode, kernel address)
794 * If DDB is enabled, let it handle the debugger trap.
795 * Otherwise, debugger traps "can't happen".
798 MAKEMPSAFE(have_mplock
);
799 if (kdb_trap (type
, 0, frame
))
805 MAKEMPSAFE(have_mplock
);
806 trap_fatal(frame
, FALSE
, eva
);
810 * Ignore this trap generated from a spurious SIGTRAP.
812 * single stepping in / syscalls leads to spurious / SIGTRAP
815 * Haiku (c) 2007 Simon 'corecode' Schubert
821 * Translate fault for emulators (e.g. Linux)
823 if (*p
->p_sysent
->sv_transtrap
)
824 i
= (*p
->p_sysent
->sv_transtrap
)(i
, type
);
826 MAKEMPSAFE(have_mplock
);
827 trapsignal(lp
, i
, ucode
);
830 if (type
<= MAX_TRAP_MSG
) {
831 uprintf("fatal process exception: %s",
833 if ((type
== T_PAGEFLT
) || (type
== T_PROTFLT
))
834 uprintf(", fault VA = 0x%lx", (u_long
)eva
);
846 KASSERT(crit_count
== (td
->td_pri
& ~TDPRI_MASK
),
847 ("syscall: critical section count mismatch! %d/%d",
848 crit_count
/ TDPRI_CRIT
, td
->td_pri
/ TDPRI_CRIT
));
853 trap_pfault(struct trapframe
*frame
, int usermode
, vm_offset_t eva
)
856 struct vmspace
*vm
= NULL
;
860 thread_t td
= curthread
;
861 struct lwp
*lp
= td
->td_lwp
;
863 va
= trunc_page(eva
);
864 if (usermode
== FALSE
) {
866 * This is a fault on kernel virtual memory.
871 * This is a fault on non-kernel virtual memory.
872 * vm is initialized above to NULL. If curproc is NULL
873 * or curproc->p_vmspace is NULL the fault is fatal.
876 vm
= lp
->lwp_vmspace
;
884 if (frame
->tf_xflags
& PGEX_W
)
885 ftype
= VM_PROT_READ
| VM_PROT_WRITE
;
887 ftype
= VM_PROT_READ
;
889 if (map
!= &kernel_map
) {
891 * Keep swapout from messing with us during this
897 * Grow the stack if necessary
899 /* grow_stack returns false only if va falls into
900 * a growable stack region and the stack growth
901 * fails. It returns true if va was not within
902 * a growable stack region, or if the stack
905 if (!grow_stack (lp
->lwp_proc
, va
)) {
911 /* Fault in the user page: */
912 rv
= vm_fault(map
, va
, ftype
,
913 (ftype
& VM_PROT_WRITE
) ? VM_FAULT_DIRTY
919 * Don't have to worry about process locking or stacks in the kernel.
921 rv
= vm_fault(map
, va
, ftype
, VM_FAULT_NORMAL
);
924 if (rv
== KERN_SUCCESS
)
928 if (td
->td_gd
->gd_intr_nesting_level
== 0 &&
929 td
->td_pcb
->pcb_onfault
) {
930 frame
->tf_eip
= (register_t
)td
->td_pcb
->pcb_onfault
;
933 trap_fatal(frame
, usermode
, eva
);
936 return((rv
== KERN_PROTECTION_FAILURE
) ? SIGBUS
: SIGSEGV
);
940 trap_fatal(struct trapframe
*frame
, int usermode
, vm_offset_t eva
)
942 int code
, type
, ss
, esp
;
944 code
= frame
->tf_xflags
;
945 type
= frame
->tf_trapno
;
947 if (type
<= MAX_TRAP_MSG
) {
948 kprintf("\n\nFatal trap %d: %s while in %s mode\n",
949 type
, trap_msg
[type
],
950 (usermode
? "user" : "kernel"));
953 /* two separate prints in case of a trap on an unmapped page */
954 kprintf("mp_lock = %08x; ", mp_lock
);
955 kprintf("cpuid = %d\n", mycpu
->gd_cpuid
);
957 if (type
== T_PAGEFLT
) {
958 kprintf("fault virtual address = 0x%x\n", eva
);
959 kprintf("fault code = %s %s, %s\n",
960 usermode
? "user" : "supervisor",
961 code
& PGEX_W
? "write" : "read",
962 code
& PGEX_P
? "protection violation" : "page not present");
964 kprintf("instruction pointer = 0x%x:0x%x\n",
965 frame
->tf_cs
& 0xffff, frame
->tf_eip
);
967 ss
= frame
->tf_ss
& 0xffff;
970 ss
= GSEL(GDATA_SEL
, SEL_KPL
);
971 esp
= (int)&frame
->tf_esp
;
973 kprintf("stack pointer = 0x%x:0x%x\n", ss
, esp
);
974 kprintf("frame pointer = 0x%x:0x%x\n", ss
, frame
->tf_ebp
);
975 kprintf("processor eflags = ");
976 if (frame
->tf_eflags
& PSL_T
)
977 kprintf("trace trap, ");
978 if (frame
->tf_eflags
& PSL_I
)
979 kprintf("interrupt enabled, ");
980 if (frame
->tf_eflags
& PSL_NT
)
981 kprintf("nested task, ");
982 if (frame
->tf_eflags
& PSL_RF
)
985 if (frame
->tf_eflags
& PSL_VM
)
988 kprintf("IOPL = %d\n", (frame
->tf_eflags
& PSL_IOPL
) >> 12);
989 kprintf("current process = ");
991 kprintf("%lu (%s)\n",
992 (u_long
)curproc
->p_pid
, curproc
->p_comm
?
993 curproc
->p_comm
: "");
997 kprintf("current thread = pri %d ", curthread
->td_pri
);
998 if (curthread
->td_pri
>= TDPRI_CRIT
)
1004 * we probably SHOULD have stopped the other CPUs before now!
1005 * another CPU COULD have been touching cpl at this moment...
1007 kprintf(" <- SMP: XXX");
1016 if ((debugger_on_panic
|| db_active
) && kdb_trap(type
, code
, frame
))
1019 kprintf("trap number = %d\n", type
);
1020 if (type
<= MAX_TRAP_MSG
)
1021 panic("%s", trap_msg
[type
]);
1023 panic("unknown/reserved trap");
1027 * Double fault handler. Called when a fault occurs while writing
1028 * a frame for a trap/exception onto the stack. This usually occurs
1029 * when the stack overflows (such is the case with infinite recursion,
1032 * XXX Note that the current PTD gets replaced by IdlePTD when the
1033 * task switch occurs. This means that the stack that was active at
1034 * the time of the double fault is not available at <kstack> unless
1035 * the machine was idle when the double fault occurred. The downside
1036 * of this is that "trace <ebp>" in ddb won't work.
1039 dblfault_handler(void)
1041 struct mdglobaldata
*gd
= mdcpu
;
1043 kprintf("\nFatal double fault:\n");
1044 kprintf("eip = 0x%x\n", gd
->gd_common_tss
.tss_eip
);
1045 kprintf("esp = 0x%x\n", gd
->gd_common_tss
.tss_esp
);
1046 kprintf("ebp = 0x%x\n", gd
->gd_common_tss
.tss_ebp
);
1048 /* two separate prints in case of a trap on an unmapped page */
1049 kprintf("mp_lock = %08x; ", mp_lock
);
1050 kprintf("cpuid = %d\n", mycpu
->gd_cpuid
);
1052 panic("double fault");
1056 * Compensate for 386 brain damage (missing URKR).
1057 * This is a little simpler than the pagefault handler in trap() because
1058 * it the page tables have already been faulted in and high addresses
1059 * are thrown out early for other reasons.
1062 trapwrite(unsigned addr
)
1069 va
= trunc_page((vm_offset_t
)addr
);
1071 * XXX - MAX is END. Changed > to >= for temp. fix.
1073 if (va
>= VM_MAX_USER_ADDRESS
)
1076 lp
= curthread
->td_lwp
;
1077 vm
= lp
->lwp_vmspace
;
1079 PHOLD(lp
->lwp_proc
);
1081 if (!grow_stack (lp
->lwp_proc
, va
)) {
1082 PRELE(lp
->lwp_proc
);
1087 * fault the data page
1089 rv
= vm_fault(&vm
->vm_map
, va
, VM_PROT_WRITE
, VM_FAULT_DIRTY
);
1091 PRELE(lp
->lwp_proc
);
1093 if (rv
!= KERN_SUCCESS
)
1100 * syscall2 - MP aware system call request C handler
1102 * A system call is essentially treated as a trap except that the
1103 * MP lock is not held on entry or return. We are responsible for
1104 * obtaining the MP lock if necessary and for handling ASTs
1105 * (e.g. a task switch) prior to return.
1107 * In general, only simple access and manipulation of curproc and
1108 * the current stack is allowed without having to hold MP lock.
1110 * MPSAFE - note that large sections of this routine are run without
1115 syscall2(struct trapframe
*frame
)
1117 struct thread
*td
= curthread
;
1118 struct proc
*p
= td
->td_proc
;
1119 struct lwp
*lp
= td
->td_lwp
;
1121 struct sysent
*callp
;
1122 register_t orig_tf_eflags
;
1127 int crit_count
= td
->td_pri
& ~TDPRI_MASK
;
1130 int have_mplock
= 0;
1133 union sysunion args
;
1136 KASSERT(td
->td_mpcount
== 0, ("badmpcount syscall2 from %p", (void *)frame
->tf_eip
));
1137 if (syscall_mpsafe
== 0)
1138 MAKEMPSAFE(have_mplock
);
1140 userenter(td
); /* lazy raise our priority */
1145 sticks
= (int)td
->td_sticks
;
1146 orig_tf_eflags
= frame
->tf_eflags
;
1149 * Virtual kernel intercept - if a VM context managed by a virtual
1150 * kernel issues a system call the virtual kernel handles it, not us.
1151 * Restore the virtual kernel context and return from its system
1152 * call. The current frame is copied out to the virtual kernel.
1154 if (lp
->lwp_vkernel
&& lp
->lwp_vkernel
->ve
) {
1155 error
= vkernel_trap(lp
, frame
);
1156 frame
->tf_eax
= error
;
1158 frame
->tf_eflags
|= PSL_C
;
1159 error
= EJUSTRETURN
;
1164 * Get the system call parameters and account for time
1166 lp
->lwp_md
.md_regs
= frame
;
1167 params
= (caddr_t
)frame
->tf_esp
+ sizeof(int);
1168 code
= frame
->tf_eax
;
1170 if (p
->p_sysent
->sv_prepsyscall
) {
1171 (*p
->p_sysent
->sv_prepsyscall
)(
1172 frame
, (int *)(&args
.nosys
.sysmsg
+ 1),
1176 * Need to check if this is a 32 bit or 64 bit syscall.
1177 * fuword is MP aware.
1179 if (code
== SYS_syscall
) {
1181 * Code is first argument, followed by actual args.
1183 code
= fuword(params
);
1184 params
+= sizeof(int);
1185 } else if (code
== SYS___syscall
) {
1187 * Like syscall, but code is a quad, so as to maintain
1188 * quad alignment for the rest of the arguments.
1190 code
= fuword(params
);
1191 params
+= sizeof(quad_t
);
1195 code
&= p
->p_sysent
->sv_mask
;
1196 if (code
>= p
->p_sysent
->sv_size
)
1197 callp
= &p
->p_sysent
->sv_table
[0];
1199 callp
= &p
->p_sysent
->sv_table
[code
];
1201 narg
= callp
->sy_narg
& SYF_ARGMASK
;
1204 * copyin is MP aware, but the tracing code is not
1206 if (narg
&& params
) {
1207 error
= copyin(params
, (caddr_t
)(&args
.nosys
.sysmsg
+ 1),
1208 narg
* sizeof(register_t
));
1211 if (KTRPOINT(td
, KTR_SYSCALL
)) {
1212 MAKEMPSAFE(have_mplock
);
1214 ktrsyscall(p
, code
, narg
,
1215 (void *)(&args
.nosys
.sysmsg
+ 1));
1223 if (KTRPOINT(td
, KTR_SYSCALL
)) {
1224 MAKEMPSAFE(have_mplock
);
1225 ktrsyscall(p
, code
, narg
, (void *)(&args
.nosys
.sysmsg
+ 1));
1230 * For traditional syscall code edx is left untouched when 32 bit
1231 * results are returned. Since edx is loaded from fds[1] when the
1232 * system call returns we pre-set it here.
1234 args
.sysmsg_fds
[0] = 0;
1235 args
.sysmsg_fds
[1] = frame
->tf_edx
;
1238 * The syscall might manipulate the trap frame. If it does it
1239 * will probably return EJUSTRETURN.
1241 args
.sysmsg_frame
= frame
;
1243 STOPEVENT(p
, S_SCE
, narg
); /* MP aware */
1247 * Try to run the syscall without the MP lock if the syscall
1248 * is MP safe. We have to obtain the MP lock no matter what if
1251 if ((callp
->sy_narg
& SYF_MPSAFE
) == 0)
1252 MAKEMPSAFE(have_mplock
);
1255 error
= (*callp
->sy_call
)(&args
);
1258 kprintf("system call %d returned %d\n", code
, error
);
1263 * MP SAFE (we may or may not have the MP lock at this point)
1268 * Reinitialize proc pointer `p' as it may be different
1269 * if this is a child returning from fork syscall.
1272 lp
= curthread
->td_lwp
;
1273 frame
->tf_eax
= args
.sysmsg_fds
[0];
1274 frame
->tf_edx
= args
.sysmsg_fds
[1];
1275 frame
->tf_eflags
&= ~PSL_C
;
1279 * Reconstruct pc, assuming lcall $X,y is 7 bytes,
1280 * int 0x80 is 2 bytes. We saved this in tf_err.
1282 frame
->tf_eip
-= frame
->tf_err
;
1287 panic("Unexpected EASYNC return value (for now)");
1290 if (p
->p_sysent
->sv_errsize
) {
1291 if (error
>= p
->p_sysent
->sv_errsize
)
1292 error
= -1; /* XXX */
1294 error
= p
->p_sysent
->sv_errtbl
[error
];
1296 frame
->tf_eax
= error
;
1297 frame
->tf_eflags
|= PSL_C
;
1302 * Traced syscall. trapsignal() is not MP aware.
1304 if ((orig_tf_eflags
& PSL_T
) /*&& !(orig_tf_eflags & PSL_VM)*/) {
1305 MAKEMPSAFE(have_mplock
);
1306 frame
->tf_eflags
&= ~PSL_T
;
1307 trapsignal(lp
, SIGTRAP
, 0);
1311 * Handle reschedule and other end-of-syscall issues
1313 userret(lp
, frame
, sticks
);
1316 if (KTRPOINT(td
, KTR_SYSRET
)) {
1317 MAKEMPSAFE(have_mplock
);
1318 ktrsysret(p
, code
, error
, args
.sysmsg_result
);
1323 * This works because errno is findable through the
1324 * register set. If we ever support an emulation where this
1325 * is not the case, this code will need to be revisited.
1327 STOPEVENT(p
, S_SCX
, code
);
1332 * Release the MP lock if we had to get it
1334 KASSERT(td
->td_mpcount
== have_mplock
,
1335 ("badmpcount syscall2/end from %p", (void *)frame
->tf_eip
));
1340 KASSERT(crit_count
== (td
->td_pri
& ~TDPRI_MASK
),
1341 ("syscall: critical section count mismatch! %d/%d",
1342 crit_count
/ TDPRI_CRIT
, td
->td_pri
/ TDPRI_CRIT
));
1347 fork_return(struct lwp
*lp
, struct trapframe
*frame
)
1349 frame
->tf_eax
= 0; /* Child returns zero */
1350 frame
->tf_eflags
&= ~PSL_C
; /* success */
1353 generic_lwp_return(lp
, frame
);
1357 * Simplified back end of syscall(), used when returning from fork()
1358 * or lwp_create() directly into user mode. MP lock is held on entry and
1359 * should be released on return. This code will return back into the fork
1360 * trampoline code which then runs doreti.
1363 generic_lwp_return(struct lwp
*lp
, struct trapframe
*frame
)
1365 struct proc
*p
= lp
->lwp_proc
;
1368 * Newly forked processes are given a kernel priority. We have to
1369 * adjust the priority to a normal user priority and fake entry
1370 * into the kernel (call userenter()) to install a passive release
1371 * function just in case userret() decides to stop the process. This
1372 * can occur when ^Z races a fork. If we do not install the passive
1373 * release function the current process designation will not be
1374 * released when the thread goes to sleep.
1376 lwkt_setpri_self(TDPRI_USER_NORM
);
1377 userenter(lp
->lwp_thread
);
1378 userret(lp
, frame
, 0);
1380 if (KTRPOINT(lp
->lwp_thread
, KTR_SYSRET
))
1381 ktrsysret(p
, SYS_fork
, 0, 0);
1383 p
->p_flag
|= P_PASSIVE_ACQ
;
1385 p
->p_flag
&= ~P_PASSIVE_ACQ
;
1387 KKASSERT(lp
->lwp_thread
->td_mpcount
== 1);
1393 * doreti has turned into this. The frame is directly on the stack. We
1394 * pull everything else we need (fpu and tls context) from the current
1397 * Note on fpu interactions: In a virtual kernel, the fpu context for
1398 * an emulated user mode process is not shared with the virtual kernel's
1399 * fpu context, so we only have to 'stack' fpu contexts within the virtual
1400 * kernel itself, and not even then since the signal() contexts that we care
1401 * about save and restore the FPU state (I think anyhow).
1403 * vmspace_ctl() returns an error only if it had problems instaling the
1404 * context we supplied or problems copying data to/from our VM space.
1407 go_user(struct intrframe
*frame
)
1409 struct trapframe
*tf
= (void *)&frame
->if_gs
;
1413 * Interrupts may be disabled on entry, make sure all signals
1414 * can be received before beginning our loop.
1419 * Switch to the current simulated user process, then call
1420 * user_trap() when we break out of it (usually due to a signal).
1424 * Tell the real kernel whether it is ok to use the FP
1427 if (mdcpu
->gd_npxthread
== curthread
) {
1428 tf
->tf_xflags
&= ~PGEX_FPFAULT
;
1430 tf
->tf_xflags
|= PGEX_FPFAULT
;
1434 * Run emulated user process context. This call interlocks
1435 * with new mailbox signals.
1437 * Set PGEX_U unconditionally, indicating a user frame (the
1438 * bit is normally set only by T_PAGEFLT).
1440 r
= vmspace_ctl(&curproc
->p_vmspace
->vm_pmap
, VMSPACE_CTL_RUN
,
1441 tf
, &curthread
->td_savevext
);
1442 frame
->if_xflags
|= PGEX_U
;
1444 kprintf("GO USER %d trap %d EVA %08x EIP %08x ESP %08x XFLAGS %02x/%02x\n",
1445 r
, tf
->tf_trapno
, tf
->tf_err
, tf
->tf_eip
, tf
->tf_esp
,
1446 tf
->tf_xflags
, frame
->if_xflags
);
1450 panic("vmspace_ctl failed");
1452 if (tf
->tf_trapno
) {
1454 } else if (mycpu
->gd_reqflags
& RQF_AST_MASK
) {
1455 tf
->tf_trapno
= T_ASTFLT
;
1464 * If PGEX_FPFAULT is set then set FP_VIRTFP in the PCB to force a T_DNA
1465 * fault (which is then passed back to the virtual kernel) if an attempt is
1466 * made to use the FP unit.
1468 * XXX this is a fairly big hack.
1471 set_vkernel_fp(struct trapframe
*frame
)
1473 struct thread
*td
= curthread
;
1475 if (frame
->tf_xflags
& PGEX_FPFAULT
) {
1476 td
->td_pcb
->pcb_flags
|= FP_VIRTFP
;
1477 if (mdcpu
->gd_npxthread
== td
)
1480 td
->td_pcb
->pcb_flags
&= ~FP_VIRTFP
;