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