blob: 459eb6fb715847595ca944ab1e9ba75dfc3ad928 [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>
Dave Martinc0cda3b2018-03-26 15:12:28 +010041#include <asm/cpufeature.h>
James Morse0fbeb312017-11-02 12:12:34 +000042#include <asm/daifflags.h>
Will Deacon1442b6e2013-03-16 08:48:13 +000043#include <asm/debug-monitors.h>
Mark Rutland60a1f022014-11-18 12:16:30 +000044#include <asm/esr.h>
Dave P Martin9fb74102015-07-24 16:37:48 +010045#include <asm/insn.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000046#include <asm/traps.h>
Mark Rutland872d8322017-07-14 20:30:35 +010047#include <asm/smp.h>
Mark Rutlanda9ea0012016-11-03 20:23:05 +000048#include <asm/stack_pointer.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000049#include <asm/stacktrace.h>
50#include <asm/exception.h>
51#include <asm/system_misc.h>
Andre Przywara7dd01ae2016-06-28 18:07:32 +010052#include <asm/sysreg.h>
Catalin Marinas60ffc302012-03-05 11:49:27 +000053
54static const char *handler[]= {
55 "Synchronous Abort",
56 "IRQ",
57 "FIQ",
58 "Error"
59};
60
Michael Weiser5ee39a72018-02-01 23:13:38 +010061int show_unhandled_signals = 0;
Catalin Marinas60ffc302012-03-05 11:49:27 +000062
Jungseok Lee9f93f3e2015-10-17 14:28:11 +000063static void dump_backtrace_entry(unsigned long where)
Catalin Marinas60ffc302012-03-05 11:49:27 +000064{
Will Deacona25ffd32017-10-19 13:19:20 +010065 printk(" %pS\n", (void *)where);
Catalin Marinas60ffc302012-03-05 11:49:27 +000066}
67
Mark Rutlandc5cea062016-06-13 11:15:14 +010068static void __dump_instr(const char *lvl, struct pt_regs *regs)
Catalin Marinas60ffc302012-03-05 11:49:27 +000069{
70 unsigned long addr = instruction_pointer(regs);
Catalin Marinas60ffc302012-03-05 11:49:27 +000071 char str[sizeof("00000000 ") * 5 + 2 + 1], *p = str;
72 int i;
73
Catalin Marinas60ffc302012-03-05 11:49:27 +000074 for (i = -4; i < 1; i++) {
75 unsigned int val, bad;
76
Mark Rutland7a7003b2017-11-02 16:12:03 +000077 bad = get_user(val, &((u32 *)addr)[i]);
Catalin Marinas60ffc302012-03-05 11:49:27 +000078
79 if (!bad)
80 p += sprintf(p, i == 0 ? "(%08x) " : "%08x ", val);
81 else {
82 p += sprintf(p, "bad PC value");
83 break;
84 }
85 }
86 printk("%sCode: %s\n", lvl, str);
Mark Rutlandc5cea062016-06-13 11:15:14 +010087}
Catalin Marinas60ffc302012-03-05 11:49:27 +000088
Mark Rutlandc5cea062016-06-13 11:15:14 +010089static void dump_instr(const char *lvl, struct pt_regs *regs)
90{
91 if (!user_mode(regs)) {
92 mm_segment_t fs = get_fs();
93 set_fs(KERNEL_DS);
94 __dump_instr(lvl, regs);
95 set_fs(fs);
96 } else {
97 __dump_instr(lvl, regs);
98 }
Catalin Marinas60ffc302012-03-05 11:49:27 +000099}
100
Kefeng Wang1149aad2017-05-09 09:53:37 +0800101void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk)
Catalin Marinas60ffc302012-03-05 11:49:27 +0000102{
103 struct stackframe frame;
AKASHI Takahiro20380bb2015-12-15 17:33:41 +0900104 int skip;
Catalin Marinas60ffc302012-03-05 11:49:27 +0000105
Mark Rutlandb5e73072016-09-23 17:55:05 +0100106 pr_debug("%s(regs = %p tsk = %p)\n", __func__, regs, tsk);
107
108 if (!tsk)
109 tsk = current;
110
Mark Rutland9bbd4c52016-11-03 20:23:08 +0000111 if (!try_get_task_stack(tsk))
112 return;
113
AKASHI Takahiro20380bb2015-12-15 17:33:41 +0900114 if (tsk == current) {
Catalin Marinas60ffc302012-03-05 11:49:27 +0000115 frame.fp = (unsigned long)__builtin_frame_address(0);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000116 frame.pc = (unsigned long)dump_backtrace;
117 } else {
118 /*
119 * task blocked in __switch_to
120 */
121 frame.fp = thread_saved_fp(tsk);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000122 frame.pc = thread_saved_pc(tsk);
123 }
AKASHI Takahiro20380bb2015-12-15 17:33:41 +0900124#ifdef CONFIG_FUNCTION_GRAPH_TRACER
125 frame.graph = tsk->curr_ret_stack;
126#endif
Catalin Marinas60ffc302012-03-05 11:49:27 +0000127
AKASHI Takahiro20380bb2015-12-15 17:33:41 +0900128 skip = !!regs;
Will Deaconc9cd0ed2015-12-21 16:44:27 +0000129 printk("Call trace:\n");
Will Deacona25ffd32017-10-19 13:19:20 +0100130 do {
AKASHI Takahiro20380bb2015-12-15 17:33:41 +0900131 /* skip until specified stack frame */
132 if (!skip) {
Ard Biesheuvel73267492017-07-22 18:45:33 +0100133 dump_backtrace_entry(frame.pc);
AKASHI Takahiro20380bb2015-12-15 17:33:41 +0900134 } else if (frame.fp == regs->regs[29]) {
135 skip = 0;
136 /*
137 * Mostly, this is the case where this function is
138 * called in panic/abort. As exception handler's
139 * stack frame does not contain the corresponding pc
140 * at which an exception has taken place, use regs->pc
141 * instead.
142 */
143 dump_backtrace_entry(regs->pc);
144 }
Will Deacona25ffd32017-10-19 13:19:20 +0100145 } while (!unwind_frame(tsk, &frame));
Mark Rutland9bbd4c52016-11-03 20:23:08 +0000146
147 put_task_stack(tsk);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000148}
149
Catalin Marinas60ffc302012-03-05 11:49:27 +0000150void show_stack(struct task_struct *tsk, unsigned long *sp)
151{
152 dump_backtrace(NULL, tsk);
153 barrier();
154}
155
156#ifdef CONFIG_PREEMPT
157#define S_PREEMPT " PREEMPT"
158#else
159#define S_PREEMPT ""
160#endif
Catalin Marinas60ffc302012-03-05 11:49:27 +0000161#define S_SMP " SMP"
Catalin Marinas60ffc302012-03-05 11:49:27 +0000162
Mark Rutland876e7a32016-11-03 20:23:06 +0000163static int __die(const char *str, int err, struct pt_regs *regs)
Catalin Marinas60ffc302012-03-05 11:49:27 +0000164{
Mark Rutland876e7a32016-11-03 20:23:06 +0000165 struct task_struct *tsk = current;
Catalin Marinas60ffc302012-03-05 11:49:27 +0000166 static int die_counter;
167 int ret;
168
169 pr_emerg("Internal error: %s: %x [#%d]" S_PREEMPT S_SMP "\n",
170 str, err, ++die_counter);
171
172 /* trap and error numbers are mostly meaningless on ARM */
173 ret = notify_die(DIE_OOPS, str, regs, err, 0, SIGSEGV);
174 if (ret == NOTIFY_STOP)
175 return ret;
176
177 print_modules();
178 __show_regs(regs);
179 pr_emerg("Process %.*s (pid: %d, stack limit = 0x%p)\n",
Mark Rutland876e7a32016-11-03 20:23:06 +0000180 TASK_COMM_LEN, tsk->comm, task_pid_nr(tsk),
181 end_of_stack(tsk));
Catalin Marinas60ffc302012-03-05 11:49:27 +0000182
Mark Rutland7ceb3a12016-06-13 11:15:15 +0100183 if (!user_mode(regs)) {
Catalin Marinas60ffc302012-03-05 11:49:27 +0000184 dump_backtrace(regs, tsk);
185 dump_instr(KERN_EMERG, regs);
186 }
187
188 return ret;
189}
190
191static DEFINE_RAW_SPINLOCK(die_lock);
192
193/*
194 * This function is protected against re-entrancy.
195 */
196void die(const char *str, struct pt_regs *regs, int err)
197{
Catalin Marinas60ffc302012-03-05 11:49:27 +0000198 int ret;
Qiao Zhou6f44a0b2017-07-07 17:29:34 +0800199 unsigned long flags;
200
201 raw_spin_lock_irqsave(&die_lock, flags);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000202
203 oops_enter();
204
Catalin Marinas60ffc302012-03-05 11:49:27 +0000205 console_verbose();
206 bust_spinlocks(1);
Mark Rutland876e7a32016-11-03 20:23:06 +0000207 ret = __die(str, err, regs);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000208
Mark Rutland876e7a32016-11-03 20:23:06 +0000209 if (regs && kexec_should_crash(current))
Catalin Marinas60ffc302012-03-05 11:49:27 +0000210 crash_kexec(regs);
211
212 bust_spinlocks(0);
Rusty Russell373d4d02013-01-21 17:17:39 +1030213 add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000214 oops_exit();
215
216 if (in_interrupt())
217 panic("Fatal exception in interrupt");
218 if (panic_on_oops)
219 panic("Fatal exception");
Qiao Zhou6f44a0b2017-07-07 17:29:34 +0800220
221 raw_spin_unlock_irqrestore(&die_lock, flags);
222
Catalin Marinas60ffc302012-03-05 11:49:27 +0000223 if (ret != NOTIFY_STOP)
224 do_exit(SIGSEGV);
225}
226
Will Deacona26731d2018-02-20 15:08:51 +0000227static bool show_unhandled_signals_ratelimited(void)
228{
229 static DEFINE_RATELIMIT_STATE(rs, DEFAULT_RATELIMIT_INTERVAL,
230 DEFAULT_RATELIMIT_BURST);
231 return show_unhandled_signals && __ratelimit(&rs);
232}
233
Will Deacona1ece822018-02-20 13:46:05 +0000234void arm64_force_sig_info(struct siginfo *info, const char *str,
235 struct task_struct *tsk)
236{
237 unsigned int esr = tsk->thread.fault_code;
238 struct pt_regs *regs = task_pt_regs(tsk);
239
240 if (!unhandled_signal(tsk, info->si_signo))
241 goto send_sig;
242
243 if (!show_unhandled_signals_ratelimited())
244 goto send_sig;
245
246 pr_info("%s[%d]: unhandled exception: ", tsk->comm, task_pid_nr(tsk));
247 if (esr)
248 pr_cont("%s, ESR 0x%08x, ", esr_get_class_string(esr), esr);
249
250 pr_cont("%s", str);
251 print_vma_addr(KERN_CONT " in ", regs->pc);
252 pr_cont("\n");
253 __show_regs(regs);
254
255send_sig:
256 force_sig_info(info->si_signo, info, tsk);
257}
258
Catalin Marinas60ffc302012-03-05 11:49:27 +0000259void arm64_notify_die(const char *str, struct pt_regs *regs,
Eric W. Biederman6fa998e2018-09-21 17:24:40 +0200260 int signo, int sicode, void __user *addr,
261 int err)
Catalin Marinas60ffc302012-03-05 11:49:27 +0000262{
Catalin Marinas91413002014-04-06 23:04:12 +0100263 if (user_mode(regs)) {
Eric W. Biederman6fa998e2018-09-21 17:24:40 +0200264 struct siginfo info;
265
Will Deacona1ece822018-02-20 13:46:05 +0000266 WARN_ON(regs != current_pt_regs());
Catalin Marinas91413002014-04-06 23:04:12 +0100267 current->thread.fault_address = 0;
268 current->thread.fault_code = err;
Eric W. Biederman6fa998e2018-09-21 17:24:40 +0200269
270 clear_siginfo(&info);
271 info.si_signo = signo;
272 info.si_errno = 0;
273 info.si_code = sicode;
274 info.si_addr = addr;
275
276 arm64_force_sig_info(&info, str, current);
Catalin Marinas91413002014-04-06 23:04:12 +0100277 } else {
Catalin Marinas60ffc302012-03-05 11:49:27 +0000278 die(str, regs, err);
Catalin Marinas91413002014-04-06 23:04:12 +0100279 }
Catalin Marinas60ffc302012-03-05 11:49:27 +0000280}
281
Julien Thierry6436bee2017-10-25 10:04:33 +0100282void arm64_skip_faulting_instruction(struct pt_regs *regs, unsigned long size)
283{
284 regs->pc += size;
285
286 /*
287 * If we were single stepping, we want to get the step exception after
288 * we return from the trap.
289 */
Mark Rutland9478f192018-04-03 11:22:51 +0100290 if (user_mode(regs))
291 user_fastforward_single_step(current);
Julien Thierry6436bee2017-10-25 10:04:33 +0100292}
293
Punit Agrawal9b79f522014-11-18 11:41:22 +0000294static LIST_HEAD(undef_hook);
295static DEFINE_RAW_SPINLOCK(undef_lock);
296
297void register_undef_hook(struct undef_hook *hook)
298{
299 unsigned long flags;
300
301 raw_spin_lock_irqsave(&undef_lock, flags);
302 list_add(&hook->node, &undef_hook);
303 raw_spin_unlock_irqrestore(&undef_lock, flags);
304}
305
306void unregister_undef_hook(struct undef_hook *hook)
307{
308 unsigned long flags;
309
310 raw_spin_lock_irqsave(&undef_lock, flags);
311 list_del(&hook->node);
312 raw_spin_unlock_irqrestore(&undef_lock, flags);
313}
314
315static int call_undef_hook(struct pt_regs *regs)
316{
317 struct undef_hook *hook;
318 unsigned long flags;
319 u32 instr;
320 int (*fn)(struct pt_regs *regs, u32 instr) = NULL;
321 void __user *pc = (void __user *)instruction_pointer(regs);
322
323 if (!user_mode(regs))
324 return 1;
325
326 if (compat_thumb_mode(regs)) {
327 /* 16-bit Thumb instruction */
Luc Van Oostenryck6cf5d4a2017-06-28 16:55:55 +0200328 __le16 instr_le;
329 if (get_user(instr_le, (__le16 __user *)pc))
Punit Agrawal9b79f522014-11-18 11:41:22 +0000330 goto exit;
Luc Van Oostenryck6cf5d4a2017-06-28 16:55:55 +0200331 instr = le16_to_cpu(instr_le);
Punit Agrawal9b79f522014-11-18 11:41:22 +0000332 if (aarch32_insn_is_wide(instr)) {
333 u32 instr2;
334
Luc Van Oostenryck6cf5d4a2017-06-28 16:55:55 +0200335 if (get_user(instr_le, (__le16 __user *)(pc + 2)))
Punit Agrawal9b79f522014-11-18 11:41:22 +0000336 goto exit;
Luc Van Oostenryck6cf5d4a2017-06-28 16:55:55 +0200337 instr2 = le16_to_cpu(instr_le);
Punit Agrawal9b79f522014-11-18 11:41:22 +0000338 instr = (instr << 16) | instr2;
339 }
340 } else {
341 /* 32-bit ARM instruction */
Luc Van Oostenryck6cf5d4a2017-06-28 16:55:55 +0200342 __le32 instr_le;
343 if (get_user(instr_le, (__le32 __user *)pc))
Punit Agrawal9b79f522014-11-18 11:41:22 +0000344 goto exit;
Luc Van Oostenryck6cf5d4a2017-06-28 16:55:55 +0200345 instr = le32_to_cpu(instr_le);
Punit Agrawal9b79f522014-11-18 11:41:22 +0000346 }
347
348 raw_spin_lock_irqsave(&undef_lock, flags);
349 list_for_each_entry(hook, &undef_hook, node)
350 if ((instr & hook->instr_mask) == hook->instr_val &&
351 (regs->pstate & hook->pstate_mask) == hook->pstate_val)
352 fn = hook->fn;
353
354 raw_spin_unlock_irqrestore(&undef_lock, flags);
355exit:
356 return fn ? fn(regs, instr) : 1;
357}
358
Will Deacon2c9120f32018-02-20 14:16:29 +0000359void force_signal_inject(int signal, int code, unsigned long address)
Catalin Marinas60ffc302012-03-05 11:49:27 +0000360{
Andre Przywara390bf172016-06-28 18:07:31 +0100361 const char *desc;
Will Deacon2c9120f32018-02-20 14:16:29 +0000362 struct pt_regs *regs = current_pt_regs();
363
Andre Przywara390bf172016-06-28 18:07:31 +0100364 switch (signal) {
365 case SIGILL:
366 desc = "undefined instruction";
367 break;
368 case SIGSEGV:
369 desc = "illegal memory access";
370 break;
371 default:
Dave Martinbc0ee472017-10-31 15:51:05 +0000372 desc = "unknown or unrecoverable error";
Andre Przywara390bf172016-06-28 18:07:31 +0100373 break;
374 }
375
Will Deacona7e6f1c2018-02-20 18:08:40 +0000376 /* Force signals we don't understand to SIGKILL */
Mark Rutlandb2d71b32018-04-16 16:45:01 +0100377 if (WARN_ON(signal != SIGKILL &&
Will Deacona7e6f1c2018-02-20 18:08:40 +0000378 siginfo_layout(signal, code) != SIL_FAULT)) {
379 signal = SIGKILL;
380 }
381
Eric W. Biederman6fa998e2018-09-21 17:24:40 +0200382 arm64_notify_die(desc, regs, signal, code, (void __user *)address, 0);
Andre Przywara390bf172016-06-28 18:07:31 +0100383}
384
385/*
386 * Set up process info to signal segmentation fault - called on access error.
387 */
Will Deacon2c9120f32018-02-20 14:16:29 +0000388void arm64_notify_segfault(unsigned long addr)
Andre Przywara390bf172016-06-28 18:07:31 +0100389{
390 int code;
391
392 down_read(&current->mm->mmap_sem);
393 if (find_vma(current->mm, addr) == NULL)
394 code = SEGV_MAPERR;
395 else
396 code = SEGV_ACCERR;
397 up_read(&current->mm->mmap_sem);
398
Will Deacon2c9120f32018-02-20 14:16:29 +0000399 force_signal_inject(SIGSEGV, code, addr);
Andre Przywara390bf172016-06-28 18:07:31 +0100400}
401
402asmlinkage void __exception do_undefinstr(struct pt_regs *regs)
403{
Catalin Marinas60ffc302012-03-05 11:49:27 +0000404 /* check for AArch32 breakpoint instructions */
Will Deacon1442b6e2013-03-16 08:48:13 +0000405 if (!aarch32_break_handler(regs))
Catalin Marinas60ffc302012-03-05 11:49:27 +0000406 return;
Catalin Marinas60ffc302012-03-05 11:49:27 +0000407
Punit Agrawal9b79f522014-11-18 11:41:22 +0000408 if (call_undef_hook(regs) == 0)
409 return;
410
Will Deacon2c9120f32018-02-20 14:16:29 +0000411 force_signal_inject(SIGILL, ILL_ILLOPC, regs->pc);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000412}
413
Dave Martinc0cda3b2018-03-26 15:12:28 +0100414void cpu_enable_cache_maint_trap(const struct arm64_cpu_capabilities *__unused)
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100415{
Mark Rutland25be5972018-07-11 14:56:38 +0100416 sysreg_clear_set(sctlr_el1, SCTLR_EL1_UCI, 0);
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100417}
418
419#define __user_cache_maint(insn, address, res) \
Kristina Martsenko81cddd62017-05-03 16:37:45 +0100420 if (address >= user_addr_max()) { \
Andre Przywara87261d12016-10-19 14:40:54 +0100421 res = -EFAULT; \
Catalin Marinas39bc88e2016-09-02 14:54:03 +0100422 } else { \
423 uaccess_ttbr0_enable(); \
Andre Przywara87261d12016-10-19 14:40:54 +0100424 asm volatile ( \
425 "1: " insn ", %1\n" \
426 " mov %w0, #0\n" \
427 "2:\n" \
428 " .pushsection .fixup,\"ax\"\n" \
429 " .align 2\n" \
430 "3: mov %w0, %w2\n" \
431 " b 2b\n" \
432 " .popsection\n" \
433 _ASM_EXTABLE(1b, 3b) \
434 : "=r" (res) \
Catalin Marinas39bc88e2016-09-02 14:54:03 +0100435 : "r" (address), "i" (-EFAULT)); \
436 uaccess_ttbr0_disable(); \
437 }
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100438
Suzuki K Poulose9dbd5bb2016-09-09 14:07:15 +0100439static void user_cache_maint_handler(unsigned int esr, struct pt_regs *regs)
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100440{
441 unsigned long address;
Suzuki K Poulose9dbd5bb2016-09-09 14:07:15 +0100442 int rt = (esr & ESR_ELx_SYS64_ISS_RT_MASK) >> ESR_ELx_SYS64_ISS_RT_SHIFT;
443 int crm = (esr & ESR_ELx_SYS64_ISS_CRM_MASK) >> ESR_ELx_SYS64_ISS_CRM_SHIFT;
444 int ret = 0;
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100445
Kristina Martsenko81cddd62017-05-03 16:37:45 +0100446 address = untagged_addr(pt_regs_read_reg(regs, rt));
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100447
Suzuki K Poulose9dbd5bb2016-09-09 14:07:15 +0100448 switch (crm) {
449 case ESR_ELx_SYS64_ISS_CRM_DC_CVAU: /* DC CVAU, gets promoted */
450 __user_cache_maint("dc civac", address, ret);
451 break;
452 case ESR_ELx_SYS64_ISS_CRM_DC_CVAC: /* DC CVAC, gets promoted */
453 __user_cache_maint("dc civac", address, ret);
454 break;
Robin Murphye1bc5d12017-07-25 11:55:41 +0100455 case ESR_ELx_SYS64_ISS_CRM_DC_CVAP: /* DC CVAP */
456 __user_cache_maint("sys 3, c7, c12, 1", address, ret);
457 break;
Suzuki K Poulose9dbd5bb2016-09-09 14:07:15 +0100458 case ESR_ELx_SYS64_ISS_CRM_DC_CIVAC: /* DC CIVAC */
459 __user_cache_maint("dc civac", address, ret);
460 break;
461 case ESR_ELx_SYS64_ISS_CRM_IC_IVAU: /* IC IVAU */
462 __user_cache_maint("ic ivau", address, ret);
463 break;
464 default:
Will Deacon2c9120f32018-02-20 14:16:29 +0000465 force_signal_inject(SIGILL, ILL_ILLOPC, regs->pc);
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100466 return;
467 }
468
469 if (ret)
Will Deacon2c9120f32018-02-20 14:16:29 +0000470 arm64_notify_segfault(address);
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100471 else
Julien Thierry6436bee2017-10-25 10:04:33 +0100472 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
Andre Przywara7dd01ae2016-06-28 18:07:32 +0100473}
474
Suzuki K Poulose116c81f2016-09-09 14:07:16 +0100475static void ctr_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;
Mark Rutland8b6e70f2017-02-09 15:19:19 +0000478 unsigned long val = arm64_ftr_reg_user_value(&arm64_ftr_reg_ctrel0);
Suzuki K Poulose116c81f2016-09-09 14:07:16 +0100479
Mark Rutland8b6e70f2017-02-09 15:19:19 +0000480 pt_regs_write_reg(regs, rt, val);
481
Julien Thierry6436bee2017-10-25 10:04:33 +0100482 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
Suzuki K Poulose116c81f2016-09-09 14:07:16 +0100483}
484
Marc Zyngier6126ce02017-02-01 11:48:58 +0000485static void cntvct_read_handler(unsigned int esr, struct pt_regs *regs)
486{
487 int rt = (esr & ESR_ELx_SYS64_ISS_RT_MASK) >> ESR_ELx_SYS64_ISS_RT_SHIFT;
488
489 pt_regs_write_reg(regs, rt, arch_counter_get_cntvct());
Julien Thierry6436bee2017-10-25 10:04:33 +0100490 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
Marc Zyngier6126ce02017-02-01 11:48:58 +0000491}
492
Marc Zyngier98421192017-04-24 09:04:03 +0100493static void cntfrq_read_handler(unsigned int esr, struct pt_regs *regs)
494{
495 int rt = (esr & ESR_ELx_SYS64_ISS_RT_MASK) >> ESR_ELx_SYS64_ISS_RT_SHIFT;
496
Marc Zyngierc6f97ad2017-07-21 18:15:27 +0100497 pt_regs_write_reg(regs, rt, arch_timer_get_rate());
Julien Thierry6436bee2017-10-25 10:04:33 +0100498 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
Marc Zyngier98421192017-04-24 09:04:03 +0100499}
500
Suzuki K Poulose9dbd5bb2016-09-09 14:07:15 +0100501struct sys64_hook {
502 unsigned int esr_mask;
503 unsigned int esr_val;
504 void (*handler)(unsigned int esr, struct pt_regs *regs);
505};
506
507static struct sys64_hook sys64_hooks[] = {
508 {
509 .esr_mask = ESR_ELx_SYS64_ISS_EL0_CACHE_OP_MASK,
510 .esr_val = ESR_ELx_SYS64_ISS_EL0_CACHE_OP_VAL,
511 .handler = user_cache_maint_handler,
512 },
Suzuki K Poulose116c81f2016-09-09 14:07:16 +0100513 {
514 /* Trap read access to CTR_EL0 */
515 .esr_mask = ESR_ELx_SYS64_ISS_SYS_OP_MASK,
516 .esr_val = ESR_ELx_SYS64_ISS_SYS_CTR_READ,
517 .handler = ctr_read_handler,
518 },
Marc Zyngier6126ce02017-02-01 11:48:58 +0000519 {
520 /* Trap read access to CNTVCT_EL0 */
521 .esr_mask = ESR_ELx_SYS64_ISS_SYS_OP_MASK,
522 .esr_val = ESR_ELx_SYS64_ISS_SYS_CNTVCT,
523 .handler = cntvct_read_handler,
524 },
Marc Zyngier98421192017-04-24 09:04:03 +0100525 {
526 /* Trap read access to CNTFRQ_EL0 */
527 .esr_mask = ESR_ELx_SYS64_ISS_SYS_OP_MASK,
528 .esr_val = ESR_ELx_SYS64_ISS_SYS_CNTFRQ,
529 .handler = cntfrq_read_handler,
530 },
Suzuki K Poulose9dbd5bb2016-09-09 14:07:15 +0100531 {},
532};
533
534asmlinkage void __exception do_sysinstr(unsigned int esr, struct pt_regs *regs)
535{
536 struct sys64_hook *hook;
537
538 for (hook = sys64_hooks; hook->handler; hook++)
539 if ((hook->esr_mask & esr) == hook->esr_val) {
540 hook->handler(esr, regs);
541 return;
542 }
543
Mark Rutland49f6cba2017-01-27 16:15:38 +0000544 /*
545 * New SYS instructions may previously have been undefined at EL0. Fall
546 * back to our usual undefined instruction handler so that we handle
547 * these consistently.
548 */
549 do_undefinstr(regs);
Suzuki K Poulose9dbd5bb2016-09-09 14:07:15 +0100550}
551
Mark Rutland60a1f022014-11-18 12:16:30 +0000552static const char *esr_class_str[] = {
553 [0 ... ESR_ELx_EC_MAX] = "UNRECOGNIZED EC",
554 [ESR_ELx_EC_UNKNOWN] = "Unknown/Uncategorized",
555 [ESR_ELx_EC_WFx] = "WFI/WFE",
556 [ESR_ELx_EC_CP15_32] = "CP15 MCR/MRC",
557 [ESR_ELx_EC_CP15_64] = "CP15 MCRR/MRRC",
558 [ESR_ELx_EC_CP14_MR] = "CP14 MCR/MRC",
559 [ESR_ELx_EC_CP14_LS] = "CP14 LDC/STC",
560 [ESR_ELx_EC_FP_ASIMD] = "ASIMD",
561 [ESR_ELx_EC_CP10_ID] = "CP10 MRC/VMRS",
562 [ESR_ELx_EC_CP14_64] = "CP14 MCRR/MRRC",
563 [ESR_ELx_EC_ILL] = "PSTATE.IL",
564 [ESR_ELx_EC_SVC32] = "SVC (AArch32)",
565 [ESR_ELx_EC_HVC32] = "HVC (AArch32)",
566 [ESR_ELx_EC_SMC32] = "SMC (AArch32)",
567 [ESR_ELx_EC_SVC64] = "SVC (AArch64)",
568 [ESR_ELx_EC_HVC64] = "HVC (AArch64)",
569 [ESR_ELx_EC_SMC64] = "SMC (AArch64)",
570 [ESR_ELx_EC_SYS64] = "MSR/MRS (AArch64)",
Dave Martin67236562017-10-31 15:51:00 +0000571 [ESR_ELx_EC_SVE] = "SVE",
Mark Rutland60a1f022014-11-18 12:16:30 +0000572 [ESR_ELx_EC_IMP_DEF] = "EL3 IMP DEF",
573 [ESR_ELx_EC_IABT_LOW] = "IABT (lower EL)",
574 [ESR_ELx_EC_IABT_CUR] = "IABT (current EL)",
575 [ESR_ELx_EC_PC_ALIGN] = "PC Alignment",
576 [ESR_ELx_EC_DABT_LOW] = "DABT (lower EL)",
577 [ESR_ELx_EC_DABT_CUR] = "DABT (current EL)",
578 [ESR_ELx_EC_SP_ALIGN] = "SP Alignment",
579 [ESR_ELx_EC_FP_EXC32] = "FP (AArch32)",
580 [ESR_ELx_EC_FP_EXC64] = "FP (AArch64)",
581 [ESR_ELx_EC_SERROR] = "SError",
582 [ESR_ELx_EC_BREAKPT_LOW] = "Breakpoint (lower EL)",
583 [ESR_ELx_EC_BREAKPT_CUR] = "Breakpoint (current EL)",
584 [ESR_ELx_EC_SOFTSTP_LOW] = "Software Step (lower EL)",
585 [ESR_ELx_EC_SOFTSTP_CUR] = "Software Step (current EL)",
586 [ESR_ELx_EC_WATCHPT_LOW] = "Watchpoint (lower EL)",
587 [ESR_ELx_EC_WATCHPT_CUR] = "Watchpoint (current EL)",
588 [ESR_ELx_EC_BKPT32] = "BKPT (AArch32)",
589 [ESR_ELx_EC_VECTOR32] = "Vector catch (AArch32)",
590 [ESR_ELx_EC_BRK64] = "BRK (AArch64)",
591};
592
593const char *esr_get_class_string(u32 esr)
594{
Mark Rutland275f3442016-05-31 12:33:01 +0100595 return esr_class_str[ESR_ELx_EC(esr)];
Mark Rutland60a1f022014-11-18 12:16:30 +0000596}
597
Catalin Marinas60ffc302012-03-05 11:49:27 +0000598/*
Mark Rutland7d9e8f72017-01-18 17:23:41 +0000599 * bad_mode handles the impossible case in the exception vector. This is always
600 * fatal.
Catalin Marinas60ffc302012-03-05 11:49:27 +0000601 */
602asmlinkage void bad_mode(struct pt_regs *regs, int reason, unsigned int esr)
603{
604 console_verbose();
605
Mark Rutland8051f4d2016-05-31 12:07:47 +0100606 pr_crit("Bad mode in %s handler detected on CPU%d, code 0x%08x -- %s\n",
607 handler[reason], smp_processor_id(), esr,
608 esr_get_class_string(esr));
Mark Rutland7d9e8f72017-01-18 17:23:41 +0000609
610 die("Oops - bad mode", regs, 0);
James Morse0fbeb312017-11-02 12:12:34 +0000611 local_daif_mask();
Mark Rutland7d9e8f72017-01-18 17:23:41 +0000612 panic("bad mode");
613}
614
615/*
616 * bad_el0_sync handles unexpected, but potentially recoverable synchronous
617 * exceptions taken from EL0. Unlike bad_mode, this returns.
618 */
619asmlinkage void bad_el0_sync(struct pt_regs *regs, int reason, unsigned int esr)
620{
621 siginfo_t info;
622 void __user *pc = (void __user *)instruction_pointer(regs);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000623
Eric W. Biederman3eb0f512018-04-17 15:26:37 -0500624 clear_siginfo(&info);
Mark Rutland9955ac42013-05-28 15:54:15 +0100625 info.si_signo = SIGILL;
626 info.si_errno = 0;
627 info.si_code = ILL_ILLOPC;
628 info.si_addr = pc;
629
Mark Rutland7d9e8f72017-01-18 17:23:41 +0000630 current->thread.fault_address = 0;
Will Deacon4e829b62018-02-20 15:18:13 +0000631 current->thread.fault_code = esr;
Mark Rutland7d9e8f72017-01-18 17:23:41 +0000632
Will Deacon4e829b62018-02-20 15:18:13 +0000633 arm64_force_sig_info(&info, "Bad EL0 synchronous exception", current);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000634}
635
Mark Rutland872d8322017-07-14 20:30:35 +0100636#ifdef CONFIG_VMAP_STACK
637
638DEFINE_PER_CPU(unsigned long [OVERFLOW_STACK_SIZE/sizeof(long)], overflow_stack)
639 __aligned(16);
640
641asmlinkage void handle_bad_stack(struct pt_regs *regs)
642{
643 unsigned long tsk_stk = (unsigned long)current->stack;
644 unsigned long irq_stk = (unsigned long)this_cpu_read(irq_stack_ptr);
645 unsigned long ovf_stk = (unsigned long)this_cpu_ptr(overflow_stack);
646 unsigned int esr = read_sysreg(esr_el1);
647 unsigned long far = read_sysreg(far_el1);
648
649 console_verbose();
650 pr_emerg("Insufficient stack space to handle exception!");
651
652 pr_emerg("ESR: 0x%08x -- %s\n", esr, esr_get_class_string(esr));
653 pr_emerg("FAR: 0x%016lx\n", far);
654
655 pr_emerg("Task stack: [0x%016lx..0x%016lx]\n",
656 tsk_stk, tsk_stk + THREAD_SIZE);
657 pr_emerg("IRQ stack: [0x%016lx..0x%016lx]\n",
658 irq_stk, irq_stk + THREAD_SIZE);
659 pr_emerg("Overflow stack: [0x%016lx..0x%016lx]\n",
660 ovf_stk, ovf_stk + OVERFLOW_STACK_SIZE);
661
662 __show_regs(regs);
663
664 /*
665 * We use nmi_panic to limit the potential for recusive overflows, and
666 * to get a better stack trace.
667 */
668 nmi_panic(NULL, "kernel stack overflow");
669 cpu_park_loop();
670}
671#endif
672
James Morse6bf0dcf2018-01-15 19:38:57 +0000673void __noreturn arm64_serror_panic(struct pt_regs *regs, u32 esr)
Xie XiuQia92d4d12017-11-02 12:12:42 +0000674{
Xie XiuQia92d4d12017-11-02 12:12:42 +0000675 console_verbose();
676
677 pr_crit("SError Interrupt on CPU%d, code 0x%08x -- %s\n",
678 smp_processor_id(), esr, esr_get_class_string(esr));
James Morse6bf0dcf2018-01-15 19:38:57 +0000679 if (regs)
680 __show_regs(regs);
Xie XiuQia92d4d12017-11-02 12:12:42 +0000681
James Morse6bf0dcf2018-01-15 19:38:57 +0000682 nmi_panic(regs, "Asynchronous SError Interrupt");
683
684 cpu_park_loop();
685 unreachable();
686}
687
688bool arm64_is_fatal_ras_serror(struct pt_regs *regs, unsigned int esr)
689{
690 u32 aet = arm64_ras_serror_get_severity(esr);
691
692 switch (aet) {
693 case ESR_ELx_AET_CE: /* corrected error */
694 case ESR_ELx_AET_UEO: /* restartable, not yet consumed */
695 /*
696 * The CPU can make progress. We may take UEO again as
697 * a more severe error.
698 */
699 return false;
700
701 case ESR_ELx_AET_UEU: /* Uncorrected Unrecoverable */
702 case ESR_ELx_AET_UER: /* Uncorrected Recoverable */
703 /*
704 * The CPU can't make progress. The exception may have
705 * been imprecise.
706 */
707 return true;
708
709 case ESR_ELx_AET_UC: /* Uncontainable or Uncategorized error */
710 default:
711 /* Error has been silently propagated */
712 arm64_serror_panic(regs, esr);
713 }
714}
715
716asmlinkage void do_serror(struct pt_regs *regs, unsigned int esr)
717{
718 nmi_enter();
719
720 /* non-RAS errors are not containable */
721 if (!arm64_is_ras_serror(esr) || arm64_is_fatal_ras_serror(regs, esr))
722 arm64_serror_panic(regs, esr);
723
724 nmi_exit();
Xie XiuQia92d4d12017-11-02 12:12:42 +0000725}
726
Catalin Marinas60ffc302012-03-05 11:49:27 +0000727void __pte_error(const char *file, int line, unsigned long val)
728{
Will Deaconc9cd0ed2015-12-21 16:44:27 +0000729 pr_err("%s:%d: bad pte %016lx.\n", file, line, val);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000730}
731
732void __pmd_error(const char *file, int line, unsigned long val)
733{
Will Deaconc9cd0ed2015-12-21 16:44:27 +0000734 pr_err("%s:%d: bad pmd %016lx.\n", file, line, val);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000735}
736
Jungseok Leec79b954b2014-05-12 18:40:51 +0900737void __pud_error(const char *file, int line, unsigned long val)
738{
Will Deaconc9cd0ed2015-12-21 16:44:27 +0000739 pr_err("%s:%d: bad pud %016lx.\n", file, line, val);
Jungseok Leec79b954b2014-05-12 18:40:51 +0900740}
741
Catalin Marinas60ffc302012-03-05 11:49:27 +0000742void __pgd_error(const char *file, int line, unsigned long val)
743{
Will Deaconc9cd0ed2015-12-21 16:44:27 +0000744 pr_err("%s:%d: bad pgd %016lx.\n", file, line, val);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000745}
746
Dave P Martin9fb74102015-07-24 16:37:48 +0100747/* GENERIC_BUG traps */
748
749int is_valid_bugaddr(unsigned long addr)
750{
751 /*
752 * bug_handler() only called for BRK #BUG_BRK_IMM.
753 * So the answer is trivial -- any spurious instances with no
754 * bug table entry will be rejected by report_bug() and passed
755 * back to the debug-monitors code and handled as a fatal
756 * unexpected debug exception.
757 */
758 return 1;
759}
760
761static int bug_handler(struct pt_regs *regs, unsigned int esr)
762{
763 if (user_mode(regs))
764 return DBG_HOOK_ERROR;
765
766 switch (report_bug(regs->pc, regs)) {
767 case BUG_TRAP_TYPE_BUG:
768 die("Oops - BUG", regs, 0);
769 break;
770
771 case BUG_TRAP_TYPE_WARN:
772 break;
773
774 default:
775 /* unknown/unrecognised bug trap type */
776 return DBG_HOOK_ERROR;
777 }
778
779 /* If thread survives, skip over the BUG instruction and continue: */
Julien Thierry6436bee2017-10-25 10:04:33 +0100780 arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE);
Dave P Martin9fb74102015-07-24 16:37:48 +0100781 return DBG_HOOK_HANDLED;
782}
783
784static struct break_hook bug_break_hook = {
785 .esr_val = 0xf2000000 | BUG_BRK_IMM,
786 .esr_mask = 0xffffffff,
787 .fn = bug_handler,
788};
789
790/*
791 * Initial handler for AArch64 BRK exceptions
792 * This handler only used until debug_traps_init().
793 */
794int __init early_brk64(unsigned long addr, unsigned int esr,
795 struct pt_regs *regs)
796{
797 return bug_handler(regs, esr) != DBG_HOOK_HANDLED;
798}
799
800/* This registration must happen early, before debug_traps_init(). */
Catalin Marinas60ffc302012-03-05 11:49:27 +0000801void __init trap_init(void)
802{
Dave P Martin9fb74102015-07-24 16:37:48 +0100803 register_break_hook(&bug_break_hook);
Catalin Marinas60ffc302012-03-05 11:49:27 +0000804}