Merge branch 'vendor/TCSH'
[dragonfly.git] / sys / platform / pc32 / i386 / trap.c
1 /*-
2  * Copyright (C) 1994, David Greenman
3  * Copyright (c) 1990, 1993
4  *      The Regents of the University of California.  All rights reserved.
5  *
6  * This code is derived from software contributed to Berkeley by
7  * the University of Utah, and William Jolitz.
8  *
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.
24  *
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.
36  *
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  */
40
41 /*
42  * 386 Trap and System call handling
43  */
44
45 #include "use_isa.h"
46 #include "use_npx.h"
47
48 #include "opt_cpu.h"
49 #include "opt_ddb.h"
50 #include "opt_ktrace.h"
51 #include "opt_clock.h"
52 #include "opt_trap.h"
53
54 #include <sys/param.h>
55 #include <sys/systm.h>
56 #include <sys/proc.h>
57 #include <sys/pioctl.h>
58 #include <sys/kernel.h>
59 #include <sys/kerneldump.h>
60 #include <sys/resourcevar.h>
61 #include <sys/signalvar.h>
62 #include <sys/signal2.h>
63 #include <sys/syscall.h>
64 #include <sys/sysctl.h>
65 #include <sys/sysent.h>
66 #include <sys/uio.h>
67 #include <sys/vmmeter.h>
68 #include <sys/malloc.h>
69 #ifdef KTRACE
70 #include <sys/ktrace.h>
71 #endif
72 #include <sys/ktr.h>
73 #include <sys/vkernel.h>
74 #include <sys/sysproto.h>
75 #include <sys/sysunion.h>
76
77 #include <vm/vm.h>
78 #include <vm/vm_param.h>
79 #include <sys/lock.h>
80 #include <vm/pmap.h>
81 #include <vm/vm_kern.h>
82 #include <vm/vm_map.h>
83 #include <vm/vm_page.h>
84 #include <vm/vm_extern.h>
85
86 #include <machine/cpu.h>
87 #include <machine/md_var.h>
88 #include <machine/pcb.h>
89 #include <machine/smp.h>
90 #include <machine/tss.h>
91 #include <machine/specialreg.h>
92 #include <machine/globaldata.h>
93 #include <machine/intr_machdep.h>
94
95 #include <machine_base/isa/isa_intr.h>
96 #include <machine_base/apic/lapic.h>
97
98 #ifdef POWERFAIL_NMI
99 #include <sys/syslog.h>
100 #include <machine/clock.h>
101 #endif
102
103 #include <machine/vm86.h>
104
105 #include <ddb/ddb.h>
106
107 #include <sys/msgport2.h>
108 #include <sys/thread2.h>
109 #include <sys/mplock2.h>
110
111 #define MAKEMPSAFE(have_mplock)                 \
112         if (have_mplock == 0) {                 \
113                 get_mplock();                   \
114                 have_mplock = 1;                \
115         }
116
117 int (*pmath_emulate) (struct trapframe *);
118
119 extern void trap (struct trapframe *frame);
120 extern void syscall2 (struct trapframe *frame);
121
122 static int trap_pfault (struct trapframe *, int, vm_offset_t);
123 static void trap_fatal (struct trapframe *, vm_offset_t);
124 void dblfault_handler (void);
125
126 extern inthand_t IDTVEC(syscall);
127
128 #define MAX_TRAP_MSG            28
129 static char *trap_msg[] = {
130         "",                                     /*  0 unused */
131         "privileged instruction fault",         /*  1 T_PRIVINFLT */
132         "",                                     /*  2 unused */
133         "breakpoint instruction fault",         /*  3 T_BPTFLT */
134         "",                                     /*  4 unused */
135         "",                                     /*  5 unused */
136         "arithmetic trap",                      /*  6 T_ARITHTRAP */
137         "system forced exception",              /*  7 T_ASTFLT */
138         "",                                     /*  8 unused */
139         "general protection fault",             /*  9 T_PROTFLT */
140         "trace trap",                           /* 10 T_TRCTRAP */
141         "",                                     /* 11 unused */
142         "page fault",                           /* 12 T_PAGEFLT */
143         "",                                     /* 13 unused */
144         "alignment fault",                      /* 14 T_ALIGNFLT */
145         "",                                     /* 15 unused */
146         "",                                     /* 16 unused */
147         "",                                     /* 17 unused */
148         "integer divide fault",                 /* 18 T_DIVIDE */
149         "non-maskable interrupt trap",          /* 19 T_NMI */
150         "overflow trap",                        /* 20 T_OFLOW */
151         "FPU bounds check fault",               /* 21 T_BOUND */
152         "FPU device not available",             /* 22 T_DNA */
153         "double fault",                         /* 23 T_DOUBLEFLT */
154         "FPU operand fetch fault",              /* 24 T_FPOPFLT */
155         "invalid TSS fault",                    /* 25 T_TSSFLT */
156         "segment not present fault",            /* 26 T_SEGNPFLT */
157         "stack fault",                          /* 27 T_STKFLT */
158         "machine check trap",                   /* 28 T_MCHK */
159 };
160
161 #if defined(I586_CPU) && !defined(NO_F00F_HACK)
162 extern int has_f00f_bug;
163 #endif
164
165 #ifdef DDB
166 static int ddb_on_nmi = 1;
167 SYSCTL_INT(_machdep, OID_AUTO, ddb_on_nmi, CTLFLAG_RW,
168         &ddb_on_nmi, 0, "Go to DDB on NMI");
169 #endif
170 static int panic_on_nmi = 1;
171 SYSCTL_INT(_machdep, OID_AUTO, panic_on_nmi, CTLFLAG_RW,
172         &panic_on_nmi, 0, "Panic on NMI");
173 static int fast_release;
174 SYSCTL_INT(_machdep, OID_AUTO, fast_release, CTLFLAG_RW,
175         &fast_release, 0, "Passive Release was optimal");
176 static int slow_release;
177 SYSCTL_INT(_machdep, OID_AUTO, slow_release, CTLFLAG_RW,
178         &slow_release, 0, "Passive Release was nonoptimal");
179
180 MALLOC_DEFINE(M_SYSMSG, "sysmsg", "sysmsg structure");
181 extern int max_sysmsg;
182
183 /*
184  * Passively intercepts the thread switch function to increase the thread
185  * priority from a user priority to a kernel priority, reducing
186  * syscall and trap overhead for the case where no switch occurs.
187  *
188  * Synchronizes td_ucred with p_ucred.  This is used by system calls,
189  * signal handling, faults, AST traps, and anything else that enters the
190  * kernel from userland and provides the kernel with a stable read-only
191  * copy of the process ucred.
192  */
193 static __inline void
194 userenter(struct thread *curtd, struct proc *curp)
195 {
196         struct ucred *ocred;
197         struct ucred *ncred;
198
199         curtd->td_release = lwkt_passive_release;
200
201         if (curtd->td_ucred != curp->p_ucred) {
202                 ncred = crhold(curp->p_ucred);
203                 ocred = curtd->td_ucred;
204                 curtd->td_ucred = ncred;
205                 if (ocred)
206                         crfree(ocred);
207         }
208
209 }
210
211 /*
212  * Handle signals, profiling, and other AST's and/or tasks that
213  * must be completed before we can return to or try to return to userland.
214  *
215  * Note that td_sticks is a 64 bit quantity, but there's no point doing 64
216  * arithmatic on the delta calculation so the absolute tick values are
217  * truncated to an integer.
218  */
219 static void
220 userret(struct lwp *lp, struct trapframe *frame, int sticks)
221 {
222         struct proc *p = lp->lwp_proc;
223         void (*hook)(void);
224         int sig;
225
226         if (p->p_userret != NULL) {
227                 hook = p->p_userret;
228                 p->p_userret = NULL;
229                 (*hook)();
230         }
231                 
232         /*
233          * Charge system time if profiling.  Note: times are in microseconds.
234          * This may do a copyout and block, so do it first even though it
235          * means some system time will be charged as user time.
236          */
237         if (p->p_flags & P_PROFIL) {
238                 addupc_task(p, frame->tf_eip, 
239                         (u_int)((int)lp->lwp_thread->td_sticks - sticks));
240         }
241
242 recheck:
243         /*
244          * Specific on-return-to-usermode checks (LWP_MP_WEXIT,
245          * LWP_MP_VNLRU, etc).
246          */
247         if (lp->lwp_mpflags & LWP_MP_URETMASK)
248                 lwpuserret(lp);
249
250         /*
251          * Block here if we are in a stopped state.
252          */
253         if (p->p_stat == SSTOP || dump_stop_usertds) {
254                 lwkt_gettoken(&p->p_token);
255                 tstop();
256                 lwkt_reltoken(&p->p_token);
257                 goto recheck;
258         }
259
260         /*
261          * Post any pending upcalls.  If running a virtual kernel be sure
262          * to restore the virtual kernel's vmspace before posting the upcall.
263          */
264         if (p->p_flags & (P_SIGVTALRM | P_SIGPROF)) {
265                 lwkt_gettoken(&p->p_token);
266                 if (p->p_flags & P_SIGVTALRM) {
267                         p->p_flags &= ~P_SIGVTALRM;
268                         ksignal(p, SIGVTALRM);
269                 }
270                 if (p->p_flags & P_SIGPROF) {
271                         p->p_flags &= ~P_SIGPROF;
272                         ksignal(p, SIGPROF);
273                 }
274                 lwkt_reltoken(&p->p_token);
275                 goto recheck;
276         }
277
278         /*
279          * Post any pending signals.  If running a virtual kernel be sure
280          * to restore the virtual kernel's vmspace before posting the signal.
281          *
282          * WARNING!  postsig() can exit and not return.
283          */
284         if ((sig = CURSIG_TRACE(lp)) != 0) {
285                 lwkt_gettoken(&p->p_token);
286                 postsig(sig);
287                 lwkt_reltoken(&p->p_token);
288                 goto recheck;
289         }
290
291         /*
292          * block here if we are swapped out, but still process signals
293          * (such as SIGKILL).  proc0 (the swapin scheduler) is already
294          * aware of our situation, we do not have to wake it up.
295          */
296         if (p->p_flags & P_SWAPPEDOUT) {
297                 lwkt_gettoken(&p->p_token);
298                 get_mplock();
299                 p->p_flags |= P_SWAPWAIT;
300                 swapin_request();
301                 if (p->p_flags & P_SWAPWAIT)
302                         tsleep(p, PCATCH, "SWOUT", 0);
303                 p->p_flags &= ~P_SWAPWAIT;
304                 rel_mplock();
305                 lwkt_reltoken(&p->p_token);
306                 goto recheck;
307         }
308
309         /*
310          * In a multi-threaded program it is possible for a thread to change
311          * signal state during a system call which temporarily changes the
312          * signal mask.  In this case postsig() might not be run and we
313          * have to restore the mask ourselves.
314          */
315         if (lp->lwp_flags & LWP_OLDMASK) {
316                 lp->lwp_flags &= ~LWP_OLDMASK;
317                 lp->lwp_sigmask = lp->lwp_oldsigmask;
318                 goto recheck;
319         }
320 }
321
322 /*
323  * Cleanup from userenter and any passive release that might have occured.
324  * We must reclaim the current-process designation before we can return
325  * to usermode.  We also handle both LWKT and USER reschedule requests.
326  */
327 static __inline void
328 userexit(struct lwp *lp)
329 {
330         struct thread *td = lp->lwp_thread;
331         /* globaldata_t gd = td->td_gd; */
332
333         /*
334          * Handle stop requests at kernel priority.  Any requests queued
335          * after this loop will generate another AST.
336          */
337         while (lp->lwp_proc->p_stat == SSTOP) {
338                 lwkt_gettoken(&lp->lwp_proc->p_token);
339                 tstop();
340                 lwkt_reltoken(&lp->lwp_proc->p_token);
341         }
342
343         /*
344          * Become the current user scheduled process if we aren't already,
345          * and deal with reschedule requests and other factors.
346          */
347         lp->lwp_proc->p_usched->acquire_curproc(lp);
348         /* WARNING: we may have migrated cpu's */
349         /* gd = td->td_gd; */
350
351         /*
352          * Reduce our priority in preparation for a return to userland.  If
353          * our passive release function was still in place, our priority was
354          * never raised and does not need to be reduced.
355          */
356         lwkt_passive_recover(td);
357 }
358
359 #if !defined(KTR_KERNENTRY)
360 #define KTR_KERNENTRY   KTR_ALL
361 #endif
362 KTR_INFO_MASTER(kernentry);
363 KTR_INFO(KTR_KERNENTRY, kernentry, trap, 0,
364          "TRAP(pid %d, tid %d, trapno %d, eva %lu)",
365          pid_t pid, lwpid_t tid,  register_t trapno, vm_offset_t eva);
366 KTR_INFO(KTR_KERNENTRY, kernentry, trap_ret, 0, "TRAP_RET(pid %d, tid %d)",
367          pid_t pid, lwpid_t tid);
368 KTR_INFO(KTR_KERNENTRY, kernentry, syscall, 0, "SYSC(pid %d, tid %d, nr %d)",
369          pid_t pid, lwpid_t tid,  register_t trapno);
370 KTR_INFO(KTR_KERNENTRY, kernentry, syscall_ret, 0, "SYSRET(pid %d, tid %d, err %d)",
371          pid_t pid, lwpid_t tid,  int err);
372 KTR_INFO(KTR_KERNENTRY, kernentry, fork_ret, 0, "FORKRET(pid %d, tid %d)",
373          pid_t pid, lwpid_t tid);
374
375 /*
376  * Exception, fault, and trap interface to the kernel.
377  * This common code is called from assembly language IDT gate entry
378  * routines that prepare a suitable stack frame, and restore this
379  * frame after the exception has been processed.
380  *
381  * This function is also called from doreti in an interlock to handle ASTs.
382  * For example:  hardwareint->INTROUTINE->(set ast)->doreti->trap
383  *
384  * NOTE!  We have to retrieve the fault address prior to obtaining the
385  * MP lock because get_mplock() may switch out.  YYY cr2 really ought
386  * to be retrieved by the assembly code, not here.
387  *
388  * XXX gd_trap_nesting_level currently prevents lwkt_switch() from panicing
389  * if an attempt is made to switch from a fast interrupt or IPI.  This is
390  * necessary to properly take fatal kernel traps on SMP machines if 
391  * get_mplock() has to block.
392  */
393
394 void
395 trap(struct trapframe *frame)
396 {
397         struct globaldata *gd = mycpu;
398         struct thread *td = gd->gd_curthread;
399         struct lwp *lp = td->td_lwp;
400         struct proc *p;
401         int sticks = 0;
402         int i = 0, ucode = 0, type, code;
403         int have_mplock = 0;
404 #ifdef INVARIANTS
405         int crit_count = td->td_critcount;
406         lwkt_tokref_t curstop = td->td_toks_stop;
407 #endif
408         vm_offset_t eva;
409
410         p = td->td_proc;
411 #ifdef DDB
412         /*
413          * We need to allow T_DNA faults when the debugger is active since
414          * some dumping paths do large bcopy() which use the floating
415          * point registers for faster copying.
416          */
417         if (db_active && frame->tf_trapno != T_DNA) {
418                 eva = (frame->tf_trapno == T_PAGEFLT ? rcr2() : 0);
419                 ++gd->gd_trap_nesting_level;
420                 MAKEMPSAFE(have_mplock);
421                 trap_fatal(frame, eva);
422                 --gd->gd_trap_nesting_level;
423                 goto out2;
424         }
425 #endif
426
427         eva = 0;
428         ++gd->gd_trap_nesting_level;
429         if (frame->tf_trapno == T_PAGEFLT) {
430                 /*
431                  * For some Cyrix CPUs, %cr2 is clobbered by interrupts.
432                  * This problem is worked around by using an interrupt
433                  * gate for the pagefault handler.  We are finally ready
434                  * to read %cr2 and then must reenable interrupts.
435                  *
436                  * XXX this should be in the switch statement, but the
437                  * NO_FOOF_HACK and VM86 goto and ifdefs obfuscate the
438                  * flow of control too much for this to be obviously
439                  * correct.
440                  */
441                 eva = rcr2();
442                 cpu_enable_intr();
443         }
444
445         --gd->gd_trap_nesting_level;
446
447         if (!(frame->tf_eflags & PSL_I)) {
448                 /*
449                  * Buggy application or kernel code has disabled interrupts
450                  * and then trapped.  Enabling interrupts now is wrong, but
451                  * it is better than running with interrupts disabled until
452                  * they are accidentally enabled later.
453                  */
454                 type = frame->tf_trapno;
455                 if (ISPL(frame->tf_cs)==SEL_UPL || (frame->tf_eflags & PSL_VM)) {
456                         MAKEMPSAFE(have_mplock);
457                         kprintf(
458                             "pid %ld (%s): trap %d with interrupts disabled\n",
459                             (long)curproc->p_pid, curproc->p_comm, type);
460                 } else if (type != T_BPTFLT && type != T_TRCTRAP) {
461                         /*
462                          * XXX not quite right, since this may be for a
463                          * multiple fault in user mode.
464                          */
465                         MAKEMPSAFE(have_mplock);
466                         kprintf("kernel trap %d with interrupts disabled\n",
467                             type);
468                 }
469                 cpu_enable_intr();
470         }
471
472 #if defined(I586_CPU) && !defined(NO_F00F_HACK)
473 restart:
474 #endif
475         type = frame->tf_trapno;
476         code = frame->tf_err;
477
478         if (in_vm86call) {
479                 if (frame->tf_eflags & PSL_VM &&
480                     (type == T_PROTFLT || type == T_STKFLT)) {
481                         KKASSERT(get_mplock_count(curthread) > 0);
482                         i = vm86_emulate((struct vm86frame *)frame);
483                         KKASSERT(get_mplock_count(curthread) > 0);
484                         if (i != 0) {
485                                 /*
486                                  * returns to original process
487                                  */
488                                 vm86_trap((struct vm86frame *)frame,
489                                           have_mplock);
490                                 KKASSERT(0); /* NOT REACHED */
491                         }
492                         goto out2;
493                 }
494                 switch (type) {
495                         /*
496                          * these traps want either a process context, or
497                          * assume a normal userspace trap.
498                          */
499                 case T_PROTFLT:
500                 case T_SEGNPFLT:
501                         trap_fatal(frame, eva);
502                         goto out2;
503                 case T_TRCTRAP:
504                         type = T_BPTFLT;        /* kernel breakpoint */
505                         /* FALL THROUGH */
506                 }
507                 goto kernel_trap;       /* normal kernel trap handling */
508         }
509
510         if ((ISPL(frame->tf_cs) == SEL_UPL) || (frame->tf_eflags & PSL_VM)) {
511                 /* user trap */
512
513                 KTR_LOG(kernentry_trap, p->p_pid, lp->lwp_tid,
514                         frame->tf_trapno, eva);
515
516                 userenter(td, p);
517
518                 sticks = (int)td->td_sticks;
519                 lp->lwp_md.md_regs = frame;
520
521                 switch (type) {
522                 case T_PRIVINFLT:       /* privileged instruction fault */
523                         i = SIGILL;
524                         ucode = ILL_PRVOPC;
525                         break;
526
527                 case T_BPTFLT:          /* bpt instruction fault */
528                 case T_TRCTRAP:         /* trace trap */
529                         frame->tf_eflags &= ~PSL_T;
530                         i = SIGTRAP;
531                         ucode = (type == T_TRCTRAP ? TRAP_TRACE : TRAP_BRKPT);
532                         break;
533
534                 case T_ARITHTRAP:       /* arithmetic trap */
535                         ucode = code;
536                         i = SIGFPE;
537                         break;
538
539                 case T_ASTFLT:          /* Allow process switch */
540                         mycpu->gd_cnt.v_soft++;
541                         if (mycpu->gd_reqflags & RQF_AST_OWEUPC) {
542                                 atomic_clear_int(&mycpu->gd_reqflags,
543                                                  RQF_AST_OWEUPC);
544                                 addupc_task(p, p->p_prof.pr_addr,
545                                             p->p_prof.pr_ticks);
546                         }
547                         goto out;
548
549                         /*
550                          * The following two traps can happen in
551                          * vm86 mode, and, if so, we want to handle
552                          * them specially.
553                          */
554                 case T_PROTFLT:         /* general protection fault */
555                 case T_STKFLT:          /* stack fault */
556                         if (frame->tf_eflags & PSL_VM) {
557                                 i = vm86_emulate((struct vm86frame *)frame);
558                                 if (i == 0)
559                                         goto out;
560                                 break;
561                         }
562                         i = SIGBUS;
563                         ucode = (type == T_PROTFLT) ? BUS_OBJERR : BUS_ADRERR;
564                         break;
565                 case T_SEGNPFLT:        /* segment not present fault */
566                         i = SIGBUS;
567                         ucode = BUS_ADRERR;
568                         break;
569                 case T_TSSFLT:          /* invalid TSS fault */
570                 case T_DOUBLEFLT:       /* double fault */
571                 default:
572                         i = SIGBUS;
573                         ucode = BUS_OBJERR;
574                         break;
575
576                 case T_PAGEFLT:         /* page fault */
577                         i = trap_pfault(frame, TRUE, eva);
578                         if (i == -1)
579                                 goto out;
580 #if defined(I586_CPU) && !defined(NO_F00F_HACK)
581                         if (i == -2)
582                                 goto restart;
583 #endif
584                         if (i == 0)
585                                 goto out;
586
587                         if (i == SIGSEGV)
588                                 ucode = SEGV_MAPERR;
589                         else {
590                                 i = SIGSEGV;
591                                 ucode = SEGV_ACCERR;
592                         }
593                         break;
594
595                 case T_DIVIDE:          /* integer divide fault */
596                         ucode = FPE_INTDIV;
597                         i = SIGFPE;
598                         break;
599
600 #if NISA > 0
601                 case T_NMI:
602                         MAKEMPSAFE(have_mplock);
603 #ifdef POWERFAIL_NMI
604                         goto handle_powerfail;
605 #else /* !POWERFAIL_NMI */
606                         /* machine/parity/power fail/"kitchen sink" faults */
607                         if (isa_nmi(code) == 0) {
608 #ifdef DDB
609                                 /*
610                                  * NMI can be hooked up to a pushbutton
611                                  * for debugging.
612                                  */
613                                 if (ddb_on_nmi) {
614                                         kprintf ("NMI ... going to debugger\n");
615                                         kdb_trap (type, 0, frame);
616                                 }
617 #endif /* DDB */
618                                 goto out2;
619                         } else if (panic_on_nmi)
620                                 panic("NMI indicates hardware failure");
621                         break;
622 #endif /* POWERFAIL_NMI */
623 #endif /* NISA > 0 */
624
625                 case T_OFLOW:           /* integer overflow fault */
626                         ucode = FPE_INTOVF;
627                         i = SIGFPE;
628                         break;
629
630                 case T_BOUND:           /* bounds check fault */
631                         ucode = FPE_FLTSUB;
632                         i = SIGFPE;
633                         break;
634
635                 case T_DNA:
636                         /*
637                          * Virtual kernel intercept - pass the DNA exception
638                          * to the virtual kernel if it asked to handle it.
639                          * This occurs when the virtual kernel is holding
640                          * onto the FP context for a different emulated
641                          * process then the one currently running.
642                          *
643                          * We must still call npxdna() since we may have
644                          * saved FP state that the virtual kernel needs
645                          * to hand over to a different emulated process.
646                          */
647                         if (lp->lwp_vkernel && lp->lwp_vkernel->ve &&
648                             (td->td_pcb->pcb_flags & FP_VIRTFP)
649                         ) {
650                                 npxdna();
651                                 break;
652                         }
653
654 #if NNPX > 0
655                         /* 
656                          * The kernel may have switched out the FP unit's
657                          * state, causing the user process to take a fault
658                          * when it tries to use the FP unit.  Restore the
659                          * state here
660                          */
661                         if (npxdna())
662                                 goto out;
663 #endif
664                         if (!pmath_emulate) {
665                                 i = SIGFPE;
666                                 ucode = FPE_FPU_NP_TRAP;
667                                 break;
668                         }
669                         i = (*pmath_emulate)(frame);
670                         if (i == 0) {
671                                 if (!(frame->tf_eflags & PSL_T))
672                                         goto out2;
673                                 frame->tf_eflags &= ~PSL_T;
674                                 i = SIGTRAP;
675                         }
676                         /* else ucode = emulator_only_knows() XXX */
677                         break;
678
679                 case T_FPOPFLT:         /* FPU operand fetch fault */
680                         ucode = ILL_COPROC;
681                         i = SIGILL;
682                         break;
683
684                 case T_XMMFLT:          /* SIMD floating-point exception */
685                         ucode = 0; /* XXX */
686                         i = SIGFPE;
687                         break;
688                 }
689         } else {
690 kernel_trap:
691                 /* kernel trap */
692
693                 switch (type) {
694                 case T_PAGEFLT:                 /* page fault */
695                         trap_pfault(frame, FALSE, eva);
696                         goto out2;
697
698                 case T_DNA:
699 #if NNPX > 0
700                         /*
701                          * The kernel may be using npx for copying or other
702                          * purposes.
703                          */
704                         if (npxdna())
705                                 goto out2;
706 #endif
707                         break;
708
709                 case T_PROTFLT:         /* general protection fault */
710                 case T_SEGNPFLT:        /* segment not present fault */
711                         /*
712                          * Invalid segment selectors and out of bounds
713                          * %eip's and %esp's can be set up in user mode.
714                          * This causes a fault in kernel mode when the
715                          * kernel tries to return to user mode.  We want
716                          * to get this fault so that we can fix the
717                          * problem here and not have to check all the
718                          * selectors and pointers when the user changes
719                          * them.
720                          */
721 #define MAYBE_DORETI_FAULT(where, whereto)                              \
722         do {                                                            \
723                 if (frame->tf_eip == (int)where) {                      \
724                         frame->tf_eip = (int)whereto;                   \
725                         goto out2;                                      \
726                 }                                                       \
727         } while (0)
728                         if (mycpu->gd_intr_nesting_level == 0) {
729                                 /*
730                                  * Invalid %fs's and %gs's can be created using
731                                  * procfs or PT_SETREGS or by invalidating the
732                                  * underlying LDT entry.  This causes a fault
733                                  * in kernel mode when the kernel attempts to
734                                  * switch contexts.  Lose the bad context
735                                  * (XXX) so that we can continue, and generate
736                                  * a signal.
737                                  */
738                                 MAYBE_DORETI_FAULT(doreti_iret,
739                                                    doreti_iret_fault);
740                                 MAYBE_DORETI_FAULT(doreti_popl_ds,
741                                                    doreti_popl_ds_fault);
742                                 MAYBE_DORETI_FAULT(doreti_popl_es,
743                                                    doreti_popl_es_fault);
744                                 MAYBE_DORETI_FAULT(doreti_popl_fs,
745                                                    doreti_popl_fs_fault);
746                                 MAYBE_DORETI_FAULT(doreti_popl_gs,
747                                                    doreti_popl_gs_fault);
748
749                                 /*
750                                  * NOTE: cpu doesn't push esp on kernel trap
751                                  */
752                                 if (td->td_pcb->pcb_onfault &&
753                                     td->td_pcb->pcb_onfault_sp ==
754                                     (int)&frame->tf_esp) {
755                                         frame->tf_eip = 
756                                             (register_t)td->td_pcb->pcb_onfault;
757                                         goto out2;
758                                 }
759                         }
760                         break;
761
762                 case T_TSSFLT:
763                         /*
764                          * PSL_NT can be set in user mode and isn't cleared
765                          * automatically when the kernel is entered.  This
766                          * causes a TSS fault when the kernel attempts to
767                          * `iret' because the TSS link is uninitialized.  We
768                          * want to get this fault so that we can fix the
769                          * problem here and not every time the kernel is
770                          * entered.
771                          */
772                         if (frame->tf_eflags & PSL_NT) {
773                                 frame->tf_eflags &= ~PSL_NT;
774                                 goto out2;
775                         }
776                         break;
777
778                 case T_TRCTRAP:  /* trace trap */
779                         if (frame->tf_eip == (int)IDTVEC(syscall)) {
780                                 /*
781                                  * We've just entered system mode via the
782                                  * syscall lcall.  Continue single stepping
783                                  * silently until the syscall handler has
784                                  * saved the flags.
785                                  */
786                                 goto out2;
787                         }
788                         if (frame->tf_eip == (int)IDTVEC(syscall) + 1) {
789                                 /*
790                                  * The syscall handler has now saved the
791                                  * flags.  Stop single stepping it.
792                                  */
793                                 frame->tf_eflags &= ~PSL_T;
794                                 goto out2;
795                         }
796                         /*
797                          * Ignore debug register trace traps due to
798                          * accesses in the user's address space, which
799                          * can happen under several conditions such as
800                          * if a user sets a watchpoint on a buffer and
801                          * then passes that buffer to a system call.
802                          * We still want to get TRCTRAPS for addresses
803                          * in kernel space because that is useful when
804                          * debugging the kernel.
805                          */
806                         if (user_dbreg_trap()) {
807                                 /*
808                                  * Reset breakpoint bits because the
809                                  * processor doesn't
810                                  */
811                                 load_dr6(rdr6() & 0xfffffff0);
812                                 goto out2;
813                         }
814                         /*
815                          * FALLTHROUGH (TRCTRAP kernel mode, kernel address)
816                          */
817                 case T_BPTFLT:
818                         /*
819                          * If DDB is enabled, let it handle the debugger trap.
820                          * Otherwise, debugger traps "can't happen".
821                          */
822                         ucode = TRAP_BRKPT;
823 #ifdef DDB
824                         MAKEMPSAFE(have_mplock);
825                         if (kdb_trap (type, 0, frame))
826                                 goto out2;
827 #endif
828                         break;
829
830 #if NISA > 0
831                 case T_NMI:
832                         MAKEMPSAFE(have_mplock);
833 #ifdef POWERFAIL_NMI
834 #ifndef TIMER_FREQ
835 #  define TIMER_FREQ 1193182
836 #endif
837         handle_powerfail:
838                 {
839                   static unsigned lastalert = 0;
840
841                   if(time_second - lastalert > 10)
842                     {
843                       log(LOG_WARNING, "NMI: power fail\n");
844                       sysbeep(TIMER_FREQ/880, hz);
845                       lastalert = time_second;
846                     }
847                     /* YYY mp count */
848                   goto out2;
849                 }
850 #else /* !POWERFAIL_NMI */
851                         /* machine/parity/power fail/"kitchen sink" faults */
852                         if (isa_nmi(code) == 0) {
853 #ifdef DDB
854                                 /*
855                                  * NMI can be hooked up to a pushbutton
856                                  * for debugging.
857                                  */
858                                 if (ddb_on_nmi) {
859                                         kprintf ("NMI ... going to debugger\n");
860                                         kdb_trap (type, 0, frame);
861                                 }
862 #endif /* DDB */
863                                 goto out2;
864                         } else if (panic_on_nmi == 0)
865                                 goto out2;
866                         /* FALL THROUGH */
867 #endif /* POWERFAIL_NMI */
868 #endif /* NISA > 0 */
869                 }
870
871                 MAKEMPSAFE(have_mplock);
872                 trap_fatal(frame, eva);
873                 goto out2;
874         }
875
876         /*
877          * Virtual kernel intercept - if the fault is directly related to a
878          * VM context managed by a virtual kernel then let the virtual kernel
879          * handle it.
880          */
881         if (lp->lwp_vkernel && lp->lwp_vkernel->ve) {
882                 vkernel_trap(lp, frame);
883                 goto out;
884         }
885
886         /* Translate fault for emulators (e.g. Linux) */
887         if (*p->p_sysent->sv_transtrap)
888                 i = (*p->p_sysent->sv_transtrap)(i, type);
889
890         MAKEMPSAFE(have_mplock);
891         trapsignal(lp, i, ucode);
892
893 #ifdef DEBUG
894         if (type <= MAX_TRAP_MSG) {
895                 uprintf("fatal process exception: %s",
896                         trap_msg[type]);
897                 if ((type == T_PAGEFLT) || (type == T_PROTFLT))
898                         uprintf(", fault VA = 0x%lx", (u_long)eva);
899                 uprintf("\n");
900         }
901 #endif
902
903 out:
904         userret(lp, frame, sticks);
905         userexit(lp);
906 out2:   ;
907         if (have_mplock)
908                 rel_mplock();
909         if (p != NULL && lp != NULL)
910                 KTR_LOG(kernentry_trap_ret, p->p_pid, lp->lwp_tid);
911 #ifdef INVARIANTS
912         KASSERT(crit_count == td->td_critcount,
913                 ("trap: critical section count mismatch! %d/%d",
914                 crit_count, td->td_pri));
915         KASSERT(curstop == td->td_toks_stop,
916                 ("trap: extra tokens held after trap! %zd/%zd",
917                 curstop - &td->td_toks_base,
918                 td->td_toks_stop - &td->td_toks_base));
919 #endif
920 }
921
922 int
923 trap_pfault(struct trapframe *frame, int usermode, vm_offset_t eva)
924 {
925         vm_offset_t va;
926         struct vmspace *vm = NULL;
927         vm_map_t map = 0;
928         int rv = 0;
929         int fault_flags;
930         vm_prot_t ftype;
931         thread_t td = curthread;
932         struct lwp *lp = td->td_lwp;
933
934         va = trunc_page(eva);
935         if (va >= KERNBASE) {
936                 /*
937                  * Don't allow user-mode faults in kernel address space.
938                  * An exception:  if the faulting address is the invalid
939                  * instruction entry in the IDT, then the Intel Pentium
940                  * F00F bug workaround was triggered, and we need to
941                  * treat it is as an illegal instruction, and not a page
942                  * fault.
943                  */
944 #if defined(I586_CPU) && !defined(NO_F00F_HACK)
945                 if ((eva == (unsigned int)&idt[6]) && has_f00f_bug) {
946                         frame->tf_trapno = T_PRIVINFLT;
947                         return -2;
948                 }
949 #endif
950                 if (usermode)
951                         goto nogo;
952
953                 map = &kernel_map;
954         } else {
955                 /*
956                  * This is a fault on non-kernel virtual memory.
957                  * vm is initialized above to NULL. If curproc is NULL
958                  * or curproc->p_vmspace is NULL the fault is fatal.
959                  */
960                 if (lp != NULL)
961                         vm = lp->lwp_vmspace;
962
963                 if (vm == NULL)
964                         goto nogo;
965
966                 map = &vm->vm_map;
967         }
968
969         if (frame->tf_err & PGEX_W)
970                 ftype = VM_PROT_WRITE;
971         else
972                 ftype = VM_PROT_READ;
973
974         if (map != &kernel_map) {
975                 /*
976                  * Keep swapout from messing with us during this
977                  *      critical time.
978                  */
979                 PHOLD(lp->lwp_proc);
980
981                 /*
982                  * Issue fault
983                  */
984                 fault_flags = 0;
985                 if (usermode)
986                         fault_flags |= VM_FAULT_BURST;
987                 if (ftype & VM_PROT_WRITE)
988                         fault_flags |= VM_FAULT_DIRTY;
989                 else
990                         fault_flags |= VM_FAULT_NORMAL;
991                 rv = vm_fault(map, va, ftype, fault_flags);
992                 PRELE(lp->lwp_proc);
993         } else {
994                 /*
995                  * Don't have to worry about process locking or stacks in the
996                  * kernel.
997                  */
998                 rv = vm_fault(map, va, ftype, VM_FAULT_NORMAL);
999         }
1000         if (rv == KERN_SUCCESS)
1001                 return (0);
1002 nogo:
1003         if (!usermode) {
1004                 /*
1005                  * NOTE: cpu doesn't push esp on kernel trap
1006                  */
1007                 if (td->td_gd->gd_intr_nesting_level == 0 &&
1008                     td->td_pcb->pcb_onfault &&
1009                     td->td_pcb->pcb_onfault_sp == (int)&frame->tf_esp) {
1010                         frame->tf_eip = (register_t)td->td_pcb->pcb_onfault;
1011                         return (0);
1012                 }
1013                 if (td->td_gd->gd_intr_nesting_level == 0 &&
1014                     td->td_pcb->pcb_onfault) {
1015                         kprintf("ESP mismatch %p %08x\n",
1016                                 &frame->tf_esp, td->td_pcb->pcb_onfault_sp);
1017                 }
1018                 trap_fatal(frame, eva);
1019                 return (-1);
1020         }
1021
1022         /* kludge to pass faulting virtual address to sendsig */
1023         frame->tf_xflags = frame->tf_err;
1024         frame->tf_err = eva;
1025
1026         return((rv == KERN_PROTECTION_FAILURE) ? SIGBUS : SIGSEGV);
1027 }
1028
1029 static void
1030 trap_fatal(struct trapframe *frame, vm_offset_t eva)
1031 {
1032         int code, type, ss, esp;
1033         struct soft_segment_descriptor softseg;
1034
1035         code = frame->tf_err;
1036         type = frame->tf_trapno;
1037         sdtossd(&gdt[mycpu->gd_cpuid * NGDT + IDXSEL(frame->tf_cs & 0xffff)].sd, &softseg);
1038
1039         if (type <= MAX_TRAP_MSG)
1040                 kprintf("\n\nFatal trap %d: %s while in %s mode\n",
1041                         type, trap_msg[type],
1042                         frame->tf_eflags & PSL_VM ? "vm86" :
1043                         ISPL(frame->tf_cs) == SEL_UPL ? "user" : "kernel");
1044         /* three separate prints in case of a trap on an unmapped page */
1045         kprintf("cpuid = %d; ", mycpu->gd_cpuid);
1046         kprintf("lapic.id = %08x\n", lapic->id);
1047         if (type == T_PAGEFLT) {
1048                 kprintf("fault virtual address  = %p\n", (void *)eva);
1049                 kprintf("fault code             = %s %s, %s\n",
1050                         code & PGEX_U ? "user" : "supervisor",
1051                         code & PGEX_W ? "write" : "read",
1052                         code & PGEX_P ? "protection violation" : "page not present");
1053         }
1054         kprintf("instruction pointer    = 0x%x:0x%x\n",
1055                frame->tf_cs & 0xffff, frame->tf_eip);
1056         if ((ISPL(frame->tf_cs) == SEL_UPL) || (frame->tf_eflags & PSL_VM)) {
1057                 ss = frame->tf_ss & 0xffff;
1058                 esp = frame->tf_esp;
1059         } else {
1060                 ss = GSEL(GDATA_SEL, SEL_KPL);
1061                 esp = (int)&frame->tf_esp;
1062         }
1063         kprintf("stack pointer          = 0x%x:0x%x\n", ss, esp);
1064         kprintf("frame pointer          = 0x%x:0x%x\n", ss, frame->tf_ebp);
1065         kprintf("code segment           = base 0x%x, limit 0x%x, type 0x%x\n",
1066                softseg.ssd_base, softseg.ssd_limit, softseg.ssd_type);
1067         kprintf("                       = DPL %d, pres %d, def32 %d, gran %d\n",
1068                softseg.ssd_dpl, softseg.ssd_p, softseg.ssd_def32,
1069                softseg.ssd_gran);
1070         kprintf("processor eflags       = ");
1071         if (frame->tf_eflags & PSL_T)
1072                 kprintf("trace trap, ");
1073         if (frame->tf_eflags & PSL_I)
1074                 kprintf("interrupt enabled, ");
1075         if (frame->tf_eflags & PSL_NT)
1076                 kprintf("nested task, ");
1077         if (frame->tf_eflags & PSL_RF)
1078                 kprintf("resume, ");
1079         if (frame->tf_eflags & PSL_VM)
1080                 kprintf("vm86, ");
1081         kprintf("IOPL = %d\n", (frame->tf_eflags & PSL_IOPL) >> 12);
1082         kprintf("current process                = ");
1083         if (curproc) {
1084                 kprintf("%lu (%s)\n",
1085                     (u_long)curproc->p_pid, curproc->p_comm ?
1086                     curproc->p_comm : "");
1087         } else {
1088                 kprintf("Idle\n");
1089         }
1090         kprintf("current thread          = pri %d ", curthread->td_pri);
1091         if (curthread->td_critcount)
1092                 kprintf("(CRIT)");
1093         kprintf("\n");
1094 /**
1095  *  XXX FIXME:
1096  *      we probably SHOULD have stopped the other CPUs before now!
1097  *      another CPU COULD have been touching cpl at this moment...
1098  */
1099         kprintf(" <- SMP: XXX");
1100         kprintf("\n");
1101
1102 #ifdef KDB
1103         if (kdb_trap(&psl))
1104                 return;
1105 #endif
1106 #ifdef DDB
1107         if ((debugger_on_panic || db_active) && kdb_trap(type, code, frame))
1108                 return;
1109 #endif
1110         kprintf("trap number            = %d\n", type);
1111         if (type <= MAX_TRAP_MSG)
1112                 panic("%s", trap_msg[type]);
1113         else
1114                 panic("unknown/reserved trap");
1115 }
1116
1117 /*
1118  * Double fault handler. Called when a fault occurs while writing
1119  * a frame for a trap/exception onto the stack. This usually occurs
1120  * when the stack overflows (such is the case with infinite recursion,
1121  * for example).
1122  *
1123  * XXX Note that the current PTD gets replaced by IdlePTD when the
1124  * task switch occurs. This means that the stack that was active at
1125  * the time of the double fault is not available at <kstack> unless
1126  * the machine was idle when the double fault occurred. The downside
1127  * of this is that "trace <ebp>" in ddb won't work.
1128  */
1129 static __inline
1130 int
1131 in_kstack_guard(register_t rptr)
1132 {
1133         thread_t td = curthread;
1134
1135         if ((char *)rptr >= td->td_kstack &&
1136             (char *)rptr < td->td_kstack + PAGE_SIZE) {
1137                 return 1;
1138         }
1139         return 0;
1140 }
1141
1142 void
1143 dblfault_handler(void)
1144 {
1145         struct mdglobaldata *gd = mdcpu;
1146
1147         if (in_kstack_guard(gd->gd_common_tss.tss_esp) ||
1148             in_kstack_guard(gd->gd_common_tss.tss_ebp)) {
1149                 kprintf("DOUBLE FAULT - KERNEL STACK GUARD HIT!\n");
1150         } else {
1151                 kprintf("DOUBLE FAULT:\n");
1152         }
1153         kprintf("eip = 0x%x\n", gd->gd_common_tss.tss_eip);
1154         kprintf("esp = 0x%x\n", gd->gd_common_tss.tss_esp);
1155         kprintf("ebp = 0x%x\n", gd->gd_common_tss.tss_ebp);
1156         /* three separate prints in case of a trap on an unmapped page */
1157         kprintf("cpuid = %d; ", gd->mi.gd_cpuid);
1158         kprintf("lapic.id = %08x\n", lapic->id);
1159         panic("double fault");
1160 }
1161
1162 /*
1163  * syscall2 -   MP aware system call request C handler
1164  *
1165  * A system call is essentially treated as a trap.  The MP lock is not
1166  * held on entry or return.  We are responsible for handling ASTs
1167  * (e.g. a task switch) prior to return.
1168  *
1169  * MPSAFE
1170  */
1171 void
1172 syscall2(struct trapframe *frame)
1173 {
1174         struct thread *td = curthread;
1175         struct proc *p = td->td_proc;
1176         struct lwp *lp = td->td_lwp;
1177         caddr_t params;
1178         struct sysent *callp;
1179         register_t orig_tf_eflags;
1180         int sticks;
1181         int error;
1182         int narg;
1183 #ifdef INVARIANTS
1184         int crit_count = td->td_critcount;
1185 #endif
1186         int have_mplock = 0;
1187         u_int code;
1188         union sysunion args;
1189
1190 #ifdef DIAGNOSTIC
1191         if (ISPL(frame->tf_cs) != SEL_UPL) {
1192                 get_mplock();
1193                 panic("syscall");
1194                 /* NOT REACHED */
1195         }
1196 #endif
1197
1198         KTR_LOG(kernentry_syscall, p->p_pid, lp->lwp_tid,
1199                 frame->tf_eax);
1200
1201         userenter(td, p);       /* lazy raise our priority */
1202
1203         /*
1204          * Misc
1205          */
1206         sticks = (int)td->td_sticks;
1207         orig_tf_eflags = frame->tf_eflags;
1208
1209         /*
1210          * Virtual kernel intercept - if a VM context managed by a virtual
1211          * kernel issues a system call the virtual kernel handles it, not us.
1212          * Restore the virtual kernel context and return from its system
1213          * call.  The current frame is copied out to the virtual kernel.
1214          */
1215         if (lp->lwp_vkernel && lp->lwp_vkernel->ve) {
1216                 vkernel_trap(lp, frame);
1217                 error = EJUSTRETURN;
1218                 callp = NULL;
1219                 goto out;
1220         }
1221
1222         /*
1223          * Get the system call parameters and account for time
1224          */
1225         lp->lwp_md.md_regs = frame;
1226         params = (caddr_t)frame->tf_esp + sizeof(int);
1227         code = frame->tf_eax;
1228
1229         if (p->p_sysent->sv_prepsyscall) {
1230                 (*p->p_sysent->sv_prepsyscall)(
1231                         frame, (int *)(&args.nosys.sysmsg + 1),
1232                         &code, &params);
1233         } else {
1234                 /*
1235                  * Need to check if this is a 32 bit or 64 bit syscall.
1236                  * fuword is MP aware.
1237                  */
1238                 if (code == SYS_syscall) {
1239                         /*
1240                          * Code is first argument, followed by actual args.
1241                          */
1242                         code = fuword(params);
1243                         params += sizeof(int);
1244                 } else if (code == SYS___syscall) {
1245                         /*
1246                          * Like syscall, but code is a quad, so as to maintain
1247                          * quad alignment for the rest of the arguments.
1248                          */
1249                         code = fuword(params);
1250                         params += sizeof(quad_t);
1251                 }
1252         }
1253
1254         code &= p->p_sysent->sv_mask;
1255
1256         if (code >= p->p_sysent->sv_size)
1257                 callp = &p->p_sysent->sv_table[0];
1258         else
1259                 callp = &p->p_sysent->sv_table[code];
1260
1261         narg = callp->sy_narg & SYF_ARGMASK;
1262
1263 #if 0
1264         if (p->p_sysent->sv_name[0] == 'L')
1265                 kprintf("Linux syscall, code = %d\n", code);
1266 #endif
1267
1268         /*
1269          * copyin is MP aware, but the tracing code is not
1270          */
1271         if (narg && params) {
1272                 error = copyin(params, (caddr_t)(&args.nosys.sysmsg + 1),
1273                                 narg * sizeof(register_t));
1274                 if (error) {
1275 #ifdef KTRACE
1276                         if (KTRPOINT(td, KTR_SYSCALL)) {
1277                                 MAKEMPSAFE(have_mplock);
1278                                 
1279                                 ktrsyscall(lp, code, narg,
1280                                         (void *)(&args.nosys.sysmsg + 1));
1281                         }
1282 #endif
1283                         goto bad;
1284                 }
1285         }
1286
1287 #ifdef KTRACE
1288         if (KTRPOINT(td, KTR_SYSCALL)) {
1289                 MAKEMPSAFE(have_mplock);
1290                 ktrsyscall(lp, code, narg, (void *)(&args.nosys.sysmsg + 1));
1291         }
1292 #endif
1293
1294         /*
1295          * For traditional syscall code edx is left untouched when 32 bit
1296          * results are returned.  Since edx is loaded from fds[1] when the 
1297          * system call returns we pre-set it here.
1298          */
1299         args.sysmsg_fds[0] = 0;
1300         args.sysmsg_fds[1] = frame->tf_edx;
1301
1302         /*
1303          * The syscall might manipulate the trap frame. If it does it
1304          * will probably return EJUSTRETURN.
1305          */
1306         args.sysmsg_frame = frame;
1307
1308         STOPEVENT(p, S_SCE, narg);      /* MP aware */
1309
1310         /*
1311          * NOTE: All system calls run MPSAFE now.  The system call itself
1312          *       is responsible for getting the MP lock.
1313          */
1314         error = (*callp->sy_call)(&args);
1315
1316 out:
1317         /*
1318          * MP SAFE (we may or may not have the MP lock at this point)
1319          */
1320         switch (error) {
1321         case 0:
1322                 /*
1323                  * Reinitialize proc pointer `p' as it may be different
1324                  * if this is a child returning from fork syscall.
1325                  */
1326                 p = curproc;
1327                 lp = curthread->td_lwp;
1328                 frame->tf_eax = args.sysmsg_fds[0];
1329                 frame->tf_edx = args.sysmsg_fds[1];
1330                 frame->tf_eflags &= ~PSL_C;
1331                 break;
1332         case ERESTART:
1333                 /*
1334                  * Reconstruct pc, assuming lcall $X,y is 7 bytes,
1335                  * int 0x80 is 2 bytes. We saved this in tf_err.
1336                  */
1337                 frame->tf_eip -= frame->tf_err;
1338                 break;
1339         case EJUSTRETURN:
1340                 break;
1341         case EASYNC:
1342                 panic("Unexpected EASYNC return value (for now)");
1343         default:
1344 bad:
1345                 if (p->p_sysent->sv_errsize) {
1346                         if (error >= p->p_sysent->sv_errsize)
1347                                 error = -1;     /* XXX */
1348                         else
1349                                 error = p->p_sysent->sv_errtbl[error];
1350                 }
1351                 frame->tf_eax = error;
1352                 frame->tf_eflags |= PSL_C;
1353                 break;
1354         }
1355
1356         /*
1357          * Traced syscall.  trapsignal() is not MP aware.
1358          */
1359         if ((orig_tf_eflags & PSL_T) && !(orig_tf_eflags & PSL_VM)) {
1360                 MAKEMPSAFE(have_mplock);
1361                 frame->tf_eflags &= ~PSL_T;
1362                 trapsignal(lp, SIGTRAP, TRAP_TRACE);
1363         }
1364
1365         /*
1366          * Handle reschedule and other end-of-syscall issues
1367          */
1368         userret(lp, frame, sticks);
1369
1370 #ifdef KTRACE
1371         if (KTRPOINT(td, KTR_SYSRET)) {
1372                 MAKEMPSAFE(have_mplock);
1373                 ktrsysret(lp, code, error, args.sysmsg_result);
1374         }
1375 #endif
1376
1377         /*
1378          * This works because errno is findable through the
1379          * register set.  If we ever support an emulation where this
1380          * is not the case, this code will need to be revisited.
1381          */
1382         STOPEVENT(p, S_SCX, code);
1383
1384         userexit(lp);
1385         /*
1386          * Release the MP lock if we had to get it
1387          */
1388         if (have_mplock)
1389                 rel_mplock();
1390         KTR_LOG(kernentry_syscall_ret, p->p_pid, lp->lwp_tid, error);
1391 #ifdef INVARIANTS
1392         KASSERT(crit_count == td->td_critcount,
1393                 ("syscall: critical section count mismatch! %d/%d",
1394                 crit_count, td->td_pri));
1395         KASSERT(&td->td_toks_base == td->td_toks_stop,
1396                 ("syscall: extra tokens held after trap! %zd",
1397                 td->td_toks_stop - &td->td_toks_base));
1398 #endif
1399 }
1400
1401 /*
1402  * NOTE: MP lock not held at any point.
1403  */
1404 void
1405 fork_return(struct lwp *lp, struct trapframe *frame)
1406 {
1407         frame->tf_eax = 0;              /* Child returns zero */
1408         frame->tf_eflags &= ~PSL_C;     /* success */
1409         frame->tf_edx = 1;
1410
1411         generic_lwp_return(lp, frame);
1412         KTR_LOG(kernentry_fork_ret, lp->lwp_proc->p_pid, lp->lwp_tid);
1413 }
1414
1415 /*
1416  * Simplified back end of syscall(), used when returning from fork()
1417  * directly into user mode.
1418  *
1419  * This code will return back into the fork trampoline code which then
1420  * runs doreti.
1421  *
1422  * NOTE: The mplock is not held at any point.
1423  */
1424 void
1425 generic_lwp_return(struct lwp *lp, struct trapframe *frame)
1426 {
1427         struct proc *p = lp->lwp_proc;
1428
1429         /*
1430          * Newly forked processes are given a kernel priority.  We have to
1431          * adjust the priority to a normal user priority and fake entry
1432          * into the kernel (call userenter()) to install a passive release
1433          * function just in case userret() decides to stop the process.  This
1434          * can occur when ^Z races a fork.  If we do not install the passive
1435          * release function the current process designation will not be
1436          * released when the thread goes to sleep.
1437          */
1438         lwkt_setpri_self(TDPRI_USER_NORM);
1439         userenter(lp->lwp_thread, p);
1440         userret(lp, frame, 0);
1441 #ifdef KTRACE
1442         if (KTRPOINT(lp->lwp_thread, KTR_SYSRET))
1443                 ktrsysret(lp, SYS_fork, 0, 0);
1444 #endif
1445         lp->lwp_flags |= LWP_PASSIVE_ACQ;
1446         userexit(lp);
1447         lp->lwp_flags &= ~LWP_PASSIVE_ACQ;
1448 }
1449
1450 /*
1451  * If PGEX_FPFAULT is set then set FP_VIRTFP in the PCB to force a T_DNA
1452  * fault (which is then passed back to the virtual kernel) if an attempt is
1453  * made to use the FP unit.
1454  *
1455  * XXX this is a fairly big hack.
1456  */
1457 void
1458 set_vkernel_fp(struct trapframe *frame)
1459 {
1460         struct thread *td = curthread;
1461
1462         if (frame->tf_xflags & PGEX_FPFAULT) {
1463                 td->td_pcb->pcb_flags |= FP_VIRTFP;
1464                 if (mdcpu->gd_npxthread == td)
1465                         npxexit();
1466         } else {
1467                 td->td_pcb->pcb_flags &= ~FP_VIRTFP;
1468         }
1469 }
1470
1471 /*
1472  * Called from vkernel_trap() to fixup the vkernel's syscall
1473  * frame for vmspace_ctl() return.
1474  */
1475 void
1476 cpu_vkernel_trap(struct trapframe *frame, int error)
1477 {
1478         frame->tf_eax = error;
1479         if (error)
1480                 frame->tf_eflags |= PSL_C;
1481         else
1482                 frame->tf_eflags &= ~PSL_C;
1483 }