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