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