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