Get rid of struct user/UAREA.
[dragonfly.git] / sys / platform / vkernel / i386 / trap.c
blobd97c9909a1e544a5b8cb8f397a2509fc524dc4c4
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.21 2007/02/25 23:17:13 corecode 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/upcall.h>
70 #include <sys/vkernel.h>
71 #include <sys/sysproto.h>
72 #include <sys/sysunion.h>
73 #include <sys/vmspace.h>
75 #include <vm/vm.h>
76 #include <vm/vm_param.h>
77 #include <sys/lock.h>
78 #include <vm/pmap.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>
93 #include <ddb/ddb.h>
94 #include <sys/msgport2.h>
95 #include <sys/thread2.h>
97 #ifdef SMP
99 #define MAKEMPSAFE(have_mplock) \
100 if (have_mplock == 0) { \
101 get_mplock(); \
102 have_mplock = 1; \
105 #else
107 #define MAKEMPSAFE(have_mplock)
109 #endif
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);
119 #if 0
120 extern inthand_t IDTVEC(syscall);
121 #endif
123 #define MAX_TRAP_MSG 28
124 static char *trap_msg[] = {
125 "", /* 0 unused */
126 "privileged instruction fault", /* 1 T_PRIVINFLT */
127 "", /* 2 unused */
128 "breakpoint instruction fault", /* 3 T_BPTFLT */
129 "", /* 4 unused */
130 "", /* 5 unused */
131 "arithmetic trap", /* 6 T_ARITHTRAP */
132 "system forced exception", /* 7 T_ASTFLT */
133 "", /* 8 unused */
134 "general protection fault", /* 9 T_PROTFLT */
135 "trace trap", /* 10 T_TRCTRAP */
136 "", /* 11 unused */
137 "page fault", /* 12 T_PAGEFLT */
138 "", /* 13 unused */
139 "alignment fault", /* 14 T_ALIGNFLT */
140 "", /* 15 unused */
141 "", /* 16 unused */
142 "", /* 17 unused */
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 */
156 #ifdef DDB
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");
160 #endif
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");
170 #ifdef SMP
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);
179 #endif
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.
190 static void
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.
206 static __inline void
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.
220 static void
221 userret(struct lwp *lp, struct trapframe *frame, int sticks)
223 struct proc *p = lp->lwp_proc;
224 int sig;
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));
236 recheck:
238 * If the jungle wants us dead, so be it.
240 if (lp->lwp_flag & LWP_WEXIT)
241 lwp_exit();
244 * Block here if we are in a stopped state.
246 if (p->p_stat == SSTOP) {
247 get_mplock();
248 tstop();
249 rel_mplock();
250 goto recheck;
254 * Post any pending upcalls
256 if (p->p_flag & P_UPCALLPEND) {
257 get_mplock();
258 p->p_flag &= ~P_UPCALLPEND;
259 postupcall(lp);
260 rel_mplock();
261 goto recheck;
265 * Post any pending signals
267 if ((sig = CURSIG(lp)) != 0) {
268 get_mplock();
269 postsig(sig);
270 rel_mplock();
271 goto recheck;
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) {
280 get_mplock();
281 p->p_flag |= P_SWAPWAIT;
282 swapin_request();
283 if (p->p_flag & P_SWAPWAIT)
284 tsleep(p, PCATCH, "SWOUT", 0);
285 p->p_flag &= ~P_SWAPWAIT;
286 rel_mplock();
287 goto recheck;
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.
296 static __inline void
297 userexit(struct lwp *lp)
299 struct thread *td = lp->lwp_thread;
300 globaldata_t gd = td->td_gd;
302 #if 0
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);
310 #endif
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())
317 lwkt_switch();
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 */
325 gd = td->td_gd;
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())
344 lwkt_switch();
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.
366 void
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;
372 struct proc *p;
373 int sticks = 0;
374 int i = 0, ucode = 0, type, code;
375 #ifdef SMP
376 int have_mplock = 0;
377 #endif
378 #ifdef INVARIANTS
379 int crit_count = td->td_pri & ~TDPRI_MASK;
380 #endif
381 vm_offset_t eva;
383 p = td->td_proc;
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)
392 eva = frame->tf_err;
393 else
394 eva = 0;
395 #if 0
396 kprintf("USER_TRAP AT %08x xflags %d trapno %d eva %08x\n",
397 frame->tf_eip, frame->tf_xflags, frame->tf_trapno, eva);
398 #endif
401 * Everything coming from user mode runs through user_trap,
402 * including system calls.
404 if (frame->tf_trapno == T_SYSCALL80) {
405 syscall2(frame);
406 return;
409 #ifdef DDB
410 if (db_active) {
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;
416 goto out2;
418 #endif
420 ++gd->gd_trap_nesting_level;
421 #ifdef SMP
422 if (trap_mpsafe == 0)
423 MAKEMPSAFE(have_mplock);
424 #endif
426 --gd->gd_trap_nesting_level;
428 #if defined(I586_CPU) && !defined(NO_F00F_HACK)
429 restart:
430 #endif
431 type = frame->tf_trapno;
432 code = frame->tf_err;
434 userenter(td);
436 sticks = (int)td->td_sticks;
437 lp->lwp_md.md_regs = frame;
439 switch (type) {
440 case T_PRIVINFLT: /* privileged instruction fault */
441 ucode = type;
442 i = SIGILL;
443 break;
445 case T_BPTFLT: /* bpt instruction fault */
446 case T_TRCTRAP: /* trace trap */
447 frame->tf_eflags &= ~PSL_T;
448 i = SIGTRAP;
449 break;
451 case T_ARITHTRAP: /* arithmetic trap */
452 ucode = code;
453 i = SIGFPE;
454 break;
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,
460 RQF_AST_OWEUPC);
461 addupc_task(p, p->p_prof.pr_addr,
462 p->p_prof.pr_ticks);
464 goto out;
467 * The following two traps can happen in
468 * vm86 mode, and, if so, we want to handle
469 * them specially.
471 case T_PROTFLT: /* general protection fault */
472 case T_STKFLT: /* stack fault */
473 #if 0
474 if (frame->tf_eflags & PSL_VM) {
475 i = vm86_emulate((struct vm86frame *)frame);
476 if (i == 0)
477 goto out;
478 break;
480 #endif
481 /* FALL THROUGH */
483 case T_SEGNPFLT: /* segment not present fault */
484 case T_TSSFLT: /* invalid TSS fault */
485 case T_DOUBLEFLT: /* double fault */
486 default:
487 ucode = code + BUS_SEGM_FAULT ;
488 i = SIGBUS;
489 break;
491 case T_PAGEFLT: /* page fault */
492 MAKEMPSAFE(have_mplock);
493 i = trap_pfault(frame, TRUE, eva);
494 if (i == -1)
495 goto out;
496 #if defined(I586_CPU) && !defined(NO_F00F_HACK)
497 if (i == -2)
498 goto restart;
499 #endif
500 if (i == 0)
501 goto out;
503 ucode = T_PAGEFLT;
504 break;
506 case T_DIVIDE: /* integer divide fault */
507 ucode = FPE_INTDIV;
508 i = SIGFPE;
509 break;
511 #if NISA > 0
512 case T_NMI:
513 MAKEMPSAFE(have_mplock);
514 /* machine/parity/power fail/"kitchen sink" faults */
515 if (isa_nmi(code) == 0) {
516 #ifdef DDB
518 * NMI can be hooked up to a pushbutton
519 * for debugging.
521 if (ddb_on_nmi) {
522 kprintf ("NMI ... going to debugger\n");
523 kdb_trap (type, 0, frame);
525 #endif /* DDB */
526 goto out2;
527 } else if (panic_on_nmi)
528 panic("NMI indicates hardware failure");
529 break;
530 #endif /* NISA > 0 */
532 case T_OFLOW: /* integer overflow fault */
533 ucode = FPE_INTOVF;
534 i = SIGFPE;
535 break;
537 case T_BOUND: /* bounds check fault */
538 ucode = FPE_FLTSUB;
539 i = SIGFPE;
540 break;
542 case T_DNA:
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 (p->p_vkernel && p->p_vkernel->vk_current &&
555 (td->td_pcb->pcb_flags & FP_VIRTFP)
557 npxdna(frame);
558 break;
560 #if NNPX > 0
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
565 * state here
567 if (npxdna(frame))
568 goto out;
569 #endif
570 if (!pmath_emulate) {
571 i = SIGFPE;
572 ucode = FPE_FPU_NP_TRAP;
573 break;
575 i = (*pmath_emulate)(frame);
576 if (i == 0) {
577 if (!(frame->tf_eflags & PSL_T))
578 goto out2;
579 frame->tf_eflags &= ~PSL_T;
580 i = SIGTRAP;
582 /* else ucode = emulator_only_knows() XXX */
583 break;
585 case T_FPOPFLT: /* FPU operand fetch fault */
586 ucode = T_FPOPFLT;
587 i = SIGILL;
588 break;
590 case T_XMMFLT: /* SIMD floating-point exception */
591 ucode = 0; /* XXX */
592 i = SIGFPE;
593 break;
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
599 * handle it.
601 if (p->p_vkernel && p->p_vkernel->vk_current) {
602 vkernel_trap(p, frame);
603 goto out;
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);
615 #ifdef DEBUG
616 if (type <= MAX_TRAP_MSG) {
617 uprintf("fatal process exception: %s",
618 trap_msg[type]);
619 if ((type == T_PAGEFLT) || (type == T_PROTFLT))
620 uprintf(", fault VA = 0x%lx", (u_long)eva);
621 uprintf("\n");
623 #endif
625 out:
626 #ifdef SMP
627 KASSERT(td->td_mpcount == have_mplock, ("badmpcount trap/end from %p", (void *)frame->tf_eip));
628 #endif
629 userret(lp, frame, sticks);
630 userexit(lp);
631 out2: ;
632 #ifdef SMP
633 if (have_mplock)
634 rel_mplock();
635 #endif
636 #ifdef INVARIANTS
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));
640 #endif
643 void
644 kern_trap(struct trapframe *frame)
646 struct globaldata *gd = mycpu;
647 struct thread *td = gd->gd_curthread;
648 struct lwp *lp;
649 struct proc *p;
650 int i = 0, ucode = 0, type, code;
651 #ifdef SMP
652 int have_mplock = 0;
653 #endif
654 #ifdef INVARIANTS
655 int crit_count = td->td_pri & ~TDPRI_MASK;
656 #endif
657 vm_offset_t eva;
659 lp = td->td_lwp;
660 p = td->td_proc;
662 if (frame->tf_trapno == T_PAGEFLT)
663 eva = frame->tf_err;
664 else
665 eva = 0;
667 #ifdef DDB
668 if (db_active) {
669 ++gd->gd_trap_nesting_level;
670 MAKEMPSAFE(have_mplock);
671 trap_fatal(frame, FALSE, eva);
672 --gd->gd_trap_nesting_level;
673 goto out2;
675 #endif
677 ++gd->gd_trap_nesting_level;
679 #ifdef SMP
680 if (trap_mpsafe == 0)
681 MAKEMPSAFE(have_mplock);
682 #endif
684 --gd->gd_trap_nesting_level;
686 type = frame->tf_trapno;
687 code = frame->tf_err;
689 #if 0
690 kernel_trap:
691 #endif
692 /* kernel trap */
694 switch (type) {
695 case T_PAGEFLT: /* page fault */
696 MAKEMPSAFE(have_mplock);
697 trap_pfault(frame, FALSE, eva);
698 goto out2;
700 case T_DNA:
701 #if NNPX > 0
703 * The kernel may be using npx for copying or other
704 * purposes.
706 panic("kernel NPX should not happen");
707 if (npxdna(frame))
708 goto out2;
709 #endif
710 break;
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
722 * them.
724 if (mycpu->gd_intr_nesting_level == 0) {
725 if (td->td_pcb->pcb_onfault) {
726 frame->tf_eip =
727 (register_t)td->td_pcb->pcb_onfault;
728 goto out2;
731 break;
733 case T_TSSFLT:
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
741 * entered.
743 if (frame->tf_eflags & PSL_NT) {
744 frame->tf_eflags &= ~PSL_NT;
745 goto out2;
747 break;
749 case T_TRCTRAP: /* trace trap */
750 #if 0
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
756 * saved the flags.
758 goto out2;
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;
766 goto out2;
768 #endif
769 #if 0
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
783 * processor doesn't
785 load_dr6(rdr6() & 0xfffffff0);
786 goto out2;
788 #endif
790 * Fall through (TRCTRAP kernel mode, kernel address)
792 case T_BPTFLT:
794 * If DDB is enabled, let it handle the debugger trap.
795 * Otherwise, debugger traps "can't happen".
797 #ifdef DDB
798 MAKEMPSAFE(have_mplock);
799 if (kdb_trap (type, 0, frame))
800 goto out2;
801 #endif
802 break;
804 case T_NMI:
805 MAKEMPSAFE(have_mplock);
806 trap_fatal(frame, FALSE, eva);
807 goto out2;
808 case T_SYSCALL80:
810 * Ignore this trap generated from a spurious SIGTRAP.
812 * single stepping in / syscalls leads to spurious / SIGTRAP
813 * so ignore
815 * Haiku (c) 2007 Simon 'corecode' Schubert
817 goto out2;
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);
829 #ifdef DEBUG
830 if (type <= MAX_TRAP_MSG) {
831 uprintf("fatal process exception: %s",
832 trap_msg[type]);
833 if ((type == T_PAGEFLT) || (type == T_PROTFLT))
834 uprintf(", fault VA = 0x%lx", (u_long)eva);
835 uprintf("\n");
837 #endif
839 out2:
841 #ifdef SMP
842 if (have_mplock)
843 rel_mplock();
844 #endif
845 #ifdef INVARIANTS
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));
849 #endif
853 trap_pfault(struct trapframe *frame, int usermode, vm_offset_t eva)
855 vm_offset_t va;
856 struct vmspace *vm = NULL;
857 vm_map_t map = 0;
858 int rv = 0;
859 vm_prot_t ftype;
860 thread_t td = curthread;
861 struct proc *p = td->td_proc;
863 va = trunc_page(eva);
864 if (usermode == FALSE) {
866 * This is a fault on kernel virtual memory.
868 map = &kernel_map;
869 } else {
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.
875 if (p != NULL)
876 vm = p->p_vmspace;
878 if (vm == NULL)
879 goto nogo;
881 map = &vm->vm_map;
884 if (frame->tf_xflags & PGEX_W)
885 ftype = VM_PROT_READ | VM_PROT_WRITE;
886 else
887 ftype = VM_PROT_READ;
889 if (map != &kernel_map) {
891 * Keep swapout from messing with us during this
892 * critical time.
894 PHOLD(p);
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
903 * growth succeeded.
905 if (!grow_stack (p, va)) {
906 rv = KERN_FAILURE;
907 PRELE(p);
908 goto nogo;
911 /* Fault in the user page: */
912 rv = vm_fault(map, va, ftype,
913 (ftype & VM_PROT_WRITE) ? VM_FAULT_DIRTY
914 : VM_FAULT_NORMAL);
916 PRELE(p);
917 } else {
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)
925 return (0);
926 nogo:
927 if (!usermode) {
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;
931 return (0);
933 trap_fatal(frame, usermode, eva);
934 return (-1);
936 return((rv == KERN_PROTECTION_FAILURE) ? SIGBUS : SIGSEGV);
939 static void
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"));
952 #ifdef SMP
953 /* three separate prints in case of a trap on an unmapped page */
954 kprintf("mp_lock = %08x; ", mp_lock);
955 kprintf("cpuid = %d; ", mycpu->gd_cpuid);
956 kprintf("lapic.id = %08x\n", lapic.id);
957 #endif
958 if (type == T_PAGEFLT) {
959 kprintf("fault virtual address = 0x%x\n", eva);
960 kprintf("fault code = %s %s, %s\n",
961 usermode ? "user" : "supervisor",
962 code & PGEX_W ? "write" : "read",
963 code & PGEX_P ? "protection violation" : "page not present");
965 kprintf("instruction pointer = 0x%x:0x%x\n",
966 frame->tf_cs & 0xffff, frame->tf_eip);
967 if (usermode) {
968 ss = frame->tf_ss & 0xffff;
969 esp = frame->tf_esp;
970 } else {
971 ss = GSEL(GDATA_SEL, SEL_KPL);
972 esp = (int)&frame->tf_esp;
974 kprintf("stack pointer = 0x%x:0x%x\n", ss, esp);
975 kprintf("frame pointer = 0x%x:0x%x\n", ss, frame->tf_ebp);
976 kprintf("processor eflags = ");
977 if (frame->tf_eflags & PSL_T)
978 kprintf("trace trap, ");
979 if (frame->tf_eflags & PSL_I)
980 kprintf("interrupt enabled, ");
981 if (frame->tf_eflags & PSL_NT)
982 kprintf("nested task, ");
983 if (frame->tf_eflags & PSL_RF)
984 kprintf("resume, ");
985 #if 0
986 if (frame->tf_eflags & PSL_VM)
987 kprintf("vm86, ");
988 #endif
989 kprintf("IOPL = %d\n", (frame->tf_eflags & PSL_IOPL) >> 12);
990 kprintf("current process = ");
991 if (curproc) {
992 kprintf("%lu (%s)\n",
993 (u_long)curproc->p_pid, curproc->p_comm ?
994 curproc->p_comm : "");
995 } else {
996 kprintf("Idle\n");
998 kprintf("current thread = pri %d ", curthread->td_pri);
999 if (curthread->td_pri >= TDPRI_CRIT)
1000 kprintf("(CRIT)");
1001 kprintf("\n");
1002 #ifdef SMP
1004 * XXX FIXME:
1005 * we probably SHOULD have stopped the other CPUs before now!
1006 * another CPU COULD have been touching cpl at this moment...
1008 kprintf(" <- SMP: XXX");
1009 #endif
1010 kprintf("\n");
1012 #ifdef KDB
1013 if (kdb_trap(&psl))
1014 return;
1015 #endif
1016 #ifdef DDB
1017 if ((debugger_on_panic || db_active) && kdb_trap(type, code, frame))
1018 return;
1019 #endif
1020 kprintf("trap number = %d\n", type);
1021 if (type <= MAX_TRAP_MSG)
1022 panic("%s", trap_msg[type]);
1023 else
1024 panic("unknown/reserved trap");
1028 * Double fault handler. Called when a fault occurs while writing
1029 * a frame for a trap/exception onto the stack. This usually occurs
1030 * when the stack overflows (such is the case with infinite recursion,
1031 * for example).
1033 * XXX Note that the current PTD gets replaced by IdlePTD when the
1034 * task switch occurs. This means that the stack that was active at
1035 * the time of the double fault is not available at <kstack> unless
1036 * the machine was idle when the double fault occurred. The downside
1037 * of this is that "trace <ebp>" in ddb won't work.
1039 void
1040 dblfault_handler(void)
1042 struct mdglobaldata *gd = mdcpu;
1044 kprintf("\nFatal double fault:\n");
1045 kprintf("eip = 0x%x\n", gd->gd_common_tss.tss_eip);
1046 kprintf("esp = 0x%x\n", gd->gd_common_tss.tss_esp);
1047 kprintf("ebp = 0x%x\n", gd->gd_common_tss.tss_ebp);
1048 #ifdef SMP
1049 /* three separate prints in case of a trap on an unmapped page */
1050 kprintf("mp_lock = %08x; ", mp_lock);
1051 kprintf("cpuid = %d; ", mycpu->gd_cpuid);
1052 kprintf("lapic.id = %08x\n", lapic.id);
1053 #endif
1054 panic("double fault");
1058 * Compensate for 386 brain damage (missing URKR).
1059 * This is a little simpler than the pagefault handler in trap() because
1060 * it the page tables have already been faulted in and high addresses
1061 * are thrown out early for other reasons.
1064 trapwrite(unsigned addr)
1066 struct proc *p;
1067 vm_offset_t va;
1068 struct vmspace *vm;
1069 int rv;
1071 va = trunc_page((vm_offset_t)addr);
1073 * XXX - MAX is END. Changed > to >= for temp. fix.
1075 if (va >= VM_MAX_USER_ADDRESS)
1076 return (1);
1078 p = curproc;
1079 vm = p->p_vmspace;
1081 PHOLD(p);
1083 if (!grow_stack (p, va)) {
1084 PRELE(p);
1085 return (1);
1089 * fault the data page
1091 rv = vm_fault(&vm->vm_map, va, VM_PROT_WRITE, VM_FAULT_DIRTY);
1093 PRELE(p);
1095 if (rv != KERN_SUCCESS)
1096 return 1;
1098 return (0);
1102 * syscall2 - MP aware system call request C handler
1104 * A system call is essentially treated as a trap except that the
1105 * MP lock is not held on entry or return. We are responsible for
1106 * obtaining the MP lock if necessary and for handling ASTs
1107 * (e.g. a task switch) prior to return.
1109 * In general, only simple access and manipulation of curproc and
1110 * the current stack is allowed without having to hold MP lock.
1112 * MPSAFE - note that large sections of this routine are run without
1113 * the MP lock.
1116 void
1117 syscall2(struct trapframe *frame)
1119 struct thread *td = curthread;
1120 struct proc *p = td->td_proc;
1121 struct lwp *lp = td->td_lwp;
1122 caddr_t params;
1123 struct sysent *callp;
1124 register_t orig_tf_eflags;
1125 int sticks;
1126 int error;
1127 int narg;
1128 #ifdef INVARIANTS
1129 int crit_count = td->td_pri & ~TDPRI_MASK;
1130 #endif
1131 #ifdef SMP
1132 int have_mplock = 0;
1133 #endif
1134 u_int code;
1135 union sysunion args;
1137 #ifdef SMP
1138 KASSERT(td->td_mpcount == 0, ("badmpcount syscall2 from %p", (void *)frame->tf_eip));
1139 if (syscall_mpsafe == 0)
1140 MAKEMPSAFE(have_mplock);
1141 #endif
1142 userenter(td); /* lazy raise our priority */
1145 * Misc
1147 sticks = (int)td->td_sticks;
1148 orig_tf_eflags = frame->tf_eflags;
1151 * Virtual kernel intercept - if a VM context managed by a virtual
1152 * kernel issues a system call the virtual kernel handles it, not us.
1153 * Restore the virtual kernel context and return from its system
1154 * call. The current frame is copied out to the virtual kernel.
1156 if (p->p_vkernel && p->p_vkernel->vk_current) {
1157 error = vkernel_trap(p, frame);
1158 frame->tf_eax = error;
1159 if (error)
1160 frame->tf_eflags |= PSL_C;
1161 error = EJUSTRETURN;
1162 goto out;
1166 * Get the system call parameters and account for time
1168 lp->lwp_md.md_regs = frame;
1169 params = (caddr_t)frame->tf_esp + sizeof(int);
1170 code = frame->tf_eax;
1172 if (p->p_sysent->sv_prepsyscall) {
1173 (*p->p_sysent->sv_prepsyscall)(
1174 frame, (int *)(&args.nosys.sysmsg + 1),
1175 &code, &params);
1176 } else {
1178 * Need to check if this is a 32 bit or 64 bit syscall.
1179 * fuword is MP aware.
1181 if (code == SYS_syscall) {
1183 * Code is first argument, followed by actual args.
1185 code = fuword(params);
1186 params += sizeof(int);
1187 } else if (code == SYS___syscall) {
1189 * Like syscall, but code is a quad, so as to maintain
1190 * quad alignment for the rest of the arguments.
1192 code = fuword(params);
1193 params += sizeof(quad_t);
1197 code &= p->p_sysent->sv_mask;
1198 if (code >= p->p_sysent->sv_size)
1199 callp = &p->p_sysent->sv_table[0];
1200 else
1201 callp = &p->p_sysent->sv_table[code];
1203 narg = callp->sy_narg & SYF_ARGMASK;
1206 * copyin is MP aware, but the tracing code is not
1208 if (narg && params) {
1209 error = copyin(params, (caddr_t)(&args.nosys.sysmsg + 1),
1210 narg * sizeof(register_t));
1211 if (error) {
1212 #ifdef KTRACE
1213 if (KTRPOINT(td, KTR_SYSCALL)) {
1214 MAKEMPSAFE(have_mplock);
1216 ktrsyscall(p, code, narg,
1217 (void *)(&args.nosys.sysmsg + 1));
1219 #endif
1220 goto bad;
1224 #ifdef KTRACE
1225 if (KTRPOINT(td, KTR_SYSCALL)) {
1226 MAKEMPSAFE(have_mplock);
1227 ktrsyscall(p, code, narg, (void *)(&args.nosys.sysmsg + 1));
1229 #endif
1232 * For traditional syscall code edx is left untouched when 32 bit
1233 * results are returned. Since edx is loaded from fds[1] when the
1234 * system call returns we pre-set it here.
1236 args.sysmsg_fds[0] = 0;
1237 args.sysmsg_fds[1] = frame->tf_edx;
1240 * The syscall might manipulate the trap frame. If it does it
1241 * will probably return EJUSTRETURN.
1243 args.sysmsg_frame = frame;
1245 STOPEVENT(p, S_SCE, narg); /* MP aware */
1247 #ifdef SMP
1249 * Try to run the syscall without the MP lock if the syscall
1250 * is MP safe. We have to obtain the MP lock no matter what if
1251 * we are ktracing
1253 if ((callp->sy_narg & SYF_MPSAFE) == 0)
1254 MAKEMPSAFE(have_mplock);
1255 #endif
1257 error = (*callp->sy_call)(&args);
1259 #if 0
1260 kprintf("system call %d returned %d\n", code, error);
1261 #endif
1263 out:
1265 * MP SAFE (we may or may not have the MP lock at this point)
1267 switch (error) {
1268 case 0:
1270 * Reinitialize proc pointer `p' as it may be different
1271 * if this is a child returning from fork syscall.
1273 p = curproc;
1274 lp = curthread->td_lwp;
1275 frame->tf_eax = args.sysmsg_fds[0];
1276 frame->tf_edx = args.sysmsg_fds[1];
1277 frame->tf_eflags &= ~PSL_C;
1278 break;
1279 case ERESTART:
1281 * Reconstruct pc, assuming lcall $X,y is 7 bytes,
1282 * int 0x80 is 2 bytes. We saved this in tf_err.
1284 frame->tf_eip -= frame->tf_err;
1285 break;
1286 case EJUSTRETURN:
1287 break;
1288 case EASYNC:
1289 panic("Unexpected EASYNC return value (for now)");
1290 default:
1291 bad:
1292 if (p->p_sysent->sv_errsize) {
1293 if (error >= p->p_sysent->sv_errsize)
1294 error = -1; /* XXX */
1295 else
1296 error = p->p_sysent->sv_errtbl[error];
1298 frame->tf_eax = error;
1299 frame->tf_eflags |= PSL_C;
1300 break;
1304 * Traced syscall. trapsignal() is not MP aware.
1306 if ((orig_tf_eflags & PSL_T) /*&& !(orig_tf_eflags & PSL_VM)*/) {
1307 MAKEMPSAFE(have_mplock);
1308 frame->tf_eflags &= ~PSL_T;
1309 trapsignal(lp, SIGTRAP, 0);
1313 * Handle reschedule and other end-of-syscall issues
1315 userret(lp, frame, sticks);
1317 #ifdef KTRACE
1318 if (KTRPOINT(td, KTR_SYSRET)) {
1319 MAKEMPSAFE(have_mplock);
1320 ktrsysret(p, code, error, args.sysmsg_result);
1322 #endif
1325 * This works because errno is findable through the
1326 * register set. If we ever support an emulation where this
1327 * is not the case, this code will need to be revisited.
1329 STOPEVENT(p, S_SCX, code);
1331 userexit(lp);
1332 #ifdef SMP
1334 * Release the MP lock if we had to get it
1336 KASSERT(td->td_mpcount == have_mplock,
1337 ("badmpcount syscall2/end from %p", (void *)frame->tf_eip));
1338 if (have_mplock)
1339 rel_mplock();
1340 #endif
1341 #ifdef INVARIANTS
1342 KASSERT(crit_count == (td->td_pri & ~TDPRI_MASK),
1343 ("syscall: critical section count mismatch! %d/%d",
1344 crit_count / TDPRI_CRIT, td->td_pri / TDPRI_CRIT));
1345 #endif
1349 * Simplified back end of syscall(), used when returning from fork()
1350 * directly into user mode. MP lock is held on entry and should be
1351 * released on return. This code will return back into the fork
1352 * trampoline code which then runs doreti.
1354 void
1355 fork_return(struct lwp *lp, struct trapframe *frame)
1357 struct proc *p = lp->lwp_proc;
1359 frame->tf_eax = 0; /* Child returns zero */
1360 frame->tf_eflags &= ~PSL_C; /* success */
1361 frame->tf_edx = 1;
1364 * Newly forked processes are given a kernel priority. We have to
1365 * adjust the priority to a normal user priority and fake entry
1366 * into the kernel (call userenter()) to install a passive release
1367 * function just in case userret() decides to stop the process. This
1368 * can occur when ^Z races a fork. If we do not install the passive
1369 * release function the current process designation will not be
1370 * released when the thread goes to sleep.
1372 lwkt_setpri_self(TDPRI_USER_NORM);
1373 userenter(lp->lwp_thread);
1374 userret(lp, frame, 0);
1375 #ifdef KTRACE
1376 if (KTRPOINT(lp->lwp_thread, KTR_SYSRET))
1377 ktrsysret(p, SYS_fork, 0, 0);
1378 #endif
1379 p->p_flag |= P_PASSIVE_ACQ;
1380 userexit(lp);
1381 p->p_flag &= ~P_PASSIVE_ACQ;
1382 #ifdef SMP
1383 KKASSERT(lp->lwp_thread->td_mpcount == 1);
1384 rel_mplock();
1385 #endif
1389 * doreti has turned into this. The frame is directly on the stack. We
1390 * pull everything else we need (fpu and tls context) from the current
1391 * thread.
1393 * Note on fpu interactions: In a virtual kernel, the fpu context for
1394 * an emulated user mode process is not shared with the virtual kernel's
1395 * fpu context, so we only have to 'stack' fpu contexts within the virtual
1396 * kernel itself, and not even then since the signal() contexts that we care
1397 * about save and restore the FPU state (I think anyhow).
1399 * vmspace_ctl() returns an error only if it had problems instaling the
1400 * context we supplied or problems copying data to/from our VM space.
1402 void
1403 go_user(struct intrframe *frame)
1405 struct trapframe *tf = (void *)&frame->if_gs;
1406 int r;
1409 * Interrupts may be disabled on entry, make sure all signals
1410 * can be received before beginning our loop.
1412 sigsetmask(0);
1415 * Switch to the current simulated user process, then call
1416 * user_trap() when we break out of it (usually due to a signal).
1418 for (;;) {
1420 * Tell the real kernel whether it is ok to use the FP
1421 * unit or not.
1423 if (mdcpu->gd_npxthread == curthread) {
1424 tf->tf_xflags &= ~PGEX_FPFAULT;
1425 } else {
1426 tf->tf_xflags |= PGEX_FPFAULT;
1430 * We must poll the mailbox prior to making the system call
1431 * to properly interlock new mailbox signals against the
1432 * system call.
1434 * Passing a NULL frame causes the interrupt code to assume
1435 * the supervisor.
1437 if (mdcpu->gd_mailbox)
1438 signalmailbox(NULL);
1441 * Run emulated user process context. This call interlocks
1442 * with new mailbox signals.
1444 * Set PGEX_U unconditionally, indicating a user frame (the
1445 * bit is normally set only by T_PAGEFLT).
1447 r = vmspace_ctl(&curproc->p_vmspace->vm_pmap, VMSPACE_CTL_RUN,
1448 tf, &curthread->td_savevext);
1449 frame->if_xflags |= PGEX_U;
1450 #if 0
1451 kprintf("GO USER %d trap %d EVA %08x EIP %08x ESP %08x XFLAGS %02x/%02x\n",
1452 r, tf->tf_trapno, tf->tf_err, tf->tf_eip, tf->tf_esp,
1453 tf->tf_xflags, frame->if_xflags);
1454 #endif
1455 if (r < 0) {
1456 if (errno == EINTR)
1457 signalmailbox(frame);
1458 else
1459 panic("vmspace_ctl failed");
1460 } else {
1461 signalmailbox(frame);
1462 if (tf->tf_trapno) {
1463 user_trap(tf);
1464 } else if (mycpu->gd_reqflags & RQF_AST_MASK) {
1465 tf->tf_trapno = T_ASTFLT;
1466 user_trap(tf);
1468 tf->tf_trapno = 0;
1474 * If PGEX_FPFAULT is set then set FP_VIRTFP in the PCB to force a T_DNA
1475 * fault (which is then passed back to the virtual kernel) if an attempt is
1476 * made to use the FP unit.
1478 * XXX this is a fairly big hack.
1480 void
1481 set_vkernel_fp(struct trapframe *frame)
1483 struct thread *td = curthread;
1485 if (frame->tf_xflags & PGEX_FPFAULT) {
1486 td->td_pcb->pcb_flags |= FP_VIRTFP;
1487 if (mdcpu->gd_npxthread == td)
1488 npxexit();
1489 } else {
1490 td->td_pcb->pcb_flags &= ~FP_VIRTFP;