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