kernel - Change allocvnode() to not recursively block freeing vnodes
[dragonfly.git] / sys / platform / pc64 / x86_64 / trap.c
1 /*-
2  * Copyright (c) 1990, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  * Copyright (C) 1994, David Greenman
5  * Copyright (c) 2008 The DragonFly Project.
6  * Copyright (c) 2008 Jordan Gordeev.
7  *
8  * This code is derived from software contributed to Berkeley by
9  * the University of Utah, and William Jolitz.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. All advertising materials mentioning features or use of this software
20  *    must display the following acknowledgement:
21  *      This product includes software developed by the University of
22  *      California, Berkeley and its contributors.
23  * 4. Neither the name of the University nor the names of its contributors
24  *    may be used to endorse or promote products derived from this software
25  *    without specific prior written permission.
26  *
27  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37  * SUCH DAMAGE.
38  *
39  * from: @(#)trap.c     7.4 (Berkeley) 5/13/91
40  * $FreeBSD: src/sys/i386/i386/trap.c,v 1.147.2.11 2003/02/27 19:09:59 luoqi Exp $
41  */
42
43 /*
44  * x86_64 Trap and System call handling
45  */
46
47 #include "use_isa.h"
48
49 #include "opt_ddb.h"
50 #include "opt_ktrace.h"
51
52 #include <machine/frame.h>
53 #include <sys/param.h>
54 #include <sys/systm.h>
55 #include <sys/kernel.h>
56 #include <sys/kerneldump.h>
57 #include <sys/proc.h>
58 #include <sys/pioctl.h>
59 #include <sys/types.h>
60 #include <sys/signal2.h>
61 #include <sys/syscall.h>
62 #include <sys/sysctl.h>
63 #include <sys/sysent.h>
64 #include <sys/systm.h>
65 #ifdef KTRACE
66 #include <sys/ktrace.h>
67 #endif
68 #include <sys/ktr.h>
69 #include <sys/sysmsg.h>
70 #include <sys/sysproto.h>
71 #include <sys/sysunion.h>
72
73 #include <vm/pmap.h>
74 #include <vm/vm.h>
75 #include <vm/vm_extern.h>
76 #include <vm/vm_kern.h>
77 #include <vm/vm_param.h>
78 #include <machine/cpu.h>
79 #include <machine/pcb.h>
80 #include <machine/smp.h>
81 #include <machine/thread.h>
82 #include <machine/clock.h>
83 #include <machine/vmparam.h>
84 #include <machine/md_var.h>
85 #include <machine_base/isa/isa_intr.h>
86 #include <machine_base/apic/lapic.h>
87
88 #include <ddb/ddb.h>
89
90 #include <sys/thread2.h>
91 #include <sys/mplock2.h>
92
93 #define MAKEMPSAFE(have_mplock)                 \
94         if (have_mplock == 0) {                 \
95                 get_mplock();                   \
96                 have_mplock = 1;                \
97         }
98
99 extern void trap(struct trapframe *frame);
100
101 static int trap_pfault(struct trapframe *, int);
102 static void trap_fatal(struct trapframe *, vm_offset_t);
103 void dblfault_handler(struct trapframe *frame);
104
105 #define MAX_TRAP_MSG            30
106 static char *trap_msg[] = {
107         "",                                     /*  0 unused */
108         "privileged instruction fault",         /*  1 T_PRIVINFLT */
109         "",                                     /*  2 unused */
110         "breakpoint instruction fault",         /*  3 T_BPTFLT */
111         "",                                     /*  4 unused */
112         "",                                     /*  5 unused */
113         "arithmetic trap",                      /*  6 T_ARITHTRAP */
114         "system forced exception",              /*  7 T_ASTFLT */
115         "",                                     /*  8 unused */
116         "general protection fault",             /*  9 T_PROTFLT */
117         "trace trap",                           /* 10 T_TRCTRAP */
118         "",                                     /* 11 unused */
119         "page fault",                           /* 12 T_PAGEFLT */
120         "",                                     /* 13 unused */
121         "alignment fault",                      /* 14 T_ALIGNFLT */
122         "",                                     /* 15 unused */
123         "",                                     /* 16 unused */
124         "",                                     /* 17 unused */
125         "integer divide fault",                 /* 18 T_DIVIDE */
126         "non-maskable interrupt trap",          /* 19 T_NMI */
127         "overflow trap",                        /* 20 T_OFLOW */
128         "FPU bounds check fault",               /* 21 T_BOUND */
129         "FPU device not available",             /* 22 T_DNA */
130         "double fault",                         /* 23 T_DOUBLEFLT */
131         "FPU operand fetch fault",              /* 24 T_FPOPFLT */
132         "invalid TSS fault",                    /* 25 T_TSSFLT */
133         "segment not present fault",            /* 26 T_SEGNPFLT */
134         "stack fault",                          /* 27 T_STKFLT */
135         "machine check trap",                   /* 28 T_MCHK */
136         "SIMD floating-point exception",        /* 29 T_XMMFLT */
137         "reserved (unknown) fault",             /* 30 T_RESERVED */
138 };
139
140 #ifdef DDB
141 static int ddb_on_nmi = 1;
142 SYSCTL_INT(_machdep, OID_AUTO, ddb_on_nmi, CTLFLAG_RW,
143         &ddb_on_nmi, 0, "Go to DDB on NMI");
144 static int ddb_on_seg_fault = 0;
145 SYSCTL_INT(_machdep, OID_AUTO, ddb_on_seg_fault, CTLFLAG_RW,
146         &ddb_on_seg_fault, 0, "Go to DDB on user seg-fault");
147 static int freeze_on_seg_fault = 0;
148 SYSCTL_INT(_machdep, OID_AUTO, freeze_on_seg_fault, CTLFLAG_RW,
149         &freeze_on_seg_fault, 0, "Go to DDB on user seg-fault");
150 #endif
151 static int panic_on_nmi = 1;
152 SYSCTL_INT(_machdep, OID_AUTO, panic_on_nmi, CTLFLAG_RW,
153         &panic_on_nmi, 0, "Panic on NMI");
154 static int fast_release;
155 SYSCTL_INT(_machdep, OID_AUTO, fast_release, CTLFLAG_RW,
156         &fast_release, 0, "Passive Release was optimal");
157 static int slow_release;
158 SYSCTL_INT(_machdep, OID_AUTO, slow_release, CTLFLAG_RW,
159         &slow_release, 0, "Passive Release was nonoptimal");
160
161 /*
162  * System call debugging records the worst-case system call
163  * overhead (inclusive of blocking), but may be inaccurate.
164  */
165 /*#define SYSCALL_DEBUG*/
166 #ifdef SYSCALL_DEBUG
167 uint64_t SysCallsWorstCase[SYS_MAXSYSCALL];
168 #endif
169
170 /*
171  * Passively intercepts the thread switch function to increase
172  * the thread priority from a user priority to a kernel priority, reducing
173  * syscall and trap overhead for the case where no switch occurs.
174  *
175  * Synchronizes td_ucred with p_ucred.  This is used by system calls,
176  * signal handling, faults, AST traps, and anything else that enters the
177  * kernel from userland and provides the kernel with a stable read-only
178  * copy of the process ucred.
179  */
180 static __inline void
181 userenter(struct thread *curtd, struct proc *curp)
182 {
183         struct ucred *ocred;
184         struct ucred *ncred;
185
186         curtd->td_release = lwkt_passive_release;
187
188         if (curtd->td_ucred != curp->p_ucred) {
189                 ncred = crhold(curp->p_ucred);
190                 ocred = curtd->td_ucred;
191                 curtd->td_ucred = ncred;
192                 if (ocred)
193                         crfree(ocred);
194         }
195
196 #ifdef DDB
197         /*
198          * Debugging, remove top two user stack pages to catch kernel faults
199          */
200         if (freeze_on_seg_fault > 1 && curtd->td_lwp) {
201                 pmap_remove(vmspace_pmap(curtd->td_lwp->lwp_vmspace),
202                             0x00007FFFFFFFD000LU,
203                             0x0000800000000000LU);
204         }
205 #endif
206 }
207
208 /*
209  * Handle signals, upcalls, profiling, and other AST's and/or tasks that
210  * must be completed before we can return to or try to return to userland.
211  *
212  * Note that td_sticks is a 64 bit quantity, but there's no point doing 64
213  * arithmatic on the delta calculation so the absolute tick values are
214  * truncated to an integer.
215  */
216 static void
217 userret(struct lwp *lp, struct trapframe *frame, int sticks)
218 {
219         struct proc *p = lp->lwp_proc;
220         int sig;
221
222         /*
223          * Charge system time if profiling.  Note: times are in microseconds.
224          * This may do a copyout and block, so do it first even though it
225          * means some system time will be charged as user time.
226          */
227         if (p->p_flags & P_PROFIL) {
228                 addupc_task(p, frame->tf_rip,
229                         (u_int)((int)lp->lwp_thread->td_sticks - sticks));
230         }
231
232 recheck:
233         /*
234          * Specific on-return-to-usermode checks (LWP_MP_WEXIT,
235          * LWP_MP_VNLRU, etc).
236          */
237         if (lp->lwp_mpflags & LWP_MP_URETMASK)
238                 lwpuserret(lp);
239
240         /*
241          * Block here if we are in a stopped state.
242          */
243         if (p->p_stat == SSTOP || dump_stop_usertds) {
244                 lwkt_gettoken(&p->p_token);
245                 tstop();
246                 lwkt_reltoken(&p->p_token);
247                 goto recheck;
248         }
249
250         /*
251          * Post any pending upcalls.  If running a virtual kernel be sure
252          * to restore the virtual kernel's vmspace before posting the upcall.
253          */
254         if (p->p_flags & (P_SIGVTALRM | P_SIGPROF | P_UPCALLPEND)) {
255                 lwkt_gettoken(&p->p_token);
256                 if (p->p_flags & P_SIGVTALRM) {
257                         p->p_flags &= ~P_SIGVTALRM;
258                         ksignal(p, SIGVTALRM);
259                 }
260                 if (p->p_flags & P_SIGPROF) {
261                         p->p_flags &= ~P_SIGPROF;
262                         ksignal(p, SIGPROF);
263                 }
264                 if (p->p_flags & P_UPCALLPEND) {
265                         p->p_flags &= ~P_UPCALLPEND;
266                         postupcall(lp);
267                 }
268                 lwkt_reltoken(&p->p_token);
269                 goto recheck;
270         }
271
272         /*
273          * Post any pending signals.  If running a virtual kernel be sure
274          * to restore the virtual kernel's vmspace before posting the signal.
275          *
276          * WARNING!  postsig() can exit and not return.
277          */
278         if ((sig = CURSIG_TRACE(lp)) != 0) {
279                 lwkt_gettoken(&p->p_token);
280                 postsig(sig);
281                 lwkt_reltoken(&p->p_token);
282                 goto recheck;
283         }
284
285         /*
286          * block here if we are swapped out, but still process signals
287          * (such as SIGKILL).  proc0 (the swapin scheduler) is already
288          * aware of our situation, we do not have to wake it up.
289          */
290         if (p->p_flags & P_SWAPPEDOUT) {
291                 lwkt_gettoken(&p->p_token);
292                 get_mplock();
293                 p->p_flags |= P_SWAPWAIT;
294                 swapin_request();
295                 if (p->p_flags & P_SWAPWAIT)
296                         tsleep(p, PCATCH, "SWOUT", 0);
297                 p->p_flags &= ~P_SWAPWAIT;
298                 rel_mplock();
299                 lwkt_reltoken(&p->p_token);
300                 goto recheck;
301         }
302
303         /*
304          * In a multi-threaded program it is possible for a thread to change
305          * signal state during a system call which temporarily changes the
306          * signal mask.  In this case postsig() might not be run and we
307          * have to restore the mask ourselves.
308          */
309         if (lp->lwp_flags & LWP_OLDMASK) {
310                 lp->lwp_flags &= ~LWP_OLDMASK;
311                 lp->lwp_sigmask = lp->lwp_oldsigmask;
312                 goto recheck;
313         }
314 }
315
316 /*
317  * Cleanup from userenter and any passive release that might have occured.
318  * We must reclaim the current-process designation before we can return
319  * to usermode.  We also handle both LWKT and USER reschedule requests.
320  */
321 static __inline void
322 userexit(struct lwp *lp)
323 {
324         struct thread *td = lp->lwp_thread;
325         /* globaldata_t gd = td->td_gd; */
326
327         /*
328          * Handle stop requests at kernel priority.  Any requests queued
329          * after this loop will generate another AST.
330          */
331         while (lp->lwp_proc->p_stat == SSTOP) {
332                 lwkt_gettoken(&lp->lwp_proc->p_token);
333                 tstop();
334                 lwkt_reltoken(&lp->lwp_proc->p_token);
335         }
336
337         /*
338          * Reduce our priority in preparation for a return to userland.  If
339          * our passive release function was still in place, our priority was
340          * never raised and does not need to be reduced.
341          */
342         lwkt_passive_recover(td);
343
344         /* WARNING: we may have migrated cpu's */
345         /* gd = td->td_gd; */
346
347         /*
348          * Become the current user scheduled process if we aren't already,
349          * and deal with reschedule requests and other factors.
350          */
351         lp->lwp_proc->p_usched->acquire_curproc(lp);
352 }
353
354 #if !defined(KTR_KERNENTRY)
355 #define KTR_KERNENTRY   KTR_ALL
356 #endif
357 KTR_INFO_MASTER(kernentry);
358 KTR_INFO(KTR_KERNENTRY, kernentry, trap, 0,
359          "TRAP(pid %d, tid %d, trapno %ld, eva %lu)",
360          pid_t pid, lwpid_t tid,  register_t trapno, vm_offset_t eva);
361 KTR_INFO(KTR_KERNENTRY, kernentry, trap_ret, 0, "TRAP_RET(pid %d, tid %d)",
362          pid_t pid, lwpid_t tid);
363 KTR_INFO(KTR_KERNENTRY, kernentry, syscall, 0, "SYSC(pid %d, tid %d, nr %ld)",
364          pid_t pid, lwpid_t tid,  register_t trapno);
365 KTR_INFO(KTR_KERNENTRY, kernentry, syscall_ret, 0, "SYSRET(pid %d, tid %d, err %d)",
366          pid_t pid, lwpid_t tid,  int err);
367 KTR_INFO(KTR_KERNENTRY, kernentry, fork_ret, 0, "FORKRET(pid %d, tid %d)",
368          pid_t pid, lwpid_t tid);
369
370 /*
371  * Exception, fault, and trap interface to the kernel.
372  * This common code is called from assembly language IDT gate entry
373  * routines that prepare a suitable stack frame, and restore this
374  * frame after the exception has been processed.
375  *
376  * This function is also called from doreti in an interlock to handle ASTs.
377  * For example:  hardwareint->INTROUTINE->(set ast)->doreti->trap
378  *
379  * NOTE!  We have to retrieve the fault address prior to obtaining the
380  * MP lock because get_mplock() may switch out.  YYY cr2 really ought
381  * to be retrieved by the assembly code, not here.
382  *
383  * XXX gd_trap_nesting_level currently prevents lwkt_switch() from panicing
384  * if an attempt is made to switch from a fast interrupt or IPI.  This is
385  * necessary to properly take fatal kernel traps on SMP machines if
386  * get_mplock() has to block.
387  */
388
389 void
390 trap(struct trapframe *frame)
391 {
392         struct globaldata *gd = mycpu;
393         struct thread *td = gd->gd_curthread;
394         struct lwp *lp = td->td_lwp;
395         struct proc *p;
396         int sticks = 0;
397         int i = 0, ucode = 0, type, code;
398         int have_mplock = 0;
399 #ifdef INVARIANTS
400         int crit_count = td->td_critcount;
401         lwkt_tokref_t curstop = td->td_toks_stop;
402 #endif
403         vm_offset_t eva;
404
405         p = td->td_proc;
406         clear_quickret();
407
408 #ifdef DDB
409         /*
410          * We need to allow T_DNA faults when the debugger is active since
411          * some dumping paths do large bcopy() which use the floating
412          * point registers for faster copying.
413          */
414         if (db_active && frame->tf_trapno != T_DNA) {
415                 eva = (frame->tf_trapno == T_PAGEFLT ? frame->tf_addr : 0);
416                 ++gd->gd_trap_nesting_level;
417                 MAKEMPSAFE(have_mplock);
418                 trap_fatal(frame, eva);
419                 --gd->gd_trap_nesting_level;
420                 goto out2;
421         }
422 #endif
423
424         eva = 0;
425
426         if ((frame->tf_rflags & PSL_I) == 0) {
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) {
435                         MAKEMPSAFE(have_mplock);
436                         /* JG curproc can be NULL */
437                         kprintf(
438                             "pid %ld (%s): trap %d with interrupts disabled\n",
439                             (long)curproc->p_pid, curproc->p_comm, type);
440                 } else if (type != T_NMI && type != T_BPTFLT &&
441                     type != T_TRCTRAP) {
442                         /*
443                          * XXX not quite right, since this may be for a
444                          * multiple fault in user mode.
445                          */
446                         MAKEMPSAFE(have_mplock);
447                         kprintf("kernel trap %d with interrupts disabled\n",
448                             type);
449                 }
450                 cpu_enable_intr();
451         }
452
453         type = frame->tf_trapno;
454         code = frame->tf_err;
455
456         if (ISPL(frame->tf_cs) == SEL_UPL) {
457                 /* user trap */
458
459                 KTR_LOG(kernentry_trap, p->p_pid, lp->lwp_tid,
460                         frame->tf_trapno, eva);
461
462                 userenter(td, p);
463
464                 sticks = (int)td->td_sticks;
465                 KASSERT(lp->lwp_md.md_regs == frame,
466                         ("Frame mismatch %p %p", lp->lwp_md.md_regs, frame));
467
468                 switch (type) {
469                 case T_PRIVINFLT:       /* privileged instruction fault */
470                         i = SIGILL;
471                         ucode = ILL_PRVOPC;
472                         break;
473
474                 case T_BPTFLT:          /* bpt instruction fault */
475                 case T_TRCTRAP:         /* trace trap */
476                         frame->tf_rflags &= ~PSL_T;
477                         i = SIGTRAP;
478                         ucode = (type == T_TRCTRAP ? TRAP_TRACE : TRAP_BRKPT);
479                         break;
480
481                 case T_ARITHTRAP:       /* arithmetic trap */
482                         ucode = code;
483                         i = SIGFPE;
484                         break;
485
486                 case T_ASTFLT:          /* Allow process switch */
487                         mycpu->gd_cnt.v_soft++;
488                         if (mycpu->gd_reqflags & RQF_AST_OWEUPC) {
489                                 atomic_clear_int(&mycpu->gd_reqflags,
490                                                  RQF_AST_OWEUPC);
491                                 addupc_task(p, p->p_prof.pr_addr,
492                                             p->p_prof.pr_ticks);
493                         }
494                         goto out;
495
496                 case T_PROTFLT:         /* general protection fault */
497                         i = SIGBUS;
498                         ucode = BUS_OBJERR;
499                         break;
500                 case T_STKFLT:          /* stack fault */
501                 case T_SEGNPFLT:        /* segment not present fault */
502                         i = SIGBUS;
503                         ucode = BUS_ADRERR;
504                         break;
505                 case T_TSSFLT:          /* invalid TSS fault */
506                 case T_DOUBLEFLT:       /* double fault */
507                 default:
508                         i = SIGBUS;
509                         ucode = BUS_OBJERR;
510                         break;
511
512                 case T_PAGEFLT:         /* page fault */
513                         i = trap_pfault(frame, TRUE);
514                         if (frame->tf_rip == 0) {
515                                 kprintf("T_PAGEFLT: Warning %%rip == 0!\n");
516 #ifdef DDB
517                                 while (freeze_on_seg_fault)
518                                         tsleep(p, 0, "freeze", hz * 20);
519 #endif
520                         }
521                         if (i == -1 || i == 0)
522                                 goto out;
523
524
525                         if (i == SIGSEGV)
526                                 ucode = SEGV_MAPERR;
527                         else {
528                                 i = SIGSEGV;
529                                 ucode = SEGV_ACCERR;
530                         }
531                         break;
532
533                 case T_DIVIDE:          /* integer divide fault */
534                         ucode = FPE_INTDIV;
535                         i = SIGFPE;
536                         break;
537
538 #if NISA > 0
539                 case T_NMI:
540                         MAKEMPSAFE(have_mplock);
541                         /* machine/parity/power fail/"kitchen sink" faults */
542                         if (isa_nmi(code) == 0) {
543 #ifdef DDB
544                                 /*
545                                  * NMI can be hooked up to a pushbutton
546                                  * for debugging.
547                                  */
548                                 if (ddb_on_nmi) {
549                                         kprintf ("NMI ... going to debugger\n");
550                                         kdb_trap(type, 0, frame);
551                                 }
552 #endif /* DDB */
553                                 goto out2;
554                         } else if (panic_on_nmi)
555                                 panic("NMI indicates hardware failure");
556                         break;
557 #endif /* NISA > 0 */
558
559                 case T_OFLOW:           /* integer overflow fault */
560                         ucode = FPE_INTOVF;
561                         i = SIGFPE;
562                         break;
563
564                 case T_BOUND:           /* bounds check fault */
565                         ucode = FPE_FLTSUB;
566                         i = SIGFPE;
567                         break;
568
569                 case T_DNA:
570                         /*
571                          * Virtual kernel intercept - pass the DNA exception
572                          * to the virtual kernel if it asked to handle it.
573                          * This occurs when the virtual kernel is holding
574                          * onto the FP context for a different emulated
575                          * process then the one currently running.
576                          *
577                          * We must still call npxdna() since we may have
578                          * saved FP state that the virtual kernel needs
579                          * to hand over to a different emulated process.
580                          */
581                         if (lp->lwp_vkernel && lp->lwp_vkernel->ve &&
582                             (td->td_pcb->pcb_flags & FP_VIRTFP)
583                         ) {
584                                 npxdna();
585                                 break;
586                         }
587
588                         /*
589                          * The kernel may have switched out the FP unit's
590                          * state, causing the user process to take a fault
591                          * when it tries to use the FP unit.  Restore the
592                          * state here
593                          */
594                         if (npxdna())
595                                 goto out;
596                         i = SIGFPE;
597                         ucode = FPE_FPU_NP_TRAP;
598                         break;
599
600                 case T_FPOPFLT:         /* FPU operand fetch fault */
601                         ucode = ILL_COPROC;
602                         i = SIGILL;
603                         break;
604
605                 case T_XMMFLT:          /* SIMD floating-point exception */
606                         ucode = 0; /* XXX */
607                         i = SIGFPE;
608                         break;
609                 }
610         } else {
611                 /* kernel trap */
612
613                 switch (type) {
614                 case T_PAGEFLT:                 /* page fault */
615                         trap_pfault(frame, FALSE);
616                         goto out2;
617
618                 case T_DNA:
619                         /*
620                          * The kernel is apparently using fpu for copying.
621                          * XXX this should be fatal unless the kernel has
622                          * registered such use.
623                          */
624                         if (npxdna())
625                                 goto out2;
626                         break;
627
628                 case T_STKFLT:          /* stack fault */
629                         break;
630
631                 case T_PROTFLT:         /* general protection fault */
632                 case T_SEGNPFLT:        /* segment not present fault */
633                         /*
634                          * Invalid segment selectors and out of bounds
635                          * %rip's and %rsp's can be set up in user mode.
636                          * This causes a fault in kernel mode when the
637                          * kernel tries to return to user mode.  We want
638                          * to get this fault so that we can fix the
639                          * problem here and not have to check all the
640                          * selectors and pointers when the user changes
641                          * them.
642                          */
643                         if (mycpu->gd_intr_nesting_level == 0) {
644                                 /*
645                                  * NOTE: in 64-bit mode traps push rsp/ss
646                                  *       even if no ring change occurs.
647                                  */
648                                 if (td->td_pcb->pcb_onfault &&
649                                     td->td_pcb->pcb_onfault_sp ==
650                                     frame->tf_rsp) {
651                                         frame->tf_rip = (register_t)
652                                                 td->td_pcb->pcb_onfault;
653                                         goto out2;
654                                 }
655                                 if (frame->tf_rip == (long)doreti_iret) {
656                                         frame->tf_rip = (long)doreti_iret_fault;
657                                         goto out2;
658                                 }
659                         }
660                         break;
661
662                 case T_TSSFLT:
663                         /*
664                          * PSL_NT can be set in user mode and isn't cleared
665                          * automatically when the kernel is entered.  This
666                          * causes a TSS fault when the kernel attempts to
667                          * `iret' because the TSS link is uninitialized.  We
668                          * want to get this fault so that we can fix the
669                          * problem here and not every time the kernel is
670                          * entered.
671                          */
672                         if (frame->tf_rflags & PSL_NT) {
673                                 frame->tf_rflags &= ~PSL_NT;
674                                 goto out2;
675                         }
676                         break;
677
678                 case T_TRCTRAP:  /* trace trap */
679 #if 0
680                         if (frame->tf_rip == (int)IDTVEC(syscall)) {
681                                 /*
682                                  * We've just entered system mode via the
683                                  * syscall lcall.  Continue single stepping
684                                  * silently until the syscall handler has
685                                  * saved the flags.
686                                  */
687                                 goto out2;
688                         }
689                         if (frame->tf_rip == (int)IDTVEC(syscall) + 1) {
690                                 /*
691                                  * The syscall handler has now saved the
692                                  * flags.  Stop single stepping it.
693                                  */
694                                 frame->tf_rflags &= ~PSL_T;
695                                 goto out2;
696                         }
697 #endif
698
699                         /*
700                          * Ignore debug register trace traps due to
701                          * accesses in the user's address space, which
702                          * can happen under several conditions such as
703                          * if a user sets a watchpoint on a buffer and
704                          * then passes that buffer to a system call.
705                          * We still want to get TRCTRAPS for addresses
706                          * in kernel space because that is useful when
707                          * debugging the kernel.
708                          */
709 #if JG
710                         if (user_dbreg_trap()) {
711                                 /*
712                                  * Reset breakpoint bits because the
713                                  * processor doesn't
714                                  */
715                                 /* XXX check upper bits here */
716                                 load_dr6(rdr6() & 0xfffffff0);
717                                 goto out2;
718                         }
719 #endif
720                         /*
721                          * FALLTHROUGH (TRCTRAP kernel mode, kernel address)
722                          */
723                 case T_BPTFLT:
724                         /*
725                          * If DDB is enabled, let it handle the debugger trap.
726                          * Otherwise, debugger traps "can't happen".
727                          */
728                         ucode = TRAP_BRKPT;
729 #ifdef DDB
730                         MAKEMPSAFE(have_mplock);
731                         if (kdb_trap(type, 0, frame))
732                                 goto out2;
733 #endif
734                         break;
735
736 #if NISA > 0
737                 case T_NMI:
738                         MAKEMPSAFE(have_mplock);
739                         /* machine/parity/power fail/"kitchen sink" faults */
740                         if (isa_nmi(code) == 0) {
741 #ifdef DDB
742                                 /*
743                                  * NMI can be hooked up to a pushbutton
744                                  * for debugging.
745                                  */
746                                 if (ddb_on_nmi) {
747                                         kprintf ("NMI ... going to debugger\n");
748                                         kdb_trap(type, 0, frame);
749                                 }
750 #endif /* DDB */
751                                 goto out2;
752                         } else if (panic_on_nmi == 0)
753                                 goto out2;
754                         /* FALL THROUGH */
755 #endif /* NISA > 0 */
756                 }
757                 MAKEMPSAFE(have_mplock);
758                 trap_fatal(frame, 0);
759                 goto out2;
760         }
761
762         /*
763          * Virtual kernel intercept - if the fault is directly related to a
764          * VM context managed by a virtual kernel then let the virtual kernel
765          * handle it.
766          */
767         if (lp->lwp_vkernel && lp->lwp_vkernel->ve) {
768                 vkernel_trap(lp, frame);
769                 goto out;
770         }
771
772         /* Translate fault for emulators (e.g. Linux) */
773         if (*p->p_sysent->sv_transtrap)
774                 i = (*p->p_sysent->sv_transtrap)(i, type);
775
776         MAKEMPSAFE(have_mplock);
777         trapsignal(lp, i, ucode);
778
779 #ifdef DEBUG
780         if (type <= MAX_TRAP_MSG) {
781                 uprintf("fatal process exception: %s",
782                         trap_msg[type]);
783                 if ((type == T_PAGEFLT) || (type == T_PROTFLT))
784                         uprintf(", fault VA = 0x%lx", frame->tf_addr);
785                 uprintf("\n");
786         }
787 #endif
788
789 out:
790         userret(lp, frame, sticks);
791         userexit(lp);
792 out2:   ;
793         if (have_mplock)
794                 rel_mplock();
795         if (p != NULL && lp != NULL)
796                 KTR_LOG(kernentry_trap_ret, p->p_pid, lp->lwp_tid);
797 #ifdef INVARIANTS
798         KASSERT(crit_count == td->td_critcount,
799                 ("trap: critical section count mismatch! %d/%d",
800                 crit_count, td->td_pri));
801         KASSERT(curstop == td->td_toks_stop,
802                 ("trap: extra tokens held after trap! %ld/%ld",
803                 curstop - &td->td_toks_base,
804                 td->td_toks_stop - &td->td_toks_base));
805 #endif
806 }
807
808 static int
809 trap_pfault(struct trapframe *frame, int usermode)
810 {
811         vm_offset_t va;
812         struct vmspace *vm = NULL;
813         vm_map_t map;
814         int rv = 0;
815         int fault_flags;
816         vm_prot_t ftype;
817         thread_t td = curthread;
818         struct lwp *lp = td->td_lwp;
819         struct proc *p;
820
821         va = trunc_page(frame->tf_addr);
822         if (va >= VM_MIN_KERNEL_ADDRESS) {
823                 /*
824                  * Don't allow user-mode faults in kernel address space.
825                  */
826                 if (usermode) {
827                         fault_flags = -1;
828                         ftype = -1;
829                         goto nogo;
830                 }
831
832                 map = &kernel_map;
833         } else {
834                 /*
835                  * This is a fault on non-kernel virtual memory.
836                  * vm is initialized above to NULL. If curproc is NULL
837                  * or curproc->p_vmspace is NULL the fault is fatal.
838                  */
839                 if (lp != NULL)
840                         vm = lp->lwp_vmspace;
841
842                 if (vm == NULL) {
843                         fault_flags = -1;
844                         ftype = -1;
845                         goto nogo;
846                 }
847
848                 /*
849                  * Debugging, try to catch kernel faults on the user address space when not inside
850                  * on onfault (e.g. copyin/copyout) routine.
851                  */
852                 if (usermode == 0 && (td->td_pcb == NULL ||
853                     td->td_pcb->pcb_onfault == NULL)) {
854 #ifdef DDB
855                         if (freeze_on_seg_fault) {
856                                 kprintf("trap_pfault: user address fault from kernel mode "
857                                         "%016lx\n", (long)frame->tf_addr);
858                                 while (freeze_on_seg_fault)
859                                             tsleep(&freeze_on_seg_fault, 0, "frzseg", hz * 20);
860                         }
861 #endif
862                 }
863                 map = &vm->vm_map;
864         }
865
866         /*
867          * PGEX_I is defined only if the execute disable bit capability is
868          * supported and enabled.
869          */
870         if (frame->tf_err & PGEX_W)
871                 ftype = VM_PROT_WRITE;
872 #if JG
873         else if ((frame->tf_err & PGEX_I) && pg_nx != 0)
874                 ftype = VM_PROT_EXECUTE;
875 #endif
876         else
877                 ftype = VM_PROT_READ;
878
879         if (map != &kernel_map) {
880                 /*
881                  * Keep swapout from messing with us during this
882                  *      critical time.
883                  */
884                 PHOLD(lp->lwp_proc);
885
886                 /*
887                  * Issue fault
888                  */
889                 fault_flags = 0;
890                 if (usermode)
891                         fault_flags |= VM_FAULT_BURST;
892                 if (ftype & VM_PROT_WRITE)
893                         fault_flags |= VM_FAULT_DIRTY;
894                 else
895                         fault_flags |= VM_FAULT_NORMAL;
896                 rv = vm_fault(map, va, ftype, fault_flags);
897
898                 PRELE(lp->lwp_proc);
899         } else {
900                 /*
901                  * Don't have to worry about process locking or stacks in the
902                  * kernel.
903                  */
904                 fault_flags = VM_FAULT_NORMAL;
905                 rv = vm_fault(map, va, ftype, VM_FAULT_NORMAL);
906         }
907         if (rv == KERN_SUCCESS)
908                 return (0);
909 nogo:
910         if (!usermode) {
911                 /*
912                  * NOTE: in 64-bit mode traps push rsp/ss
913                  *       even if no ring change occurs.
914                  */
915                 if (td->td_pcb->pcb_onfault &&
916                     td->td_pcb->pcb_onfault_sp == frame->tf_rsp &&
917                     td->td_gd->gd_intr_nesting_level == 0) {
918                         frame->tf_rip = (register_t)td->td_pcb->pcb_onfault;
919                         return (0);
920                 }
921                 trap_fatal(frame, frame->tf_addr);
922                 return (-1);
923         }
924
925         /*
926          * NOTE: on x86_64 we have a tf_addr field in the trapframe, no
927          * kludge is needed to pass the fault address to signal handlers.
928          */
929         p = td->td_proc;
930         if (td->td_lwp->lwp_vkernel == NULL) {
931 #ifdef DDB
932                 if (bootverbose || freeze_on_seg_fault || ddb_on_seg_fault) {
933 #else
934                 if (bootverbose) {
935 #endif
936                         kprintf("seg-fault ft=%04x ff=%04x addr=%p rip=%p "
937                             "pid=%d cpu=%d p_comm=%s\n",
938                             ftype, fault_flags,
939                             (void *)frame->tf_addr,
940                             (void *)frame->tf_rip,
941                             p->p_pid, mycpu->gd_cpuid, p->p_comm);
942                 }
943 #ifdef DDB
944                 while (freeze_on_seg_fault) {
945                         tsleep(p, 0, "freeze", hz * 20);
946                 }
947                 if (ddb_on_seg_fault)
948                         Debugger("ddb_on_seg_fault");
949 #endif
950         }
951
952         return((rv == KERN_PROTECTION_FAILURE) ? SIGBUS : SIGSEGV);
953 }
954
955 static void
956 trap_fatal(struct trapframe *frame, vm_offset_t eva)
957 {
958         int code, ss;
959         u_int type;
960         long rsp;
961         struct soft_segment_descriptor softseg;
962         char *msg;
963
964         code = frame->tf_err;
965         type = frame->tf_trapno;
966         sdtossd(&gdt[IDXSEL(frame->tf_cs & 0xffff)], &softseg);
967
968         if (type <= MAX_TRAP_MSG)
969                 msg = trap_msg[type];
970         else
971                 msg = "UNKNOWN";
972         kprintf("\n\nFatal trap %d: %s while in %s mode\n", type, msg,
973             ISPL(frame->tf_cs) == SEL_UPL ? "user" : "kernel");
974         /* three separate prints in case of a trap on an unmapped page */
975         kprintf("cpuid = %d; ", mycpu->gd_cpuid);
976         kprintf("lapic->id = %08x\n", lapic->id);
977         if (type == T_PAGEFLT) {
978                 kprintf("fault virtual address  = 0x%lx\n", eva);
979                 kprintf("fault code             = %s %s %s, %s\n",
980                         code & PGEX_U ? "user" : "supervisor",
981                         code & PGEX_W ? "write" : "read",
982                         code & PGEX_I ? "instruction" : "data",
983                         code & PGEX_P ? "protection violation" : "page not present");
984         }
985         kprintf("instruction pointer    = 0x%lx:0x%lx\n",
986                frame->tf_cs & 0xffff, frame->tf_rip);
987         if (ISPL(frame->tf_cs) == SEL_UPL) {
988                 ss = frame->tf_ss & 0xffff;
989                 rsp = frame->tf_rsp;
990         } else {
991                 /*
992                  * NOTE: in 64-bit mode traps push rsp/ss even if no ring
993                  *       change occurs.
994                  */
995                 ss = GSEL(GDATA_SEL, SEL_KPL);
996                 rsp = frame->tf_rsp;
997         }
998         kprintf("stack pointer          = 0x%x:0x%lx\n", ss, rsp);
999         kprintf("frame pointer          = 0x%x:0x%lx\n", ss, frame->tf_rbp);
1000         kprintf("code segment           = base 0x%lx, limit 0x%lx, type 0x%x\n",
1001                softseg.ssd_base, softseg.ssd_limit, softseg.ssd_type);
1002         kprintf("                       = DPL %d, pres %d, long %d, def32 %d, gran %d\n",
1003                softseg.ssd_dpl, softseg.ssd_p, softseg.ssd_long, softseg.ssd_def32,
1004                softseg.ssd_gran);
1005         kprintf("processor eflags       = ");
1006         if (frame->tf_rflags & PSL_T)
1007                 kprintf("trace trap, ");
1008         if (frame->tf_rflags & PSL_I)
1009                 kprintf("interrupt enabled, ");
1010         if (frame->tf_rflags & PSL_NT)
1011                 kprintf("nested task, ");
1012         if (frame->tf_rflags & PSL_RF)
1013                 kprintf("resume, ");
1014         kprintf("IOPL = %ld\n", (frame->tf_rflags & PSL_IOPL) >> 12);
1015         kprintf("current process                = ");
1016         if (curproc) {
1017                 kprintf("%lu\n",
1018                     (u_long)curproc->p_pid);
1019         } else {
1020                 kprintf("Idle\n");
1021         }
1022         kprintf("current thread          = pri %d ", curthread->td_pri);
1023         if (curthread->td_critcount)
1024                 kprintf("(CRIT)");
1025         kprintf("\n");
1026
1027 #ifdef DDB
1028         if ((debugger_on_panic || db_active) && kdb_trap(type, code, frame))
1029                 return;
1030 #endif
1031         kprintf("trap number            = %d\n", type);
1032         if (type <= MAX_TRAP_MSG)
1033                 panic("%s", trap_msg[type]);
1034         else
1035                 panic("unknown/reserved trap");
1036 }
1037
1038 /*
1039  * Double fault handler. Called when a fault occurs while writing
1040  * a frame for a trap/exception onto the stack. This usually occurs
1041  * when the stack overflows (such is the case with infinite recursion,
1042  * for example).
1043  */
1044 static __inline
1045 int
1046 in_kstack_guard(register_t rptr)
1047 {
1048         thread_t td = curthread;
1049
1050         if ((char *)rptr >= td->td_kstack &&
1051             (char *)rptr < td->td_kstack + PAGE_SIZE) {
1052                 return 1;
1053         }
1054         return 0;
1055 }
1056
1057 void
1058 dblfault_handler(struct trapframe *frame)
1059 {
1060         thread_t td = curthread;
1061
1062         if (in_kstack_guard(frame->tf_rsp) || in_kstack_guard(frame->tf_rbp)) {
1063                 kprintf("DOUBLE FAULT - KERNEL STACK GUARD HIT!\n");
1064                 if (in_kstack_guard(frame->tf_rsp))
1065                         frame->tf_rsp = (register_t)(td->td_kstack + PAGE_SIZE);
1066                 if (in_kstack_guard(frame->tf_rbp))
1067                         frame->tf_rbp = (register_t)(td->td_kstack + PAGE_SIZE);
1068         } else {
1069                 kprintf("DOUBLE FAULT\n");
1070         }
1071         kprintf("\nFatal double fault\n");
1072         kprintf("rip = 0x%lx\n", frame->tf_rip);
1073         kprintf("rsp = 0x%lx\n", frame->tf_rsp);
1074         kprintf("rbp = 0x%lx\n", frame->tf_rbp);
1075         /* three separate prints in case of a trap on an unmapped page */
1076         kprintf("cpuid = %d; ", mycpu->gd_cpuid);
1077         kprintf("lapic->id = %08x\n", lapic->id);
1078         panic("double fault");
1079 }
1080
1081 /*
1082  * syscall2 -   MP aware system call request C handler
1083  *
1084  * A system call is essentially treated as a trap except that the
1085  * MP lock is not held on entry or return.  We are responsible for
1086  * obtaining the MP lock if necessary and for handling ASTs
1087  * (e.g. a task switch) prior to return.
1088  *
1089  * MPSAFE
1090  */
1091 void
1092 syscall2(struct trapframe *frame)
1093 {
1094         struct thread *td = curthread;
1095         struct proc *p = td->td_proc;
1096         struct lwp *lp = td->td_lwp;
1097         caddr_t params;
1098         struct sysent *callp;
1099         register_t orig_tf_rflags;
1100         int sticks;
1101         int error;
1102         int narg;
1103 #ifdef INVARIANTS
1104         int crit_count = td->td_critcount;
1105 #endif
1106         int have_mplock = 0;
1107         register_t *argp;
1108         u_int code;
1109         int reg, regcnt;
1110         union sysunion args;
1111         register_t *argsdst;
1112
1113         mycpu->gd_cnt.v_syscall++;
1114
1115 #ifdef DIAGNOSTIC
1116         if (ISPL(frame->tf_cs) != SEL_UPL) {
1117                 get_mplock();
1118                 panic("syscall");
1119                 /* NOT REACHED */
1120         }
1121 #endif
1122
1123         KTR_LOG(kernentry_syscall, p->p_pid, lp->lwp_tid,
1124                 frame->tf_rax);
1125
1126         userenter(td, p);       /* lazy raise our priority */
1127
1128         reg = 0;
1129         regcnt = 6;
1130         /*
1131          * Misc
1132          */
1133         sticks = (int)td->td_sticks;
1134         orig_tf_rflags = frame->tf_rflags;
1135
1136         /*
1137          * Virtual kernel intercept - if a VM context managed by a virtual
1138          * kernel issues a system call the virtual kernel handles it, not us.
1139          * Restore the virtual kernel context and return from its system
1140          * call.  The current frame is copied out to the virtual kernel.
1141          */
1142         if (lp->lwp_vkernel && lp->lwp_vkernel->ve) {
1143                 vkernel_trap(lp, frame);
1144                 error = EJUSTRETURN;
1145                 goto out;
1146         }
1147
1148         /*
1149          * Get the system call parameters and account for time
1150          */
1151         KASSERT(lp->lwp_md.md_regs == frame,
1152                 ("Frame mismatch %p %p", lp->lwp_md.md_regs, frame));
1153         params = (caddr_t)frame->tf_rsp + sizeof(register_t);
1154         code = frame->tf_rax;
1155
1156         if (p->p_sysent->sv_prepsyscall) {
1157                 (*p->p_sysent->sv_prepsyscall)(
1158                         frame, (int *)(&args.nosys.sysmsg + 1),
1159                         &code, &params);
1160         } else {
1161                 if (code == SYS_syscall || code == SYS___syscall) {
1162                         code = frame->tf_rdi;
1163                         reg++;
1164                         regcnt--;
1165                 }
1166         }
1167
1168         if (p->p_sysent->sv_mask)
1169                 code &= p->p_sysent->sv_mask;
1170
1171         if (code >= p->p_sysent->sv_size)
1172                 callp = &p->p_sysent->sv_table[0];
1173         else
1174                 callp = &p->p_sysent->sv_table[code];
1175
1176         narg = callp->sy_narg & SYF_ARGMASK;
1177
1178         /*
1179          * On x86_64 we get up to six arguments in registers. The rest are
1180          * on the stack. The first six members of 'struct trapframe' happen
1181          * to be the registers used to pass arguments, in exactly the right
1182          * order.
1183          */
1184         argp = &frame->tf_rdi;
1185         argp += reg;
1186         argsdst = (register_t *)(&args.nosys.sysmsg + 1);
1187         /*
1188          * JG can we overflow the space pointed to by 'argsdst'
1189          * either with 'bcopy' or with 'copyin'?
1190          */
1191         bcopy(argp, argsdst, sizeof(register_t) * regcnt);
1192         /*
1193          * copyin is MP aware, but the tracing code is not
1194          */
1195         if (narg > regcnt) {
1196                 KASSERT(params != NULL, ("copyin args with no params!"));
1197                 error = copyin(params, &argsdst[regcnt],
1198                         (narg - regcnt) * sizeof(register_t));
1199                 if (error) {
1200 #ifdef KTRACE
1201                         if (KTRPOINT(td, KTR_SYSCALL)) {
1202                                 MAKEMPSAFE(have_mplock);
1203
1204                                 ktrsyscall(lp, code, narg,
1205                                         (void *)(&args.nosys.sysmsg + 1));
1206                         }
1207 #endif
1208                         goto bad;
1209                 }
1210         }
1211
1212 #ifdef KTRACE
1213         if (KTRPOINT(td, KTR_SYSCALL)) {
1214                 MAKEMPSAFE(have_mplock);
1215                 ktrsyscall(lp, code, narg, (void *)(&args.nosys.sysmsg + 1));
1216         }
1217 #endif
1218
1219         /*
1220          * Default return value is 0 (will be copied to %rax).  Double-value
1221          * returns use %rax and %rdx.  %rdx is left unchanged for system
1222          * calls which return only one result.
1223          */
1224         args.sysmsg_fds[0] = 0;
1225         args.sysmsg_fds[1] = frame->tf_rdx;
1226
1227         /*
1228          * The syscall might manipulate the trap frame. If it does it
1229          * will probably return EJUSTRETURN.
1230          */
1231         args.sysmsg_frame = frame;
1232
1233         STOPEVENT(p, S_SCE, narg);      /* MP aware */
1234
1235         /*
1236          * NOTE: All system calls run MPSAFE now.  The system call itself
1237          *       is responsible for getting the MP lock.
1238          */
1239 #ifdef SYSCALL_DEBUG
1240         uint64_t tscval = rdtsc();
1241 #endif
1242         error = (*callp->sy_call)(&args);
1243 #ifdef SYSCALL_DEBUG
1244         tscval = rdtsc() - tscval;
1245         tscval = tscval * 1000000 / tsc_frequency;
1246         if (SysCallsWorstCase[code] < tscval)
1247                 SysCallsWorstCase[code] = tscval;
1248 #endif
1249
1250 out:
1251         /*
1252          * MP SAFE (we may or may not have the MP lock at this point)
1253          */
1254         //kprintf("SYSMSG %d ", error);
1255         switch (error) {
1256         case 0:
1257                 /*
1258                  * Reinitialize proc pointer `p' as it may be different
1259                  * if this is a child returning from fork syscall.
1260                  */
1261                 p = curproc;
1262                 lp = curthread->td_lwp;
1263                 frame->tf_rax = args.sysmsg_fds[0];
1264                 frame->tf_rdx = args.sysmsg_fds[1];
1265                 frame->tf_rflags &= ~PSL_C;
1266                 break;
1267         case ERESTART:
1268                 /*
1269                  * Reconstruct pc, we know that 'syscall' is 2 bytes.
1270                  * We have to do a full context restore so that %r10
1271                  * (which was holding the value of %rcx) is restored for
1272                  * the next iteration.
1273                  */
1274                 if (frame->tf_err != 0 && frame->tf_err != 2)
1275                         kprintf("lp %s:%d frame->tf_err is weird %ld\n",
1276                                 td->td_comm, lp->lwp_proc->p_pid, frame->tf_err);
1277                 frame->tf_rip -= frame->tf_err;
1278                 frame->tf_r10 = frame->tf_rcx;
1279                 break;
1280         case EJUSTRETURN:
1281                 break;
1282         case EASYNC:
1283                 panic("Unexpected EASYNC return value (for now)");
1284         default:
1285 bad:
1286                 if (p->p_sysent->sv_errsize) {
1287                         if (error >= p->p_sysent->sv_errsize)
1288                                 error = -1;     /* XXX */
1289                         else
1290                                 error = p->p_sysent->sv_errtbl[error];
1291                 }
1292                 frame->tf_rax = error;
1293                 frame->tf_rflags |= PSL_C;
1294                 break;
1295         }
1296
1297         /*
1298          * Traced syscall.  trapsignal() is not MP aware.
1299          */
1300         if (orig_tf_rflags & PSL_T) {
1301                 MAKEMPSAFE(have_mplock);
1302                 frame->tf_rflags &= ~PSL_T;
1303                 trapsignal(lp, SIGTRAP, TRAP_TRACE);
1304         }
1305
1306         /*
1307          * Handle reschedule and other end-of-syscall issues
1308          */
1309         userret(lp, frame, sticks);
1310
1311 #ifdef KTRACE
1312         if (KTRPOINT(td, KTR_SYSRET)) {
1313                 MAKEMPSAFE(have_mplock);
1314                 ktrsysret(lp, code, error, args.sysmsg_result);
1315         }
1316 #endif
1317
1318         /*
1319          * This works because errno is findable through the
1320          * register set.  If we ever support an emulation where this
1321          * is not the case, this code will need to be revisited.
1322          */
1323         STOPEVENT(p, S_SCX, code);
1324
1325         userexit(lp);
1326         /*
1327          * Release the MP lock if we had to get it
1328          */
1329         if (have_mplock)
1330                 rel_mplock();
1331         KTR_LOG(kernentry_syscall_ret, p->p_pid, lp->lwp_tid, error);
1332 #ifdef INVARIANTS
1333         KASSERT(crit_count == td->td_critcount,
1334                 ("syscall: critical section count mismatch! %d/%d",
1335                 crit_count, td->td_pri));
1336         KASSERT(&td->td_toks_base == td->td_toks_stop,
1337                 ("syscall: extra tokens held after trap! %ld",
1338                 td->td_toks_stop - &td->td_toks_base));
1339 #endif
1340 }
1341
1342 /*
1343  * NOTE: mplock not held at any point
1344  */
1345 void
1346 fork_return(struct lwp *lp, struct trapframe *frame)
1347 {
1348         frame->tf_rax = 0;              /* Child returns zero */
1349         frame->tf_rflags &= ~PSL_C;     /* success */
1350         frame->tf_rdx = 1;
1351
1352         generic_lwp_return(lp, frame);
1353         KTR_LOG(kernentry_fork_ret, lp->lwp_proc->p_pid, lp->lwp_tid);
1354 }
1355
1356 /*
1357  * Simplified back end of syscall(), used when returning from fork()
1358  * directly into user mode.
1359  *
1360  * This code will return back into the fork trampoline code which then
1361  * runs doreti.
1362  *
1363  * NOTE: The mplock is not held at any point.
1364  */
1365 void
1366 generic_lwp_return(struct lwp *lp, struct trapframe *frame)
1367 {
1368         struct proc *p = lp->lwp_proc;
1369
1370         /*
1371          * Newly forked processes are given a kernel priority.  We have to
1372          * adjust the priority to a normal user priority and fake entry
1373          * into the kernel (call userenter()) to install a passive release
1374          * function just in case userret() decides to stop the process.  This
1375          * can occur when ^Z races a fork.  If we do not install the passive
1376          * release function the current process designation will not be
1377          * released when the thread goes to sleep.
1378          */
1379         lwkt_setpri_self(TDPRI_USER_NORM);
1380         userenter(lp->lwp_thread, p);
1381         userret(lp, frame, 0);
1382 #ifdef KTRACE
1383         if (KTRPOINT(lp->lwp_thread, KTR_SYSRET))
1384                 ktrsysret(lp, SYS_fork, 0, 0);
1385 #endif
1386         lp->lwp_flags |= LWP_PASSIVE_ACQ;
1387         userexit(lp);
1388         lp->lwp_flags &= ~LWP_PASSIVE_ACQ;
1389 }
1390
1391 /*
1392  * If PGEX_FPFAULT is set then set FP_VIRTFP in the PCB to force a T_DNA
1393  * fault (which is then passed back to the virtual kernel) if an attempt is
1394  * made to use the FP unit.
1395  *
1396  * XXX this is a fairly big hack.
1397  */
1398 void
1399 set_vkernel_fp(struct trapframe *frame)
1400 {
1401         struct thread *td = curthread;
1402
1403         if (frame->tf_xflags & PGEX_FPFAULT) {
1404                 td->td_pcb->pcb_flags |= FP_VIRTFP;
1405                 if (mdcpu->gd_npxthread == td)
1406                         npxexit();
1407         } else {
1408                 td->td_pcb->pcb_flags &= ~FP_VIRTFP;
1409         }
1410 }
1411
1412 /*
1413  * Called from vkernel_trap() to fixup the vkernel's syscall
1414  * frame for vmspace_ctl() return.
1415  */
1416 void
1417 cpu_vkernel_trap(struct trapframe *frame, int error)
1418 {
1419         frame->tf_rax = error;
1420         if (error)
1421                 frame->tf_rflags |= PSL_C;
1422         else
1423                 frame->tf_rflags &= ~PSL_C;
1424 }