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