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