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