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