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