blob: e768fb59b6748907ca4cf3161fdca09ae34ac372 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/kernel/traps.c
3 *
4 * Copyright (C) 1995-2002 Russell King
5 * Fragments that appear the same as linux/arch/i386/kernel/traps.c (C) Linus Torvalds
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 * 'traps.c' handles hardware exceptions after we have saved some state in
12 * 'linux/arch/arm/lib/traps.S'. Mostly a debugging aid, but will probably
13 * kill the offending process.
14 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/module.h>
16#include <linux/signal.h>
17#include <linux/spinlock.h>
18#include <linux/personality.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/kallsyms.h>
Russell King31867492006-02-19 19:53:56 +000020#include <linux/delay.h>
Russell King67306da2008-12-14 18:01:44 +000021#include <linux/hardirq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/init.h>
Russell King33fa9b12008-09-06 11:35:55 +010023#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include <asm/atomic.h>
26#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/unistd.h>
29#include <asm/traps.h>
Catalin Marinasbff595c2009-02-16 11:41:36 +010030#include <asm/unwind.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32#include "ptrace.h"
Russell Kinge00d3492005-06-22 20:26:05 +010033#include "signal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Linus Torvalds1da177e2005-04-16 15:20:36 -070035static const char *handler[]= { "prefetch abort", "data abort", "address exception", "interrupt" };
36
37#ifdef CONFIG_DEBUG_USER
38unsigned int user_debug;
39
40static int __init user_debug_setup(char *str)
41{
42 get_option(&str, &user_debug);
43 return 1;
44}
45__setup("user_debug=", user_debug_setup);
46#endif
47
Russell King7ab3f8d2007-03-02 15:01:36 +000048static void dump_mem(const char *str, unsigned long bottom, unsigned long top);
49
Russell King7ab3f8d2007-03-02 15:01:36 +000050void dump_backtrace_entry(unsigned long where, unsigned long from, unsigned long frame)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
52#ifdef CONFIG_KALLSYMS
Russell Kingd191fe02009-10-11 15:03:11 +010053 char sym1[KSYM_SYMBOL_LEN], sym2[KSYM_SYMBOL_LEN];
54 sprint_symbol(sym1, where);
55 sprint_symbol(sym2, from);
56 printk("[<%08lx>] (%s) from [<%08lx>] (%s)\n", where, sym1, from, sym2);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#else
58 printk("Function entered at [<%08lx>] from [<%08lx>]\n", where, from);
59#endif
Russell King7ab3f8d2007-03-02 15:01:36 +000060
61 if (in_exception_text(where))
62 dump_mem("Exception stack", frame + 4, frame + 4 + sizeof(struct pt_regs));
Linus Torvalds1da177e2005-04-16 15:20:36 -070063}
64
Catalin Marinasbff595c2009-02-16 11:41:36 +010065#ifndef CONFIG_ARM_UNWIND
Linus Torvalds1da177e2005-04-16 15:20:36 -070066/*
67 * Stack pointers should always be within the kernels view of
68 * physical memory. If it is not there, then we can't dump
69 * out any information relating to the stack.
70 */
71static int verify_stack(unsigned long sp)
72{
Russell King09d9bae2008-09-05 14:08:44 +010073 if (sp < PAGE_OFFSET ||
74 (sp > (unsigned long)high_memory && high_memory != NULL))
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 return -EFAULT;
76
77 return 0;
78}
Catalin Marinasbff595c2009-02-16 11:41:36 +010079#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81/*
82 * Dump out the contents of some memory nicely...
83 */
84static void dump_mem(const char *str, unsigned long bottom, unsigned long top)
85{
Russell Kingd191fe02009-10-11 15:03:11 +010086 unsigned long first;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 mm_segment_t fs;
88 int i;
89
90 /*
91 * We need to switch to kernel mode so that we can use __get_user
92 * to safely read from kernel space. Note that we now dump the
93 * code first, just in case the backtrace kills us.
94 */
95 fs = get_fs();
96 set_fs(KERNEL_DS);
97
98 printk("%s(0x%08lx to 0x%08lx)\n", str, bottom, top);
99
Russell Kingd191fe02009-10-11 15:03:11 +0100100 for (first = bottom & ~31; first < top; first += 32) {
101 unsigned long p;
102 char str[sizeof(" 12345678") * 8 + 1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Russell Kingd191fe02009-10-11 15:03:11 +0100104 memset(str, ' ', sizeof(str));
105 str[sizeof(str) - 1] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Russell Kingd191fe02009-10-11 15:03:11 +0100107 for (p = first, i = 0; i < 8 && p < top; i++, p += 4) {
108 if (p >= bottom && p < top) {
109 unsigned long val;
110 if (__get_user(val, (unsigned long *)p) == 0)
111 sprintf(str + i * 9, " %08lx", val);
112 else
113 sprintf(str + i * 9, " ????????");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 }
115 }
Russell Kingd191fe02009-10-11 15:03:11 +0100116 printk("%04lx:%s\n", first & 0xffff, str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 }
118
119 set_fs(fs);
120}
121
122static void dump_instr(struct pt_regs *regs)
123{
124 unsigned long addr = instruction_pointer(regs);
125 const int thumb = thumb_mode(regs);
126 const int width = thumb ? 4 : 8;
127 mm_segment_t fs;
Russell Kingd191fe02009-10-11 15:03:11 +0100128 char str[sizeof("00000000 ") * 5 + 2 + 1], *p = str;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 int i;
130
131 /*
132 * We need to switch to kernel mode so that we can use __get_user
133 * to safely read from kernel space. Note that we now dump the
134 * code first, just in case the backtrace kills us.
135 */
136 fs = get_fs();
137 set_fs(KERNEL_DS);
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 for (i = -4; i < 1; i++) {
140 unsigned int val, bad;
141
142 if (thumb)
143 bad = __get_user(val, &((u16 *)addr)[i]);
144 else
145 bad = __get_user(val, &((u32 *)addr)[i]);
146
147 if (!bad)
Russell Kingd191fe02009-10-11 15:03:11 +0100148 p += sprintf(p, i == 0 ? "(%0*x) " : "%0*x ",
149 width, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 else {
Russell Kingd191fe02009-10-11 15:03:11 +0100151 p += sprintf(p, "bad PC value");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 break;
153 }
154 }
Russell Kingd191fe02009-10-11 15:03:11 +0100155 printk("Code: %s\n", str);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 set_fs(fs);
158}
159
Catalin Marinasbff595c2009-02-16 11:41:36 +0100160#ifdef CONFIG_ARM_UNWIND
161static inline void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk)
162{
163 unwind_backtrace(regs, tsk);
164}
165#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166static void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk)
167{
Catalin Marinas67a94c22009-02-11 13:06:53 +0100168 unsigned int fp, mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 int ok = 1;
170
171 printk("Backtrace: ");
Catalin Marinas67a94c22009-02-11 13:06:53 +0100172
173 if (!tsk)
174 tsk = current;
175
176 if (regs) {
177 fp = regs->ARM_fp;
178 mode = processor_mode(regs);
179 } else if (tsk != current) {
180 fp = thread_saved_fp(tsk);
181 mode = 0x10;
182 } else {
183 asm("mov %0, fp" : "=r" (fp) : : "cc");
184 mode = 0x10;
185 }
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 if (!fp) {
188 printk("no frame pointer");
189 ok = 0;
190 } else if (verify_stack(fp)) {
191 printk("invalid frame pointer 0x%08x", fp);
192 ok = 0;
Al Viro55205822006-01-12 01:05:57 -0800193 } else if (fp < (unsigned long)end_of_stack(tsk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 printk("frame pointer underflow");
195 printk("\n");
196
197 if (ok)
Catalin Marinas67a94c22009-02-11 13:06:53 +0100198 c_backtrace(fp, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
Catalin Marinasbff595c2009-02-16 11:41:36 +0100200#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
202void dump_stack(void)
203{
Catalin Marinas67a94c22009-02-11 13:06:53 +0100204 dump_backtrace(NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
207EXPORT_SYMBOL(dump_stack);
208
209void show_stack(struct task_struct *tsk, unsigned long *sp)
210{
Catalin Marinas67a94c22009-02-11 13:06:53 +0100211 dump_backtrace(NULL, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 barrier();
213}
214
Russell Kingd9202422007-06-17 13:38:27 +0100215#ifdef CONFIG_PREEMPT
216#define S_PREEMPT " PREEMPT"
217#else
218#define S_PREEMPT ""
219#endif
220#ifdef CONFIG_SMP
221#define S_SMP " SMP"
222#else
223#define S_SMP ""
224#endif
225
Russell Kingd3629792005-10-30 19:01:43 +0000226static void __die(const char *str, int err, struct thread_info *thread, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
Russell Kingd3629792005-10-30 19:01:43 +0000228 struct task_struct *tsk = thread->task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 static int die_counter;
230
Russell Kingd9202422007-06-17 13:38:27 +0100231 printk("Internal error: %s: %x [#%d]" S_PREEMPT S_SMP "\n",
232 str, err, ++die_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 print_modules();
Russell King652a12e2005-04-17 15:50:36 +0100234 __show_regs(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 printk("Process %s (pid: %d, stack limit = 0x%p)\n",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700236 tsk->comm, task_pid_nr(tsk), thread + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238 if (!user_mode(regs) || in_interrupt()) {
Russell King4f7a1812005-05-05 13:11:00 +0100239 dump_mem("Stack: ", regs->ARM_sp,
Al Viro32d39a92006-01-12 01:05:58 -0800240 THREAD_SIZE + (unsigned long)task_stack_page(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 dump_backtrace(regs, tsk);
242 dump_instr(regs);
243 }
Russell Kingd3629792005-10-30 19:01:43 +0000244}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Russell Kingd3629792005-10-30 19:01:43 +0000246DEFINE_SPINLOCK(die_lock);
247
248/*
249 * This function is protected against re-entrancy.
250 */
251NORET_TYPE void die(const char *str, struct pt_regs *regs, int err)
252{
253 struct thread_info *thread = current_thread_info();
254
Russell Kingd9202422007-06-17 13:38:27 +0100255 oops_enter();
256
Russell Kingd3629792005-10-30 19:01:43 +0000257 console_verbose();
258 spin_lock_irq(&die_lock);
259 bust_spinlocks(1);
260 __die(str, err, thread, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 bust_spinlocks(0);
Pavel Emelianovbcdcd8e2007-07-17 04:03:42 -0700262 add_taint(TAINT_DIE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 spin_unlock_irq(&die_lock);
Russell King31867492006-02-19 19:53:56 +0000264
Russell Kingd9202422007-06-17 13:38:27 +0100265 if (in_interrupt())
266 panic("Fatal exception in interrupt");
267
Hormscea6a4b2006-07-30 03:03:34 -0700268 if (panic_on_oops)
Horms012c4372006-08-13 23:24:22 -0700269 panic("Fatal exception");
Russell King31867492006-02-19 19:53:56 +0000270
Russell Kingd9202422007-06-17 13:38:27 +0100271 oops_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 do_exit(SIGSEGV);
273}
274
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700275void arm_notify_die(const char *str, struct pt_regs *regs,
276 struct siginfo *info, unsigned long err, unsigned long trap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
278 if (user_mode(regs)) {
279 current->thread.error_code = err;
280 current->thread.trap_no = trap;
281
282 force_sig_info(info->si_signo, info, current);
283 } else {
284 die(str, regs, err);
285 }
286}
287
288static LIST_HEAD(undef_hook);
289static DEFINE_SPINLOCK(undef_lock);
290
291void register_undef_hook(struct undef_hook *hook)
292{
Russell King109d89c2005-07-16 16:43:33 +0100293 unsigned long flags;
294
295 spin_lock_irqsave(&undef_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 list_add(&hook->node, &undef_hook);
Russell King109d89c2005-07-16 16:43:33 +0100297 spin_unlock_irqrestore(&undef_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
300void unregister_undef_hook(struct undef_hook *hook)
301{
Russell King109d89c2005-07-16 16:43:33 +0100302 unsigned long flags;
303
304 spin_lock_irqsave(&undef_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 list_del(&hook->node);
Russell King109d89c2005-07-16 16:43:33 +0100306 spin_unlock_irqrestore(&undef_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
Russell Kingb03a5b72008-08-11 12:27:16 +0100309static int call_undef_hook(struct pt_regs *regs, unsigned int instr)
310{
311 struct undef_hook *hook;
312 unsigned long flags;
313 int (*fn)(struct pt_regs *regs, unsigned int instr) = NULL;
314
315 spin_lock_irqsave(&undef_lock, flags);
316 list_for_each_entry(hook, &undef_hook, node)
317 if ((instr & hook->instr_mask) == hook->instr_val &&
318 (regs->ARM_cpsr & hook->cpsr_mask) == hook->cpsr_val)
319 fn = hook->fn;
320 spin_unlock_irqrestore(&undef_lock, flags);
321
322 return fn ? fn(regs, instr) : 1;
323}
324
Russell King7ab3f8d2007-03-02 15:01:36 +0000325asmlinkage void __exception do_undefinstr(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
327 unsigned int correction = thumb_mode(regs) ? 2 : 4;
328 unsigned int instr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 siginfo_t info;
330 void __user *pc;
331
332 /*
333 * According to the ARM ARM, PC is 2 or 4 bytes ahead,
334 * depending whether we're in Thumb mode or not.
335 * Correct this offset.
336 */
337 regs->ARM_pc -= correction;
338
339 pc = (void __user *)instruction_pointer(regs);
Dan Williamsdfc544c2007-02-13 17:11:34 +0100340
341 if (processor_mode(regs) == SVC_MODE) {
342 instr = *(u32 *) pc;
343 } else if (thumb_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 get_user(instr, (u16 __user *)pc);
345 } else {
346 get_user(instr, (u32 __user *)pc);
347 }
348
Russell Kingb03a5b72008-08-11 12:27:16 +0100349 if (call_undef_hook(regs, instr) == 0)
350 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352#ifdef CONFIG_DEBUG_USER
353 if (user_debug & UDBG_UNDEFINED) {
354 printk(KERN_INFO "%s (%d): undefined instruction: pc=%p\n",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700355 current->comm, task_pid_nr(current), pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 dump_instr(regs);
357 }
358#endif
359
360 info.si_signo = SIGILL;
361 info.si_errno = 0;
362 info.si_code = ILL_ILLOPC;
363 info.si_addr = pc;
364
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700365 arm_notify_die("Oops - undefined instruction", regs, &info, 0, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
367
368asmlinkage void do_unexp_fiq (struct pt_regs *regs)
369{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 printk("Hmm. Unexpected FIQ received, but trying to continue\n");
371 printk("You may have a hardware problem...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372}
373
374/*
375 * bad_mode handles the impossible case in the vectors. If you see one of
376 * these, then it's extremely serious, and could mean you have buggy hardware.
377 * It never returns, and never tries to sync. We hope that we can at least
378 * dump out some state information...
379 */
Russell Kingae0a8462007-01-09 12:57:37 +0000380asmlinkage void bad_mode(struct pt_regs *regs, int reason)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
382 console_verbose();
383
Russell Kingae0a8462007-01-09 12:57:37 +0000384 printk(KERN_CRIT "Bad mode in %s handler detected\n", handler[reason]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386 die("Oops - bad mode", regs, 0);
387 local_irq_disable();
388 panic("bad mode");
389}
390
391static int bad_syscall(int n, struct pt_regs *regs)
392{
393 struct thread_info *thread = current_thread_info();
394 siginfo_t info;
395
Nicolas Pitrea999cb02005-10-28 16:35:46 +0100396 if (current->personality != PER_LINUX &&
397 current->personality != PER_LINUX_32BIT &&
398 thread->exec_domain->handler) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 thread->exec_domain->handler(n, regs);
400 return regs->ARM_r0;
401 }
402
403#ifdef CONFIG_DEBUG_USER
404 if (user_debug & UDBG_SYSCALL) {
405 printk(KERN_ERR "[%d] %s: obsolete system call %08x.\n",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700406 task_pid_nr(current), current->comm, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 dump_instr(regs);
408 }
409#endif
410
411 info.si_signo = SIGILL;
412 info.si_errno = 0;
413 info.si_code = ILL_ILLTRP;
414 info.si_addr = (void __user *)instruction_pointer(regs) -
415 (thumb_mode(regs) ? 2 : 4);
416
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700417 arm_notify_die("Oops - bad syscall", regs, &info, n, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 return regs->ARM_r0;
420}
421
422static inline void
423do_cache_op(unsigned long start, unsigned long end, int flags)
424{
Russell Kingaa45ee82009-09-28 11:41:51 +0100425 struct mm_struct *mm = current->active_mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 struct vm_area_struct *vma;
427
428 if (end < start || flags)
429 return;
430
Russell Kingaa45ee82009-09-28 11:41:51 +0100431 down_read(&mm->mmap_sem);
432 vma = find_vma(mm, start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if (vma && vma->vm_start < end) {
434 if (start < vma->vm_start)
435 start = vma->vm_start;
436 if (end > vma->vm_end)
437 end = vma->vm_end;
438
439 flush_cache_user_range(vma, start, end);
440 }
Russell Kingaa45ee82009-09-28 11:41:51 +0100441 up_read(&mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
443
444/*
445 * Handle all unrecognised system calls.
446 * 0x9f0000 - 0x9fffff are some more esoteric system calls
447 */
448#define NR(x) ((__ARM_NR_##x) - __ARM_NR_BASE)
449asmlinkage int arm_syscall(int no, struct pt_regs *regs)
450{
451 struct thread_info *thread = current_thread_info();
452 siginfo_t info;
453
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000454 if ((no >> 16) != (__ARM_NR_BASE>> 16))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 return bad_syscall(no, regs);
456
457 switch (no & 0xffff) {
458 case 0: /* branch through 0 */
459 info.si_signo = SIGSEGV;
460 info.si_errno = 0;
461 info.si_code = SEGV_MAPERR;
462 info.si_addr = NULL;
463
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700464 arm_notify_die("branch through zero", regs, &info, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return 0;
466
467 case NR(breakpoint): /* SWI BREAK_POINT */
468 regs->ARM_pc -= thumb_mode(regs) ? 2 : 4;
469 ptrace_break(current, regs);
470 return regs->ARM_r0;
471
472 /*
473 * Flush a region from virtual address 'r0' to virtual address 'r1'
474 * _exclusive_. There is no alignment requirement on either address;
475 * user space does not need to know the hardware cache layout.
476 *
477 * r2 contains flags. It should ALWAYS be passed as ZERO until it
478 * is defined to be something else. For now we ignore it, but may
479 * the fires of hell burn in your belly if you break this rule. ;)
480 *
481 * (at a later date, we may want to allow this call to not flush
482 * various aspects of the cache. Passing '0' will guarantee that
483 * everything necessary gets flushed to maintain consistency in
484 * the specified region).
485 */
486 case NR(cacheflush):
487 do_cache_op(regs->ARM_r0, regs->ARM_r1, regs->ARM_r2);
488 return 0;
489
490 case NR(usr26):
491 if (!(elf_hwcap & HWCAP_26BIT))
492 break;
493 regs->ARM_cpsr &= ~MODE32_BIT;
494 return regs->ARM_r0;
495
496 case NR(usr32):
497 if (!(elf_hwcap & HWCAP_26BIT))
498 break;
499 regs->ARM_cpsr |= MODE32_BIT;
500 return regs->ARM_r0;
501
502 case NR(set_tls):
503 thread->tp_value = regs->ARM_r0;
Nicolas Pitre4b0e07a2005-05-05 23:24:45 +0100504#if defined(CONFIG_HAS_TLS_REG)
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100505 asm ("mcr p15, 0, %0, c13, c0, 3" : : "r" (regs->ARM_r0) );
Nicolas Pitre4b0e07a2005-05-05 23:24:45 +0100506#elif !defined(CONFIG_TLS_REG_EMUL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 /*
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100508 * User space must never try to access this directly.
509 * Expect your app to break eventually if you do so.
510 * The user helper at 0xffff0fe0 must be used instead.
511 * (see entry-armv.S for details)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 */
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100513 *((unsigned int *)0xffff0ff0) = regs->ARM_r0;
514#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 return 0;
516
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100517#ifdef CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG
518 /*
519 * Atomically store r1 in *r2 if *r2 is equal to r0 for user space.
520 * Return zero in r0 if *MEM was changed or non-zero if no exchange
521 * happened. Also set the user C flag accordingly.
522 * If access permissions have to be fixed up then non-zero is
523 * returned and the operation has to be re-attempted.
524 *
525 * *NOTE*: This is a ghost syscall private to the kernel. Only the
526 * __kuser_cmpxchg code in entry-armv.S should be aware of its
527 * existence. Don't ever use this from user code.
528 */
529 case 0xfff0:
Nicolas Pitreb49c0f22007-11-20 17:20:29 +0100530 for (;;) {
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100531 extern void do_DataAbort(unsigned long addr, unsigned int fsr,
532 struct pt_regs *regs);
533 unsigned long val;
534 unsigned long addr = regs->ARM_r2;
535 struct mm_struct *mm = current->mm;
536 pgd_t *pgd; pmd_t *pmd; pte_t *pte;
Hugh Dickins69b04752005-10-29 18:16:36 -0700537 spinlock_t *ptl;
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100538
539 regs->ARM_cpsr &= ~PSR_C_BIT;
Hugh Dickins69b04752005-10-29 18:16:36 -0700540 down_read(&mm->mmap_sem);
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100541 pgd = pgd_offset(mm, addr);
542 if (!pgd_present(*pgd))
543 goto bad_access;
544 pmd = pmd_offset(pgd, addr);
545 if (!pmd_present(*pmd))
546 goto bad_access;
Hugh Dickins69b04752005-10-29 18:16:36 -0700547 pte = pte_offset_map_lock(mm, pmd, addr, &ptl);
Nicolas Pitre2ce98042006-03-25 22:44:05 +0000548 if (!pte_present(*pte) || !pte_dirty(*pte)) {
Hugh Dickins69b04752005-10-29 18:16:36 -0700549 pte_unmap_unlock(pte, ptl);
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100550 goto bad_access;
Hugh Dickins69b04752005-10-29 18:16:36 -0700551 }
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100552 val = *(unsigned long *)addr;
553 val -= regs->ARM_r0;
554 if (val == 0) {
555 *(unsigned long *)addr = regs->ARM_r1;
556 regs->ARM_cpsr |= PSR_C_BIT;
557 }
Hugh Dickins69b04752005-10-29 18:16:36 -0700558 pte_unmap_unlock(pte, ptl);
559 up_read(&mm->mmap_sem);
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100560 return val;
561
562 bad_access:
Hugh Dickins69b04752005-10-29 18:16:36 -0700563 up_read(&mm->mmap_sem);
Nicolas Pitre74f88492005-10-04 23:17:52 +0100564 /* simulate a write access fault */
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100565 do_DataAbort(addr, 15 + (1 << 11), regs);
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100566 }
567#endif
568
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 default:
570 /* Calls 9f00xx..9f07ff are defined to return -ENOSYS
571 if not implemented, rather than raising SIGILL. This
572 way the calling program can gracefully determine whether
573 a feature is supported. */
574 if (no <= 0x7ff)
575 return -ENOSYS;
576 break;
577 }
578#ifdef CONFIG_DEBUG_USER
579 /*
580 * experience shows that these seem to indicate that
581 * something catastrophic has happened
582 */
583 if (user_debug & UDBG_SYSCALL) {
584 printk("[%d] %s: arm syscall %d\n",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700585 task_pid_nr(current), current->comm, no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 dump_instr(regs);
587 if (user_mode(regs)) {
Russell King652a12e2005-04-17 15:50:36 +0100588 __show_regs(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 c_backtrace(regs->ARM_fp, processor_mode(regs));
590 }
591 }
592#endif
593 info.si_signo = SIGILL;
594 info.si_errno = 0;
595 info.si_code = ILL_ILLTRP;
596 info.si_addr = (void __user *)instruction_pointer(regs) -
597 (thumb_mode(regs) ? 2 : 4);
598
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700599 arm_notify_die("Oops - bad syscall(2)", regs, &info, no, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return 0;
601}
602
Nicolas Pitre4b0e07a2005-05-05 23:24:45 +0100603#ifdef CONFIG_TLS_REG_EMUL
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100604
605/*
606 * We might be running on an ARMv6+ processor which should have the TLS
Nicolas Pitre4b0e07a2005-05-05 23:24:45 +0100607 * register but for some reason we can't use it, or maybe an SMP system
608 * using a pre-ARMv6 processor (there are apparently a few prototypes like
609 * that in existence) and therefore access to that register must be
610 * emulated.
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100611 */
612
613static int get_tp_trap(struct pt_regs *regs, unsigned int instr)
614{
615 int reg = (instr >> 12) & 15;
616 if (reg == 15)
617 return 1;
618 regs->uregs[reg] = current_thread_info()->tp_value;
619 regs->ARM_pc += 4;
620 return 0;
621}
622
623static struct undef_hook arm_mrc_hook = {
624 .instr_mask = 0x0fff0fff,
625 .instr_val = 0x0e1d0f70,
626 .cpsr_mask = PSR_T_BIT,
627 .cpsr_val = 0,
628 .fn = get_tp_trap,
629};
630
631static int __init arm_mrc_hook_init(void)
632{
633 register_undef_hook(&arm_mrc_hook);
634 return 0;
635}
636
637late_initcall(arm_mrc_hook_init);
638
639#endif
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641void __bad_xchg(volatile void *ptr, int size)
642{
643 printk("xchg: bad data size: pc 0x%p, ptr 0x%p, size %d\n",
644 __builtin_return_address(0), ptr, size);
645 BUG();
646}
647EXPORT_SYMBOL(__bad_xchg);
648
649/*
650 * A data abort trap was taken, but we did not handle the instruction.
651 * Try to abort the user program, or panic if it was the kernel.
652 */
653asmlinkage void
654baddataabort(int code, unsigned long instr, struct pt_regs *regs)
655{
656 unsigned long addr = instruction_pointer(regs);
657 siginfo_t info;
658
659#ifdef CONFIG_DEBUG_USER
660 if (user_debug & UDBG_BADABORT) {
661 printk(KERN_ERR "[%d] %s: bad data abort: code %d instr 0x%08lx\n",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700662 task_pid_nr(current), current->comm, code, instr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 dump_instr(regs);
664 show_pte(current->mm, addr);
665 }
666#endif
667
668 info.si_signo = SIGILL;
669 info.si_errno = 0;
670 info.si_code = ILL_ILLOPC;
671 info.si_addr = (void __user *)addr;
672
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700673 arm_notify_die("unknown data abort code", regs, &info, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
Nicolas Pitre7174d852006-12-07 19:09:20 +0100676void __attribute__((noreturn)) __bug(const char *file, int line)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
Nicolas Pitre7174d852006-12-07 19:09:20 +0100678 printk(KERN_CRIT"kernel BUG at %s:%d!\n", file, line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 *(int *)0 = 0;
Catalin Marinas6a1ced52005-09-21 22:14:05 +0100680
681 /* Avoid "noreturn function does return" */
682 for (;;);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
684EXPORT_SYMBOL(__bug);
685
686void __readwrite_bug(const char *fn)
687{
688 printk("%s called, but not implemented\n", fn);
689 BUG();
690}
691EXPORT_SYMBOL(__readwrite_bug);
692
693void __pte_error(const char *file, int line, unsigned long val)
694{
695 printk("%s:%d: bad pte %08lx.\n", file, line, val);
696}
697
698void __pmd_error(const char *file, int line, unsigned long val)
699{
700 printk("%s:%d: bad pmd %08lx.\n", file, line, val);
701}
702
703void __pgd_error(const char *file, int line, unsigned long val)
704{
705 printk("%s:%d: bad pgd %08lx.\n", file, line, val);
706}
707
708asmlinkage void __div0(void)
709{
710 printk("Division by zero in kernel.\n");
711 dump_stack();
712}
713EXPORT_SYMBOL(__div0);
714
715void abort(void)
716{
717 BUG();
718
719 /* if that doesn't kill us, halt */
720 panic("Oops failed to kill thread");
721}
722EXPORT_SYMBOL(abort);
723
724void __init trap_init(void)
725{
Jason Wessel5cbad0e2008-02-20 13:33:40 -0600726 return;
727}
728
729void __init early_trap_init(void)
730{
Hyok S. Choic760fc12006-03-27 15:18:50 +0100731 unsigned long vectors = CONFIG_VECTORS_BASE;
Russell King79335232005-04-26 15:17:42 +0100732 extern char __stubs_start[], __stubs_end[];
733 extern char __vectors_start[], __vectors_end[];
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100734 extern char __kuser_helper_start[], __kuser_helper_end[];
735 int kuser_sz = __kuser_helper_end - __kuser_helper_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Russell King79335232005-04-26 15:17:42 +0100737 /*
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100738 * Copy the vectors, stubs and kuser helpers (in entry-armv.S)
739 * into the vector page, mapped at 0xffff0000, and ensure these
740 * are visible to the instruction stream.
Russell King79335232005-04-26 15:17:42 +0100741 */
Hyok S. Choic760fc12006-03-27 15:18:50 +0100742 memcpy((void *)vectors, __vectors_start, __vectors_end - __vectors_start);
743 memcpy((void *)vectors + 0x200, __stubs_start, __stubs_end - __stubs_start);
744 memcpy((void *)vectors + 0x1000 - kuser_sz, __kuser_helper_start, kuser_sz);
Russell Kinge00d3492005-06-22 20:26:05 +0100745
746 /*
747 * Copy signal return handlers into the vector page, and
748 * set sigreturn to be a pointer to these.
749 */
750 memcpy((void *)KERN_SIGRETURN_CODE, sigreturn_codes,
751 sizeof(sigreturn_codes));
752
Hyok S. Choic760fc12006-03-27 15:18:50 +0100753 flush_icache_range(vectors, vectors + PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 modify_domain(DOMAIN_USER, DOMAIN_CLIENT);
755}