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>
27 #include <asm/system.h>
28 #include <asm/uaccess.h>
29 #include <asm/unistd.h>
30 #include <asm/traps.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
);
52 __setup("user_debug=", user_debug_setup
);
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
);
63 printk("Function entered at [<%08lx>] from [<%08lx>]\n", where
, from
);
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))
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;
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.
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) {
105 if (p
< bottom
|| p
>= top
)
108 __get_user(val
, (unsigned long *)p
);
109 printk("%08x ", val
);
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;
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.
135 for (i
= -4; i
< 1; i
++) {
136 unsigned int val
, bad
;
139 bad
= __get_user(val
, &((u16
*)addr
)[i
]);
141 bad
= __get_user(val
, &((u32
*)addr
)[i
]);
144 printk(i
== 0 ? "(%0*x) " : "%0*x ", width
, val
);
146 printk("bad PC value.");
155 static void dump_backtrace(struct pt_regs
*regs
, struct task_struct
*tsk
)
160 printk("Backtrace: ");
163 printk("no frame pointer");
165 } else if (verify_stack(fp
)) {
166 printk("invalid frame pointer 0x%08x", fp
);
168 } else if (fp
< (unsigned long)(tsk
->thread_info
+ 1))
169 printk("frame pointer underflow");
173 c_backtrace(fp
, processor_mode(regs
));
176 void dump_stack(void)
178 #ifdef CONFIG_DEBUG_ERRORS
183 EXPORT_SYMBOL(dump_stack
);
185 void show_stack(struct task_struct
*tsk
, unsigned long *sp
)
193 fp
= thread_saved_fp(tsk
);
195 asm("mov%? %0, fp" : "=r" (fp
));
197 c_backtrace(fp
, 0x10);
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
;
212 spin_lock_irq(&die_lock
);
215 printk("Internal error: %s: %x [#%d]\n", str
, err
, ++die_counter
);
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
);
229 spin_unlock_irq(&die_lock
);
233 void notify_die(const char *str
, struct pt_regs
*regs
, struct siginfo
*info
,
234 unsigned long err
, unsigned long trap
)
236 if (user_mode(regs
)) {
237 current
->thread
.error_code
= err
;
238 current
->thread
.trap_no
= trap
;
240 force_sig_info(info
->si_signo
, info
, current
);
246 static LIST_HEAD(undef_hook
);
247 static DEFINE_SPINLOCK(undef_lock
);
249 void register_undef_hook(struct undef_hook
*hook
)
253 spin_lock_irqsave(&undef_lock
, flags
);
254 list_add(&hook
->node
, &undef_hook
);
255 spin_unlock_irqrestore(&undef_lock
, flags
);
258 void unregister_undef_hook(struct undef_hook
*hook
)
262 spin_lock_irqsave(&undef_lock
, flags
);
263 list_del(&hook
->node
);
264 spin_unlock_irqrestore(&undef_lock
, flags
);
267 asmlinkage
void do_undefinstr(struct pt_regs
*regs
)
269 unsigned int correction
= thumb_mode(regs
) ? 2 : 4;
271 struct undef_hook
*hook
;
276 * According to the ARM ARM, PC is 2 or 4 bytes ahead,
277 * depending whether we're in Thumb mode or not.
278 * Correct this offset.
280 regs
->ARM_pc
-= correction
;
282 pc
= (void __user
*)instruction_pointer(regs
);
283 if (thumb_mode(regs
)) {
284 get_user(instr
, (u16 __user
*)pc
);
286 get_user(instr
, (u32 __user
*)pc
);
289 spin_lock_irq(&undef_lock
);
290 list_for_each_entry(hook
, &undef_hook
, node
) {
291 if ((instr
& hook
->instr_mask
) == hook
->instr_val
&&
292 (regs
->ARM_cpsr
& hook
->cpsr_mask
) == hook
->cpsr_val
) {
293 if (hook
->fn(regs
, instr
) == 0) {
294 spin_unlock_irq(&undef_lock
);
299 spin_unlock_irq(&undef_lock
);
301 #ifdef CONFIG_DEBUG_USER
302 if (user_debug
& UDBG_UNDEFINED
) {
303 printk(KERN_INFO
"%s (%d): undefined instruction: pc=%p\n",
304 current
->comm
, current
->pid
, pc
);
309 info
.si_signo
= SIGILL
;
311 info
.si_code
= ILL_ILLOPC
;
314 notify_die("Oops - undefined instruction", regs
, &info
, 0, 6);
317 asmlinkage
void do_unexp_fiq (struct pt_regs
*regs
)
319 #ifndef CONFIG_IGNORE_FIQ
320 printk("Hmm. Unexpected FIQ received, but trying to continue\n");
321 printk("You may have a hardware problem...\n");
326 * bad_mode handles the impossible case in the vectors. If you see one of
327 * these, then it's extremely serious, and could mean you have buggy hardware.
328 * It never returns, and never tries to sync. We hope that we can at least
329 * dump out some state information...
331 asmlinkage
void bad_mode(struct pt_regs
*regs
, int reason
, int proc_mode
)
335 printk(KERN_CRIT
"Bad mode in %s handler detected: mode %s\n",
336 handler
[reason
], processor_modes
[proc_mode
]);
338 die("Oops - bad mode", regs
, 0);
343 static int bad_syscall(int n
, struct pt_regs
*regs
)
345 struct thread_info
*thread
= current_thread_info();
348 if (current
->personality
!= PER_LINUX
&& thread
->exec_domain
->handler
) {
349 thread
->exec_domain
->handler(n
, regs
);
353 #ifdef CONFIG_DEBUG_USER
354 if (user_debug
& UDBG_SYSCALL
) {
355 printk(KERN_ERR
"[%d] %s: obsolete system call %08x.\n",
356 current
->pid
, current
->comm
, n
);
361 info
.si_signo
= SIGILL
;
363 info
.si_code
= ILL_ILLTRP
;
364 info
.si_addr
= (void __user
*)instruction_pointer(regs
) -
365 (thumb_mode(regs
) ? 2 : 4);
367 notify_die("Oops - bad syscall", regs
, &info
, n
, 0);
373 do_cache_op(unsigned long start
, unsigned long end
, int flags
)
375 struct vm_area_struct
*vma
;
377 if (end
< start
|| flags
)
380 vma
= find_vma(current
->active_mm
, start
);
381 if (vma
&& vma
->vm_start
< end
) {
382 if (start
< vma
->vm_start
)
383 start
= vma
->vm_start
;
384 if (end
> vma
->vm_end
)
387 flush_cache_user_range(vma
, start
, end
);
392 * Handle all unrecognised system calls.
393 * 0x9f0000 - 0x9fffff are some more esoteric system calls
395 #define NR(x) ((__ARM_NR_##x) - __ARM_NR_BASE)
396 asmlinkage
int arm_syscall(int no
, struct pt_regs
*regs
)
398 struct thread_info
*thread
= current_thread_info();
401 if ((no
>> 16) != 0x9f)
402 return bad_syscall(no
, regs
);
404 switch (no
& 0xffff) {
405 case 0: /* branch through 0 */
406 info
.si_signo
= SIGSEGV
;
408 info
.si_code
= SEGV_MAPERR
;
411 notify_die("branch through zero", regs
, &info
, 0, 0);
414 case NR(breakpoint
): /* SWI BREAK_POINT */
415 regs
->ARM_pc
-= thumb_mode(regs
) ? 2 : 4;
416 ptrace_break(current
, regs
);
420 * Flush a region from virtual address 'r0' to virtual address 'r1'
421 * _exclusive_. There is no alignment requirement on either address;
422 * user space does not need to know the hardware cache layout.
424 * r2 contains flags. It should ALWAYS be passed as ZERO until it
425 * is defined to be something else. For now we ignore it, but may
426 * the fires of hell burn in your belly if you break this rule. ;)
428 * (at a later date, we may want to allow this call to not flush
429 * various aspects of the cache. Passing '0' will guarantee that
430 * everything necessary gets flushed to maintain consistency in
431 * the specified region).
434 do_cache_op(regs
->ARM_r0
, regs
->ARM_r1
, regs
->ARM_r2
);
438 if (!(elf_hwcap
& HWCAP_26BIT
))
440 regs
->ARM_cpsr
&= ~MODE32_BIT
;
444 if (!(elf_hwcap
& HWCAP_26BIT
))
446 regs
->ARM_cpsr
|= MODE32_BIT
;
450 thread
->tp_value
= regs
->ARM_r0
;
451 #if defined(CONFIG_HAS_TLS_REG)
452 asm ("mcr p15, 0, %0, c13, c0, 3" : : "r" (regs
->ARM_r0
) );
453 #elif !defined(CONFIG_TLS_REG_EMUL)
455 * User space must never try to access this directly.
456 * Expect your app to break eventually if you do so.
457 * The user helper at 0xffff0fe0 must be used instead.
458 * (see entry-armv.S for details)
460 *((unsigned int *)0xffff0ff0) = regs
->ARM_r0
;
464 #ifdef CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG
466 * Atomically store r1 in *r2 if *r2 is equal to r0 for user space.
467 * Return zero in r0 if *MEM was changed or non-zero if no exchange
468 * happened. Also set the user C flag accordingly.
469 * If access permissions have to be fixed up then non-zero is
470 * returned and the operation has to be re-attempted.
472 * *NOTE*: This is a ghost syscall private to the kernel. Only the
473 * __kuser_cmpxchg code in entry-armv.S should be aware of its
474 * existence. Don't ever use this from user code.
478 extern void do_DataAbort(unsigned long addr
, unsigned int fsr
,
479 struct pt_regs
*regs
);
481 unsigned long addr
= regs
->ARM_r2
;
482 struct mm_struct
*mm
= current
->mm
;
483 pgd_t
*pgd
; pmd_t
*pmd
; pte_t
*pte
;
485 regs
->ARM_cpsr
&= ~PSR_C_BIT
;
486 spin_lock(&mm
->page_table_lock
);
487 pgd
= pgd_offset(mm
, addr
);
488 if (!pgd_present(*pgd
))
490 pmd
= pmd_offset(pgd
, addr
);
491 if (!pmd_present(*pmd
))
493 pte
= pte_offset_map(pmd
, addr
);
494 if (!pte_present(*pte
) || !pte_write(*pte
))
496 val
= *(unsigned long *)addr
;
499 *(unsigned long *)addr
= regs
->ARM_r1
;
500 regs
->ARM_cpsr
|= PSR_C_BIT
;
502 spin_unlock(&mm
->page_table_lock
);
506 spin_unlock(&mm
->page_table_lock
);
507 /* simulate a read access fault */
508 do_DataAbort(addr
, 15 + (1 << 11), regs
);
514 /* Calls 9f00xx..9f07ff are defined to return -ENOSYS
515 if not implemented, rather than raising SIGILL. This
516 way the calling program can gracefully determine whether
517 a feature is supported. */
522 #ifdef CONFIG_DEBUG_USER
524 * experience shows that these seem to indicate that
525 * something catastrophic has happened
527 if (user_debug
& UDBG_SYSCALL
) {
528 printk("[%d] %s: arm syscall %d\n",
529 current
->pid
, current
->comm
, no
);
531 if (user_mode(regs
)) {
533 c_backtrace(regs
->ARM_fp
, processor_mode(regs
));
537 info
.si_signo
= SIGILL
;
539 info
.si_code
= ILL_ILLTRP
;
540 info
.si_addr
= (void __user
*)instruction_pointer(regs
) -
541 (thumb_mode(regs
) ? 2 : 4);
543 notify_die("Oops - bad syscall(2)", regs
, &info
, no
, 0);
547 #ifdef CONFIG_TLS_REG_EMUL
550 * We might be running on an ARMv6+ processor which should have the TLS
551 * register but for some reason we can't use it, or maybe an SMP system
552 * using a pre-ARMv6 processor (there are apparently a few prototypes like
553 * that in existence) and therefore access to that register must be
557 static int get_tp_trap(struct pt_regs
*regs
, unsigned int instr
)
559 int reg
= (instr
>> 12) & 15;
562 regs
->uregs
[reg
] = current_thread_info()->tp_value
;
567 static struct undef_hook arm_mrc_hook
= {
568 .instr_mask
= 0x0fff0fff,
569 .instr_val
= 0x0e1d0f70,
570 .cpsr_mask
= PSR_T_BIT
,
575 static int __init
arm_mrc_hook_init(void)
577 register_undef_hook(&arm_mrc_hook
);
581 late_initcall(arm_mrc_hook_init
);
585 void __bad_xchg(volatile void *ptr
, int size
)
587 printk("xchg: bad data size: pc 0x%p, ptr 0x%p, size %d\n",
588 __builtin_return_address(0), ptr
, size
);
591 EXPORT_SYMBOL(__bad_xchg
);
594 * A data abort trap was taken, but we did not handle the instruction.
595 * Try to abort the user program, or panic if it was the kernel.
598 baddataabort(int code
, unsigned long instr
, struct pt_regs
*regs
)
600 unsigned long addr
= instruction_pointer(regs
);
603 #ifdef CONFIG_DEBUG_USER
604 if (user_debug
& UDBG_BADABORT
) {
605 printk(KERN_ERR
"[%d] %s: bad data abort: code %d instr 0x%08lx\n",
606 current
->pid
, current
->comm
, code
, instr
);
608 show_pte(current
->mm
, addr
);
612 info
.si_signo
= SIGILL
;
614 info
.si_code
= ILL_ILLOPC
;
615 info
.si_addr
= (void __user
*)addr
;
617 notify_die("unknown data abort code", regs
, &info
, instr
, 0);
620 void __attribute__((noreturn
)) __bug(const char *file
, int line
, void *data
)
622 printk(KERN_CRIT
"kernel BUG at %s:%d!", file
, line
);
624 printk(" - extra data = %p", data
);
628 EXPORT_SYMBOL(__bug
);
630 void __readwrite_bug(const char *fn
)
632 printk("%s called, but not implemented\n", fn
);
635 EXPORT_SYMBOL(__readwrite_bug
);
637 void __pte_error(const char *file
, int line
, unsigned long val
)
639 printk("%s:%d: bad pte %08lx.\n", file
, line
, val
);
642 void __pmd_error(const char *file
, int line
, unsigned long val
)
644 printk("%s:%d: bad pmd %08lx.\n", file
, line
, val
);
647 void __pgd_error(const char *file
, int line
, unsigned long val
)
649 printk("%s:%d: bad pgd %08lx.\n", file
, line
, val
);
652 asmlinkage
void __div0(void)
654 printk("Division by zero in kernel.\n");
657 EXPORT_SYMBOL(__div0
);
663 /* if that doesn't kill us, halt */
664 panic("Oops failed to kill thread");
666 EXPORT_SYMBOL(abort
);
668 void __init
trap_init(void)
670 extern char __stubs_start
[], __stubs_end
[];
671 extern char __vectors_start
[], __vectors_end
[];
672 extern char __kuser_helper_start
[], __kuser_helper_end
[];
673 int kuser_sz
= __kuser_helper_end
- __kuser_helper_start
;
676 * Copy the vectors, stubs and kuser helpers (in entry-armv.S)
677 * into the vector page, mapped at 0xffff0000, and ensure these
678 * are visible to the instruction stream.
680 memcpy((void *)0xffff0000, __vectors_start
, __vectors_end
- __vectors_start
);
681 memcpy((void *)0xffff0200, __stubs_start
, __stubs_end
- __stubs_start
);
682 memcpy((void *)0xffff1000 - kuser_sz
, __kuser_helper_start
, kuser_sz
);
685 * Copy signal return handlers into the vector page, and
686 * set sigreturn to be a pointer to these.
688 memcpy((void *)KERN_SIGRETURN_CODE
, sigreturn_codes
,
689 sizeof(sigreturn_codes
));
691 flush_icache_range(0xffff0000, 0xffff0000 + PAGE_SIZE
);
692 modify_domain(DOMAIN_USER
, DOMAIN_CLIENT
);