1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Based on arch/arm/kernel/traps.c
4 *
5 * Copyright (C) 1995-2009 Russell King
6 * Copyright (C) 2012 ARM Ltd.
7 */
8
9 #include <linux/bug.h>
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/efi.h>
22 #include <linux/init.h>
23 #include <linux/sched/signal.h>
24 #include <linux/sched/debug.h>
25 #include <linux/sched/task_stack.h>
26 #include <linux/sizes.h>
27 #include <linux/syscalls.h>
28 #include <linux/mm_types.h>
29 #include <linux/kasan.h>
30 #include <linux/ubsan.h>
31 #include <linux/cfi.h>
32
33 #include <asm/atomic.h>
34 #include <asm/bug.h>
35 #include <asm/cpufeature.h>
36 #include <asm/daifflags.h>
37 #include <asm/debug-monitors.h>
38 #include <asm/efi.h>
39 #include <asm/esr.h>
40 #include <asm/exception.h>
41 #include <asm/extable.h>
42 #include <asm/insn.h>
43 #include <asm/kprobes.h>
44 #include <asm/patching.h>
45 #include <asm/traps.h>
46 #include <asm/smp.h>
47 #include <asm/stack_pointer.h>
48 #include <asm/stacktrace.h>
49 #include <asm/system_misc.h>
50 #include <asm/sysreg.h>
51
__check_eq(unsigned long pstate)52 static bool __kprobes __check_eq(unsigned long pstate)
53 {
54 return (pstate & PSR_Z_BIT) != 0;
55 }
56
__check_ne(unsigned long pstate)57 static bool __kprobes __check_ne(unsigned long pstate)
58 {
59 return (pstate & PSR_Z_BIT) == 0;
60 }
61
__check_cs(unsigned long pstate)62 static bool __kprobes __check_cs(unsigned long pstate)
63 {
64 return (pstate & PSR_C_BIT) != 0;
65 }
66
__check_cc(unsigned long pstate)67 static bool __kprobes __check_cc(unsigned long pstate)
68 {
69 return (pstate & PSR_C_BIT) == 0;
70 }
71
__check_mi(unsigned long pstate)72 static bool __kprobes __check_mi(unsigned long pstate)
73 {
74 return (pstate & PSR_N_BIT) != 0;
75 }
76
__check_pl(unsigned long pstate)77 static bool __kprobes __check_pl(unsigned long pstate)
78 {
79 return (pstate & PSR_N_BIT) == 0;
80 }
81
__check_vs(unsigned long pstate)82 static bool __kprobes __check_vs(unsigned long pstate)
83 {
84 return (pstate & PSR_V_BIT) != 0;
85 }
86
__check_vc(unsigned long pstate)87 static bool __kprobes __check_vc(unsigned long pstate)
88 {
89 return (pstate & PSR_V_BIT) == 0;
90 }
91
__check_hi(unsigned long pstate)92 static bool __kprobes __check_hi(unsigned long pstate)
93 {
94 pstate &= ~(pstate >> 1); /* PSR_C_BIT &= ~PSR_Z_BIT */
95 return (pstate & PSR_C_BIT) != 0;
96 }
97
__check_ls(unsigned long pstate)98 static bool __kprobes __check_ls(unsigned long pstate)
99 {
100 pstate &= ~(pstate >> 1); /* PSR_C_BIT &= ~PSR_Z_BIT */
101 return (pstate & PSR_C_BIT) == 0;
102 }
103
__check_ge(unsigned long pstate)104 static bool __kprobes __check_ge(unsigned long pstate)
105 {
106 pstate ^= (pstate << 3); /* PSR_N_BIT ^= PSR_V_BIT */
107 return (pstate & PSR_N_BIT) == 0;
108 }
109
__check_lt(unsigned long pstate)110 static bool __kprobes __check_lt(unsigned long pstate)
111 {
112 pstate ^= (pstate << 3); /* PSR_N_BIT ^= PSR_V_BIT */
113 return (pstate & PSR_N_BIT) != 0;
114 }
115
__check_gt(unsigned long pstate)116 static bool __kprobes __check_gt(unsigned long pstate)
117 {
118 /*PSR_N_BIT ^= PSR_V_BIT */
119 unsigned long temp = pstate ^ (pstate << 3);
120
121 temp |= (pstate << 1); /*PSR_N_BIT |= PSR_Z_BIT */
122 return (temp & PSR_N_BIT) == 0;
123 }
124
__check_le(unsigned long pstate)125 static bool __kprobes __check_le(unsigned long pstate)
126 {
127 /*PSR_N_BIT ^= PSR_V_BIT */
128 unsigned long temp = pstate ^ (pstate << 3);
129
130 temp |= (pstate << 1); /*PSR_N_BIT |= PSR_Z_BIT */
131 return (temp & PSR_N_BIT) != 0;
132 }
133
__check_al(unsigned long pstate)134 static bool __kprobes __check_al(unsigned long pstate)
135 {
136 return true;
137 }
138
139 /*
140 * Note that the ARMv8 ARM calls condition code 0b1111 "nv", but states that
141 * it behaves identically to 0b1110 ("al").
142 */
143 pstate_check_t * const aarch32_opcode_cond_checks[16] = {
144 __check_eq, __check_ne, __check_cs, __check_cc,
145 __check_mi, __check_pl, __check_vs, __check_vc,
146 __check_hi, __check_ls, __check_ge, __check_lt,
147 __check_gt, __check_le, __check_al, __check_al
148 };
149
150 int show_unhandled_signals = 0;
151
dump_kernel_instr(const char * lvl,struct pt_regs * regs)152 static void dump_kernel_instr(const char *lvl, struct pt_regs *regs)
153 {
154 unsigned long addr = instruction_pointer(regs);
155 char str[sizeof("00000000 ") * 5 + 2 + 1], *p = str;
156 int i;
157
158 if (user_mode(regs))
159 return;
160
161 for (i = -4; i < 1; i++) {
162 unsigned int val, bad;
163
164 bad = aarch64_insn_read(&((u32 *)addr)[i], &val);
165
166 if (!bad)
167 p += sprintf(p, i == 0 ? "(%08x) " : "%08x ", val);
168 else
169 p += sprintf(p, i == 0 ? "(????????) " : "???????? ");
170 }
171
172 printk("%sCode: %s\n", lvl, str);
173 }
174
175 #ifdef CONFIG_PREEMPT
176 #define S_PREEMPT " PREEMPT"
177 #elif defined(CONFIG_PREEMPT_RT)
178 #define S_PREEMPT " PREEMPT_RT"
179 #else
180 #define S_PREEMPT ""
181 #endif
182
183 #define S_SMP " SMP"
184
__die(const char * str,long err,struct pt_regs * regs)185 static int __die(const char *str, long err, struct pt_regs *regs)
186 {
187 static int die_counter;
188 int ret;
189
190 pr_emerg("Internal error: %s: %016lx [#%d]" S_PREEMPT S_SMP "\n",
191 str, err, ++die_counter);
192
193 /* trap and error numbers are mostly meaningless on ARM */
194 ret = notify_die(DIE_OOPS, str, regs, err, 0, SIGSEGV);
195 if (ret == NOTIFY_STOP)
196 return ret;
197
198 print_modules();
199 show_regs(regs);
200
201 dump_kernel_instr(KERN_EMERG, regs);
202
203 return ret;
204 }
205
206 static DEFINE_RAW_SPINLOCK(die_lock);
207
208 /*
209 * This function is protected against re-entrancy.
210 */
die(const char * str,struct pt_regs * regs,long err)211 void die(const char *str, struct pt_regs *regs, long err)
212 {
213 int ret;
214 unsigned long flags;
215
216 raw_spin_lock_irqsave(&die_lock, flags);
217
218 oops_enter();
219
220 console_verbose();
221 bust_spinlocks(1);
222 ret = __die(str, err, regs);
223
224 if (regs && kexec_should_crash(current))
225 crash_kexec(regs);
226
227 bust_spinlocks(0);
228 add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE);
229 oops_exit();
230
231 if (in_interrupt())
232 panic("%s: Fatal exception in interrupt", str);
233 if (panic_on_oops)
234 panic("%s: Fatal exception", str);
235
236 raw_spin_unlock_irqrestore(&die_lock, flags);
237
238 if (ret != NOTIFY_STOP)
239 make_task_dead(SIGSEGV);
240 }
241
arm64_show_signal(int signo,const char * str)242 static void arm64_show_signal(int signo, const char *str)
243 {
244 static DEFINE_RATELIMIT_STATE(rs, DEFAULT_RATELIMIT_INTERVAL,
245 DEFAULT_RATELIMIT_BURST);
246 struct task_struct *tsk = current;
247 unsigned long esr = tsk->thread.fault_code;
248 struct pt_regs *regs = task_pt_regs(tsk);
249
250 /* Leave if the signal won't be shown */
251 if (!show_unhandled_signals ||
252 !unhandled_signal(tsk, signo) ||
253 !__ratelimit(&rs))
254 return;
255
256 pr_info("%s[%d]: unhandled exception: ", tsk->comm, task_pid_nr(tsk));
257 if (esr)
258 pr_cont("%s, ESR 0x%016lx, ", esr_get_class_string(esr), esr);
259
260 pr_cont("%s", str);
261 print_vma_addr(KERN_CONT " in ", regs->pc);
262 pr_cont("\n");
263 __show_regs(regs);
264 }
265
arm64_force_sig_fault(int signo,int code,unsigned long far,const char * str)266 void arm64_force_sig_fault(int signo, int code, unsigned long far,
267 const char *str)
268 {
269 arm64_show_signal(signo, str);
270 if (signo == SIGKILL)
271 force_sig(SIGKILL);
272 else
273 force_sig_fault(signo, code, (void __user *)far);
274 }
275
arm64_force_sig_fault_pkey(unsigned long far,const char * str,int pkey)276 void arm64_force_sig_fault_pkey(unsigned long far, const char *str, int pkey)
277 {
278 arm64_show_signal(SIGSEGV, str);
279 force_sig_pkuerr((void __user *)far, pkey);
280 }
281
arm64_force_sig_mceerr(int code,unsigned long far,short lsb,const char * str)282 void arm64_force_sig_mceerr(int code, unsigned long far, short lsb,
283 const char *str)
284 {
285 arm64_show_signal(SIGBUS, str);
286 force_sig_mceerr(code, (void __user *)far, lsb);
287 }
288
arm64_force_sig_ptrace_errno_trap(int errno,unsigned long far,const char * str)289 void arm64_force_sig_ptrace_errno_trap(int errno, unsigned long far,
290 const char *str)
291 {
292 arm64_show_signal(SIGTRAP, str);
293 force_sig_ptrace_errno_trap(errno, (void __user *)far);
294 }
295
arm64_notify_die(const char * str,struct pt_regs * regs,int signo,int sicode,unsigned long far,unsigned long err)296 void arm64_notify_die(const char *str, struct pt_regs *regs,
297 int signo, int sicode, unsigned long far,
298 unsigned long err)
299 {
300 if (user_mode(regs)) {
301 WARN_ON(regs != current_pt_regs());
302 current->thread.fault_address = 0;
303 current->thread.fault_code = err;
304
305 arm64_force_sig_fault(signo, sicode, far, str);
306 } else {
307 die(str, regs, err);
308 }
309 }
310
311 #ifdef CONFIG_COMPAT
312 #define PSTATE_IT_1_0_SHIFT 25
313 #define PSTATE_IT_1_0_MASK (0x3 << PSTATE_IT_1_0_SHIFT)
314 #define PSTATE_IT_7_2_SHIFT 10
315 #define PSTATE_IT_7_2_MASK (0x3f << PSTATE_IT_7_2_SHIFT)
316
compat_get_it_state(struct pt_regs * regs)317 static u32 compat_get_it_state(struct pt_regs *regs)
318 {
319 u32 it, pstate = regs->pstate;
320
321 it = (pstate & PSTATE_IT_1_0_MASK) >> PSTATE_IT_1_0_SHIFT;
322 it |= ((pstate & PSTATE_IT_7_2_MASK) >> PSTATE_IT_7_2_SHIFT) << 2;
323
324 return it;
325 }
326
compat_set_it_state(struct pt_regs * regs,u32 it)327 static void compat_set_it_state(struct pt_regs *regs, u32 it)
328 {
329 u32 pstate_it;
330
331 pstate_it = (it << PSTATE_IT_1_0_SHIFT) & PSTATE_IT_1_0_MASK;
332 pstate_it |= ((it >> 2) << PSTATE_IT_7_2_SHIFT) & PSTATE_IT_7_2_MASK;
333
334 regs->pstate &= ~PSR_AA32_IT_MASK;
335 regs->pstate |= pstate_it;
336 }
337
advance_itstate(struct pt_regs * regs)338 static void advance_itstate(struct pt_regs *regs)
339 {
340 u32 it;
341
342 /* ARM mode */
343 if (!(regs->pstate & PSR_AA32_T_BIT) ||
344 !(regs->pstate & PSR_AA32_IT_MASK))
345 return;
346
347 it = compat_get_it_state(regs);
348
349 /*
350 * If this is the last instruction of the block, wipe the IT
351 * state. Otherwise advance it.
352 */
353 if (!(it & 7))
354 it = 0;
355 else
356 it = (it & 0xe0) | ((it << 1) & 0x1f);
357
358 compat_set_it_state(regs, it);
359 }
360 #else
advance_itstate(struct pt_regs * regs)361 static void advance_itstate(struct pt_regs *regs)
362 {
363 }
364 #endif
365
arm64_skip_faulting_instruction(struct pt_regs * regs,unsigned long size)366 void arm64_skip_faulting_instruction(struct pt_regs *regs, unsigned long size)
367 {
368 regs->pc += size;
369
370 /*
371 * If we were single stepping, we want to get the step exception after
372 * we return from the trap.
373 */
374 if (user_mode(regs))
375 user_fastforward_single_step(current);
376
377 if (compat_user_mode(regs))
378 advance_itstate(regs);
379 else
380 regs->pstate &= ~PSR_BTYPE_MASK;
381 }
382
user_insn_read(struct pt_regs * regs,u32 * insnp)383 static int user_insn_read(struct pt_regs *regs, u32 *insnp)
384 {
385 u32 instr;
386 unsigned long pc = instruction_pointer(regs);
387
388 if (compat_thumb_mode(regs)) {
389 /* 16-bit Thumb instruction */
390 __le16 instr_le;
391 if (get_user(instr_le, (__le16 __user *)pc))
392 return -EFAULT;
393 instr = le16_to_cpu(instr_le);
394 if (aarch32_insn_is_wide(instr)) {
395 u32 instr2;
396
397 if (get_user(instr_le, (__le16 __user *)(pc + 2)))
398 return -EFAULT;
399 instr2 = le16_to_cpu(instr_le);
400 instr = (instr << 16) | instr2;
401 }
402 } else {
403 /* 32-bit ARM instruction */
404 __le32 instr_le;
405 if (get_user(instr_le, (__le32 __user *)pc))
406 return -EFAULT;
407 instr = le32_to_cpu(instr_le);
408 }
409
410 *insnp = instr;
411 return 0;
412 }
413
force_signal_inject(int signal,int code,unsigned long address,unsigned long err)414 void force_signal_inject(int signal, int code, unsigned long address, unsigned long err)
415 {
416 const char *desc;
417 struct pt_regs *regs = current_pt_regs();
418
419 if (WARN_ON(!user_mode(regs)))
420 return;
421
422 switch (signal) {
423 case SIGILL:
424 desc = "undefined instruction";
425 break;
426 case SIGSEGV:
427 desc = "illegal memory access";
428 break;
429 default:
430 desc = "unknown or unrecoverable error";
431 break;
432 }
433
434 /* Force signals we don't understand to SIGKILL */
435 if (WARN_ON(signal != SIGKILL &&
436 siginfo_layout(signal, code) != SIL_FAULT)) {
437 signal = SIGKILL;
438 }
439
440 arm64_notify_die(desc, regs, signal, code, address, err);
441 }
442
443 /*
444 * Set up process info to signal segmentation fault - called on access error.
445 */
arm64_notify_segfault(unsigned long addr)446 void arm64_notify_segfault(unsigned long addr)
447 {
448 int code;
449
450 mmap_read_lock(current->mm);
451 if (find_vma(current->mm, untagged_addr(addr)) == NULL)
452 code = SEGV_MAPERR;
453 else
454 code = SEGV_ACCERR;
455 mmap_read_unlock(current->mm);
456
457 force_signal_inject(SIGSEGV, code, addr, 0);
458 }
459
do_el0_undef(struct pt_regs * regs,unsigned long esr)460 void do_el0_undef(struct pt_regs *regs, unsigned long esr)
461 {
462 u32 insn;
463
464 /* check for AArch32 breakpoint instructions */
465 if (!aarch32_break_handler(regs))
466 return;
467
468 if (user_insn_read(regs, &insn))
469 goto out_err;
470
471 if (try_emulate_mrs(regs, insn))
472 return;
473
474 if (try_emulate_armv8_deprecated(regs, insn))
475 return;
476
477 out_err:
478 force_signal_inject(SIGILL, ILL_ILLOPC, regs->pc, 0);
479 }
480
do_el1_undef(struct pt_regs * regs,unsigned long esr)481 void do_el1_undef(struct pt_regs *regs, unsigned long esr)
482 {
483 u32 insn;
484
485 if (aarch64_insn_read((void *)regs->pc, &insn))
486 goto out_err;
487
488 if (try_emulate_el1_ssbs(regs, insn))
489 return;
490
491 out_err:
492 die("Oops - Undefined instruction", regs, esr);
493 }
494
do_el0_bti(struct pt_regs * regs)495 void do_el0_bti(struct pt_regs *regs)
496 {
497 force_signal_inject(SIGILL, ILL_ILLOPC, regs->pc, 0);
498 }
499
do_el1_bti(struct pt_regs * regs,unsigned long esr)500 void do_el1_bti(struct pt_regs *regs, unsigned long esr)
501 {
502 if (efi_runtime_fixup_exception(regs, "BTI violation")) {
503 regs->pstate &= ~PSR_BTYPE_MASK;
504 return;
505 }
506 die("Oops - BTI", regs, esr);
507 }
508
do_el0_fpac(struct pt_regs * regs,unsigned long esr)509 void do_el0_fpac(struct pt_regs *regs, unsigned long esr)
510 {
511 force_signal_inject(SIGILL, ILL_ILLOPN, regs->pc, esr);
512 }
513
do_el1_fpac(struct pt_regs * regs,unsigned long esr)514 void do_el1_fpac(struct pt_regs *regs, unsigned long esr)
515 {
516 /*
517 * Unexpected FPAC exception in the kernel: kill the task before it
518 * does any more harm.
519 */
520 die("Oops - FPAC", regs, esr);
521 }
522
do_el0_mops(struct pt_regs * regs,unsigned long esr)523 void do_el0_mops(struct pt_regs *regs, unsigned long esr)
524 {
525 arm64_mops_reset_regs(®s->user_regs, esr);
526
527 /*
528 * If single stepping then finish the step before executing the
529 * prologue instruction.
530 */
531 user_fastforward_single_step(current);
532 }
533
534 #define __user_cache_maint(insn, address, res) \
535 if (address >= TASK_SIZE_MAX) { \
536 res = -EFAULT; \
537 } else { \
538 uaccess_ttbr0_enable(); \
539 asm volatile ( \
540 "1: " insn ", %1\n" \
541 " mov %w0, #0\n" \
542 "2:\n" \
543 _ASM_EXTABLE_UACCESS_ERR(1b, 2b, %w0) \
544 : "=r" (res) \
545 : "r" (address)); \
546 uaccess_ttbr0_disable(); \
547 }
548
user_cache_maint_handler(unsigned long esr,struct pt_regs * regs)549 static void user_cache_maint_handler(unsigned long esr, struct pt_regs *regs)
550 {
551 unsigned long tagged_address, address;
552 int rt = ESR_ELx_SYS64_ISS_RT(esr);
553 int crm = (esr & ESR_ELx_SYS64_ISS_CRM_MASK) >> ESR_ELx_SYS64_ISS_CRM_SHIFT;
554 int ret = 0;
555
556 tagged_address = pt_regs_read_reg(regs, rt);
557 address = untagged_addr(tagged_address);
558
559 switch (crm) {
560 case ESR_ELx_SYS64_ISS_CRM_DC_CVAU: /* DC CVAU, gets promoted */
561 __user_cache_maint("dc civac", address, ret);
562 break;
563 case ESR_ELx_SYS64_ISS_CRM_DC_CVAC: /* DC CVAC, gets promoted */
564 __user_cache_maint("dc civac", address, ret);
565 break;
566 case ESR_ELx_SYS64_ISS_CRM_DC_CVADP: /* DC CVADP */
567 __user_cache_maint("sys 3, c7, c13, 1", address, ret);
568 break;
569 case ESR_ELx_SYS64_ISS_CRM_DC_CVAP: /* DC CVAP */
570 __user_cache_maint("sys 3, c7, c12, 1", address, ret);
571 break;
572 case ESR_ELx_SYS64_ISS_CRM_DC_CIVAC: /* DC CIVAC */
573 __user_cache_maint("dc civac", address, ret);
574 break;
575 case ESR_ELx_SYS64_ISS_CRM_IC_IVAU: /* IC IVAU */
576 __user_cache_maint("ic ivau", address, ret);
577 break;
578 default:
579 force_signal_inject(SIGILL, ILL_ILLOPC, regs->pc, 0);
580 return;
581 }
582
583 if (ret)
584 arm64_notify_segfault(tagged_address);
585 else
586 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
587 }
588
ctr_read_handler(unsigned long esr,struct pt_regs * regs)589 static void ctr_read_handler(unsigned long esr, struct pt_regs *regs)
590 {
591 int rt = ESR_ELx_SYS64_ISS_RT(esr);
592 unsigned long val = arm64_ftr_reg_user_value(&arm64_ftr_reg_ctrel0);
593
594 if (cpus_have_final_cap(ARM64_WORKAROUND_1542419)) {
595 /* Hide DIC so that we can trap the unnecessary maintenance...*/
596 val &= ~BIT(CTR_EL0_DIC_SHIFT);
597
598 /* ... and fake IminLine to reduce the number of traps. */
599 val &= ~CTR_EL0_IminLine_MASK;
600 val |= (PAGE_SHIFT - 2) & CTR_EL0_IminLine_MASK;
601 }
602
603 pt_regs_write_reg(regs, rt, val);
604
605 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
606 }
607
cntvct_read_handler(unsigned long esr,struct pt_regs * regs)608 static void cntvct_read_handler(unsigned long esr, struct pt_regs *regs)
609 {
610 if (test_thread_flag(TIF_TSC_SIGSEGV)) {
611 force_sig(SIGSEGV);
612 } else {
613 int rt = ESR_ELx_SYS64_ISS_RT(esr);
614
615 pt_regs_write_reg(regs, rt, arch_timer_read_counter());
616 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
617 }
618 }
619
cntfrq_read_handler(unsigned long esr,struct pt_regs * regs)620 static void cntfrq_read_handler(unsigned long esr, struct pt_regs *regs)
621 {
622 if (test_thread_flag(TIF_TSC_SIGSEGV)) {
623 force_sig(SIGSEGV);
624 } else {
625 int rt = ESR_ELx_SYS64_ISS_RT(esr);
626
627 pt_regs_write_reg(regs, rt, arch_timer_get_rate());
628 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
629 }
630 }
631
mrs_handler(unsigned long esr,struct pt_regs * regs)632 static void mrs_handler(unsigned long esr, struct pt_regs *regs)
633 {
634 u32 sysreg, rt;
635
636 rt = ESR_ELx_SYS64_ISS_RT(esr);
637 sysreg = esr_sys64_to_sysreg(esr);
638
639 if (do_emulate_mrs(regs, sysreg, rt) != 0)
640 force_signal_inject(SIGILL, ILL_ILLOPC, regs->pc, 0);
641 }
642
wfi_handler(unsigned long esr,struct pt_regs * regs)643 static void wfi_handler(unsigned long esr, struct pt_regs *regs)
644 {
645 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
646 }
647
648 struct sys64_hook {
649 unsigned long esr_mask;
650 unsigned long esr_val;
651 void (*handler)(unsigned long esr, struct pt_regs *regs);
652 };
653
654 static const struct sys64_hook sys64_hooks[] = {
655 {
656 .esr_mask = ESR_ELx_SYS64_ISS_EL0_CACHE_OP_MASK,
657 .esr_val = ESR_ELx_SYS64_ISS_EL0_CACHE_OP_VAL,
658 .handler = user_cache_maint_handler,
659 },
660 {
661 /* Trap read access to CTR_EL0 */
662 .esr_mask = ESR_ELx_SYS64_ISS_SYS_OP_MASK,
663 .esr_val = ESR_ELx_SYS64_ISS_SYS_CTR_READ,
664 .handler = ctr_read_handler,
665 },
666 {
667 /* Trap read access to CNTVCT_EL0 */
668 .esr_mask = ESR_ELx_SYS64_ISS_SYS_OP_MASK,
669 .esr_val = ESR_ELx_SYS64_ISS_SYS_CNTVCT,
670 .handler = cntvct_read_handler,
671 },
672 {
673 /* Trap read access to CNTVCTSS_EL0 */
674 .esr_mask = ESR_ELx_SYS64_ISS_SYS_OP_MASK,
675 .esr_val = ESR_ELx_SYS64_ISS_SYS_CNTVCTSS,
676 .handler = cntvct_read_handler,
677 },
678 {
679 /* Trap read access to CNTFRQ_EL0 */
680 .esr_mask = ESR_ELx_SYS64_ISS_SYS_OP_MASK,
681 .esr_val = ESR_ELx_SYS64_ISS_SYS_CNTFRQ,
682 .handler = cntfrq_read_handler,
683 },
684 {
685 /* Trap read access to CPUID registers */
686 .esr_mask = ESR_ELx_SYS64_ISS_SYS_MRS_OP_MASK,
687 .esr_val = ESR_ELx_SYS64_ISS_SYS_MRS_OP_VAL,
688 .handler = mrs_handler,
689 },
690 {
691 /* Trap WFI instructions executed in userspace */
692 .esr_mask = ESR_ELx_WFx_MASK,
693 .esr_val = ESR_ELx_WFx_WFI_VAL,
694 .handler = wfi_handler,
695 },
696 {},
697 };
698
699 #ifdef CONFIG_COMPAT
cp15_cond_valid(unsigned long esr,struct pt_regs * regs)700 static bool cp15_cond_valid(unsigned long esr, struct pt_regs *regs)
701 {
702 int cond;
703
704 /* Only a T32 instruction can trap without CV being set */
705 if (!(esr & ESR_ELx_CV)) {
706 u32 it;
707
708 it = compat_get_it_state(regs);
709 if (!it)
710 return true;
711
712 cond = it >> 4;
713 } else {
714 cond = (esr & ESR_ELx_COND_MASK) >> ESR_ELx_COND_SHIFT;
715 }
716
717 return aarch32_opcode_cond_checks[cond](regs->pstate);
718 }
719
compat_cntfrq_read_handler(unsigned long esr,struct pt_regs * regs)720 static void compat_cntfrq_read_handler(unsigned long esr, struct pt_regs *regs)
721 {
722 int reg = (esr & ESR_ELx_CP15_32_ISS_RT_MASK) >> ESR_ELx_CP15_32_ISS_RT_SHIFT;
723
724 pt_regs_write_reg(regs, reg, arch_timer_get_rate());
725 arm64_skip_faulting_instruction(regs, 4);
726 }
727
728 static const struct sys64_hook cp15_32_hooks[] = {
729 {
730 .esr_mask = ESR_ELx_CP15_32_ISS_SYS_MASK,
731 .esr_val = ESR_ELx_CP15_32_ISS_SYS_CNTFRQ,
732 .handler = compat_cntfrq_read_handler,
733 },
734 {},
735 };
736
compat_cntvct_read_handler(unsigned long esr,struct pt_regs * regs)737 static void compat_cntvct_read_handler(unsigned long esr, struct pt_regs *regs)
738 {
739 int rt = (esr & ESR_ELx_CP15_64_ISS_RT_MASK) >> ESR_ELx_CP15_64_ISS_RT_SHIFT;
740 int rt2 = (esr & ESR_ELx_CP15_64_ISS_RT2_MASK) >> ESR_ELx_CP15_64_ISS_RT2_SHIFT;
741 u64 val = arch_timer_read_counter();
742
743 pt_regs_write_reg(regs, rt, lower_32_bits(val));
744 pt_regs_write_reg(regs, rt2, upper_32_bits(val));
745 arm64_skip_faulting_instruction(regs, 4);
746 }
747
748 static const struct sys64_hook cp15_64_hooks[] = {
749 {
750 .esr_mask = ESR_ELx_CP15_64_ISS_SYS_MASK,
751 .esr_val = ESR_ELx_CP15_64_ISS_SYS_CNTVCT,
752 .handler = compat_cntvct_read_handler,
753 },
754 {
755 .esr_mask = ESR_ELx_CP15_64_ISS_SYS_MASK,
756 .esr_val = ESR_ELx_CP15_64_ISS_SYS_CNTVCTSS,
757 .handler = compat_cntvct_read_handler,
758 },
759 {},
760 };
761
do_el0_cp15(unsigned long esr,struct pt_regs * regs)762 void do_el0_cp15(unsigned long esr, struct pt_regs *regs)
763 {
764 const struct sys64_hook *hook, *hook_base;
765
766 if (!cp15_cond_valid(esr, regs)) {
767 /*
768 * There is no T16 variant of a CP access, so we
769 * always advance PC by 4 bytes.
770 */
771 arm64_skip_faulting_instruction(regs, 4);
772 return;
773 }
774
775 switch (ESR_ELx_EC(esr)) {
776 case ESR_ELx_EC_CP15_32:
777 hook_base = cp15_32_hooks;
778 break;
779 case ESR_ELx_EC_CP15_64:
780 hook_base = cp15_64_hooks;
781 break;
782 default:
783 do_el0_undef(regs, esr);
784 return;
785 }
786
787 for (hook = hook_base; hook->handler; hook++)
788 if ((hook->esr_mask & esr) == hook->esr_val) {
789 hook->handler(esr, regs);
790 return;
791 }
792
793 /*
794 * New cp15 instructions may previously have been undefined at
795 * EL0. Fall back to our usual undefined instruction handler
796 * so that we handle these consistently.
797 */
798 do_el0_undef(regs, esr);
799 }
800 #endif
801
do_el0_sys(unsigned long esr,struct pt_regs * regs)802 void do_el0_sys(unsigned long esr, struct pt_regs *regs)
803 {
804 const struct sys64_hook *hook;
805
806 for (hook = sys64_hooks; hook->handler; hook++)
807 if ((hook->esr_mask & esr) == hook->esr_val) {
808 hook->handler(esr, regs);
809 return;
810 }
811
812 /*
813 * New SYS instructions may previously have been undefined at EL0. Fall
814 * back to our usual undefined instruction handler so that we handle
815 * these consistently.
816 */
817 do_el0_undef(regs, esr);
818 }
819
820 static const char *esr_class_str[] = {
821 [0 ... ESR_ELx_EC_MAX] = "UNRECOGNIZED EC",
822 [ESR_ELx_EC_UNKNOWN] = "Unknown/Uncategorized",
823 [ESR_ELx_EC_WFx] = "WFI/WFE",
824 [ESR_ELx_EC_CP15_32] = "CP15 MCR/MRC",
825 [ESR_ELx_EC_CP15_64] = "CP15 MCRR/MRRC",
826 [ESR_ELx_EC_CP14_MR] = "CP14 MCR/MRC",
827 [ESR_ELx_EC_CP14_LS] = "CP14 LDC/STC",
828 [ESR_ELx_EC_FP_ASIMD] = "ASIMD",
829 [ESR_ELx_EC_CP10_ID] = "CP10 MRC/VMRS",
830 [ESR_ELx_EC_PAC] = "PAC",
831 [ESR_ELx_EC_CP14_64] = "CP14 MCRR/MRRC",
832 [ESR_ELx_EC_BTI] = "BTI",
833 [ESR_ELx_EC_ILL] = "PSTATE.IL",
834 [ESR_ELx_EC_SVC32] = "SVC (AArch32)",
835 [ESR_ELx_EC_HVC32] = "HVC (AArch32)",
836 [ESR_ELx_EC_SMC32] = "SMC (AArch32)",
837 [ESR_ELx_EC_SVC64] = "SVC (AArch64)",
838 [ESR_ELx_EC_HVC64] = "HVC (AArch64)",
839 [ESR_ELx_EC_SMC64] = "SMC (AArch64)",
840 [ESR_ELx_EC_SYS64] = "MSR/MRS (AArch64)",
841 [ESR_ELx_EC_SVE] = "SVE",
842 [ESR_ELx_EC_ERET] = "ERET/ERETAA/ERETAB",
843 [ESR_ELx_EC_FPAC] = "FPAC",
844 [ESR_ELx_EC_SME] = "SME",
845 [ESR_ELx_EC_IMP_DEF] = "EL3 IMP DEF",
846 [ESR_ELx_EC_IABT_LOW] = "IABT (lower EL)",
847 [ESR_ELx_EC_IABT_CUR] = "IABT (current EL)",
848 [ESR_ELx_EC_PC_ALIGN] = "PC Alignment",
849 [ESR_ELx_EC_DABT_LOW] = "DABT (lower EL)",
850 [ESR_ELx_EC_DABT_CUR] = "DABT (current EL)",
851 [ESR_ELx_EC_SP_ALIGN] = "SP Alignment",
852 [ESR_ELx_EC_MOPS] = "MOPS",
853 [ESR_ELx_EC_FP_EXC32] = "FP (AArch32)",
854 [ESR_ELx_EC_FP_EXC64] = "FP (AArch64)",
855 [ESR_ELx_EC_SERROR] = "SError",
856 [ESR_ELx_EC_BREAKPT_LOW] = "Breakpoint (lower EL)",
857 [ESR_ELx_EC_BREAKPT_CUR] = "Breakpoint (current EL)",
858 [ESR_ELx_EC_SOFTSTP_LOW] = "Software Step (lower EL)",
859 [ESR_ELx_EC_SOFTSTP_CUR] = "Software Step (current EL)",
860 [ESR_ELx_EC_WATCHPT_LOW] = "Watchpoint (lower EL)",
861 [ESR_ELx_EC_WATCHPT_CUR] = "Watchpoint (current EL)",
862 [ESR_ELx_EC_BKPT32] = "BKPT (AArch32)",
863 [ESR_ELx_EC_VECTOR32] = "Vector catch (AArch32)",
864 [ESR_ELx_EC_BRK64] = "BRK (AArch64)",
865 };
866
esr_get_class_string(unsigned long esr)867 const char *esr_get_class_string(unsigned long esr)
868 {
869 return esr_class_str[ESR_ELx_EC(esr)];
870 }
871
872 /*
873 * bad_el0_sync handles unexpected, but potentially recoverable synchronous
874 * exceptions taken from EL0.
875 */
bad_el0_sync(struct pt_regs * regs,int reason,unsigned long esr)876 void bad_el0_sync(struct pt_regs *regs, int reason, unsigned long esr)
877 {
878 unsigned long pc = instruction_pointer(regs);
879
880 current->thread.fault_address = 0;
881 current->thread.fault_code = esr;
882
883 arm64_force_sig_fault(SIGILL, ILL_ILLOPC, pc,
884 "Bad EL0 synchronous exception");
885 }
886
887 #ifdef CONFIG_VMAP_STACK
888
889 DEFINE_PER_CPU(unsigned long [OVERFLOW_STACK_SIZE/sizeof(long)], overflow_stack)
890 __aligned(16);
891
panic_bad_stack(struct pt_regs * regs,unsigned long esr,unsigned long far)892 void __noreturn panic_bad_stack(struct pt_regs *regs, unsigned long esr, unsigned long far)
893 {
894 unsigned long tsk_stk = (unsigned long)current->stack;
895 unsigned long irq_stk = (unsigned long)this_cpu_read(irq_stack_ptr);
896 unsigned long ovf_stk = (unsigned long)this_cpu_ptr(overflow_stack);
897
898 console_verbose();
899 pr_emerg("Insufficient stack space to handle exception!");
900
901 pr_emerg("ESR: 0x%016lx -- %s\n", esr, esr_get_class_string(esr));
902 pr_emerg("FAR: 0x%016lx\n", far);
903
904 pr_emerg("Task stack: [0x%016lx..0x%016lx]\n",
905 tsk_stk, tsk_stk + THREAD_SIZE);
906 pr_emerg("IRQ stack: [0x%016lx..0x%016lx]\n",
907 irq_stk, irq_stk + IRQ_STACK_SIZE);
908 pr_emerg("Overflow stack: [0x%016lx..0x%016lx]\n",
909 ovf_stk, ovf_stk + OVERFLOW_STACK_SIZE);
910
911 __show_regs(regs);
912
913 /*
914 * We use nmi_panic to limit the potential for recusive overflows, and
915 * to get a better stack trace.
916 */
917 nmi_panic(NULL, "kernel stack overflow");
918 cpu_park_loop();
919 }
920 #endif
921
arm64_serror_panic(struct pt_regs * regs,unsigned long esr)922 void __noreturn arm64_serror_panic(struct pt_regs *regs, unsigned long esr)
923 {
924 console_verbose();
925
926 pr_crit("SError Interrupt on CPU%d, code 0x%016lx -- %s\n",
927 smp_processor_id(), esr, esr_get_class_string(esr));
928 if (regs)
929 __show_regs(regs);
930
931 nmi_panic(regs, "Asynchronous SError Interrupt");
932
933 cpu_park_loop();
934 }
935
arm64_is_fatal_ras_serror(struct pt_regs * regs,unsigned long esr)936 bool arm64_is_fatal_ras_serror(struct pt_regs *regs, unsigned long esr)
937 {
938 unsigned long aet = arm64_ras_serror_get_severity(esr);
939
940 switch (aet) {
941 case ESR_ELx_AET_CE: /* corrected error */
942 case ESR_ELx_AET_UEO: /* restartable, not yet consumed */
943 /*
944 * The CPU can make progress. We may take UEO again as
945 * a more severe error.
946 */
947 return false;
948
949 case ESR_ELx_AET_UEU: /* Uncorrected Unrecoverable */
950 case ESR_ELx_AET_UER: /* Uncorrected Recoverable */
951 /*
952 * The CPU can't make progress. The exception may have
953 * been imprecise.
954 *
955 * Neoverse-N1 #1349291 means a non-KVM SError reported as
956 * Unrecoverable should be treated as Uncontainable. We
957 * call arm64_serror_panic() in both cases.
958 */
959 return true;
960
961 case ESR_ELx_AET_UC: /* Uncontainable or Uncategorized error */
962 default:
963 /* Error has been silently propagated */
964 arm64_serror_panic(regs, esr);
965 }
966 }
967
do_serror(struct pt_regs * regs,unsigned long esr)968 void do_serror(struct pt_regs *regs, unsigned long esr)
969 {
970 /* non-RAS errors are not containable */
971 if (!arm64_is_ras_serror(esr) || arm64_is_fatal_ras_serror(regs, esr))
972 arm64_serror_panic(regs, esr);
973 }
974
975 /* GENERIC_BUG traps */
976 #ifdef CONFIG_GENERIC_BUG
is_valid_bugaddr(unsigned long addr)977 int is_valid_bugaddr(unsigned long addr)
978 {
979 /*
980 * bug_handler() only called for BRK #BUG_BRK_IMM.
981 * So the answer is trivial -- any spurious instances with no
982 * bug table entry will be rejected by report_bug() and passed
983 * back to the debug-monitors code and handled as a fatal
984 * unexpected debug exception.
985 */
986 return 1;
987 }
988 #endif
989
bug_handler(struct pt_regs * regs,unsigned long esr)990 static int bug_handler(struct pt_regs *regs, unsigned long esr)
991 {
992 switch (report_bug(regs->pc, regs)) {
993 case BUG_TRAP_TYPE_BUG:
994 die("Oops - BUG", regs, esr);
995 break;
996
997 case BUG_TRAP_TYPE_WARN:
998 break;
999
1000 default:
1001 /* unknown/unrecognised bug trap type */
1002 return DBG_HOOK_ERROR;
1003 }
1004
1005 /* If thread survives, skip over the BUG instruction and continue: */
1006 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
1007 return DBG_HOOK_HANDLED;
1008 }
1009
1010 static struct break_hook bug_break_hook = {
1011 .fn = bug_handler,
1012 .imm = BUG_BRK_IMM,
1013 };
1014
1015 #ifdef CONFIG_CFI_CLANG
cfi_handler(struct pt_regs * regs,unsigned long esr)1016 static int cfi_handler(struct pt_regs *regs, unsigned long esr)
1017 {
1018 unsigned long target;
1019 u32 type;
1020
1021 target = pt_regs_read_reg(regs, FIELD_GET(CFI_BRK_IMM_TARGET, esr));
1022 type = (u32)pt_regs_read_reg(regs, FIELD_GET(CFI_BRK_IMM_TYPE, esr));
1023
1024 switch (report_cfi_failure(regs, regs->pc, &target, type)) {
1025 case BUG_TRAP_TYPE_BUG:
1026 die("Oops - CFI", regs, esr);
1027 break;
1028
1029 case BUG_TRAP_TYPE_WARN:
1030 break;
1031
1032 default:
1033 return DBG_HOOK_ERROR;
1034 }
1035
1036 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
1037 return DBG_HOOK_HANDLED;
1038 }
1039
1040 static struct break_hook cfi_break_hook = {
1041 .fn = cfi_handler,
1042 .imm = CFI_BRK_IMM_BASE,
1043 .mask = CFI_BRK_IMM_MASK,
1044 };
1045 #endif /* CONFIG_CFI_CLANG */
1046
reserved_fault_handler(struct pt_regs * regs,unsigned long esr)1047 static int reserved_fault_handler(struct pt_regs *regs, unsigned long esr)
1048 {
1049 pr_err("%s generated an invalid instruction at %pS!\n",
1050 "Kernel text patching",
1051 (void *)instruction_pointer(regs));
1052
1053 /* We cannot handle this */
1054 return DBG_HOOK_ERROR;
1055 }
1056
1057 static struct break_hook fault_break_hook = {
1058 .fn = reserved_fault_handler,
1059 .imm = FAULT_BRK_IMM,
1060 };
1061
1062 #ifdef CONFIG_KASAN_SW_TAGS
1063
1064 #define KASAN_ESR_RECOVER 0x20
1065 #define KASAN_ESR_WRITE 0x10
1066 #define KASAN_ESR_SIZE_MASK 0x0f
1067 #define KASAN_ESR_SIZE(esr) (1 << ((esr) & KASAN_ESR_SIZE_MASK))
1068
kasan_handler(struct pt_regs * regs,unsigned long esr)1069 static int kasan_handler(struct pt_regs *regs, unsigned long esr)
1070 {
1071 bool recover = esr & KASAN_ESR_RECOVER;
1072 bool write = esr & KASAN_ESR_WRITE;
1073 size_t size = KASAN_ESR_SIZE(esr);
1074 void *addr = (void *)regs->regs[0];
1075 u64 pc = regs->pc;
1076
1077 kasan_report(addr, size, write, pc);
1078
1079 /*
1080 * The instrumentation allows to control whether we can proceed after
1081 * a crash was detected. This is done by passing the -recover flag to
1082 * the compiler. Disabling recovery allows to generate more compact
1083 * code.
1084 *
1085 * Unfortunately disabling recovery doesn't work for the kernel right
1086 * now. KASAN reporting is disabled in some contexts (for example when
1087 * the allocator accesses slab object metadata; this is controlled by
1088 * current->kasan_depth). All these accesses are detected by the tool,
1089 * even though the reports for them are not printed.
1090 *
1091 * This is something that might be fixed at some point in the future.
1092 */
1093 if (!recover)
1094 die("Oops - KASAN", regs, esr);
1095
1096 /* If thread survives, skip over the brk instruction and continue: */
1097 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
1098 return DBG_HOOK_HANDLED;
1099 }
1100
1101 static struct break_hook kasan_break_hook = {
1102 .fn = kasan_handler,
1103 .imm = KASAN_BRK_IMM,
1104 .mask = KASAN_BRK_MASK,
1105 };
1106 #endif
1107
1108 #ifdef CONFIG_UBSAN_TRAP
ubsan_handler(struct pt_regs * regs,unsigned long esr)1109 static int ubsan_handler(struct pt_regs *regs, unsigned long esr)
1110 {
1111 die(report_ubsan_failure(regs, esr & UBSAN_BRK_MASK), regs, esr);
1112 return DBG_HOOK_HANDLED;
1113 }
1114
1115 static struct break_hook ubsan_break_hook = {
1116 .fn = ubsan_handler,
1117 .imm = UBSAN_BRK_IMM,
1118 .mask = UBSAN_BRK_MASK,
1119 };
1120 #endif
1121
1122 /*
1123 * Initial handler for AArch64 BRK exceptions
1124 * This handler only used until debug_traps_init().
1125 */
early_brk64(unsigned long addr,unsigned long esr,struct pt_regs * regs)1126 int __init early_brk64(unsigned long addr, unsigned long esr,
1127 struct pt_regs *regs)
1128 {
1129 #ifdef CONFIG_CFI_CLANG
1130 if (esr_is_cfi_brk(esr))
1131 return cfi_handler(regs, esr) != DBG_HOOK_HANDLED;
1132 #endif
1133 #ifdef CONFIG_KASAN_SW_TAGS
1134 if ((esr_brk_comment(esr) & ~KASAN_BRK_MASK) == KASAN_BRK_IMM)
1135 return kasan_handler(regs, esr) != DBG_HOOK_HANDLED;
1136 #endif
1137 #ifdef CONFIG_UBSAN_TRAP
1138 if ((esr_brk_comment(esr) & ~UBSAN_BRK_MASK) == UBSAN_BRK_IMM)
1139 return ubsan_handler(regs, esr) != DBG_HOOK_HANDLED;
1140 #endif
1141 return bug_handler(regs, esr) != DBG_HOOK_HANDLED;
1142 }
1143
trap_init(void)1144 void __init trap_init(void)
1145 {
1146 register_kernel_break_hook(&bug_break_hook);
1147 #ifdef CONFIG_CFI_CLANG
1148 register_kernel_break_hook(&cfi_break_hook);
1149 #endif
1150 register_kernel_break_hook(&fault_break_hook);
1151 #ifdef CONFIG_KASAN_SW_TAGS
1152 register_kernel_break_hook(&kasan_break_hook);
1153 #endif
1154 #ifdef CONFIG_UBSAN_TRAP
1155 register_kernel_break_hook(&ubsan_break_hook);
1156 #endif
1157 debug_traps_init();
1158 }
1159