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