1 // SPDX-License-Identifier: GPL-2.0-only
3 * Based on arch/arm/kernel/traps.c
5 * Copyright (C) 1995-2009 Russell King
6 * Copyright (C) 2012 ARM Ltd.
10 #include <linux/context_tracking.h>
11 #include <linux/signal.h>
12 #include <linux/kallsyms.h>
13 #include <linux/kprobes.h>
14 #include <linux/spinlock.h>
15 #include <linux/uaccess.h>
16 #include <linux/hardirq.h>
17 #include <linux/kdebug.h>
18 #include <linux/module.h>
19 #include <linux/kexec.h>
20 #include <linux/delay.h>
21 #include <linux/init.h>
22 #include <linux/sched/signal.h>
23 #include <linux/sched/debug.h>
24 #include <linux/sched/task_stack.h>
25 #include <linux/sizes.h>
26 #include <linux/syscalls.h>
27 #include <linux/mm_types.h>
28 #include <linux/kasan.h>
30 #include <asm/atomic.h>
32 #include <asm/cpufeature.h>
33 #include <asm/daifflags.h>
34 #include <asm/debug-monitors.h>
36 #include <asm/exception.h>
37 #include <asm/extable.h>
39 #include <asm/kprobes.h>
40 #include <asm/patching.h>
41 #include <asm/traps.h>
43 #include <asm/stack_pointer.h>
44 #include <asm/stacktrace.h>
45 #include <asm/system_misc.h>
46 #include <asm/sysreg.h>
48 static bool __kprobes __check_eq(unsigned long pstate)
50 return (pstate & PSR_Z_BIT) != 0;
53 static bool __kprobes __check_ne(unsigned long pstate)
55 return (pstate & PSR_Z_BIT) == 0;
58 static bool __kprobes __check_cs(unsigned long pstate)
60 return (pstate & PSR_C_BIT) != 0;
63 static bool __kprobes __check_cc(unsigned long pstate)
65 return (pstate & PSR_C_BIT) == 0;
68 static bool __kprobes __check_mi(unsigned long pstate)
70 return (pstate & PSR_N_BIT) != 0;
73 static bool __kprobes __check_pl(unsigned long pstate)
75 return (pstate & PSR_N_BIT) == 0;
78 static bool __kprobes __check_vs(unsigned long pstate)
80 return (pstate & PSR_V_BIT) != 0;
83 static bool __kprobes __check_vc(unsigned long pstate)
85 return (pstate & PSR_V_BIT) == 0;
88 static bool __kprobes __check_hi(unsigned long pstate)
90 pstate &= ~(pstate >> 1); /* PSR_C_BIT &= ~PSR_Z_BIT */
91 return (pstate & PSR_C_BIT) != 0;
94 static bool __kprobes __check_ls(unsigned long pstate)
96 pstate &= ~(pstate >> 1); /* PSR_C_BIT &= ~PSR_Z_BIT */
97 return (pstate & PSR_C_BIT) == 0;
100 static bool __kprobes __check_ge(unsigned long pstate)
102 pstate ^= (pstate << 3); /* PSR_N_BIT ^= PSR_V_BIT */
103 return (pstate & PSR_N_BIT) == 0;
106 static bool __kprobes __check_lt(unsigned long pstate)
108 pstate ^= (pstate << 3); /* PSR_N_BIT ^= PSR_V_BIT */
109 return (pstate & PSR_N_BIT) != 0;
112 static bool __kprobes __check_gt(unsigned long pstate)
114 /*PSR_N_BIT ^= PSR_V_BIT */
115 unsigned long temp = pstate ^ (pstate << 3);
117 temp |= (pstate << 1); /*PSR_N_BIT |= PSR_Z_BIT */
118 return (temp & PSR_N_BIT) == 0;
121 static bool __kprobes __check_le(unsigned long pstate)
123 /*PSR_N_BIT ^= PSR_V_BIT */
124 unsigned long temp = pstate ^ (pstate << 3);
126 temp |= (pstate << 1); /*PSR_N_BIT |= PSR_Z_BIT */
127 return (temp & PSR_N_BIT) != 0;
130 static bool __kprobes __check_al(unsigned long pstate)
136 * Note that the ARMv8 ARM calls condition code 0b1111 "nv", but states that
137 * it behaves identically to 0b1110 ("al").
139 pstate_check_t * const aarch32_opcode_cond_checks[16] = {
140 __check_eq, __check_ne, __check_cs, __check_cc,
141 __check_mi, __check_pl, __check_vs, __check_vc,
142 __check_hi, __check_ls, __check_ge, __check_lt,
143 __check_gt, __check_le, __check_al, __check_al
146 int show_unhandled_signals = 0;
148 static void dump_kernel_instr(const char *lvl, struct pt_regs *regs)
150 unsigned long addr = instruction_pointer(regs);
151 char str[sizeof("00000000 ") * 5 + 2 + 1], *p = str;
157 for (i = -4; i < 1; i++) {
158 unsigned int val, bad;
160 bad = aarch64_insn_read(&((u32 *)addr)[i], &val);
163 p += sprintf(p, i == 0 ? "(%08x) " : "%08x ", val);
165 p += sprintf(p, "bad PC value");
170 printk("%sCode: %s\n", lvl, str);
173 #ifdef CONFIG_PREEMPT
174 #define S_PREEMPT " PREEMPT"
175 #elif defined(CONFIG_PREEMPT_RT)
176 #define S_PREEMPT " PREEMPT_RT"
183 static int __die(const char *str, int err, struct pt_regs *regs)
185 static int die_counter;
188 pr_emerg("Internal error: %s: %x [#%d]" S_PREEMPT S_SMP "\n",
189 str, err, ++die_counter);
191 /* trap and error numbers are mostly meaningless on ARM */
192 ret = notify_die(DIE_OOPS, str, regs, err, 0, SIGSEGV);
193 if (ret == NOTIFY_STOP)
199 dump_kernel_instr(KERN_EMERG, regs);
204 static DEFINE_RAW_SPINLOCK(die_lock);
207 * This function is protected against re-entrancy.
209 void die(const char *str, struct pt_regs *regs, int err)
214 raw_spin_lock_irqsave(&die_lock, flags);
220 ret = __die(str, err, regs);
222 if (regs && kexec_should_crash(current))
226 add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE);
230 panic("%s: Fatal exception in interrupt", str);
232 panic("%s: Fatal exception", str);
234 raw_spin_unlock_irqrestore(&die_lock, flags);
236 if (ret != NOTIFY_STOP)
237 make_task_dead(SIGSEGV);
240 static void arm64_show_signal(int signo, const char *str)
242 static DEFINE_RATELIMIT_STATE(rs, DEFAULT_RATELIMIT_INTERVAL,
243 DEFAULT_RATELIMIT_BURST);
244 struct task_struct *tsk = current;
245 unsigned long esr = tsk->thread.fault_code;
246 struct pt_regs *regs = task_pt_regs(tsk);
248 /* Leave if the signal won't be shown */
249 if (!show_unhandled_signals ||
250 !unhandled_signal(tsk, signo) ||
254 pr_info("%s[%d]: unhandled exception: ", tsk->comm, task_pid_nr(tsk));
256 pr_cont("%s, ESR 0x%016lx, ", esr_get_class_string(esr), esr);
259 print_vma_addr(KERN_CONT " in ", regs->pc);
264 void arm64_force_sig_fault(int signo, int code, unsigned long far,
267 arm64_show_signal(signo, str);
268 if (signo == SIGKILL)
271 force_sig_fault(signo, code, (void __user *)far);
274 void arm64_force_sig_mceerr(int code, unsigned long far, short lsb,
277 arm64_show_signal(SIGBUS, str);
278 force_sig_mceerr(code, (void __user *)far, lsb);
281 void arm64_force_sig_ptrace_errno_trap(int errno, unsigned long far,
284 arm64_show_signal(SIGTRAP, str);
285 force_sig_ptrace_errno_trap(errno, (void __user *)far);
288 void arm64_notify_die(const char *str, struct pt_regs *regs,
289 int signo, int sicode, unsigned long far,
292 if (user_mode(regs)) {
293 WARN_ON(regs != current_pt_regs());
294 current->thread.fault_address = 0;
295 current->thread.fault_code = err;
297 arm64_force_sig_fault(signo, sicode, far, str);
304 #define PSTATE_IT_1_0_SHIFT 25
305 #define PSTATE_IT_1_0_MASK (0x3 << PSTATE_IT_1_0_SHIFT)
306 #define PSTATE_IT_7_2_SHIFT 10
307 #define PSTATE_IT_7_2_MASK (0x3f << PSTATE_IT_7_2_SHIFT)
309 static u32 compat_get_it_state(struct pt_regs *regs)
311 u32 it, pstate = regs->pstate;
313 it = (pstate & PSTATE_IT_1_0_MASK) >> PSTATE_IT_1_0_SHIFT;
314 it |= ((pstate & PSTATE_IT_7_2_MASK) >> PSTATE_IT_7_2_SHIFT) << 2;
319 static void compat_set_it_state(struct pt_regs *regs, u32 it)
323 pstate_it = (it << PSTATE_IT_1_0_SHIFT) & PSTATE_IT_1_0_MASK;
324 pstate_it |= ((it >> 2) << PSTATE_IT_7_2_SHIFT) & PSTATE_IT_7_2_MASK;
326 regs->pstate &= ~PSR_AA32_IT_MASK;
327 regs->pstate |= pstate_it;
330 static void advance_itstate(struct pt_regs *regs)
335 if (!(regs->pstate & PSR_AA32_T_BIT) ||
336 !(regs->pstate & PSR_AA32_IT_MASK))
339 it = compat_get_it_state(regs);
342 * If this is the last instruction of the block, wipe the IT
343 * state. Otherwise advance it.
348 it = (it & 0xe0) | ((it << 1) & 0x1f);
350 compat_set_it_state(regs, it);
353 static void advance_itstate(struct pt_regs *regs)
358 void arm64_skip_faulting_instruction(struct pt_regs *regs, unsigned long size)
363 * If we were single stepping, we want to get the step exception after
364 * we return from the trap.
367 user_fastforward_single_step(current);
369 if (compat_user_mode(regs))
370 advance_itstate(regs);
372 regs->pstate &= ~PSR_BTYPE_MASK;
375 static LIST_HEAD(undef_hook);
376 static DEFINE_RAW_SPINLOCK(undef_lock);
378 void register_undef_hook(struct undef_hook *hook)
382 raw_spin_lock_irqsave(&undef_lock, flags);
383 list_add(&hook->node, &undef_hook);
384 raw_spin_unlock_irqrestore(&undef_lock, flags);
387 void unregister_undef_hook(struct undef_hook *hook)
391 raw_spin_lock_irqsave(&undef_lock, flags);
392 list_del(&hook->node);
393 raw_spin_unlock_irqrestore(&undef_lock, flags);
396 static int call_undef_hook(struct pt_regs *regs)
398 struct undef_hook *hook;
401 int (*fn)(struct pt_regs *regs, u32 instr) = NULL;
402 unsigned long pc = instruction_pointer(regs);
404 if (!user_mode(regs)) {
406 if (get_kernel_nofault(instr_le, (__le32 *)pc))
408 instr = le32_to_cpu(instr_le);
409 } else if (compat_thumb_mode(regs)) {
410 /* 16-bit Thumb instruction */
412 if (get_user(instr_le, (__le16 __user *)pc))
414 instr = le16_to_cpu(instr_le);
415 if (aarch32_insn_is_wide(instr)) {
418 if (get_user(instr_le, (__le16 __user *)(pc + 2)))
420 instr2 = le16_to_cpu(instr_le);
421 instr = (instr << 16) | instr2;
424 /* 32-bit ARM instruction */
426 if (get_user(instr_le, (__le32 __user *)pc))
428 instr = le32_to_cpu(instr_le);
431 raw_spin_lock_irqsave(&undef_lock, flags);
432 list_for_each_entry(hook, &undef_hook, node)
433 if ((instr & hook->instr_mask) == hook->instr_val &&
434 (regs->pstate & hook->pstate_mask) == hook->pstate_val)
437 raw_spin_unlock_irqrestore(&undef_lock, flags);
439 return fn ? fn(regs, instr) : 1;
442 void force_signal_inject(int signal, int code, unsigned long address, unsigned long err)
445 struct pt_regs *regs = current_pt_regs();
447 if (WARN_ON(!user_mode(regs)))
452 desc = "undefined instruction";
455 desc = "illegal memory access";
458 desc = "unknown or unrecoverable error";
462 /* Force signals we don't understand to SIGKILL */
463 if (WARN_ON(signal != SIGKILL &&
464 siginfo_layout(signal, code) != SIL_FAULT)) {
468 arm64_notify_die(desc, regs, signal, code, address, err);
472 * Set up process info to signal segmentation fault - called on access error.
474 void arm64_notify_segfault(unsigned long addr)
478 mmap_read_lock(current->mm);
479 if (find_vma(current->mm, untagged_addr(addr)) == NULL)
483 mmap_read_unlock(current->mm);
485 force_signal_inject(SIGSEGV, code, addr, 0);
488 void do_undefinstr(struct pt_regs *regs)
490 /* check for AArch32 breakpoint instructions */
491 if (!aarch32_break_handler(regs))
494 if (call_undef_hook(regs) == 0)
497 BUG_ON(!user_mode(regs));
498 force_signal_inject(SIGILL, ILL_ILLOPC, regs->pc, 0);
500 NOKPROBE_SYMBOL(do_undefinstr);
502 void do_bti(struct pt_regs *regs)
504 BUG_ON(!user_mode(regs));
505 force_signal_inject(SIGILL, ILL_ILLOPC, regs->pc, 0);
507 NOKPROBE_SYMBOL(do_bti);
509 void do_ptrauth_fault(struct pt_regs *regs, unsigned long esr)
512 * Unexpected FPAC exception or pointer authentication failure in
513 * the kernel: kill the task before it does any more harm.
515 BUG_ON(!user_mode(regs));
516 force_signal_inject(SIGILL, ILL_ILLOPN, regs->pc, esr);
518 NOKPROBE_SYMBOL(do_ptrauth_fault);
520 #define __user_cache_maint(insn, address, res) \
521 if (address >= TASK_SIZE_MAX) { \
524 uaccess_ttbr0_enable(); \
526 "1: " insn ", %1\n" \
529 _ASM_EXTABLE_UACCESS_ERR(1b, 2b, %w0) \
532 uaccess_ttbr0_disable(); \
535 static void user_cache_maint_handler(unsigned long esr, struct pt_regs *regs)
537 unsigned long tagged_address, address;
538 int rt = ESR_ELx_SYS64_ISS_RT(esr);
539 int crm = (esr & ESR_ELx_SYS64_ISS_CRM_MASK) >> ESR_ELx_SYS64_ISS_CRM_SHIFT;
542 tagged_address = pt_regs_read_reg(regs, rt);
543 address = untagged_addr(tagged_address);
546 case ESR_ELx_SYS64_ISS_CRM_DC_CVAU: /* DC CVAU, gets promoted */
547 __user_cache_maint("dc civac", address, ret);
549 case ESR_ELx_SYS64_ISS_CRM_DC_CVAC: /* DC CVAC, gets promoted */
550 __user_cache_maint("dc civac", address, ret);
552 case ESR_ELx_SYS64_ISS_CRM_DC_CVADP: /* DC CVADP */
553 __user_cache_maint("sys 3, c7, c13, 1", address, ret);
555 case ESR_ELx_SYS64_ISS_CRM_DC_CVAP: /* DC CVAP */
556 __user_cache_maint("sys 3, c7, c12, 1", address, ret);
558 case ESR_ELx_SYS64_ISS_CRM_DC_CIVAC: /* DC CIVAC */
559 __user_cache_maint("dc civac", address, ret);
561 case ESR_ELx_SYS64_ISS_CRM_IC_IVAU: /* IC IVAU */
562 __user_cache_maint("ic ivau", address, ret);
565 force_signal_inject(SIGILL, ILL_ILLOPC, regs->pc, 0);
570 arm64_notify_segfault(tagged_address);
572 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
575 static void ctr_read_handler(unsigned long esr, struct pt_regs *regs)
577 int rt = ESR_ELx_SYS64_ISS_RT(esr);
578 unsigned long val = arm64_ftr_reg_user_value(&arm64_ftr_reg_ctrel0);
580 if (cpus_have_const_cap(ARM64_WORKAROUND_1542419)) {
581 /* Hide DIC so that we can trap the unnecessary maintenance...*/
582 val &= ~BIT(CTR_EL0_DIC_SHIFT);
584 /* ... and fake IminLine to reduce the number of traps. */
585 val &= ~CTR_EL0_IminLine_MASK;
586 val |= (PAGE_SHIFT - 2) & CTR_EL0_IminLine_MASK;
589 pt_regs_write_reg(regs, rt, val);
591 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
594 static void cntvct_read_handler(unsigned long esr, struct pt_regs *regs)
596 int rt = ESR_ELx_SYS64_ISS_RT(esr);
598 pt_regs_write_reg(regs, rt, arch_timer_read_counter());
599 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
602 static void cntfrq_read_handler(unsigned long esr, struct pt_regs *regs)
604 int rt = ESR_ELx_SYS64_ISS_RT(esr);
606 pt_regs_write_reg(regs, rt, arch_timer_get_rate());
607 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
610 static void mrs_handler(unsigned long esr, struct pt_regs *regs)
614 rt = ESR_ELx_SYS64_ISS_RT(esr);
615 sysreg = esr_sys64_to_sysreg(esr);
617 if (do_emulate_mrs(regs, sysreg, rt) != 0)
618 force_signal_inject(SIGILL, ILL_ILLOPC, regs->pc, 0);
621 static void wfi_handler(unsigned long esr, struct pt_regs *regs)
623 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
627 unsigned long esr_mask;
628 unsigned long esr_val;
629 void (*handler)(unsigned long esr, struct pt_regs *regs);
632 static const struct sys64_hook sys64_hooks[] = {
634 .esr_mask = ESR_ELx_SYS64_ISS_EL0_CACHE_OP_MASK,
635 .esr_val = ESR_ELx_SYS64_ISS_EL0_CACHE_OP_VAL,
636 .handler = user_cache_maint_handler,
639 /* Trap read access to CTR_EL0 */
640 .esr_mask = ESR_ELx_SYS64_ISS_SYS_OP_MASK,
641 .esr_val = ESR_ELx_SYS64_ISS_SYS_CTR_READ,
642 .handler = ctr_read_handler,
645 /* Trap read access to CNTVCT_EL0 */
646 .esr_mask = ESR_ELx_SYS64_ISS_SYS_OP_MASK,
647 .esr_val = ESR_ELx_SYS64_ISS_SYS_CNTVCT,
648 .handler = cntvct_read_handler,
651 /* Trap read access to CNTVCTSS_EL0 */
652 .esr_mask = ESR_ELx_SYS64_ISS_SYS_OP_MASK,
653 .esr_val = ESR_ELx_SYS64_ISS_SYS_CNTVCTSS,
654 .handler = cntvct_read_handler,
657 /* Trap read access to CNTFRQ_EL0 */
658 .esr_mask = ESR_ELx_SYS64_ISS_SYS_OP_MASK,
659 .esr_val = ESR_ELx_SYS64_ISS_SYS_CNTFRQ,
660 .handler = cntfrq_read_handler,
663 /* Trap read access to CPUID registers */
664 .esr_mask = ESR_ELx_SYS64_ISS_SYS_MRS_OP_MASK,
665 .esr_val = ESR_ELx_SYS64_ISS_SYS_MRS_OP_VAL,
666 .handler = mrs_handler,
669 /* Trap WFI instructions executed in userspace */
670 .esr_mask = ESR_ELx_WFx_MASK,
671 .esr_val = ESR_ELx_WFx_WFI_VAL,
672 .handler = wfi_handler,
678 static bool cp15_cond_valid(unsigned long esr, struct pt_regs *regs)
682 /* Only a T32 instruction can trap without CV being set */
683 if (!(esr & ESR_ELx_CV)) {
686 it = compat_get_it_state(regs);
692 cond = (esr & ESR_ELx_COND_MASK) >> ESR_ELx_COND_SHIFT;
695 return aarch32_opcode_cond_checks[cond](regs->pstate);
698 static void compat_cntfrq_read_handler(unsigned long esr, struct pt_regs *regs)
700 int reg = (esr & ESR_ELx_CP15_32_ISS_RT_MASK) >> ESR_ELx_CP15_32_ISS_RT_SHIFT;
702 pt_regs_write_reg(regs, reg, arch_timer_get_rate());
703 arm64_skip_faulting_instruction(regs, 4);
706 static const struct sys64_hook cp15_32_hooks[] = {
708 .esr_mask = ESR_ELx_CP15_32_ISS_SYS_MASK,
709 .esr_val = ESR_ELx_CP15_32_ISS_SYS_CNTFRQ,
710 .handler = compat_cntfrq_read_handler,
715 static void compat_cntvct_read_handler(unsigned long esr, struct pt_regs *regs)
717 int rt = (esr & ESR_ELx_CP15_64_ISS_RT_MASK) >> ESR_ELx_CP15_64_ISS_RT_SHIFT;
718 int rt2 = (esr & ESR_ELx_CP15_64_ISS_RT2_MASK) >> ESR_ELx_CP15_64_ISS_RT2_SHIFT;
719 u64 val = arch_timer_read_counter();
721 pt_regs_write_reg(regs, rt, lower_32_bits(val));
722 pt_regs_write_reg(regs, rt2, upper_32_bits(val));
723 arm64_skip_faulting_instruction(regs, 4);
726 static const struct sys64_hook cp15_64_hooks[] = {
728 .esr_mask = ESR_ELx_CP15_64_ISS_SYS_MASK,
729 .esr_val = ESR_ELx_CP15_64_ISS_SYS_CNTVCT,
730 .handler = compat_cntvct_read_handler,
733 .esr_mask = ESR_ELx_CP15_64_ISS_SYS_MASK,
734 .esr_val = ESR_ELx_CP15_64_ISS_SYS_CNTVCTSS,
735 .handler = compat_cntvct_read_handler,
740 void do_cp15instr(unsigned long esr, struct pt_regs *regs)
742 const struct sys64_hook *hook, *hook_base;
744 if (!cp15_cond_valid(esr, regs)) {
746 * There is no T16 variant of a CP access, so we
747 * always advance PC by 4 bytes.
749 arm64_skip_faulting_instruction(regs, 4);
753 switch (ESR_ELx_EC(esr)) {
754 case ESR_ELx_EC_CP15_32:
755 hook_base = cp15_32_hooks;
757 case ESR_ELx_EC_CP15_64:
758 hook_base = cp15_64_hooks;
765 for (hook = hook_base; hook->handler; hook++)
766 if ((hook->esr_mask & esr) == hook->esr_val) {
767 hook->handler(esr, regs);
772 * New cp15 instructions may previously have been undefined at
773 * EL0. Fall back to our usual undefined instruction handler
774 * so that we handle these consistently.
778 NOKPROBE_SYMBOL(do_cp15instr);
781 void do_sysinstr(unsigned long esr, struct pt_regs *regs)
783 const struct sys64_hook *hook;
785 for (hook = sys64_hooks; hook->handler; hook++)
786 if ((hook->esr_mask & esr) == hook->esr_val) {
787 hook->handler(esr, regs);
792 * New SYS instructions may previously have been undefined at EL0. Fall
793 * back to our usual undefined instruction handler so that we handle
794 * these consistently.
798 NOKPROBE_SYMBOL(do_sysinstr);
800 static const char *esr_class_str[] = {
801 [0 ... ESR_ELx_EC_MAX] = "UNRECOGNIZED EC",
802 [ESR_ELx_EC_UNKNOWN] = "Unknown/Uncategorized",
803 [ESR_ELx_EC_WFx] = "WFI/WFE",
804 [ESR_ELx_EC_CP15_32] = "CP15 MCR/MRC",
805 [ESR_ELx_EC_CP15_64] = "CP15 MCRR/MRRC",
806 [ESR_ELx_EC_CP14_MR] = "CP14 MCR/MRC",
807 [ESR_ELx_EC_CP14_LS] = "CP14 LDC/STC",
808 [ESR_ELx_EC_FP_ASIMD] = "ASIMD",
809 [ESR_ELx_EC_CP10_ID] = "CP10 MRC/VMRS",
810 [ESR_ELx_EC_PAC] = "PAC",
811 [ESR_ELx_EC_CP14_64] = "CP14 MCRR/MRRC",
812 [ESR_ELx_EC_BTI] = "BTI",
813 [ESR_ELx_EC_ILL] = "PSTATE.IL",
814 [ESR_ELx_EC_SVC32] = "SVC (AArch32)",
815 [ESR_ELx_EC_HVC32] = "HVC (AArch32)",
816 [ESR_ELx_EC_SMC32] = "SMC (AArch32)",
817 [ESR_ELx_EC_SVC64] = "SVC (AArch64)",
818 [ESR_ELx_EC_HVC64] = "HVC (AArch64)",
819 [ESR_ELx_EC_SMC64] = "SMC (AArch64)",
820 [ESR_ELx_EC_SYS64] = "MSR/MRS (AArch64)",
821 [ESR_ELx_EC_SVE] = "SVE",
822 [ESR_ELx_EC_ERET] = "ERET/ERETAA/ERETAB",
823 [ESR_ELx_EC_FPAC] = "FPAC",
824 [ESR_ELx_EC_SME] = "SME",
825 [ESR_ELx_EC_IMP_DEF] = "EL3 IMP DEF",
826 [ESR_ELx_EC_IABT_LOW] = "IABT (lower EL)",
827 [ESR_ELx_EC_IABT_CUR] = "IABT (current EL)",
828 [ESR_ELx_EC_PC_ALIGN] = "PC Alignment",
829 [ESR_ELx_EC_DABT_LOW] = "DABT (lower EL)",
830 [ESR_ELx_EC_DABT_CUR] = "DABT (current EL)",
831 [ESR_ELx_EC_SP_ALIGN] = "SP Alignment",
832 [ESR_ELx_EC_FP_EXC32] = "FP (AArch32)",
833 [ESR_ELx_EC_FP_EXC64] = "FP (AArch64)",
834 [ESR_ELx_EC_SERROR] = "SError",
835 [ESR_ELx_EC_BREAKPT_LOW] = "Breakpoint (lower EL)",
836 [ESR_ELx_EC_BREAKPT_CUR] = "Breakpoint (current EL)",
837 [ESR_ELx_EC_SOFTSTP_LOW] = "Software Step (lower EL)",
838 [ESR_ELx_EC_SOFTSTP_CUR] = "Software Step (current EL)",
839 [ESR_ELx_EC_WATCHPT_LOW] = "Watchpoint (lower EL)",
840 [ESR_ELx_EC_WATCHPT_CUR] = "Watchpoint (current EL)",
841 [ESR_ELx_EC_BKPT32] = "BKPT (AArch32)",
842 [ESR_ELx_EC_VECTOR32] = "Vector catch (AArch32)",
843 [ESR_ELx_EC_BRK64] = "BRK (AArch64)",
846 const char *esr_get_class_string(unsigned long esr)
848 return esr_class_str[ESR_ELx_EC(esr)];
852 * bad_el0_sync handles unexpected, but potentially recoverable synchronous
853 * exceptions taken from EL0.
855 void bad_el0_sync(struct pt_regs *regs, int reason, unsigned long esr)
857 unsigned long pc = instruction_pointer(regs);
859 current->thread.fault_address = 0;
860 current->thread.fault_code = esr;
862 arm64_force_sig_fault(SIGILL, ILL_ILLOPC, pc,
863 "Bad EL0 synchronous exception");
866 #ifdef CONFIG_VMAP_STACK
868 DEFINE_PER_CPU(unsigned long [OVERFLOW_STACK_SIZE/sizeof(long)], overflow_stack)
871 void panic_bad_stack(struct pt_regs *regs, unsigned long esr, unsigned long far)
873 unsigned long tsk_stk = (unsigned long)current->stack;
874 unsigned long irq_stk = (unsigned long)this_cpu_read(irq_stack_ptr);
875 unsigned long ovf_stk = (unsigned long)this_cpu_ptr(overflow_stack);
878 pr_emerg("Insufficient stack space to handle exception!");
880 pr_emerg("ESR: 0x%016lx -- %s\n", esr, esr_get_class_string(esr));
881 pr_emerg("FAR: 0x%016lx\n", far);
883 pr_emerg("Task stack: [0x%016lx..0x%016lx]\n",
884 tsk_stk, tsk_stk + THREAD_SIZE);
885 pr_emerg("IRQ stack: [0x%016lx..0x%016lx]\n",
886 irq_stk, irq_stk + IRQ_STACK_SIZE);
887 pr_emerg("Overflow stack: [0x%016lx..0x%016lx]\n",
888 ovf_stk, ovf_stk + OVERFLOW_STACK_SIZE);
893 * We use nmi_panic to limit the potential for recusive overflows, and
894 * to get a better stack trace.
896 nmi_panic(NULL, "kernel stack overflow");
901 void __noreturn arm64_serror_panic(struct pt_regs *regs, unsigned long esr)
905 pr_crit("SError Interrupt on CPU%d, code 0x%016lx -- %s\n",
906 smp_processor_id(), esr, esr_get_class_string(esr));
910 nmi_panic(regs, "Asynchronous SError Interrupt");
916 bool arm64_is_fatal_ras_serror(struct pt_regs *regs, unsigned long esr)
918 unsigned long aet = arm64_ras_serror_get_severity(esr);
921 case ESR_ELx_AET_CE: /* corrected error */
922 case ESR_ELx_AET_UEO: /* restartable, not yet consumed */
924 * The CPU can make progress. We may take UEO again as
925 * a more severe error.
929 case ESR_ELx_AET_UEU: /* Uncorrected Unrecoverable */
930 case ESR_ELx_AET_UER: /* Uncorrected Recoverable */
932 * The CPU can't make progress. The exception may have
935 * Neoverse-N1 #1349291 means a non-KVM SError reported as
936 * Unrecoverable should be treated as Uncontainable. We
937 * call arm64_serror_panic() in both cases.
941 case ESR_ELx_AET_UC: /* Uncontainable or Uncategorized error */
943 /* Error has been silently propagated */
944 arm64_serror_panic(regs, esr);
948 void do_serror(struct pt_regs *regs, unsigned long esr)
950 /* non-RAS errors are not containable */
951 if (!arm64_is_ras_serror(esr) || arm64_is_fatal_ras_serror(regs, esr))
952 arm64_serror_panic(regs, esr);
955 /* GENERIC_BUG traps */
957 int is_valid_bugaddr(unsigned long addr)
960 * bug_handler() only called for BRK #BUG_BRK_IMM.
961 * So the answer is trivial -- any spurious instances with no
962 * bug table entry will be rejected by report_bug() and passed
963 * back to the debug-monitors code and handled as a fatal
964 * unexpected debug exception.
969 static int bug_handler(struct pt_regs *regs, unsigned long esr)
971 switch (report_bug(regs->pc, regs)) {
972 case BUG_TRAP_TYPE_BUG:
973 die("Oops - BUG", regs, 0);
976 case BUG_TRAP_TYPE_WARN:
980 /* unknown/unrecognised bug trap type */
981 return DBG_HOOK_ERROR;
984 /* If thread survives, skip over the BUG instruction and continue: */
985 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
986 return DBG_HOOK_HANDLED;
989 static struct break_hook bug_break_hook = {
994 static int reserved_fault_handler(struct pt_regs *regs, unsigned long esr)
996 pr_err("%s generated an invalid instruction at %pS!\n",
997 "Kernel text patching",
998 (void *)instruction_pointer(regs));
1000 /* We cannot handle this */
1001 return DBG_HOOK_ERROR;
1004 static struct break_hook fault_break_hook = {
1005 .fn = reserved_fault_handler,
1006 .imm = FAULT_BRK_IMM,
1009 #ifdef CONFIG_KASAN_SW_TAGS
1011 #define KASAN_ESR_RECOVER 0x20
1012 #define KASAN_ESR_WRITE 0x10
1013 #define KASAN_ESR_SIZE_MASK 0x0f
1014 #define KASAN_ESR_SIZE(esr) (1 << ((esr) & KASAN_ESR_SIZE_MASK))
1016 static int kasan_handler(struct pt_regs *regs, unsigned long esr)
1018 bool recover = esr & KASAN_ESR_RECOVER;
1019 bool write = esr & KASAN_ESR_WRITE;
1020 size_t size = KASAN_ESR_SIZE(esr);
1021 u64 addr = regs->regs[0];
1024 kasan_report(addr, size, write, pc);
1027 * The instrumentation allows to control whether we can proceed after
1028 * a crash was detected. This is done by passing the -recover flag to
1029 * the compiler. Disabling recovery allows to generate more compact
1032 * Unfortunately disabling recovery doesn't work for the kernel right
1033 * now. KASAN reporting is disabled in some contexts (for example when
1034 * the allocator accesses slab object metadata; this is controlled by
1035 * current->kasan_depth). All these accesses are detected by the tool,
1036 * even though the reports for them are not printed.
1038 * This is something that might be fixed at some point in the future.
1041 die("Oops - KASAN", regs, 0);
1043 /* If thread survives, skip over the brk instruction and continue: */
1044 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
1045 return DBG_HOOK_HANDLED;
1048 static struct break_hook kasan_break_hook = {
1049 .fn = kasan_handler,
1050 .imm = KASAN_BRK_IMM,
1051 .mask = KASAN_BRK_MASK,
1056 * Initial handler for AArch64 BRK exceptions
1057 * This handler only used until debug_traps_init().
1059 int __init early_brk64(unsigned long addr, unsigned long esr,
1060 struct pt_regs *regs)
1062 #ifdef CONFIG_KASAN_SW_TAGS
1063 unsigned long comment = esr & ESR_ELx_BRK64_ISS_COMMENT_MASK;
1065 if ((comment & ~KASAN_BRK_MASK) == KASAN_BRK_IMM)
1066 return kasan_handler(regs, esr) != DBG_HOOK_HANDLED;
1068 return bug_handler(regs, esr) != DBG_HOOK_HANDLED;
1071 void __init trap_init(void)
1073 register_kernel_break_hook(&bug_break_hook);
1074 register_kernel_break_hook(&fault_break_hook);
1075 #ifdef CONFIG_KASAN_SW_TAGS
1076 register_kernel_break_hook(&kasan_break_hook);