trap.c revision 333205
1152999Semax/*-
2152999Semax * Copyright (C) 1994, David Greenman
3152999Semax * Copyright (c) 1990, 1993
4152999Semax *	The Regents of the University of California.  All rights reserved.
5152999Semax *
6152999Semax * This code is derived from software contributed to Berkeley by
7152999Semax * the University of Utah, and William Jolitz.
8152999Semax *
9152999Semax * Redistribution and use in source and binary forms, with or without
10152999Semax * modification, are permitted provided that the following conditions
11152999Semax * are met:
12152999Semax * 1. Redistributions of source code must retain the above copyright
13152999Semax *    notice, this list of conditions and the following disclaimer.
14152999Semax * 2. Redistributions in binary form must reproduce the above copyright
15152999Semax *    notice, this list of conditions and the following disclaimer in the
16152999Semax *    documentation and/or other materials provided with the distribution.
17152999Semax * 3. All advertising materials mentioning features or use of this software
18152999Semax *    must display the following acknowledgement:
19152999Semax *	This product includes software developed by the University of
20152999Semax *	California, Berkeley and its contributors.
21152999Semax * 4. Neither the name of the University nor the names of its contributors
22152999Semax *    may be used to endorse or promote products derived from this software
23152999Semax *    without specific prior written permission.
24152999Semax *
25152999Semax * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26152999Semax * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27179360Semax * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28152999Semax * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29152999Semax * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30152999Semax * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31152999Semax * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32152999Semax * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33152999Semax * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34152999Semax * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35152999Semax * SUCH DAMAGE.
36152999Semax *
37152999Semax *	from: @(#)trap.c	7.4 (Berkeley) 5/13/91
38152999Semax */
39152999Semax
40152999Semax#include <sys/cdefs.h>
41152999Semax__FBSDID("$FreeBSD: stable/10/sys/amd64/amd64/trap.c 333205 2018-05-03 07:57:08Z avg $");
42152999Semax
43162872Sru/*
44152999Semax * AMD64 Trap and System call handling
45152999Semax */
46152999Semax
47152999Semax#include "opt_clock.h"
48152999Semax#include "opt_cpu.h"
49152999Semax#include "opt_hwpmc_hooks.h"
50152999Semax#include "opt_isa.h"
51152999Semax#include "opt_kdb.h"
52152999Semax#include "opt_kdtrace.h"
53152999Semax
54152999Semax#include <sys/param.h>
55152999Semax#include <sys/bus.h>
56152999Semax#include <sys/systm.h>
57152999Semax#include <sys/proc.h>
58152999Semax#include <sys/pioctl.h>
59173225Skeramida#include <sys/ptrace.h>
60152999Semax#include <sys/kdb.h>
61152999Semax#include <sys/kernel.h>
62152999Semax#include <sys/ktr.h>
63152999Semax#include <sys/lock.h>
64152999Semax#include <sys/mutex.h>
65162872Sru#include <sys/resourcevar.h>
66152999Semax#include <sys/signalvar.h>
67152999Semax#include <sys/syscall.h>
68162872Sru#include <sys/sysctl.h>
69152999Semax#include <sys/sysent.h>
70152999Semax#include <sys/uio.h>
71152999Semax#include <sys/vmmeter.h>
72152999Semax#ifdef HWPMC_HOOKS
73152999Semax#include <sys/pmckern.h>
74152999SemaxPMC_SOFT_DEFINE( , , page_fault, all);
75152999SemaxPMC_SOFT_DEFINE( , , page_fault, read);
76152999SemaxPMC_SOFT_DEFINE( , , page_fault, write);
77152999Semax#endif
78152999Semax
79152999Semax#include <vm/vm.h>
80152999Semax#include <vm/vm_param.h>
81152999Semax#include <vm/pmap.h>
82152999Semax#include <vm/vm_kern.h>
83152999Semax#include <vm/vm_map.h>
84152999Semax#include <vm/vm_page.h>
85152999Semax#include <vm/vm_extern.h>
86152999Semax
87152999Semax#include <machine/cpu.h>
88152999Semax#include <machine/intr_machdep.h>
89152999Semax#include <x86/mca.h>
90152999Semax#include <machine/md_var.h>
91152999Semax#include <machine/pcb.h>
92152999Semax#ifdef SMP
93179360Semax#include <machine/smp.h>
94179360Semax#endif
95152999Semax#include <machine/tss.h>
96152999Semax
97152999Semax#ifdef KDTRACE_HOOKS
98152999Semax#include <sys/dtrace_bsd.h>
99152999Semax#endif
100152999Semax
101152999Semaxextern void trap(struct trapframe *frame);
102152999Semaxextern void syscall(struct trapframe *frame);
103152999Semaxvoid dblfault_handler(struct trapframe *frame);
104152999Semax
105152999Semaxstatic int trap_pfault(struct trapframe *, int);
106152999Semaxstatic void trap_fatal(struct trapframe *, vm_offset_t);
107152999Semax
108152999Semax#define MAX_TRAP_MSG		32
109152999Semaxstatic char *trap_msg[] = {
110152999Semax	"",					/*  0 unused */
111152999Semax	"privileged instruction fault",		/*  1 T_PRIVINFLT */
112152999Semax	"",					/*  2 unused */
113152999Semax	"breakpoint instruction fault",		/*  3 T_BPTFLT */
114152999Semax	"",					/*  4 unused */
115152999Semax	"",					/*  5 unused */
116152999Semax	"arithmetic trap",			/*  6 T_ARITHTRAP */
117152999Semax	"",					/*  7 unused */
118152999Semax	"",					/*  8 unused */
119152999Semax	"general protection fault",		/*  9 T_PROTFLT */
120152999Semax	"trace trap",				/* 10 T_TRCTRAP */
121152999Semax	"",					/* 11 unused */
122152999Semax	"page fault",				/* 12 T_PAGEFLT */
123152999Semax	"",					/* 13 unused */
124152999Semax	"alignment fault",			/* 14 T_ALIGNFLT */
125152999Semax	"",					/* 15 unused */
126152999Semax	"",					/* 16 unused */
127152999Semax	"",					/* 17 unused */
128152999Semax	"integer divide fault",			/* 18 T_DIVIDE */
129152999Semax	"non-maskable interrupt trap",		/* 19 T_NMI */
130152999Semax	"overflow trap",			/* 20 T_OFLOW */
131152999Semax	"FPU bounds check fault",		/* 21 T_BOUND */
132152999Semax	"FPU device not available",		/* 22 T_DNA */
133152999Semax	"double fault",				/* 23 T_DOUBLEFLT */
134152999Semax	"FPU operand fetch fault",		/* 24 T_FPOPFLT */
135152999Semax	"invalid TSS fault",			/* 25 T_TSSFLT */
136152999Semax	"segment not present fault",		/* 26 T_SEGNPFLT */
137152999Semax	"stack fault",				/* 27 T_STKFLT */
138152999Semax	"machine check trap",			/* 28 T_MCHK */
139152999Semax	"SIMD floating-point exception",	/* 29 T_XMMFLT */
140152999Semax	"reserved (unknown) fault",		/* 30 T_RESERVED */
141152999Semax	"",					/* 31 unused (reserved) */
142152999Semax	"DTrace pid return trap",		/* 32 T_DTRACE_RET */
143152999Semax};
144152999Semax
145152999Semax#ifdef KDB
146152999Semaxstatic int kdb_on_nmi = 1;
147152999SemaxSYSCTL_INT(_machdep, OID_AUTO, kdb_on_nmi, CTLFLAG_RW,
148152999Semax	&kdb_on_nmi, 0, "Go to KDB on NMI");
149152999SemaxTUNABLE_INT("machdep.kdb_on_nmi", &kdb_on_nmi);
150152999Semax#endif
151152999Semaxstatic int panic_on_nmi = 1;
152152999SemaxSYSCTL_INT(_machdep, OID_AUTO, panic_on_nmi, CTLFLAG_RW,
153152999Semax	&panic_on_nmi, 0, "Panic on NMI");
154152999SemaxTUNABLE_INT("machdep.panic_on_nmi", &panic_on_nmi);
155152999Semaxstatic int prot_fault_translation;
156152999SemaxSYSCTL_INT(_machdep, OID_AUTO, prot_fault_translation, CTLFLAG_RW,
157152999Semax    &prot_fault_translation, 0,
158152999Semax    "Select signal to deliver on protection fault");
159152999Semaxstatic int uprintf_signal;
160152999SemaxSYSCTL_INT(_machdep, OID_AUTO, uprintf_signal, CTLFLAG_RW,
161152999Semax    &uprintf_signal, 0,
162152999Semax    "Print debugging information on trap signal to ctty");
163162872Sru
164162872Sru/*
165162872Sru * Exception, fault, and trap interface to the FreeBSD kernel.
166162872Sru * This common code is called from assembly language IDT gate entry
167162872Sru * routines that prepare a suitable stack frame, and restore this
168162872Sru * frame after the exception has been processed.
169162872Sru */
170162872Sru
171162872Sruvoid
172162872Srutrap(struct trapframe *frame)
173162872Sru{
174162872Sru#ifdef KDTRACE_HOOKS
175152999Semax	struct reg regs;
176152999Semax#endif
177152999Semax	struct thread *td = curthread;
178152999Semax	struct proc *p = td->td_proc;
179152999Semax	int i = 0, ucode = 0, code;
180152999Semax	u_int type;
181152999Semax	register_t addr = 0;
182152999Semax	ksiginfo_t ksi;
183152999Semax
184152999Semax	PCPU_INC(cnt.v_trap);
185152999Semax	type = frame->tf_trapno;
186152999Semax
187#ifdef SMP
188	/* Handler for NMI IPIs used for stopping CPUs. */
189	if (type == T_NMI) {
190	         if (ipi_nmi_handler() == 0)
191	                   goto out;
192	}
193#endif /* SMP */
194
195#ifdef KDB
196	if (kdb_active) {
197		kdb_reenter();
198		goto out;
199	}
200#endif
201
202	if (type == T_RESERVED) {
203		trap_fatal(frame, 0);
204		goto out;
205	}
206
207#ifdef	HWPMC_HOOKS
208	/*
209	 * CPU PMCs interrupt using an NMI.  If the PMC module is
210	 * active, pass the 'rip' value to the PMC module's interrupt
211	 * handler.  A return value of '1' from the handler means that
212	 * the NMI was handled by it and we can return immediately.
213	 */
214	if (type == T_NMI && pmc_intr &&
215	    (*pmc_intr)(PCPU_GET(cpuid), frame))
216		goto out;
217#endif
218
219	if (type == T_MCHK) {
220		mca_intr();
221		goto out;
222	}
223
224#ifdef KDTRACE_HOOKS
225	/*
226	 * A trap can occur while DTrace executes a probe. Before
227	 * executing the probe, DTrace blocks re-scheduling and sets
228	 * a flag in its per-cpu flags to indicate that it doesn't
229	 * want to fault. On returning from the probe, the no-fault
230	 * flag is cleared and finally re-scheduling is enabled.
231	 */
232	if (dtrace_trap_func != NULL && (*dtrace_trap_func)(frame, type))
233		goto out;
234#endif
235
236	if ((frame->tf_rflags & PSL_I) == 0) {
237		/*
238		 * Buggy application or kernel code has disabled
239		 * interrupts and then trapped.  Enabling interrupts
240		 * now is wrong, but it is better than running with
241		 * interrupts disabled until they are accidentally
242		 * enabled later.
243		 */
244		if (ISPL(frame->tf_cs) == SEL_UPL)
245			uprintf(
246			    "pid %ld (%s): trap %d with interrupts disabled\n",
247			    (long)curproc->p_pid, curthread->td_name, type);
248		else if (type != T_NMI && type != T_BPTFLT &&
249		    type != T_TRCTRAP) {
250			/*
251			 * XXX not quite right, since this may be for a
252			 * multiple fault in user mode.
253			 */
254			printf("kernel trap %d with interrupts disabled\n",
255			    type);
256
257			/*
258			 * We shouldn't enable interrupts while holding a
259			 * spin lock.
260			 */
261			if (td->td_md.md_spinlock_count == 0)
262				enable_intr();
263		}
264	}
265
266	code = frame->tf_err;
267
268        if (ISPL(frame->tf_cs) == SEL_UPL) {
269		/* user trap */
270
271		td->td_pticks = 0;
272		td->td_frame = frame;
273		addr = frame->tf_rip;
274		if (td->td_ucred != p->p_ucred)
275			cred_update_thread(td);
276
277		switch (type) {
278		case T_PRIVINFLT:	/* privileged instruction fault */
279			i = SIGILL;
280			ucode = ILL_PRVOPC;
281			break;
282
283		case T_BPTFLT:		/* bpt instruction fault */
284		case T_TRCTRAP:		/* trace trap */
285			enable_intr();
286#ifdef KDTRACE_HOOKS
287			if (type == T_BPTFLT) {
288				fill_frame_regs(frame, &regs);
289				if (dtrace_pid_probe_ptr != NULL &&
290				    dtrace_pid_probe_ptr(&regs) == 0)
291					goto out;
292			}
293#endif
294			frame->tf_rflags &= ~PSL_T;
295			i = SIGTRAP;
296			ucode = (type == T_TRCTRAP ? TRAP_TRACE : TRAP_BRKPT);
297			break;
298
299		case T_ARITHTRAP:	/* arithmetic trap */
300			ucode = fputrap_x87();
301			if (ucode == -1)
302				goto userout;
303			i = SIGFPE;
304			break;
305
306		case T_PROTFLT:		/* general protection fault */
307			i = SIGBUS;
308			ucode = BUS_OBJERR;
309			break;
310		case T_STKFLT:		/* stack fault */
311		case T_SEGNPFLT:	/* segment not present fault */
312			i = SIGBUS;
313			ucode = BUS_ADRERR;
314			break;
315		case T_TSSFLT:		/* invalid TSS fault */
316			i = SIGBUS;
317			ucode = BUS_OBJERR;
318			break;
319		case T_ALIGNFLT:
320			i = SIGBUS;
321			ucode = BUS_ADRALN;
322			break;
323		case T_DOUBLEFLT:	/* double fault */
324		default:
325			i = SIGBUS;
326			ucode = BUS_OBJERR;
327			break;
328
329		case T_PAGEFLT:		/* page fault */
330			/*
331			 * Emulator can take care about this trap?
332			 */
333			if (*p->p_sysent->sv_trap != NULL &&
334			    (*p->p_sysent->sv_trap)(td) == 0)
335				goto userout;
336
337			addr = frame->tf_addr;
338			i = trap_pfault(frame, TRUE);
339			if (i == -1)
340				goto userout;
341			if (i == 0)
342				goto user;
343
344			if (i == SIGSEGV)
345				ucode = SEGV_MAPERR;
346			else {
347				if (prot_fault_translation == 0) {
348					/*
349					 * Autodetect.
350					 * This check also covers the images
351					 * without the ABI-tag ELF note.
352					 */
353					if (SV_CURPROC_ABI() == SV_ABI_FREEBSD
354					    && p->p_osrel >= P_OSREL_SIGSEGV) {
355						i = SIGSEGV;
356						ucode = SEGV_ACCERR;
357					} else {
358						i = SIGBUS;
359						ucode = BUS_PAGE_FAULT;
360					}
361				} else if (prot_fault_translation == 1) {
362					/*
363					 * Always compat mode.
364					 */
365					i = SIGBUS;
366					ucode = BUS_PAGE_FAULT;
367				} else {
368					/*
369					 * Always SIGSEGV mode.
370					 */
371					i = SIGSEGV;
372					ucode = SEGV_ACCERR;
373				}
374			}
375			break;
376
377		case T_DIVIDE:		/* integer divide fault */
378			ucode = FPE_INTDIV;
379			i = SIGFPE;
380			break;
381
382#ifdef DEV_ISA
383		case T_NMI:
384			/* machine/parity/power fail/"kitchen sink" faults */
385			if (isa_nmi(code) == 0) {
386#ifdef KDB
387				/*
388				 * NMI can be hooked up to a pushbutton
389				 * for debugging.
390				 */
391				if (kdb_on_nmi) {
392					printf ("NMI ... going to debugger\n");
393					kdb_trap(type, 0, frame);
394				}
395#endif /* KDB */
396				goto userout;
397			} else if (panic_on_nmi)
398				panic("NMI indicates hardware failure");
399			goto out;
400#endif /* DEV_ISA */
401
402		case T_OFLOW:		/* integer overflow fault */
403			ucode = FPE_INTOVF;
404			i = SIGFPE;
405			break;
406
407		case T_BOUND:		/* bounds check fault */
408			ucode = FPE_FLTSUB;
409			i = SIGFPE;
410			break;
411
412		case T_DNA:
413			/* transparent fault (due to context switch "late") */
414			KASSERT(PCB_USER_FPU(td->td_pcb),
415			    ("kernel FPU ctx has leaked"));
416			fpudna();
417			goto userout;
418
419		case T_FPOPFLT:		/* FPU operand fetch fault */
420			ucode = ILL_COPROC;
421			i = SIGILL;
422			break;
423
424		case T_XMMFLT:		/* SIMD floating-point exception */
425			ucode = fputrap_sse();
426			if (ucode == -1)
427				goto userout;
428			i = SIGFPE;
429			break;
430#ifdef KDTRACE_HOOKS
431		case T_DTRACE_RET:
432			enable_intr();
433			fill_frame_regs(frame, &regs);
434			if (dtrace_return_probe_ptr != NULL &&
435			    dtrace_return_probe_ptr(&regs) == 0)
436				goto out;
437			goto userout;
438#endif
439		}
440	} else {
441		/* kernel trap */
442
443		KASSERT(cold || td->td_ucred != NULL,
444		    ("kernel trap doesn't have ucred"));
445		switch (type) {
446		case T_PAGEFLT:			/* page fault */
447			(void) trap_pfault(frame, FALSE);
448			goto out;
449
450		case T_DNA:
451			if (PCB_USER_FPU(td->td_pcb))
452				panic("Unregistered use of FPU in kernel");
453			fpudna();
454			goto out;
455
456		case T_ARITHTRAP:	/* arithmetic trap */
457		case T_XMMFLT:		/* SIMD floating-point exception */
458		case T_FPOPFLT:		/* FPU operand fetch fault */
459			/*
460			 * For now, supporting kernel handler
461			 * registration for FPU traps is overkill.
462			 */
463			trap_fatal(frame, 0);
464			goto out;
465
466		case T_STKFLT:		/* stack fault */
467		case T_PROTFLT:		/* general protection fault */
468		case T_SEGNPFLT:	/* segment not present fault */
469			if (td->td_intr_nesting_level != 0)
470				break;
471
472			/*
473			 * Invalid segment selectors and out of bounds
474			 * %rip's and %rsp's can be set up in user mode.
475			 * This causes a fault in kernel mode when the
476			 * kernel tries to return to user mode.  We want
477			 * to get this fault so that we can fix the
478			 * problem here and not have to check all the
479			 * selectors and pointers when the user changes
480			 * them.
481			 */
482			if (frame->tf_rip == (long)doreti_iret) {
483				frame->tf_rip = (long)doreti_iret_fault;
484				goto out;
485			}
486			if (frame->tf_rip == (long)ld_ds) {
487				frame->tf_rip = (long)ds_load_fault;
488				goto out;
489			}
490			if (frame->tf_rip == (long)ld_es) {
491				frame->tf_rip = (long)es_load_fault;
492				goto out;
493			}
494			if (frame->tf_rip == (long)ld_fs) {
495				frame->tf_rip = (long)fs_load_fault;
496				goto out;
497			}
498			if (frame->tf_rip == (long)ld_gs) {
499				frame->tf_rip = (long)gs_load_fault;
500				goto out;
501			}
502			if (frame->tf_rip == (long)ld_gsbase) {
503				frame->tf_rip = (long)gsbase_load_fault;
504				goto out;
505			}
506			if (frame->tf_rip == (long)ld_fsbase) {
507				frame->tf_rip = (long)fsbase_load_fault;
508				goto out;
509			}
510			if (curpcb->pcb_onfault != NULL) {
511				frame->tf_rip = (long)curpcb->pcb_onfault;
512				goto out;
513			}
514			break;
515
516		case T_TSSFLT:
517			/*
518			 * PSL_NT can be set in user mode and isn't cleared
519			 * automatically when the kernel is entered.  This
520			 * causes a TSS fault when the kernel attempts to
521			 * `iret' because the TSS link is uninitialized.  We
522			 * want to get this fault so that we can fix the
523			 * problem here and not every time the kernel is
524			 * entered.
525			 */
526			if (frame->tf_rflags & PSL_NT) {
527				frame->tf_rflags &= ~PSL_NT;
528				goto out;
529			}
530			break;
531
532		case T_TRCTRAP:	 /* trace trap */
533			/*
534			 * Ignore debug register trace traps due to
535			 * accesses in the user's address space, which
536			 * can happen under several conditions such as
537			 * if a user sets a watchpoint on a buffer and
538			 * then passes that buffer to a system call.
539			 * We still want to get TRCTRAPS for addresses
540			 * in kernel space because that is useful when
541			 * debugging the kernel.
542			 */
543			if (user_dbreg_trap()) {
544				/*
545				 * Reset breakpoint bits because the
546				 * processor doesn't
547				 */
548				/* XXX check upper bits here */
549				load_dr6(rdr6() & 0xfffffff0);
550				goto out;
551			}
552			/*
553			 * FALLTHROUGH (TRCTRAP kernel mode, kernel address)
554			 */
555		case T_BPTFLT:
556			/*
557			 * If KDB is enabled, let it handle the debugger trap.
558			 * Otherwise, debugger traps "can't happen".
559			 */
560#ifdef KDB
561			if (kdb_trap(type, 0, frame))
562				goto out;
563#endif
564			break;
565
566#ifdef DEV_ISA
567		case T_NMI:
568			/* machine/parity/power fail/"kitchen sink" faults */
569			if (isa_nmi(code) == 0) {
570#ifdef KDB
571				/*
572				 * NMI can be hooked up to a pushbutton
573				 * for debugging.
574				 */
575				if (kdb_on_nmi) {
576					printf ("NMI ... going to debugger\n");
577					kdb_trap(type, 0, frame);
578				}
579#endif /* KDB */
580				goto out;
581			} else if (panic_on_nmi == 0)
582				goto out;
583			/* FALLTHROUGH */
584#endif /* DEV_ISA */
585		}
586
587		trap_fatal(frame, 0);
588		goto out;
589	}
590
591	/* Translate fault for emulators (e.g. Linux) */
592	if (*p->p_sysent->sv_transtrap)
593		i = (*p->p_sysent->sv_transtrap)(i, type);
594
595	ksiginfo_init_trap(&ksi);
596	ksi.ksi_signo = i;
597	ksi.ksi_code = ucode;
598	ksi.ksi_trapno = type;
599	ksi.ksi_addr = (void *)addr;
600	if (uprintf_signal) {
601		uprintf("pid %d comm %s: signal %d err %lx code %d type %d "
602		    "addr 0x%lx rsp 0x%lx rip 0x%lx "
603		    "<%02x %02x %02x %02x %02x %02x %02x %02x>\n",
604		    p->p_pid, p->p_comm, i, frame->tf_err, ucode, type, addr,
605		    frame->tf_rsp, frame->tf_rip,
606		    fubyte((void *)(frame->tf_rip + 0)),
607		    fubyte((void *)(frame->tf_rip + 1)),
608		    fubyte((void *)(frame->tf_rip + 2)),
609		    fubyte((void *)(frame->tf_rip + 3)),
610		    fubyte((void *)(frame->tf_rip + 4)),
611		    fubyte((void *)(frame->tf_rip + 5)),
612		    fubyte((void *)(frame->tf_rip + 6)),
613		    fubyte((void *)(frame->tf_rip + 7)));
614	}
615	KASSERT((read_rflags() & PSL_I) != 0, ("interrupts disabled"));
616	trapsignal(td, &ksi);
617
618user:
619	userret(td, frame);
620	KASSERT(PCB_USER_FPU(td->td_pcb),
621	    ("Return from trap with kernel FPU ctx leaked"));
622userout:
623out:
624	return;
625}
626
627static int
628trap_pfault(frame, usermode)
629	struct trapframe *frame;
630	int usermode;
631{
632	vm_offset_t va;
633	struct vmspace *vm;
634	vm_map_t map;
635	int rv = 0;
636	vm_prot_t ftype;
637	struct thread *td = curthread;
638	struct proc *p = td->td_proc;
639	vm_offset_t eva = frame->tf_addr;
640
641	if (__predict_false((td->td_pflags & TDP_NOFAULTING) != 0)) {
642		/*
643		 * Due to both processor errata and lazy TLB invalidation when
644		 * access restrictions are removed from virtual pages, memory
645		 * accesses that are allowed by the physical mapping layer may
646		 * nonetheless cause one spurious page fault per virtual page.
647		 * When the thread is executing a "no faulting" section that
648		 * is bracketed by vm_fault_{disable,enable}_pagefaults(),
649		 * every page fault is treated as a spurious page fault,
650		 * unless it accesses the same virtual address as the most
651		 * recent page fault within the same "no faulting" section.
652		 */
653		if (td->td_md.md_spurflt_addr != eva ||
654		    (td->td_pflags & TDP_RESETSPUR) != 0) {
655			/*
656			 * Do nothing to the TLB.  A stale TLB entry is
657			 * flushed automatically by a page fault.
658			 */
659			td->td_md.md_spurflt_addr = eva;
660			td->td_pflags &= ~TDP_RESETSPUR;
661			return (0);
662		}
663	} else {
664		/*
665		 * If we get a page fault while in a critical section, then
666		 * it is most likely a fatal kernel page fault.  The kernel
667		 * is already going to panic trying to get a sleep lock to
668		 * do the VM lookup, so just consider it a fatal trap so the
669		 * kernel can print out a useful trap message and even get
670		 * to the debugger.
671		 *
672		 * If we get a page fault while holding a non-sleepable
673		 * lock, then it is most likely a fatal kernel page fault.
674		 * If WITNESS is enabled, then it's going to whine about
675		 * bogus LORs with various VM locks, so just skip to the
676		 * fatal trap handling directly.
677		 */
678		if (td->td_critnest != 0 ||
679		    WITNESS_CHECK(WARN_SLEEPOK | WARN_GIANTOK, NULL,
680		    "Kernel page fault") != 0) {
681			trap_fatal(frame, eva);
682			return (-1);
683		}
684	}
685	va = trunc_page(eva);
686	if (va >= VM_MIN_KERNEL_ADDRESS) {
687		/*
688		 * Don't allow user-mode faults in kernel address space.
689		 */
690		if (usermode)
691			goto nogo;
692
693		map = kernel_map;
694	} else {
695		/*
696		 * This is a fault on non-kernel virtual memory.  If either
697		 * p or p->p_vmspace is NULL, then the fault is fatal.
698		 */
699		if (p == NULL || (vm = p->p_vmspace) == NULL)
700			goto nogo;
701
702		map = &vm->vm_map;
703
704		/*
705		 * When accessing a usermode address, kernel must be
706		 * ready to accept the page fault, and provide a
707		 * handling routine.  Since accessing the address
708		 * without the handler is a bug, do not try to handle
709		 * it normally, and panic immediately.
710		 */
711		if (!usermode && (td->td_intr_nesting_level != 0 ||
712		    curpcb->pcb_onfault == NULL)) {
713			trap_fatal(frame, eva);
714			return (-1);
715		}
716	}
717
718	/*
719	 * If the trap was caused by errant bits in the PTE then panic.
720	 */
721	if (frame->tf_err & PGEX_RSV) {
722		trap_fatal(frame, eva);
723		return (-1);
724	}
725
726	/*
727	 * PGEX_I is defined only if the execute disable bit capability is
728	 * supported and enabled.
729	 */
730	if (frame->tf_err & PGEX_W)
731		ftype = VM_PROT_WRITE;
732	else if ((frame->tf_err & PGEX_I) && pg_nx != 0)
733		ftype = VM_PROT_EXECUTE;
734	else
735		ftype = VM_PROT_READ;
736
737	if (map != kernel_map) {
738		/*
739		 * Keep swapout from messing with us during this
740		 *	critical time.
741		 */
742		PROC_LOCK(p);
743		++p->p_lock;
744		PROC_UNLOCK(p);
745
746		/* Fault in the user page: */
747		rv = vm_fault(map, va, ftype, VM_FAULT_NORMAL);
748
749		PROC_LOCK(p);
750		--p->p_lock;
751		PROC_UNLOCK(p);
752	} else {
753		/*
754		 * Don't have to worry about process locking or stacks in the
755		 * kernel.
756		 */
757		rv = vm_fault(map, va, ftype, VM_FAULT_NORMAL);
758	}
759	if (rv == KERN_SUCCESS) {
760#ifdef HWPMC_HOOKS
761		if (ftype == VM_PROT_READ || ftype == VM_PROT_WRITE) {
762			PMC_SOFT_CALL_TF( , , page_fault, all, frame);
763			if (ftype == VM_PROT_READ)
764				PMC_SOFT_CALL_TF( , , page_fault, read,
765				    frame);
766			else
767				PMC_SOFT_CALL_TF( , , page_fault, write,
768				    frame);
769		}
770#endif
771		return (0);
772	}
773nogo:
774	if (!usermode) {
775		if (td->td_intr_nesting_level == 0 &&
776		    curpcb->pcb_onfault != NULL) {
777			frame->tf_rip = (long)curpcb->pcb_onfault;
778			return (0);
779		}
780		trap_fatal(frame, eva);
781		return (-1);
782	}
783	return ((rv == KERN_PROTECTION_FAILURE) ? SIGBUS : SIGSEGV);
784}
785
786static void
787trap_fatal(frame, eva)
788	struct trapframe *frame;
789	vm_offset_t eva;
790{
791	int code, ss;
792	u_int type;
793	long esp;
794	struct soft_segment_descriptor softseg;
795	char *msg;
796#ifdef KDB
797	bool handled;
798#endif
799
800	code = frame->tf_err;
801	type = frame->tf_trapno;
802	sdtossd(&gdt[NGDT * PCPU_GET(cpuid) + IDXSEL(frame->tf_cs & 0xffff)],
803	    &softseg);
804
805	if (type <= MAX_TRAP_MSG)
806		msg = trap_msg[type];
807	else
808		msg = "UNKNOWN";
809	printf("\n\nFatal trap %d: %s while in %s mode\n", type, msg,
810	    ISPL(frame->tf_cs) == SEL_UPL ? "user" : "kernel");
811#ifdef SMP
812	/* two separate prints in case of a trap on an unmapped page */
813	printf("cpuid = %d; ", PCPU_GET(cpuid));
814	printf("apic id = %02x\n", PCPU_GET(apic_id));
815#endif
816	if (type == T_PAGEFLT) {
817		printf("fault virtual address	= 0x%lx\n", eva);
818		printf("fault code		= %s %s %s, %s\n",
819			code & PGEX_U ? "user" : "supervisor",
820			code & PGEX_W ? "write" : "read",
821			code & PGEX_I ? "instruction" : "data",
822			code & PGEX_RSV ? "reserved bits in PTE" :
823			code & PGEX_P ? "protection violation" : "page not present");
824	}
825	printf("instruction pointer	= 0x%lx:0x%lx\n",
826	       frame->tf_cs & 0xffff, frame->tf_rip);
827        if (ISPL(frame->tf_cs) == SEL_UPL) {
828		ss = frame->tf_ss & 0xffff;
829		esp = frame->tf_rsp;
830	} else {
831		ss = GSEL(GDATA_SEL, SEL_KPL);
832		esp = (long)&frame->tf_rsp;
833	}
834	printf("stack pointer	        = 0x%x:0x%lx\n", ss, esp);
835	printf("frame pointer	        = 0x%x:0x%lx\n", ss, frame->tf_rbp);
836	printf("code segment		= base 0x%lx, limit 0x%lx, type 0x%x\n",
837	       softseg.ssd_base, softseg.ssd_limit, softseg.ssd_type);
838	printf("			= DPL %d, pres %d, long %d, def32 %d, gran %d\n",
839	       softseg.ssd_dpl, softseg.ssd_p, softseg.ssd_long, softseg.ssd_def32,
840	       softseg.ssd_gran);
841	printf("processor eflags	= ");
842	if (frame->tf_rflags & PSL_T)
843		printf("trace trap, ");
844	if (frame->tf_rflags & PSL_I)
845		printf("interrupt enabled, ");
846	if (frame->tf_rflags & PSL_NT)
847		printf("nested task, ");
848	if (frame->tf_rflags & PSL_RF)
849		printf("resume, ");
850	printf("IOPL = %ld\n", (frame->tf_rflags & PSL_IOPL) >> 12);
851	printf("current process		= %d (%s)\n",
852	    curproc->p_pid, curthread->td_name);
853
854#ifdef KDB
855	if (debugger_on_panic) {
856		kdb_why = KDB_WHY_TRAP;
857		handled = kdb_trap(type, 0, frame);
858		kdb_why = KDB_WHY_UNSET;
859		if (handled)
860			return;
861	}
862#endif
863	printf("trap number		= %d\n", type);
864	if (type <= MAX_TRAP_MSG)
865		panic("%s", trap_msg[type]);
866	else
867		panic("unknown/reserved trap");
868}
869
870/*
871 * Double fault handler. Called when a fault occurs while writing
872 * a frame for a trap/exception onto the stack. This usually occurs
873 * when the stack overflows (such is the case with infinite recursion,
874 * for example).
875 */
876void
877dblfault_handler(struct trapframe *frame)
878{
879#ifdef KDTRACE_HOOKS
880	if (dtrace_doubletrap_func != NULL)
881		(*dtrace_doubletrap_func)();
882#endif
883	printf("\nFatal double fault\n");
884	printf("rip = 0x%lx\n", frame->tf_rip);
885	printf("rsp = 0x%lx\n", frame->tf_rsp);
886	printf("rbp = 0x%lx\n", frame->tf_rbp);
887#ifdef SMP
888	/* two separate prints in case of a trap on an unmapped page */
889	printf("cpuid = %d; ", PCPU_GET(cpuid));
890	printf("apic id = %02x\n", PCPU_GET(apic_id));
891#endif
892	panic("double fault");
893}
894
895int
896cpu_fetch_syscall_args(struct thread *td, struct syscall_args *sa)
897{
898	struct proc *p;
899	struct trapframe *frame;
900	register_t *argp;
901	caddr_t params;
902	int reg, regcnt, error;
903
904	p = td->td_proc;
905	frame = td->td_frame;
906	reg = 0;
907	regcnt = 6;
908
909	params = (caddr_t)frame->tf_rsp + sizeof(register_t);
910	sa->code = frame->tf_rax;
911
912	if (sa->code == SYS_syscall || sa->code == SYS___syscall) {
913		sa->code = frame->tf_rdi;
914		reg++;
915		regcnt--;
916	}
917 	if (p->p_sysent->sv_mask)
918 		sa->code &= p->p_sysent->sv_mask;
919
920 	if (sa->code >= p->p_sysent->sv_size)
921 		sa->callp = &p->p_sysent->sv_table[0];
922  	else
923 		sa->callp = &p->p_sysent->sv_table[sa->code];
924
925	sa->narg = sa->callp->sy_narg;
926	KASSERT(sa->narg <= sizeof(sa->args) / sizeof(sa->args[0]),
927	    ("Too many syscall arguments!"));
928	error = 0;
929	argp = &frame->tf_rdi;
930	argp += reg;
931	bcopy(argp, sa->args, sizeof(sa->args[0]) * regcnt);
932	if (sa->narg > regcnt) {
933		KASSERT(params != NULL, ("copyin args with no params!"));
934		error = copyin(params, &sa->args[regcnt],
935	    	    (sa->narg - regcnt) * sizeof(sa->args[0]));
936	}
937
938	if (error == 0) {
939		td->td_retval[0] = 0;
940		td->td_retval[1] = frame->tf_rdx;
941	}
942
943	return (error);
944}
945
946#include "../../kern/subr_syscall.c"
947
948/*
949 * System call handler for native binaries.  The trap frame is already
950 * set up by the assembler trampoline and a pointer to it is saved in
951 * td_frame.
952 */
953void
954amd64_syscall(struct thread *td, int traced)
955{
956	struct syscall_args sa;
957	int error;
958	ksiginfo_t ksi;
959
960#ifdef DIAGNOSTIC
961	if (ISPL(td->td_frame->tf_cs) != SEL_UPL) {
962		panic("syscall");
963		/* NOT REACHED */
964	}
965#endif
966	error = syscallenter(td, &sa);
967
968	/*
969	 * Traced syscall.
970	 */
971	if (__predict_false(traced)) {
972		td->td_frame->tf_rflags &= ~PSL_T;
973		ksiginfo_init_trap(&ksi);
974		ksi.ksi_signo = SIGTRAP;
975		ksi.ksi_code = TRAP_TRACE;
976		ksi.ksi_addr = (void *)td->td_frame->tf_rip;
977		trapsignal(td, &ksi);
978	}
979
980	KASSERT(PCB_USER_FPU(td->td_pcb),
981	    ("System call %s returning with kernel FPU ctx leaked",
982	     syscallname(td->td_proc, sa.code)));
983	KASSERT(td->td_pcb->pcb_save == get_pcb_user_save_td(td),
984	    ("System call %s returning with mangled pcb_save",
985	     syscallname(td->td_proc, sa.code)));
986
987	syscallret(td, error, &sa);
988
989	/*
990	 * If the user-supplied value of %rip is not a canonical
991	 * address, then some CPUs will trigger a ring 0 #GP during
992	 * the sysret instruction.  However, the fault handler would
993	 * execute in ring 0 with the user's %gs and %rsp which would
994	 * not be safe.  Instead, use the full return path which
995	 * catches the problem safely.
996	 */
997	if (td->td_frame->tf_rip >= VM_MAXUSER_ADDRESS)
998		set_pcb_flags(td->td_pcb, PCB_FULL_IRET);
999}
1000