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