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> |
James Morse | 0fbeb31 | 2017-11-02 12:12:34 +0000 | [diff] [blame] | 41 | #include <asm/daifflags.h> |
Will Deacon | 1442b6e | 2013-03-16 08:48:13 +0000 | [diff] [blame] | 42 | #include <asm/debug-monitors.h> |
Mark Rutland | 60a1f02 | 2014-11-18 12:16:30 +0000 | [diff] [blame] | 43 | #include <asm/esr.h> |
Dave P Martin | 9fb7410 | 2015-07-24 16:37:48 +0100 | [diff] [blame] | 44 | #include <asm/insn.h> |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 45 | #include <asm/traps.h> |
Mark Rutland | 872d832 | 2017-07-14 20:30:35 +0100 | [diff] [blame] | 46 | #include <asm/smp.h> |
Mark Rutland | a9ea001 | 2016-11-03 20:23:05 +0000 | [diff] [blame] | 47 | #include <asm/stack_pointer.h> |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 48 | #include <asm/stacktrace.h> |
| 49 | #include <asm/exception.h> |
| 50 | #include <asm/system_misc.h> |
Andre Przywara | 7dd01ae | 2016-06-28 18:07:32 +0100 | [diff] [blame] | 51 | #include <asm/sysreg.h> |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 52 | |
| 53 | static const char *handler[]= { |
| 54 | "Synchronous Abort", |
| 55 | "IRQ", |
| 56 | "FIQ", |
| 57 | "Error" |
| 58 | }; |
| 59 | |
| 60 | int show_unhandled_signals = 1; |
| 61 | |
Jungseok Lee | 9f93f3e | 2015-10-17 14:28:11 +0000 | [diff] [blame] | 62 | static void dump_backtrace_entry(unsigned long where) |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 63 | { |
Will Deacon | a25ffd3 | 2017-10-19 13:19:20 +0100 | [diff] [blame] | 64 | printk(" %pS\n", (void *)where); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 65 | } |
| 66 | |
Mark Rutland | c5cea06 | 2016-06-13 11:15:14 +0100 | [diff] [blame] | 67 | static void __dump_instr(const char *lvl, struct pt_regs *regs) |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 68 | { |
| 69 | unsigned long addr = instruction_pointer(regs); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 70 | char str[sizeof("00000000 ") * 5 + 2 + 1], *p = str; |
| 71 | int i; |
| 72 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 73 | for (i = -4; i < 1; i++) { |
| 74 | unsigned int val, bad; |
| 75 | |
| 76 | bad = __get_user(val, &((u32 *)addr)[i]); |
| 77 | |
| 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 Rutland | c5cea06 | 2016-06-13 11:15:14 +0100 | [diff] [blame] | 86 | } |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 87 | |
Mark Rutland | c5cea06 | 2016-06-13 11:15:14 +0100 | [diff] [blame] | 88 | static 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 Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 98 | } |
| 99 | |
Kefeng Wang | 1149aad | 2017-05-09 09:53:37 +0800 | [diff] [blame] | 100 | void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk) |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 101 | { |
| 102 | struct stackframe frame; |
AKASHI Takahiro | 20380bb | 2015-12-15 17:33:41 +0900 | [diff] [blame] | 103 | int skip; |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 104 | |
Mark Rutland | b5e7307 | 2016-09-23 17:55:05 +0100 | [diff] [blame] | 105 | pr_debug("%s(regs = %p tsk = %p)\n", __func__, regs, tsk); |
| 106 | |
| 107 | if (!tsk) |
| 108 | tsk = current; |
| 109 | |
Mark Rutland | 9bbd4c5 | 2016-11-03 20:23:08 +0000 | [diff] [blame] | 110 | if (!try_get_task_stack(tsk)) |
| 111 | return; |
| 112 | |
AKASHI Takahiro | 20380bb | 2015-12-15 17:33:41 +0900 | [diff] [blame] | 113 | if (tsk == current) { |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 114 | frame.fp = (unsigned long)__builtin_frame_address(0); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 115 | frame.pc = (unsigned long)dump_backtrace; |
| 116 | } else { |
| 117 | /* |
| 118 | * task blocked in __switch_to |
| 119 | */ |
| 120 | frame.fp = thread_saved_fp(tsk); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 121 | frame.pc = thread_saved_pc(tsk); |
| 122 | } |
AKASHI Takahiro | 20380bb | 2015-12-15 17:33:41 +0900 | [diff] [blame] | 123 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
| 124 | frame.graph = tsk->curr_ret_stack; |
| 125 | #endif |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 126 | |
AKASHI Takahiro | 20380bb | 2015-12-15 17:33:41 +0900 | [diff] [blame] | 127 | skip = !!regs; |
Will Deacon | c9cd0ed | 2015-12-21 16:44:27 +0000 | [diff] [blame] | 128 | printk("Call trace:\n"); |
Will Deacon | a25ffd3 | 2017-10-19 13:19:20 +0100 | [diff] [blame] | 129 | do { |
AKASHI Takahiro | 20380bb | 2015-12-15 17:33:41 +0900 | [diff] [blame] | 130 | /* skip until specified stack frame */ |
| 131 | if (!skip) { |
Ard Biesheuvel | 7326749 | 2017-07-22 18:45:33 +0100 | [diff] [blame] | 132 | dump_backtrace_entry(frame.pc); |
AKASHI Takahiro | 20380bb | 2015-12-15 17:33:41 +0900 | [diff] [blame] | 133 | } 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 Deacon | a25ffd3 | 2017-10-19 13:19:20 +0100 | [diff] [blame] | 144 | } while (!unwind_frame(tsk, &frame)); |
Mark Rutland | 9bbd4c5 | 2016-11-03 20:23:08 +0000 | [diff] [blame] | 145 | |
| 146 | put_task_stack(tsk); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 147 | } |
| 148 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 149 | void 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 Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 160 | #define S_SMP " SMP" |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 161 | |
Mark Rutland | 876e7a3 | 2016-11-03 20:23:06 +0000 | [diff] [blame] | 162 | static int __die(const char *str, int err, struct pt_regs *regs) |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 163 | { |
Mark Rutland | 876e7a3 | 2016-11-03 20:23:06 +0000 | [diff] [blame] | 164 | struct task_struct *tsk = current; |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 165 | 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 Rutland | 876e7a3 | 2016-11-03 20:23:06 +0000 | [diff] [blame] | 179 | TASK_COMM_LEN, tsk->comm, task_pid_nr(tsk), |
| 180 | end_of_stack(tsk)); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 181 | |
Mark Rutland | 7ceb3a1 | 2016-06-13 11:15:15 +0100 | [diff] [blame] | 182 | if (!user_mode(regs)) { |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 183 | dump_backtrace(regs, tsk); |
| 184 | dump_instr(KERN_EMERG, regs); |
| 185 | } |
| 186 | |
| 187 | return ret; |
| 188 | } |
| 189 | |
| 190 | static DEFINE_RAW_SPINLOCK(die_lock); |
| 191 | |
| 192 | /* |
| 193 | * This function is protected against re-entrancy. |
| 194 | */ |
| 195 | void die(const char *str, struct pt_regs *regs, int err) |
| 196 | { |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 197 | int ret; |
Qiao Zhou | 6f44a0b | 2017-07-07 17:29:34 +0800 | [diff] [blame] | 198 | unsigned long flags; |
| 199 | |
| 200 | raw_spin_lock_irqsave(&die_lock, flags); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 201 | |
| 202 | oops_enter(); |
| 203 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 204 | console_verbose(); |
| 205 | bust_spinlocks(1); |
Mark Rutland | 876e7a3 | 2016-11-03 20:23:06 +0000 | [diff] [blame] | 206 | ret = __die(str, err, regs); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 207 | |
Mark Rutland | 876e7a3 | 2016-11-03 20:23:06 +0000 | [diff] [blame] | 208 | if (regs && kexec_should_crash(current)) |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 209 | crash_kexec(regs); |
| 210 | |
| 211 | bust_spinlocks(0); |
Rusty Russell | 373d4d0 | 2013-01-21 17:17:39 +1030 | [diff] [blame] | 212 | add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 213 | oops_exit(); |
| 214 | |
| 215 | if (in_interrupt()) |
| 216 | panic("Fatal exception in interrupt"); |
| 217 | if (panic_on_oops) |
| 218 | panic("Fatal exception"); |
Qiao Zhou | 6f44a0b | 2017-07-07 17:29:34 +0800 | [diff] [blame] | 219 | |
| 220 | raw_spin_unlock_irqrestore(&die_lock, flags); |
| 221 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 222 | if (ret != NOTIFY_STOP) |
| 223 | do_exit(SIGSEGV); |
| 224 | } |
| 225 | |
| 226 | void arm64_notify_die(const char *str, struct pt_regs *regs, |
| 227 | struct siginfo *info, int err) |
| 228 | { |
Catalin Marinas | 9141300 | 2014-04-06 23:04:12 +0100 | [diff] [blame] | 229 | if (user_mode(regs)) { |
| 230 | current->thread.fault_address = 0; |
| 231 | current->thread.fault_code = err; |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 232 | force_sig_info(info->si_signo, info, current); |
Catalin Marinas | 9141300 | 2014-04-06 23:04:12 +0100 | [diff] [blame] | 233 | } else { |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 234 | die(str, regs, err); |
Catalin Marinas | 9141300 | 2014-04-06 23:04:12 +0100 | [diff] [blame] | 235 | } |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 236 | } |
| 237 | |
Julien Thierry | 6436bee | 2017-10-25 10:04:33 +0100 | [diff] [blame] | 238 | void arm64_skip_faulting_instruction(struct pt_regs *regs, unsigned long size) |
| 239 | { |
| 240 | regs->pc += size; |
| 241 | |
| 242 | /* |
| 243 | * If we were single stepping, we want to get the step exception after |
| 244 | * we return from the trap. |
| 245 | */ |
| 246 | user_fastforward_single_step(current); |
| 247 | } |
| 248 | |
Punit Agrawal | 9b79f52 | 2014-11-18 11:41:22 +0000 | [diff] [blame] | 249 | static LIST_HEAD(undef_hook); |
| 250 | static DEFINE_RAW_SPINLOCK(undef_lock); |
| 251 | |
| 252 | void register_undef_hook(struct undef_hook *hook) |
| 253 | { |
| 254 | unsigned long flags; |
| 255 | |
| 256 | raw_spin_lock_irqsave(&undef_lock, flags); |
| 257 | list_add(&hook->node, &undef_hook); |
| 258 | raw_spin_unlock_irqrestore(&undef_lock, flags); |
| 259 | } |
| 260 | |
| 261 | void unregister_undef_hook(struct undef_hook *hook) |
| 262 | { |
| 263 | unsigned long flags; |
| 264 | |
| 265 | raw_spin_lock_irqsave(&undef_lock, flags); |
| 266 | list_del(&hook->node); |
| 267 | raw_spin_unlock_irqrestore(&undef_lock, flags); |
| 268 | } |
| 269 | |
| 270 | static int call_undef_hook(struct pt_regs *regs) |
| 271 | { |
| 272 | struct undef_hook *hook; |
| 273 | unsigned long flags; |
| 274 | u32 instr; |
| 275 | int (*fn)(struct pt_regs *regs, u32 instr) = NULL; |
| 276 | void __user *pc = (void __user *)instruction_pointer(regs); |
| 277 | |
| 278 | if (!user_mode(regs)) |
| 279 | return 1; |
| 280 | |
| 281 | if (compat_thumb_mode(regs)) { |
| 282 | /* 16-bit Thumb instruction */ |
Luc Van Oostenryck | 6cf5d4a | 2017-06-28 16:55:55 +0200 | [diff] [blame] | 283 | __le16 instr_le; |
| 284 | if (get_user(instr_le, (__le16 __user *)pc)) |
Punit Agrawal | 9b79f52 | 2014-11-18 11:41:22 +0000 | [diff] [blame] | 285 | goto exit; |
Luc Van Oostenryck | 6cf5d4a | 2017-06-28 16:55:55 +0200 | [diff] [blame] | 286 | instr = le16_to_cpu(instr_le); |
Punit Agrawal | 9b79f52 | 2014-11-18 11:41:22 +0000 | [diff] [blame] | 287 | if (aarch32_insn_is_wide(instr)) { |
| 288 | u32 instr2; |
| 289 | |
Luc Van Oostenryck | 6cf5d4a | 2017-06-28 16:55:55 +0200 | [diff] [blame] | 290 | if (get_user(instr_le, (__le16 __user *)(pc + 2))) |
Punit Agrawal | 9b79f52 | 2014-11-18 11:41:22 +0000 | [diff] [blame] | 291 | goto exit; |
Luc Van Oostenryck | 6cf5d4a | 2017-06-28 16:55:55 +0200 | [diff] [blame] | 292 | instr2 = le16_to_cpu(instr_le); |
Punit Agrawal | 9b79f52 | 2014-11-18 11:41:22 +0000 | [diff] [blame] | 293 | instr = (instr << 16) | instr2; |
| 294 | } |
| 295 | } else { |
| 296 | /* 32-bit ARM instruction */ |
Luc Van Oostenryck | 6cf5d4a | 2017-06-28 16:55:55 +0200 | [diff] [blame] | 297 | __le32 instr_le; |
| 298 | if (get_user(instr_le, (__le32 __user *)pc)) |
Punit Agrawal | 9b79f52 | 2014-11-18 11:41:22 +0000 | [diff] [blame] | 299 | goto exit; |
Luc Van Oostenryck | 6cf5d4a | 2017-06-28 16:55:55 +0200 | [diff] [blame] | 300 | instr = le32_to_cpu(instr_le); |
Punit Agrawal | 9b79f52 | 2014-11-18 11:41:22 +0000 | [diff] [blame] | 301 | } |
| 302 | |
| 303 | raw_spin_lock_irqsave(&undef_lock, flags); |
| 304 | list_for_each_entry(hook, &undef_hook, node) |
| 305 | if ((instr & hook->instr_mask) == hook->instr_val && |
| 306 | (regs->pstate & hook->pstate_mask) == hook->pstate_val) |
| 307 | fn = hook->fn; |
| 308 | |
| 309 | raw_spin_unlock_irqrestore(&undef_lock, flags); |
| 310 | exit: |
| 311 | return fn ? fn(regs, instr) : 1; |
| 312 | } |
| 313 | |
Andre Przywara | 390bf17 | 2016-06-28 18:07:31 +0100 | [diff] [blame] | 314 | static void force_signal_inject(int signal, int code, struct pt_regs *regs, |
| 315 | unsigned long address) |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 316 | { |
| 317 | siginfo_t info; |
| 318 | void __user *pc = (void __user *)instruction_pointer(regs); |
Andre Przywara | 390bf17 | 2016-06-28 18:07:31 +0100 | [diff] [blame] | 319 | const char *desc; |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 320 | |
Andre Przywara | 390bf17 | 2016-06-28 18:07:31 +0100 | [diff] [blame] | 321 | switch (signal) { |
| 322 | case SIGILL: |
| 323 | desc = "undefined instruction"; |
| 324 | break; |
| 325 | case SIGSEGV: |
| 326 | desc = "illegal memory access"; |
| 327 | break; |
| 328 | default: |
| 329 | desc = "bad mode"; |
| 330 | break; |
| 331 | } |
| 332 | |
| 333 | if (unhandled_signal(current, signal) && |
| 334 | show_unhandled_signals_ratelimited()) { |
| 335 | pr_info("%s[%d]: %s: pc=%p\n", |
| 336 | current->comm, task_pid_nr(current), desc, pc); |
| 337 | dump_instr(KERN_INFO, regs); |
| 338 | } |
| 339 | |
| 340 | info.si_signo = signal; |
| 341 | info.si_errno = 0; |
| 342 | info.si_code = code; |
| 343 | info.si_addr = pc; |
| 344 | |
| 345 | arm64_notify_die(desc, regs, &info, 0); |
| 346 | } |
| 347 | |
| 348 | /* |
| 349 | * Set up process info to signal segmentation fault - called on access error. |
| 350 | */ |
| 351 | void arm64_notify_segfault(struct pt_regs *regs, unsigned long addr) |
| 352 | { |
| 353 | int code; |
| 354 | |
| 355 | down_read(¤t->mm->mmap_sem); |
| 356 | if (find_vma(current->mm, addr) == NULL) |
| 357 | code = SEGV_MAPERR; |
| 358 | else |
| 359 | code = SEGV_ACCERR; |
| 360 | up_read(¤t->mm->mmap_sem); |
| 361 | |
| 362 | force_signal_inject(SIGSEGV, code, regs, addr); |
| 363 | } |
| 364 | |
| 365 | asmlinkage void __exception do_undefinstr(struct pt_regs *regs) |
| 366 | { |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 367 | /* check for AArch32 breakpoint instructions */ |
Will Deacon | 1442b6e | 2013-03-16 08:48:13 +0000 | [diff] [blame] | 368 | if (!aarch32_break_handler(regs)) |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 369 | return; |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 370 | |
Punit Agrawal | 9b79f52 | 2014-11-18 11:41:22 +0000 | [diff] [blame] | 371 | if (call_undef_hook(regs) == 0) |
| 372 | return; |
| 373 | |
Andre Przywara | 390bf17 | 2016-06-28 18:07:31 +0100 | [diff] [blame] | 374 | force_signal_inject(SIGILL, ILL_ILLOPC, regs, 0); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 375 | } |
| 376 | |
James Morse | 2a6dcb2 | 2016-10-18 11:27:46 +0100 | [diff] [blame] | 377 | int cpu_enable_cache_maint_trap(void *__unused) |
Andre Przywara | 7dd01ae | 2016-06-28 18:07:32 +0100 | [diff] [blame] | 378 | { |
| 379 | config_sctlr_el1(SCTLR_EL1_UCI, 0); |
James Morse | 2a6dcb2 | 2016-10-18 11:27:46 +0100 | [diff] [blame] | 380 | return 0; |
Andre Przywara | 7dd01ae | 2016-06-28 18:07:32 +0100 | [diff] [blame] | 381 | } |
| 382 | |
| 383 | #define __user_cache_maint(insn, address, res) \ |
Kristina Martsenko | 81cddd6 | 2017-05-03 16:37:45 +0100 | [diff] [blame] | 384 | if (address >= user_addr_max()) { \ |
Andre Przywara | 87261d1 | 2016-10-19 14:40:54 +0100 | [diff] [blame] | 385 | res = -EFAULT; \ |
Catalin Marinas | 39bc88e | 2016-09-02 14:54:03 +0100 | [diff] [blame] | 386 | } else { \ |
| 387 | uaccess_ttbr0_enable(); \ |
Andre Przywara | 87261d1 | 2016-10-19 14:40:54 +0100 | [diff] [blame] | 388 | asm volatile ( \ |
| 389 | "1: " insn ", %1\n" \ |
| 390 | " mov %w0, #0\n" \ |
| 391 | "2:\n" \ |
| 392 | " .pushsection .fixup,\"ax\"\n" \ |
| 393 | " .align 2\n" \ |
| 394 | "3: mov %w0, %w2\n" \ |
| 395 | " b 2b\n" \ |
| 396 | " .popsection\n" \ |
| 397 | _ASM_EXTABLE(1b, 3b) \ |
| 398 | : "=r" (res) \ |
Catalin Marinas | 39bc88e | 2016-09-02 14:54:03 +0100 | [diff] [blame] | 399 | : "r" (address), "i" (-EFAULT)); \ |
| 400 | uaccess_ttbr0_disable(); \ |
| 401 | } |
Andre Przywara | 7dd01ae | 2016-06-28 18:07:32 +0100 | [diff] [blame] | 402 | |
Suzuki K Poulose | 9dbd5bb | 2016-09-09 14:07:15 +0100 | [diff] [blame] | 403 | 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] | 404 | { |
| 405 | unsigned long address; |
Suzuki K Poulose | 9dbd5bb | 2016-09-09 14:07:15 +0100 | [diff] [blame] | 406 | int rt = (esr & ESR_ELx_SYS64_ISS_RT_MASK) >> ESR_ELx_SYS64_ISS_RT_SHIFT; |
| 407 | int crm = (esr & ESR_ELx_SYS64_ISS_CRM_MASK) >> ESR_ELx_SYS64_ISS_CRM_SHIFT; |
| 408 | int ret = 0; |
Andre Przywara | 7dd01ae | 2016-06-28 18:07:32 +0100 | [diff] [blame] | 409 | |
Kristina Martsenko | 81cddd6 | 2017-05-03 16:37:45 +0100 | [diff] [blame] | 410 | address = untagged_addr(pt_regs_read_reg(regs, rt)); |
Andre Przywara | 7dd01ae | 2016-06-28 18:07:32 +0100 | [diff] [blame] | 411 | |
Suzuki K Poulose | 9dbd5bb | 2016-09-09 14:07:15 +0100 | [diff] [blame] | 412 | switch (crm) { |
| 413 | case ESR_ELx_SYS64_ISS_CRM_DC_CVAU: /* DC CVAU, gets promoted */ |
| 414 | __user_cache_maint("dc civac", address, ret); |
| 415 | break; |
| 416 | case ESR_ELx_SYS64_ISS_CRM_DC_CVAC: /* DC CVAC, gets promoted */ |
| 417 | __user_cache_maint("dc civac", address, ret); |
| 418 | break; |
Robin Murphy | e1bc5d1 | 2017-07-25 11:55:41 +0100 | [diff] [blame] | 419 | case ESR_ELx_SYS64_ISS_CRM_DC_CVAP: /* DC CVAP */ |
| 420 | __user_cache_maint("sys 3, c7, c12, 1", address, ret); |
| 421 | break; |
Suzuki K Poulose | 9dbd5bb | 2016-09-09 14:07:15 +0100 | [diff] [blame] | 422 | case ESR_ELx_SYS64_ISS_CRM_DC_CIVAC: /* DC CIVAC */ |
| 423 | __user_cache_maint("dc civac", address, ret); |
| 424 | break; |
| 425 | case ESR_ELx_SYS64_ISS_CRM_IC_IVAU: /* IC IVAU */ |
| 426 | __user_cache_maint("ic ivau", address, ret); |
| 427 | break; |
| 428 | default: |
Andre Przywara | 7dd01ae | 2016-06-28 18:07:32 +0100 | [diff] [blame] | 429 | force_signal_inject(SIGILL, ILL_ILLOPC, regs, 0); |
| 430 | return; |
| 431 | } |
| 432 | |
| 433 | if (ret) |
| 434 | arm64_notify_segfault(regs, address); |
| 435 | else |
Julien Thierry | 6436bee | 2017-10-25 10:04:33 +0100 | [diff] [blame] | 436 | arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE); |
Andre Przywara | 7dd01ae | 2016-06-28 18:07:32 +0100 | [diff] [blame] | 437 | } |
| 438 | |
Suzuki K Poulose | 116c81f | 2016-09-09 14:07:16 +0100 | [diff] [blame] | 439 | static void ctr_read_handler(unsigned int esr, struct pt_regs *regs) |
| 440 | { |
| 441 | int rt = (esr & ESR_ELx_SYS64_ISS_RT_MASK) >> ESR_ELx_SYS64_ISS_RT_SHIFT; |
Mark Rutland | 8b6e70f | 2017-02-09 15:19:19 +0000 | [diff] [blame] | 442 | 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] | 443 | |
Mark Rutland | 8b6e70f | 2017-02-09 15:19:19 +0000 | [diff] [blame] | 444 | pt_regs_write_reg(regs, rt, val); |
| 445 | |
Julien Thierry | 6436bee | 2017-10-25 10:04:33 +0100 | [diff] [blame] | 446 | arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE); |
Suzuki K Poulose | 116c81f | 2016-09-09 14:07:16 +0100 | [diff] [blame] | 447 | } |
| 448 | |
Marc Zyngier | 6126ce0 | 2017-02-01 11:48:58 +0000 | [diff] [blame] | 449 | static void cntvct_read_handler(unsigned int esr, struct pt_regs *regs) |
| 450 | { |
| 451 | int rt = (esr & ESR_ELx_SYS64_ISS_RT_MASK) >> ESR_ELx_SYS64_ISS_RT_SHIFT; |
| 452 | |
| 453 | pt_regs_write_reg(regs, rt, arch_counter_get_cntvct()); |
Julien Thierry | 6436bee | 2017-10-25 10:04:33 +0100 | [diff] [blame] | 454 | arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE); |
Marc Zyngier | 6126ce0 | 2017-02-01 11:48:58 +0000 | [diff] [blame] | 455 | } |
| 456 | |
Marc Zyngier | 9842119 | 2017-04-24 09:04:03 +0100 | [diff] [blame] | 457 | static void cntfrq_read_handler(unsigned int esr, struct pt_regs *regs) |
| 458 | { |
| 459 | int rt = (esr & ESR_ELx_SYS64_ISS_RT_MASK) >> ESR_ELx_SYS64_ISS_RT_SHIFT; |
| 460 | |
Marc Zyngier | c6f97ad | 2017-07-21 18:15:27 +0100 | [diff] [blame] | 461 | pt_regs_write_reg(regs, rt, arch_timer_get_rate()); |
Julien Thierry | 6436bee | 2017-10-25 10:04:33 +0100 | [diff] [blame] | 462 | arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE); |
Marc Zyngier | 9842119 | 2017-04-24 09:04:03 +0100 | [diff] [blame] | 463 | } |
| 464 | |
Suzuki K Poulose | 9dbd5bb | 2016-09-09 14:07:15 +0100 | [diff] [blame] | 465 | struct sys64_hook { |
| 466 | unsigned int esr_mask; |
| 467 | unsigned int esr_val; |
| 468 | void (*handler)(unsigned int esr, struct pt_regs *regs); |
| 469 | }; |
| 470 | |
| 471 | static struct sys64_hook sys64_hooks[] = { |
| 472 | { |
| 473 | .esr_mask = ESR_ELx_SYS64_ISS_EL0_CACHE_OP_MASK, |
| 474 | .esr_val = ESR_ELx_SYS64_ISS_EL0_CACHE_OP_VAL, |
| 475 | .handler = user_cache_maint_handler, |
| 476 | }, |
Suzuki K Poulose | 116c81f | 2016-09-09 14:07:16 +0100 | [diff] [blame] | 477 | { |
| 478 | /* Trap read access to CTR_EL0 */ |
| 479 | .esr_mask = ESR_ELx_SYS64_ISS_SYS_OP_MASK, |
| 480 | .esr_val = ESR_ELx_SYS64_ISS_SYS_CTR_READ, |
| 481 | .handler = ctr_read_handler, |
| 482 | }, |
Marc Zyngier | 6126ce0 | 2017-02-01 11:48:58 +0000 | [diff] [blame] | 483 | { |
| 484 | /* Trap read access to CNTVCT_EL0 */ |
| 485 | .esr_mask = ESR_ELx_SYS64_ISS_SYS_OP_MASK, |
| 486 | .esr_val = ESR_ELx_SYS64_ISS_SYS_CNTVCT, |
| 487 | .handler = cntvct_read_handler, |
| 488 | }, |
Marc Zyngier | 9842119 | 2017-04-24 09:04:03 +0100 | [diff] [blame] | 489 | { |
| 490 | /* Trap read access to CNTFRQ_EL0 */ |
| 491 | .esr_mask = ESR_ELx_SYS64_ISS_SYS_OP_MASK, |
| 492 | .esr_val = ESR_ELx_SYS64_ISS_SYS_CNTFRQ, |
| 493 | .handler = cntfrq_read_handler, |
| 494 | }, |
Suzuki K Poulose | 9dbd5bb | 2016-09-09 14:07:15 +0100 | [diff] [blame] | 495 | {}, |
| 496 | }; |
| 497 | |
| 498 | asmlinkage void __exception do_sysinstr(unsigned int esr, struct pt_regs *regs) |
| 499 | { |
| 500 | struct sys64_hook *hook; |
| 501 | |
| 502 | for (hook = sys64_hooks; hook->handler; hook++) |
| 503 | if ((hook->esr_mask & esr) == hook->esr_val) { |
| 504 | hook->handler(esr, regs); |
| 505 | return; |
| 506 | } |
| 507 | |
Mark Rutland | 49f6cba | 2017-01-27 16:15:38 +0000 | [diff] [blame] | 508 | /* |
| 509 | * New SYS instructions may previously have been undefined at EL0. Fall |
| 510 | * back to our usual undefined instruction handler so that we handle |
| 511 | * these consistently. |
| 512 | */ |
| 513 | do_undefinstr(regs); |
Suzuki K Poulose | 9dbd5bb | 2016-09-09 14:07:15 +0100 | [diff] [blame] | 514 | } |
| 515 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 516 | long compat_arm_syscall(struct pt_regs *regs); |
| 517 | |
| 518 | asmlinkage long do_ni_syscall(struct pt_regs *regs) |
| 519 | { |
| 520 | #ifdef CONFIG_COMPAT |
| 521 | long ret; |
| 522 | if (is_compat_task()) { |
| 523 | ret = compat_arm_syscall(regs); |
| 524 | if (ret != -ENOSYS) |
| 525 | return ret; |
| 526 | } |
| 527 | #endif |
| 528 | |
Vladimir Murzin | 86dca36 | 2015-06-19 15:28:03 +0100 | [diff] [blame] | 529 | if (show_unhandled_signals_ratelimited()) { |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 530 | pr_info("%s[%d]: syscall %d\n", current->comm, |
Dave Martin | 35d0e6f | 2017-08-01 15:35:53 +0100 | [diff] [blame] | 531 | task_pid_nr(current), regs->syscallno); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 532 | dump_instr("", regs); |
| 533 | if (user_mode(regs)) |
| 534 | __show_regs(regs); |
| 535 | } |
| 536 | |
| 537 | return sys_ni_syscall(); |
| 538 | } |
| 539 | |
Mark Rutland | 60a1f02 | 2014-11-18 12:16:30 +0000 | [diff] [blame] | 540 | static const char *esr_class_str[] = { |
| 541 | [0 ... ESR_ELx_EC_MAX] = "UNRECOGNIZED EC", |
| 542 | [ESR_ELx_EC_UNKNOWN] = "Unknown/Uncategorized", |
| 543 | [ESR_ELx_EC_WFx] = "WFI/WFE", |
| 544 | [ESR_ELx_EC_CP15_32] = "CP15 MCR/MRC", |
| 545 | [ESR_ELx_EC_CP15_64] = "CP15 MCRR/MRRC", |
| 546 | [ESR_ELx_EC_CP14_MR] = "CP14 MCR/MRC", |
| 547 | [ESR_ELx_EC_CP14_LS] = "CP14 LDC/STC", |
| 548 | [ESR_ELx_EC_FP_ASIMD] = "ASIMD", |
| 549 | [ESR_ELx_EC_CP10_ID] = "CP10 MRC/VMRS", |
| 550 | [ESR_ELx_EC_CP14_64] = "CP14 MCRR/MRRC", |
| 551 | [ESR_ELx_EC_ILL] = "PSTATE.IL", |
| 552 | [ESR_ELx_EC_SVC32] = "SVC (AArch32)", |
| 553 | [ESR_ELx_EC_HVC32] = "HVC (AArch32)", |
| 554 | [ESR_ELx_EC_SMC32] = "SMC (AArch32)", |
| 555 | [ESR_ELx_EC_SVC64] = "SVC (AArch64)", |
| 556 | [ESR_ELx_EC_HVC64] = "HVC (AArch64)", |
| 557 | [ESR_ELx_EC_SMC64] = "SMC (AArch64)", |
| 558 | [ESR_ELx_EC_SYS64] = "MSR/MRS (AArch64)", |
| 559 | [ESR_ELx_EC_IMP_DEF] = "EL3 IMP DEF", |
| 560 | [ESR_ELx_EC_IABT_LOW] = "IABT (lower EL)", |
| 561 | [ESR_ELx_EC_IABT_CUR] = "IABT (current EL)", |
| 562 | [ESR_ELx_EC_PC_ALIGN] = "PC Alignment", |
| 563 | [ESR_ELx_EC_DABT_LOW] = "DABT (lower EL)", |
| 564 | [ESR_ELx_EC_DABT_CUR] = "DABT (current EL)", |
| 565 | [ESR_ELx_EC_SP_ALIGN] = "SP Alignment", |
| 566 | [ESR_ELx_EC_FP_EXC32] = "FP (AArch32)", |
| 567 | [ESR_ELx_EC_FP_EXC64] = "FP (AArch64)", |
| 568 | [ESR_ELx_EC_SERROR] = "SError", |
| 569 | [ESR_ELx_EC_BREAKPT_LOW] = "Breakpoint (lower EL)", |
| 570 | [ESR_ELx_EC_BREAKPT_CUR] = "Breakpoint (current EL)", |
| 571 | [ESR_ELx_EC_SOFTSTP_LOW] = "Software Step (lower EL)", |
| 572 | [ESR_ELx_EC_SOFTSTP_CUR] = "Software Step (current EL)", |
| 573 | [ESR_ELx_EC_WATCHPT_LOW] = "Watchpoint (lower EL)", |
| 574 | [ESR_ELx_EC_WATCHPT_CUR] = "Watchpoint (current EL)", |
| 575 | [ESR_ELx_EC_BKPT32] = "BKPT (AArch32)", |
| 576 | [ESR_ELx_EC_VECTOR32] = "Vector catch (AArch32)", |
| 577 | [ESR_ELx_EC_BRK64] = "BRK (AArch64)", |
| 578 | }; |
| 579 | |
| 580 | const char *esr_get_class_string(u32 esr) |
| 581 | { |
Mark Rutland | 275f344 | 2016-05-31 12:33:01 +0100 | [diff] [blame] | 582 | return esr_class_str[ESR_ELx_EC(esr)]; |
Mark Rutland | 60a1f02 | 2014-11-18 12:16:30 +0000 | [diff] [blame] | 583 | } |
| 584 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 585 | /* |
Mark Rutland | 7d9e8f7 | 2017-01-18 17:23:41 +0000 | [diff] [blame] | 586 | * bad_mode handles the impossible case in the exception vector. This is always |
| 587 | * fatal. |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 588 | */ |
| 589 | asmlinkage void bad_mode(struct pt_regs *regs, int reason, unsigned int esr) |
| 590 | { |
| 591 | console_verbose(); |
| 592 | |
Mark Rutland | 8051f4d | 2016-05-31 12:07:47 +0100 | [diff] [blame] | 593 | pr_crit("Bad mode in %s handler detected on CPU%d, code 0x%08x -- %s\n", |
| 594 | handler[reason], smp_processor_id(), esr, |
| 595 | esr_get_class_string(esr)); |
Mark Rutland | 7d9e8f7 | 2017-01-18 17:23:41 +0000 | [diff] [blame] | 596 | |
| 597 | die("Oops - bad mode", regs, 0); |
James Morse | 0fbeb31 | 2017-11-02 12:12:34 +0000 | [diff] [blame] | 598 | local_daif_mask(); |
Mark Rutland | 7d9e8f7 | 2017-01-18 17:23:41 +0000 | [diff] [blame] | 599 | panic("bad mode"); |
| 600 | } |
| 601 | |
| 602 | /* |
| 603 | * bad_el0_sync handles unexpected, but potentially recoverable synchronous |
| 604 | * exceptions taken from EL0. Unlike bad_mode, this returns. |
| 605 | */ |
| 606 | asmlinkage void bad_el0_sync(struct pt_regs *regs, int reason, unsigned int esr) |
| 607 | { |
| 608 | siginfo_t info; |
| 609 | void __user *pc = (void __user *)instruction_pointer(regs); |
| 610 | console_verbose(); |
| 611 | |
| 612 | pr_crit("Bad EL0 synchronous exception detected on CPU%d, code 0x%08x -- %s\n", |
| 613 | smp_processor_id(), esr, esr_get_class_string(esr)); |
Mark Rutland | 9955ac4 | 2013-05-28 15:54:15 +0100 | [diff] [blame] | 614 | __show_regs(regs); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 615 | |
Mark Rutland | 9955ac4 | 2013-05-28 15:54:15 +0100 | [diff] [blame] | 616 | info.si_signo = SIGILL; |
| 617 | info.si_errno = 0; |
| 618 | info.si_code = ILL_ILLOPC; |
| 619 | info.si_addr = pc; |
| 620 | |
Mark Rutland | 7d9e8f7 | 2017-01-18 17:23:41 +0000 | [diff] [blame] | 621 | current->thread.fault_address = 0; |
| 622 | current->thread.fault_code = 0; |
| 623 | |
| 624 | force_sig_info(info.si_signo, &info, current); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 625 | } |
| 626 | |
Mark Rutland | 872d832 | 2017-07-14 20:30:35 +0100 | [diff] [blame] | 627 | #ifdef CONFIG_VMAP_STACK |
| 628 | |
| 629 | DEFINE_PER_CPU(unsigned long [OVERFLOW_STACK_SIZE/sizeof(long)], overflow_stack) |
| 630 | __aligned(16); |
| 631 | |
| 632 | asmlinkage void handle_bad_stack(struct pt_regs *regs) |
| 633 | { |
| 634 | unsigned long tsk_stk = (unsigned long)current->stack; |
| 635 | unsigned long irq_stk = (unsigned long)this_cpu_read(irq_stack_ptr); |
| 636 | unsigned long ovf_stk = (unsigned long)this_cpu_ptr(overflow_stack); |
| 637 | unsigned int esr = read_sysreg(esr_el1); |
| 638 | unsigned long far = read_sysreg(far_el1); |
| 639 | |
| 640 | console_verbose(); |
| 641 | pr_emerg("Insufficient stack space to handle exception!"); |
| 642 | |
| 643 | pr_emerg("ESR: 0x%08x -- %s\n", esr, esr_get_class_string(esr)); |
| 644 | pr_emerg("FAR: 0x%016lx\n", far); |
| 645 | |
| 646 | pr_emerg("Task stack: [0x%016lx..0x%016lx]\n", |
| 647 | tsk_stk, tsk_stk + THREAD_SIZE); |
| 648 | pr_emerg("IRQ stack: [0x%016lx..0x%016lx]\n", |
| 649 | irq_stk, irq_stk + THREAD_SIZE); |
| 650 | pr_emerg("Overflow stack: [0x%016lx..0x%016lx]\n", |
| 651 | ovf_stk, ovf_stk + OVERFLOW_STACK_SIZE); |
| 652 | |
| 653 | __show_regs(regs); |
| 654 | |
| 655 | /* |
| 656 | * We use nmi_panic to limit the potential for recusive overflows, and |
| 657 | * to get a better stack trace. |
| 658 | */ |
| 659 | nmi_panic(NULL, "kernel stack overflow"); |
| 660 | cpu_park_loop(); |
| 661 | } |
| 662 | #endif |
| 663 | |
Xie XiuQi | a92d4d1 | 2017-11-02 12:12:42 +0000 | [diff] [blame^] | 664 | asmlinkage void do_serror(struct pt_regs *regs, unsigned int esr) |
| 665 | { |
| 666 | nmi_enter(); |
| 667 | |
| 668 | console_verbose(); |
| 669 | |
| 670 | pr_crit("SError Interrupt on CPU%d, code 0x%08x -- %s\n", |
| 671 | smp_processor_id(), esr, esr_get_class_string(esr)); |
| 672 | __show_regs(regs); |
| 673 | |
| 674 | panic("Asynchronous SError Interrupt"); |
| 675 | } |
| 676 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 677 | void __pte_error(const char *file, int line, unsigned long val) |
| 678 | { |
Will Deacon | c9cd0ed | 2015-12-21 16:44:27 +0000 | [diff] [blame] | 679 | pr_err("%s:%d: bad pte %016lx.\n", file, line, val); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 680 | } |
| 681 | |
| 682 | void __pmd_error(const char *file, int line, unsigned long val) |
| 683 | { |
Will Deacon | c9cd0ed | 2015-12-21 16:44:27 +0000 | [diff] [blame] | 684 | pr_err("%s:%d: bad pmd %016lx.\n", file, line, val); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 685 | } |
| 686 | |
Jungseok Lee | c79b954b | 2014-05-12 18:40:51 +0900 | [diff] [blame] | 687 | void __pud_error(const char *file, int line, unsigned long val) |
| 688 | { |
Will Deacon | c9cd0ed | 2015-12-21 16:44:27 +0000 | [diff] [blame] | 689 | pr_err("%s:%d: bad pud %016lx.\n", file, line, val); |
Jungseok Lee | c79b954b | 2014-05-12 18:40:51 +0900 | [diff] [blame] | 690 | } |
| 691 | |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 692 | void __pgd_error(const char *file, int line, unsigned long val) |
| 693 | { |
Will Deacon | c9cd0ed | 2015-12-21 16:44:27 +0000 | [diff] [blame] | 694 | pr_err("%s:%d: bad pgd %016lx.\n", file, line, val); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 695 | } |
| 696 | |
Dave P Martin | 9fb7410 | 2015-07-24 16:37:48 +0100 | [diff] [blame] | 697 | /* GENERIC_BUG traps */ |
| 698 | |
| 699 | int is_valid_bugaddr(unsigned long addr) |
| 700 | { |
| 701 | /* |
| 702 | * bug_handler() only called for BRK #BUG_BRK_IMM. |
| 703 | * So the answer is trivial -- any spurious instances with no |
| 704 | * bug table entry will be rejected by report_bug() and passed |
| 705 | * back to the debug-monitors code and handled as a fatal |
| 706 | * unexpected debug exception. |
| 707 | */ |
| 708 | return 1; |
| 709 | } |
| 710 | |
| 711 | static int bug_handler(struct pt_regs *regs, unsigned int esr) |
| 712 | { |
| 713 | if (user_mode(regs)) |
| 714 | return DBG_HOOK_ERROR; |
| 715 | |
| 716 | switch (report_bug(regs->pc, regs)) { |
| 717 | case BUG_TRAP_TYPE_BUG: |
| 718 | die("Oops - BUG", regs, 0); |
| 719 | break; |
| 720 | |
| 721 | case BUG_TRAP_TYPE_WARN: |
| 722 | break; |
| 723 | |
| 724 | default: |
| 725 | /* unknown/unrecognised bug trap type */ |
| 726 | return DBG_HOOK_ERROR; |
| 727 | } |
| 728 | |
| 729 | /* If thread survives, skip over the BUG instruction and continue: */ |
Julien Thierry | 6436bee | 2017-10-25 10:04:33 +0100 | [diff] [blame] | 730 | arm64_skip_faulting_instruction(regs, AARCH64_INSN_SIZE); |
Dave P Martin | 9fb7410 | 2015-07-24 16:37:48 +0100 | [diff] [blame] | 731 | return DBG_HOOK_HANDLED; |
| 732 | } |
| 733 | |
| 734 | static struct break_hook bug_break_hook = { |
| 735 | .esr_val = 0xf2000000 | BUG_BRK_IMM, |
| 736 | .esr_mask = 0xffffffff, |
| 737 | .fn = bug_handler, |
| 738 | }; |
| 739 | |
| 740 | /* |
| 741 | * Initial handler for AArch64 BRK exceptions |
| 742 | * This handler only used until debug_traps_init(). |
| 743 | */ |
| 744 | int __init early_brk64(unsigned long addr, unsigned int esr, |
| 745 | struct pt_regs *regs) |
| 746 | { |
| 747 | return bug_handler(regs, esr) != DBG_HOOK_HANDLED; |
| 748 | } |
| 749 | |
| 750 | /* This registration must happen early, before debug_traps_init(). */ |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 751 | void __init trap_init(void) |
| 752 | { |
Dave P Martin | 9fb7410 | 2015-07-24 16:37:48 +0100 | [diff] [blame] | 753 | register_break_hook(&bug_break_hook); |
Catalin Marinas | 60ffc30 | 2012-03-05 11:49:27 +0000 | [diff] [blame] | 754 | } |