1
2
3
4
5
6
7
8
9
10
11
12
13
14
15#include <linux/signal.h>
16#include <linux/personality.h>
17#include <linux/kallsyms.h>
18#include <linux/spinlock.h>
19#include <linux/uaccess.h>
20#include <linux/hardirq.h>
21#include <linux/kdebug.h>
22#include <linux/module.h>
23#include <linux/kexec.h>
24#include <linux/bug.h>
25#include <linux/delay.h>
26#include <linux/init.h>
27#include <linux/sched.h>
28
29#include <linux/atomic.h>
30#include <asm/cacheflush.h>
31#include <asm/exception.h>
32#include <asm/unistd.h>
33#include <asm/traps.h>
34#include <asm/unwind.h>
35#include <asm/tls.h>
36#include <asm/system_misc.h>
37
38static const char *handler[]= { "prefetch abort", "data abort", "address exception", "interrupt" };
39
40void *vectors_page;
41
42#ifdef CONFIG_DEBUG_USER
43unsigned int user_debug;
44
45static int __init user_debug_setup(char *str)
46{
47 get_option(&str, &user_debug);
48 return 1;
49}
50__setup("user_debug=", user_debug_setup);
51#endif
52
53static void dump_mem(const char *, const char *, unsigned long, unsigned long);
54
55void dump_backtrace_entry(unsigned long where, unsigned long from, unsigned long frame)
56{
57#ifdef CONFIG_KALLSYMS
58 printk("[<%08lx>] (%pS) from [<%08lx>] (%pS)\n", where, (void *)where, from, (void *)from);
59#else
60 printk("Function entered at [<%08lx>] from [<%08lx>]\n", where, from);
61#endif
62
63 if (in_exception_text(where))
64 dump_mem("", "Exception stack", frame + 4, frame + 4 + sizeof(struct pt_regs));
65}
66
67#ifndef CONFIG_ARM_UNWIND
68
69
70
71
72
73static int verify_stack(unsigned long sp)
74{
75 if (sp < PAGE_OFFSET ||
76 (sp > (unsigned long)high_memory && high_memory != NULL))
77 return -EFAULT;
78
79 return 0;
80}
81#endif
82
83
84
85
86static void dump_mem(const char *lvl, const char *str, unsigned long bottom,
87 unsigned long top)
88{
89 unsigned long first;
90 mm_segment_t fs;
91 int i;
92
93
94
95
96
97
98 fs = get_fs();
99 set_fs(KERNEL_DS);
100
101 printk("%s%s(0x%08lx to 0x%08lx)\n", lvl, str, bottom, top);
102
103 for (first = bottom & ~31; first < top; first += 32) {
104 unsigned long p;
105 char str[sizeof(" 12345678") * 8 + 1];
106
107 memset(str, ' ', sizeof(str));
108 str[sizeof(str) - 1] = '\0';
109
110 for (p = first, i = 0; i < 8 && p < top; i++, p += 4) {
111 if (p >= bottom && p < top) {
112 unsigned long val;
113 if (__get_user(val, (unsigned long *)p) == 0)
114 sprintf(str + i * 9, " %08lx", val);
115 else
116 sprintf(str + i * 9, " ????????");
117 }
118 }
119 printk("%s%04lx:%s\n", lvl, first & 0xffff, str);
120 }
121
122 set_fs(fs);
123}
124
125static void dump_instr(const char *lvl, struct pt_regs *regs)
126{
127 unsigned long addr = instruction_pointer(regs);
128 const int thumb = thumb_mode(regs);
129 const int width = thumb ? 4 : 8;
130 mm_segment_t fs;
131 char str[sizeof("00000000 ") * 5 + 2 + 1], *p = str;
132 int i;
133
134
135
136
137
138
139 fs = get_fs();
140 set_fs(KERNEL_DS);
141
142 for (i = -4; i < 1 + !!thumb; i++) {
143 unsigned int val, bad;
144
145 if (thumb)
146 bad = __get_user(val, &((u16 *)addr)[i]);
147 else
148 bad = __get_user(val, &((u32 *)addr)[i]);
149
150 if (!bad)
151 p += sprintf(p, i == 0 ? "(%0*x) " : "%0*x ",
152 width, val);
153 else {
154 p += sprintf(p, "bad PC value");
155 break;
156 }
157 }
158 printk("%sCode: %s\n", lvl, str);
159
160 set_fs(fs);
161}
162
163#ifdef CONFIG_ARM_UNWIND
164static inline void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk)
165{
166 unwind_backtrace(regs, tsk);
167}
168#else
169static void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk)
170{
171 unsigned int fp, mode;
172 int ok = 1;
173
174 printk("Backtrace: ");
175
176 if (!tsk)
177 tsk = current;
178
179 if (regs) {
180 fp = regs->ARM_fp;
181 mode = processor_mode(regs);
182 } else if (tsk != current) {
183 fp = thread_saved_fp(tsk);
184 mode = 0x10;
185 } else {
186 asm("mov %0, fp" : "=r" (fp) : : "cc");
187 mode = 0x10;
188 }
189
190 if (!fp) {
191 printk("no frame pointer");
192 ok = 0;
193 } else if (verify_stack(fp)) {
194 printk("invalid frame pointer 0x%08x", fp);
195 ok = 0;
196 } else if (fp < (unsigned long)end_of_stack(tsk))
197 printk("frame pointer underflow");
198 printk("\n");
199
200 if (ok)
201 c_backtrace(fp, mode);
202}
203#endif
204
205void show_stack(struct task_struct *tsk, unsigned long *sp)
206{
207 dump_backtrace(NULL, tsk);
208 barrier();
209}
210
211#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#ifdef CONFIG_THUMB2_KERNEL
222#define S_ISA " THUMB2"
223#else
224#define S_ISA " ARM"
225#endif
226
227static int __die(const char *str, int err, struct pt_regs *regs)
228{
229 struct task_struct *tsk = current;
230 static int die_counter;
231 int ret;
232
233 printk(KERN_EMERG "Internal error: %s: %x [#%d]" S_PREEMPT S_SMP
234 S_ISA "\n", str, err, ++die_counter);
235
236
237 ret = notify_die(DIE_OOPS, str, regs, err, tsk->thread.trap_no, SIGSEGV);
238 if (ret == NOTIFY_STOP)
239 return 1;
240
241 print_modules();
242 __show_regs(regs);
243 printk(KERN_EMERG "Process %.*s (pid: %d, stack limit = 0x%p)\n",
244 TASK_COMM_LEN, tsk->comm, task_pid_nr(tsk), end_of_stack(tsk));
245
246 if (!user_mode(regs) || in_interrupt()) {
247 dump_mem(KERN_EMERG, "Stack: ", regs->ARM_sp,
248 THREAD_SIZE + (unsigned long)task_stack_page(tsk));
249 dump_backtrace(regs, tsk);
250 dump_instr(KERN_EMERG, regs);
251 }
252
253 return 0;
254}
255
256static arch_spinlock_t die_lock = __ARCH_SPIN_LOCK_UNLOCKED;
257static int die_owner = -1;
258static unsigned int die_nest_count;
259
260static unsigned long oops_begin(void)
261{
262 int cpu;
263 unsigned long flags;
264
265 oops_enter();
266
267
268 raw_local_irq_save(flags);
269 cpu = smp_processor_id();
270 if (!arch_spin_trylock(&die_lock)) {
271 if (cpu == die_owner)
272 ;
273 else
274 arch_spin_lock(&die_lock);
275 }
276 die_nest_count++;
277 die_owner = cpu;
278 console_verbose();
279 bust_spinlocks(1);
280 return flags;
281}
282
283static void oops_end(unsigned long flags, struct pt_regs *regs, int signr)
284{
285 if (regs && kexec_should_crash(current))
286 crash_kexec(regs);
287
288 bust_spinlocks(0);
289 die_owner = -1;
290 add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE);
291 die_nest_count--;
292 if (!die_nest_count)
293
294 arch_spin_unlock(&die_lock);
295 raw_local_irq_restore(flags);
296 oops_exit();
297
298 if (in_interrupt())
299 panic("Fatal exception in interrupt");
300 if (panic_on_oops)
301 panic("Fatal exception");
302 if (signr)
303 do_exit(signr);
304}
305
306
307
308
309void die(const char *str, struct pt_regs *regs, int err)
310{
311 enum bug_trap_type bug_type = BUG_TRAP_TYPE_NONE;
312 unsigned long flags = oops_begin();
313 int sig = SIGSEGV;
314
315 if (!user_mode(regs))
316 bug_type = report_bug(regs->ARM_pc, regs);
317 if (bug_type != BUG_TRAP_TYPE_NONE)
318 str = "Oops - BUG";
319
320 if (__die(str, err, regs))
321 sig = 0;
322
323 oops_end(flags, regs, sig);
324}
325
326void arm_notify_die(const char *str, struct pt_regs *regs,
327 struct siginfo *info, unsigned long err, unsigned long trap)
328{
329 if (user_mode(regs)) {
330 current->thread.error_code = err;
331 current->thread.trap_no = trap;
332
333 force_sig_info(info->si_signo, info, current);
334 } else {
335 die(str, regs, err);
336 }
337}
338
339#ifdef CONFIG_GENERIC_BUG
340
341int is_valid_bugaddr(unsigned long pc)
342{
343#ifdef CONFIG_THUMB2_KERNEL
344 unsigned short bkpt;
345#else
346 unsigned long bkpt;
347#endif
348
349 if (probe_kernel_address((unsigned *)pc, bkpt))
350 return 0;
351
352 return bkpt == BUG_INSTR_VALUE;
353}
354
355#endif
356
357static LIST_HEAD(undef_hook);
358static DEFINE_RAW_SPINLOCK(undef_lock);
359
360void register_undef_hook(struct undef_hook *hook)
361{
362 unsigned long flags;
363
364 raw_spin_lock_irqsave(&undef_lock, flags);
365 list_add(&hook->node, &undef_hook);
366 raw_spin_unlock_irqrestore(&undef_lock, flags);
367}
368
369void unregister_undef_hook(struct undef_hook *hook)
370{
371 unsigned long flags;
372
373 raw_spin_lock_irqsave(&undef_lock, flags);
374 list_del(&hook->node);
375 raw_spin_unlock_irqrestore(&undef_lock, flags);
376}
377
378static int call_undef_hook(struct pt_regs *regs, unsigned int instr)
379{
380 struct undef_hook *hook;
381 unsigned long flags;
382 int (*fn)(struct pt_regs *regs, unsigned int instr) = NULL;
383
384 raw_spin_lock_irqsave(&undef_lock, flags);
385 list_for_each_entry(hook, &undef_hook, node)
386 if ((instr & hook->instr_mask) == hook->instr_val &&
387 (regs->ARM_cpsr & hook->cpsr_mask) == hook->cpsr_val)
388 fn = hook->fn;
389 raw_spin_unlock_irqrestore(&undef_lock, flags);
390
391 return fn ? fn(regs, instr) : 1;
392}
393
394asmlinkage void __exception do_undefinstr(struct pt_regs *regs)
395{
396 unsigned int instr;
397 siginfo_t info;
398 void __user *pc;
399
400 pc = (void __user *)instruction_pointer(regs);
401
402 if (processor_mode(regs) == SVC_MODE) {
403#ifdef CONFIG_THUMB2_KERNEL
404 if (thumb_mode(regs)) {
405 instr = ((u16 *)pc)[0];
406 if (is_wide_instruction(instr)) {
407 instr <<= 16;
408 instr |= ((u16 *)pc)[1];
409 }
410 } else
411#endif
412 instr = *(u32 *) pc;
413 } else if (thumb_mode(regs)) {
414 if (get_user(instr, (u16 __user *)pc))
415 goto die_sig;
416 if (is_wide_instruction(instr)) {
417 unsigned int instr2;
418 if (get_user(instr2, (u16 __user *)pc+1))
419 goto die_sig;
420 instr <<= 16;
421 instr |= instr2;
422 }
423 } else if (get_user(instr, (u32 __user *)pc)) {
424 goto die_sig;
425 }
426
427 if (call_undef_hook(regs, instr) == 0)
428 return;
429
430die_sig:
431#ifdef CONFIG_DEBUG_USER
432 if (user_debug & UDBG_UNDEFINED) {
433 printk(KERN_INFO "%s (%d): undefined instruction: pc=%p\n",
434 current->comm, task_pid_nr(current), pc);
435 dump_instr(KERN_INFO, regs);
436 }
437#endif
438
439 info.si_signo = SIGILL;
440 info.si_errno = 0;
441 info.si_code = ILL_ILLOPC;
442 info.si_addr = pc;
443
444 arm_notify_die("Oops - undefined instruction", regs, &info, 0, 6);
445}
446
447asmlinkage void do_unexp_fiq (struct pt_regs *regs)
448{
449 printk("Hmm. Unexpected FIQ received, but trying to continue\n");
450 printk("You may have a hardware problem...\n");
451}
452
453
454
455
456
457
458
459asmlinkage void bad_mode(struct pt_regs *regs, int reason)
460{
461 console_verbose();
462
463 printk(KERN_CRIT "Bad mode in %s handler detected\n", handler[reason]);
464
465 die("Oops - bad mode", regs, 0);
466 local_irq_disable();
467 panic("bad mode");
468}
469
470static int bad_syscall(int n, struct pt_regs *regs)
471{
472 struct thread_info *thread = current_thread_info();
473 siginfo_t info;
474
475 if ((current->personality & PER_MASK) != PER_LINUX &&
476 thread->exec_domain->handler) {
477 thread->exec_domain->handler(n, regs);
478 return regs->ARM_r0;
479 }
480
481#ifdef CONFIG_DEBUG_USER
482 if (user_debug & UDBG_SYSCALL) {
483 printk(KERN_ERR "[%d] %s: obsolete system call %08x.\n",
484 task_pid_nr(current), current->comm, n);
485 dump_instr(KERN_ERR, regs);
486 }
487#endif
488
489 info.si_signo = SIGILL;
490 info.si_errno = 0;
491 info.si_code = ILL_ILLTRP;
492 info.si_addr = (void __user *)instruction_pointer(regs) -
493 (thumb_mode(regs) ? 2 : 4);
494
495 arm_notify_die("Oops - bad syscall", regs, &info, n, 0);
496
497 return regs->ARM_r0;
498}
499
500static inline int
501do_cache_op(unsigned long start, unsigned long end, int flags)
502{
503 struct mm_struct *mm = current->active_mm;
504 struct vm_area_struct *vma;
505
506 if (end < start || flags)
507 return -EINVAL;
508
509 down_read(&mm->mmap_sem);
510 vma = find_vma(mm, start);
511 if (vma && vma->vm_start < end) {
512 if (start < vma->vm_start)
513 start = vma->vm_start;
514 if (end > vma->vm_end)
515 end = vma->vm_end;
516
517 up_read(&mm->mmap_sem);
518 return flush_cache_user_range(start, end);
519 }
520 up_read(&mm->mmap_sem);
521 return -EINVAL;
522}
523
524
525
526
527
528#define NR(x) ((__ARM_NR_##x) - __ARM_NR_BASE)
529asmlinkage int arm_syscall(int no, struct pt_regs *regs)
530{
531 struct thread_info *thread = current_thread_info();
532 siginfo_t info;
533
534 if ((no >> 16) != (__ARM_NR_BASE>> 16))
535 return bad_syscall(no, regs);
536
537 switch (no & 0xffff) {
538 case 0:
539 info.si_signo = SIGSEGV;
540 info.si_errno = 0;
541 info.si_code = SEGV_MAPERR;
542 info.si_addr = NULL;
543
544 arm_notify_die("branch through zero", regs, &info, 0, 0);
545 return 0;
546
547 case NR(breakpoint):
548 regs->ARM_pc -= thumb_mode(regs) ? 2 : 4;
549 ptrace_break(current, regs);
550 return regs->ARM_r0;
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566 case NR(cacheflush):
567 return do_cache_op(regs->ARM_r0, regs->ARM_r1, regs->ARM_r2);
568
569 case NR(usr26):
570 if (!(elf_hwcap & HWCAP_26BIT))
571 break;
572 regs->ARM_cpsr &= ~MODE32_BIT;
573 return regs->ARM_r0;
574
575 case NR(usr32):
576 if (!(elf_hwcap & HWCAP_26BIT))
577 break;
578 regs->ARM_cpsr |= MODE32_BIT;
579 return regs->ARM_r0;
580
581 case NR(set_tls):
582 thread->tp_value = regs->ARM_r0;
583 if (tls_emu)
584 return 0;
585 if (has_tls_reg) {
586 asm ("mcr p15, 0, %0, c13, c0, 3"
587 : : "r" (regs->ARM_r0));
588 } else {
589
590
591
592
593
594
595 *((unsigned int *)0xffff0ff0) = regs->ARM_r0;
596 }
597 return 0;
598
599#ifdef CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG
600
601
602
603
604
605
606
607
608
609
610
611 case NR(cmpxchg):
612 for (;;) {
613 extern void do_DataAbort(unsigned long addr, unsigned int fsr,
614 struct pt_regs *regs);
615 unsigned long val;
616 unsigned long addr = regs->ARM_r2;
617 struct mm_struct *mm = current->mm;
618 pgd_t *pgd; pmd_t *pmd; pte_t *pte;
619 spinlock_t *ptl;
620
621 regs->ARM_cpsr &= ~PSR_C_BIT;
622 down_read(&mm->mmap_sem);
623 pgd = pgd_offset(mm, addr);
624 if (!pgd_present(*pgd))
625 goto bad_access;
626 pmd = pmd_offset(pgd, addr);
627 if (!pmd_present(*pmd))
628 goto bad_access;
629 pte = pte_offset_map_lock(mm, pmd, addr, &ptl);
630 if (!pte_present(*pte) || !pte_write(*pte) || !pte_dirty(*pte)) {
631 pte_unmap_unlock(pte, ptl);
632 goto bad_access;
633 }
634 val = *(unsigned long *)addr;
635 val -= regs->ARM_r0;
636 if (val == 0) {
637 *(unsigned long *)addr = regs->ARM_r1;
638 regs->ARM_cpsr |= PSR_C_BIT;
639 }
640 pte_unmap_unlock(pte, ptl);
641 up_read(&mm->mmap_sem);
642 return val;
643
644 bad_access:
645 up_read(&mm->mmap_sem);
646
647 do_DataAbort(addr, 15 + (1 << 11), regs);
648 }
649#endif
650
651 default:
652
653
654
655
656 if ((no & 0xffff) <= 0x7ff)
657 return -ENOSYS;
658 break;
659 }
660#ifdef CONFIG_DEBUG_USER
661
662
663
664
665 if (user_debug & UDBG_SYSCALL) {
666 printk("[%d] %s: arm syscall %d\n",
667 task_pid_nr(current), current->comm, no);
668 dump_instr("", regs);
669 if (user_mode(regs)) {
670 __show_regs(regs);
671 c_backtrace(regs->ARM_fp, processor_mode(regs));
672 }
673 }
674#endif
675 info.si_signo = SIGILL;
676 info.si_errno = 0;
677 info.si_code = ILL_ILLTRP;
678 info.si_addr = (void __user *)instruction_pointer(regs) -
679 (thumb_mode(regs) ? 2 : 4);
680
681 arm_notify_die("Oops - bad syscall(2)", regs, &info, no, 0);
682 return 0;
683}
684
685#ifdef CONFIG_TLS_REG_EMUL
686
687
688
689
690
691
692
693
694
695static int get_tp_trap(struct pt_regs *regs, unsigned int instr)
696{
697 int reg = (instr >> 12) & 15;
698 if (reg == 15)
699 return 1;
700 regs->uregs[reg] = current_thread_info()->tp_value;
701 regs->ARM_pc += 4;
702 return 0;
703}
704
705static struct undef_hook arm_mrc_hook = {
706 .instr_mask = 0x0fff0fff,
707 .instr_val = 0x0e1d0f70,
708 .cpsr_mask = PSR_T_BIT,
709 .cpsr_val = 0,
710 .fn = get_tp_trap,
711};
712
713static int __init arm_mrc_hook_init(void)
714{
715 register_undef_hook(&arm_mrc_hook);
716 return 0;
717}
718
719late_initcall(arm_mrc_hook_init);
720
721#endif
722
723void __bad_xchg(volatile void *ptr, int size)
724{
725 printk("xchg: bad data size: pc 0x%p, ptr 0x%p, size %d\n",
726 __builtin_return_address(0), ptr, size);
727 BUG();
728}
729EXPORT_SYMBOL(__bad_xchg);
730
731
732
733
734
735asmlinkage void
736baddataabort(int code, unsigned long instr, struct pt_regs *regs)
737{
738 unsigned long addr = instruction_pointer(regs);
739 siginfo_t info;
740
741#ifdef CONFIG_DEBUG_USER
742 if (user_debug & UDBG_BADABORT) {
743 printk(KERN_ERR "[%d] %s: bad data abort: code %d instr 0x%08lx\n",
744 task_pid_nr(current), current->comm, code, instr);
745 dump_instr(KERN_ERR, regs);
746 show_pte(current->mm, addr);
747 }
748#endif
749
750 info.si_signo = SIGILL;
751 info.si_errno = 0;
752 info.si_code = ILL_ILLOPC;
753 info.si_addr = (void __user *)addr;
754
755 arm_notify_die("unknown data abort code", regs, &info, instr, 0);
756}
757
758void __readwrite_bug(const char *fn)
759{
760 printk("%s called, but not implemented\n", fn);
761 BUG();
762}
763EXPORT_SYMBOL(__readwrite_bug);
764
765void __pte_error(const char *file, int line, pte_t pte)
766{
767 printk("%s:%d: bad pte %08llx.\n", file, line, (long long)pte_val(pte));
768}
769
770void __pmd_error(const char *file, int line, pmd_t pmd)
771{
772 printk("%s:%d: bad pmd %08llx.\n", file, line, (long long)pmd_val(pmd));
773}
774
775void __pgd_error(const char *file, int line, pgd_t pgd)
776{
777 printk("%s:%d: bad pgd %08llx.\n", file, line, (long long)pgd_val(pgd));
778}
779
780asmlinkage void __div0(void)
781{
782 printk("Division by zero in kernel.\n");
783 dump_stack();
784}
785EXPORT_SYMBOL(__div0);
786
787void abort(void)
788{
789 BUG();
790
791
792 panic("Oops failed to kill thread");
793}
794EXPORT_SYMBOL(abort);
795
796void __init trap_init(void)
797{
798 return;
799}
800
801#ifdef CONFIG_KUSER_HELPERS
802static void __init kuser_init(void *vectors)
803{
804 extern char __kuser_helper_start[], __kuser_helper_end[];
805 int kuser_sz = __kuser_helper_end - __kuser_helper_start;
806
807 memcpy(vectors + 0x1000 - kuser_sz, __kuser_helper_start, kuser_sz);
808
809
810
811
812
813 if (tls_emu || has_tls_reg)
814 memcpy(vectors + 0xfe0, vectors + 0xfe8, 4);
815}
816#else
817static void __init kuser_init(void *vectors)
818{
819}
820#endif
821
822void __init early_trap_init(void *vectors_base)
823{
824 unsigned long vectors = (unsigned long)vectors_base;
825 extern char __stubs_start[], __stubs_end[];
826 extern char __vectors_start[], __vectors_end[];
827 unsigned i;
828
829 vectors_page = vectors_base;
830
831
832
833
834
835
836
837 for (i = 0; i < PAGE_SIZE / sizeof(u32); i++)
838 ((u32 *)vectors_base)[i] = 0xe7fddef1;
839
840
841
842
843
844
845 memcpy((void *)vectors, __vectors_start, __vectors_end - __vectors_start);
846 memcpy((void *)vectors + 0x1000, __stubs_start, __stubs_end - __stubs_start);
847
848 kuser_init(vectors_base);
849
850 flush_icache_range(vectors, vectors + PAGE_SIZE * 2);
851 modify_domain(DOMAIN_USER, DOMAIN_CLIENT);
852}
853