blob: 835411cab38c0b94ceb6cd66a9943f70e8d772d4 [file] [log] [blame]
Catalin Marinas60ffc302012-03-05 11:49:27 +00001/*
2 * Based on arch/arm/kernel/traps.c
3 *
4 * Copyright (C) 1995-2009 Russell King
5 * Copyright (C) 2012 ARM Ltd.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
Dave P Martin9fb74102015-07-24 16:37:48 +010020#include <linux/bug.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000021#include <linux/signal.h>
22#include <linux/personality.h>
23#include <linux/kallsyms.h>
24#include <linux/spinlock.h>
25#include <linux/uaccess.h>
26#include <linux/hardirq.h>
27#include <linux/kdebug.h>
28#include <linux/module.h>
29#include <linux/kexec.h>
30#include <linux/delay.h>
31#include <linux/init.h>
Ingo Molnar3f07c012017-02-08 18:51:30 +010032#include <linux/sched/signal.h>
Ingo Molnarb17b0152017-02-08 18:51:35 +010033#include <linux/sched/debug.h>
Ingo Molnar68db0cf2017-02-08 18:51:37 +010034#include <linux/sched/task_stack.h>
Mark Rutland872d8322017-07-14 20:30:35 +010035#include <linux/sizes.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000036#include <linux/syscalls.h>
Ingo Molnar589ee622017-02-04 00:16:44 +010037#include <linux/mm_types.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000038
39#include <asm/atomic.h>
Dave P Martin9fb74102015-07-24 16:37:48 +010040#include <asm/bug.h>
James Morse0fbeb312017-11-02 12:12:34 +000041#include <asm/daifflags.h>
Will Deacon1442b6e2013-03-16 08:48:13 +000042#include <asm/debug-monitors.h>
Mark Rutland60a1f022014-11-18 12:16:30 +000043#include <asm/esr.h>
Dave P Martin9fb74102015-07-24 16:37:48 +010044#include <asm/insn.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000045#include <asm/traps.h>
Mark Rutland872d8322017-07-14 20:30:35 +010046#include <asm/smp.h>
Mark Rutlanda9ea0012016-11-03 20:23:05 +000047#include <asm/stack_pointer.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000048#include <asm/stacktrace.h>
49#include <asm/exception.h>
50#include <asm/system_misc.h>
Andre Przywara7dd01ae2016-06-28 18:07:32 +010051#include <asm/sysreg.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000052
53static const char *handler[]= {
54 "Synchronous Abort",
55 "IRQ",
56 "FIQ",
57 "Error"
58};
59
Michael Weiser5ee39a72018-02-01 23:13:38 +010060int show_unhandled_signals = 0;
Catalin Marinas60ffc302012-03-05 11:49:27 +000061
Jungseok Lee9f93f3e2015-10-17 14:28:11 +000062static void dump_backtrace_entry(unsigned long where)
Catalin Marinas60ffc302012-03-05 11:49:27 +000063{
Will Deacona25ffd32017-10-19 13:19:20 +010064 printk(" %pS\n", (void *)where);
Catalin Marinas60ffc302012-03-05 11:49:27 +000065}
66
Mark Rutlandc5cea062016-06-13 11:15:14 +010067static void __dump_instr(const char *lvl, struct pt_regs *regs)
Catalin Marinas60ffc302012-03-05 11:49:27 +000068{
69 unsigned long addr = instruction_pointer(regs);
Catalin Marinas60ffc302012-03-05 11:49:27 +000070 char str[sizeof("00000000 ") * 5 + 2 + 1], *p = str;
71 int i;
72
Catalin Marinas60ffc302012-03-05 11:49:27 +000073 for (i = -4; i < 1; i++) {
74 unsigned int val, bad;
75
Mark Rutland7a7003b2017-11-02 16:12:03 +000076 bad = get_user(val, &((u32 *)addr)[i]);
Catalin Marinas60ffc302012-03-05 11:49:27 +000077
78 if (!bad)
79 p += sprintf(p, i == 0 ? "(%08x) " : "%08x ", val);
80 else {
81 p += sprintf(p, "bad PC value");
82 break;
83 }
84 }
85 printk("%sCode: %s\n", lvl, str);
Mark Rutlandc5cea062016-06-13 11:15:14 +010086}
Catalin Marinas60ffc302012-03-05 11:49:27 +000087
Mark Rutlandc5cea062016-06-13 11:15:14 +010088static void dump_instr(const char *lvl, struct pt_regs *regs)
89{
90 if (!user_mode(regs)) {
91 mm_segment_t fs = get_fs();
92 set_fs(KERNEL_DS);
93 __dump_instr(lvl, regs);
94 set_fs(fs);
95 } else {
96 __dump_instr(lvl, regs);
97 }
Catalin Marinas60ffc302012-03-05 11:49:27 +000098}
99
Kefeng Wang1149aad2017-05-09 09:53:37 +0800100void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk)
Catalin Marinas60ffc302012-03-05 11:49:27 +0000101{
102 struct stackframe frame;
AKASHI Takahiro20380bb2015-12-15 17:33:41 +0900103 int skip;
Catalin Marinas60ffc302012-03-05 11:49:27 +0000104
Mark Rutlandb5e73072016-09-23 17:55:05 +0100105 pr_debug("%s(regs = %p tsk = %p)\n", __func__, regs, tsk);
106
107 if (!tsk)
108 tsk = current;
109
Mark Rutland9bbd4c52016-11-03 20:23:08 +0000110 if (!try_get_task_stack(tsk))
111 return;
112
AKASHI Takahiro20380bb2015-12-15 17:33:41 +0900113 if (tsk == current) {
Catalin Marinas60ffc302012-03-05 11:49:27 +0000114 frame.fp = (unsigned long)__builtin_frame_address(0);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000115 frame.pc = (unsigned long)dump_backtrace;
116 } else {
117 /*
118 * task blocked in __switch_to
119 */
120 frame.fp = thread_saved_fp(tsk);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000121 frame.pc = thread_saved_pc(tsk);
122 }
AKASHI Takahiro20380bb2015-12-15 17:33:41 +0900123#ifdef CONFIG_FUNCTION_GRAPH_TRACER
124 frame.graph = tsk->curr_ret_stack;
125#endif
Catalin Marinas60ffc302012-03-05 11:49:27 +0000126
AKASHI Takahiro20380bb2015-12-15 17:33:41 +0900127 skip = !!regs;
Will Deaconc9cd0ed2015-12-21 16:44:27 +0000128 printk("Call trace:\n");
Will Deacona25ffd32017-10-19 13:19:20 +0100129 do {
AKASHI Takahiro20380bb2015-12-15 17:33:41 +0900130 /* skip until specified stack frame */
131 if (!skip) {
Ard Biesheuvel73267492017-07-22 18:45:33 +0100132 dump_backtrace_entry(frame.pc);
AKASHI Takahiro20380bb2015-12-15 17:33:41 +0900133 } else if (frame.fp == regs->regs[29]) {
134 skip = 0;
135 /*
136 * Mostly, this is the case where this function is
137 * called in panic/abort. As exception handler's
138 * stack frame does not contain the corresponding pc
139 * at which an exception has taken place, use regs->pc
140 * instead.
141 */
142 dump_backtrace_entry(regs->pc);
143 }
Will Deacona25ffd32017-10-19 13:19:20 +0100144 } while (!unwind_frame(tsk, &frame));
Mark Rutland9bbd4c52016-11-03 20:23:08 +0000145
146 put_task_stack(tsk);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000147}
148
Catalin Marinas60ffc302012-03-05 11:49:27 +0000149void show_stack(struct task_struct *tsk, unsigned long *sp)
150{
151 dump_backtrace(NULL, tsk);
152 barrier();
153}
154
155#ifdef CONFIG_PREEMPT
156#define S_PREEMPT " PREEMPT"
157#else
158#define S_PREEMPT ""
159#endif
Catalin Marinas60ffc302012-03-05 11:49:27 +0000160#define S_SMP " SMP"
Catalin Marinas60ffc302012-03-05 11:49:27 +0000161
Mark Rutland876e7a32016-11-03 20:23:06 +0000162static int __die(const char *str, int err, struct pt_regs *regs)
Catalin Marinas60ffc302012-03-05 11:49:27 +0000163{
Mark Rutland876e7a32016-11-03 20:23:06 +0000164 struct task_struct *tsk = current;
Catalin Marinas60ffc302012-03-05 11:49:27 +0000165 static int die_counter;
166 int ret;
167
168 pr_emerg("Internal error: %s: %x [#%d]" S_PREEMPT S_SMP "\n",
169 str, err, ++die_counter);
170
171 /* trap and error numbers are mostly meaningless on ARM */
172 ret = notify_die(DIE_OOPS, str, regs, err, 0, SIGSEGV);
173 if (ret == NOTIFY_STOP)
174 return ret;
175
176 print_modules();
177 __show_regs(regs);
178 pr_emerg("Process %.*s (pid: %d, stack limit = 0x%p)\n",
Mark Rutland876e7a32016-11-03 20:23:06 +0000179 TASK_COMM_LEN, tsk->comm, task_pid_nr(tsk),
180 end_of_stack(tsk));
Catalin Marinas60ffc302012-03-05 11:49:27 +0000181
Mark Rutland7ceb3a12016-06-13 11:15:15 +0100182 if (!user_mode(regs)) {
Catalin Marinas60ffc302012-03-05 11:49:27 +0000183 dump_backtrace(regs, tsk);
184 dump_instr(KERN_EMERG, regs);
185 }
186
187 return ret;
188}
189
190static DEFINE_RAW_SPINLOCK(die_lock);
191
192/*
193 * This function is protected against re-entrancy.
194 */
195void die(const char *str, struct pt_regs *regs, int err)
196{
Catalin Marinas60ffc302012-03-05 11:49:27 +0000197 int ret;
Qiao Zhou6f44a0b2017-07-07 17:29:34 +0800198 unsigned long flags;
199
200 raw_spin_lock_irqsave(&die_lock, flags);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000201
202 oops_enter();
203
Catalin Marinas60ffc302012-03-05 11:49:27 +0000204 console_verbose();
205 bust_spinlocks(1);
Mark Rutland876e7a32016-11-03 20:23:06 +0000206 ret = __die(str, err, regs);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000207
Mark Rutland876e7a32016-11-03 20:23:06 +0000208 if (regs && kexec_should_crash(current))
Catalin Marinas60ffc302012-03-05 11:49:27 +0000209 crash_kexec(regs);
210
211 bust_spinlocks(0);
Rusty Russell373d4d02013-01-21 17:17:39 +1030212 add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000213 oops_exit();
214
215 if (in_interrupt())
216 panic("Fatal exception in interrupt");
217 if (panic_on_oops)
218 panic("Fatal exception");
Qiao Zhou6f44a0b2017-07-07 17:29:34 +0800219
220 raw_spin_unlock_irqrestore(&die_lock, flags);
221
Catalin Marinas60ffc302012-03-05 11:49:27 +0000222 if (ret != NOTIFY_STOP)
223 do_exit(SIGSEGV);
224}
225
Will Deacona1ece822018-02-20 13:46:05 +0000226void arm64_force_sig_info(struct siginfo *info, const char *str,
227 struct task_struct *tsk)
228{
229 unsigned int esr = tsk->thread.fault_code;
230 struct pt_regs *regs = task_pt_regs(tsk);
231
232 if (!unhandled_signal(tsk, info->si_signo))
233 goto send_sig;
234
235 if (!show_unhandled_signals_ratelimited())
236 goto send_sig;
237
238 pr_info("%s[%d]: unhandled exception: ", tsk->comm, task_pid_nr(tsk));
239 if (esr)
240 pr_cont("%s, ESR 0x%08x, ", esr_get_class_string(esr), esr);
241
242 pr_cont("%s", str);
243 print_vma_addr(KERN_CONT " in ", regs->pc);
244 pr_cont("\n");
245 __show_regs(regs);
246
247send_sig:
248 force_sig_info(info->si_signo, info, tsk);
249}
250
Catalin Marinas60ffc302012-03-05 11:49:27 +0000251void arm64_notify_die(const char *str, struct pt_regs *regs,
252 struct siginfo *info, int err)
253{
Catalin Marinas91413002014-04-06 23:04:12 +0100254 if (user_mode(regs)) {
Will Deacona1ece822018-02-20 13:46:05 +0000255 WARN_ON(regs != current_pt_regs());
Catalin Marinas91413002014-04-06 23:04:12 +0100256 current->thread.fault_address = 0;
257 current->thread.fault_code = err;
Will Deacona1ece822018-02-20 13:46:05 +0000258 arm64_force_sig_info(info, str, current);
Catalin Marinas91413002014-04-06 23:04:12 +0100259 } else {
Catalin Marinas60ffc302012-03-05 11:49:27 +0000260 die(str, regs, err);
Catalin Marinas91413002014-04-06 23:04:12 +0100261 }
Catalin Marinas60ffc302012-03-05 11:49:27 +0000262}
263
Julien Thierry6436bee2017-10-25 10:04:33 +0100264void arm64_skip_faulting_instruction(struct pt_regs *regs, unsigned long size)
265{
266 regs->pc += size;
267
268 /*
269 * If we were single stepping, we want to get the step exception after
270 * we return from the trap.
271 */
272 user_fastforward_single_step(current);
273}
274
Punit Agrawal9b79f522014-11-18 11:41:22 +0000275static LIST_HEAD(undef_hook);
276static DEFINE_RAW_SPINLOCK(undef_lock);
277
278void register_undef_hook(struct undef_hook *hook)
279{
280 unsigned long flags;
281
282 raw_spin_lock_irqsave(&undef_lock, flags);
283 list_add(&hook->node, &undef_hook);
284 raw_spin_unlock_irqrestore(&undef_lock, flags);
285}
286
287void unregister_undef_hook(struct undef_hook *hook)
288{
289 unsigned long flags;
290
291 raw_spin_lock_irqsave(&undef_lock, flags);
292 list_del(&hook->node);
293 raw_spin_unlock_irqrestore(&undef_lock, flags);
294}
295
296static int call_undef_hook(struct pt_regs *regs)
297{
298 struct undef_hook *hook;
299 unsigned long flags;
300 u32 instr;
301 int (*fn)(struct pt_regs *regs, u32 instr) = NULL;
302 void __user *pc = (void __user *)instruction_pointer(regs);
303
304 if (!user_mode(regs))
305 return 1;
306
307 if (compat_thumb_mode(regs)) {
308 /* 16-bit Thumb instruction */
Luc Van Oostenryck6cf5d4a2017-06-28 16:55:55 +0200309 __le16 instr_le;
310 if (get_user(instr_le, (__le16 __user *)pc))
Punit Agrawal9b79f522014-11-18 11:41:22 +0000311 goto exit;
Luc Van Oostenryck6cf5d4a2017-06-28 16:55:55 +0200312 instr = le16_to_cpu(instr_le);
Punit Agrawal9b79f522014-11-18 11:41:22 +0000313 if (aarch32_insn_is_wide(instr)) {
314 u32 instr2;
315
Luc Van Oostenryck6cf5d4a2017-06-28 16:55:55 +0200316 if (get_user(instr_le, (__le16 __user *)(pc + 2)))
Punit Agrawal9b79f522014-11-18 11:41:22 +0000317 goto exit;
Luc Van Oostenryck6cf5d4a2017-06-28 16:55:55 +0200318 instr2 = le16_to_cpu(instr_le);
Punit Agrawal9b79f522014-11-18 11:41:22 +0000319 instr = (instr << 16) | instr2;
320 }
321 } else {
322 /* 32-bit ARM instruction */
Luc Van Oostenryck6cf5d4a2017-06-28 16:55:55 +0200323 __le32 instr_le;
324 if (get_user(instr_le, (__le32 __user *)pc))
Punit Agrawal9b79f522014-11-18 11:41:22 +0000325 goto exit;
Luc Van Oostenryck6cf5d4a2017-06-28 16:55:55 +0200326 instr = le32_to_cpu(instr_le);
Punit Agrawal9b79f522014-11-18 11:41:22 +0000327 }
328
329 raw_spin_lock_irqsave(&undef_lock, flags);
330 list_for_each_entry(hook, &undef_hook, node)
331 if ((instr & hook->instr_mask) == hook->instr_val &&
332 (regs->pstate & hook->pstate_mask) == hook->pstate_val)
333 fn = hook->fn;
334
335 raw_spin_unlock_irqrestore(&undef_lock, flags);
336exit:
337 return fn ? fn(regs, instr) : 1;
338}
339
Will Deacon2c9120f32018-02-20 14:16:29 +0000340void force_signal_inject(int signal, int code, unsigned long address)
Catalin Marinas60ffc302012-03-05 11:49:27 +0000341{
342 siginfo_t info;
Andre Przywara390bf172016-06-28 18:07:31 +0100343 const char *desc;
Will Deacon2c9120f32018-02-20 14:16:29 +0000344 struct pt_regs *regs = current_pt_regs();
345
346 clear_siginfo(&info);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000347
Andre Przywara390bf172016-06-28 18:07:31 +0100348 switch (signal) {
349 case SIGILL:
350 desc = "undefined instruction";
351 break;
352 case SIGSEGV:
353 desc = "illegal memory access";
354 break;
355 default:
Dave Martinbc0ee472017-10-31 15:51:05 +0000356 desc = "unknown or unrecoverable error";
Andre Przywara390bf172016-06-28 18:07:31 +0100357 break;
358 }
359
Will Deacona7e6f1c2018-02-20 18:08:40 +0000360 /* Force signals we don't understand to SIGKILL */
361 if (WARN_ON(signal != SIGKILL ||
362 siginfo_layout(signal, code) != SIL_FAULT)) {
363 signal = SIGKILL;
364 }
365
Andre Przywara390bf172016-06-28 18:07:31 +0100366 info.si_signo = signal;
367 info.si_errno = 0;
368 info.si_code = code;
Will Deacon2c9120f32018-02-20 14:16:29 +0000369 info.si_addr = (void __user *)address;
Andre Przywara390bf172016-06-28 18:07:31 +0100370
371 arm64_notify_die(desc, regs, &info, 0);
372}
373
374/*
375 * Set up process info to signal segmentation fault - called on access error.
376 */
Will Deacon2c9120f32018-02-20 14:16:29 +0000377void arm64_notify_segfault(unsigned long addr)
Andre Przywara390bf172016-06-28 18:07:31 +0100378{
379 int code;
380
381 down_read(&current->mm->mmap_sem);
382 if (find_vma(current->mm, addr) == NULL)
383 code = SEGV_MAPERR;
384 else
385 code = SEGV_ACCERR;
386 up_read(&current->mm->mmap_sem);
387
Will Deacon2c9120f32018-02-20 14:16:29 +0000388 force_signal_inject(SIGSEGV, code, addr);
Andre Przywara390bf172016-06-28 18:07:31 +0100389}
390
391asmlinkage void __exception do_undefinstr(struct pt_regs *regs)
392{
Catalin Marinas60ffc302012-03-05 11:49:27 +0000393 /* check for AArch32 breakpoint instructions */
Will Deacon1442b6e2013-03-16 08:48:13 +0000394 if (!aarch32_break_handler(regs))
Catalin Marinas60ffc302012-03-05 11:49:27 +0000395 return;
Catalin Marinas60ffc302012-03-05 11:49:27 +0000396
Punit Agrawal9b79f522014-11-18 11:41:22 +0000397 if (call_undef_hook(regs) == 0)
398 return;
399
Will Deacon2c9120f32018-02-20 14:16:29 +0000400 force_signal_inject(SIGILL, ILL_ILLOPC, regs->pc);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000401}
402
James Morse2a6dcb22016-10-18 11:27:46 +0100403int cpu_enable_cache_maint_trap(void *__unused)
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100404{
405 config_sctlr_el1(SCTLR_EL1_UCI, 0);
James Morse2a6dcb22016-10-18 11:27:46 +0100406 return 0;
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100407}
408
409#define __user_cache_maint(insn, address, res) \
Kristina Martsenko81cddd62017-05-03 16:37:45 +0100410 if (address >= user_addr_max()) { \
Andre Przywara87261d12016-10-19 14:40:54 +0100411 res = -EFAULT; \
Catalin Marinas39bc88e2016-09-02 14:54:03 +0100412 } else { \
413 uaccess_ttbr0_enable(); \
Andre Przywara87261d12016-10-19 14:40:54 +0100414 asm volatile ( \
415 "1: " insn ", %1\n" \
416 " mov %w0, #0\n" \
417 "2:\n" \
418 " .pushsection .fixup,\"ax\"\n" \
419 " .align 2\n" \
420 "3: mov %w0, %w2\n" \
421 " b 2b\n" \
422 " .popsection\n" \
423 _ASM_EXTABLE(1b, 3b) \
424 : "=r" (res) \
Catalin Marinas39bc88e2016-09-02 14:54:03 +0100425 : "r" (address), "i" (-EFAULT)); \
426 uaccess_ttbr0_disable(); \
427 }
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100428
Suzuki K Poulose9dbd5bb2016-09-09 14:07:15 +0100429static void user_cache_maint_handler(unsigned int esr, struct pt_regs *regs)
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100430{
431 unsigned long address;
Suzuki K Poulose9dbd5bb2016-09-09 14:07:15 +0100432 int rt = (esr & ESR_ELx_SYS64_ISS_RT_MASK) >> ESR_ELx_SYS64_ISS_RT_SHIFT;
433 int crm = (esr & ESR_ELx_SYS64_ISS_CRM_MASK) >> ESR_ELx_SYS64_ISS_CRM_SHIFT;
434 int ret = 0;
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100435
Kristina Martsenko81cddd62017-05-03 16:37:45 +0100436 address = untagged_addr(pt_regs_read_reg(regs, rt));
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100437
Suzuki K Poulose9dbd5bb2016-09-09 14:07:15 +0100438 switch (crm) {
439 case ESR_ELx_SYS64_ISS_CRM_DC_CVAU: /* DC CVAU, gets promoted */
440 __user_cache_maint("dc civac", address, ret);
441 break;
442 case ESR_ELx_SYS64_ISS_CRM_DC_CVAC: /* DC CVAC, gets promoted */
443 __user_cache_maint("dc civac", address, ret);
444 break;
Robin Murphye1bc5d12017-07-25 11:55:41 +0100445 case ESR_ELx_SYS64_ISS_CRM_DC_CVAP: /* DC CVAP */
446 __user_cache_maint("sys 3, c7, c12, 1", address, ret);
447 break;
Suzuki K Poulose9dbd5bb2016-09-09 14:07:15 +0100448 case ESR_ELx_SYS64_ISS_CRM_DC_CIVAC: /* DC CIVAC */
449 __user_cache_maint("dc civac", address, ret);
450 break;
451 case ESR_ELx_SYS64_ISS_CRM_IC_IVAU: /* IC IVAU */
452 __user_cache_maint("ic ivau", address, ret);
453 break;
454 default:
Will Deacon2c9120f32018-02-20 14:16:29 +0000455 force_signal_inject(SIGILL, ILL_ILLOPC, regs->pc);
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100456 return;
457 }
458
459 if (ret)
Will Deacon2c9120f32018-02-20 14:16:29 +0000460 arm64_notify_segfault(address);
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100461 else
Julien Thierry6436bee2017-10-25 10:04:33 +0100462 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100463}
464
Suzuki K Poulose116c81f2016-09-09 14:07:16 +0100465static void ctr_read_handler(unsigned int esr, struct pt_regs *regs)
466{
467 int rt = (esr & ESR_ELx_SYS64_ISS_RT_MASK) >> ESR_ELx_SYS64_ISS_RT_SHIFT;
Mark Rutland8b6e70f2017-02-09 15:19:19 +0000468 unsigned long val = arm64_ftr_reg_user_value(&arm64_ftr_reg_ctrel0);
Suzuki K Poulose116c81f2016-09-09 14:07:16 +0100469
Mark Rutland8b6e70f2017-02-09 15:19:19 +0000470 pt_regs_write_reg(regs, rt, val);
471
Julien Thierry6436bee2017-10-25 10:04:33 +0100472 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
Suzuki K Poulose116c81f2016-09-09 14:07:16 +0100473}
474
Marc Zyngier6126ce02017-02-01 11:48:58 +0000475static void cntvct_read_handler(unsigned int esr, struct pt_regs *regs)
476{
477 int rt = (esr & ESR_ELx_SYS64_ISS_RT_MASK) >> ESR_ELx_SYS64_ISS_RT_SHIFT;
478
479 pt_regs_write_reg(regs, rt, arch_counter_get_cntvct());
Julien Thierry6436bee2017-10-25 10:04:33 +0100480 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
Marc Zyngier6126ce02017-02-01 11:48:58 +0000481}
482
Marc Zyngier98421192017-04-24 09:04:03 +0100483static void cntfrq_read_handler(unsigned int esr, struct pt_regs *regs)
484{
485 int rt = (esr & ESR_ELx_SYS64_ISS_RT_MASK) >> ESR_ELx_SYS64_ISS_RT_SHIFT;
486
Marc Zyngierc6f97ad2017-07-21 18:15:27 +0100487 pt_regs_write_reg(regs, rt, arch_timer_get_rate());
Julien Thierry6436bee2017-10-25 10:04:33 +0100488 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
Marc Zyngier98421192017-04-24 09:04:03 +0100489}
490
Suzuki K Poulose9dbd5bb2016-09-09 14:07:15 +0100491struct sys64_hook {
492 unsigned int esr_mask;
493 unsigned int esr_val;
494 void (*handler)(unsigned int esr, struct pt_regs *regs);
495};
496
497static struct sys64_hook sys64_hooks[] = {
498 {
499 .esr_mask = ESR_ELx_SYS64_ISS_EL0_CACHE_OP_MASK,
500 .esr_val = ESR_ELx_SYS64_ISS_EL0_CACHE_OP_VAL,
501 .handler = user_cache_maint_handler,
502 },
Suzuki K Poulose116c81f2016-09-09 14:07:16 +0100503 {
504 /* Trap read access to CTR_EL0 */
505 .esr_mask = ESR_ELx_SYS64_ISS_SYS_OP_MASK,
506 .esr_val = ESR_ELx_SYS64_ISS_SYS_CTR_READ,
507 .handler = ctr_read_handler,
508 },
Marc Zyngier6126ce02017-02-01 11:48:58 +0000509 {
510 /* Trap read access to CNTVCT_EL0 */
511 .esr_mask = ESR_ELx_SYS64_ISS_SYS_OP_MASK,
512 .esr_val = ESR_ELx_SYS64_ISS_SYS_CNTVCT,
513 .handler = cntvct_read_handler,
514 },
Marc Zyngier98421192017-04-24 09:04:03 +0100515 {
516 /* Trap read access to CNTFRQ_EL0 */
517 .esr_mask = ESR_ELx_SYS64_ISS_SYS_OP_MASK,
518 .esr_val = ESR_ELx_SYS64_ISS_SYS_CNTFRQ,
519 .handler = cntfrq_read_handler,
520 },
Suzuki K Poulose9dbd5bb2016-09-09 14:07:15 +0100521 {},
522};
523
524asmlinkage void __exception do_sysinstr(unsigned int esr, struct pt_regs *regs)
525{
526 struct sys64_hook *hook;
527
528 for (hook = sys64_hooks; hook->handler; hook++)
529 if ((hook->esr_mask & esr) == hook->esr_val) {
530 hook->handler(esr, regs);
531 return;
532 }
533
Mark Rutland49f6cba2017-01-27 16:15:38 +0000534 /*
535 * New SYS instructions may previously have been undefined at EL0. Fall
536 * back to our usual undefined instruction handler so that we handle
537 * these consistently.
538 */
539 do_undefinstr(regs);
Suzuki K Poulose9dbd5bb2016-09-09 14:07:15 +0100540}
541
Catalin Marinas60ffc302012-03-05 11:49:27 +0000542long compat_arm_syscall(struct pt_regs *regs);
543
544asmlinkage long do_ni_syscall(struct pt_regs *regs)
545{
546#ifdef CONFIG_COMPAT
547 long ret;
548 if (is_compat_task()) {
549 ret = compat_arm_syscall(regs);
550 if (ret != -ENOSYS)
551 return ret;
552 }
553#endif
554
Catalin Marinas60ffc302012-03-05 11:49:27 +0000555 return sys_ni_syscall();
556}
557
Mark Rutland60a1f022014-11-18 12:16:30 +0000558static const char *esr_class_str[] = {
559 [0 ... ESR_ELx_EC_MAX] = "UNRECOGNIZED EC",
560 [ESR_ELx_EC_UNKNOWN] = "Unknown/Uncategorized",
561 [ESR_ELx_EC_WFx] = "WFI/WFE",
562 [ESR_ELx_EC_CP15_32] = "CP15 MCR/MRC",
563 [ESR_ELx_EC_CP15_64] = "CP15 MCRR/MRRC",
564 [ESR_ELx_EC_CP14_MR] = "CP14 MCR/MRC",
565 [ESR_ELx_EC_CP14_LS] = "CP14 LDC/STC",
566 [ESR_ELx_EC_FP_ASIMD] = "ASIMD",
567 [ESR_ELx_EC_CP10_ID] = "CP10 MRC/VMRS",
568 [ESR_ELx_EC_CP14_64] = "CP14 MCRR/MRRC",
569 [ESR_ELx_EC_ILL] = "PSTATE.IL",
570 [ESR_ELx_EC_SVC32] = "SVC (AArch32)",
571 [ESR_ELx_EC_HVC32] = "HVC (AArch32)",
572 [ESR_ELx_EC_SMC32] = "SMC (AArch32)",
573 [ESR_ELx_EC_SVC64] = "SVC (AArch64)",
574 [ESR_ELx_EC_HVC64] = "HVC (AArch64)",
575 [ESR_ELx_EC_SMC64] = "SMC (AArch64)",
576 [ESR_ELx_EC_SYS64] = "MSR/MRS (AArch64)",
Dave Martin67236562017-10-31 15:51:00 +0000577 [ESR_ELx_EC_SVE] = "SVE",
Mark Rutland60a1f022014-11-18 12:16:30 +0000578 [ESR_ELx_EC_IMP_DEF] = "EL3 IMP DEF",
579 [ESR_ELx_EC_IABT_LOW] = "IABT (lower EL)",
580 [ESR_ELx_EC_IABT_CUR] = "IABT (current EL)",
581 [ESR_ELx_EC_PC_ALIGN] = "PC Alignment",
582 [ESR_ELx_EC_DABT_LOW] = "DABT (lower EL)",
583 [ESR_ELx_EC_DABT_CUR] = "DABT (current EL)",
584 [ESR_ELx_EC_SP_ALIGN] = "SP Alignment",
585 [ESR_ELx_EC_FP_EXC32] = "FP (AArch32)",
586 [ESR_ELx_EC_FP_EXC64] = "FP (AArch64)",
587 [ESR_ELx_EC_SERROR] = "SError",
588 [ESR_ELx_EC_BREAKPT_LOW] = "Breakpoint (lower EL)",
589 [ESR_ELx_EC_BREAKPT_CUR] = "Breakpoint (current EL)",
590 [ESR_ELx_EC_SOFTSTP_LOW] = "Software Step (lower EL)",
591 [ESR_ELx_EC_SOFTSTP_CUR] = "Software Step (current EL)",
592 [ESR_ELx_EC_WATCHPT_LOW] = "Watchpoint (lower EL)",
593 [ESR_ELx_EC_WATCHPT_CUR] = "Watchpoint (current EL)",
594 [ESR_ELx_EC_BKPT32] = "BKPT (AArch32)",
595 [ESR_ELx_EC_VECTOR32] = "Vector catch (AArch32)",
596 [ESR_ELx_EC_BRK64] = "BRK (AArch64)",
597};
598
599const char *esr_get_class_string(u32 esr)
600{
Mark Rutland275f3442016-05-31 12:33:01 +0100601 return esr_class_str[ESR_ELx_EC(esr)];
Mark Rutland60a1f022014-11-18 12:16:30 +0000602}
603
Catalin Marinas60ffc302012-03-05 11:49:27 +0000604/*
Mark Rutland7d9e8f72017-01-18 17:23:41 +0000605 * bad_mode handles the impossible case in the exception vector. This is always
606 * fatal.
Catalin Marinas60ffc302012-03-05 11:49:27 +0000607 */
608asmlinkage void bad_mode(struct pt_regs *regs, int reason, unsigned int esr)
609{
610 console_verbose();
611
Mark Rutland8051f4d2016-05-31 12:07:47 +0100612 pr_crit("Bad mode in %s handler detected on CPU%d, code 0x%08x -- %s\n",
613 handler[reason], smp_processor_id(), esr,
614 esr_get_class_string(esr));
Mark Rutland7d9e8f72017-01-18 17:23:41 +0000615
616 die("Oops - bad mode", regs, 0);
James Morse0fbeb312017-11-02 12:12:34 +0000617 local_daif_mask();
Mark Rutland7d9e8f72017-01-18 17:23:41 +0000618 panic("bad mode");
619}
620
621/*
622 * bad_el0_sync handles unexpected, but potentially recoverable synchronous
623 * exceptions taken from EL0. Unlike bad_mode, this returns.
624 */
625asmlinkage void bad_el0_sync(struct pt_regs *regs, int reason, unsigned int esr)
626{
627 siginfo_t info;
628 void __user *pc = (void __user *)instruction_pointer(regs);
629 console_verbose();
630
631 pr_crit("Bad EL0 synchronous exception detected on CPU%d, code 0x%08x -- %s\n",
632 smp_processor_id(), esr, esr_get_class_string(esr));
Mark Rutland9955ac42013-05-28 15:54:15 +0100633 __show_regs(regs);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000634
Mark Rutland9955ac42013-05-28 15:54:15 +0100635 info.si_signo = SIGILL;
636 info.si_errno = 0;
637 info.si_code = ILL_ILLOPC;
638 info.si_addr = pc;
639
Mark Rutland7d9e8f72017-01-18 17:23:41 +0000640 current->thread.fault_address = 0;
641 current->thread.fault_code = 0;
642
643 force_sig_info(info.si_signo, &info, current);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000644}
645
Mark Rutland872d8322017-07-14 20:30:35 +0100646#ifdef CONFIG_VMAP_STACK
647
648DEFINE_PER_CPU(unsigned long [OVERFLOW_STACK_SIZE/sizeof(long)], overflow_stack)
649 __aligned(16);
650
651asmlinkage void handle_bad_stack(struct pt_regs *regs)
652{
653 unsigned long tsk_stk = (unsigned long)current->stack;
654 unsigned long irq_stk = (unsigned long)this_cpu_read(irq_stack_ptr);
655 unsigned long ovf_stk = (unsigned long)this_cpu_ptr(overflow_stack);
656 unsigned int esr = read_sysreg(esr_el1);
657 unsigned long far = read_sysreg(far_el1);
658
659 console_verbose();
660 pr_emerg("Insufficient stack space to handle exception!");
661
662 pr_emerg("ESR: 0x%08x -- %s\n", esr, esr_get_class_string(esr));
663 pr_emerg("FAR: 0x%016lx\n", far);
664
665 pr_emerg("Task stack: [0x%016lx..0x%016lx]\n",
666 tsk_stk, tsk_stk + THREAD_SIZE);
667 pr_emerg("IRQ stack: [0x%016lx..0x%016lx]\n",
668 irq_stk, irq_stk + THREAD_SIZE);
669 pr_emerg("Overflow stack: [0x%016lx..0x%016lx]\n",
670 ovf_stk, ovf_stk + OVERFLOW_STACK_SIZE);
671
672 __show_regs(regs);
673
674 /*
675 * We use nmi_panic to limit the potential for recusive overflows, and
676 * to get a better stack trace.
677 */
678 nmi_panic(NULL, "kernel stack overflow");
679 cpu_park_loop();
680}
681#endif
682
James Morse6bf0dcf2018-01-15 19:38:57 +0000683void __noreturn arm64_serror_panic(struct pt_regs *regs, u32 esr)
Xie XiuQia92d4d12017-11-02 12:12:42 +0000684{
Xie XiuQia92d4d12017-11-02 12:12:42 +0000685 console_verbose();
686
687 pr_crit("SError Interrupt on CPU%d, code 0x%08x -- %s\n",
688 smp_processor_id(), esr, esr_get_class_string(esr));
James Morse6bf0dcf2018-01-15 19:38:57 +0000689 if (regs)
690 __show_regs(regs);
Xie XiuQia92d4d12017-11-02 12:12:42 +0000691
James Morse6bf0dcf2018-01-15 19:38:57 +0000692 nmi_panic(regs, "Asynchronous SError Interrupt");
693
694 cpu_park_loop();
695 unreachable();
696}
697
698bool arm64_is_fatal_ras_serror(struct pt_regs *regs, unsigned int esr)
699{
700 u32 aet = arm64_ras_serror_get_severity(esr);
701
702 switch (aet) {
703 case ESR_ELx_AET_CE: /* corrected error */
704 case ESR_ELx_AET_UEO: /* restartable, not yet consumed */
705 /*
706 * The CPU can make progress. We may take UEO again as
707 * a more severe error.
708 */
709 return false;
710
711 case ESR_ELx_AET_UEU: /* Uncorrected Unrecoverable */
712 case ESR_ELx_AET_UER: /* Uncorrected Recoverable */
713 /*
714 * The CPU can't make progress. The exception may have
715 * been imprecise.
716 */
717 return true;
718
719 case ESR_ELx_AET_UC: /* Uncontainable or Uncategorized error */
720 default:
721 /* Error has been silently propagated */
722 arm64_serror_panic(regs, esr);
723 }
724}
725
726asmlinkage void do_serror(struct pt_regs *regs, unsigned int esr)
727{
728 nmi_enter();
729
730 /* non-RAS errors are not containable */
731 if (!arm64_is_ras_serror(esr) || arm64_is_fatal_ras_serror(regs, esr))
732 arm64_serror_panic(regs, esr);
733
734 nmi_exit();
Xie XiuQia92d4d12017-11-02 12:12:42 +0000735}
736
Catalin Marinas60ffc302012-03-05 11:49:27 +0000737void __pte_error(const char *file, int line, unsigned long val)
738{
Will Deaconc9cd0ed2015-12-21 16:44:27 +0000739 pr_err("%s:%d: bad pte %016lx.\n", file, line, val);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000740}
741
742void __pmd_error(const char *file, int line, unsigned long val)
743{
Will Deaconc9cd0ed2015-12-21 16:44:27 +0000744 pr_err("%s:%d: bad pmd %016lx.\n", file, line, val);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000745}
746
Jungseok Leec79b954b2014-05-12 18:40:51 +0900747void __pud_error(const char *file, int line, unsigned long val)
748{
Will Deaconc9cd0ed2015-12-21 16:44:27 +0000749 pr_err("%s:%d: bad pud %016lx.\n", file, line, val);
Jungseok Leec79b954b2014-05-12 18:40:51 +0900750}
751
Catalin Marinas60ffc302012-03-05 11:49:27 +0000752void __pgd_error(const char *file, int line, unsigned long val)
753{
Will Deaconc9cd0ed2015-12-21 16:44:27 +0000754 pr_err("%s:%d: bad pgd %016lx.\n", file, line, val);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000755}
756
Dave P Martin9fb74102015-07-24 16:37:48 +0100757/* GENERIC_BUG traps */
758
759int is_valid_bugaddr(unsigned long addr)
760{
761 /*
762 * bug_handler() only called for BRK #BUG_BRK_IMM.
763 * So the answer is trivial -- any spurious instances with no
764 * bug table entry will be rejected by report_bug() and passed
765 * back to the debug-monitors code and handled as a fatal
766 * unexpected debug exception.
767 */
768 return 1;
769}
770
771static int bug_handler(struct pt_regs *regs, unsigned int esr)
772{
773 if (user_mode(regs))
774 return DBG_HOOK_ERROR;
775
776 switch (report_bug(regs->pc, regs)) {
777 case BUG_TRAP_TYPE_BUG:
778 die("Oops - BUG", regs, 0);
779 break;
780
781 case BUG_TRAP_TYPE_WARN:
782 break;
783
784 default:
785 /* unknown/unrecognised bug trap type */
786 return DBG_HOOK_ERROR;
787 }
788
789 /* If thread survives, skip over the BUG instruction and continue: */
Julien Thierry6436bee2017-10-25 10:04:33 +0100790 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
Dave P Martin9fb74102015-07-24 16:37:48 +0100791 return DBG_HOOK_HANDLED;
792}
793
794static struct break_hook bug_break_hook = {
795 .esr_val = 0xf2000000 | BUG_BRK_IMM,
796 .esr_mask = 0xffffffff,
797 .fn = bug_handler,
798};
799
800/*
801 * Initial handler for AArch64 BRK exceptions
802 * This handler only used until debug_traps_init().
803 */
804int __init early_brk64(unsigned long addr, unsigned int esr,
805 struct pt_regs *regs)
806{
807 return bug_handler(regs, esr) != DBG_HOOK_HANDLED;
808}
809
810/* This registration must happen early, before debug_traps_init(). */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000811void __init trap_init(void)
812{
Dave P Martin9fb74102015-07-24 16:37:48 +0100813 register_break_hook(&bug_break_hook);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000814}