Merge branch 'sirf/dt' into next/dt
[linux-2.6.git] / arch / arm64 / kernel / traps.c
blob7ffadddb645d32cda5fd54a0c2a5a0c5456b4018
1 /*
2 * Based on arch/arm/kernel/traps.c
4 * Copyright (C) 1995-2009 Russell King
5 * Copyright (C) 2012 ARM Ltd.
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.
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.
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/>.
20 #include <linux/signal.h>
21 #include <linux/personality.h>
22 #include <linux/kallsyms.h>
23 #include <linux/spinlock.h>
24 #include <linux/uaccess.h>
25 #include <linux/hardirq.h>
26 #include <linux/kdebug.h>
27 #include <linux/module.h>
28 #include <linux/kexec.h>
29 #include <linux/delay.h>
30 #include <linux/init.h>
31 #include <linux/sched.h>
32 #include <linux/syscalls.h>
34 #include <asm/atomic.h>
35 #include <asm/debug-monitors.h>
36 #include <asm/traps.h>
37 #include <asm/stacktrace.h>
38 #include <asm/exception.h>
39 #include <asm/system_misc.h>
41 static const char *handler[]= {
42 "Synchronous Abort",
43 "IRQ",
44 "FIQ",
45 "Error"
48 int show_unhandled_signals = 1;
51 * Dump out the contents of some memory nicely...
53 static void dump_mem(const char *lvl, const char *str, unsigned long bottom,
54 unsigned long top)
56 unsigned long first;
57 mm_segment_t fs;
58 int i;
61 * We need to switch to kernel mode so that we can use __get_user
62 * to safely read from kernel space. Note that we now dump the
63 * code first, just in case the backtrace kills us.
65 fs = get_fs();
66 set_fs(KERNEL_DS);
68 printk("%s%s(0x%016lx to 0x%016lx)\n", lvl, str, bottom, top);
70 for (first = bottom & ~31; first < top; first += 32) {
71 unsigned long p;
72 char str[sizeof(" 12345678") * 8 + 1];
74 memset(str, ' ', sizeof(str));
75 str[sizeof(str) - 1] = '\0';
77 for (p = first, i = 0; i < 8 && p < top; i++, p += 4) {
78 if (p >= bottom && p < top) {
79 unsigned int val;
80 if (__get_user(val, (unsigned int *)p) == 0)
81 sprintf(str + i * 9, " %08x", val);
82 else
83 sprintf(str + i * 9, " ????????");
86 printk("%s%04lx:%s\n", lvl, first & 0xffff, str);
89 set_fs(fs);
92 static void dump_backtrace_entry(unsigned long where, unsigned long stack)
94 print_ip_sym(where);
95 if (in_exception_text(where))
96 dump_mem("", "Exception stack", stack,
97 stack + sizeof(struct pt_regs));
100 static void dump_instr(const char *lvl, struct pt_regs *regs)
102 unsigned long addr = instruction_pointer(regs);
103 mm_segment_t fs;
104 char str[sizeof("00000000 ") * 5 + 2 + 1], *p = str;
105 int i;
108 * We need to switch to kernel mode so that we can use __get_user
109 * to safely read from kernel space. Note that we now dump the
110 * code first, just in case the backtrace kills us.
112 fs = get_fs();
113 set_fs(KERNEL_DS);
115 for (i = -4; i < 1; i++) {
116 unsigned int val, bad;
118 bad = __get_user(val, &((u32 *)addr)[i]);
120 if (!bad)
121 p += sprintf(p, i == 0 ? "(%08x) " : "%08x ", val);
122 else {
123 p += sprintf(p, "bad PC value");
124 break;
127 printk("%sCode: %s\n", lvl, str);
129 set_fs(fs);
132 static void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk)
134 struct stackframe frame;
135 const register unsigned long current_sp asm ("sp");
137 pr_debug("%s(regs = %p tsk = %p)\n", __func__, regs, tsk);
139 if (!tsk)
140 tsk = current;
142 if (regs) {
143 frame.fp = regs->regs[29];
144 frame.sp = regs->sp;
145 frame.pc = regs->pc;
146 } else if (tsk == current) {
147 frame.fp = (unsigned long)__builtin_frame_address(0);
148 frame.sp = current_sp;
149 frame.pc = (unsigned long)dump_backtrace;
150 } else {
152 * task blocked in __switch_to
154 frame.fp = thread_saved_fp(tsk);
155 frame.sp = thread_saved_sp(tsk);
156 frame.pc = thread_saved_pc(tsk);
159 printk("Call trace:\n");
160 while (1) {
161 unsigned long where = frame.pc;
162 int ret;
164 ret = unwind_frame(&frame);
165 if (ret < 0)
166 break;
167 dump_backtrace_entry(where, frame.sp);
171 void show_stack(struct task_struct *tsk, unsigned long *sp)
173 dump_backtrace(NULL, tsk);
174 barrier();
177 #ifdef CONFIG_PREEMPT
178 #define S_PREEMPT " PREEMPT"
179 #else
180 #define S_PREEMPT ""
181 #endif
182 #ifdef CONFIG_SMP
183 #define S_SMP " SMP"
184 #else
185 #define S_SMP ""
186 #endif
188 static int __die(const char *str, int err, struct thread_info *thread,
189 struct pt_regs *regs)
191 struct task_struct *tsk = thread->task;
192 static int die_counter;
193 int ret;
195 pr_emerg("Internal error: %s: %x [#%d]" S_PREEMPT S_SMP "\n",
196 str, err, ++die_counter);
198 /* trap and error numbers are mostly meaningless on ARM */
199 ret = notify_die(DIE_OOPS, str, regs, err, 0, SIGSEGV);
200 if (ret == NOTIFY_STOP)
201 return ret;
203 print_modules();
204 __show_regs(regs);
205 pr_emerg("Process %.*s (pid: %d, stack limit = 0x%p)\n",
206 TASK_COMM_LEN, tsk->comm, task_pid_nr(tsk), thread + 1);
208 if (!user_mode(regs) || in_interrupt()) {
209 dump_mem(KERN_EMERG, "Stack: ", regs->sp,
210 THREAD_SIZE + (unsigned long)task_stack_page(tsk));
211 dump_backtrace(regs, tsk);
212 dump_instr(KERN_EMERG, regs);
215 return ret;
218 static DEFINE_RAW_SPINLOCK(die_lock);
221 * This function is protected against re-entrancy.
223 void die(const char *str, struct pt_regs *regs, int err)
225 struct thread_info *thread = current_thread_info();
226 int ret;
228 oops_enter();
230 raw_spin_lock_irq(&die_lock);
231 console_verbose();
232 bust_spinlocks(1);
233 ret = __die(str, err, thread, regs);
235 if (regs && kexec_should_crash(thread->task))
236 crash_kexec(regs);
238 bust_spinlocks(0);
239 add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE);
240 raw_spin_unlock_irq(&die_lock);
241 oops_exit();
243 if (in_interrupt())
244 panic("Fatal exception in interrupt");
245 if (panic_on_oops)
246 panic("Fatal exception");
247 if (ret != NOTIFY_STOP)
248 do_exit(SIGSEGV);
251 void arm64_notify_die(const char *str, struct pt_regs *regs,
252 struct siginfo *info, int err)
254 if (user_mode(regs))
255 force_sig_info(info->si_signo, info, current);
256 else
257 die(str, regs, err);
260 asmlinkage void __exception do_undefinstr(struct pt_regs *regs)
262 siginfo_t info;
263 void __user *pc = (void __user *)instruction_pointer(regs);
265 /* check for AArch32 breakpoint instructions */
266 if (!aarch32_break_handler(regs))
267 return;
269 if (show_unhandled_signals && unhandled_signal(current, SIGILL) &&
270 printk_ratelimit()) {
271 pr_info("%s[%d]: undefined instruction: pc=%p\n",
272 current->comm, task_pid_nr(current), pc);
273 dump_instr(KERN_INFO, regs);
276 info.si_signo = SIGILL;
277 info.si_errno = 0;
278 info.si_code = ILL_ILLOPC;
279 info.si_addr = pc;
281 arm64_notify_die("Oops - undefined instruction", regs, &info, 0);
284 long compat_arm_syscall(struct pt_regs *regs);
286 asmlinkage long do_ni_syscall(struct pt_regs *regs)
288 #ifdef CONFIG_COMPAT
289 long ret;
290 if (is_compat_task()) {
291 ret = compat_arm_syscall(regs);
292 if (ret != -ENOSYS)
293 return ret;
295 #endif
297 if (show_unhandled_signals && printk_ratelimit()) {
298 pr_info("%s[%d]: syscall %d\n", current->comm,
299 task_pid_nr(current), (int)regs->syscallno);
300 dump_instr("", regs);
301 if (user_mode(regs))
302 __show_regs(regs);
305 return sys_ni_syscall();
309 * bad_mode handles the impossible case in the exception vector.
311 asmlinkage void bad_mode(struct pt_regs *regs, int reason, unsigned int esr)
313 siginfo_t info;
314 void __user *pc = (void __user *)instruction_pointer(regs);
315 console_verbose();
317 pr_crit("Bad mode in %s handler detected, code 0x%08x\n",
318 handler[reason], esr);
319 __show_regs(regs);
321 info.si_signo = SIGILL;
322 info.si_errno = 0;
323 info.si_code = ILL_ILLOPC;
324 info.si_addr = pc;
326 arm64_notify_die("Oops - bad mode", regs, &info, 0);
329 void __pte_error(const char *file, int line, unsigned long val)
331 printk("%s:%d: bad pte %016lx.\n", file, line, val);
334 void __pmd_error(const char *file, int line, unsigned long val)
336 printk("%s:%d: bad pmd %016lx.\n", file, line, val);
339 void __pgd_error(const char *file, int line, unsigned long val)
341 printk("%s:%d: bad pgd %016lx.\n", file, line, val);
344 void __init trap_init(void)
346 return;