xref: /illumos-gate/usr/src/uts/i86pc/os/trap.c (revision 257873cf)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 
22 /*
23  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26 
27 /*	Copyright (c) 1990, 1991 UNIX System Laboratories, Inc. */
28 /*	Copyright (c) 1984, 1986, 1987, 1988, 1989, 1990 AT&T   */
29 /*		All Rights Reserved   				*/
30 /*								*/
31 /*	Copyright (c) 1987, 1988 Microsoft Corporation  	*/
32 /*		All Rights Reserved   				*/
33 /*								*/
34 
35 
36 #include <sys/types.h>
37 #include <sys/sysmacros.h>
38 #include <sys/param.h>
39 #include <sys/signal.h>
40 #include <sys/systm.h>
41 #include <sys/user.h>
42 #include <sys/proc.h>
43 #include <sys/disp.h>
44 #include <sys/class.h>
45 #include <sys/core.h>
46 #include <sys/syscall.h>
47 #include <sys/cpuvar.h>
48 #include <sys/vm.h>
49 #include <sys/sysinfo.h>
50 #include <sys/fault.h>
51 #include <sys/stack.h>
52 #include <sys/psw.h>
53 #include <sys/regset.h>
54 #include <sys/fp.h>
55 #include <sys/trap.h>
56 #include <sys/kmem.h>
57 #include <sys/vtrace.h>
58 #include <sys/cmn_err.h>
59 #include <sys/prsystm.h>
60 #include <sys/mutex_impl.h>
61 #include <sys/machsystm.h>
62 #include <sys/archsystm.h>
63 #include <sys/sdt.h>
64 #include <sys/avintr.h>
65 #include <sys/kobj.h>
66 
67 #include <vm/hat.h>
68 
69 #include <vm/seg_kmem.h>
70 #include <vm/as.h>
71 #include <vm/seg.h>
72 #include <vm/hat_pte.h>
73 #include <vm/hat_i86.h>
74 
75 #include <sys/procfs.h>
76 
77 #include <sys/reboot.h>
78 #include <sys/debug.h>
79 #include <sys/debugreg.h>
80 #include <sys/modctl.h>
81 #include <sys/aio_impl.h>
82 #include <sys/tnf.h>
83 #include <sys/tnf_probe.h>
84 #include <sys/cred.h>
85 #include <sys/mman.h>
86 #include <sys/x86_archext.h>
87 #include <sys/copyops.h>
88 #include <c2/audit.h>
89 #include <sys/ftrace.h>
90 #include <sys/panic.h>
91 #include <sys/traptrace.h>
92 #include <sys/ontrap.h>
93 #include <sys/cpc_impl.h>
94 #include <sys/bootconf.h>
95 #include <sys/bootinfo.h>
96 #include <sys/promif.h>
97 #include <sys/mach_mmu.h>
98 #if defined(__xpv)
99 #include <sys/hypervisor.h>
100 #endif
101 #include <sys/contract/process_impl.h>
102 
103 #define	USER	0x10000		/* user-mode flag added to trap type */
104 
105 static const char *trap_type_mnemonic[] = {
106 	"de",	"db",	"2",	"bp",
107 	"of",	"br",	"ud",	"nm",
108 	"df",	"9",	"ts",	"np",
109 	"ss",	"gp",	"pf",	"15",
110 	"mf",	"ac",	"mc",	"xf"
111 };
112 
113 static const char *trap_type[] = {
114 	"Divide error",				/* trap id 0 	*/
115 	"Debug",				/* trap id 1	*/
116 	"NMI interrupt",			/* trap id 2	*/
117 	"Breakpoint",				/* trap id 3 	*/
118 	"Overflow",				/* trap id 4 	*/
119 	"BOUND range exceeded",			/* trap id 5 	*/
120 	"Invalid opcode",			/* trap id 6 	*/
121 	"Device not available",			/* trap id 7 	*/
122 	"Double fault",				/* trap id 8 	*/
123 	"Coprocessor segment overrun",		/* trap id 9 	*/
124 	"Invalid TSS",				/* trap id 10 	*/
125 	"Segment not present",			/* trap id 11 	*/
126 	"Stack segment fault",			/* trap id 12 	*/
127 	"General protection",			/* trap id 13 	*/
128 	"Page fault",				/* trap id 14 	*/
129 	"Reserved",				/* trap id 15 	*/
130 	"x87 floating point error",		/* trap id 16 	*/
131 	"Alignment check",			/* trap id 17 	*/
132 	"Machine check",			/* trap id 18	*/
133 	"SIMD floating point exception",	/* trap id 19	*/
134 };
135 
136 #define	TRAP_TYPES	(sizeof (trap_type) / sizeof (trap_type[0]))
137 
138 #define	SLOW_SCALL_SIZE	2
139 #define	FAST_SCALL_SIZE	2
140 
141 int tudebug = 0;
142 int tudebugbpt = 0;
143 int tudebugfpe = 0;
144 int tudebugsse = 0;
145 
146 #if defined(TRAPDEBUG) || defined(lint)
147 int tdebug = 0;
148 int lodebug = 0;
149 int faultdebug = 0;
150 #else
151 #define	tdebug	0
152 #define	lodebug	0
153 #define	faultdebug	0
154 #endif /* defined(TRAPDEBUG) || defined(lint) */
155 
156 #if defined(TRAPTRACE)
157 /*
158  * trap trace record for cpu0 is allocated here.
159  * trap trace records for non-boot cpus are allocated in mp_startup_init().
160  */
161 static trap_trace_rec_t trap_tr0[TRAPTR_NENT];
162 trap_trace_ctl_t trap_trace_ctl[NCPU] = {
163 	{
164 	    (uintptr_t)trap_tr0,			/* next record */
165 	    (uintptr_t)trap_tr0,			/* first record */
166 	    (uintptr_t)(trap_tr0 + TRAPTR_NENT),	/* limit */
167 	    (uintptr_t)0				/* current */
168 	},
169 };
170 
171 /*
172  * default trap buffer size
173  */
174 size_t trap_trace_bufsize = TRAPTR_NENT * sizeof (trap_trace_rec_t);
175 int trap_trace_freeze = 0;
176 int trap_trace_off = 0;
177 
178 /*
179  * A dummy TRAPTRACE entry to use after death.
180  */
181 trap_trace_rec_t trap_trace_postmort;
182 
183 static void dump_ttrace(void);
184 #endif	/* TRAPTRACE */
185 static void dumpregs(struct regs *);
186 static void showregs(uint_t, struct regs *, caddr_t);
187 static int kern_gpfault(struct regs *);
188 
189 /*ARGSUSED*/
190 static int
191 die(uint_t type, struct regs *rp, caddr_t addr, processorid_t cpuid)
192 {
193 	struct panic_trap_info ti;
194 	const char *trap_name, *trap_mnemonic;
195 
196 	if (type < TRAP_TYPES) {
197 		trap_name = trap_type[type];
198 		trap_mnemonic = trap_type_mnemonic[type];
199 	} else {
200 		trap_name = "trap";
201 		trap_mnemonic = "-";
202 	}
203 
204 #ifdef TRAPTRACE
205 	TRAPTRACE_FREEZE;
206 #endif
207 
208 	ti.trap_regs = rp;
209 	ti.trap_type = type & ~USER;
210 	ti.trap_addr = addr;
211 
212 	curthread->t_panic_trap = &ti;
213 
214 	if (type == T_PGFLT && addr < (caddr_t)KERNELBASE) {
215 		panic("BAD TRAP: type=%x (#%s %s) rp=%p addr=%p "
216 		    "occurred in module \"%s\" due to %s",
217 		    type, trap_mnemonic, trap_name, (void *)rp, (void *)addr,
218 		    mod_containing_pc((caddr_t)rp->r_pc),
219 		    addr < (caddr_t)PAGESIZE ?
220 		    "a NULL pointer dereference" :
221 		    "an illegal access to a user address");
222 	} else
223 		panic("BAD TRAP: type=%x (#%s %s) rp=%p addr=%p",
224 		    type, trap_mnemonic, trap_name, (void *)rp, (void *)addr);
225 	return (0);
226 }
227 
228 /*
229  * Rewrite the instruction at pc to be an int $T_SYSCALLINT instruction.
230  *
231  * int <vector> is two bytes: 0xCD <vector>
232  */
233 
234 static int
235 rewrite_syscall(caddr_t pc)
236 {
237 	uchar_t instr[SLOW_SCALL_SIZE] = { 0xCD, T_SYSCALLINT };
238 
239 	if (uwrite(curthread->t_procp, instr, SLOW_SCALL_SIZE,
240 	    (uintptr_t)pc) != 0)
241 		return (1);
242 
243 	return (0);
244 }
245 
246 /*
247  * Test to see if the instruction at pc is sysenter or syscall. The second
248  * argument should be the x86 feature flag corresponding to the expected
249  * instruction.
250  *
251  * sysenter is two bytes: 0x0F 0x34
252  * syscall is two bytes:  0x0F 0x05
253  * int $T_SYSCALLINT is two bytes: 0xCD 0x91
254  */
255 
256 static int
257 instr_is_other_syscall(caddr_t pc, int which)
258 {
259 	uchar_t instr[FAST_SCALL_SIZE];
260 
261 	ASSERT(which == X86_SEP || which == X86_ASYSC || which == 0xCD);
262 
263 	if (copyin_nowatch(pc, (caddr_t)instr, FAST_SCALL_SIZE) != 0)
264 		return (0);
265 
266 	switch (which) {
267 	case X86_SEP:
268 		if (instr[0] == 0x0F && instr[1] == 0x34)
269 			return (1);
270 		break;
271 	case X86_ASYSC:
272 		if (instr[0] == 0x0F && instr[1] == 0x05)
273 			return (1);
274 		break;
275 	case 0xCD:
276 		if (instr[0] == 0xCD && instr[1] == T_SYSCALLINT)
277 			return (1);
278 		break;
279 	}
280 
281 	return (0);
282 }
283 
284 static const char *
285 syscall_insn_string(int syscall_insn)
286 {
287 	switch (syscall_insn) {
288 	case X86_SEP:
289 		return ("sysenter");
290 	case X86_ASYSC:
291 		return ("syscall");
292 	case 0xCD:
293 		return ("int");
294 	default:
295 		return ("Unknown");
296 	}
297 }
298 
299 static int
300 ldt_rewrite_syscall(struct regs *rp, proc_t *p, int syscall_insn)
301 {
302 	caddr_t	linearpc;
303 	int return_code = 0;
304 
305 	mutex_enter(&p->p_ldtlock);	/* Must be held across linear_pc() */
306 
307 	if (linear_pc(rp, p, &linearpc) == 0) {
308 
309 		/*
310 		 * If another thread beat us here, it already changed
311 		 * this site to the slower (int) syscall instruction.
312 		 */
313 		if (instr_is_other_syscall(linearpc, 0xCD)) {
314 			return_code = 1;
315 		} else if (instr_is_other_syscall(linearpc, syscall_insn)) {
316 
317 			if (rewrite_syscall(linearpc) == 0) {
318 				return_code = 1;
319 			}
320 #ifdef DEBUG
321 			else
322 				cmn_err(CE_WARN, "failed to rewrite %s "
323 				    "instruction in process %d",
324 				    syscall_insn_string(syscall_insn),
325 				    p->p_pid);
326 #endif /* DEBUG */
327 		}
328 	}
329 
330 	mutex_exit(&p->p_ldtlock);	/* Must be held across linear_pc() */
331 
332 	return (return_code);
333 }
334 
335 /*
336  * Test to see if the instruction at pc is a system call instruction.
337  *
338  * The bytes of an lcall instruction used for the syscall trap.
339  * static uchar_t lcall[7] = { 0x9a, 0, 0, 0, 0, 0x7, 0 };
340  * static uchar_t lcallalt[7] = { 0x9a, 0, 0, 0, 0, 0x27, 0 };
341  */
342 
343 #define	LCALLSIZE	7
344 
345 static int
346 instr_is_lcall_syscall(caddr_t pc)
347 {
348 	uchar_t instr[LCALLSIZE];
349 
350 	if (copyin_nowatch(pc, (caddr_t)instr, LCALLSIZE) == 0 &&
351 	    instr[0] == 0x9a &&
352 	    instr[1] == 0 &&
353 	    instr[2] == 0 &&
354 	    instr[3] == 0 &&
355 	    instr[4] == 0 &&
356 	    (instr[5] == 0x7 || instr[5] == 0x27) &&
357 	    instr[6] == 0)
358 		return (1);
359 
360 	return (0);
361 }
362 
363 #ifdef __amd64
364 
365 /*
366  * In the first revisions of amd64 CPUs produced by AMD, the LAHF and
367  * SAHF instructions were not implemented in 64-bit mode. Later revisions
368  * did implement these instructions. An extension to the cpuid instruction
369  * was added to check for the capability of executing these instructions
370  * in 64-bit mode.
371  *
372  * Intel originally did not implement these instructions in EM64T either,
373  * but added them in later revisions.
374  *
375  * So, there are different chip revisions by both vendors out there that
376  * may or may not implement these instructions. The easy solution is to
377  * just always emulate these instructions on demand.
378  *
379  * SAHF == store %ah in the lower 8 bits of %rflags (opcode 0x9e)
380  * LAHF == load the lower 8 bits of %rflags into %ah (opcode 0x9f)
381  */
382 
383 #define	LSAHFSIZE 1
384 
385 static int
386 instr_is_lsahf(caddr_t pc, uchar_t *instr)
387 {
388 	if (copyin_nowatch(pc, (caddr_t)instr, LSAHFSIZE) == 0 &&
389 	    (*instr == 0x9e || *instr == 0x9f))
390 		return (1);
391 	return (0);
392 }
393 
394 /*
395  * Emulate the LAHF and SAHF instructions. The reference manuals define
396  * these instructions to always load/store bit 1 as a 1, and bits 3 and 5
397  * as a 0. The other, defined, bits are copied (the PS_ICC bits and PS_P).
398  *
399  * Note that %ah is bits 8-15 of %rax.
400  */
401 static void
402 emulate_lsahf(struct regs *rp, uchar_t instr)
403 {
404 	if (instr == 0x9e) {
405 		/* sahf. Copy bits from %ah to flags. */
406 		rp->r_ps = (rp->r_ps & ~0xff) |
407 		    ((rp->r_rax >> 8) & PSL_LSAHFMASK) | PS_MB1;
408 	} else {
409 		/* lahf. Copy bits from flags to %ah. */
410 		rp->r_rax = (rp->r_rax & ~0xff00) |
411 		    (((rp->r_ps & PSL_LSAHFMASK) | PS_MB1) << 8);
412 	}
413 	rp->r_pc += LSAHFSIZE;
414 }
415 #endif /* __amd64 */
416 
417 #ifdef OPTERON_ERRATUM_91
418 
419 /*
420  * Test to see if the instruction at pc is a prefetch instruction.
421  *
422  * The first byte of prefetch instructions is always 0x0F.
423  * The second byte is 0x18 for regular prefetch or 0x0D for AMD 3dnow prefetch.
424  * The third byte is between 0 and 3 inclusive.
425  */
426 
427 #define	PREFETCHSIZE 3
428 
429 static int
430 cmp_to_prefetch(uchar_t *p)
431 {
432 	if (*p == 0x0F && (*(p+1) == 0x18 || *(p+1) == 0x0D) && *(p+2) <= 3)
433 		return (1);
434 	return (0);
435 }
436 
437 static int
438 instr_is_prefetch(caddr_t pc)
439 {
440 	uchar_t instr[PREFETCHSIZE];
441 	int	error;
442 
443 	error = copyin_nowatch(pc, (caddr_t)instr, PREFETCHSIZE);
444 
445 	if (error == 0 && cmp_to_prefetch(instr))
446 		return (1);
447 	return (0);
448 }
449 
450 #endif /* OPTERON_ERRATUM_91 */
451 
452 /*
453  * Called from the trap handler when a processor trap occurs.
454  *
455  * Note: All user-level traps that might call stop() must exit
456  * trap() by 'goto out' or by falling through.
457  * Note Also: trap() is usually called with interrupts enabled, (PS_IE == 1)
458  * however, there are paths that arrive here with PS_IE == 0 so special care
459  * must be taken in those cases.
460  */
461 void
462 trap(struct regs *rp, caddr_t addr, processorid_t cpuid)
463 {
464 	kthread_t *ct = curthread;
465 	enum seg_rw rw;
466 	unsigned type;
467 	proc_t *p = ttoproc(ct);
468 	klwp_t *lwp = ttolwp(ct);
469 	uintptr_t lofault;
470 	faultcode_t pagefault(), res, errcode;
471 	enum fault_type fault_type;
472 	k_siginfo_t siginfo;
473 	uint_t fault = 0;
474 	int mstate;
475 	int sicode = 0;
476 	int watchcode;
477 	int watchpage;
478 	caddr_t vaddr;
479 	int singlestep_twiddle;
480 	size_t sz;
481 	int ta;
482 #ifdef __amd64
483 	uchar_t instr;
484 #endif
485 
486 	ASSERT_STACK_ALIGNED();
487 
488 	type = rp->r_trapno;
489 	CPU_STATS_ADDQ(CPU, sys, trap, 1);
490 	ASSERT(ct->t_schedflag & TS_DONT_SWAP);
491 
492 	if (type == T_PGFLT) {
493 
494 		errcode = rp->r_err;
495 		if (errcode & PF_ERR_WRITE)
496 			rw = S_WRITE;
497 		else if ((caddr_t)rp->r_pc == addr ||
498 		    (mmu.pt_nx != 0 && (errcode & PF_ERR_EXEC)))
499 			rw = S_EXEC;
500 		else
501 			rw = S_READ;
502 
503 #if defined(__i386)
504 		/*
505 		 * Pentium Pro work-around
506 		 */
507 		if ((errcode & PF_ERR_PROT) && pentiumpro_bug4046376) {
508 			uint_t	attr;
509 			uint_t	priv_violation;
510 			uint_t	access_violation;
511 
512 			if (hat_getattr(addr < (caddr_t)kernelbase ?
513 			    curproc->p_as->a_hat : kas.a_hat, addr, &attr)
514 			    == -1) {
515 				errcode &= ~PF_ERR_PROT;
516 			} else {
517 				priv_violation = (errcode & PF_ERR_USER) &&
518 				    !(attr & PROT_USER);
519 				access_violation = (errcode & PF_ERR_WRITE) &&
520 				    !(attr & PROT_WRITE);
521 				if (!priv_violation && !access_violation)
522 					goto cleanup;
523 			}
524 		}
525 #endif /* __i386 */
526 
527 	} else if (type == T_SGLSTP && lwp != NULL)
528 		lwp->lwp_pcb.pcb_drstat = (uintptr_t)addr;
529 
530 	if (tdebug)
531 		showregs(type, rp, addr);
532 
533 	if (USERMODE(rp->r_cs)) {
534 		/*
535 		 * Set up the current cred to use during this trap. u_cred
536 		 * no longer exists.  t_cred is used instead.
537 		 * The current process credential applies to the thread for
538 		 * the entire trap.  If trapping from the kernel, this
539 		 * should already be set up.
540 		 */
541 		if (ct->t_cred != p->p_cred) {
542 			cred_t *oldcred = ct->t_cred;
543 			/*
544 			 * DTrace accesses t_cred in probe context.  t_cred
545 			 * must always be either NULL, or point to a valid,
546 			 * allocated cred structure.
547 			 */
548 			ct->t_cred = crgetcred();
549 			crfree(oldcred);
550 		}
551 		ASSERT(lwp != NULL);
552 		type |= USER;
553 		ASSERT(lwptoregs(lwp) == rp);
554 		lwp->lwp_state = LWP_SYS;
555 
556 		switch (type) {
557 		case T_PGFLT + USER:
558 			if ((caddr_t)rp->r_pc == addr)
559 				mstate = LMS_TFAULT;
560 			else
561 				mstate = LMS_DFAULT;
562 			break;
563 		default:
564 			mstate = LMS_TRAP;
565 			break;
566 		}
567 		/* Kernel probe */
568 		TNF_PROBE_1(thread_state, "thread", /* CSTYLED */,
569 		    tnf_microstate, state, mstate);
570 		mstate = new_mstate(ct, mstate);
571 
572 		bzero(&siginfo, sizeof (siginfo));
573 	}
574 
575 	switch (type) {
576 	case T_PGFLT + USER:
577 	case T_SGLSTP:
578 	case T_SGLSTP + USER:
579 	case T_BPTFLT + USER:
580 		break;
581 
582 	default:
583 		FTRACE_2("trap(): type=0x%lx, regs=0x%lx",
584 		    (ulong_t)type, (ulong_t)rp);
585 		break;
586 	}
587 
588 	switch (type) {
589 	case T_SIMDFPE:
590 		/* Make sure we enable interrupts before die()ing */
591 		sti();	/* The SIMD exception comes in via cmninttrap */
592 		/*FALLTHROUGH*/
593 	default:
594 		if (type & USER) {
595 			if (tudebug)
596 				showregs(type, rp, (caddr_t)0);
597 			printf("trap: Unknown trap type %d in user mode\n",
598 			    type & ~USER);
599 			siginfo.si_signo = SIGILL;
600 			siginfo.si_code  = ILL_ILLTRP;
601 			siginfo.si_addr  = (caddr_t)rp->r_pc;
602 			siginfo.si_trapno = type & ~USER;
603 			fault = FLTILL;
604 			break;
605 		} else {
606 			(void) die(type, rp, addr, cpuid);
607 			/*NOTREACHED*/
608 		}
609 
610 	case T_PGFLT:		/* system page fault */
611 		/*
612 		 * If we're under on_trap() protection (see <sys/ontrap.h>),
613 		 * set ot_trap and bounce back to the on_trap() call site
614 		 * via the installed trampoline.
615 		 */
616 		if ((ct->t_ontrap != NULL) &&
617 		    (ct->t_ontrap->ot_prot & OT_DATA_ACCESS)) {
618 			ct->t_ontrap->ot_trap |= OT_DATA_ACCESS;
619 			rp->r_pc = ct->t_ontrap->ot_trampoline;
620 			goto cleanup;
621 		}
622 
623 		/*
624 		 * See if we can handle as pagefault. Save lofault
625 		 * across this. Here we assume that an address
626 		 * less than KERNELBASE is a user fault.
627 		 * We can do this as copy.s routines verify that the
628 		 * starting address is less than KERNELBASE before
629 		 * starting and because we know that we always have
630 		 * KERNELBASE mapped as invalid to serve as a "barrier".
631 		 */
632 		lofault = ct->t_lofault;
633 		ct->t_lofault = 0;
634 
635 		mstate = new_mstate(ct, LMS_KFAULT);
636 
637 		if (addr < (caddr_t)kernelbase) {
638 			res = pagefault(addr,
639 			    (errcode & PF_ERR_PROT)? F_PROT: F_INVAL, rw, 0);
640 			if (res == FC_NOMAP &&
641 			    addr < p->p_usrstack &&
642 			    grow(addr))
643 				res = 0;
644 		} else {
645 			res = pagefault(addr,
646 			    (errcode & PF_ERR_PROT)? F_PROT: F_INVAL, rw, 1);
647 		}
648 		(void) new_mstate(ct, mstate);
649 
650 		/*
651 		 * Restore lofault. If we resolved the fault, exit.
652 		 * If we didn't and lofault wasn't set, die.
653 		 */
654 		ct->t_lofault = lofault;
655 		if (res == 0)
656 			goto cleanup;
657 
658 #if defined(OPTERON_ERRATUM_93) && defined(_LP64)
659 		if (lofault == 0 && opteron_erratum_93) {
660 			/*
661 			 * Workaround for Opteron Erratum 93. On return from
662 			 * a System Managment Interrupt at a HLT instruction
663 			 * the %rip might be truncated to a 32 bit value.
664 			 * BIOS is supposed to fix this, but some don't.
665 			 * If this occurs we simply restore the high order bits.
666 			 * The HLT instruction is 1 byte of 0xf4.
667 			 */
668 			uintptr_t	rip = rp->r_pc;
669 
670 			if ((rip & 0xfffffffful) == rip) {
671 				rip |= 0xfffffffful << 32;
672 				if (hat_getpfnum(kas.a_hat, (caddr_t)rip) !=
673 				    PFN_INVALID &&
674 				    (*(uchar_t *)rip == 0xf4 ||
675 				    *(uchar_t *)(rip - 1) == 0xf4)) {
676 					rp->r_pc = rip;
677 					goto cleanup;
678 				}
679 			}
680 		}
681 #endif /* OPTERON_ERRATUM_93 && _LP64 */
682 
683 #ifdef OPTERON_ERRATUM_91
684 		if (lofault == 0 && opteron_erratum_91) {
685 			/*
686 			 * Workaround for Opteron Erratum 91. Prefetches may
687 			 * generate a page fault (they're not supposed to do
688 			 * that!). If this occurs we simply return back to the
689 			 * instruction.
690 			 */
691 			caddr_t		pc = (caddr_t)rp->r_pc;
692 
693 			/*
694 			 * If the faulting PC is not mapped, this is a
695 			 * legitimate kernel page fault that must result in a
696 			 * panic. If the faulting PC is mapped, it could contain
697 			 * a prefetch instruction. Check for that here.
698 			 */
699 			if (hat_getpfnum(kas.a_hat, pc) != PFN_INVALID) {
700 				if (cmp_to_prefetch((uchar_t *)pc)) {
701 #ifdef DEBUG
702 					cmn_err(CE_WARN, "Opteron erratum 91 "
703 					    "occurred: kernel prefetch"
704 					    " at %p generated a page fault!",
705 					    (void *)rp->r_pc);
706 #endif /* DEBUG */
707 					goto cleanup;
708 				}
709 			}
710 			(void) die(type, rp, addr, cpuid);
711 		}
712 #endif /* OPTERON_ERRATUM_91 */
713 
714 		if (lofault == 0)
715 			(void) die(type, rp, addr, cpuid);
716 
717 		/*
718 		 * Cannot resolve fault.  Return to lofault.
719 		 */
720 		if (lodebug) {
721 			showregs(type, rp, addr);
722 			traceregs(rp);
723 		}
724 		if (FC_CODE(res) == FC_OBJERR)
725 			res = FC_ERRNO(res);
726 		else
727 			res = EFAULT;
728 		rp->r_r0 = res;
729 		rp->r_pc = ct->t_lofault;
730 		goto cleanup;
731 
732 	case T_PGFLT + USER:	/* user page fault */
733 		if (faultdebug) {
734 			char *fault_str;
735 
736 			switch (rw) {
737 			case S_READ:
738 				fault_str = "read";
739 				break;
740 			case S_WRITE:
741 				fault_str = "write";
742 				break;
743 			case S_EXEC:
744 				fault_str = "exec";
745 				break;
746 			default:
747 				fault_str = "";
748 				break;
749 			}
750 			printf("user %s fault:  addr=0x%lx errcode=0x%x\n",
751 			    fault_str, (uintptr_t)addr, errcode);
752 		}
753 
754 #if defined(OPTERON_ERRATUM_100) && defined(_LP64)
755 		/*
756 		 * Workaround for AMD erratum 100
757 		 *
758 		 * A 32-bit process may receive a page fault on a non
759 		 * 32-bit address by mistake. The range of the faulting
760 		 * address will be
761 		 *
762 		 *	0xffffffff80000000 .. 0xffffffffffffffff or
763 		 *	0x0000000100000000 .. 0x000000017fffffff
764 		 *
765 		 * The fault is always due to an instruction fetch, however
766 		 * the value of r_pc should be correct (in 32 bit range),
767 		 * so we ignore the page fault on the bogus address.
768 		 */
769 		if (p->p_model == DATAMODEL_ILP32 &&
770 		    (0xffffffff80000000 <= (uintptr_t)addr ||
771 		    (0x100000000 <= (uintptr_t)addr &&
772 		    (uintptr_t)addr <= 0x17fffffff))) {
773 			if (!opteron_erratum_100)
774 				panic("unexpected erratum #100");
775 			if (rp->r_pc <= 0xffffffff)
776 				goto out;
777 		}
778 #endif /* OPTERON_ERRATUM_100 && _LP64 */
779 
780 		ASSERT(!(curthread->t_flag & T_WATCHPT));
781 		watchpage = (pr_watch_active(p) && pr_is_watchpage(addr, rw));
782 #ifdef __i386
783 		/*
784 		 * In 32-bit mode, the lcall (system call) instruction fetches
785 		 * one word from the stack, at the stack pointer, because of the
786 		 * way the call gate is constructed.  This is a bogus
787 		 * read and should not be counted as a read watchpoint.
788 		 * We work around the problem here by testing to see if
789 		 * this situation applies and, if so, simply jumping to
790 		 * the code in locore.s that fields the system call trap.
791 		 * The registers on the stack are already set up properly
792 		 * due to the match between the call gate sequence and the
793 		 * trap gate sequence.  We just have to adjust the pc.
794 		 */
795 		if (watchpage && addr == (caddr_t)rp->r_sp &&
796 		    rw == S_READ && instr_is_lcall_syscall((caddr_t)rp->r_pc)) {
797 			extern void watch_syscall(void);
798 
799 			rp->r_pc += LCALLSIZE;
800 			watch_syscall();	/* never returns */
801 			/* NOTREACHED */
802 		}
803 #endif /* __i386 */
804 		vaddr = addr;
805 		if (!watchpage || (sz = instr_size(rp, &vaddr, rw)) <= 0)
806 			fault_type = (errcode & PF_ERR_PROT)? F_PROT: F_INVAL;
807 		else if ((watchcode = pr_is_watchpoint(&vaddr, &ta,
808 		    sz, NULL, rw)) != 0) {
809 			if (ta) {
810 				do_watch_step(vaddr, sz, rw,
811 				    watchcode, rp->r_pc);
812 				fault_type = F_INVAL;
813 			} else {
814 				bzero(&siginfo, sizeof (siginfo));
815 				siginfo.si_signo = SIGTRAP;
816 				siginfo.si_code = watchcode;
817 				siginfo.si_addr = vaddr;
818 				siginfo.si_trapafter = 0;
819 				siginfo.si_pc = (caddr_t)rp->r_pc;
820 				fault = FLTWATCH;
821 				break;
822 			}
823 		} else {
824 			/* XXX pr_watch_emul() never succeeds (for now) */
825 			if (rw != S_EXEC && pr_watch_emul(rp, vaddr, rw))
826 				goto out;
827 			do_watch_step(vaddr, sz, rw, 0, 0);
828 			fault_type = F_INVAL;
829 		}
830 
831 		res = pagefault(addr, fault_type, rw, 0);
832 
833 		/*
834 		 * If pagefault() succeeded, ok.
835 		 * Otherwise attempt to grow the stack.
836 		 */
837 		if (res == 0 ||
838 		    (res == FC_NOMAP &&
839 		    addr < p->p_usrstack &&
840 		    grow(addr))) {
841 			lwp->lwp_lastfault = FLTPAGE;
842 			lwp->lwp_lastfaddr = addr;
843 			if (prismember(&p->p_fltmask, FLTPAGE)) {
844 				bzero(&siginfo, sizeof (siginfo));
845 				siginfo.si_addr = addr;
846 				(void) stop_on_fault(FLTPAGE, &siginfo);
847 			}
848 			goto out;
849 		} else if (res == FC_PROT && addr < p->p_usrstack &&
850 		    (mmu.pt_nx != 0 && (errcode & PF_ERR_EXEC))) {
851 			report_stack_exec(p, addr);
852 		}
853 
854 #ifdef OPTERON_ERRATUM_91
855 		/*
856 		 * Workaround for Opteron Erratum 91. Prefetches may generate a
857 		 * page fault (they're not supposed to do that!). If this
858 		 * occurs we simply return back to the instruction.
859 		 *
860 		 * We rely on copyin to properly fault in the page with r_pc.
861 		 */
862 		if (opteron_erratum_91 &&
863 		    addr != (caddr_t)rp->r_pc &&
864 		    instr_is_prefetch((caddr_t)rp->r_pc)) {
865 #ifdef DEBUG
866 			cmn_err(CE_WARN, "Opteron erratum 91 occurred: "
867 			    "prefetch at %p in pid %d generated a trap!",
868 			    (void *)rp->r_pc, p->p_pid);
869 #endif /* DEBUG */
870 			goto out;
871 		}
872 #endif /* OPTERON_ERRATUM_91 */
873 
874 		if (tudebug)
875 			showregs(type, rp, addr);
876 		/*
877 		 * In the case where both pagefault and grow fail,
878 		 * set the code to the value provided by pagefault.
879 		 * We map all errors returned from pagefault() to SIGSEGV.
880 		 */
881 		bzero(&siginfo, sizeof (siginfo));
882 		siginfo.si_addr = addr;
883 		switch (FC_CODE(res)) {
884 		case FC_HWERR:
885 		case FC_NOSUPPORT:
886 			siginfo.si_signo = SIGBUS;
887 			siginfo.si_code = BUS_ADRERR;
888 			fault = FLTACCESS;
889 			break;
890 		case FC_ALIGN:
891 			siginfo.si_signo = SIGBUS;
892 			siginfo.si_code = BUS_ADRALN;
893 			fault = FLTACCESS;
894 			break;
895 		case FC_OBJERR:
896 			if ((siginfo.si_errno = FC_ERRNO(res)) != EINTR) {
897 				siginfo.si_signo = SIGBUS;
898 				siginfo.si_code = BUS_OBJERR;
899 				fault = FLTACCESS;
900 			}
901 			break;
902 		default:	/* FC_NOMAP or FC_PROT */
903 			siginfo.si_signo = SIGSEGV;
904 			siginfo.si_code =
905 			    (res == FC_NOMAP)? SEGV_MAPERR : SEGV_ACCERR;
906 			fault = FLTBOUNDS;
907 			break;
908 		}
909 		break;
910 
911 	case T_ILLINST + USER:	/* invalid opcode fault */
912 		/*
913 		 * If the syscall instruction is disabled due to LDT usage, a
914 		 * user program that attempts to execute it will trigger a #ud
915 		 * trap. Check for that case here. If this occurs on a CPU which
916 		 * doesn't even support syscall, the result of all of this will
917 		 * be to emulate that particular instruction.
918 		 */
919 		if (p->p_ldt != NULL &&
920 		    ldt_rewrite_syscall(rp, p, X86_ASYSC))
921 			goto out;
922 
923 #ifdef __amd64
924 		/*
925 		 * Emulate the LAHF and SAHF instructions if needed.
926 		 * See the instr_is_lsahf function for details.
927 		 */
928 		if (p->p_model == DATAMODEL_LP64 &&
929 		    instr_is_lsahf((caddr_t)rp->r_pc, &instr)) {
930 			emulate_lsahf(rp, instr);
931 			goto out;
932 		}
933 #endif
934 
935 		/*FALLTHROUGH*/
936 
937 		if (tudebug)
938 			showregs(type, rp, (caddr_t)0);
939 		siginfo.si_signo = SIGILL;
940 		siginfo.si_code  = ILL_ILLOPC;
941 		siginfo.si_addr  = (caddr_t)rp->r_pc;
942 		fault = FLTILL;
943 		break;
944 
945 	case T_ZERODIV + USER:		/* integer divide by zero */
946 		if (tudebug && tudebugfpe)
947 			showregs(type, rp, (caddr_t)0);
948 		siginfo.si_signo = SIGFPE;
949 		siginfo.si_code  = FPE_INTDIV;
950 		siginfo.si_addr  = (caddr_t)rp->r_pc;
951 		fault = FLTIZDIV;
952 		break;
953 
954 	case T_OVFLW + USER:	/* integer overflow */
955 		if (tudebug && tudebugfpe)
956 			showregs(type, rp, (caddr_t)0);
957 		siginfo.si_signo = SIGFPE;
958 		siginfo.si_code  = FPE_INTOVF;
959 		siginfo.si_addr  = (caddr_t)rp->r_pc;
960 		fault = FLTIOVF;
961 		break;
962 
963 	case T_NOEXTFLT + USER:	/* math coprocessor not available */
964 		if (tudebug && tudebugfpe)
965 			showregs(type, rp, addr);
966 		if (fpnoextflt(rp)) {
967 			siginfo.si_signo = SIGFPE;
968 			siginfo.si_code  = ILL_ILLOPC;
969 			siginfo.si_addr  = (caddr_t)rp->r_pc;
970 			fault = FLTFPE;
971 		}
972 		break;
973 
974 	case T_EXTOVRFLT:	/* extension overrun fault */
975 		/* check if we took a kernel trap on behalf of user */
976 		{
977 			extern  void ndptrap_frstor(void);
978 			if (rp->r_pc != (uintptr_t)ndptrap_frstor) {
979 				sti(); /* T_EXTOVRFLT comes in via cmninttrap */
980 				(void) die(type, rp, addr, cpuid);
981 			}
982 			type |= USER;
983 		}
984 		/*FALLTHROUGH*/
985 	case T_EXTOVRFLT + USER:	/* extension overrun fault */
986 		if (tudebug && tudebugfpe)
987 			showregs(type, rp, addr);
988 		if (fpextovrflt(rp)) {
989 			siginfo.si_signo = SIGSEGV;
990 			siginfo.si_code  = SEGV_MAPERR;
991 			siginfo.si_addr  = (caddr_t)rp->r_pc;
992 			fault = FLTBOUNDS;
993 		}
994 		break;
995 
996 	case T_EXTERRFLT:	/* x87 floating point exception pending */
997 		/* check if we took a kernel trap on behalf of user */
998 		{
999 			extern  void ndptrap_frstor(void);
1000 			if (rp->r_pc != (uintptr_t)ndptrap_frstor) {
1001 				sti(); /* T_EXTERRFLT comes in via cmninttrap */
1002 				(void) die(type, rp, addr, cpuid);
1003 			}
1004 			type |= USER;
1005 		}
1006 		/*FALLTHROUGH*/
1007 
1008 	case T_EXTERRFLT + USER: /* x87 floating point exception pending */
1009 		if (tudebug && tudebugfpe)
1010 			showregs(type, rp, addr);
1011 		if (sicode = fpexterrflt(rp)) {
1012 			siginfo.si_signo = SIGFPE;
1013 			siginfo.si_code  = sicode;
1014 			siginfo.si_addr  = (caddr_t)rp->r_pc;
1015 			fault = FLTFPE;
1016 		}
1017 		break;
1018 
1019 	case T_SIMDFPE + USER:		/* SSE and SSE2 exceptions */
1020 		if (tudebug && tudebugsse)
1021 			showregs(type, rp, addr);
1022 		if ((x86_feature & (X86_SSE|X86_SSE2)) == 0) {
1023 			/*
1024 			 * There are rumours that some user instructions
1025 			 * on older CPUs can cause this trap to occur; in
1026 			 * which case send a SIGILL instead of a SIGFPE.
1027 			 */
1028 			siginfo.si_signo = SIGILL;
1029 			siginfo.si_code  = ILL_ILLTRP;
1030 			siginfo.si_addr  = (caddr_t)rp->r_pc;
1031 			siginfo.si_trapno = type & ~USER;
1032 			fault = FLTILL;
1033 		} else if ((sicode = fpsimderrflt(rp)) != 0) {
1034 			siginfo.si_signo = SIGFPE;
1035 			siginfo.si_code = sicode;
1036 			siginfo.si_addr = (caddr_t)rp->r_pc;
1037 			fault = FLTFPE;
1038 		}
1039 
1040 		sti();	/* The SIMD exception comes in via cmninttrap */
1041 		break;
1042 
1043 	case T_BPTFLT:	/* breakpoint trap */
1044 		/*
1045 		 * Kernel breakpoint traps should only happen when kmdb is
1046 		 * active, and even then, it'll have interposed on the IDT, so
1047 		 * control won't get here.  If it does, we've hit a breakpoint
1048 		 * without the debugger, which is very strange, and very
1049 		 * fatal.
1050 		 */
1051 		if (tudebug && tudebugbpt)
1052 			showregs(type, rp, (caddr_t)0);
1053 
1054 		(void) die(type, rp, addr, cpuid);
1055 		break;
1056 
1057 	case T_SGLSTP: /* single step/hw breakpoint exception */
1058 
1059 		/* Now evaluate how we got here */
1060 		if (lwp != NULL && (lwp->lwp_pcb.pcb_drstat & DR_SINGLESTEP)) {
1061 			/*
1062 			 * i386 single-steps even through lcalls which
1063 			 * change the privilege level. So we take a trap at
1064 			 * the first instruction in privileged mode.
1065 			 *
1066 			 * Set a flag to indicate that upon completion of
1067 			 * the system call, deal with the single-step trap.
1068 			 *
1069 			 * The same thing happens for sysenter, too.
1070 			 */
1071 			singlestep_twiddle = 0;
1072 			if (rp->r_pc == (uintptr_t)sys_sysenter ||
1073 			    rp->r_pc == (uintptr_t)brand_sys_sysenter) {
1074 				singlestep_twiddle = 1;
1075 #if defined(__amd64)
1076 				/*
1077 				 * Since we are already on the kernel's
1078 				 * %gs, on 64-bit systems the sysenter case
1079 				 * needs to adjust the pc to avoid
1080 				 * executing the swapgs instruction at the
1081 				 * top of the handler.
1082 				 */
1083 				if (rp->r_pc == (uintptr_t)sys_sysenter)
1084 					rp->r_pc = (uintptr_t)
1085 					    _sys_sysenter_post_swapgs;
1086 				else
1087 					rp->r_pc = (uintptr_t)
1088 					    _brand_sys_sysenter_post_swapgs;
1089 #endif
1090 			}
1091 #if defined(__i386)
1092 			else if (rp->r_pc == (uintptr_t)sys_call ||
1093 			    rp->r_pc == (uintptr_t)brand_sys_call) {
1094 				singlestep_twiddle = 1;
1095 			}
1096 #endif
1097 			else {
1098 				/* not on sysenter/syscall; uregs available */
1099 				if (tudebug && tudebugbpt)
1100 					showregs(type, rp, (caddr_t)0);
1101 			}
1102 			if (singlestep_twiddle) {
1103 				rp->r_ps &= ~PS_T; /* turn off trace */
1104 				lwp->lwp_pcb.pcb_flags |= DEBUG_PENDING;
1105 				ct->t_post_sys = 1;
1106 				aston(curthread);
1107 				goto cleanup;
1108 			}
1109 		}
1110 		/* XXX - needs review on debugger interface? */
1111 		if (boothowto & RB_DEBUG)
1112 			debug_enter((char *)NULL);
1113 		else
1114 			(void) die(type, rp, addr, cpuid);
1115 		break;
1116 
1117 	case T_NMIFLT:	/* NMI interrupt */
1118 		printf("Unexpected NMI in system mode\n");
1119 		goto cleanup;
1120 
1121 	case T_NMIFLT + USER:	/* NMI interrupt */
1122 		printf("Unexpected NMI in user mode\n");
1123 		break;
1124 
1125 	case T_GPFLT:	/* general protection violation */
1126 		/*
1127 		 * Any #GP that occurs during an on_trap .. no_trap bracket
1128 		 * with OT_DATA_ACCESS or OT_SEGMENT_ACCESS protection,
1129 		 * or in a on_fault .. no_fault bracket, is forgiven
1130 		 * and we trampoline.  This protection is given regardless
1131 		 * of whether we are 32/64 bit etc - if a distinction is
1132 		 * required then define new on_trap protection types.
1133 		 *
1134 		 * On amd64, we can get a #gp from referencing addresses
1135 		 * in the virtual address hole e.g. from a copyin or in
1136 		 * update_sregs while updating user segment registers.
1137 		 *
1138 		 * On the 32-bit hypervisor we could also generate one in
1139 		 * mfn_to_pfn by reaching around or into where the hypervisor
1140 		 * lives which is protected by segmentation.
1141 		 */
1142 
1143 		/*
1144 		 * If we're under on_trap() protection (see <sys/ontrap.h>),
1145 		 * set ot_trap and trampoline back to the on_trap() call site
1146 		 * for OT_DATA_ACCESS or OT_SEGMENT_ACCESS.
1147 		 */
1148 		if (ct->t_ontrap != NULL) {
1149 			int ttype =  ct->t_ontrap->ot_prot &
1150 			    (OT_DATA_ACCESS | OT_SEGMENT_ACCESS);
1151 
1152 			if (ttype != 0) {
1153 				ct->t_ontrap->ot_trap |= ttype;
1154 				if (tudebug)
1155 					showregs(type, rp, (caddr_t)0);
1156 				rp->r_pc = ct->t_ontrap->ot_trampoline;
1157 				goto cleanup;
1158 			}
1159 		}
1160 
1161 		/*
1162 		 * If we're under lofault protection (copyin etc.),
1163 		 * longjmp back to lofault with an EFAULT.
1164 		 */
1165 		if (ct->t_lofault) {
1166 			/*
1167 			 * Fault is not resolvable, so just return to lofault
1168 			 */
1169 			if (lodebug) {
1170 				showregs(type, rp, addr);
1171 				traceregs(rp);
1172 			}
1173 			rp->r_r0 = EFAULT;
1174 			rp->r_pc = ct->t_lofault;
1175 			goto cleanup;
1176 		}
1177 
1178 		/*
1179 		 * We fall through to the next case, which repeats
1180 		 * the OT_SEGMENT_ACCESS check which we've already
1181 		 * done, so we'll always fall through to the
1182 		 * T_STKFLT case.
1183 		 */
1184 		/*FALLTHROUGH*/
1185 	case T_SEGFLT:	/* segment not present fault */
1186 		/*
1187 		 * One example of this is #NP in update_sregs while
1188 		 * attempting to update a user segment register
1189 		 * that points to a descriptor that is marked not
1190 		 * present.
1191 		 */
1192 		if (ct->t_ontrap != NULL &&
1193 		    ct->t_ontrap->ot_prot & OT_SEGMENT_ACCESS) {
1194 			ct->t_ontrap->ot_trap |= OT_SEGMENT_ACCESS;
1195 			if (tudebug)
1196 				showregs(type, rp, (caddr_t)0);
1197 			rp->r_pc = ct->t_ontrap->ot_trampoline;
1198 			goto cleanup;
1199 		}
1200 		/*FALLTHROUGH*/
1201 	case T_STKFLT:	/* stack fault */
1202 	case T_TSSFLT:	/* invalid TSS fault */
1203 		if (tudebug)
1204 			showregs(type, rp, (caddr_t)0);
1205 		if (kern_gpfault(rp))
1206 			(void) die(type, rp, addr, cpuid);
1207 		goto cleanup;
1208 
1209 	/*
1210 	 * ONLY 32-bit PROCESSES can USE a PRIVATE LDT! 64-bit apps
1211 	 * should have no need for them, so we put a stop to it here.
1212 	 *
1213 	 * So: not-present fault is ONLY valid for 32-bit processes with
1214 	 * a private LDT trying to do a system call. Emulate it.
1215 	 *
1216 	 * #gp fault is ONLY valid for 32-bit processes also, which DO NOT
1217 	 * have a private LDT, and are trying to do a system call. Emulate it.
1218 	 */
1219 
1220 	case T_SEGFLT + USER:	/* segment not present fault */
1221 	case T_GPFLT + USER:	/* general protection violation */
1222 #ifdef _SYSCALL32_IMPL
1223 		if (p->p_model != DATAMODEL_NATIVE) {
1224 #endif /* _SYSCALL32_IMPL */
1225 		if (instr_is_lcall_syscall((caddr_t)rp->r_pc)) {
1226 			if (type == T_SEGFLT + USER)
1227 				ASSERT(p->p_ldt != NULL);
1228 
1229 			if ((p->p_ldt == NULL && type == T_GPFLT + USER) ||
1230 			    type == T_SEGFLT + USER) {
1231 
1232 			/*
1233 			 * The user attempted a system call via the obsolete
1234 			 * call gate mechanism. Because the process doesn't have
1235 			 * an LDT (i.e. the ldtr contains 0), a #gp results.
1236 			 * Emulate the syscall here, just as we do above for a
1237 			 * #np trap.
1238 			 */
1239 
1240 			/*
1241 			 * Since this is a not-present trap, rp->r_pc points to
1242 			 * the trapping lcall instruction. We need to bump it
1243 			 * to the next insn so the app can continue on.
1244 			 */
1245 			rp->r_pc += LCALLSIZE;
1246 			lwp->lwp_regs = rp;
1247 
1248 			/*
1249 			 * Normally the microstate of the LWP is forced back to
1250 			 * LMS_USER by the syscall handlers. Emulate that
1251 			 * behavior here.
1252 			 */
1253 			mstate = LMS_USER;
1254 
1255 			dosyscall();
1256 			goto out;
1257 			}
1258 		}
1259 #ifdef _SYSCALL32_IMPL
1260 		}
1261 #endif /* _SYSCALL32_IMPL */
1262 		/*
1263 		 * If the current process is using a private LDT and the
1264 		 * trapping instruction is sysenter, the sysenter instruction
1265 		 * has been disabled on the CPU because it destroys segment
1266 		 * registers. If this is the case, rewrite the instruction to
1267 		 * be a safe system call and retry it. If this occurs on a CPU
1268 		 * which doesn't even support sysenter, the result of all of
1269 		 * this will be to emulate that particular instruction.
1270 		 */
1271 		if (p->p_ldt != NULL &&
1272 		    ldt_rewrite_syscall(rp, p, X86_SEP))
1273 			goto out;
1274 
1275 		/*FALLTHROUGH*/
1276 
1277 	case T_BOUNDFLT + USER:	/* bound fault */
1278 	case T_STKFLT + USER:	/* stack fault */
1279 	case T_TSSFLT + USER:	/* invalid TSS fault */
1280 		if (tudebug)
1281 			showregs(type, rp, (caddr_t)0);
1282 		siginfo.si_signo = SIGSEGV;
1283 		siginfo.si_code  = SEGV_MAPERR;
1284 		siginfo.si_addr  = (caddr_t)rp->r_pc;
1285 		fault = FLTBOUNDS;
1286 		break;
1287 
1288 	case T_ALIGNMENT + USER:	/* user alignment error (486) */
1289 		if (tudebug)
1290 			showregs(type, rp, (caddr_t)0);
1291 		bzero(&siginfo, sizeof (siginfo));
1292 		siginfo.si_signo = SIGBUS;
1293 		siginfo.si_code = BUS_ADRALN;
1294 		siginfo.si_addr = (caddr_t)rp->r_pc;
1295 		fault = FLTACCESS;
1296 		break;
1297 
1298 	case T_SGLSTP + USER: /* single step/hw breakpoint exception */
1299 		if (tudebug && tudebugbpt)
1300 			showregs(type, rp, (caddr_t)0);
1301 
1302 		/* Was it single-stepping? */
1303 		if (lwp->lwp_pcb.pcb_drstat & DR_SINGLESTEP) {
1304 			pcb_t *pcb = &lwp->lwp_pcb;
1305 
1306 			rp->r_ps &= ~PS_T;
1307 			/*
1308 			 * If both NORMAL_STEP and WATCH_STEP are in effect,
1309 			 * give precedence to WATCH_STEP.  If neither is set,
1310 			 * user must have set the PS_T bit in %efl; treat this
1311 			 * as NORMAL_STEP.
1312 			 */
1313 			if ((fault = undo_watch_step(&siginfo)) == 0 &&
1314 			    ((pcb->pcb_flags & NORMAL_STEP) ||
1315 			    !(pcb->pcb_flags & WATCH_STEP))) {
1316 				siginfo.si_signo = SIGTRAP;
1317 				siginfo.si_code = TRAP_TRACE;
1318 				siginfo.si_addr = (caddr_t)rp->r_pc;
1319 				fault = FLTTRACE;
1320 			}
1321 			pcb->pcb_flags &= ~(NORMAL_STEP|WATCH_STEP);
1322 		} else {
1323 			cmn_err(CE_WARN,
1324 			    "Unexpected INT 1 in user mode, dr6=%lx",
1325 			    lwp->lwp_pcb.pcb_drstat);
1326 		}
1327 		break;
1328 
1329 	case T_BPTFLT + USER:	/* breakpoint trap */
1330 		if (tudebug && tudebugbpt)
1331 			showregs(type, rp, (caddr_t)0);
1332 		/*
1333 		 * int 3 (the breakpoint instruction) leaves the pc referring
1334 		 * to the address one byte after the breakpointed address.
1335 		 * If the P_PR_BPTADJ flag has been set via /proc, We adjust
1336 		 * it back so it refers to the breakpointed address.
1337 		 */
1338 		if (p->p_proc_flag & P_PR_BPTADJ)
1339 			rp->r_pc--;
1340 		siginfo.si_signo = SIGTRAP;
1341 		siginfo.si_code  = TRAP_BRKPT;
1342 		siginfo.si_addr  = (caddr_t)rp->r_pc;
1343 		fault = FLTBPT;
1344 		break;
1345 
1346 	case T_AST:
1347 		/*
1348 		 * This occurs only after the cs register has been made to
1349 		 * look like a kernel selector, either through debugging or
1350 		 * possibly by functions like setcontext().  The thread is
1351 		 * about to cause a general protection fault at common_iret()
1352 		 * in locore.  We let that happen immediately instead of
1353 		 * doing the T_AST processing.
1354 		 */
1355 		goto cleanup;
1356 
1357 	case T_AST + USER:	/* profiling, resched, h/w error pseudo trap */
1358 		if (lwp->lwp_pcb.pcb_flags & ASYNC_HWERR) {
1359 			proc_t *p = ttoproc(curthread);
1360 
1361 			lwp->lwp_pcb.pcb_flags &= ~ASYNC_HWERR;
1362 			contract_process_hwerr(p->p_ct_process, p);
1363 			siginfo.si_signo = SIGKILL;
1364 			siginfo.si_code = SI_NOINFO;
1365 		} else if (lwp->lwp_pcb.pcb_flags & CPC_OVERFLOW) {
1366 			lwp->lwp_pcb.pcb_flags &= ~CPC_OVERFLOW;
1367 			if (kcpc_overflow_ast()) {
1368 				/*
1369 				 * Signal performance counter overflow
1370 				 */
1371 				if (tudebug)
1372 					showregs(type, rp, (caddr_t)0);
1373 				bzero(&siginfo, sizeof (siginfo));
1374 				siginfo.si_signo = SIGEMT;
1375 				siginfo.si_code = EMT_CPCOVF;
1376 				siginfo.si_addr = (caddr_t)rp->r_pc;
1377 				fault = FLTCPCOVF;
1378 			}
1379 		}
1380 
1381 		break;
1382 	}
1383 
1384 	/*
1385 	 * We can't get here from a system trap
1386 	 */
1387 	ASSERT(type & USER);
1388 
1389 	if (fault) {
1390 		/* We took a fault so abort single step. */
1391 		lwp->lwp_pcb.pcb_flags &= ~(NORMAL_STEP|WATCH_STEP);
1392 		/*
1393 		 * Remember the fault and fault adddress
1394 		 * for real-time (SIGPROF) profiling.
1395 		 */
1396 		lwp->lwp_lastfault = fault;
1397 		lwp->lwp_lastfaddr = siginfo.si_addr;
1398 
1399 		DTRACE_PROC2(fault, int, fault, ksiginfo_t *, &siginfo);
1400 
1401 		/*
1402 		 * If a debugger has declared this fault to be an
1403 		 * event of interest, stop the lwp.  Otherwise just
1404 		 * deliver the associated signal.
1405 		 */
1406 		if (siginfo.si_signo != SIGKILL &&
1407 		    prismember(&p->p_fltmask, fault) &&
1408 		    stop_on_fault(fault, &siginfo) == 0)
1409 			siginfo.si_signo = 0;
1410 	}
1411 
1412 	if (siginfo.si_signo)
1413 		trapsig(&siginfo, (fault == FLTCPCOVF)? 0 : 1);
1414 
1415 	if (lwp->lwp_oweupc)
1416 		profil_tick(rp->r_pc);
1417 
1418 	if (ct->t_astflag | ct->t_sig_check) {
1419 		/*
1420 		 * Turn off the AST flag before checking all the conditions that
1421 		 * may have caused an AST.  This flag is on whenever a signal or
1422 		 * unusual condition should be handled after the next trap or
1423 		 * syscall.
1424 		 */
1425 		astoff(ct);
1426 		/*
1427 		 * If a single-step trap occurred on a syscall (see above)
1428 		 * recognize it now.  Do this before checking for signals
1429 		 * because deferred_singlestep_trap() may generate a SIGTRAP to
1430 		 * the LWP or may otherwise mark the LWP to call issig(FORREAL).
1431 		 */
1432 		if (lwp->lwp_pcb.pcb_flags & DEBUG_PENDING)
1433 			deferred_singlestep_trap((caddr_t)rp->r_pc);
1434 
1435 		ct->t_sig_check = 0;
1436 
1437 		mutex_enter(&p->p_lock);
1438 		if (curthread->t_proc_flag & TP_CHANGEBIND) {
1439 			timer_lwpbind();
1440 			curthread->t_proc_flag &= ~TP_CHANGEBIND;
1441 		}
1442 		mutex_exit(&p->p_lock);
1443 
1444 		/*
1445 		 * for kaio requests that are on the per-process poll queue,
1446 		 * aiop->aio_pollq, they're AIO_POLL bit is set, the kernel
1447 		 * should copyout their result_t to user memory. by copying
1448 		 * out the result_t, the user can poll on memory waiting
1449 		 * for the kaio request to complete.
1450 		 */
1451 		if (p->p_aio)
1452 			aio_cleanup(0);
1453 		/*
1454 		 * If this LWP was asked to hold, call holdlwp(), which will
1455 		 * stop.  holdlwps() sets this up and calls pokelwps() which
1456 		 * sets the AST flag.
1457 		 *
1458 		 * Also check TP_EXITLWP, since this is used by fresh new LWPs
1459 		 * through lwp_rtt().  That flag is set if the lwp_create(2)
1460 		 * syscall failed after creating the LWP.
1461 		 */
1462 		if (ISHOLD(p))
1463 			holdlwp();
1464 
1465 		/*
1466 		 * All code that sets signals and makes ISSIG evaluate true must
1467 		 * set t_astflag afterwards.
1468 		 */
1469 		if (ISSIG_PENDING(ct, lwp, p)) {
1470 			if (issig(FORREAL))
1471 				psig();
1472 			ct->t_sig_check = 1;
1473 		}
1474 
1475 		if (ct->t_rprof != NULL) {
1476 			realsigprof(0, 0);
1477 			ct->t_sig_check = 1;
1478 		}
1479 
1480 		/*
1481 		 * /proc can't enable/disable the trace bit itself
1482 		 * because that could race with the call gate used by
1483 		 * system calls via "lcall". If that happened, an
1484 		 * invalid EFLAGS would result. prstep()/prnostep()
1485 		 * therefore schedule an AST for the purpose.
1486 		 */
1487 		if (lwp->lwp_pcb.pcb_flags & REQUEST_STEP) {
1488 			lwp->lwp_pcb.pcb_flags &= ~REQUEST_STEP;
1489 			rp->r_ps |= PS_T;
1490 		}
1491 		if (lwp->lwp_pcb.pcb_flags & REQUEST_NOSTEP) {
1492 			lwp->lwp_pcb.pcb_flags &= ~REQUEST_NOSTEP;
1493 			rp->r_ps &= ~PS_T;
1494 		}
1495 	}
1496 
1497 out:	/* We can't get here from a system trap */
1498 	ASSERT(type & USER);
1499 
1500 	if (ISHOLD(p))
1501 		holdlwp();
1502 
1503 	/*
1504 	 * Set state to LWP_USER here so preempt won't give us a kernel
1505 	 * priority if it occurs after this point.  Call CL_TRAPRET() to
1506 	 * restore the user-level priority.
1507 	 *
1508 	 * It is important that no locks (other than spinlocks) be entered
1509 	 * after this point before returning to user mode (unless lwp_state
1510 	 * is set back to LWP_SYS).
1511 	 */
1512 	lwp->lwp_state = LWP_USER;
1513 
1514 	if (ct->t_trapret) {
1515 		ct->t_trapret = 0;
1516 		thread_lock(ct);
1517 		CL_TRAPRET(ct);
1518 		thread_unlock(ct);
1519 	}
1520 	if (CPU->cpu_runrun || curthread->t_schedflag & TS_ANYWAITQ)
1521 		preempt();
1522 	(void) new_mstate(ct, mstate);
1523 
1524 	/* Kernel probe */
1525 	TNF_PROBE_1(thread_state, "thread", /* CSTYLED */,
1526 	    tnf_microstate, state, LMS_USER);
1527 
1528 	return;
1529 
1530 cleanup:	/* system traps end up here */
1531 	ASSERT(!(type & USER));
1532 }
1533 
1534 /*
1535  * Patch non-zero to disable preemption of threads in the kernel.
1536  */
1537 int IGNORE_KERNEL_PREEMPTION = 0;	/* XXX - delete this someday */
1538 
1539 struct kpreempt_cnts {		/* kernel preemption statistics */
1540 	int	kpc_idle;	/* executing idle thread */
1541 	int	kpc_intr;	/* executing interrupt thread */
1542 	int	kpc_clock;	/* executing clock thread */
1543 	int	kpc_blocked;	/* thread has blocked preemption (t_preempt) */
1544 	int	kpc_notonproc;	/* thread is surrendering processor */
1545 	int	kpc_inswtch;	/* thread has ratified scheduling decision */
1546 	int	kpc_prilevel;	/* processor interrupt level is too high */
1547 	int	kpc_apreempt;	/* asynchronous preemption */
1548 	int	kpc_spreempt;	/* synchronous preemption */
1549 } kpreempt_cnts;
1550 
1551 /*
1552  * kernel preemption: forced rescheduling, preempt the running kernel thread.
1553  *	the argument is old PIL for an interrupt,
1554  *	or the distingished value KPREEMPT_SYNC.
1555  */
1556 void
1557 kpreempt(int asyncspl)
1558 {
1559 	kthread_t *ct = curthread;
1560 
1561 	if (IGNORE_KERNEL_PREEMPTION) {
1562 		aston(CPU->cpu_dispthread);
1563 		return;
1564 	}
1565 
1566 	/*
1567 	 * Check that conditions are right for kernel preemption
1568 	 */
1569 	do {
1570 		if (ct->t_preempt) {
1571 			/*
1572 			 * either a privileged thread (idle, panic, interrupt)
1573 			 * or will check when t_preempt is lowered
1574 			 * We need to specifically handle the case where
1575 			 * the thread is in the middle of swtch (resume has
1576 			 * been called) and has its t_preempt set
1577 			 * [idle thread and a thread which is in kpreempt
1578 			 * already] and then a high priority thread is
1579 			 * available in the local dispatch queue.
1580 			 * In this case the resumed thread needs to take a
1581 			 * trap so that it can call kpreempt. We achieve
1582 			 * this by using siron().
1583 			 * How do we detect this condition:
1584 			 * idle thread is running and is in the midst of
1585 			 * resume: curthread->t_pri == -1 && CPU->dispthread
1586 			 * != CPU->thread
1587 			 * Need to ensure that this happens only at high pil
1588 			 * resume is called at high pil
1589 			 * Only in resume_from_idle is the pil changed.
1590 			 */
1591 			if (ct->t_pri < 0) {
1592 				kpreempt_cnts.kpc_idle++;
1593 				if (CPU->cpu_dispthread != CPU->cpu_thread)
1594 					siron();
1595 			} else if (ct->t_flag & T_INTR_THREAD) {
1596 				kpreempt_cnts.kpc_intr++;
1597 				if (ct->t_pil == CLOCK_LEVEL)
1598 					kpreempt_cnts.kpc_clock++;
1599 			} else {
1600 				kpreempt_cnts.kpc_blocked++;
1601 				if (CPU->cpu_dispthread != CPU->cpu_thread)
1602 					siron();
1603 			}
1604 			aston(CPU->cpu_dispthread);
1605 			return;
1606 		}
1607 		if (ct->t_state != TS_ONPROC ||
1608 		    ct->t_disp_queue != CPU->cpu_disp) {
1609 			/* this thread will be calling swtch() shortly */
1610 			kpreempt_cnts.kpc_notonproc++;
1611 			if (CPU->cpu_thread != CPU->cpu_dispthread) {
1612 				/* already in swtch(), force another */
1613 				kpreempt_cnts.kpc_inswtch++;
1614 				siron();
1615 			}
1616 			return;
1617 		}
1618 		if (getpil() >= DISP_LEVEL) {
1619 			/*
1620 			 * We can't preempt this thread if it is at
1621 			 * a PIL >= DISP_LEVEL since it may be holding
1622 			 * a spin lock (like sched_lock).
1623 			 */
1624 			siron();	/* check back later */
1625 			kpreempt_cnts.kpc_prilevel++;
1626 			return;
1627 		}
1628 		if (!interrupts_enabled()) {
1629 			/*
1630 			 * Can't preempt while running with ints disabled
1631 			 */
1632 			kpreempt_cnts.kpc_prilevel++;
1633 			return;
1634 		}
1635 		if (asyncspl != KPREEMPT_SYNC)
1636 			kpreempt_cnts.kpc_apreempt++;
1637 		else
1638 			kpreempt_cnts.kpc_spreempt++;
1639 
1640 		ct->t_preempt++;
1641 		preempt();
1642 		ct->t_preempt--;
1643 	} while (CPU->cpu_kprunrun);
1644 }
1645 
1646 /*
1647  * Print out debugging info.
1648  */
1649 static void
1650 showregs(uint_t type, struct regs *rp, caddr_t addr)
1651 {
1652 	int s;
1653 
1654 	s = spl7();
1655 	type &= ~USER;
1656 	if (PTOU(curproc)->u_comm[0])
1657 		printf("%s: ", PTOU(curproc)->u_comm);
1658 	if (type < TRAP_TYPES)
1659 		printf("#%s %s\n", trap_type_mnemonic[type], trap_type[type]);
1660 	else
1661 		switch (type) {
1662 		case T_SYSCALL:
1663 			printf("Syscall Trap:\n");
1664 			break;
1665 		case T_AST:
1666 			printf("AST\n");
1667 			break;
1668 		default:
1669 			printf("Bad Trap = %d\n", type);
1670 			break;
1671 		}
1672 	if (type == T_PGFLT) {
1673 		printf("Bad %s fault at addr=0x%lx\n",
1674 		    USERMODE(rp->r_cs) ? "user": "kernel", (uintptr_t)addr);
1675 	} else if (addr) {
1676 		printf("addr=0x%lx\n", (uintptr_t)addr);
1677 	}
1678 
1679 	printf("pid=%d, pc=0x%lx, sp=0x%lx, eflags=0x%lx\n",
1680 	    (ttoproc(curthread) && ttoproc(curthread)->p_pidp) ?
1681 	    ttoproc(curthread)->p_pid : 0, rp->r_pc, rp->r_sp, rp->r_ps);
1682 
1683 #if defined(__lint)
1684 	/*
1685 	 * this clause can be deleted when lint bug 4870403 is fixed
1686 	 * (lint thinks that bit 32 is illegal in a %b format string)
1687 	 */
1688 	printf("cr0: %x cr4: %b\n",
1689 	    (uint_t)getcr0(), (uint_t)getcr4(), FMT_CR4);
1690 #else
1691 	printf("cr0: %b cr4: %b\n",
1692 	    (uint_t)getcr0(), FMT_CR0, (uint_t)getcr4(), FMT_CR4);
1693 #endif	/* __lint */
1694 
1695 	printf("cr2: %lx", getcr2());
1696 #if !defined(__xpv)
1697 	printf("cr3: %lx", getcr3());
1698 #if defined(__amd64)
1699 	printf("cr8: %lx\n", getcr8());
1700 #endif
1701 #endif
1702 	printf("\n");
1703 
1704 	dumpregs(rp);
1705 	splx(s);
1706 }
1707 
1708 static void
1709 dumpregs(struct regs *rp)
1710 {
1711 #if defined(__amd64)
1712 	const char fmt[] = "\t%3s: %16lx %3s: %16lx %3s: %16lx\n";
1713 
1714 	printf(fmt, "rdi", rp->r_rdi, "rsi", rp->r_rsi, "rdx", rp->r_rdx);
1715 	printf(fmt, "rcx", rp->r_rcx, " r8", rp->r_r8, " r9", rp->r_r9);
1716 	printf(fmt, "rax", rp->r_rax, "rbx", rp->r_rbx, "rbp", rp->r_rbp);
1717 	printf(fmt, "r10", rp->r_r10, "r11", rp->r_r11, "r12", rp->r_r12);
1718 	printf(fmt, "r13", rp->r_r13, "r14", rp->r_r14, "r15", rp->r_r15);
1719 
1720 	printf(fmt, "fsb", rdmsr(MSR_AMD_FSBASE), "gsb", rdmsr(MSR_AMD_GSBASE),
1721 	    " ds", rp->r_ds);
1722 	printf(fmt, " es", rp->r_es, " fs", rp->r_fs, " gs", rp->r_gs);
1723 
1724 	printf(fmt, "trp", rp->r_trapno, "err", rp->r_err, "rip", rp->r_rip);
1725 	printf(fmt, " cs", rp->r_cs, "rfl", rp->r_rfl, "rsp", rp->r_rsp);
1726 
1727 	printf("\t%3s: %16lx\n", " ss", rp->r_ss);
1728 
1729 #elif defined(__i386)
1730 	const char fmt[] = "\t%3s: %8lx %3s: %8lx %3s: %8lx %3s: %8lx\n";
1731 
1732 	printf(fmt, " gs", rp->r_gs, " fs", rp->r_fs,
1733 	    " es", rp->r_es, " ds", rp->r_ds);
1734 	printf(fmt, "edi", rp->r_edi, "esi", rp->r_esi,
1735 	    "ebp", rp->r_ebp, "esp", rp->r_esp);
1736 	printf(fmt, "ebx", rp->r_ebx, "edx", rp->r_edx,
1737 	    "ecx", rp->r_ecx, "eax", rp->r_eax);
1738 	printf(fmt, "trp", rp->r_trapno, "err", rp->r_err,
1739 	    "eip", rp->r_eip, " cs", rp->r_cs);
1740 	printf("\t%3s: %8lx %3s: %8lx %3s: %8lx\n",
1741 	    "efl", rp->r_efl, "usp", rp->r_uesp, " ss", rp->r_ss);
1742 
1743 #endif	/* __i386 */
1744 }
1745 
1746 /*
1747  * Test to see if the instruction is iret on i386 or iretq on amd64.
1748  *
1749  * On the hypervisor we can only test for nopop_sys_rtt_syscall. If true
1750  * then we are in the context of hypervisor's failsafe handler because it
1751  * tried to iret and failed due to a bad selector. See xen_failsafe_callback.
1752  */
1753 static int
1754 instr_is_iret(caddr_t pc)
1755 {
1756 
1757 #if defined(__xpv)
1758 	extern void nopop_sys_rtt_syscall(void);
1759 	return ((pc == (caddr_t)nopop_sys_rtt_syscall) ? 1 : 0);
1760 
1761 #else
1762 
1763 #if defined(__amd64)
1764 	static const uint8_t iret_insn[2] = { 0x48, 0xcf };	/* iretq */
1765 
1766 #elif defined(__i386)
1767 	static const uint8_t iret_insn[1] = { 0xcf };		/* iret */
1768 #endif	/* __i386 */
1769 	return (bcmp(pc, iret_insn, sizeof (iret_insn)) == 0);
1770 
1771 #endif	/* __xpv */
1772 }
1773 
1774 #if defined(__i386)
1775 
1776 /*
1777  * Test to see if the instruction is part of __SEGREGS_POP
1778  *
1779  * Note carefully the appallingly awful dependency between
1780  * the instruction sequence used in __SEGREGS_POP and these
1781  * instructions encoded here.
1782  */
1783 static int
1784 instr_is_segregs_pop(caddr_t pc)
1785 {
1786 	static const uint8_t movw_0_esp_gs[4] = { 0x8e, 0x6c, 0x24, 0x0 };
1787 	static const uint8_t movw_4_esp_fs[4] = { 0x8e, 0x64, 0x24, 0x4 };
1788 	static const uint8_t movw_8_esp_es[4] = { 0x8e, 0x44, 0x24, 0x8 };
1789 	static const uint8_t movw_c_esp_ds[4] = { 0x8e, 0x5c, 0x24, 0xc };
1790 
1791 	if (bcmp(pc, movw_0_esp_gs, sizeof (movw_0_esp_gs)) == 0 ||
1792 	    bcmp(pc, movw_4_esp_fs, sizeof (movw_4_esp_fs)) == 0 ||
1793 	    bcmp(pc, movw_8_esp_es, sizeof (movw_8_esp_es)) == 0 ||
1794 	    bcmp(pc, movw_c_esp_ds, sizeof (movw_c_esp_ds)) == 0)
1795 		return (1);
1796 
1797 	return (0);
1798 }
1799 
1800 #endif	/* __i386 */
1801 
1802 /*
1803  * Test to see if the instruction is part of _sys_rtt.
1804  *
1805  * Again on the hypervisor if we try to IRET to user land with a bad code
1806  * or stack selector we will get vectored through xen_failsafe_callback.
1807  * In which case we assume we got here via _sys_rtt since we only allow
1808  * IRET to user land to take place in _sys_rtt.
1809  */
1810 static int
1811 instr_is_sys_rtt(caddr_t pc)
1812 {
1813 	extern void _sys_rtt(), _sys_rtt_end();
1814 
1815 	if ((uintptr_t)pc < (uintptr_t)_sys_rtt ||
1816 	    (uintptr_t)pc > (uintptr_t)_sys_rtt_end)
1817 		return (0);
1818 
1819 	return (1);
1820 }
1821 
1822 /*
1823  * Handle #gp faults in kernel mode.
1824  *
1825  * One legitimate way this can happen is if we attempt to update segment
1826  * registers to naughty values on the way out of the kernel.
1827  *
1828  * This can happen in a couple of ways: someone - either accidentally or
1829  * on purpose - creates (setcontext(2), lwp_create(2)) or modifies
1830  * (signal(2)) a ucontext that contains silly segment register values.
1831  * Or someone - either accidentally or on purpose - modifies the prgregset_t
1832  * of a subject process via /proc to contain silly segment register values.
1833  *
1834  * (The unfortunate part is that we can end up discovering the bad segment
1835  * register value in the middle of an 'iret' after we've popped most of the
1836  * stack.  So it becomes quite difficult to associate an accurate ucontext
1837  * with the lwp, because the act of taking the #gp trap overwrites most of
1838  * what we were going to send the lwp.)
1839  *
1840  * OTOH if it turns out that's -not- the problem, and we're -not- an lwp
1841  * trying to return to user mode and we get a #gp fault, then we need
1842  * to die() -- which will happen if we return non-zero from this routine.
1843  */
1844 static int
1845 kern_gpfault(struct regs *rp)
1846 {
1847 	kthread_t *t = curthread;
1848 	proc_t *p = ttoproc(t);
1849 	klwp_t *lwp = ttolwp(t);
1850 	struct regs tmpregs, *trp = NULL;
1851 	caddr_t pc = (caddr_t)rp->r_pc;
1852 	int v;
1853 
1854 	/*
1855 	 * if we're not an lwp, or in the case of running native the
1856 	 * pc range is outside _sys_rtt, then we should immediately
1857 	 * be die()ing horribly.
1858 	 */
1859 	if (lwp == NULL || !instr_is_sys_rtt(pc))
1860 		return (1);
1861 
1862 	/*
1863 	 * So at least we're in the right part of the kernel.
1864 	 *
1865 	 * Disassemble the instruction at the faulting pc.
1866 	 * Once we know what it is, we carefully reconstruct the stack
1867 	 * based on the order in which the stack is deconstructed in
1868 	 * _sys_rtt. Ew.
1869 	 */
1870 	if (instr_is_iret(pc)) {
1871 		/*
1872 		 * We took the #gp while trying to perform the IRET.
1873 		 * This means that either %cs or %ss are bad.
1874 		 * All we know for sure is that most of the general
1875 		 * registers have been restored, including the
1876 		 * segment registers, and all we have left on the
1877 		 * topmost part of the lwp's stack are the
1878 		 * registers that the iretq was unable to consume.
1879 		 *
1880 		 * All the rest of the state was crushed by the #gp
1881 		 * which pushed -its- registers atop our old save area
1882 		 * (because we had to decrement the stack pointer, sigh) so
1883 		 * all that we can try and do is to reconstruct the
1884 		 * crushed frame from the #gp trap frame itself.
1885 		 */
1886 		trp = &tmpregs;
1887 		trp->r_ss = lwptoregs(lwp)->r_ss;
1888 		trp->r_sp = lwptoregs(lwp)->r_sp;
1889 		trp->r_ps = lwptoregs(lwp)->r_ps;
1890 		trp->r_cs = lwptoregs(lwp)->r_cs;
1891 		trp->r_pc = lwptoregs(lwp)->r_pc;
1892 		bcopy(rp, trp, offsetof(struct regs, r_pc));
1893 
1894 		/*
1895 		 * Validate simple math
1896 		 */
1897 		ASSERT(trp->r_pc == lwptoregs(lwp)->r_pc);
1898 		ASSERT(trp->r_err == rp->r_err);
1899 
1900 
1901 
1902 	}
1903 
1904 #if defined(__amd64)
1905 	if (trp == NULL && lwp->lwp_pcb.pcb_rupdate != 0) {
1906 
1907 		/*
1908 		 * This is the common case -- we're trying to load
1909 		 * a bad segment register value in the only section
1910 		 * of kernel code that ever loads segment registers.
1911 		 *
1912 		 * We don't need to do anything at this point because
1913 		 * the pcb contains all the pending segment register
1914 		 * state, and the regs are still intact because we
1915 		 * didn't adjust the stack pointer yet.  Given the fidelity
1916 		 * of all this, we could conceivably send a signal
1917 		 * to the lwp, rather than core-ing.
1918 		 */
1919 		trp = lwptoregs(lwp);
1920 		ASSERT((caddr_t)trp == (caddr_t)rp->r_sp);
1921 	}
1922 
1923 #elif defined(__i386)
1924 
1925 	if (trp == NULL && instr_is_segregs_pop(pc))
1926 		trp = lwptoregs(lwp);
1927 
1928 #endif	/* __i386 */
1929 
1930 	if (trp == NULL)
1931 		return (1);
1932 
1933 	/*
1934 	 * If we get to here, we're reasonably confident that we've
1935 	 * correctly decoded what happened on the way out of the kernel.
1936 	 * Rewrite the lwp's registers so that we can create a core dump
1937 	 * the (at least vaguely) represents the mcontext we were
1938 	 * being asked to restore when things went so terribly wrong.
1939 	 */
1940 
1941 	/*
1942 	 * Make sure that we have a meaningful %trapno and %err.
1943 	 */
1944 	trp->r_trapno = rp->r_trapno;
1945 	trp->r_err = rp->r_err;
1946 
1947 	if ((caddr_t)trp != (caddr_t)lwptoregs(lwp))
1948 		bcopy(trp, lwptoregs(lwp), sizeof (*trp));
1949 
1950 
1951 	mutex_enter(&p->p_lock);
1952 	lwp->lwp_cursig = SIGSEGV;
1953 	mutex_exit(&p->p_lock);
1954 
1955 	/*
1956 	 * Terminate all LWPs but don't discard them.  If another lwp beat
1957 	 * us to the punch by calling exit(), evaporate now.
1958 	 */
1959 	proc_is_exiting(p);
1960 	if (exitlwps(1) != 0) {
1961 		mutex_enter(&p->p_lock);
1962 		lwp_exit();
1963 	}
1964 
1965 	if (audit_active)		/* audit core dump */
1966 		audit_core_start(SIGSEGV);
1967 	v = core(SIGSEGV, B_FALSE);
1968 	if (audit_active)		/* audit core dump */
1969 		audit_core_finish(v ? CLD_KILLED : CLD_DUMPED);
1970 	exit(v ? CLD_KILLED : CLD_DUMPED, SIGSEGV);
1971 	return (0);
1972 }
1973 
1974 /*
1975  * dump_tss() - Display the TSS structure
1976  */
1977 
1978 #if !defined(__xpv)
1979 #if defined(__amd64)
1980 
1981 static void
1982 dump_tss(void)
1983 {
1984 	const char tss_fmt[] = "tss.%s:\t0x%p\n";  /* Format string */
1985 	struct tss *tss = CPU->cpu_tss;
1986 
1987 	printf(tss_fmt, "tss_rsp0", (void *)tss->tss_rsp0);
1988 	printf(tss_fmt, "tss_rsp1", (void *)tss->tss_rsp1);
1989 	printf(tss_fmt, "tss_rsp2", (void *)tss->tss_rsp2);
1990 
1991 	printf(tss_fmt, "tss_ist1", (void *)tss->tss_ist1);
1992 	printf(tss_fmt, "tss_ist2", (void *)tss->tss_ist2);
1993 	printf(tss_fmt, "tss_ist3", (void *)tss->tss_ist3);
1994 	printf(tss_fmt, "tss_ist4", (void *)tss->tss_ist4);
1995 	printf(tss_fmt, "tss_ist5", (void *)tss->tss_ist5);
1996 	printf(tss_fmt, "tss_ist6", (void *)tss->tss_ist6);
1997 	printf(tss_fmt, "tss_ist7", (void *)tss->tss_ist7);
1998 }
1999 
2000 #elif defined(__i386)
2001 
2002 static void
2003 dump_tss(void)
2004 {
2005 	const char tss_fmt[] = "tss.%s:\t0x%p\n";  /* Format string */
2006 	struct tss *tss = CPU->cpu_tss;
2007 
2008 	printf(tss_fmt, "tss_link", (void *)(uintptr_t)tss->tss_link);
2009 	printf(tss_fmt, "tss_esp0", (void *)(uintptr_t)tss->tss_esp0);
2010 	printf(tss_fmt, "tss_ss0", (void *)(uintptr_t)tss->tss_ss0);
2011 	printf(tss_fmt, "tss_esp1", (void *)(uintptr_t)tss->tss_esp1);
2012 	printf(tss_fmt, "tss_ss1", (void *)(uintptr_t)tss->tss_ss1);
2013 	printf(tss_fmt, "tss_esp2", (void *)(uintptr_t)tss->tss_esp2);
2014 	printf(tss_fmt, "tss_ss2", (void *)(uintptr_t)tss->tss_ss2);
2015 	printf(tss_fmt, "tss_cr3", (void *)(uintptr_t)tss->tss_cr3);
2016 	printf(tss_fmt, "tss_eip", (void *)(uintptr_t)tss->tss_eip);
2017 	printf(tss_fmt, "tss_eflags", (void *)(uintptr_t)tss->tss_eflags);
2018 	printf(tss_fmt, "tss_eax", (void *)(uintptr_t)tss->tss_eax);
2019 	printf(tss_fmt, "tss_ebx", (void *)(uintptr_t)tss->tss_ebx);
2020 	printf(tss_fmt, "tss_ecx", (void *)(uintptr_t)tss->tss_ecx);
2021 	printf(tss_fmt, "tss_edx", (void *)(uintptr_t)tss->tss_edx);
2022 	printf(tss_fmt, "tss_esp", (void *)(uintptr_t)tss->tss_esp);
2023 }
2024 
2025 #endif	/* __amd64 */
2026 #endif	/* !__xpv */
2027 
2028 #if defined(TRAPTRACE)
2029 
2030 int ttrace_nrec = 10;		/* number of records to dump out */
2031 int ttrace_dump_nregs = 0;	/* dump out this many records with regs too */
2032 
2033 /*
2034  * Dump out the last ttrace_nrec traptrace records on each CPU
2035  */
2036 static void
2037 dump_ttrace(void)
2038 {
2039 	trap_trace_ctl_t *ttc;
2040 	trap_trace_rec_t *rec;
2041 	uintptr_t current;
2042 	int i, j, k;
2043 	int n = NCPU;
2044 #if defined(__amd64)
2045 	const char banner[] =
2046 	    "\ncpu          address    timestamp "
2047 	    "type  vc  handler   pc\n";
2048 	const char fmt1[] = "%3d %016lx %12llx ";
2049 #elif defined(__i386)
2050 	const char banner[] =
2051 	    "\ncpu  address     timestamp type  vc  handler   pc\n";
2052 	const char fmt1[] = "%3d %08lx %12llx ";
2053 #endif
2054 	const char fmt2[] = "%4s %3x ";
2055 	const char fmt3[] = "%8s ";
2056 
2057 	if (ttrace_nrec == 0)
2058 		return;
2059 
2060 	printf(banner);
2061 
2062 	for (i = 0; i < n; i++) {
2063 		ttc = &trap_trace_ctl[i];
2064 		if (ttc->ttc_first == NULL)
2065 			continue;
2066 
2067 		current = ttc->ttc_next - sizeof (trap_trace_rec_t);
2068 		for (j = 0; j < ttrace_nrec; j++) {
2069 			struct sysent	*sys;
2070 			struct autovec	*vec;
2071 			extern struct av_head autovect[];
2072 			int type;
2073 			ulong_t	off;
2074 			char *sym, *stype;
2075 
2076 			if (current < ttc->ttc_first)
2077 				current =
2078 				    ttc->ttc_limit - sizeof (trap_trace_rec_t);
2079 
2080 			if (current == NULL)
2081 				continue;
2082 
2083 			rec = (trap_trace_rec_t *)current;
2084 
2085 			if (rec->ttr_stamp == 0)
2086 				break;
2087 
2088 			printf(fmt1, i, (uintptr_t)rec, rec->ttr_stamp);
2089 
2090 			switch (rec->ttr_marker) {
2091 			case TT_SYSCALL:
2092 			case TT_SYSENTER:
2093 			case TT_SYSC:
2094 			case TT_SYSC64:
2095 #if defined(__amd64)
2096 				sys = &sysent32[rec->ttr_sysnum];
2097 				switch (rec->ttr_marker) {
2098 				case TT_SYSC64:
2099 					sys = &sysent[rec->ttr_sysnum];
2100 					/*FALLTHROUGH*/
2101 #elif defined(__i386)
2102 				sys = &sysent[rec->ttr_sysnum];
2103 				switch (rec->ttr_marker) {
2104 				case TT_SYSC64:
2105 #endif
2106 				case TT_SYSC:
2107 					stype = "sysc";	/* syscall */
2108 					break;
2109 				case TT_SYSCALL:
2110 					stype = "lcal";	/* lcall */
2111 					break;
2112 				case TT_SYSENTER:
2113 					stype = "syse";	/* sysenter */
2114 					break;
2115 				default:
2116 					break;
2117 				}
2118 				printf(fmt2, "sysc", rec->ttr_sysnum);
2119 				if (sys != NULL) {
2120 					sym = kobj_getsymname(
2121 					    (uintptr_t)sys->sy_callc,
2122 					    &off);
2123 					if (sym != NULL)
2124 						printf(fmt3, sym);
2125 					else
2126 						printf("%p ", sys->sy_callc);
2127 				} else {
2128 					printf(fmt3, "unknown");
2129 				}
2130 				break;
2131 
2132 			case TT_INTERRUPT:
2133 				printf(fmt2, "intr", rec->ttr_vector);
2134 				vec = (&autovect[rec->ttr_vector])->avh_link;
2135 				if (vec != NULL) {
2136 					sym = kobj_getsymname(
2137 					    (uintptr_t)vec->av_vector, &off);
2138 					if (sym != NULL)
2139 						printf(fmt3, sym);
2140 					else
2141 						printf("%p ", vec->av_vector);
2142 				} else {
2143 					printf(fmt3, "unknown ");
2144 				}
2145 				break;
2146 
2147 			case TT_TRAP:
2148 			case TT_EVENT:
2149 				type = rec->ttr_regs.r_trapno;
2150 				printf(fmt2, "trap", type);
2151 				if (type < TRAP_TYPES)
2152 					printf("     #%s ",
2153 					    trap_type_mnemonic[type]);
2154 				else
2155 					switch (type) {
2156 					case T_AST:
2157 						printf(fmt3, "ast");
2158 						break;
2159 					default:
2160 						printf(fmt3, "");
2161 						break;
2162 					}
2163 				break;
2164 
2165 			case TT_XCALL:
2166 				printf(fmt2, "xcal",
2167 				    rec->ttr_info.xc_entry.xce_marker);
2168 				printf(fmt3, "");
2169 				break;
2170 
2171 			default:
2172 				break;
2173 			}
2174 
2175 			sym = kobj_getsymname(rec->ttr_regs.r_pc, &off);
2176 			if (sym != NULL)
2177 				printf("%s+%lx\n", sym, off);
2178 			else
2179 				printf("%lx\n", rec->ttr_regs.r_pc);
2180 
2181 			if (ttrace_dump_nregs-- > 0) {
2182 				int s;
2183 
2184 				if (rec->ttr_marker == TT_INTERRUPT)
2185 					printf(
2186 					    "\t\tipl %x spl %x pri %x\n",
2187 					    rec->ttr_ipl,
2188 					    rec->ttr_spl,
2189 					    rec->ttr_pri);
2190 
2191 				dumpregs(&rec->ttr_regs);
2192 
2193 				printf("\t%3s: %p\n\n", " ct",
2194 				    (void *)rec->ttr_curthread);
2195 
2196 				/*
2197 				 * print out the pc stack that we recorded
2198 				 * at trap time (if any)
2199 				 */
2200 				for (s = 0; s < rec->ttr_sdepth; s++) {
2201 					uintptr_t fullpc;
2202 
2203 					if (s >= TTR_STACK_DEPTH) {
2204 						printf("ttr_sdepth corrupt\n");
2205 						break;
2206 					}
2207 
2208 					fullpc = (uintptr_t)rec->ttr_stack[s];
2209 
2210 					sym = kobj_getsymname(fullpc, &off);
2211 					if (sym != NULL)
2212 						printf("-> %s+0x%lx()\n",
2213 						    sym, off);
2214 					else
2215 						printf("-> 0x%lx()\n", fullpc);
2216 				}
2217 				printf("\n");
2218 			}
2219 			current -= sizeof (trap_trace_rec_t);
2220 		}
2221 	}
2222 }
2223 
2224 /*
2225  * Help with constructing traptrace records in C
2226  */
2227 trap_trace_rec_t *
2228 trap_trace_get_traceptr(uint8_t marker, ulong_t pc, ulong_t sp)
2229 {
2230 	trap_trace_rec_t *ttr;
2231 
2232 	if (trap_trace_freeze)
2233 		ttr = &trap_trace_postmort;
2234 	else {
2235 		trap_trace_ctl_t *ttc = &trap_trace_ctl[CPU->cpu_id];
2236 
2237 		ttr = (void *)ttc->ttc_next;
2238 
2239 		if (ttc->ttc_next >= ttc->ttc_limit)
2240 			ttc->ttc_next = ttc->ttc_first;
2241 		else
2242 			ttc->ttc_next += sizeof (trap_trace_rec_t);
2243 	}
2244 
2245 	ttr->ttr_regs.r_sp = sp;
2246 	ttr->ttr_regs.r_pc = pc;
2247 	ttr->ttr_cr2 = getcr2();
2248 	ttr->ttr_curthread = (uintptr_t)curthread;
2249 	ttr->ttr_stamp = tsc_read();
2250 	ttr->ttr_marker = marker;
2251 	return (ttr);
2252 }
2253 
2254 #endif	/* TRAPTRACE */
2255 
2256 void
2257 panic_showtrap(struct panic_trap_info *tip)
2258 {
2259 	showregs(tip->trap_type, tip->trap_regs, tip->trap_addr);
2260 
2261 #if defined(TRAPTRACE)
2262 	dump_ttrace();
2263 #endif
2264 
2265 #if !defined(__xpv)
2266 	if (tip->trap_type == T_DBLFLT)
2267 		dump_tss();
2268 #endif
2269 }
2270 
2271 void
2272 panic_savetrap(panic_data_t *pdp, struct panic_trap_info *tip)
2273 {
2274 	panic_saveregs(pdp, tip->trap_regs);
2275 }
2276