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