Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 1 | /* |
| 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 Martin | 9fb7410 | 2015-07-24 16:37:48 +0100 | [diff] [blame] | 20 | #include <linux/bug.h> |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 21 | #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 Molnar | 3f07c01 | 2017-02-08 18:51:30 +0100 | [diff] [blame] | 32 | #include <linux/sched/signal.h> |
Ingo Molnar | b17b015 | 2017-02-08 18:51:35 +0100 | [diff] [blame] | 33 | #include <linux/sched/debug.h> |
Ingo Molnar | 68db0cf | 2017-02-08 18:51:37 +0100 | [diff] [blame] | 34 | #include <linux/sched/task_stack.h> |
Mark Rutland | 872d832 | 2017-07-14 20:30:35 +0100 | [diff] [blame] | 35 | #include <linux/sizes.h> |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 36 | #include <linux/syscalls.h> |
Ingo Molnar | 589ee62 | 2017-02-04 00:16:44 +0100 | [diff] [blame] | 37 | #include <linux/mm_types.h> |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 38 | |
| 39 | #include <asm/atomic.h> |
Dave P Martin | 9fb7410 | 2015-07-24 16:37:48 +0100 | [diff] [blame] | 40 | #include <asm/bug.h> |
Dave Martin | c0cda3b | 2018-03-26 15:12:28 +0100 | [diff] [blame] | 41 | #include <asm/cpufeature.h> |
James Morse | 0fbeb31 | 2017-11-02 12:12:34 +0000 | [diff] [blame] | 42 | #include <asm/daifflags.h> |
Will Deacon | 1442b6e | 2013-03-16 08:48:13 +0000 | [diff] [blame] | 43 | #include <asm/debug-monitors.h> |
Mark Rutland | 60a1f02 | 2014-11-18 12:16:30 +0000 | [diff] [blame] | 44 | #include <asm/esr.h> |
Dave P Martin | 9fb7410 | 2015-07-24 16:37:48 +0100 | [diff] [blame] | 45 | #include <asm/insn.h> |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 46 | #include <asm/traps.h> |
Mark Rutland | 872d832 | 2017-07-14 20:30:35 +0100 | [diff] [blame] | 47 | #include <asm/smp.h> |
Mark Rutland | a9ea001 | 2016-11-03 20:23:05 +0000 | [diff] [blame] | 48 | #include <asm/stack_pointer.h> |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 49 | #include <asm/stacktrace.h> |
| 50 | #include <asm/exception.h> |
| 51 | #include <asm/system_misc.h> |
Andre Przywara | 7dd01ae | 2016-06-28 18:07:32 +0100 | [diff] [blame] | 52 | #include <asm/sysreg.h> |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 53 | |
| 54 | static const char *handler[]= { |
| 55 | "Synchronous Abort", |
| 56 | "IRQ", |
| 57 | "FIQ", |
| 58 | "Error" |
| 59 | }; |
| 60 | |
Michael Weiser | 5ee39a7 | 2018-02-01 23:13:38 +0100 | [diff] [blame] | 61 | int show_unhandled_signals = 0; |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 62 | |
Jungseok Lee | 9f93f3e | 2015-10-17 14:28:11 +0000 | [diff] [blame] | 63 | static void dump_backtrace_entry(unsigned long where) |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 64 | { |
Will Deacon | a25ffd3 | 2017-10-19 13:19:20 +0100 | [diff] [blame] | 65 | printk(" %pS\n", (void *)where); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 66 | } |
| 67 | |
Mark Rutland | c5cea06 | 2016-06-13 11:15:14 +0100 | [diff] [blame] | 68 | static void __dump_instr(const char *lvl, struct pt_regs *regs) |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 69 | { |
| 70 | unsigned long addr = instruction_pointer(regs); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 71 | char str[sizeof("00000000 ") * 5 + 2 + 1], *p = str; |
| 72 | int i; |
| 73 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 74 | for (i = -4; i < 1; i++) { |
| 75 | unsigned int val, bad; |
| 76 | |
Mark Rutland | 7a7003b | 2017-11-02 16:12:03 +0000 | [diff] [blame] | 77 | bad = get_user(val, &((u32 *)addr)[i]); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 78 | |
| 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 Rutland | c5cea06 | 2016-06-13 11:15:14 +0100 | [diff] [blame] | 87 | } |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 88 | |
Mark Rutland | c5cea06 | 2016-06-13 11:15:14 +0100 | [diff] [blame] | 89 | static 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 Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 99 | } |
| 100 | |
Kefeng Wang | 1149aad | 2017-05-09 09:53:37 +0800 | [diff] [blame] | 101 | void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk) |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 102 | { |
| 103 | struct stackframe frame; |
AKASHI Takahiro | 20380bb | 2015-12-15 17:33:41 +0900 | [diff] [blame] | 104 | int skip; |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 105 | |
Mark Rutland | b5e7307 | 2016-09-23 17:55:05 +0100 | [diff] [blame] | 106 | pr_debug("%s(regs = %p tsk = %p)\n", __func__, regs, tsk); |
| 107 | |
| 108 | if (!tsk) |
| 109 | tsk = current; |
| 110 | |
Mark Rutland | 9bbd4c5 | 2016-11-03 20:23:08 +0000 | [diff] [blame] | 111 | if (!try_get_task_stack(tsk)) |
| 112 | return; |
| 113 | |
AKASHI Takahiro | 20380bb | 2015-12-15 17:33:41 +0900 | [diff] [blame] | 114 | if (tsk == current) { |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 115 | frame.fp = (unsigned long)__builtin_frame_address(0); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 116 | frame.pc = (unsigned long)dump_backtrace; |
| 117 | } else { |
| 118 | /* |
| 119 | * task blocked in __switch_to |
| 120 | */ |
| 121 | frame.fp = thread_saved_fp(tsk); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 122 | frame.pc = thread_saved_pc(tsk); |
| 123 | } |
AKASHI Takahiro | 20380bb | 2015-12-15 17:33:41 +0900 | [diff] [blame] | 124 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
| 125 | frame.graph = tsk->curr_ret_stack; |
| 126 | #endif |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 127 | |
AKASHI Takahiro | 20380bb | 2015-12-15 17:33:41 +0900 | [diff] [blame] | 128 | skip = !!regs; |
Will Deacon | c9cd0ed | 2015-12-21 16:44:27 +0000 | [diff] [blame] | 129 | printk("Call trace:\n"); |
Will Deacon | a25ffd3 | 2017-10-19 13:19:20 +0100 | [diff] [blame] | 130 | do { |
AKASHI Takahiro | 20380bb | 2015-12-15 17:33:41 +0900 | [diff] [blame] | 131 | /* skip until specified stack frame */ |
| 132 | if (!skip) { |
Ard Biesheuvel | 7326749 | 2017-07-22 18:45:33 +0100 | [diff] [blame] | 133 | dump_backtrace_entry(frame.pc); |
AKASHI Takahiro | 20380bb | 2015-12-15 17:33:41 +0900 | [diff] [blame] | 134 | } 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 Deacon | a25ffd3 | 2017-10-19 13:19:20 +0100 | [diff] [blame] | 145 | } while (!unwind_frame(tsk, &frame)); |
Mark Rutland | 9bbd4c5 | 2016-11-03 20:23:08 +0000 | [diff] [blame] | 146 | |
| 147 | put_task_stack(tsk); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 148 | } |
| 149 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 150 | void 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 Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 161 | #define S_SMP " SMP" |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 162 | |
Mark Rutland | 876e7a3 | 2016-11-03 20:23:06 +0000 | [diff] [blame] | 163 | static int __die(const char *str, int err, struct pt_regs *regs) |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 164 | { |
Mark Rutland | 876e7a3 | 2016-11-03 20:23:06 +0000 | [diff] [blame] | 165 | struct task_struct *tsk = current; |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 166 | 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 Rutland | 876e7a3 | 2016-11-03 20:23:06 +0000 | [diff] [blame] | 180 | TASK_COMM_LEN, tsk->comm, task_pid_nr(tsk), |
| 181 | end_of_stack(tsk)); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 182 | |
Mark Rutland | 7ceb3a1 | 2016-06-13 11:15:15 +0100 | [diff] [blame] | 183 | if (!user_mode(regs)) { |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 184 | dump_backtrace(regs, tsk); |
| 185 | dump_instr(KERN_EMERG, regs); |
| 186 | } |
| 187 | |
| 188 | return ret; |
| 189 | } |
| 190 | |
| 191 | static DEFINE_RAW_SPINLOCK(die_lock); |
| 192 | |
| 193 | /* |
| 194 | * This function is protected against re-entrancy. |
| 195 | */ |
| 196 | void die(const char *str, struct pt_regs *regs, int err) |
| 197 | { |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 198 | int ret; |
Qiao Zhou | 6f44a0b | 2017-07-07 17:29:34 +0800 | [diff] [blame] | 199 | unsigned long flags; |
| 200 | |
| 201 | raw_spin_lock_irqsave(&die_lock, flags); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 202 | |
| 203 | oops_enter(); |
| 204 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 205 | console_verbose(); |
| 206 | bust_spinlocks(1); |
Mark Rutland | 876e7a3 | 2016-11-03 20:23:06 +0000 | [diff] [blame] | 207 | ret = __die(str, err, regs); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 208 | |
Mark Rutland | 876e7a3 | 2016-11-03 20:23:06 +0000 | [diff] [blame] | 209 | if (regs && kexec_should_crash(current)) |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 210 | crash_kexec(regs); |
| 211 | |
| 212 | bust_spinlocks(0); |
Rusty Russell | 373d4d0 | 2013-01-21 17:17:39 +1030 | [diff] [blame] | 213 | add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 214 | oops_exit(); |
| 215 | |
| 216 | if (in_interrupt()) |
| 217 | panic("Fatal exception in interrupt"); |
| 218 | if (panic_on_oops) |
| 219 | panic("Fatal exception"); |
Qiao Zhou | 6f44a0b | 2017-07-07 17:29:34 +0800 | [diff] [blame] | 220 | |
| 221 | raw_spin_unlock_irqrestore(&die_lock, flags); |
| 222 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 223 | if (ret != NOTIFY_STOP) |
| 224 | do_exit(SIGSEGV); |
| 225 | } |
| 226 | |
Will Deacon | a26731d | 2018-02-20 15:08:51 +0000 | [diff] [blame] | 227 | static 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 Deacon | a1ece82 | 2018-02-20 13:46:05 +0000 | [diff] [blame] | 234 | void 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 | |
| 255 | send_sig: |
| 256 | force_sig_info(info->si_signo, info, tsk); |
| 257 | } |
| 258 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 259 | void arm64_notify_die(const char *str, struct pt_regs *regs, |
| 260 | struct siginfo *info, int err) |
| 261 | { |
Catalin Marinas | 9141300 | 2014-04-06 23:04:12 +0100 | [diff] [blame] | 262 | if (user_mode(regs)) { |
Will Deacon | a1ece82 | 2018-02-20 13:46:05 +0000 | [diff] [blame] | 263 | WARN_ON(regs != current_pt_regs()); |
Catalin Marinas | 9141300 | 2014-04-06 23:04:12 +0100 | [diff] [blame] | 264 | current->thread.fault_address = 0; |
| 265 | current->thread.fault_code = err; |
Will Deacon | a1ece82 | 2018-02-20 13:46:05 +0000 | [diff] [blame] | 266 | arm64_force_sig_info(info, str, current); |
Catalin Marinas | 9141300 | 2014-04-06 23:04:12 +0100 | [diff] [blame] | 267 | } else { |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 268 | die(str, regs, err); |
Catalin Marinas | 9141300 | 2014-04-06 23:04:12 +0100 | [diff] [blame] | 269 | } |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 270 | } |
| 271 | |
Julien Thierry | 6436bee | 2017-10-25 10:04:33 +0100 | [diff] [blame] | 272 | void arm64_skip_faulting_instruction(struct pt_regs *regs, unsigned long size) |
| 273 | { |
| 274 | regs->pc += size; |
| 275 | |
| 276 | /* |
| 277 | * If we were single stepping, we want to get the step exception after |
| 278 | * we return from the trap. |
| 279 | */ |
Mark Rutland | 9478f19 | 2018-04-03 11:22:51 +0100 | [diff] [blame] | 280 | if (user_mode(regs)) |
| 281 | user_fastforward_single_step(current); |
Julien Thierry | 6436bee | 2017-10-25 10:04:33 +0100 | [diff] [blame] | 282 | } |
| 283 | |
Punit Agrawal | 9b79f52 | 2014-11-18 11:41:22 +0000 | [diff] [blame] | 284 | static LIST_HEAD(undef_hook); |
| 285 | static DEFINE_RAW_SPINLOCK(undef_lock); |
| 286 | |
| 287 | void register_undef_hook(struct undef_hook *hook) |
| 288 | { |
| 289 | unsigned long flags; |
| 290 | |
| 291 | raw_spin_lock_irqsave(&undef_lock, flags); |
| 292 | list_add(&hook->node, &undef_hook); |
| 293 | raw_spin_unlock_irqrestore(&undef_lock, flags); |
| 294 | } |
| 295 | |
| 296 | void unregister_undef_hook(struct undef_hook *hook) |
| 297 | { |
| 298 | unsigned long flags; |
| 299 | |
| 300 | raw_spin_lock_irqsave(&undef_lock, flags); |
| 301 | list_del(&hook->node); |
| 302 | raw_spin_unlock_irqrestore(&undef_lock, flags); |
| 303 | } |
| 304 | |
| 305 | static int call_undef_hook(struct pt_regs *regs) |
| 306 | { |
| 307 | struct undef_hook *hook; |
| 308 | unsigned long flags; |
| 309 | u32 instr; |
| 310 | int (*fn)(struct pt_regs *regs, u32 instr) = NULL; |
| 311 | void __user *pc = (void __user *)instruction_pointer(regs); |
| 312 | |
Will Deacon | 0bf0f44 | 2018-08-07 13:43:06 +0100 | [diff] [blame] | 313 | if (!user_mode(regs)) { |
| 314 | __le32 instr_le; |
| 315 | if (probe_kernel_address((__force __le32 *)pc, instr_le)) |
| 316 | goto exit; |
| 317 | instr = le32_to_cpu(instr_le); |
| 318 | } else if (compat_thumb_mode(regs)) { |
Punit Agrawal | 9b79f52 | 2014-11-18 11:41:22 +0000 | [diff] [blame] | 319 | /* 16-bit Thumb instruction */ |
Luc Van Oostenryck | 6cf5d4a | 2017-06-28 16:55:55 +0200 | [diff] [blame] | 320 | __le16 instr_le; |
| 321 | if (get_user(instr_le, (__le16 __user *)pc)) |
Punit Agrawal | 9b79f52 | 2014-11-18 11:41:22 +0000 | [diff] [blame] | 322 | goto exit; |
Luc Van Oostenryck | 6cf5d4a | 2017-06-28 16:55:55 +0200 | [diff] [blame] | 323 | instr = le16_to_cpu(instr_le); |
Punit Agrawal | 9b79f52 | 2014-11-18 11:41:22 +0000 | [diff] [blame] | 324 | if (aarch32_insn_is_wide(instr)) { |
| 325 | u32 instr2; |
| 326 | |
Luc Van Oostenryck | 6cf5d4a | 2017-06-28 16:55:55 +0200 | [diff] [blame] | 327 | if (get_user(instr_le, (__le16 __user *)(pc + 2))) |
Punit Agrawal | 9b79f52 | 2014-11-18 11:41:22 +0000 | [diff] [blame] | 328 | goto exit; |
Luc Van Oostenryck | 6cf5d4a | 2017-06-28 16:55:55 +0200 | [diff] [blame] | 329 | instr2 = le16_to_cpu(instr_le); |
Punit Agrawal | 9b79f52 | 2014-11-18 11:41:22 +0000 | [diff] [blame] | 330 | instr = (instr << 16) | instr2; |
| 331 | } |
| 332 | } else { |
| 333 | /* 32-bit ARM instruction */ |
Luc Van Oostenryck | 6cf5d4a | 2017-06-28 16:55:55 +0200 | [diff] [blame] | 334 | __le32 instr_le; |
| 335 | if (get_user(instr_le, (__le32 __user *)pc)) |
Punit Agrawal | 9b79f52 | 2014-11-18 11:41:22 +0000 | [diff] [blame] | 336 | goto exit; |
Luc Van Oostenryck | 6cf5d4a | 2017-06-28 16:55:55 +0200 | [diff] [blame] | 337 | instr = le32_to_cpu(instr_le); |
Punit Agrawal | 9b79f52 | 2014-11-18 11:41:22 +0000 | [diff] [blame] | 338 | } |
| 339 | |
| 340 | raw_spin_lock_irqsave(&undef_lock, flags); |
| 341 | list_for_each_entry(hook, &undef_hook, node) |
| 342 | if ((instr & hook->instr_mask) == hook->instr_val && |
| 343 | (regs->pstate & hook->pstate_mask) == hook->pstate_val) |
| 344 | fn = hook->fn; |
| 345 | |
| 346 | raw_spin_unlock_irqrestore(&undef_lock, flags); |
| 347 | exit: |
| 348 | return fn ? fn(regs, instr) : 1; |
| 349 | } |
| 350 | |
Will Deacon | 2c9120f3 | 2018-02-20 14:16:29 +0000 | [diff] [blame] | 351 | void force_signal_inject(int signal, int code, unsigned long address) |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 352 | { |
| 353 | siginfo_t info; |
Andre Przywara | 390bf17 | 2016-06-28 18:07:31 +0100 | [diff] [blame] | 354 | const char *desc; |
Will Deacon | 2c9120f3 | 2018-02-20 14:16:29 +0000 | [diff] [blame] | 355 | struct pt_regs *regs = current_pt_regs(); |
| 356 | |
Will Deacon | 8a60419 | 2018-08-14 16:24:54 +0100 | [diff] [blame] | 357 | if (WARN_ON(!user_mode(regs))) |
| 358 | return; |
| 359 | |
Will Deacon | 2c9120f3 | 2018-02-20 14:16:29 +0000 | [diff] [blame] | 360 | clear_siginfo(&info); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 361 | |
Andre Przywara | 390bf17 | 2016-06-28 18:07:31 +0100 | [diff] [blame] | 362 | switch (signal) { |
| 363 | case SIGILL: |
| 364 | desc = "undefined instruction"; |
| 365 | break; |
| 366 | case SIGSEGV: |
| 367 | desc = "illegal memory access"; |
| 368 | break; |
| 369 | default: |
Dave Martin | bc0ee47 | 2017-10-31 15:51:05 +0000 | [diff] [blame] | 370 | desc = "unknown or unrecoverable error"; |
Andre Przywara | 390bf17 | 2016-06-28 18:07:31 +0100 | [diff] [blame] | 371 | break; |
| 372 | } |
| 373 | |
Will Deacon | a7e6f1c | 2018-02-20 18:08:40 +0000 | [diff] [blame] | 374 | /* Force signals we don't understand to SIGKILL */ |
Mark Rutland | b2d71b3 | 2018-04-16 16:45:01 +0100 | [diff] [blame] | 375 | if (WARN_ON(signal != SIGKILL && |
Will Deacon | a7e6f1c | 2018-02-20 18:08:40 +0000 | [diff] [blame] | 376 | siginfo_layout(signal, code) != SIL_FAULT)) { |
| 377 | signal = SIGKILL; |
| 378 | } |
| 379 | |
Andre Przywara | 390bf17 | 2016-06-28 18:07:31 +0100 | [diff] [blame] | 380 | info.si_signo = signal; |
| 381 | info.si_errno = 0; |
| 382 | info.si_code = code; |
Will Deacon | 2c9120f3 | 2018-02-20 14:16:29 +0000 | [diff] [blame] | 383 | info.si_addr = (void __user *)address; |
Andre Przywara | 390bf17 | 2016-06-28 18:07:31 +0100 | [diff] [blame] | 384 | |
| 385 | arm64_notify_die(desc, regs, &info, 0); |
| 386 | } |
| 387 | |
| 388 | /* |
| 389 | * Set up process info to signal segmentation fault - called on access error. |
| 390 | */ |
Will Deacon | 2c9120f3 | 2018-02-20 14:16:29 +0000 | [diff] [blame] | 391 | void arm64_notify_segfault(unsigned long addr) |
Andre Przywara | 390bf17 | 2016-06-28 18:07:31 +0100 | [diff] [blame] | 392 | { |
| 393 | int code; |
| 394 | |
| 395 | down_read(¤t->mm->mmap_sem); |
| 396 | if (find_vma(current->mm, addr) == NULL) |
| 397 | code = SEGV_MAPERR; |
| 398 | else |
| 399 | code = SEGV_ACCERR; |
| 400 | up_read(¤t->mm->mmap_sem); |
| 401 | |
Will Deacon | 2c9120f3 | 2018-02-20 14:16:29 +0000 | [diff] [blame] | 402 | force_signal_inject(SIGSEGV, code, addr); |
Andre Przywara | 390bf17 | 2016-06-28 18:07:31 +0100 | [diff] [blame] | 403 | } |
| 404 | |
| 405 | asmlinkage void __exception do_undefinstr(struct pt_regs *regs) |
| 406 | { |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 407 | /* check for AArch32 breakpoint instructions */ |
Will Deacon | 1442b6e | 2013-03-16 08:48:13 +0000 | [diff] [blame] | 408 | if (!aarch32_break_handler(regs)) |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 409 | return; |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 410 | |
Punit Agrawal | 9b79f52 | 2014-11-18 11:41:22 +0000 | [diff] [blame] | 411 | if (call_undef_hook(regs) == 0) |
| 412 | return; |
| 413 | |
Will Deacon | 0bf0f44 | 2018-08-07 13:43:06 +0100 | [diff] [blame] | 414 | BUG_ON(!user_mode(regs)); |
Will Deacon | 8a60419 | 2018-08-14 16:24:54 +0100 | [diff] [blame] | 415 | force_signal_inject(SIGILL, ILL_ILLOPC, regs->pc); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 416 | } |
| 417 | |
Andre Przywara | 7dd01ae | 2016-06-28 18:07:32 +0100 | [diff] [blame] | 418 | #define __user_cache_maint(insn, address, res) \ |
Kristina Martsenko | 81cddd6 | 2017-05-03 16:37:45 +0100 | [diff] [blame] | 419 | if (address >= user_addr_max()) { \ |
Andre Przywara | 87261d1 | 2016-10-19 14:40:54 +0100 | [diff] [blame] | 420 | res = -EFAULT; \ |
Catalin Marinas | 39bc88e | 2016-09-02 14:54:03 +0100 | [diff] [blame] | 421 | } else { \ |
| 422 | uaccess_ttbr0_enable(); \ |
Andre Przywara | 87261d1 | 2016-10-19 14:40:54 +0100 | [diff] [blame] | 423 | asm volatile ( \ |
| 424 | "1: " insn ", %1\n" \ |
| 425 | " mov %w0, #0\n" \ |
| 426 | "2:\n" \ |
| 427 | " .pushsection .fixup,\"ax\"\n" \ |
| 428 | " .align 2\n" \ |
| 429 | "3: mov %w0, %w2\n" \ |
| 430 | " b 2b\n" \ |
| 431 | " .popsection\n" \ |
| 432 | _ASM_EXTABLE(1b, 3b) \ |
| 433 | : "=r" (res) \ |
Catalin Marinas | 39bc88e | 2016-09-02 14:54:03 +0100 | [diff] [blame] | 434 | : "r" (address), "i" (-EFAULT)); \ |
| 435 | uaccess_ttbr0_disable(); \ |
| 436 | } |
Andre Przywara | 7dd01ae | 2016-06-28 18:07:32 +0100 | [diff] [blame] | 437 | |
Suzuki K Poulose | 9dbd5bb | 2016-09-09 14:07:15 +0100 | [diff] [blame] | 438 | static void user_cache_maint_handler(unsigned int esr, struct pt_regs *regs) |
Andre Przywara | 7dd01ae | 2016-06-28 18:07:32 +0100 | [diff] [blame] | 439 | { |
| 440 | unsigned long address; |
Anshuman Khandual | 1c83914 | 2018-09-20 09:36:19 +0530 | [diff] [blame] | 441 | int rt = ESR_ELx_SYS64_ISS_RT(esr); |
Suzuki K Poulose | 9dbd5bb | 2016-09-09 14:07:15 +0100 | [diff] [blame] | 442 | int crm = (esr & ESR_ELx_SYS64_ISS_CRM_MASK) >> ESR_ELx_SYS64_ISS_CRM_SHIFT; |
| 443 | int ret = 0; |
Andre Przywara | 7dd01ae | 2016-06-28 18:07:32 +0100 | [diff] [blame] | 444 | |
Kristina Martsenko | 81cddd6 | 2017-05-03 16:37:45 +0100 | [diff] [blame] | 445 | address = untagged_addr(pt_regs_read_reg(regs, rt)); |
Andre Przywara | 7dd01ae | 2016-06-28 18:07:32 +0100 | [diff] [blame] | 446 | |
Suzuki K Poulose | 9dbd5bb | 2016-09-09 14:07:15 +0100 | [diff] [blame] | 447 | switch (crm) { |
| 448 | case ESR_ELx_SYS64_ISS_CRM_DC_CVAU: /* DC CVAU, gets promoted */ |
| 449 | __user_cache_maint("dc civac", address, ret); |
| 450 | break; |
| 451 | case ESR_ELx_SYS64_ISS_CRM_DC_CVAC: /* DC CVAC, gets promoted */ |
| 452 | __user_cache_maint("dc civac", address, ret); |
| 453 | break; |
Robin Murphy | e1bc5d1 | 2017-07-25 11:55:41 +0100 | [diff] [blame] | 454 | case ESR_ELx_SYS64_ISS_CRM_DC_CVAP: /* DC CVAP */ |
| 455 | __user_cache_maint("sys 3, c7, c12, 1", address, ret); |
| 456 | break; |
Suzuki K Poulose | 9dbd5bb | 2016-09-09 14:07:15 +0100 | [diff] [blame] | 457 | case ESR_ELx_SYS64_ISS_CRM_DC_CIVAC: /* DC CIVAC */ |
| 458 | __user_cache_maint("dc civac", address, ret); |
| 459 | break; |
| 460 | case ESR_ELx_SYS64_ISS_CRM_IC_IVAU: /* IC IVAU */ |
| 461 | __user_cache_maint("ic ivau", address, ret); |
| 462 | break; |
| 463 | default: |
Will Deacon | 2c9120f3 | 2018-02-20 14:16:29 +0000 | [diff] [blame] | 464 | force_signal_inject(SIGILL, ILL_ILLOPC, regs->pc); |
Andre Przywara | 7dd01ae | 2016-06-28 18:07:32 +0100 | [diff] [blame] | 465 | return; |
| 466 | } |
| 467 | |
| 468 | if (ret) |
Will Deacon | 2c9120f3 | 2018-02-20 14:16:29 +0000 | [diff] [blame] | 469 | arm64_notify_segfault(address); |
Andre Przywara | 7dd01ae | 2016-06-28 18:07:32 +0100 | [diff] [blame] | 470 | else |
Julien Thierry | 6436bee | 2017-10-25 10:04:33 +0100 | [diff] [blame] | 471 | arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE); |
Andre Przywara | 7dd01ae | 2016-06-28 18:07:32 +0100 | [diff] [blame] | 472 | } |
| 473 | |
Suzuki K Poulose | 116c81f | 2016-09-09 14:07:16 +0100 | [diff] [blame] | 474 | static void ctr_read_handler(unsigned int esr, struct pt_regs *regs) |
| 475 | { |
Anshuman Khandual | 1c83914 | 2018-09-20 09:36:19 +0530 | [diff] [blame] | 476 | int rt = ESR_ELx_SYS64_ISS_RT(esr); |
Mark Rutland | 8b6e70f | 2017-02-09 15:19:19 +0000 | [diff] [blame] | 477 | unsigned long val = arm64_ftr_reg_user_value(&arm64_ftr_reg_ctrel0); |
Suzuki K Poulose | 116c81f | 2016-09-09 14:07:16 +0100 | [diff] [blame] | 478 | |
Mark Rutland | 8b6e70f | 2017-02-09 15:19:19 +0000 | [diff] [blame] | 479 | pt_regs_write_reg(regs, rt, val); |
| 480 | |
Julien Thierry | 6436bee | 2017-10-25 10:04:33 +0100 | [diff] [blame] | 481 | arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE); |
Suzuki K Poulose | 116c81f | 2016-09-09 14:07:16 +0100 | [diff] [blame] | 482 | } |
| 483 | |
Marc Zyngier | 6126ce0 | 2017-02-01 11:48:58 +0000 | [diff] [blame] | 484 | static void cntvct_read_handler(unsigned int esr, struct pt_regs *regs) |
| 485 | { |
Anshuman Khandual | 1c83914 | 2018-09-20 09:36:19 +0530 | [diff] [blame] | 486 | int rt = ESR_ELx_SYS64_ISS_RT(esr); |
Marc Zyngier | 6126ce0 | 2017-02-01 11:48:58 +0000 | [diff] [blame] | 487 | |
| 488 | pt_regs_write_reg(regs, rt, arch_counter_get_cntvct()); |
Julien Thierry | 6436bee | 2017-10-25 10:04:33 +0100 | [diff] [blame] | 489 | arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE); |
Marc Zyngier | 6126ce0 | 2017-02-01 11:48:58 +0000 | [diff] [blame] | 490 | } |
| 491 | |
Marc Zyngier | 9842119 | 2017-04-24 09:04:03 +0100 | [diff] [blame] | 492 | static void cntfrq_read_handler(unsigned int esr, struct pt_regs *regs) |
| 493 | { |
Anshuman Khandual | 1c83914 | 2018-09-20 09:36:19 +0530 | [diff] [blame] | 494 | int rt = ESR_ELx_SYS64_ISS_RT(esr); |
Marc Zyngier | 9842119 | 2017-04-24 09:04:03 +0100 | [diff] [blame] | 495 | |
Marc Zyngier | c6f97ad | 2017-07-21 18:15:27 +0100 | [diff] [blame] | 496 | pt_regs_write_reg(regs, rt, arch_timer_get_rate()); |
Julien Thierry | 6436bee | 2017-10-25 10:04:33 +0100 | [diff] [blame] | 497 | arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE); |
Marc Zyngier | 9842119 | 2017-04-24 09:04:03 +0100 | [diff] [blame] | 498 | } |
| 499 | |
Anshuman Khandual | 21f8479 | 2018-09-20 09:36:21 +0530 | [diff] [blame] | 500 | static void mrs_handler(unsigned int esr, struct pt_regs *regs) |
| 501 | { |
| 502 | u32 sysreg, rt; |
| 503 | |
| 504 | rt = ESR_ELx_SYS64_ISS_RT(esr); |
| 505 | sysreg = esr_sys64_to_sysreg(esr); |
| 506 | |
| 507 | if (do_emulate_mrs(regs, sysreg, rt) != 0) |
| 508 | force_signal_inject(SIGILL, ILL_ILLOPC, regs->pc); |
| 509 | } |
| 510 | |
Suzuki K Poulose | 9dbd5bb | 2016-09-09 14:07:15 +0100 | [diff] [blame] | 511 | struct sys64_hook { |
| 512 | unsigned int esr_mask; |
| 513 | unsigned int esr_val; |
| 514 | void (*handler)(unsigned int esr, struct pt_regs *regs); |
| 515 | }; |
| 516 | |
| 517 | static struct sys64_hook sys64_hooks[] = { |
| 518 | { |
| 519 | .esr_mask = ESR_ELx_SYS64_ISS_EL0_CACHE_OP_MASK, |
| 520 | .esr_val = ESR_ELx_SYS64_ISS_EL0_CACHE_OP_VAL, |
| 521 | .handler = user_cache_maint_handler, |
| 522 | }, |
Suzuki K Poulose | 116c81f | 2016-09-09 14:07:16 +0100 | [diff] [blame] | 523 | { |
| 524 | /* Trap read access to CTR_EL0 */ |
| 525 | .esr_mask = ESR_ELx_SYS64_ISS_SYS_OP_MASK, |
| 526 | .esr_val = ESR_ELx_SYS64_ISS_SYS_CTR_READ, |
| 527 | .handler = ctr_read_handler, |
| 528 | }, |
Marc Zyngier | 6126ce0 | 2017-02-01 11:48:58 +0000 | [diff] [blame] | 529 | { |
| 530 | /* Trap read access to CNTVCT_EL0 */ |
| 531 | .esr_mask = ESR_ELx_SYS64_ISS_SYS_OP_MASK, |
| 532 | .esr_val = ESR_ELx_SYS64_ISS_SYS_CNTVCT, |
| 533 | .handler = cntvct_read_handler, |
| 534 | }, |
Marc Zyngier | 9842119 | 2017-04-24 09:04:03 +0100 | [diff] [blame] | 535 | { |
| 536 | /* Trap read access to CNTFRQ_EL0 */ |
| 537 | .esr_mask = ESR_ELx_SYS64_ISS_SYS_OP_MASK, |
| 538 | .esr_val = ESR_ELx_SYS64_ISS_SYS_CNTFRQ, |
| 539 | .handler = cntfrq_read_handler, |
| 540 | }, |
Anshuman Khandual | 21f8479 | 2018-09-20 09:36:21 +0530 | [diff] [blame] | 541 | { |
| 542 | /* Trap read access to CPUID registers */ |
| 543 | .esr_mask = ESR_ELx_SYS64_ISS_SYS_MRS_OP_MASK, |
| 544 | .esr_val = ESR_ELx_SYS64_ISS_SYS_MRS_OP_VAL, |
| 545 | .handler = mrs_handler, |
| 546 | }, |
Suzuki K Poulose | 9dbd5bb | 2016-09-09 14:07:15 +0100 | [diff] [blame] | 547 | {}, |
| 548 | }; |
| 549 | |
Marc Zyngier | 70c63cd | 2018-09-27 17:15:29 +0100 | [diff] [blame] | 550 | |
| 551 | #ifdef CONFIG_COMPAT |
Marc Zyngier | 1f1c014 | 2018-09-27 17:15:30 +0100 | [diff] [blame] | 552 | #define PSTATE_IT_1_0_SHIFT 25 |
| 553 | #define PSTATE_IT_1_0_MASK (0x3 << PSTATE_IT_1_0_SHIFT) |
| 554 | #define PSTATE_IT_7_2_SHIFT 10 |
| 555 | #define PSTATE_IT_7_2_MASK (0x3f << PSTATE_IT_7_2_SHIFT) |
| 556 | |
| 557 | static u32 compat_get_it_state(struct pt_regs *regs) |
| 558 | { |
| 559 | u32 it, pstate = regs->pstate; |
| 560 | |
| 561 | it = (pstate & PSTATE_IT_1_0_MASK) >> PSTATE_IT_1_0_SHIFT; |
| 562 | it |= ((pstate & PSTATE_IT_7_2_MASK) >> PSTATE_IT_7_2_SHIFT) << 2; |
| 563 | |
| 564 | return it; |
| 565 | } |
| 566 | |
| 567 | static void compat_set_it_state(struct pt_regs *regs, u32 it) |
| 568 | { |
| 569 | u32 pstate_it; |
| 570 | |
| 571 | pstate_it = (it << PSTATE_IT_1_0_SHIFT) & PSTATE_IT_1_0_MASK; |
| 572 | pstate_it |= ((it >> 2) << PSTATE_IT_7_2_SHIFT) & PSTATE_IT_7_2_MASK; |
| 573 | |
| 574 | regs->pstate &= ~PSR_AA32_IT_MASK; |
| 575 | regs->pstate |= pstate_it; |
| 576 | } |
| 577 | |
| 578 | static bool cp15_cond_valid(unsigned int esr, struct pt_regs *regs) |
| 579 | { |
| 580 | int cond; |
| 581 | |
| 582 | /* Only a T32 instruction can trap without CV being set */ |
| 583 | if (!(esr & ESR_ELx_CV)) { |
| 584 | u32 it; |
| 585 | |
| 586 | it = compat_get_it_state(regs); |
| 587 | if (!it) |
| 588 | return true; |
| 589 | |
| 590 | cond = it >> 4; |
| 591 | } else { |
| 592 | cond = (esr & ESR_ELx_COND_MASK) >> ESR_ELx_COND_SHIFT; |
| 593 | } |
| 594 | |
| 595 | return aarch32_opcode_cond_checks[cond](regs->pstate); |
| 596 | } |
| 597 | |
| 598 | static void advance_itstate(struct pt_regs *regs) |
| 599 | { |
| 600 | u32 it; |
| 601 | |
| 602 | /* ARM mode */ |
| 603 | if (!(regs->pstate & PSR_AA32_T_BIT) || |
| 604 | !(regs->pstate & PSR_AA32_IT_MASK)) |
| 605 | return; |
| 606 | |
| 607 | it = compat_get_it_state(regs); |
| 608 | |
| 609 | /* |
| 610 | * If this is the last instruction of the block, wipe the IT |
| 611 | * state. Otherwise advance it. |
| 612 | */ |
| 613 | if (!(it & 7)) |
| 614 | it = 0; |
| 615 | else |
| 616 | it = (it & 0xe0) | ((it << 1) & 0x1f); |
| 617 | |
| 618 | compat_set_it_state(regs, it); |
| 619 | } |
| 620 | |
| 621 | static void arm64_compat_skip_faulting_instruction(struct pt_regs *regs, |
| 622 | unsigned int sz) |
| 623 | { |
| 624 | advance_itstate(regs); |
| 625 | arm64_skip_faulting_instruction(regs, sz); |
| 626 | } |
| 627 | |
Marc Zyngier | 2a8905e | 2018-09-27 17:15:31 +0100 | [diff] [blame^] | 628 | static struct sys64_hook cp15_32_hooks[] = { |
| 629 | {}, |
| 630 | }; |
| 631 | |
| 632 | static struct sys64_hook cp15_64_hooks[] = { |
| 633 | {}, |
| 634 | }; |
| 635 | |
Marc Zyngier | 70c63cd | 2018-09-27 17:15:29 +0100 | [diff] [blame] | 636 | asmlinkage void __exception do_cp15instr(unsigned int esr, struct pt_regs *regs) |
| 637 | { |
Marc Zyngier | 2a8905e | 2018-09-27 17:15:31 +0100 | [diff] [blame^] | 638 | struct sys64_hook *hook, *hook_base; |
| 639 | |
Marc Zyngier | 1f1c014 | 2018-09-27 17:15:30 +0100 | [diff] [blame] | 640 | if (!cp15_cond_valid(esr, regs)) { |
| 641 | /* |
| 642 | * There is no T16 variant of a CP access, so we |
| 643 | * always advance PC by 4 bytes. |
| 644 | */ |
| 645 | arm64_compat_skip_faulting_instruction(regs, 4); |
| 646 | return; |
| 647 | } |
| 648 | |
Marc Zyngier | 2a8905e | 2018-09-27 17:15:31 +0100 | [diff] [blame^] | 649 | switch (ESR_ELx_EC(esr)) { |
| 650 | case ESR_ELx_EC_CP15_32: |
| 651 | hook_base = cp15_32_hooks; |
| 652 | break; |
| 653 | case ESR_ELx_EC_CP15_64: |
| 654 | hook_base = cp15_64_hooks; |
| 655 | break; |
| 656 | default: |
| 657 | do_undefinstr(regs); |
| 658 | return; |
| 659 | } |
| 660 | |
| 661 | for (hook = hook_base; hook->handler; hook++) |
| 662 | if ((hook->esr_mask & esr) == hook->esr_val) { |
| 663 | hook->handler(esr, regs); |
| 664 | return; |
| 665 | } |
| 666 | |
Marc Zyngier | 70c63cd | 2018-09-27 17:15:29 +0100 | [diff] [blame] | 667 | /* |
| 668 | * New cp15 instructions may previously have been undefined at |
| 669 | * EL0. Fall back to our usual undefined instruction handler |
| 670 | * so that we handle these consistently. |
| 671 | */ |
| 672 | do_undefinstr(regs); |
| 673 | } |
| 674 | #endif |
| 675 | |
Suzuki K Poulose | 9dbd5bb | 2016-09-09 14:07:15 +0100 | [diff] [blame] | 676 | asmlinkage void __exception do_sysinstr(unsigned int esr, struct pt_regs *regs) |
| 677 | { |
| 678 | struct sys64_hook *hook; |
| 679 | |
| 680 | for (hook = sys64_hooks; hook->handler; hook++) |
| 681 | if ((hook->esr_mask & esr) == hook->esr_val) { |
| 682 | hook->handler(esr, regs); |
| 683 | return; |
| 684 | } |
| 685 | |
Mark Rutland | 49f6cba | 2017-01-27 16:15:38 +0000 | [diff] [blame] | 686 | /* |
| 687 | * New SYS instructions may previously have been undefined at EL0. Fall |
| 688 | * back to our usual undefined instruction handler so that we handle |
| 689 | * these consistently. |
| 690 | */ |
| 691 | do_undefinstr(regs); |
Suzuki K Poulose | 9dbd5bb | 2016-09-09 14:07:15 +0100 | [diff] [blame] | 692 | } |
| 693 | |
Mark Rutland | 60a1f02 | 2014-11-18 12:16:30 +0000 | [diff] [blame] | 694 | static const char *esr_class_str[] = { |
| 695 | [0 ... ESR_ELx_EC_MAX] = "UNRECOGNIZED EC", |
| 696 | [ESR_ELx_EC_UNKNOWN] = "Unknown/Uncategorized", |
| 697 | [ESR_ELx_EC_WFx] = "WFI/WFE", |
| 698 | [ESR_ELx_EC_CP15_32] = "CP15 MCR/MRC", |
| 699 | [ESR_ELx_EC_CP15_64] = "CP15 MCRR/MRRC", |
| 700 | [ESR_ELx_EC_CP14_MR] = "CP14 MCR/MRC", |
| 701 | [ESR_ELx_EC_CP14_LS] = "CP14 LDC/STC", |
| 702 | [ESR_ELx_EC_FP_ASIMD] = "ASIMD", |
| 703 | [ESR_ELx_EC_CP10_ID] = "CP10 MRC/VMRS", |
| 704 | [ESR_ELx_EC_CP14_64] = "CP14 MCRR/MRRC", |
| 705 | [ESR_ELx_EC_ILL] = "PSTATE.IL", |
| 706 | [ESR_ELx_EC_SVC32] = "SVC (AArch32)", |
| 707 | [ESR_ELx_EC_HVC32] = "HVC (AArch32)", |
| 708 | [ESR_ELx_EC_SMC32] = "SMC (AArch32)", |
| 709 | [ESR_ELx_EC_SVC64] = "SVC (AArch64)", |
| 710 | [ESR_ELx_EC_HVC64] = "HVC (AArch64)", |
| 711 | [ESR_ELx_EC_SMC64] = "SMC (AArch64)", |
| 712 | [ESR_ELx_EC_SYS64] = "MSR/MRS (AArch64)", |
Dave Martin | 6723656 | 2017-10-31 15:51:00 +0000 | [diff] [blame] | 713 | [ESR_ELx_EC_SVE] = "SVE", |
Mark Rutland | 60a1f02 | 2014-11-18 12:16:30 +0000 | [diff] [blame] | 714 | [ESR_ELx_EC_IMP_DEF] = "EL3 IMP DEF", |
| 715 | [ESR_ELx_EC_IABT_LOW] = "IABT (lower EL)", |
| 716 | [ESR_ELx_EC_IABT_CUR] = "IABT (current EL)", |
| 717 | [ESR_ELx_EC_PC_ALIGN] = "PC Alignment", |
| 718 | [ESR_ELx_EC_DABT_LOW] = "DABT (lower EL)", |
| 719 | [ESR_ELx_EC_DABT_CUR] = "DABT (current EL)", |
| 720 | [ESR_ELx_EC_SP_ALIGN] = "SP Alignment", |
| 721 | [ESR_ELx_EC_FP_EXC32] = "FP (AArch32)", |
| 722 | [ESR_ELx_EC_FP_EXC64] = "FP (AArch64)", |
| 723 | [ESR_ELx_EC_SERROR] = "SError", |
| 724 | [ESR_ELx_EC_BREAKPT_LOW] = "Breakpoint (lower EL)", |
| 725 | [ESR_ELx_EC_BREAKPT_CUR] = "Breakpoint (current EL)", |
| 726 | [ESR_ELx_EC_SOFTSTP_LOW] = "Software Step (lower EL)", |
| 727 | [ESR_ELx_EC_SOFTSTP_CUR] = "Software Step (current EL)", |
| 728 | [ESR_ELx_EC_WATCHPT_LOW] = "Watchpoint (lower EL)", |
| 729 | [ESR_ELx_EC_WATCHPT_CUR] = "Watchpoint (current EL)", |
| 730 | [ESR_ELx_EC_BKPT32] = "BKPT (AArch32)", |
| 731 | [ESR_ELx_EC_VECTOR32] = "Vector catch (AArch32)", |
| 732 | [ESR_ELx_EC_BRK64] = "BRK (AArch64)", |
| 733 | }; |
| 734 | |
| 735 | const char *esr_get_class_string(u32 esr) |
| 736 | { |
Mark Rutland | 275f344 | 2016-05-31 12:33:01 +0100 | [diff] [blame] | 737 | return esr_class_str[ESR_ELx_EC(esr)]; |
Mark Rutland | 60a1f02 | 2014-11-18 12:16:30 +0000 | [diff] [blame] | 738 | } |
| 739 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 740 | /* |
Mark Rutland | 7d9e8f7 | 2017-01-18 17:23:41 +0000 | [diff] [blame] | 741 | * bad_mode handles the impossible case in the exception vector. This is always |
| 742 | * fatal. |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 743 | */ |
| 744 | asmlinkage void bad_mode(struct pt_regs *regs, int reason, unsigned int esr) |
| 745 | { |
| 746 | console_verbose(); |
| 747 | |
Mark Rutland | 8051f4d | 2016-05-31 12:07:47 +0100 | [diff] [blame] | 748 | pr_crit("Bad mode in %s handler detected on CPU%d, code 0x%08x -- %s\n", |
| 749 | handler[reason], smp_processor_id(), esr, |
| 750 | esr_get_class_string(esr)); |
Mark Rutland | 7d9e8f7 | 2017-01-18 17:23:41 +0000 | [diff] [blame] | 751 | |
James Morse | 0fbeb31 | 2017-11-02 12:12:34 +0000 | [diff] [blame] | 752 | local_daif_mask(); |
Mark Rutland | 7d9e8f7 | 2017-01-18 17:23:41 +0000 | [diff] [blame] | 753 | panic("bad mode"); |
| 754 | } |
| 755 | |
| 756 | /* |
| 757 | * bad_el0_sync handles unexpected, but potentially recoverable synchronous |
| 758 | * exceptions taken from EL0. Unlike bad_mode, this returns. |
| 759 | */ |
| 760 | asmlinkage void bad_el0_sync(struct pt_regs *regs, int reason, unsigned int esr) |
| 761 | { |
| 762 | siginfo_t info; |
| 763 | void __user *pc = (void __user *)instruction_pointer(regs); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 764 | |
Eric W. Biederman | 3eb0f51 | 2018-04-17 15:26:37 -0500 | [diff] [blame] | 765 | clear_siginfo(&info); |
Mark Rutland | 9955ac4 | 2013-05-28 15:54:15 +0100 | [diff] [blame] | 766 | info.si_signo = SIGILL; |
| 767 | info.si_errno = 0; |
| 768 | info.si_code = ILL_ILLOPC; |
| 769 | info.si_addr = pc; |
| 770 | |
Mark Rutland | 7d9e8f7 | 2017-01-18 17:23:41 +0000 | [diff] [blame] | 771 | current->thread.fault_address = 0; |
Will Deacon | 4e829b6 | 2018-02-20 15:18:13 +0000 | [diff] [blame] | 772 | current->thread.fault_code = esr; |
Mark Rutland | 7d9e8f7 | 2017-01-18 17:23:41 +0000 | [diff] [blame] | 773 | |
Will Deacon | 4e829b6 | 2018-02-20 15:18:13 +0000 | [diff] [blame] | 774 | arm64_force_sig_info(&info, "Bad EL0 synchronous exception", current); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 775 | } |
| 776 | |
Mark Rutland | 872d832 | 2017-07-14 20:30:35 +0100 | [diff] [blame] | 777 | #ifdef CONFIG_VMAP_STACK |
| 778 | |
| 779 | DEFINE_PER_CPU(unsigned long [OVERFLOW_STACK_SIZE/sizeof(long)], overflow_stack) |
| 780 | __aligned(16); |
| 781 | |
| 782 | asmlinkage void handle_bad_stack(struct pt_regs *regs) |
| 783 | { |
| 784 | unsigned long tsk_stk = (unsigned long)current->stack; |
| 785 | unsigned long irq_stk = (unsigned long)this_cpu_read(irq_stack_ptr); |
| 786 | unsigned long ovf_stk = (unsigned long)this_cpu_ptr(overflow_stack); |
| 787 | unsigned int esr = read_sysreg(esr_el1); |
| 788 | unsigned long far = read_sysreg(far_el1); |
| 789 | |
| 790 | console_verbose(); |
| 791 | pr_emerg("Insufficient stack space to handle exception!"); |
| 792 | |
| 793 | pr_emerg("ESR: 0x%08x -- %s\n", esr, esr_get_class_string(esr)); |
| 794 | pr_emerg("FAR: 0x%016lx\n", far); |
| 795 | |
| 796 | pr_emerg("Task stack: [0x%016lx..0x%016lx]\n", |
| 797 | tsk_stk, tsk_stk + THREAD_SIZE); |
| 798 | pr_emerg("IRQ stack: [0x%016lx..0x%016lx]\n", |
| 799 | irq_stk, irq_stk + THREAD_SIZE); |
| 800 | pr_emerg("Overflow stack: [0x%016lx..0x%016lx]\n", |
| 801 | ovf_stk, ovf_stk + OVERFLOW_STACK_SIZE); |
| 802 | |
| 803 | __show_regs(regs); |
| 804 | |
| 805 | /* |
| 806 | * We use nmi_panic to limit the potential for recusive overflows, and |
| 807 | * to get a better stack trace. |
| 808 | */ |
| 809 | nmi_panic(NULL, "kernel stack overflow"); |
| 810 | cpu_park_loop(); |
| 811 | } |
| 812 | #endif |
| 813 | |
James Morse | 6bf0dcf | 2018-01-15 19:38:57 +0000 | [diff] [blame] | 814 | void __noreturn arm64_serror_panic(struct pt_regs *regs, u32 esr) |
Xie XiuQi | a92d4d1 | 2017-11-02 12:12:42 +0000 | [diff] [blame] | 815 | { |
Xie XiuQi | a92d4d1 | 2017-11-02 12:12:42 +0000 | [diff] [blame] | 816 | console_verbose(); |
| 817 | |
| 818 | pr_crit("SError Interrupt on CPU%d, code 0x%08x -- %s\n", |
| 819 | smp_processor_id(), esr, esr_get_class_string(esr)); |
James Morse | 6bf0dcf | 2018-01-15 19:38:57 +0000 | [diff] [blame] | 820 | if (regs) |
| 821 | __show_regs(regs); |
Xie XiuQi | a92d4d1 | 2017-11-02 12:12:42 +0000 | [diff] [blame] | 822 | |
James Morse | 6bf0dcf | 2018-01-15 19:38:57 +0000 | [diff] [blame] | 823 | nmi_panic(regs, "Asynchronous SError Interrupt"); |
| 824 | |
| 825 | cpu_park_loop(); |
| 826 | unreachable(); |
| 827 | } |
| 828 | |
| 829 | bool arm64_is_fatal_ras_serror(struct pt_regs *regs, unsigned int esr) |
| 830 | { |
| 831 | u32 aet = arm64_ras_serror_get_severity(esr); |
| 832 | |
| 833 | switch (aet) { |
| 834 | case ESR_ELx_AET_CE: /* corrected error */ |
| 835 | case ESR_ELx_AET_UEO: /* restartable, not yet consumed */ |
| 836 | /* |
| 837 | * The CPU can make progress. We may take UEO again as |
| 838 | * a more severe error. |
| 839 | */ |
| 840 | return false; |
| 841 | |
| 842 | case ESR_ELx_AET_UEU: /* Uncorrected Unrecoverable */ |
| 843 | case ESR_ELx_AET_UER: /* Uncorrected Recoverable */ |
| 844 | /* |
| 845 | * The CPU can't make progress. The exception may have |
| 846 | * been imprecise. |
| 847 | */ |
| 848 | return true; |
| 849 | |
| 850 | case ESR_ELx_AET_UC: /* Uncontainable or Uncategorized error */ |
| 851 | default: |
| 852 | /* Error has been silently propagated */ |
| 853 | arm64_serror_panic(regs, esr); |
| 854 | } |
| 855 | } |
| 856 | |
| 857 | asmlinkage void do_serror(struct pt_regs *regs, unsigned int esr) |
| 858 | { |
| 859 | nmi_enter(); |
| 860 | |
| 861 | /* non-RAS errors are not containable */ |
| 862 | if (!arm64_is_ras_serror(esr) || arm64_is_fatal_ras_serror(regs, esr)) |
| 863 | arm64_serror_panic(regs, esr); |
| 864 | |
| 865 | nmi_exit(); |
Xie XiuQi | a92d4d1 | 2017-11-02 12:12:42 +0000 | [diff] [blame] | 866 | } |
| 867 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 868 | void __pte_error(const char *file, int line, unsigned long val) |
| 869 | { |
Will Deacon | c9cd0ed | 2015-12-21 16:44:27 +0000 | [diff] [blame] | 870 | pr_err("%s:%d: bad pte %016lx.\n", file, line, val); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 871 | } |
| 872 | |
| 873 | void __pmd_error(const char *file, int line, unsigned long val) |
| 874 | { |
Will Deacon | c9cd0ed | 2015-12-21 16:44:27 +0000 | [diff] [blame] | 875 | pr_err("%s:%d: bad pmd %016lx.\n", file, line, val); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 876 | } |
| 877 | |
Jungseok Lee | c79b954b | 2014-05-12 18:40:51 +0900 | [diff] [blame] | 878 | void __pud_error(const char *file, int line, unsigned long val) |
| 879 | { |
Will Deacon | c9cd0ed | 2015-12-21 16:44:27 +0000 | [diff] [blame] | 880 | pr_err("%s:%d: bad pud %016lx.\n", file, line, val); |
Jungseok Lee | c79b954b | 2014-05-12 18:40:51 +0900 | [diff] [blame] | 881 | } |
| 882 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 883 | void __pgd_error(const char *file, int line, unsigned long val) |
| 884 | { |
Will Deacon | c9cd0ed | 2015-12-21 16:44:27 +0000 | [diff] [blame] | 885 | pr_err("%s:%d: bad pgd %016lx.\n", file, line, val); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 886 | } |
| 887 | |
Dave P Martin | 9fb7410 | 2015-07-24 16:37:48 +0100 | [diff] [blame] | 888 | /* GENERIC_BUG traps */ |
| 889 | |
| 890 | int is_valid_bugaddr(unsigned long addr) |
| 891 | { |
| 892 | /* |
| 893 | * bug_handler() only called for BRK #BUG_BRK_IMM. |
| 894 | * So the answer is trivial -- any spurious instances with no |
| 895 | * bug table entry will be rejected by report_bug() and passed |
| 896 | * back to the debug-monitors code and handled as a fatal |
| 897 | * unexpected debug exception. |
| 898 | */ |
| 899 | return 1; |
| 900 | } |
| 901 | |
| 902 | static int bug_handler(struct pt_regs *regs, unsigned int esr) |
| 903 | { |
| 904 | if (user_mode(regs)) |
| 905 | return DBG_HOOK_ERROR; |
| 906 | |
| 907 | switch (report_bug(regs->pc, regs)) { |
| 908 | case BUG_TRAP_TYPE_BUG: |
| 909 | die("Oops - BUG", regs, 0); |
| 910 | break; |
| 911 | |
| 912 | case BUG_TRAP_TYPE_WARN: |
| 913 | break; |
| 914 | |
| 915 | default: |
| 916 | /* unknown/unrecognised bug trap type */ |
| 917 | return DBG_HOOK_ERROR; |
| 918 | } |
| 919 | |
| 920 | /* If thread survives, skip over the BUG instruction and continue: */ |
Julien Thierry | 6436bee | 2017-10-25 10:04:33 +0100 | [diff] [blame] | 921 | arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE); |
Dave P Martin | 9fb7410 | 2015-07-24 16:37:48 +0100 | [diff] [blame] | 922 | return DBG_HOOK_HANDLED; |
| 923 | } |
| 924 | |
| 925 | static struct break_hook bug_break_hook = { |
| 926 | .esr_val = 0xf2000000 | BUG_BRK_IMM, |
| 927 | .esr_mask = 0xffffffff, |
| 928 | .fn = bug_handler, |
| 929 | }; |
| 930 | |
| 931 | /* |
| 932 | * Initial handler for AArch64 BRK exceptions |
| 933 | * This handler only used until debug_traps_init(). |
| 934 | */ |
| 935 | int __init early_brk64(unsigned long addr, unsigned int esr, |
| 936 | struct pt_regs *regs) |
| 937 | { |
| 938 | return bug_handler(regs, esr) != DBG_HOOK_HANDLED; |
| 939 | } |
| 940 | |
| 941 | /* This registration must happen early, before debug_traps_init(). */ |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 942 | void __init trap_init(void) |
| 943 | { |
Dave P Martin | 9fb7410 | 2015-07-24 16:37:48 +0100 | [diff] [blame] | 944 | register_break_hook(&bug_break_hook); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 945 | } |