* Use SYSREF for vmspace structures. This replaces the vmspace structure's
[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.23 2007/04/29 18:25:38 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 (p->p_vkernel && p->p_vkernel->vk_current &&
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 (p->p_vkernel && p->p_vkernel->vk_current) {
602                 vkernel_trap(p, 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 proc *p = td->td_proc;
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 (p != NULL)
876                         vm = p->p_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(p);
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 (p, va)) {
906                         rv = KERN_FAILURE;
907                         PRELE(p);
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(p);
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         /* three separate prints in case of a trap on an unmapped page */
954         kprintf("mp_lock = %08x; ", mp_lock);
955         kprintf("cpuid = %d; ", mycpu->gd_cpuid);
956         kprintf("lapic.id = %08x\n", lapic.id);
957 #endif
958         if (type == T_PAGEFLT) {
959                 kprintf("fault virtual address  = 0x%x\n", eva);
960                 kprintf("fault code             = %s %s, %s\n",
961                         usermode ? "user" : "supervisor",
962                         code & PGEX_W ? "write" : "read",
963                         code & PGEX_P ? "protection violation" : "page not present");
964         }
965         kprintf("instruction pointer    = 0x%x:0x%x\n",
966                frame->tf_cs & 0xffff, frame->tf_eip);
967         if (usermode) {
968                 ss = frame->tf_ss & 0xffff;
969                 esp = frame->tf_esp;
970         } else {
971                 ss = GSEL(GDATA_SEL, SEL_KPL);
972                 esp = (int)&frame->tf_esp;
973         }
974         kprintf("stack pointer          = 0x%x:0x%x\n", ss, esp);
975         kprintf("frame pointer          = 0x%x:0x%x\n", ss, frame->tf_ebp);
976         kprintf("processor eflags       = ");
977         if (frame->tf_eflags & PSL_T)
978                 kprintf("trace trap, ");
979         if (frame->tf_eflags & PSL_I)
980                 kprintf("interrupt enabled, ");
981         if (frame->tf_eflags & PSL_NT)
982                 kprintf("nested task, ");
983         if (frame->tf_eflags & PSL_RF)
984                 kprintf("resume, ");
985 #if 0
986         if (frame->tf_eflags & PSL_VM)
987                 kprintf("vm86, ");
988 #endif
989         kprintf("IOPL = %d\n", (frame->tf_eflags & PSL_IOPL) >> 12);
990         kprintf("current process                = ");
991         if (curproc) {
992                 kprintf("%lu (%s)\n",
993                     (u_long)curproc->p_pid, curproc->p_comm ?
994                     curproc->p_comm : "");
995         } else {
996                 kprintf("Idle\n");
997         }
998         kprintf("current thread          = pri %d ", curthread->td_pri);
999         if (curthread->td_pri >= TDPRI_CRIT)
1000                 kprintf("(CRIT)");
1001         kprintf("\n");
1002 #ifdef SMP
1003 /**
1004  *  XXX FIXME:
1005  *      we probably SHOULD have stopped the other CPUs before now!
1006  *      another CPU COULD have been touching cpl at this moment...
1007  */
1008         kprintf(" <- SMP: XXX");
1009 #endif
1010         kprintf("\n");
1011
1012 #ifdef KDB
1013         if (kdb_trap(&psl))
1014                 return;
1015 #endif
1016 #ifdef DDB
1017         if ((debugger_on_panic || db_active) && kdb_trap(type, code, frame))
1018                 return;
1019 #endif
1020         kprintf("trap number            = %d\n", type);
1021         if (type <= MAX_TRAP_MSG)
1022                 panic("%s", trap_msg[type]);
1023         else
1024                 panic("unknown/reserved trap");
1025 }
1026
1027 /*
1028  * Double fault handler. Called when a fault occurs while writing
1029  * a frame for a trap/exception onto the stack. This usually occurs
1030  * when the stack overflows (such is the case with infinite recursion,
1031  * for example).
1032  *
1033  * XXX Note that the current PTD gets replaced by IdlePTD when the
1034  * task switch occurs. This means that the stack that was active at
1035  * the time of the double fault is not available at <kstack> unless
1036  * the machine was idle when the double fault occurred. The downside
1037  * of this is that "trace <ebp>" in ddb won't work.
1038  */
1039 void
1040 dblfault_handler(void)
1041 {
1042         struct mdglobaldata *gd = mdcpu;
1043
1044         kprintf("\nFatal double fault:\n");
1045         kprintf("eip = 0x%x\n", gd->gd_common_tss.tss_eip);
1046         kprintf("esp = 0x%x\n", gd->gd_common_tss.tss_esp);
1047         kprintf("ebp = 0x%x\n", gd->gd_common_tss.tss_ebp);
1048 #ifdef SMP
1049         /* three separate prints in case of a trap on an unmapped page */
1050         kprintf("mp_lock = %08x; ", mp_lock);
1051         kprintf("cpuid = %d; ", mycpu->gd_cpuid);
1052         kprintf("lapic.id = %08x\n", lapic.id);
1053 #endif
1054         panic("double fault");
1055 }
1056
1057 /*
1058  * Compensate for 386 brain damage (missing URKR).
1059  * This is a little simpler than the pagefault handler in trap() because
1060  * it the page tables have already been faulted in and high addresses
1061  * are thrown out early for other reasons.
1062  */
1063 int
1064 trapwrite(unsigned addr)
1065 {
1066         struct proc *p;
1067         vm_offset_t va;
1068         struct vmspace *vm;
1069         int rv;
1070
1071         va = trunc_page((vm_offset_t)addr);
1072         /*
1073          * XXX - MAX is END.  Changed > to >= for temp. fix.
1074          */
1075         if (va >= VM_MAX_USER_ADDRESS)
1076                 return (1);
1077
1078         p = curproc;
1079         vm = p->p_vmspace;
1080
1081         PHOLD(p);
1082
1083         if (!grow_stack (p, va)) {
1084                 PRELE(p);
1085                 return (1);
1086         }
1087
1088         /*
1089          * fault the data page
1090          */
1091         rv = vm_fault(&vm->vm_map, va, VM_PROT_WRITE, VM_FAULT_DIRTY);
1092
1093         PRELE(p);
1094
1095         if (rv != KERN_SUCCESS)
1096                 return 1;
1097
1098         return (0);
1099 }
1100
1101 /*
1102  *      syscall2 -      MP aware system call request C handler
1103  *
1104  *      A system call is essentially treated as a trap except that the
1105  *      MP lock is not held on entry or return.  We are responsible for
1106  *      obtaining the MP lock if necessary and for handling ASTs
1107  *      (e.g. a task switch) prior to return.
1108  *
1109  *      In general, only simple access and manipulation of curproc and
1110  *      the current stack is allowed without having to hold MP lock.
1111  *
1112  *      MPSAFE - note that large sections of this routine are run without
1113  *               the MP lock.
1114  */
1115
1116 void
1117 syscall2(struct trapframe *frame)
1118 {
1119         struct thread *td = curthread;
1120         struct proc *p = td->td_proc;
1121         struct lwp *lp = td->td_lwp;
1122         caddr_t params;
1123         struct sysent *callp;
1124         register_t orig_tf_eflags;
1125         int sticks;
1126         int error;
1127         int narg;
1128 #ifdef INVARIANTS
1129         int crit_count = td->td_pri & ~TDPRI_MASK;
1130 #endif
1131 #ifdef SMP
1132         int have_mplock = 0;
1133 #endif
1134         u_int code;
1135         union sysunion args;
1136
1137 #ifdef SMP
1138         KASSERT(td->td_mpcount == 0, ("badmpcount syscall2 from %p", (void *)frame->tf_eip));
1139         if (syscall_mpsafe == 0)
1140                 MAKEMPSAFE(have_mplock);
1141 #endif
1142         userenter(td);          /* lazy raise our priority */
1143
1144         /*
1145          * Misc
1146          */
1147         sticks = (int)td->td_sticks;
1148         orig_tf_eflags = frame->tf_eflags;
1149
1150         /*
1151          * Virtual kernel intercept - if a VM context managed by a virtual
1152          * kernel issues a system call the virtual kernel handles it, not us.
1153          * Restore the virtual kernel context and return from its system
1154          * call.  The current frame is copied out to the virtual kernel.
1155          */
1156         if (p->p_vkernel && p->p_vkernel->vk_current) {
1157                 error = vkernel_trap(p, frame);
1158                 frame->tf_eax = error;
1159                 if (error)
1160                         frame->tf_eflags |= PSL_C;
1161                 error = EJUSTRETURN;
1162                 goto out;
1163         }
1164
1165         /*
1166          * Get the system call parameters and account for time
1167          */
1168         lp->lwp_md.md_regs = frame;
1169         params = (caddr_t)frame->tf_esp + sizeof(int);
1170         code = frame->tf_eax;
1171
1172         if (p->p_sysent->sv_prepsyscall) {
1173                 (*p->p_sysent->sv_prepsyscall)(
1174                         frame, (int *)(&args.nosys.sysmsg + 1),
1175                         &code, &params);
1176         } else {
1177                 /*
1178                  * Need to check if this is a 32 bit or 64 bit syscall.
1179                  * fuword is MP aware.
1180                  */
1181                 if (code == SYS_syscall) {
1182                         /*
1183                          * Code is first argument, followed by actual args.
1184                          */
1185                         code = fuword(params);
1186                         params += sizeof(int);
1187                 } else if (code == SYS___syscall) {
1188                         /*
1189                          * Like syscall, but code is a quad, so as to maintain
1190                          * quad alignment for the rest of the arguments.
1191                          */
1192                         code = fuword(params);
1193                         params += sizeof(quad_t);
1194                 }
1195         }
1196
1197         code &= p->p_sysent->sv_mask;
1198         if (code >= p->p_sysent->sv_size)
1199                 callp = &p->p_sysent->sv_table[0];
1200         else
1201                 callp = &p->p_sysent->sv_table[code];
1202
1203         narg = callp->sy_narg & SYF_ARGMASK;
1204
1205         /*
1206          * copyin is MP aware, but the tracing code is not
1207          */
1208         if (narg && params) {
1209                 error = copyin(params, (caddr_t)(&args.nosys.sysmsg + 1),
1210                                 narg * sizeof(register_t));
1211                 if (error) {
1212 #ifdef KTRACE
1213                         if (KTRPOINT(td, KTR_SYSCALL)) {
1214                                 MAKEMPSAFE(have_mplock);
1215                                 
1216                                 ktrsyscall(p, code, narg,
1217                                         (void *)(&args.nosys.sysmsg + 1));
1218                         }
1219 #endif
1220                         goto bad;
1221                 }
1222         }
1223
1224 #ifdef KTRACE
1225         if (KTRPOINT(td, KTR_SYSCALL)) {
1226                 MAKEMPSAFE(have_mplock);
1227                 ktrsyscall(p, code, narg, (void *)(&args.nosys.sysmsg + 1));
1228         }
1229 #endif
1230
1231         /*
1232          * For traditional syscall code edx is left untouched when 32 bit
1233          * results are returned.  Since edx is loaded from fds[1] when the 
1234          * system call returns we pre-set it here.
1235          */
1236         args.sysmsg_fds[0] = 0;
1237         args.sysmsg_fds[1] = frame->tf_edx;
1238
1239         /*
1240          * The syscall might manipulate the trap frame. If it does it
1241          * will probably return EJUSTRETURN.
1242          */
1243         args.sysmsg_frame = frame;
1244
1245         STOPEVENT(p, S_SCE, narg);      /* MP aware */
1246
1247 #ifdef SMP
1248         /*
1249          * Try to run the syscall without the MP lock if the syscall
1250          * is MP safe.  We have to obtain the MP lock no matter what if 
1251          * we are ktracing
1252          */
1253         if ((callp->sy_narg & SYF_MPSAFE) == 0)
1254                 MAKEMPSAFE(have_mplock);
1255 #endif
1256
1257         error = (*callp->sy_call)(&args);
1258
1259 #if 0
1260         kprintf("system call %d returned %d\n", code, error);
1261 #endif
1262
1263 out:
1264         /*
1265          * MP SAFE (we may or may not have the MP lock at this point)
1266          */
1267         switch (error) {
1268         case 0:
1269                 /*
1270                  * Reinitialize proc pointer `p' as it may be different
1271                  * if this is a child returning from fork syscall.
1272                  */
1273                 p = curproc;
1274                 lp = curthread->td_lwp;
1275                 frame->tf_eax = args.sysmsg_fds[0];
1276                 frame->tf_edx = args.sysmsg_fds[1];
1277                 frame->tf_eflags &= ~PSL_C;
1278                 break;
1279         case ERESTART:
1280                 /*
1281                  * Reconstruct pc, assuming lcall $X,y is 7 bytes,
1282                  * int 0x80 is 2 bytes. We saved this in tf_err.
1283                  */
1284                 frame->tf_eip -= frame->tf_err;
1285                 break;
1286         case EJUSTRETURN:
1287                 break;
1288         case EASYNC:
1289                 panic("Unexpected EASYNC return value (for now)");
1290         default:
1291 bad:
1292                 if (p->p_sysent->sv_errsize) {
1293                         if (error >= p->p_sysent->sv_errsize)
1294                                 error = -1;     /* XXX */
1295                         else
1296                                 error = p->p_sysent->sv_errtbl[error];
1297                 }
1298                 frame->tf_eax = error;
1299                 frame->tf_eflags |= PSL_C;
1300                 break;
1301         }
1302
1303         /*
1304          * Traced syscall.  trapsignal() is not MP aware.
1305          */
1306         if ((orig_tf_eflags & PSL_T) /*&& !(orig_tf_eflags & PSL_VM)*/) {
1307                 MAKEMPSAFE(have_mplock);
1308                 frame->tf_eflags &= ~PSL_T;
1309                 trapsignal(lp, SIGTRAP, 0);
1310         }
1311
1312         /*
1313          * Handle reschedule and other end-of-syscall issues
1314          */
1315         userret(lp, frame, sticks);
1316
1317 #ifdef KTRACE
1318         if (KTRPOINT(td, KTR_SYSRET)) {
1319                 MAKEMPSAFE(have_mplock);
1320                 ktrsysret(p, code, error, args.sysmsg_result);
1321         }
1322 #endif
1323
1324         /*
1325          * This works because errno is findable through the
1326          * register set.  If we ever support an emulation where this
1327          * is not the case, this code will need to be revisited.
1328          */
1329         STOPEVENT(p, S_SCX, code);
1330
1331         userexit(lp);
1332 #ifdef SMP
1333         /*
1334          * Release the MP lock if we had to get it
1335          */
1336         KASSERT(td->td_mpcount == have_mplock, 
1337                 ("badmpcount syscall2/end from %p", (void *)frame->tf_eip));
1338         if (have_mplock)
1339                 rel_mplock();
1340 #endif
1341 #ifdef INVARIANTS
1342         KASSERT(crit_count == (td->td_pri & ~TDPRI_MASK), 
1343                 ("syscall: critical section count mismatch! %d/%d",
1344                 crit_count / TDPRI_CRIT, td->td_pri / TDPRI_CRIT));
1345 #endif
1346 }
1347
1348 void
1349 fork_return(struct lwp *lp, struct trapframe *frame)
1350 {
1351         frame->tf_eax = 0;              /* Child returns zero */
1352         frame->tf_eflags &= ~PSL_C;     /* success */
1353         frame->tf_edx = 1;
1354
1355         generic_lwp_return(lp, frame);
1356 }
1357
1358 /*
1359  * Simplified back end of syscall(), used when returning from fork()
1360  * or lwp_create() directly into user mode.  MP lock is held on entry and
1361  * should be released on return.  This code will return back into the fork
1362  * trampoline code which then runs doreti.
1363  */
1364 void
1365 generic_lwp_return(struct lwp *lp, struct trapframe *frame)
1366 {
1367         struct proc *p = lp->lwp_proc;
1368
1369         /*
1370          * Newly forked processes are given a kernel priority.  We have to
1371          * adjust the priority to a normal user priority and fake entry
1372          * into the kernel (call userenter()) to install a passive release
1373          * function just in case userret() decides to stop the process.  This
1374          * can occur when ^Z races a fork.  If we do not install the passive
1375          * release function the current process designation will not be
1376          * released when the thread goes to sleep.
1377          */
1378         lwkt_setpri_self(TDPRI_USER_NORM);
1379         userenter(lp->lwp_thread);
1380         userret(lp, frame, 0);
1381 #ifdef KTRACE
1382         if (KTRPOINT(lp->lwp_thread, KTR_SYSRET))
1383                 ktrsysret(p, SYS_fork, 0, 0);
1384 #endif
1385         p->p_flag |= P_PASSIVE_ACQ;
1386         userexit(lp);
1387         p->p_flag &= ~P_PASSIVE_ACQ;
1388 #ifdef SMP
1389         KKASSERT(lp->lwp_thread->td_mpcount == 1);
1390         rel_mplock();
1391 #endif
1392 }
1393
1394 /*
1395  * doreti has turned into this.  The frame is directly on the stack.  We
1396  * pull everything else we need (fpu and tls context) from the current
1397  * thread.
1398  *
1399  * Note on fpu interactions: In a virtual kernel, the fpu context for
1400  * an emulated user mode process is not shared with the virtual kernel's
1401  * fpu context, so we only have to 'stack' fpu contexts within the virtual
1402  * kernel itself, and not even then since the signal() contexts that we care
1403  * about save and restore the FPU state (I think anyhow).
1404  *
1405  * vmspace_ctl() returns an error only if it had problems instaling the
1406  * context we supplied or problems copying data to/from our VM space.
1407  */
1408 void
1409 go_user(struct intrframe *frame)
1410 {
1411         struct trapframe *tf = (void *)&frame->if_gs;
1412         int r;
1413
1414         /*
1415          * Interrupts may be disabled on entry, make sure all signals
1416          * can be received before beginning our loop.
1417          */
1418         sigsetmask(0);
1419
1420         /*
1421          * Switch to the current simulated user process, then call
1422          * user_trap() when we break out of it (usually due to a signal).
1423          */
1424         for (;;) {
1425                 /*
1426                  * Tell the real kernel whether it is ok to use the FP
1427                  * unit or not.
1428                  */
1429                 if (mdcpu->gd_npxthread == curthread) {
1430                         tf->tf_xflags &= ~PGEX_FPFAULT;
1431                 } else {
1432                         tf->tf_xflags |= PGEX_FPFAULT;
1433                 }
1434
1435                 /*
1436                  * We must poll the mailbox prior to making the system call
1437                  * to properly interlock new mailbox signals against the 
1438                  * system call.
1439                  *
1440                  * Passing a NULL frame causes the interrupt code to assume
1441                  * the supervisor.
1442                  */
1443                 if (mdcpu->gd_mailbox)
1444                         signalmailbox(NULL);
1445
1446                 /*
1447                  * Run emulated user process context.  This call interlocks
1448                  * with new mailbox signals.
1449                  *
1450                  * Set PGEX_U unconditionally, indicating a user frame (the
1451                  * bit is normally set only by T_PAGEFLT).
1452                  */
1453                 r = vmspace_ctl(&curproc->p_vmspace->vm_pmap, VMSPACE_CTL_RUN,
1454                                 tf, &curthread->td_savevext);
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                                 signalmailbox(frame);
1464                         else
1465                                 panic("vmspace_ctl failed");
1466                 } else {
1467                         signalmailbox(frame);
1468                         if (tf->tf_trapno) {
1469                                 user_trap(tf);
1470                         } else if (mycpu->gd_reqflags & RQF_AST_MASK) {
1471                                 tf->tf_trapno = T_ASTFLT;
1472                                 user_trap(tf);
1473                         }
1474                         tf->tf_trapno = 0;
1475                 }
1476         }
1477 }
1478
1479 /*
1480  * If PGEX_FPFAULT is set then set FP_VIRTFP in the PCB to force a T_DNA
1481  * fault (which is then passed back to the virtual kernel) if an attempt is
1482  * made to use the FP unit.
1483  * 
1484  * XXX this is a fairly big hack.
1485  */
1486 void
1487 set_vkernel_fp(struct trapframe *frame)
1488 {
1489         struct thread *td = curthread;
1490
1491         if (frame->tf_xflags & PGEX_FPFAULT) {
1492                 td->td_pcb->pcb_flags |= FP_VIRTFP;
1493                 if (mdcpu->gd_npxthread == td)
1494                         npxexit();
1495         } else {
1496                 td->td_pcb->pcb_flags &= ~FP_VIRTFP;
1497         }
1498 }
1499