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