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