[PATCH] ARM: Move signal return code into vector page
[linux-2.6.22.y-op.git] / arch / arm / kernel / traps.c
blob2fb0a4cfb37a4af48c2365d500608ef871197e1a
1 /*
2 * linux/arch/arm/kernel/traps.c
4 * Copyright (C) 1995-2002 Russell King
5 * Fragments that appear the same as linux/arch/i386/kernel/traps.c (C) Linus Torvalds
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 * '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.
15 #include <linux/config.h>
16 #include <linux/module.h>
17 #include <linux/signal.h>
18 #include <linux/spinlock.h>
19 #include <linux/personality.h>
20 #include <linux/ptrace.h>
21 #include <linux/kallsyms.h>
22 #include <linux/init.h>
24 #include <asm/atomic.h>
25 #include <asm/cacheflush.h>
26 #include <asm/io.h>
27 #include <asm/system.h>
28 #include <asm/uaccess.h>
29 #include <asm/unistd.h>
30 #include <asm/traps.h>
32 #include "ptrace.h"
33 #include "signal.h"
35 const char *processor_modes[]=
36 { "USER_26", "FIQ_26" , "IRQ_26" , "SVC_26" , "UK4_26" , "UK5_26" , "UK6_26" , "UK7_26" ,
37 "UK8_26" , "UK9_26" , "UK10_26", "UK11_26", "UK12_26", "UK13_26", "UK14_26", "UK15_26",
38 "USER_32", "FIQ_32" , "IRQ_32" , "SVC_32" , "UK4_32" , "UK5_32" , "UK6_32" , "ABT_32" ,
39 "UK8_32" , "UK9_32" , "UK10_32", "UND_32" , "UK12_32", "UK13_32", "UK14_32", "SYS_32"
42 static const char *handler[]= { "prefetch abort", "data abort", "address exception", "interrupt" };
44 #ifdef CONFIG_DEBUG_USER
45 unsigned int user_debug;
47 static int __init user_debug_setup(char *str)
49 get_option(&str, &user_debug);
50 return 1;
52 __setup("user_debug=", user_debug_setup);
53 #endif
55 void dump_backtrace_entry(unsigned long where, unsigned long from)
57 #ifdef CONFIG_KALLSYMS
58 printk("[<%08lx>] ", where);
59 print_symbol("(%s) ", where);
60 printk("from [<%08lx>] ", from);
61 print_symbol("(%s)\n", from);
62 #else
63 printk("Function entered at [<%08lx>] from [<%08lx>]\n", where, from);
64 #endif
68 * Stack pointers should always be within the kernels view of
69 * physical memory. If it is not there, then we can't dump
70 * out any information relating to the stack.
72 static int verify_stack(unsigned long sp)
74 if (sp < PAGE_OFFSET || (sp > (unsigned long)high_memory && high_memory != 0))
75 return -EFAULT;
77 return 0;
81 * Dump out the contents of some memory nicely...
83 static void dump_mem(const char *str, unsigned long bottom, unsigned long top)
85 unsigned long p = bottom & ~31;
86 mm_segment_t fs;
87 int i;
90 * We need to switch to kernel mode so that we can use __get_user
91 * to safely read from kernel space. Note that we now dump the
92 * code first, just in case the backtrace kills us.
94 fs = get_fs();
95 set_fs(KERNEL_DS);
97 printk("%s(0x%08lx to 0x%08lx)\n", str, bottom, top);
99 for (p = bottom & ~31; p < top;) {
100 printk("%04lx: ", p & 0xffff);
102 for (i = 0; i < 8; i++, p += 4) {
103 unsigned int val;
105 if (p < bottom || p >= top)
106 printk(" ");
107 else {
108 __get_user(val, (unsigned long *)p);
109 printk("%08x ", val);
112 printk ("\n");
115 set_fs(fs);
118 static void dump_instr(struct pt_regs *regs)
120 unsigned long addr = instruction_pointer(regs);
121 const int thumb = thumb_mode(regs);
122 const int width = thumb ? 4 : 8;
123 mm_segment_t fs;
124 int i;
127 * We need to switch to kernel mode so that we can use __get_user
128 * to safely read from kernel space. Note that we now dump the
129 * code first, just in case the backtrace kills us.
131 fs = get_fs();
132 set_fs(KERNEL_DS);
134 printk("Code: ");
135 for (i = -4; i < 1; i++) {
136 unsigned int val, bad;
138 if (thumb)
139 bad = __get_user(val, &((u16 *)addr)[i]);
140 else
141 bad = __get_user(val, &((u32 *)addr)[i]);
143 if (!bad)
144 printk(i == 0 ? "(%0*x) " : "%0*x ", width, val);
145 else {
146 printk("bad PC value.");
147 break;
150 printk("\n");
152 set_fs(fs);
155 static void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk)
157 unsigned int fp;
158 int ok = 1;
160 printk("Backtrace: ");
161 fp = regs->ARM_fp;
162 if (!fp) {
163 printk("no frame pointer");
164 ok = 0;
165 } else if (verify_stack(fp)) {
166 printk("invalid frame pointer 0x%08x", fp);
167 ok = 0;
168 } else if (fp < (unsigned long)(tsk->thread_info + 1))
169 printk("frame pointer underflow");
170 printk("\n");
172 if (ok)
173 c_backtrace(fp, processor_mode(regs));
176 void dump_stack(void)
178 #ifdef CONFIG_DEBUG_ERRORS
179 __backtrace();
180 #endif
183 EXPORT_SYMBOL(dump_stack);
185 void show_stack(struct task_struct *tsk, unsigned long *sp)
187 unsigned long fp;
189 if (!tsk)
190 tsk = current;
192 if (tsk != current)
193 fp = thread_saved_fp(tsk);
194 else
195 asm("mov%? %0, fp" : "=r" (fp));
197 c_backtrace(fp, 0x10);
198 barrier();
201 DEFINE_SPINLOCK(die_lock);
204 * This function is protected against re-entrancy.
206 NORET_TYPE void die(const char *str, struct pt_regs *regs, int err)
208 struct task_struct *tsk = current;
209 static int die_counter;
211 console_verbose();
212 spin_lock_irq(&die_lock);
213 bust_spinlocks(1);
215 printk("Internal error: %s: %x [#%d]\n", str, err, ++die_counter);
216 print_modules();
217 __show_regs(regs);
218 printk("Process %s (pid: %d, stack limit = 0x%p)\n",
219 tsk->comm, tsk->pid, tsk->thread_info + 1);
221 if (!user_mode(regs) || in_interrupt()) {
222 dump_mem("Stack: ", regs->ARM_sp,
223 THREAD_SIZE + (unsigned long)tsk->thread_info);
224 dump_backtrace(regs, tsk);
225 dump_instr(regs);
228 bust_spinlocks(0);
229 spin_unlock_irq(&die_lock);
230 do_exit(SIGSEGV);
233 void die_if_kernel(const char *str, struct pt_regs *regs, int err)
235 if (user_mode(regs))
236 return;
238 die(str, regs, err);
241 static void notify_die(const char *str, struct pt_regs *regs, siginfo_t *info,
242 unsigned long err, unsigned long trap)
244 if (user_mode(regs)) {
245 current->thread.error_code = err;
246 current->thread.trap_no = trap;
248 force_sig_info(info->si_signo, info, current);
249 } else {
250 die(str, regs, err);
254 static LIST_HEAD(undef_hook);
255 static DEFINE_SPINLOCK(undef_lock);
257 void register_undef_hook(struct undef_hook *hook)
259 spin_lock_irq(&undef_lock);
260 list_add(&hook->node, &undef_hook);
261 spin_unlock_irq(&undef_lock);
264 void unregister_undef_hook(struct undef_hook *hook)
266 spin_lock_irq(&undef_lock);
267 list_del(&hook->node);
268 spin_unlock_irq(&undef_lock);
271 asmlinkage void do_undefinstr(struct pt_regs *regs)
273 unsigned int correction = thumb_mode(regs) ? 2 : 4;
274 unsigned int instr;
275 struct undef_hook *hook;
276 siginfo_t info;
277 void __user *pc;
280 * According to the ARM ARM, PC is 2 or 4 bytes ahead,
281 * depending whether we're in Thumb mode or not.
282 * Correct this offset.
284 regs->ARM_pc -= correction;
286 pc = (void __user *)instruction_pointer(regs);
287 if (thumb_mode(regs)) {
288 get_user(instr, (u16 __user *)pc);
289 } else {
290 get_user(instr, (u32 __user *)pc);
293 spin_lock_irq(&undef_lock);
294 list_for_each_entry(hook, &undef_hook, node) {
295 if ((instr & hook->instr_mask) == hook->instr_val &&
296 (regs->ARM_cpsr & hook->cpsr_mask) == hook->cpsr_val) {
297 if (hook->fn(regs, instr) == 0) {
298 spin_unlock_irq(&undef_lock);
299 return;
303 spin_unlock_irq(&undef_lock);
305 #ifdef CONFIG_DEBUG_USER
306 if (user_debug & UDBG_UNDEFINED) {
307 printk(KERN_INFO "%s (%d): undefined instruction: pc=%p\n",
308 current->comm, current->pid, pc);
309 dump_instr(regs);
311 #endif
313 info.si_signo = SIGILL;
314 info.si_errno = 0;
315 info.si_code = ILL_ILLOPC;
316 info.si_addr = pc;
318 notify_die("Oops - undefined instruction", regs, &info, 0, 6);
321 asmlinkage void do_unexp_fiq (struct pt_regs *regs)
323 #ifndef CONFIG_IGNORE_FIQ
324 printk("Hmm. Unexpected FIQ received, but trying to continue\n");
325 printk("You may have a hardware problem...\n");
326 #endif
330 * bad_mode handles the impossible case in the vectors. If you see one of
331 * these, then it's extremely serious, and could mean you have buggy hardware.
332 * It never returns, and never tries to sync. We hope that we can at least
333 * dump out some state information...
335 asmlinkage void bad_mode(struct pt_regs *regs, int reason, int proc_mode)
337 console_verbose();
339 printk(KERN_CRIT "Bad mode in %s handler detected: mode %s\n",
340 handler[reason], processor_modes[proc_mode]);
342 die("Oops - bad mode", regs, 0);
343 local_irq_disable();
344 panic("bad mode");
347 static int bad_syscall(int n, struct pt_regs *regs)
349 struct thread_info *thread = current_thread_info();
350 siginfo_t info;
352 if (current->personality != PER_LINUX && thread->exec_domain->handler) {
353 thread->exec_domain->handler(n, regs);
354 return regs->ARM_r0;
357 #ifdef CONFIG_DEBUG_USER
358 if (user_debug & UDBG_SYSCALL) {
359 printk(KERN_ERR "[%d] %s: obsolete system call %08x.\n",
360 current->pid, current->comm, n);
361 dump_instr(regs);
363 #endif
365 info.si_signo = SIGILL;
366 info.si_errno = 0;
367 info.si_code = ILL_ILLTRP;
368 info.si_addr = (void __user *)instruction_pointer(regs) -
369 (thumb_mode(regs) ? 2 : 4);
371 notify_die("Oops - bad syscall", regs, &info, n, 0);
373 return regs->ARM_r0;
376 static inline void
377 do_cache_op(unsigned long start, unsigned long end, int flags)
379 struct vm_area_struct *vma;
381 if (end < start || flags)
382 return;
384 vma = find_vma(current->active_mm, start);
385 if (vma && vma->vm_start < end) {
386 if (start < vma->vm_start)
387 start = vma->vm_start;
388 if (end > vma->vm_end)
389 end = vma->vm_end;
391 flush_cache_user_range(vma, start, end);
396 * Handle all unrecognised system calls.
397 * 0x9f0000 - 0x9fffff are some more esoteric system calls
399 #define NR(x) ((__ARM_NR_##x) - __ARM_NR_BASE)
400 asmlinkage int arm_syscall(int no, struct pt_regs *regs)
402 struct thread_info *thread = current_thread_info();
403 siginfo_t info;
405 if ((no >> 16) != 0x9f)
406 return bad_syscall(no, regs);
408 switch (no & 0xffff) {
409 case 0: /* branch through 0 */
410 info.si_signo = SIGSEGV;
411 info.si_errno = 0;
412 info.si_code = SEGV_MAPERR;
413 info.si_addr = NULL;
415 notify_die("branch through zero", regs, &info, 0, 0);
416 return 0;
418 case NR(breakpoint): /* SWI BREAK_POINT */
419 regs->ARM_pc -= thumb_mode(regs) ? 2 : 4;
420 ptrace_break(current, regs);
421 return regs->ARM_r0;
424 * Flush a region from virtual address 'r0' to virtual address 'r1'
425 * _exclusive_. There is no alignment requirement on either address;
426 * user space does not need to know the hardware cache layout.
428 * r2 contains flags. It should ALWAYS be passed as ZERO until it
429 * is defined to be something else. For now we ignore it, but may
430 * the fires of hell burn in your belly if you break this rule. ;)
432 * (at a later date, we may want to allow this call to not flush
433 * various aspects of the cache. Passing '0' will guarantee that
434 * everything necessary gets flushed to maintain consistency in
435 * the specified region).
437 case NR(cacheflush):
438 do_cache_op(regs->ARM_r0, regs->ARM_r1, regs->ARM_r2);
439 return 0;
441 case NR(usr26):
442 if (!(elf_hwcap & HWCAP_26BIT))
443 break;
444 regs->ARM_cpsr &= ~MODE32_BIT;
445 return regs->ARM_r0;
447 case NR(usr32):
448 if (!(elf_hwcap & HWCAP_26BIT))
449 break;
450 regs->ARM_cpsr |= MODE32_BIT;
451 return regs->ARM_r0;
453 case NR(set_tls):
454 thread->tp_value = regs->ARM_r0;
455 #if defined(CONFIG_HAS_TLS_REG)
456 asm ("mcr p15, 0, %0, c13, c0, 3" : : "r" (regs->ARM_r0) );
457 #elif !defined(CONFIG_TLS_REG_EMUL)
459 * User space must never try to access this directly.
460 * Expect your app to break eventually if you do so.
461 * The user helper at 0xffff0fe0 must be used instead.
462 * (see entry-armv.S for details)
464 *((unsigned int *)0xffff0ff0) = regs->ARM_r0;
465 #endif
466 return 0;
468 #ifdef CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG
470 * Atomically store r1 in *r2 if *r2 is equal to r0 for user space.
471 * Return zero in r0 if *MEM was changed or non-zero if no exchange
472 * happened. Also set the user C flag accordingly.
473 * If access permissions have to be fixed up then non-zero is
474 * returned and the operation has to be re-attempted.
476 * *NOTE*: This is a ghost syscall private to the kernel. Only the
477 * __kuser_cmpxchg code in entry-armv.S should be aware of its
478 * existence. Don't ever use this from user code.
480 case 0xfff0:
482 extern void do_DataAbort(unsigned long addr, unsigned int fsr,
483 struct pt_regs *regs);
484 unsigned long val;
485 unsigned long addr = regs->ARM_r2;
486 struct mm_struct *mm = current->mm;
487 pgd_t *pgd; pmd_t *pmd; pte_t *pte;
489 regs->ARM_cpsr &= ~PSR_C_BIT;
490 spin_lock(&mm->page_table_lock);
491 pgd = pgd_offset(mm, addr);
492 if (!pgd_present(*pgd))
493 goto bad_access;
494 pmd = pmd_offset(pgd, addr);
495 if (!pmd_present(*pmd))
496 goto bad_access;
497 pte = pte_offset_map(pmd, addr);
498 if (!pte_present(*pte) || !pte_write(*pte))
499 goto bad_access;
500 val = *(unsigned long *)addr;
501 val -= regs->ARM_r0;
502 if (val == 0) {
503 *(unsigned long *)addr = regs->ARM_r1;
504 regs->ARM_cpsr |= PSR_C_BIT;
506 spin_unlock(&mm->page_table_lock);
507 return val;
509 bad_access:
510 spin_unlock(&mm->page_table_lock);
511 /* simulate a read access fault */
512 do_DataAbort(addr, 15 + (1 << 11), regs);
513 return -1;
515 #endif
517 default:
518 /* Calls 9f00xx..9f07ff are defined to return -ENOSYS
519 if not implemented, rather than raising SIGILL. This
520 way the calling program can gracefully determine whether
521 a feature is supported. */
522 if (no <= 0x7ff)
523 return -ENOSYS;
524 break;
526 #ifdef CONFIG_DEBUG_USER
528 * experience shows that these seem to indicate that
529 * something catastrophic has happened
531 if (user_debug & UDBG_SYSCALL) {
532 printk("[%d] %s: arm syscall %d\n",
533 current->pid, current->comm, no);
534 dump_instr(regs);
535 if (user_mode(regs)) {
536 __show_regs(regs);
537 c_backtrace(regs->ARM_fp, processor_mode(regs));
540 #endif
541 info.si_signo = SIGILL;
542 info.si_errno = 0;
543 info.si_code = ILL_ILLTRP;
544 info.si_addr = (void __user *)instruction_pointer(regs) -
545 (thumb_mode(regs) ? 2 : 4);
547 notify_die("Oops - bad syscall(2)", regs, &info, no, 0);
548 return 0;
551 #ifdef CONFIG_TLS_REG_EMUL
554 * We might be running on an ARMv6+ processor which should have the TLS
555 * register but for some reason we can't use it, or maybe an SMP system
556 * using a pre-ARMv6 processor (there are apparently a few prototypes like
557 * that in existence) and therefore access to that register must be
558 * emulated.
561 static int get_tp_trap(struct pt_regs *regs, unsigned int instr)
563 int reg = (instr >> 12) & 15;
564 if (reg == 15)
565 return 1;
566 regs->uregs[reg] = current_thread_info()->tp_value;
567 regs->ARM_pc += 4;
568 return 0;
571 static struct undef_hook arm_mrc_hook = {
572 .instr_mask = 0x0fff0fff,
573 .instr_val = 0x0e1d0f70,
574 .cpsr_mask = PSR_T_BIT,
575 .cpsr_val = 0,
576 .fn = get_tp_trap,
579 static int __init arm_mrc_hook_init(void)
581 register_undef_hook(&arm_mrc_hook);
582 return 0;
585 late_initcall(arm_mrc_hook_init);
587 #endif
589 void __bad_xchg(volatile void *ptr, int size)
591 printk("xchg: bad data size: pc 0x%p, ptr 0x%p, size %d\n",
592 __builtin_return_address(0), ptr, size);
593 BUG();
595 EXPORT_SYMBOL(__bad_xchg);
598 * A data abort trap was taken, but we did not handle the instruction.
599 * Try to abort the user program, or panic if it was the kernel.
601 asmlinkage void
602 baddataabort(int code, unsigned long instr, struct pt_regs *regs)
604 unsigned long addr = instruction_pointer(regs);
605 siginfo_t info;
607 #ifdef CONFIG_DEBUG_USER
608 if (user_debug & UDBG_BADABORT) {
609 printk(KERN_ERR "[%d] %s: bad data abort: code %d instr 0x%08lx\n",
610 current->pid, current->comm, code, instr);
611 dump_instr(regs);
612 show_pte(current->mm, addr);
614 #endif
616 info.si_signo = SIGILL;
617 info.si_errno = 0;
618 info.si_code = ILL_ILLOPC;
619 info.si_addr = (void __user *)addr;
621 notify_die("unknown data abort code", regs, &info, instr, 0);
624 volatile void __bug(const char *file, int line, void *data)
626 printk(KERN_CRIT"kernel BUG at %s:%d!", file, line);
627 if (data)
628 printk(" - extra data = %p", data);
629 printk("\n");
630 *(int *)0 = 0;
632 EXPORT_SYMBOL(__bug);
634 void __readwrite_bug(const char *fn)
636 printk("%s called, but not implemented\n", fn);
637 BUG();
639 EXPORT_SYMBOL(__readwrite_bug);
641 void __pte_error(const char *file, int line, unsigned long val)
643 printk("%s:%d: bad pte %08lx.\n", file, line, val);
646 void __pmd_error(const char *file, int line, unsigned long val)
648 printk("%s:%d: bad pmd %08lx.\n", file, line, val);
651 void __pgd_error(const char *file, int line, unsigned long val)
653 printk("%s:%d: bad pgd %08lx.\n", file, line, val);
656 asmlinkage void __div0(void)
658 printk("Division by zero in kernel.\n");
659 dump_stack();
661 EXPORT_SYMBOL(__div0);
663 void abort(void)
665 BUG();
667 /* if that doesn't kill us, halt */
668 panic("Oops failed to kill thread");
670 EXPORT_SYMBOL(abort);
672 void __init trap_init(void)
674 extern char __stubs_start[], __stubs_end[];
675 extern char __vectors_start[], __vectors_end[];
676 extern char __kuser_helper_start[], __kuser_helper_end[];
677 int kuser_sz = __kuser_helper_end - __kuser_helper_start;
680 * Copy the vectors, stubs and kuser helpers (in entry-armv.S)
681 * into the vector page, mapped at 0xffff0000, and ensure these
682 * are visible to the instruction stream.
684 memcpy((void *)0xffff0000, __vectors_start, __vectors_end - __vectors_start);
685 memcpy((void *)0xffff0200, __stubs_start, __stubs_end - __stubs_start);
686 memcpy((void *)0xffff1000 - kuser_sz, __kuser_helper_start, kuser_sz);
689 * Copy signal return handlers into the vector page, and
690 * set sigreturn to be a pointer to these.
692 memcpy((void *)KERN_SIGRETURN_CODE, sigreturn_codes,
693 sizeof(sigreturn_codes));
695 flush_icache_range(0xffff0000, 0xffff0000 + PAGE_SIZE);
696 modify_domain(DOMAIN_USER, DOMAIN_CLIENT);