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