Rename functions to avoid conflicts with libc.
[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.79 2006/09/03 18:29:16 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/sysproto.h>
73 #include <sys/sysunion.h>
74
75 #include <vm/vm.h>
76 #include <vm/vm_param.h>
77 #include <sys/lock.h>
78 #include <vm/pmap.h>
79 #include <vm/vm_kern.h>
80 #include <vm/vm_map.h>
81 #include <vm/vm_page.h>
82 #include <vm/vm_extern.h>
83
84 #include <machine/cpu.h>
85 #include <machine/ipl.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 <i386/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)p->p_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(frame)
374         struct trapframe frame;
375 {
376         struct globaldata *gd = mycpu;
377         struct thread *td = gd->gd_curthread;
378         struct lwp *lp = td->td_lwp;
379         struct proc *p;
380         int sticks = 0;
381         int i = 0, ucode = 0, type, code;
382 #ifdef SMP
383         int have_mplock = 0;
384 #endif
385 #ifdef INVARIANTS
386         int crit_count = td->td_pri & ~TDPRI_MASK;
387 #endif
388         vm_offset_t eva;
389
390         p = td->td_proc;
391 #ifdef DDB
392         if (db_active) {
393                 eva = (frame.tf_trapno == T_PAGEFLT ? rcr2() : 0);
394                 ++gd->gd_trap_nesting_level;
395                 MAKEMPSAFE(have_mplock);
396                 trap_fatal(&frame, eva);
397                 --gd->gd_trap_nesting_level;
398                 goto out2;
399         }
400 #endif
401
402         eva = 0;
403         ++gd->gd_trap_nesting_level;
404         if (frame.tf_trapno == T_PAGEFLT) {
405                 /*
406                  * For some Cyrix CPUs, %cr2 is clobbered by interrupts.
407                  * This problem is worked around by using an interrupt
408                  * gate for the pagefault handler.  We are finally ready
409                  * to read %cr2 and then must reenable interrupts.
410                  *
411                  * XXX this should be in the switch statement, but the
412                  * NO_FOOF_HACK and VM86 goto and ifdefs obfuscate the
413                  * flow of control too much for this to be obviously
414                  * correct.
415                  */
416                 eva = rcr2();
417                 cpu_enable_intr();
418         }
419 #ifdef SMP
420         if (trap_mpsafe == 0)
421                 MAKEMPSAFE(have_mplock);
422 #endif
423
424         --gd->gd_trap_nesting_level;
425
426         if (!(frame.tf_eflags & PSL_I)) {
427                 /*
428                  * Buggy application or kernel code has disabled interrupts
429                  * and then trapped.  Enabling interrupts now is wrong, but
430                  * it is better than running with interrupts disabled until
431                  * they are accidentally enabled later.
432                  */
433                 type = frame.tf_trapno;
434                 if (ISPL(frame.tf_cs)==SEL_UPL || (frame.tf_eflags & PSL_VM)) {
435                         MAKEMPSAFE(have_mplock);
436                         printf(
437                             "pid %ld (%s): trap %d with interrupts disabled\n",
438                             (long)curproc->p_pid, curproc->p_comm, type);
439                 } else if (type != T_BPTFLT && type != T_TRCTRAP) {
440                         /*
441                          * XXX not quite right, since this may be for a
442                          * multiple fault in user mode.
443                          */
444                         MAKEMPSAFE(have_mplock);
445                         printf("kernel trap %d with interrupts disabled\n",
446                             type);
447                 }
448                 cpu_enable_intr();
449         }
450
451 #if defined(I586_CPU) && !defined(NO_F00F_HACK)
452 restart:
453 #endif
454         type = frame.tf_trapno;
455         code = frame.tf_err;
456
457         if (in_vm86call) {
458                 ASSERT_MP_LOCK_HELD(curthread);
459                 if (frame.tf_eflags & PSL_VM &&
460                     (type == T_PROTFLT || type == T_STKFLT)) {
461 #ifdef SMP
462                         KKASSERT(td->td_mpcount > 0);
463 #endif
464                         i = vm86_emulate((struct vm86frame *)&frame);
465 #ifdef SMP
466                         KKASSERT(td->td_mpcount > 0);
467 #endif
468                         if (i != 0) {
469                                 /*
470                                  * returns to original process
471                                  */
472 #ifdef SMP
473                                 vm86_trap((struct vm86frame *)&frame,
474                                           have_mplock);
475 #else
476                                 vm86_trap((struct vm86frame *)&frame, 0);
477 #endif
478                                 KKASSERT(0); /* NOT REACHED */
479                         }
480                         goto out2;
481                 }
482                 switch (type) {
483                         /*
484                          * these traps want either a process context, or
485                          * assume a normal userspace trap.
486                          */
487                 case T_PROTFLT:
488                 case T_SEGNPFLT:
489                         trap_fatal(&frame, eva);
490                         goto out2;
491                 case T_TRCTRAP:
492                         type = T_BPTFLT;        /* kernel breakpoint */
493                         /* FALL THROUGH */
494                 }
495                 goto kernel_trap;       /* normal kernel trap handling */
496         }
497
498         if ((ISPL(frame.tf_cs) == SEL_UPL) || (frame.tf_eflags & PSL_VM)) {
499                 /* user trap */
500
501                 userenter(td);
502
503                 sticks = (int)td->td_sticks;
504                 lp->lwp_md.md_regs = &frame;
505
506                 switch (type) {
507                 case T_PRIVINFLT:       /* privileged instruction fault */
508                         ucode = type;
509                         i = SIGILL;
510                         break;
511
512                 case T_BPTFLT:          /* bpt instruction fault */
513                 case T_TRCTRAP:         /* trace trap */
514                         frame.tf_eflags &= ~PSL_T;
515                         i = SIGTRAP;
516                         break;
517
518                 case T_ARITHTRAP:       /* arithmetic trap */
519                         ucode = code;
520                         i = SIGFPE;
521                         break;
522
523                 case T_ASTFLT:          /* Allow process switch */
524                         mycpu->gd_cnt.v_soft++;
525                         if (mycpu->gd_reqflags & RQF_AST_OWEUPC) {
526                                 atomic_clear_int_nonlocked(&mycpu->gd_reqflags,
527                                             RQF_AST_OWEUPC);
528                                 addupc_task(p, p->p_prof.pr_addr,
529                                             p->p_prof.pr_ticks);
530                         }
531                         goto out;
532
533                         /*
534                          * The following two traps can happen in
535                          * vm86 mode, and, if so, we want to handle
536                          * them specially.
537                          */
538                 case T_PROTFLT:         /* general protection fault */
539                 case T_STKFLT:          /* stack fault */
540                         if (frame.tf_eflags & PSL_VM) {
541                                 i = vm86_emulate((struct vm86frame *)&frame);
542                                 if (i == 0)
543                                         goto out;
544                                 break;
545                         }
546                         /* FALL THROUGH */
547
548                 case T_SEGNPFLT:        /* segment not present fault */
549                 case T_TSSFLT:          /* invalid TSS fault */
550                 case T_DOUBLEFLT:       /* double fault */
551                 default:
552                         ucode = code + BUS_SEGM_FAULT ;
553                         i = SIGBUS;
554                         break;
555
556                 case T_PAGEFLT:         /* page fault */
557                         MAKEMPSAFE(have_mplock);
558                         i = trap_pfault(&frame, TRUE, eva);
559                         if (i == -1)
560                                 goto out;
561 #if defined(I586_CPU) && !defined(NO_F00F_HACK)
562                         if (i == -2)
563                                 goto restart;
564 #endif
565                         if (i == 0)
566                                 goto out;
567
568                         ucode = T_PAGEFLT;
569                         break;
570
571                 case T_DIVIDE:          /* integer divide fault */
572                         ucode = FPE_INTDIV;
573                         i = SIGFPE;
574                         break;
575
576 #if NISA > 0
577                 case T_NMI:
578                         MAKEMPSAFE(have_mplock);
579 #ifdef POWERFAIL_NMI
580                         goto handle_powerfail;
581 #else /* !POWERFAIL_NMI */
582                         /* machine/parity/power fail/"kitchen sink" faults */
583                         if (isa_nmi(code) == 0) {
584 #ifdef DDB
585                                 /*
586                                  * NMI can be hooked up to a pushbutton
587                                  * for debugging.
588                                  */
589                                 if (ddb_on_nmi) {
590                                         printf ("NMI ... going to debugger\n");
591                                         kdb_trap (type, 0, &frame);
592                                 }
593 #endif /* DDB */
594                                 goto out2;
595                         } else if (panic_on_nmi)
596                                 panic("NMI indicates hardware failure");
597                         break;
598 #endif /* POWERFAIL_NMI */
599 #endif /* NISA > 0 */
600
601                 case T_OFLOW:           /* integer overflow fault */
602                         ucode = FPE_INTOVF;
603                         i = SIGFPE;
604                         break;
605
606                 case T_BOUND:           /* bounds check fault */
607                         ucode = FPE_FLTSUB;
608                         i = SIGFPE;
609                         break;
610
611                 case T_DNA:
612 #if NNPX > 0
613                         /* 
614                          * The kernel may have switched out the FP unit's
615                          * state, causing the user process to take a fault
616                          * when it tries to use the FP unit.  Restore the
617                          * state here
618                          */
619                         if (npxdna())
620                                 goto out;
621 #endif
622                         if (!pmath_emulate) {
623                                 i = SIGFPE;
624                                 ucode = FPE_FPU_NP_TRAP;
625                                 break;
626                         }
627                         i = (*pmath_emulate)(&frame);
628                         if (i == 0) {
629                                 if (!(frame.tf_eflags & PSL_T))
630                                         goto out2;
631                                 frame.tf_eflags &= ~PSL_T;
632                                 i = SIGTRAP;
633                         }
634                         /* else ucode = emulator_only_knows() XXX */
635                         break;
636
637                 case T_FPOPFLT:         /* FPU operand fetch fault */
638                         ucode = T_FPOPFLT;
639                         i = SIGILL;
640                         break;
641
642                 case T_XMMFLT:          /* SIMD floating-point exception */
643                         ucode = 0; /* XXX */
644                         i = SIGFPE;
645                         break;
646                 }
647         } else {
648 kernel_trap:
649                 /* kernel trap */
650
651                 switch (type) {
652                 case T_PAGEFLT:                 /* page fault */
653                         MAKEMPSAFE(have_mplock);
654                         trap_pfault(&frame, FALSE, eva);
655                         goto out2;
656
657                 case T_DNA:
658 #if NNPX > 0
659                         /*
660                          * The kernel may be using npx for copying or other
661                          * purposes.
662                          */
663                         if (npxdna())
664                                 goto out2;
665 #endif
666                         break;
667
668                 case T_PROTFLT:         /* general protection fault */
669                 case T_SEGNPFLT:        /* segment not present fault */
670                         /*
671                          * Invalid segment selectors and out of bounds
672                          * %eip's and %esp's can be set up in user mode.
673                          * This causes a fault in kernel mode when the
674                          * kernel tries to return to user mode.  We want
675                          * to get this fault so that we can fix the
676                          * problem here and not have to check all the
677                          * selectors and pointers when the user changes
678                          * them.
679                          */
680 #define MAYBE_DORETI_FAULT(where, whereto)                              \
681         do {                                                            \
682                 if (frame.tf_eip == (int)where) {                       \
683                         frame.tf_eip = (int)whereto;                    \
684                         goto out2;                                      \
685                 }                                                       \
686         } while (0)
687                         /*
688                          * Since we don't save %gs across an interrupt
689                          * frame this check must occur outside the intr
690                          * nesting level check.
691                          */
692                         if (frame.tf_eip == (int)cpu_switch_load_gs) {
693                                 td->td_pcb->pcb_gs = 0;
694                                 MAKEMPSAFE(have_mplock);
695                                 ksignal(p, SIGBUS);
696                                 goto out2;
697                         }
698                         if (mycpu->gd_intr_nesting_level == 0) {
699                                 /*
700                                  * Invalid %fs's and %gs's can be created using
701                                  * procfs or PT_SETREGS or by invalidating the
702                                  * underlying LDT entry.  This causes a fault
703                                  * in kernel mode when the kernel attempts to
704                                  * switch contexts.  Lose the bad context
705                                  * (XXX) so that we can continue, and generate
706                                  * a signal.
707                                  */
708                                 MAYBE_DORETI_FAULT(doreti_iret,
709                                                    doreti_iret_fault);
710                                 MAYBE_DORETI_FAULT(doreti_popl_ds,
711                                                    doreti_popl_ds_fault);
712                                 MAYBE_DORETI_FAULT(doreti_popl_es,
713                                                    doreti_popl_es_fault);
714                                 MAYBE_DORETI_FAULT(doreti_popl_fs,
715                                                    doreti_popl_fs_fault);
716                                 if (td->td_pcb->pcb_onfault) {
717                                         frame.tf_eip = 
718                                             (register_t)td->td_pcb->pcb_onfault;
719                                         goto out2;
720                                 }
721                         }
722                         break;
723
724                 case T_TSSFLT:
725                         /*
726                          * PSL_NT can be set in user mode and isn't cleared
727                          * automatically when the kernel is entered.  This
728                          * causes a TSS fault when the kernel attempts to
729                          * `iret' because the TSS link is uninitialized.  We
730                          * want to get this fault so that we can fix the
731                          * problem here and not every time the kernel is
732                          * entered.
733                          */
734                         if (frame.tf_eflags & PSL_NT) {
735                                 frame.tf_eflags &= ~PSL_NT;
736                                 goto out2;
737                         }
738                         break;
739
740                 case T_TRCTRAP:  /* trace trap */
741                         if (frame.tf_eip == (int)IDTVEC(syscall)) {
742                                 /*
743                                  * We've just entered system mode via the
744                                  * syscall lcall.  Continue single stepping
745                                  * silently until the syscall handler has
746                                  * saved the flags.
747                                  */
748                                 goto out2;
749                         }
750                         if (frame.tf_eip == (int)IDTVEC(syscall) + 1) {
751                                 /*
752                                  * The syscall handler has now saved the
753                                  * flags.  Stop single stepping it.
754                                  */
755                                 frame.tf_eflags &= ~PSL_T;
756                                 goto out2;
757                         }
758                         /*
759                          * Ignore debug register trace traps due to
760                          * accesses in the user's address space, which
761                          * can happen under several conditions such as
762                          * if a user sets a watchpoint on a buffer and
763                          * then passes that buffer to a system call.
764                          * We still want to get TRCTRAPS for addresses
765                          * in kernel space because that is useful when
766                          * debugging the kernel.
767                          */
768                         if (user_dbreg_trap()) {
769                                 /*
770                                  * Reset breakpoint bits because the
771                                  * processor doesn't
772                                  */
773                                 load_dr6(rdr6() & 0xfffffff0);
774                                 goto out2;
775                         }
776                         /*
777                          * Fall through (TRCTRAP kernel mode, kernel address)
778                          */
779                 case T_BPTFLT:
780                         /*
781                          * If DDB is enabled, let it handle the debugger trap.
782                          * Otherwise, debugger traps "can't happen".
783                          */
784 #ifdef DDB
785                         MAKEMPSAFE(have_mplock);
786                         if (kdb_trap (type, 0, &frame))
787                                 goto out2;
788 #endif
789                         break;
790
791 #if NISA > 0
792                 case T_NMI:
793                         MAKEMPSAFE(have_mplock);
794 #ifdef POWERFAIL_NMI
795 #ifndef TIMER_FREQ
796 #  define TIMER_FREQ 1193182
797 #endif
798         handle_powerfail:
799                 {
800                   static unsigned lastalert = 0;
801
802                   if(time_second - lastalert > 10)
803                     {
804                       log(LOG_WARNING, "NMI: power fail\n");
805                       sysbeep(TIMER_FREQ/880, hz);
806                       lastalert = time_second;
807                     }
808                     /* YYY mp count */
809                   goto out2;
810                 }
811 #else /* !POWERFAIL_NMI */
812                         /* machine/parity/power fail/"kitchen sink" faults */
813                         if (isa_nmi(code) == 0) {
814 #ifdef DDB
815                                 /*
816                                  * NMI can be hooked up to a pushbutton
817                                  * for debugging.
818                                  */
819                                 if (ddb_on_nmi) {
820                                         printf ("NMI ... going to debugger\n");
821                                         kdb_trap (type, 0, &frame);
822                                 }
823 #endif /* DDB */
824                                 goto out2;
825                         } else if (panic_on_nmi == 0)
826                                 goto out2;
827                         /* FALL THROUGH */
828 #endif /* POWERFAIL_NMI */
829 #endif /* NISA > 0 */
830                 }
831
832                 MAKEMPSAFE(have_mplock);
833                 trap_fatal(&frame, eva);
834                 goto out2;
835         }
836
837         /* Translate fault for emulators (e.g. Linux) */
838         if (*p->p_sysent->sv_transtrap)
839                 i = (*p->p_sysent->sv_transtrap)(i, type);
840
841         MAKEMPSAFE(have_mplock);
842         trapsignal(p, i, ucode);
843
844 #ifdef DEBUG
845         if (type <= MAX_TRAP_MSG) {
846                 uprintf("fatal process exception: %s",
847                         trap_msg[type]);
848                 if ((type == T_PAGEFLT) || (type == T_PROTFLT))
849                         uprintf(", fault VA = 0x%lx", (u_long)eva);
850                 uprintf("\n");
851         }
852 #endif
853
854 out:
855 #ifdef SMP
856         if (ISPL(frame.tf_cs) == SEL_UPL)
857                 KASSERT(td->td_mpcount == have_mplock, ("badmpcount trap/end from %p", (void *)frame.tf_eip));
858 #endif
859         userret(lp, &frame, sticks);
860         userexit(lp);
861 out2:   ;
862 #ifdef SMP
863         if (have_mplock)
864                 rel_mplock();
865 #endif
866 #ifdef INVARIANTS
867         KASSERT(crit_count == (td->td_pri & ~TDPRI_MASK),
868                 ("syscall: critical section count mismatch! %d/%d",
869                 crit_count / TDPRI_CRIT, td->td_pri / TDPRI_CRIT));
870 #endif
871 }
872
873 #ifdef notyet
874 /*
875  * This version doesn't allow a page fault to user space while
876  * in the kernel. The rest of the kernel needs to be made "safe"
877  * before this can be used. I think the only things remaining
878  * to be made safe is the process tracing/debugging code.
879  */
880 static int
881 trap_pfault(frame, usermode, eva)
882         struct trapframe *frame;
883         int usermode;
884         vm_offset_t eva;
885 {
886         vm_offset_t va;
887         struct vmspace *vm = NULL;
888         vm_map_t map = 0;
889         int rv = 0;
890         vm_prot_t ftype;
891         thread_t td = curthread;
892         struct proc *p = td->td_proc;   /* may be NULL */
893
894         if (frame->tf_err & PGEX_W)
895                 ftype = VM_PROT_WRITE;
896         else
897                 ftype = VM_PROT_READ;
898
899         va = trunc_page(eva);
900         if (va < VM_MIN_KERNEL_ADDRESS) {
901                 vm_offset_t v;
902                 vm_page_t mpte;
903
904                 if (p == NULL ||
905                     (!usermode && va < VM_MAXUSER_ADDRESS &&
906                      (td->td_gd->gd_intr_nesting_level != 0 || 
907                       td->td_pcb->pcb_onfault == NULL))) {
908                         trap_fatal(frame, eva);
909                         return (-1);
910                 }
911
912                 /*
913                  * This is a fault on non-kernel virtual memory.
914                  * vm is initialized above to NULL. If curproc is NULL
915                  * or curproc->p_vmspace is NULL the fault is fatal.
916                  */
917                 vm = p->p_vmspace;
918                 if (vm == NULL)
919                         goto nogo;
920
921                 map = &vm->vm_map;
922
923                 /*
924                  * Keep swapout from messing with us during this
925                  *      critical time.
926                  */
927                 ++p->p_lock;
928
929                 /*
930                  * Grow the stack if necessary
931                  */
932                 /* grow_stack returns false only if va falls into
933                  * a growable stack region and the stack growth
934                  * fails.  It returns true if va was not within
935                  * a growable stack region, or if the stack 
936                  * growth succeeded.
937                  */
938                 if (!grow_stack (p, va)) {
939                         rv = KERN_FAILURE;
940                         --p->p_lock;
941                         goto nogo;
942                 }
943                 
944                 /* Fault in the user page: */
945                 rv = vm_fault(map, va, ftype,
946                               (ftype & VM_PROT_WRITE) ? VM_FAULT_DIRTY
947                                                       : VM_FAULT_NORMAL);
948
949                 --p->p_lock;
950         } else {
951                 /*
952                  * Don't allow user-mode faults in kernel address space.
953                  */
954                 if (usermode)
955                         goto nogo;
956
957                 /*
958                  * Since we know that kernel virtual address addresses
959                  * always have pte pages mapped, we just have to fault
960                  * the page.
961                  */
962                 rv = vm_fault(kernel_map, va, ftype, VM_FAULT_NORMAL);
963         }
964
965         if (rv == KERN_SUCCESS)
966                 return (0);
967 nogo:
968         if (!usermode) {
969                 if (mtd->td_gd->gd_intr_nesting_level == 0 && 
970                     td->td_pcb->pcb_onfault) {
971                         frame->tf_eip = (register_t)td->td_pcb->pcb_onfault;
972                         return (0);
973                 }
974                 trap_fatal(frame, eva);
975                 return (-1);
976         }
977
978         /* kludge to pass faulting virtual address to sendsig */
979         frame->tf_err = eva;
980
981         return((rv == KERN_PROTECTION_FAILURE) ? SIGBUS : SIGSEGV);
982 }
983 #endif
984
985 int
986 trap_pfault(frame, usermode, eva)
987         struct trapframe *frame;
988         int usermode;
989         vm_offset_t eva;
990 {
991         vm_offset_t va;
992         struct vmspace *vm = NULL;
993         vm_map_t map = 0;
994         int rv = 0;
995         vm_prot_t ftype;
996         thread_t td = curthread;
997         struct proc *p = td->td_proc;
998
999         va = trunc_page(eva);
1000         if (va >= KERNBASE) {
1001                 /*
1002                  * Don't allow user-mode faults in kernel address space.
1003                  * An exception:  if the faulting address is the invalid
1004                  * instruction entry in the IDT, then the Intel Pentium
1005                  * F00F bug workaround was triggered, and we need to
1006                  * treat it is as an illegal instruction, and not a page
1007                  * fault.
1008                  */
1009 #if defined(I586_CPU) && !defined(NO_F00F_HACK)
1010                 if ((eva == (unsigned int)&idt[6]) && has_f00f_bug) {
1011                         frame->tf_trapno = T_PRIVINFLT;
1012                         return -2;
1013                 }
1014 #endif
1015                 if (usermode)
1016                         goto nogo;
1017
1018                 map = kernel_map;
1019         } else {
1020                 /*
1021                  * This is a fault on non-kernel virtual memory.
1022                  * vm is initialized above to NULL. If curproc is NULL
1023                  * or curproc->p_vmspace is NULL the fault is fatal.
1024                  */
1025                 if (p != NULL)
1026                         vm = p->p_vmspace;
1027
1028                 if (vm == NULL)
1029                         goto nogo;
1030
1031                 map = &vm->vm_map;
1032         }
1033
1034         if (frame->tf_err & PGEX_W)
1035                 ftype = VM_PROT_WRITE;
1036         else
1037                 ftype = VM_PROT_READ;
1038
1039         if (map != kernel_map) {
1040                 /*
1041                  * Keep swapout from messing with us during this
1042                  *      critical time.
1043                  */
1044                 ++p->p_lock;
1045
1046                 /*
1047                  * Grow the stack if necessary
1048                  */
1049                 /* grow_stack returns false only if va falls into
1050                  * a growable stack region and the stack growth
1051                  * fails.  It returns true if va was not within
1052                  * a growable stack region, or if the stack 
1053                  * growth succeeded.
1054                  */
1055                 if (!grow_stack (p, va)) {
1056                         rv = KERN_FAILURE;
1057                         --p->p_lock;
1058                         goto nogo;
1059                 }
1060
1061                 /* Fault in the user page: */
1062                 rv = vm_fault(map, va, ftype,
1063                               (ftype & VM_PROT_WRITE) ? VM_FAULT_DIRTY
1064                                                       : VM_FAULT_NORMAL);
1065
1066                 --p->p_lock;
1067         } else {
1068                 /*
1069                  * Don't have to worry about process locking or stacks in the kernel.
1070                  */
1071                 rv = vm_fault(map, va, ftype, VM_FAULT_NORMAL);
1072         }
1073
1074         if (rv == KERN_SUCCESS)
1075                 return (0);
1076 nogo:
1077         if (!usermode) {
1078                 if (td->td_gd->gd_intr_nesting_level == 0 &&
1079                     td->td_pcb->pcb_onfault) {
1080                         frame->tf_eip = (register_t)td->td_pcb->pcb_onfault;
1081                         return (0);
1082                 }
1083                 trap_fatal(frame, eva);
1084                 return (-1);
1085         }
1086
1087         /* kludge to pass faulting virtual address to sendsig */
1088         frame->tf_err = eva;
1089
1090         return((rv == KERN_PROTECTION_FAILURE) ? SIGBUS : SIGSEGV);
1091 }
1092
1093 static void
1094 trap_fatal(frame, eva)
1095         struct trapframe *frame;
1096         vm_offset_t eva;
1097 {
1098         int code, type, ss, esp;
1099         struct soft_segment_descriptor softseg;
1100
1101         code = frame->tf_err;
1102         type = frame->tf_trapno;
1103         sdtossd(&gdt[mycpu->gd_cpuid * NGDT + IDXSEL(frame->tf_cs & 0xffff)].sd, &softseg);
1104
1105         if (type <= MAX_TRAP_MSG)
1106                 printf("\n\nFatal trap %d: %s while in %s mode\n",
1107                         type, trap_msg[type],
1108                         frame->tf_eflags & PSL_VM ? "vm86" :
1109                         ISPL(frame->tf_cs) == SEL_UPL ? "user" : "kernel");
1110 #ifdef SMP
1111         /* three separate prints in case of a trap on an unmapped page */
1112         printf("mp_lock = %08x; ", mp_lock);
1113         printf("cpuid = %d; ", mycpu->gd_cpuid);
1114         printf("lapic.id = %08x\n", lapic.id);
1115 #endif
1116         if (type == T_PAGEFLT) {
1117                 printf("fault virtual address   = 0x%x\n", eva);
1118                 printf("fault code              = %s %s, %s\n",
1119                         code & PGEX_U ? "user" : "supervisor",
1120                         code & PGEX_W ? "write" : "read",
1121                         code & PGEX_P ? "protection violation" : "page not present");
1122         }
1123         printf("instruction pointer     = 0x%x:0x%x\n",
1124                frame->tf_cs & 0xffff, frame->tf_eip);
1125         if ((ISPL(frame->tf_cs) == SEL_UPL) || (frame->tf_eflags & PSL_VM)) {
1126                 ss = frame->tf_ss & 0xffff;
1127                 esp = frame->tf_esp;
1128         } else {
1129                 ss = GSEL(GDATA_SEL, SEL_KPL);
1130                 esp = (int)&frame->tf_esp;
1131         }
1132         printf("stack pointer           = 0x%x:0x%x\n", ss, esp);
1133         printf("frame pointer           = 0x%x:0x%x\n", ss, frame->tf_ebp);
1134         printf("code segment            = base 0x%x, limit 0x%x, type 0x%x\n",
1135                softseg.ssd_base, softseg.ssd_limit, softseg.ssd_type);
1136         printf("                        = DPL %d, pres %d, def32 %d, gran %d\n",
1137                softseg.ssd_dpl, softseg.ssd_p, softseg.ssd_def32,
1138                softseg.ssd_gran);
1139         printf("processor eflags        = ");
1140         if (frame->tf_eflags & PSL_T)
1141                 printf("trace trap, ");
1142         if (frame->tf_eflags & PSL_I)
1143                 printf("interrupt enabled, ");
1144         if (frame->tf_eflags & PSL_NT)
1145                 printf("nested task, ");
1146         if (frame->tf_eflags & PSL_RF)
1147                 printf("resume, ");
1148         if (frame->tf_eflags & PSL_VM)
1149                 printf("vm86, ");
1150         printf("IOPL = %d\n", (frame->tf_eflags & PSL_IOPL) >> 12);
1151         printf("current process         = ");
1152         if (curproc) {
1153                 printf("%lu (%s)\n",
1154                     (u_long)curproc->p_pid, curproc->p_comm ?
1155                     curproc->p_comm : "");
1156         } else {
1157                 printf("Idle\n");
1158         }
1159         printf("current thread          = pri %d ", curthread->td_pri);
1160         if (curthread->td_pri >= TDPRI_CRIT)
1161                 printf("(CRIT)");
1162         printf("\n");
1163 #ifdef SMP
1164 /**
1165  *  XXX FIXME:
1166  *      we probably SHOULD have stopped the other CPUs before now!
1167  *      another CPU COULD have been touching cpl at this moment...
1168  */
1169         printf(" <- SMP: XXX");
1170 #endif
1171         printf("\n");
1172
1173 #ifdef KDB
1174         if (kdb_trap(&psl))
1175                 return;
1176 #endif
1177 #ifdef DDB
1178         if ((debugger_on_panic || db_active) && kdb_trap(type, code, frame))
1179                 return;
1180 #endif
1181         printf("trap number             = %d\n", type);
1182         if (type <= MAX_TRAP_MSG)
1183                 panic("%s", trap_msg[type]);
1184         else
1185                 panic("unknown/reserved trap");
1186 }
1187
1188 /*
1189  * Double fault handler. Called when a fault occurs while writing
1190  * a frame for a trap/exception onto the stack. This usually occurs
1191  * when the stack overflows (such is the case with infinite recursion,
1192  * for example).
1193  *
1194  * XXX Note that the current PTD gets replaced by IdlePTD when the
1195  * task switch occurs. This means that the stack that was active at
1196  * the time of the double fault is not available at <kstack> unless
1197  * the machine was idle when the double fault occurred. The downside
1198  * of this is that "trace <ebp>" in ddb won't work.
1199  */
1200 void
1201 dblfault_handler()
1202 {
1203         struct mdglobaldata *gd = mdcpu;
1204
1205         printf("\nFatal double fault:\n");
1206         printf("eip = 0x%x\n", gd->gd_common_tss.tss_eip);
1207         printf("esp = 0x%x\n", gd->gd_common_tss.tss_esp);
1208         printf("ebp = 0x%x\n", gd->gd_common_tss.tss_ebp);
1209 #ifdef SMP
1210         /* three separate prints in case of a trap on an unmapped page */
1211         printf("mp_lock = %08x; ", mp_lock);
1212         printf("cpuid = %d; ", mycpu->gd_cpuid);
1213         printf("lapic.id = %08x\n", lapic.id);
1214 #endif
1215         panic("double fault");
1216 }
1217
1218 /*
1219  * Compensate for 386 brain damage (missing URKR).
1220  * This is a little simpler than the pagefault handler in trap() because
1221  * it the page tables have already been faulted in and high addresses
1222  * are thrown out early for other reasons.
1223  */
1224 int trapwrite(addr)
1225         unsigned addr;
1226 {
1227         struct proc *p;
1228         vm_offset_t va;
1229         struct vmspace *vm;
1230         int rv;
1231
1232         va = trunc_page((vm_offset_t)addr);
1233         /*
1234          * XXX - MAX is END.  Changed > to >= for temp. fix.
1235          */
1236         if (va >= VM_MAXUSER_ADDRESS)
1237                 return (1);
1238
1239         p = curproc;
1240         vm = p->p_vmspace;
1241
1242         ++p->p_lock;
1243
1244         if (!grow_stack (p, va)) {
1245                 --p->p_lock;
1246                 return (1);
1247         }
1248
1249         /*
1250          * fault the data page
1251          */
1252         rv = vm_fault(&vm->vm_map, va, VM_PROT_WRITE, VM_FAULT_DIRTY);
1253
1254         --p->p_lock;
1255
1256         if (rv != KERN_SUCCESS)
1257                 return 1;
1258
1259         return (0);
1260 }
1261
1262 /*
1263  *      syscall2 -      MP aware system call request C handler
1264  *
1265  *      A system call is essentially treated as a trap except that the
1266  *      MP lock is not held on entry or return.  We are responsible for
1267  *      obtaining the MP lock if necessary and for handling ASTs
1268  *      (e.g. a task switch) prior to return.
1269  *
1270  *      In general, only simple access and manipulation of curproc and
1271  *      the current stack is allowed without having to hold MP lock.
1272  *
1273  *      MPSAFE - note that large sections of this routine are run without
1274  *               the MP lock.
1275  */
1276
1277 void
1278 syscall2(struct trapframe frame)
1279 {
1280         struct thread *td = curthread;
1281         struct proc *p = td->td_proc;
1282         struct lwp *lp = td->td_lwp;
1283         caddr_t params;
1284         struct sysent *callp;
1285         register_t orig_tf_eflags;
1286         int sticks;
1287         int error;
1288         int narg;
1289 #ifdef INVARIANTS
1290         int crit_count = td->td_pri & ~TDPRI_MASK;
1291 #endif
1292 #ifdef SMP
1293         int have_mplock = 0;
1294 #endif
1295         u_int code;
1296         union sysunion args;
1297
1298 #ifdef DIAGNOSTIC
1299         if (ISPL(frame.tf_cs) != SEL_UPL) {
1300                 get_mplock();
1301                 panic("syscall");
1302                 /* NOT REACHED */
1303         }
1304 #endif
1305
1306 #ifdef SMP
1307         KASSERT(td->td_mpcount == 0, ("badmpcount syscall2 from %p", (void *)frame.tf_eip));
1308         if (syscall_mpsafe == 0)
1309                 MAKEMPSAFE(have_mplock);
1310 #endif
1311         userenter(td);          /* lazy raise our priority */
1312
1313         sticks = (int)td->td_sticks;
1314
1315         lp->lwp_md.md_regs = &frame;
1316         params = (caddr_t)frame.tf_esp + sizeof(int);
1317         code = frame.tf_eax;
1318         orig_tf_eflags = frame.tf_eflags;
1319
1320         if (p->p_sysent->sv_prepsyscall) {
1321                 (*p->p_sysent->sv_prepsyscall)(
1322                         &frame, (int *)(&args.nosys.sysmsg + 1),
1323                         &code, &params);
1324         } else {
1325                 /*
1326                  * Need to check if this is a 32 bit or 64 bit syscall.
1327                  * fuword is MP aware.
1328                  */
1329                 if (code == SYS_syscall) {
1330                         /*
1331                          * Code is first argument, followed by actual args.
1332                          */
1333                         code = fuword(params);
1334                         params += sizeof(int);
1335                 } else if (code == SYS___syscall) {
1336                         /*
1337                          * Like syscall, but code is a quad, so as to maintain
1338                          * quad alignment for the rest of the arguments.
1339                          */
1340                         code = fuword(params);
1341                         params += sizeof(quad_t);
1342                 }
1343         }
1344
1345         code &= p->p_sysent->sv_mask;
1346         if (code >= p->p_sysent->sv_size)
1347                 callp = &p->p_sysent->sv_table[0];
1348         else
1349                 callp = &p->p_sysent->sv_table[code];
1350
1351         narg = callp->sy_narg & SYF_ARGMASK;
1352
1353         /*
1354          * copyin is MP aware, but the tracing code is not
1355          */
1356         if (narg && params) {
1357                 error = copyin(params, (caddr_t)(&args.nosys.sysmsg + 1),
1358                                 narg * sizeof(register_t));
1359                 if (error) {
1360 #ifdef KTRACE
1361                         if (KTRPOINT(td, KTR_SYSCALL)) {
1362                                 MAKEMPSAFE(have_mplock);
1363                                 
1364                                 ktrsyscall(p, code, narg,
1365                                         (void *)(&args.nosys.sysmsg + 1));
1366                         }
1367 #endif
1368                         goto bad;
1369                 }
1370         }
1371
1372 #ifdef KTRACE
1373         if (KTRPOINT(td, KTR_SYSCALL)) {
1374                 MAKEMPSAFE(have_mplock);
1375                 ktrsyscall(p, code, narg, (void *)(&args.nosys.sysmsg + 1));
1376         }
1377 #endif
1378
1379         /*
1380          * For traditional syscall code edx is left untouched when 32 bit
1381          * results are returned.  Since edx is loaded from fds[1] when the 
1382          * system call returns we pre-set it here.
1383          */
1384         args.sysmsg_fds[0] = 0;
1385         args.sysmsg_fds[1] = frame.tf_edx;
1386
1387         STOPEVENT(p, S_SCE, narg);      /* MP aware */
1388
1389 #ifdef SMP
1390         /*
1391          * Try to run the syscall without the MP lock if the syscall
1392          * is MP safe.  We have to obtain the MP lock no matter what if 
1393          * we are ktracing
1394          */
1395         if ((callp->sy_narg & SYF_MPSAFE) == 0)
1396                 MAKEMPSAFE(have_mplock);
1397 #endif
1398
1399         error = (*callp->sy_call)(&args);
1400
1401         /*
1402          * MP SAFE (we may or may not have the MP lock at this point)
1403          */
1404         switch (error) {
1405         case 0:
1406                 /*
1407                  * Reinitialize proc pointer `p' as it may be different
1408                  * if this is a child returning from fork syscall.
1409                  */
1410                 p = curproc;
1411                 lp = curthread->td_lwp;
1412                 frame.tf_eax = args.sysmsg_fds[0];
1413                 frame.tf_edx = args.sysmsg_fds[1];
1414                 frame.tf_eflags &= ~PSL_C;
1415                 break;
1416         case ERESTART:
1417                 /*
1418                  * Reconstruct pc, assuming lcall $X,y is 7 bytes,
1419                  * int 0x80 is 2 bytes. We saved this in tf_err.
1420                  */
1421                 frame.tf_eip -= frame.tf_err;
1422                 break;
1423         case EJUSTRETURN:
1424                 break;
1425         case EASYNC:
1426                 panic("Unexpected EASYNC return value (for now)");
1427         default:
1428 bad:
1429                 if (p->p_sysent->sv_errsize) {
1430                         if (error >= p->p_sysent->sv_errsize)
1431                                 error = -1;     /* XXX */
1432                         else
1433                                 error = p->p_sysent->sv_errtbl[error];
1434                 }
1435                 frame.tf_eax = error;
1436                 frame.tf_eflags |= PSL_C;
1437                 break;
1438         }
1439
1440         /*
1441          * Traced syscall.  trapsignal() is not MP aware.
1442          */
1443         if ((orig_tf_eflags & PSL_T) && !(orig_tf_eflags & PSL_VM)) {
1444                 MAKEMPSAFE(have_mplock);
1445                 frame.tf_eflags &= ~PSL_T;
1446                 trapsignal(p, SIGTRAP, 0);
1447         }
1448
1449         /*
1450          * Handle reschedule and other end-of-syscall issues
1451          */
1452         userret(lp, &frame, sticks);
1453
1454 #ifdef KTRACE
1455         if (KTRPOINT(td, KTR_SYSRET)) {
1456                 MAKEMPSAFE(have_mplock);
1457                 ktrsysret(p, code, error, args.sysmsg_result);
1458         }
1459 #endif
1460
1461         /*
1462          * This works because errno is findable through the
1463          * register set.  If we ever support an emulation where this
1464          * is not the case, this code will need to be revisited.
1465          */
1466         STOPEVENT(p, S_SCX, code);
1467
1468         userexit(lp);
1469 #ifdef SMP
1470         /*
1471          * Release the MP lock if we had to get it
1472          */
1473         KASSERT(td->td_mpcount == have_mplock, 
1474                 ("badmpcount syscall2/end from %p", (void *)frame.tf_eip));
1475         if (have_mplock)
1476                 rel_mplock();
1477 #endif
1478 #ifdef INVARIANTS
1479         KASSERT(crit_count == (td->td_pri & ~TDPRI_MASK), 
1480                 ("syscall: critical section count mismatch! %d/%d",
1481                 crit_count / TDPRI_CRIT, td->td_pri / TDPRI_CRIT));
1482 #endif
1483 }
1484
1485 /*
1486  * Simplified back end of syscall(), used when returning from fork()
1487  * directly into user mode.  MP lock is held on entry and should be
1488  * released on return.  This code will return back into the fork
1489  * trampoline code which then runs doreti.
1490  */
1491 void
1492 fork_return(p, frame)
1493         struct proc *p;
1494         struct trapframe frame;
1495 {
1496         struct lwp *lp;
1497
1498         KKASSERT(p->p_nthreads == 1);
1499
1500         lp = LIST_FIRST(&p->p_lwps);
1501
1502         frame.tf_eax = 0;               /* Child returns zero */
1503         frame.tf_eflags &= ~PSL_C;      /* success */
1504         frame.tf_edx = 1;
1505
1506         /*
1507          * Newly forked processes are given a kernel priority.  We have to
1508          * adjust the priority to a normal user priority and fake entry
1509          * into the kernel (call userenter()) to install a passive release
1510          * function just in case userret() decides to stop the process.  This
1511          * can occur when ^Z races a fork.  If we do not install the passive
1512          * release function the current process designation will not be
1513          * released when the thread goes to sleep.
1514          */
1515         lwkt_setpri_self(TDPRI_USER_NORM);
1516         userenter(lp->lwp_thread);
1517         userret(lp, &frame, 0);
1518 #ifdef KTRACE
1519         if (KTRPOINT(lp->lwp_thread, KTR_SYSRET))
1520                 ktrsysret(p, SYS_fork, 0, 0);
1521 #endif
1522         p->p_flag |= P_PASSIVE_ACQ;
1523         userexit(lp);
1524         p->p_flag &= ~P_PASSIVE_ACQ;
1525 #ifdef SMP
1526         KKASSERT(lp->lwp_thread->td_mpcount == 1);
1527         rel_mplock();
1528 #endif
1529 }