blob: 467b69ed1021b39fb87848b4009edfef9fb9f1d2 [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
53 printk("[<%08lx>] ", where);
54 print_symbol("(%s) ", where);
55 printk("from [<%08lx>] ", from);
56 print_symbol("(%s)\n", from);
57#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{
86 unsigned long p = bottom & ~31;
87 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
100 for (p = bottom & ~31; p < top;) {
101 printk("%04lx: ", p & 0xffff);
102
103 for (i = 0; i < 8; i++, p += 4) {
104 unsigned int val;
105
106 if (p < bottom || p >= top)
107 printk(" ");
108 else {
109 __get_user(val, (unsigned long *)p);
110 printk("%08x ", val);
111 }
112 }
113 printk ("\n");
114 }
115
116 set_fs(fs);
117}
118
119static void dump_instr(struct pt_regs *regs)
120{
121 unsigned long addr = instruction_pointer(regs);
122 const int thumb = thumb_mode(regs);
123 const int width = thumb ? 4 : 8;
124 mm_segment_t fs;
125 int i;
126
127 /*
128 * We need to switch to kernel mode so that we can use __get_user
129 * to safely read from kernel space. Note that we now dump the
130 * code first, just in case the backtrace kills us.
131 */
132 fs = get_fs();
133 set_fs(KERNEL_DS);
134
135 printk("Code: ");
136 for (i = -4; i < 1; i++) {
137 unsigned int val, bad;
138
139 if (thumb)
140 bad = __get_user(val, &((u16 *)addr)[i]);
141 else
142 bad = __get_user(val, &((u32 *)addr)[i]);
143
144 if (!bad)
145 printk(i == 0 ? "(%0*x) " : "%0*x ", width, val);
146 else {
147 printk("bad PC value.");
148 break;
149 }
150 }
151 printk("\n");
152
153 set_fs(fs);
154}
155
Catalin Marinasbff595c2009-02-16 11:41:36 +0100156#ifdef CONFIG_ARM_UNWIND
157static inline void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk)
158{
159 unwind_backtrace(regs, tsk);
160}
161#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162static void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk)
163{
Catalin Marinas67a94c22009-02-11 13:06:53 +0100164 unsigned int fp, mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 int ok = 1;
166
167 printk("Backtrace: ");
Catalin Marinas67a94c22009-02-11 13:06:53 +0100168
169 if (!tsk)
170 tsk = current;
171
172 if (regs) {
173 fp = regs->ARM_fp;
174 mode = processor_mode(regs);
175 } else if (tsk != current) {
176 fp = thread_saved_fp(tsk);
177 mode = 0x10;
178 } else {
179 asm("mov %0, fp" : "=r" (fp) : : "cc");
180 mode = 0x10;
181 }
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 if (!fp) {
184 printk("no frame pointer");
185 ok = 0;
186 } else if (verify_stack(fp)) {
187 printk("invalid frame pointer 0x%08x", fp);
188 ok = 0;
Al Viro55205822006-01-12 01:05:57 -0800189 } else if (fp < (unsigned long)end_of_stack(tsk))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 printk("frame pointer underflow");
191 printk("\n");
192
193 if (ok)
Catalin Marinas67a94c22009-02-11 13:06:53 +0100194 c_backtrace(fp, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
Catalin Marinasbff595c2009-02-16 11:41:36 +0100196#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198void dump_stack(void)
199{
Catalin Marinas67a94c22009-02-11 13:06:53 +0100200 dump_backtrace(NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
203EXPORT_SYMBOL(dump_stack);
204
205void show_stack(struct task_struct *tsk, unsigned long *sp)
206{
Catalin Marinas67a94c22009-02-11 13:06:53 +0100207 dump_backtrace(NULL, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 barrier();
209}
210
Russell Kingd9202422007-06-17 13:38:27 +0100211#ifdef CONFIG_PREEMPT
212#define S_PREEMPT " PREEMPT"
213#else
214#define S_PREEMPT ""
215#endif
216#ifdef CONFIG_SMP
217#define S_SMP " SMP"
218#else
219#define S_SMP ""
220#endif
221
Russell Kingd3629792005-10-30 19:01:43 +0000222static void __die(const char *str, int err, struct thread_info *thread, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
Russell Kingd3629792005-10-30 19:01:43 +0000224 struct task_struct *tsk = thread->task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 static int die_counter;
226
Russell Kingd9202422007-06-17 13:38:27 +0100227 printk("Internal error: %s: %x [#%d]" S_PREEMPT S_SMP "\n",
228 str, err, ++die_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 print_modules();
Russell King652a12e2005-04-17 15:50:36 +0100230 __show_regs(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 printk("Process %s (pid: %d, stack limit = 0x%p)\n",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700232 tsk->comm, task_pid_nr(tsk), thread + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 if (!user_mode(regs) || in_interrupt()) {
Russell King4f7a1812005-05-05 13:11:00 +0100235 dump_mem("Stack: ", regs->ARM_sp,
Al Viro32d39a92006-01-12 01:05:58 -0800236 THREAD_SIZE + (unsigned long)task_stack_page(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 dump_backtrace(regs, tsk);
238 dump_instr(regs);
239 }
Russell Kingd3629792005-10-30 19:01:43 +0000240}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Russell Kingd3629792005-10-30 19:01:43 +0000242DEFINE_SPINLOCK(die_lock);
243
244/*
245 * This function is protected against re-entrancy.
246 */
247NORET_TYPE void die(const char *str, struct pt_regs *regs, int err)
248{
249 struct thread_info *thread = current_thread_info();
250
Russell Kingd9202422007-06-17 13:38:27 +0100251 oops_enter();
252
Russell Kingd3629792005-10-30 19:01:43 +0000253 console_verbose();
254 spin_lock_irq(&die_lock);
255 bust_spinlocks(1);
256 __die(str, err, thread, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 bust_spinlocks(0);
Pavel Emelianovbcdcd8e2007-07-17 04:03:42 -0700258 add_taint(TAINT_DIE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 spin_unlock_irq(&die_lock);
Russell King31867492006-02-19 19:53:56 +0000260
Russell Kingd9202422007-06-17 13:38:27 +0100261 if (in_interrupt())
262 panic("Fatal exception in interrupt");
263
Hormscea6a4b2006-07-30 03:03:34 -0700264 if (panic_on_oops)
Horms012c4372006-08-13 23:24:22 -0700265 panic("Fatal exception");
Russell King31867492006-02-19 19:53:56 +0000266
Russell Kingd9202422007-06-17 13:38:27 +0100267 oops_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 do_exit(SIGSEGV);
269}
270
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700271void arm_notify_die(const char *str, struct pt_regs *regs,
272 struct siginfo *info, unsigned long err, unsigned long trap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
274 if (user_mode(regs)) {
275 current->thread.error_code = err;
276 current->thread.trap_no = trap;
277
278 force_sig_info(info->si_signo, info, current);
279 } else {
280 die(str, regs, err);
281 }
282}
283
284static LIST_HEAD(undef_hook);
285static DEFINE_SPINLOCK(undef_lock);
286
287void register_undef_hook(struct undef_hook *hook)
288{
Russell King109d89c2005-07-16 16:43:33 +0100289 unsigned long flags;
290
291 spin_lock_irqsave(&undef_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 list_add(&hook->node, &undef_hook);
Russell King109d89c2005-07-16 16:43:33 +0100293 spin_unlock_irqrestore(&undef_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
296void unregister_undef_hook(struct undef_hook *hook)
297{
Russell King109d89c2005-07-16 16:43:33 +0100298 unsigned long flags;
299
300 spin_lock_irqsave(&undef_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 list_del(&hook->node);
Russell King109d89c2005-07-16 16:43:33 +0100302 spin_unlock_irqrestore(&undef_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
Russell Kingb03a5b72008-08-11 12:27:16 +0100305static int call_undef_hook(struct pt_regs *regs, unsigned int instr)
306{
307 struct undef_hook *hook;
308 unsigned long flags;
309 int (*fn)(struct pt_regs *regs, unsigned int instr) = NULL;
310
311 spin_lock_irqsave(&undef_lock, flags);
312 list_for_each_entry(hook, &undef_hook, node)
313 if ((instr & hook->instr_mask) == hook->instr_val &&
314 (regs->ARM_cpsr & hook->cpsr_mask) == hook->cpsr_val)
315 fn = hook->fn;
316 spin_unlock_irqrestore(&undef_lock, flags);
317
318 return fn ? fn(regs, instr) : 1;
319}
320
Russell King7ab3f8d2007-03-02 15:01:36 +0000321asmlinkage void __exception do_undefinstr(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 unsigned int correction = thumb_mode(regs) ? 2 : 4;
324 unsigned int instr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 siginfo_t info;
326 void __user *pc;
327
328 /*
329 * According to the ARM ARM, PC is 2 or 4 bytes ahead,
330 * depending whether we're in Thumb mode or not.
331 * Correct this offset.
332 */
333 regs->ARM_pc -= correction;
334
335 pc = (void __user *)instruction_pointer(regs);
Dan Williamsdfc544c2007-02-13 17:11:34 +0100336
337 if (processor_mode(regs) == SVC_MODE) {
338 instr = *(u32 *) pc;
339 } else if (thumb_mode(regs)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 get_user(instr, (u16 __user *)pc);
341 } else {
342 get_user(instr, (u32 __user *)pc);
343 }
344
Russell Kingb03a5b72008-08-11 12:27:16 +0100345 if (call_undef_hook(regs, instr) == 0)
346 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348#ifdef CONFIG_DEBUG_USER
349 if (user_debug & UDBG_UNDEFINED) {
350 printk(KERN_INFO "%s (%d): undefined instruction: pc=%p\n",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700351 current->comm, task_pid_nr(current), pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 dump_instr(regs);
353 }
354#endif
355
356 info.si_signo = SIGILL;
357 info.si_errno = 0;
358 info.si_code = ILL_ILLOPC;
359 info.si_addr = pc;
360
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700361 arm_notify_die("Oops - undefined instruction", regs, &info, 0, 6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363
364asmlinkage void do_unexp_fiq (struct pt_regs *regs)
365{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 printk("Hmm. Unexpected FIQ received, but trying to continue\n");
367 printk("You may have a hardware problem...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
369
370/*
371 * bad_mode handles the impossible case in the vectors. If you see one of
372 * these, then it's extremely serious, and could mean you have buggy hardware.
373 * It never returns, and never tries to sync. We hope that we can at least
374 * dump out some state information...
375 */
Russell Kingae0a8462007-01-09 12:57:37 +0000376asmlinkage void bad_mode(struct pt_regs *regs, int reason)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
378 console_verbose();
379
Russell Kingae0a8462007-01-09 12:57:37 +0000380 printk(KERN_CRIT "Bad mode in %s handler detected\n", handler[reason]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 die("Oops - bad mode", regs, 0);
383 local_irq_disable();
384 panic("bad mode");
385}
386
387static int bad_syscall(int n, struct pt_regs *regs)
388{
389 struct thread_info *thread = current_thread_info();
390 siginfo_t info;
391
Nicolas Pitrea999cb042005-10-28 16:35:46 +0100392 if (current->personality != PER_LINUX &&
393 current->personality != PER_LINUX_32BIT &&
394 thread->exec_domain->handler) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 thread->exec_domain->handler(n, regs);
396 return regs->ARM_r0;
397 }
398
399#ifdef CONFIG_DEBUG_USER
400 if (user_debug & UDBG_SYSCALL) {
401 printk(KERN_ERR "[%d] %s: obsolete system call %08x.\n",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700402 task_pid_nr(current), current->comm, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 dump_instr(regs);
404 }
405#endif
406
407 info.si_signo = SIGILL;
408 info.si_errno = 0;
409 info.si_code = ILL_ILLTRP;
410 info.si_addr = (void __user *)instruction_pointer(regs) -
411 (thumb_mode(regs) ? 2 : 4);
412
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700413 arm_notify_die("Oops - bad syscall", regs, &info, n, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 return regs->ARM_r0;
416}
417
418static inline void
419do_cache_op(unsigned long start, unsigned long end, int flags)
420{
Russell Kingaa45ee82009-09-28 11:41:51 +0100421 struct mm_struct *mm = current->active_mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 struct vm_area_struct *vma;
423
424 if (end < start || flags)
425 return;
426
Russell Kingaa45ee82009-09-28 11:41:51 +0100427 down_read(&mm->mmap_sem);
428 vma = find_vma(mm, start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 if (vma && vma->vm_start < end) {
430 if (start < vma->vm_start)
431 start = vma->vm_start;
432 if (end > vma->vm_end)
433 end = vma->vm_end;
434
435 flush_cache_user_range(vma, start, end);
436 }
Russell Kingaa45ee82009-09-28 11:41:51 +0100437 up_read(&mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
440/*
441 * Handle all unrecognised system calls.
442 * 0x9f0000 - 0x9fffff are some more esoteric system calls
443 */
444#define NR(x) ((__ARM_NR_##x) - __ARM_NR_BASE)
445asmlinkage int arm_syscall(int no, struct pt_regs *regs)
446{
447 struct thread_info *thread = current_thread_info();
448 siginfo_t info;
449
Nicolas Pitre3f2829a2006-01-14 16:31:29 +0000450 if ((no >> 16) != (__ARM_NR_BASE>> 16))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 return bad_syscall(no, regs);
452
453 switch (no & 0xffff) {
454 case 0: /* branch through 0 */
455 info.si_signo = SIGSEGV;
456 info.si_errno = 0;
457 info.si_code = SEGV_MAPERR;
458 info.si_addr = NULL;
459
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700460 arm_notify_die("branch through zero", regs, &info, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 return 0;
462
463 case NR(breakpoint): /* SWI BREAK_POINT */
464 regs->ARM_pc -= thumb_mode(regs) ? 2 : 4;
465 ptrace_break(current, regs);
466 return regs->ARM_r0;
467
468 /*
469 * Flush a region from virtual address 'r0' to virtual address 'r1'
470 * _exclusive_. There is no alignment requirement on either address;
471 * user space does not need to know the hardware cache layout.
472 *
473 * r2 contains flags. It should ALWAYS be passed as ZERO until it
474 * is defined to be something else. For now we ignore it, but may
475 * the fires of hell burn in your belly if you break this rule. ;)
476 *
477 * (at a later date, we may want to allow this call to not flush
478 * various aspects of the cache. Passing '0' will guarantee that
479 * everything necessary gets flushed to maintain consistency in
480 * the specified region).
481 */
482 case NR(cacheflush):
483 do_cache_op(regs->ARM_r0, regs->ARM_r1, regs->ARM_r2);
484 return 0;
485
486 case NR(usr26):
487 if (!(elf_hwcap & HWCAP_26BIT))
488 break;
489 regs->ARM_cpsr &= ~MODE32_BIT;
490 return regs->ARM_r0;
491
492 case NR(usr32):
493 if (!(elf_hwcap & HWCAP_26BIT))
494 break;
495 regs->ARM_cpsr |= MODE32_BIT;
496 return regs->ARM_r0;
497
498 case NR(set_tls):
499 thread->tp_value = regs->ARM_r0;
Nicolas Pitre4b0e07a2005-05-05 23:24:45 +0100500#if defined(CONFIG_HAS_TLS_REG)
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100501 asm ("mcr p15, 0, %0, c13, c0, 3" : : "r" (regs->ARM_r0) );
Nicolas Pitre4b0e07a2005-05-05 23:24:45 +0100502#elif !defined(CONFIG_TLS_REG_EMUL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 /*
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100504 * User space must never try to access this directly.
505 * Expect your app to break eventually if you do so.
506 * The user helper at 0xffff0fe0 must be used instead.
507 * (see entry-armv.S for details)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 */
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100509 *((unsigned int *)0xffff0ff0) = regs->ARM_r0;
510#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 return 0;
512
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100513#ifdef CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG
514 /*
515 * Atomically store r1 in *r2 if *r2 is equal to r0 for user space.
516 * Return zero in r0 if *MEM was changed or non-zero if no exchange
517 * happened. Also set the user C flag accordingly.
518 * If access permissions have to be fixed up then non-zero is
519 * returned and the operation has to be re-attempted.
520 *
521 * *NOTE*: This is a ghost syscall private to the kernel. Only the
522 * __kuser_cmpxchg code in entry-armv.S should be aware of its
523 * existence. Don't ever use this from user code.
524 */
525 case 0xfff0:
Nicolas Pitreb49c0f22007-11-20 17:20:29 +0100526 for (;;) {
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100527 extern void do_DataAbort(unsigned long addr, unsigned int fsr,
528 struct pt_regs *regs);
529 unsigned long val;
530 unsigned long addr = regs->ARM_r2;
531 struct mm_struct *mm = current->mm;
532 pgd_t *pgd; pmd_t *pmd; pte_t *pte;
Hugh Dickins69b04752005-10-29 18:16:36 -0700533 spinlock_t *ptl;
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100534
535 regs->ARM_cpsr &= ~PSR_C_BIT;
Hugh Dickins69b04752005-10-29 18:16:36 -0700536 down_read(&mm->mmap_sem);
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100537 pgd = pgd_offset(mm, addr);
538 if (!pgd_present(*pgd))
539 goto bad_access;
540 pmd = pmd_offset(pgd, addr);
541 if (!pmd_present(*pmd))
542 goto bad_access;
Hugh Dickins69b04752005-10-29 18:16:36 -0700543 pte = pte_offset_map_lock(mm, pmd, addr, &ptl);
Nicolas Pitre2ce98042006-03-25 22:44:05 +0000544 if (!pte_present(*pte) || !pte_dirty(*pte)) {
Hugh Dickins69b04752005-10-29 18:16:36 -0700545 pte_unmap_unlock(pte, ptl);
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100546 goto bad_access;
Hugh Dickins69b04752005-10-29 18:16:36 -0700547 }
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100548 val = *(unsigned long *)addr;
549 val -= regs->ARM_r0;
550 if (val == 0) {
551 *(unsigned long *)addr = regs->ARM_r1;
552 regs->ARM_cpsr |= PSR_C_BIT;
553 }
Hugh Dickins69b04752005-10-29 18:16:36 -0700554 pte_unmap_unlock(pte, ptl);
555 up_read(&mm->mmap_sem);
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100556 return val;
557
558 bad_access:
Hugh Dickins69b04752005-10-29 18:16:36 -0700559 up_read(&mm->mmap_sem);
Nicolas Pitre74f88492005-10-04 23:17:52 +0100560 /* simulate a write access fault */
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100561 do_DataAbort(addr, 15 + (1 << 11), regs);
Nicolas Pitredcef1f62005-06-08 19:00:47 +0100562 }
563#endif
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 default:
566 /* Calls 9f00xx..9f07ff are defined to return -ENOSYS
567 if not implemented, rather than raising SIGILL. This
568 way the calling program can gracefully determine whether
569 a feature is supported. */
570 if (no <= 0x7ff)
571 return -ENOSYS;
572 break;
573 }
574#ifdef CONFIG_DEBUG_USER
575 /*
576 * experience shows that these seem to indicate that
577 * something catastrophic has happened
578 */
579 if (user_debug & UDBG_SYSCALL) {
580 printk("[%d] %s: arm syscall %d\n",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700581 task_pid_nr(current), current->comm, no);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 dump_instr(regs);
583 if (user_mode(regs)) {
Russell King652a12e2005-04-17 15:50:36 +0100584 __show_regs(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 c_backtrace(regs->ARM_fp, processor_mode(regs));
586 }
587 }
588#endif
589 info.si_signo = SIGILL;
590 info.si_errno = 0;
591 info.si_code = ILL_ILLTRP;
592 info.si_addr = (void __user *)instruction_pointer(regs) -
593 (thumb_mode(regs) ? 2 : 4);
594
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700595 arm_notify_die("Oops - bad syscall(2)", regs, &info, no, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 return 0;
597}
598
Nicolas Pitre4b0e07a2005-05-05 23:24:45 +0100599#ifdef CONFIG_TLS_REG_EMUL
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100600
601/*
602 * We might be running on an ARMv6+ processor which should have the TLS
Nicolas Pitre4b0e07a2005-05-05 23:24:45 +0100603 * register but for some reason we can't use it, or maybe an SMP system
604 * using a pre-ARMv6 processor (there are apparently a few prototypes like
605 * that in existence) and therefore access to that register must be
606 * emulated.
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100607 */
608
609static int get_tp_trap(struct pt_regs *regs, unsigned int instr)
610{
611 int reg = (instr >> 12) & 15;
612 if (reg == 15)
613 return 1;
614 regs->uregs[reg] = current_thread_info()->tp_value;
615 regs->ARM_pc += 4;
616 return 0;
617}
618
619static struct undef_hook arm_mrc_hook = {
620 .instr_mask = 0x0fff0fff,
621 .instr_val = 0x0e1d0f70,
622 .cpsr_mask = PSR_T_BIT,
623 .cpsr_val = 0,
624 .fn = get_tp_trap,
625};
626
627static int __init arm_mrc_hook_init(void)
628{
629 register_undef_hook(&arm_mrc_hook);
630 return 0;
631}
632
633late_initcall(arm_mrc_hook_init);
634
635#endif
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637void __bad_xchg(volatile void *ptr, int size)
638{
639 printk("xchg: bad data size: pc 0x%p, ptr 0x%p, size %d\n",
640 __builtin_return_address(0), ptr, size);
641 BUG();
642}
643EXPORT_SYMBOL(__bad_xchg);
644
645/*
646 * A data abort trap was taken, but we did not handle the instruction.
647 * Try to abort the user program, or panic if it was the kernel.
648 */
649asmlinkage void
650baddataabort(int code, unsigned long instr, struct pt_regs *regs)
651{
652 unsigned long addr = instruction_pointer(regs);
653 siginfo_t info;
654
655#ifdef CONFIG_DEBUG_USER
656 if (user_debug & UDBG_BADABORT) {
657 printk(KERN_ERR "[%d] %s: bad data abort: code %d instr 0x%08lx\n",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700658 task_pid_nr(current), current->comm, code, instr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 dump_instr(regs);
660 show_pte(current->mm, addr);
661 }
662#endif
663
664 info.si_signo = SIGILL;
665 info.si_errno = 0;
666 info.si_code = ILL_ILLOPC;
667 info.si_addr = (void __user *)addr;
668
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -0700669 arm_notify_die("unknown data abort code", regs, &info, instr, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
Nicolas Pitre7174d852006-12-07 19:09:20 +0100672void __attribute__((noreturn)) __bug(const char *file, int line)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
Nicolas Pitre7174d852006-12-07 19:09:20 +0100674 printk(KERN_CRIT"kernel BUG at %s:%d!\n", file, line);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 *(int *)0 = 0;
Catalin Marinas6a1ced52005-09-21 22:14:05 +0100676
677 /* Avoid "noreturn function does return" */
678 for (;;);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
680EXPORT_SYMBOL(__bug);
681
682void __readwrite_bug(const char *fn)
683{
684 printk("%s called, but not implemented\n", fn);
685 BUG();
686}
687EXPORT_SYMBOL(__readwrite_bug);
688
689void __pte_error(const char *file, int line, unsigned long val)
690{
691 printk("%s:%d: bad pte %08lx.\n", file, line, val);
692}
693
694void __pmd_error(const char *file, int line, unsigned long val)
695{
696 printk("%s:%d: bad pmd %08lx.\n", file, line, val);
697}
698
699void __pgd_error(const char *file, int line, unsigned long val)
700{
701 printk("%s:%d: bad pgd %08lx.\n", file, line, val);
702}
703
704asmlinkage void __div0(void)
705{
706 printk("Division by zero in kernel.\n");
707 dump_stack();
708}
709EXPORT_SYMBOL(__div0);
710
711void abort(void)
712{
713 BUG();
714
715 /* if that doesn't kill us, halt */
716 panic("Oops failed to kill thread");
717}
718EXPORT_SYMBOL(abort);
719
720void __init trap_init(void)
721{
Jason Wessel5cbad0e2008-02-20 13:33:40 -0600722 return;
723}
724
725void __init early_trap_init(void)
726{
Hyok S. Choic760fc12006-03-27 15:18:50 +0100727 unsigned long vectors = CONFIG_VECTORS_BASE;
Russell King79335232005-04-26 15:17:42 +0100728 extern char __stubs_start[], __stubs_end[];
729 extern char __vectors_start[], __vectors_end[];
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100730 extern char __kuser_helper_start[], __kuser_helper_end[];
731 int kuser_sz = __kuser_helper_end - __kuser_helper_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Russell King79335232005-04-26 15:17:42 +0100733 /*
Nicolas Pitre2d2669b2005-04-29 22:08:33 +0100734 * Copy the vectors, stubs and kuser helpers (in entry-armv.S)
735 * into the vector page, mapped at 0xffff0000, and ensure these
736 * are visible to the instruction stream.
Russell King79335232005-04-26 15:17:42 +0100737 */
Hyok S. Choic760fc12006-03-27 15:18:50 +0100738 memcpy((void *)vectors, __vectors_start, __vectors_end - __vectors_start);
739 memcpy((void *)vectors + 0x200, __stubs_start, __stubs_end - __stubs_start);
740 memcpy((void *)vectors + 0x1000 - kuser_sz, __kuser_helper_start, kuser_sz);
Russell Kinge00d3492005-06-22 20:26:05 +0100741
742 /*
743 * Copy signal return handlers into the vector page, and
744 * set sigreturn to be a pointer to these.
745 */
746 memcpy((void *)KERN_SIGRETURN_CODE, sigreturn_codes,
747 sizeof(sigreturn_codes));
748
Hyok S. Choic760fc12006-03-27 15:18:50 +0100749 flush_icache_range(vectors, vectors + PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 modify_domain(DOMAIN_USER, DOMAIN_CLIENT);
751}