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