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