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