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