Merge tag 'v3.10.55' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / arm / kernel / traps.c
1 /*
2 * linux/arch/arm/kernel/traps.c
3 *
4 * Copyright (C) 1995-2009 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 */
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 #include <linux/aee.h>
38 static const char *handler[]= {
39 "prefetch abort",
40 "data abort",
41 "address exception",
42 "interrupt",
43 "undefined instruction",
44 };
45
46 void *vectors_page;
47
48 #ifdef CONFIG_DEBUG_USER
49 unsigned int user_debug;
50
51 static int __init user_debug_setup(char *str)
52 {
53 get_option(&str, &user_debug);
54 return 1;
55 }
56 __setup("user_debug=", user_debug_setup);
57 #endif
58
59 static void dump_mem(const char *, const char *, unsigned long, unsigned long);
60
61 void dump_backtrace_entry(unsigned long where, unsigned long from, unsigned long frame)
62 {
63 #ifdef CONFIG_KALLSYMS
64 printk("[<%08lx>] (%pS) from [<%08lx>] (%pS)\n", where, (void *)where, from, (void *)from);
65 #else
66 printk("Function entered at [<%08lx>] from [<%08lx>]\n", where, from);
67 #endif
68
69 if (in_exception_text(where))
70 dump_mem("", "Exception stack", frame + 4, frame + 4 + sizeof(struct pt_regs));
71 }
72
73 #ifndef CONFIG_ARM_UNWIND
74 /*
75 * Stack pointers should always be within the kernels view of
76 * physical memory. If it is not there, then we can't dump
77 * out any information relating to the stack.
78 */
79 static int verify_stack(unsigned long sp)
80 {
81 if (sp < PAGE_OFFSET ||
82 (sp > (unsigned long)high_memory && high_memory != NULL))
83 return -EFAULT;
84
85 return 0;
86 }
87 #endif
88
89 /*
90 * Dump out the contents of some memory nicely...
91 */
92 static void dump_mem(const char *lvl, const char *str, unsigned long bottom,
93 unsigned long top)
94 {
95 unsigned long first;
96 mm_segment_t fs;
97 int i;
98
99 /*
100 * We need to switch to kernel mode so that we can use __get_user
101 * to safely read from kernel space. Note that we now dump the
102 * code first, just in case the backtrace kills us.
103 */
104 fs = get_fs();
105 set_fs(KERNEL_DS);
106
107 printk("%s%s(0x%08lx to 0x%08lx)\n", lvl, str, bottom, top);
108
109 for (first = bottom & ~31; first < top; first += 32) {
110 unsigned long p;
111 char str[sizeof(" 12345678") * 8 + 1];
112
113 memset(str, ' ', sizeof(str));
114 str[sizeof(str) - 1] = '\0';
115
116 for (p = first, i = 0; i < 8 && p < top; i++, p += 4) {
117 if (p >= bottom && p < top) {
118 unsigned long val;
119 if (__get_user(val, (unsigned long *)p) == 0)
120 sprintf(str + i * 9, " %08lx", val);
121 else
122 sprintf(str + i * 9, " ????????");
123 }
124 }
125 printk("%s%04lx:%s\n", lvl, first & 0xffff, str);
126 }
127
128 set_fs(fs);
129 }
130
131 static void dump_instr(const char *lvl, struct pt_regs *regs)
132 {
133 unsigned long addr = instruction_pointer(regs);
134 const int thumb = thumb_mode(regs);
135 const int width = thumb ? 4 : 8;
136 mm_segment_t fs;
137 char str[sizeof("00000000 ") * 5 + 2 + 1], *p = str;
138 int i;
139
140 /*
141 * We need to switch to kernel mode so that we can use __get_user
142 * to safely read from kernel space. Note that we now dump the
143 * code first, just in case the backtrace kills us.
144 */
145 fs = get_fs();
146 set_fs(KERNEL_DS);
147
148 for (i = -4; i < 1 + !!thumb; i++) {
149 unsigned int val, bad;
150
151 if (thumb)
152 bad = __get_user(val, &((u16 *)addr)[i]);
153 else
154 bad = __get_user(val, &((u32 *)addr)[i]);
155
156 if (!bad)
157 p += sprintf(p, i == 0 ? "(%0*x) " : "%0*x ",
158 width, val);
159 else {
160 p += sprintf(p, "bad PC value");
161 break;
162 }
163 }
164 printk("%sCode: %s\n", lvl, str);
165
166 set_fs(fs);
167 }
168
169 #ifdef CONFIG_ARM_UNWIND
170 static inline void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk)
171 {
172 unwind_backtrace(regs, tsk);
173 }
174 #else
175 static void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk)
176 {
177 unsigned int fp, mode;
178 int ok = 1;
179
180 printk("Backtrace: ");
181
182 if (!tsk)
183 tsk = current;
184
185 if (regs) {
186 fp = regs->ARM_fp;
187 mode = processor_mode(regs);
188 } else if (tsk != current) {
189 fp = thread_saved_fp(tsk);
190 mode = 0x10;
191 } else {
192 asm("mov %0, fp" : "=r" (fp) : : "cc");
193 mode = 0x10;
194 }
195
196 if (!fp) {
197 printk("no frame pointer");
198 ok = 0;
199 } else if (verify_stack(fp)) {
200 printk("invalid frame pointer 0x%08x", fp);
201 ok = 0;
202 } else if (fp < (unsigned long)end_of_stack(tsk))
203 printk("frame pointer underflow");
204 printk("\n");
205
206 if (ok)
207 c_backtrace(fp, mode);
208 }
209 #endif
210
211 void dump_stack(void)
212 {
213 dump_backtrace(NULL, NULL);
214 }
215
216 EXPORT_SYMBOL(dump_stack);
217
218 void show_stack(struct task_struct *tsk, unsigned long *sp)
219 {
220 dump_backtrace(NULL, tsk);
221 barrier();
222 }
223
224 #ifdef CONFIG_PREEMPT
225 #define S_PREEMPT " PREEMPT"
226 #else
227 #define S_PREEMPT ""
228 #endif
229 #ifdef CONFIG_SMP
230 #define S_SMP " SMP"
231 #else
232 #define S_SMP ""
233 #endif
234 #ifdef CONFIG_THUMB2_KERNEL
235 #define S_ISA " THUMB2"
236 #else
237 #define S_ISA " ARM"
238 #endif
239
240 static int __die(const char *str, int err, struct pt_regs *regs)
241 {
242 struct task_struct *tsk = current;
243 unsigned long sp, stack;
244 static int die_counter;
245 int ret;
246
247 printk(KERN_EMERG "Internal error: %s: %x [#%d]" S_PREEMPT S_SMP
248 S_ISA "\n", str, err, ++die_counter);
249
250 /* trap and error numbers are mostly meaningless on ARM */
251 ret = notify_die(DIE_OOPS, str, regs, err, tsk->thread.trap_no, SIGSEGV);
252 if (ret == NOTIFY_STOP)
253 return ret;
254
255 print_modules();
256 __show_regs(regs);
257 printk(KERN_EMERG "Process %.*s (pid: %d, stack limit = 0x%p)\n",
258 TASK_COMM_LEN, tsk->comm, task_pid_nr(tsk), end_of_stack(tsk));
259
260 if (!user_mode(regs) || in_interrupt()) {
261 sp = regs->ARM_sp;
262 stack = (unsigned long)task_stack_page(tsk);
263 dump_mem(KERN_EMERG, "Stack: ", sp, ALIGN(sp, THREAD_SIZE));
264 if (sp < stack || (sp - stack) > THREAD_SIZE) {
265 printk(KERN_EMERG "Invalid sp[%lx] or stack address[%lx]\n", sp, stack);
266 dump_mem(KERN_EMERG, "Stack(backup) ", stack, THREAD_SIZE + stack);
267 }
268 dump_backtrace(regs, tsk);
269 dump_instr(KERN_EMERG, regs);
270 }
271
272 return 0;
273 }
274
275 static arch_spinlock_t die_lock = __ARCH_SPIN_LOCK_UNLOCKED;
276 static int die_owner = -1;
277 static unsigned int die_nest_count;
278
279 static unsigned long oops_begin(void)
280 {
281 int cpu;
282 unsigned long flags;
283
284 oops_enter();
285
286 /* racy, but better than risking deadlock. */
287 raw_local_irq_save(flags);
288 cpu = smp_processor_id();
289 if (!arch_spin_trylock(&die_lock)) {
290 if (cpu == die_owner)
291 /* nested oops. should stop eventually */;
292 else
293 arch_spin_lock(&die_lock);
294 }
295 die_nest_count++;
296 die_owner = cpu;
297 console_verbose();
298 bust_spinlocks(1);
299 return flags;
300 }
301
302 static void oops_end(unsigned long flags, struct pt_regs *regs, int signr)
303 {
304 if (regs && kexec_should_crash(current))
305 crash_kexec(regs);
306
307 bust_spinlocks(0);
308 die_owner = -1;
309 add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE);
310 die_nest_count--;
311 if (!die_nest_count)
312 /* Nest count reaches zero, release the lock. */
313 arch_spin_unlock(&die_lock);
314 /* not enable irq incase softirq many turn off msdc clock */
315 //raw_local_irq_restore(flags);
316 oops_exit();
317
318 if (in_interrupt())
319 panic("Fatal exception in interrupt");
320 if (panic_on_oops)
321 panic("Fatal exception");
322 if (signr)
323 do_exit(signr);
324 }
325
326 /*
327 * This function is protected against re-entrancy.
328 */
329 void die(const char *str, struct pt_regs *regs, int err)
330 {
331 enum bug_trap_type bug_type = BUG_TRAP_TYPE_NONE;
332 unsigned long flags = oops_begin();
333 int sig = SIGSEGV;
334
335 if (!user_mode(regs))
336 bug_type = report_bug(regs->ARM_pc, regs);
337 if (bug_type != BUG_TRAP_TYPE_NONE)
338 str = "Oops - BUG";
339
340 if (__die(str, err, regs))
341 sig = 0;
342
343 oops_end(flags, regs, sig);
344 }
345
346 void arm_notify_die(const char *str, struct pt_regs *regs,
347 struct siginfo *info, unsigned long err, unsigned long trap)
348 {
349 if (user_mode(regs)) {
350 current->thread.error_code = err;
351 current->thread.trap_no = trap;
352
353 force_sig_info(info->si_signo, info, current);
354 } else {
355 die(str, regs, err);
356 }
357 }
358
359 #ifdef CONFIG_GENERIC_BUG
360
361 int is_valid_bugaddr(unsigned long pc)
362 {
363 #ifdef CONFIG_THUMB2_KERNEL
364 unsigned short bkpt;
365 #else
366 unsigned long bkpt;
367 #endif
368
369 if (probe_kernel_address((unsigned *)pc, bkpt))
370 return 0;
371
372 return bkpt == BUG_INSTR_VALUE;
373 }
374
375 #endif
376
377 static LIST_HEAD(undef_hook);
378 static DEFINE_RAW_SPINLOCK(undef_lock);
379
380 void register_undef_hook(struct undef_hook *hook)
381 {
382 unsigned long flags;
383
384 raw_spin_lock_irqsave(&undef_lock, flags);
385 list_add(&hook->node, &undef_hook);
386 raw_spin_unlock_irqrestore(&undef_lock, flags);
387 }
388
389 void unregister_undef_hook(struct undef_hook *hook)
390 {
391 unsigned long flags;
392
393 raw_spin_lock_irqsave(&undef_lock, flags);
394 list_del(&hook->node);
395 raw_spin_unlock_irqrestore(&undef_lock, flags);
396 }
397
398 static int call_undef_hook(struct pt_regs *regs, unsigned int instr)
399 {
400 struct undef_hook *hook;
401 unsigned long flags;
402 int (*fn)(struct pt_regs *regs, unsigned int instr) = NULL;
403
404 raw_spin_lock_irqsave(&undef_lock, flags);
405 list_for_each_entry(hook, &undef_hook, node)
406 if ((instr & hook->instr_mask) == hook->instr_val &&
407 (regs->ARM_cpsr & hook->cpsr_mask) == hook->cpsr_val)
408 fn = hook->fn;
409 raw_spin_unlock_irqrestore(&undef_lock, flags);
410
411 return fn ? fn(regs, instr) : 1;
412 }
413
414 volatile static void __user *prev_undefinstr_pc=0;
415 volatile static int prev_undefinstr_counter=0;
416 volatile static unsigned long prev_undefinstr_curr=0;
417
418 asmlinkage void __exception do_undefinstr(struct pt_regs *regs)
419 {
420 struct thread_info *thread = current_thread_info();
421 int ret;
422 unsigned int instr;
423 siginfo_t info;
424 void __user *pc;
425
426 if (!user_mode(regs)) {
427 thread->cpu_excp++;
428 if (thread->cpu_excp == 1) {
429 thread->regs_on_excp = (void *)regs;
430 aee_excp_regs = (void*)regs;
431 }
432 if (thread->cpu_excp >= 2) {
433 aee_stop_nested_panic(regs);
434 }
435 }
436
437 pc = (void __user *)instruction_pointer(regs);
438
439 if (processor_mode(regs) == SVC_MODE) {
440 #ifdef CONFIG_THUMB2_KERNEL
441 if (thumb_mode(regs)) {
442 instr = ((u16 *)pc)[0];
443 if (is_wide_instruction(instr)) {
444 instr <<= 16;
445 instr |= ((u16 *)pc)[1];
446 }
447 } else
448 #endif
449 instr = *(u32 *) pc;
450 } else if (thumb_mode(regs)) {
451 if (get_user(instr, (u16 __user *)pc))
452 goto die_sig;
453 if (is_wide_instruction(instr)) {
454 unsigned int instr2;
455 if (get_user(instr2, (u16 __user *)pc+1))
456 goto die_sig;
457 instr <<= 16;
458 instr |= instr2;
459 }
460 } else if (get_user(instr, (u32 __user *)pc)) {
461 goto die_sig;
462 }
463
464 ret = call_undef_hook(regs, instr);
465 if (ret == 0) {
466 if (!user_mode(regs)) {
467 thread->cpu_excp--;
468 }
469 return;
470 }
471
472 die_sig:
473 #ifdef CONFIG_DEBUG_USER
474 if (user_debug & UDBG_UNDEFINED) {
475 printk(KERN_INFO "%s (%d): undefined instruction: pc=%p\n",
476 current->comm, task_pid_nr(current), pc);
477 dump_instr(KERN_INFO, regs);
478 }
479 #endif
480
481 /* Place the SIGILL ICache Invalidate after the Debugger Undefined-Instruction Solution. */
482 if ((processor_mode(regs) == USR_MODE) || (processor_mode(regs) == SVC_MODE)) {
483 /* Only do it for User-Space Application. */
484 printk("USR_MODE/SVC_MODE Undefined Instruction Address curr:%p pc=%p:%p\n",
485 (void *)current, (void *)pc, (void *)prev_undefinstr_pc);
486 if ((prev_undefinstr_pc != pc) || (prev_undefinstr_curr != (unsigned long)current)) {
487 /* If the current process or program counter is changed......renew the counter. */
488 printk("First Time Recovery curr:%p pc=%p:%p\n",
489 (void *)current, (void *)pc, (void *)prev_undefinstr_pc);
490 prev_undefinstr_pc = pc;
491 prev_undefinstr_curr = (unsigned long)current;
492 prev_undefinstr_counter = 0;
493 __cpuc_flush_icache_all();
494 flush_cache_all();
495 if (!user_mode(regs)) {
496 thread->cpu_excp--;
497 }
498 return;
499 }
500 else if(prev_undefinstr_counter < 1) {
501 printk("2nd Time Recovery curr:%p pc=%p:%p\n",
502 (void *)current, (void *)pc, (void *)prev_undefinstr_pc);
503 prev_undefinstr_counter++;
504 __cpuc_flush_icache_all();
505 flush_cache_all();
506 if (!user_mode(regs)) {
507 thread->cpu_excp--;
508 }
509 return;
510 }
511 prev_undefinstr_counter++;
512 if(prev_undefinstr_counter >= 4) {
513 /* 2=first time SigILL,3=2nd time NE-SigILL,4=3rd time CoreDump-SigILL */
514 prev_undefinstr_pc = 0;
515 prev_undefinstr_curr = 0;
516 prev_undefinstr_counter = 0;
517 }
518 printk("Go to ARM Notify Die curr:%p pc=%p:%p\n",
519 (void *)current, (void *)pc, (void *)prev_undefinstr_pc);
520 }
521
522 info.si_signo = SIGILL;
523 info.si_errno = 0;
524 info.si_code = ILL_ILLOPC;
525 info.si_addr = pc;
526
527 arm_notify_die("Oops - undefined instruction", regs, &info, 0, 6);
528 }
529
530 asmlinkage void do_unexp_fiq (struct pt_regs *regs)
531 {
532 printk("Hmm. Unexpected FIQ received, but trying to continue\n");
533 printk("You may have a hardware problem...\n");
534 }
535
536 /*
537 * bad_mode handles the impossible case in the vectors. If you see one of
538 * these, then it's extremely serious, and could mean you have buggy hardware.
539 * It never returns, and never tries to sync. We hope that we can at least
540 * dump out some state information...
541 */
542 asmlinkage void bad_mode(struct pt_regs *regs, int reason)
543 {
544 console_verbose();
545
546 printk(KERN_CRIT "Bad mode in %s handler detected\n", handler[reason]);
547
548 die("Oops - bad mode", regs, 0);
549 local_irq_disable();
550 panic("bad mode");
551 }
552
553 static int bad_syscall(int n, struct pt_regs *regs)
554 {
555 struct thread_info *thread = current_thread_info();
556 siginfo_t info;
557
558 if ((current->personality & PER_MASK) != PER_LINUX &&
559 thread->exec_domain->handler) {
560 thread->exec_domain->handler(n, regs);
561 return regs->ARM_r0;
562 }
563
564 #ifdef CONFIG_DEBUG_USER
565 if (user_debug & UDBG_SYSCALL) {
566 printk(KERN_ERR "[%d] %s: obsolete system call %08x.\n",
567 task_pid_nr(current), current->comm, n);
568 dump_instr(KERN_ERR, regs);
569 }
570 #endif
571
572 info.si_signo = SIGILL;
573 info.si_errno = 0;
574 info.si_code = ILL_ILLTRP;
575 info.si_addr = (void __user *)instruction_pointer(regs) -
576 (thumb_mode(regs) ? 2 : 4);
577
578 arm_notify_die("Oops - bad syscall", regs, &info, n, 0);
579
580 return regs->ARM_r0;
581 }
582
583 static inline int
584 do_cache_op(unsigned long start, unsigned long end, int flags)
585 {
586 struct mm_struct *mm = current->active_mm;
587 struct vm_area_struct *vma;
588
589 if (end < start || flags)
590 return -EINVAL;
591
592 down_read(&mm->mmap_sem);
593 vma = find_vma(mm, start);
594 if (vma && vma->vm_start < end) {
595 if (start < vma->vm_start)
596 start = vma->vm_start;
597 if (end > vma->vm_end)
598 end = vma->vm_end;
599
600 up_read(&mm->mmap_sem);
601 return flush_cache_user_range(start, end);
602 }
603 up_read(&mm->mmap_sem);
604 return -EINVAL;
605 }
606
607 /*
608 * Handle all unrecognised system calls.
609 * 0x9f0000 - 0x9fffff are some more esoteric system calls
610 */
611 #define NR(x) ((__ARM_NR_##x) - __ARM_NR_BASE)
612 asmlinkage int arm_syscall(int no, struct pt_regs *regs)
613 {
614 struct thread_info *thread = current_thread_info();
615 siginfo_t info;
616
617 if ((no >> 16) != (__ARM_NR_BASE>> 16))
618 return bad_syscall(no, regs);
619
620 switch (no & 0xffff) {
621 case 0: /* branch through 0 */
622 info.si_signo = SIGSEGV;
623 info.si_errno = 0;
624 info.si_code = SEGV_MAPERR;
625 info.si_addr = NULL;
626
627 arm_notify_die("branch through zero", regs, &info, 0, 0);
628 return 0;
629
630 case NR(breakpoint): /* SWI BREAK_POINT */
631 regs->ARM_pc -= thumb_mode(regs) ? 2 : 4;
632 ptrace_break(current, regs);
633 return regs->ARM_r0;
634
635 /*
636 * Flush a region from virtual address 'r0' to virtual address 'r1'
637 * _exclusive_. There is no alignment requirement on either address;
638 * user space does not need to know the hardware cache layout.
639 *
640 * r2 contains flags. It should ALWAYS be passed as ZERO until it
641 * is defined to be something else. For now we ignore it, but may
642 * the fires of hell burn in your belly if you break this rule. ;)
643 *
644 * (at a later date, we may want to allow this call to not flush
645 * various aspects of the cache. Passing '0' will guarantee that
646 * everything necessary gets flushed to maintain consistency in
647 * the specified region).
648 */
649 case NR(cacheflush):
650 return do_cache_op(regs->ARM_r0, regs->ARM_r1, regs->ARM_r2);
651
652 case NR(usr26):
653 if (!(elf_hwcap & HWCAP_26BIT))
654 break;
655 regs->ARM_cpsr &= ~MODE32_BIT;
656 return regs->ARM_r0;
657
658 case NR(usr32):
659 if (!(elf_hwcap & HWCAP_26BIT))
660 break;
661 regs->ARM_cpsr |= MODE32_BIT;
662 return regs->ARM_r0;
663
664 case NR(set_tls):
665 thread->tp_value[0] = regs->ARM_r0;
666 if (tls_emu)
667 return 0;
668 if (has_tls_reg) {
669 asm ("mcr p15, 0, %0, c13, c0, 3"
670 : : "r" (regs->ARM_r0));
671 } else {
672 /*
673 * User space must never try to access this directly.
674 * Expect your app to break eventually if you do so.
675 * The user helper at 0xffff0fe0 must be used instead.
676 * (see entry-armv.S for details)
677 */
678 *((unsigned int *)0xffff0ff0) = regs->ARM_r0;
679 }
680 return 0;
681
682 #ifdef CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG
683 /*
684 * Atomically store r1 in *r2 if *r2 is equal to r0 for user space.
685 * Return zero in r0 if *MEM was changed or non-zero if no exchange
686 * happened. Also set the user C flag accordingly.
687 * If access permissions have to be fixed up then non-zero is
688 * returned and the operation has to be re-attempted.
689 *
690 * *NOTE*: This is a ghost syscall private to the kernel. Only the
691 * __kuser_cmpxchg code in entry-armv.S should be aware of its
692 * existence. Don't ever use this from user code.
693 */
694 case NR(cmpxchg):
695 for (;;) {
696 extern void do_DataAbort(unsigned long addr, unsigned int fsr,
697 struct pt_regs *regs);
698 unsigned long val;
699 unsigned long addr = regs->ARM_r2;
700 struct mm_struct *mm = current->mm;
701 pgd_t *pgd; pmd_t *pmd; pte_t *pte;
702 spinlock_t *ptl;
703
704 regs->ARM_cpsr &= ~PSR_C_BIT;
705 down_read(&mm->mmap_sem);
706 pgd = pgd_offset(mm, addr);
707 if (!pgd_present(*pgd))
708 goto bad_access;
709 pmd = pmd_offset(pgd, addr);
710 if (!pmd_present(*pmd))
711 goto bad_access;
712 pte = pte_offset_map_lock(mm, pmd, addr, &ptl);
713 if (!pte_present(*pte) || !pte_write(*pte) || !pte_dirty(*pte)) {
714 pte_unmap_unlock(pte, ptl);
715 goto bad_access;
716 }
717 val = *(unsigned long *)addr;
718 val -= regs->ARM_r0;
719 if (val == 0) {
720 *(unsigned long *)addr = regs->ARM_r1;
721 regs->ARM_cpsr |= PSR_C_BIT;
722 }
723 pte_unmap_unlock(pte, ptl);
724 up_read(&mm->mmap_sem);
725 return val;
726
727 bad_access:
728 up_read(&mm->mmap_sem);
729 /* simulate a write access fault */
730 do_DataAbort(addr, 15 + (1 << 11), regs);
731 }
732 #endif
733
734 default:
735 /* Calls 9f00xx..9f07ff are defined to return -ENOSYS
736 if not implemented, rather than raising SIGILL. This
737 way the calling program can gracefully determine whether
738 a feature is supported. */
739 if ((no & 0xffff) <= 0x7ff)
740 return -ENOSYS;
741 break;
742 }
743 #ifdef CONFIG_DEBUG_USER
744 /*
745 * experience shows that these seem to indicate that
746 * something catastrophic has happened
747 */
748 if (user_debug & UDBG_SYSCALL) {
749 printk("[%d] %s: arm syscall %d\n",
750 task_pid_nr(current), current->comm, no);
751 dump_instr("", regs);
752 if (user_mode(regs)) {
753 __show_regs(regs);
754 c_backtrace(regs->ARM_fp, processor_mode(regs));
755 }
756 }
757 #endif
758 info.si_signo = SIGILL;
759 info.si_errno = 0;
760 info.si_code = ILL_ILLTRP;
761 info.si_addr = (void __user *)instruction_pointer(regs) -
762 (thumb_mode(regs) ? 2 : 4);
763
764 arm_notify_die("Oops - bad syscall(2)", regs, &info, no, 0);
765 return 0;
766 }
767
768 #ifdef CONFIG_TLS_REG_EMUL
769
770 /*
771 * We might be running on an ARMv6+ processor which should have the TLS
772 * register but for some reason we can't use it, or maybe an SMP system
773 * using a pre-ARMv6 processor (there are apparently a few prototypes like
774 * that in existence) and therefore access to that register must be
775 * emulated.
776 */
777
778 static int get_tp_trap(struct pt_regs *regs, unsigned int instr)
779 {
780 int reg = (instr >> 12) & 15;
781 if (reg == 15)
782 return 1;
783 regs->uregs[reg] = current_thread_info()->tp_value[0];
784 regs->ARM_pc += 4;
785 return 0;
786 }
787
788 static struct undef_hook arm_mrc_hook = {
789 .instr_mask = 0x0fff0fff,
790 .instr_val = 0x0e1d0f70,
791 .cpsr_mask = PSR_T_BIT,
792 .cpsr_val = 0,
793 .fn = get_tp_trap,
794 };
795
796 static int __init arm_mrc_hook_init(void)
797 {
798 register_undef_hook(&arm_mrc_hook);
799 return 0;
800 }
801
802 late_initcall(arm_mrc_hook_init);
803
804 #endif
805
806 void __bad_xchg(volatile void *ptr, int size)
807 {
808 printk("xchg: bad data size: pc 0x%p, ptr 0x%p, size %d\n",
809 __builtin_return_address(0), ptr, size);
810 BUG();
811 }
812 EXPORT_SYMBOL(__bad_xchg);
813
814 /*
815 * A data abort trap was taken, but we did not handle the instruction.
816 * Try to abort the user program, or panic if it was the kernel.
817 */
818 asmlinkage void
819 baddataabort(int code, unsigned long instr, struct pt_regs *regs)
820 {
821 unsigned long addr = instruction_pointer(regs);
822 siginfo_t info;
823
824 #ifdef CONFIG_DEBUG_USER
825 if (user_debug & UDBG_BADABORT) {
826 printk(KERN_ERR "[%d] %s: bad data abort: code %d instr 0x%08lx\n",
827 task_pid_nr(current), current->comm, code, instr);
828 dump_instr(KERN_ERR, regs);
829 show_pte(current->mm, addr);
830 }
831 #endif
832
833 info.si_signo = SIGILL;
834 info.si_errno = 0;
835 info.si_code = ILL_ILLOPC;
836 info.si_addr = (void __user *)addr;
837
838 arm_notify_die("unknown data abort code", regs, &info, instr, 0);
839 }
840
841 void __readwrite_bug(const char *fn)
842 {
843 printk("%s called, but not implemented\n", fn);
844 BUG();
845 }
846 EXPORT_SYMBOL(__readwrite_bug);
847
848 void __pte_error(const char *file, int line, pte_t pte)
849 {
850 printk("%s:%d: bad pte %08llx.\n", file, line, (long long)pte_val(pte));
851 }
852
853 void __pmd_error(const char *file, int line, pmd_t pmd)
854 {
855 printk("%s:%d: bad pmd %08llx.\n", file, line, (long long)pmd_val(pmd));
856 }
857
858 void __pgd_error(const char *file, int line, pgd_t pgd)
859 {
860 printk("%s:%d: bad pgd %08llx.\n", file, line, (long long)pgd_val(pgd));
861 }
862
863 asmlinkage void __div0(void)
864 {
865 printk("Division by zero in kernel.\n");
866 dump_stack();
867 }
868 EXPORT_SYMBOL(__div0);
869
870 void abort(void)
871 {
872 BUG();
873
874 /* if that doesn't kill us, halt */
875 panic("Oops failed to kill thread");
876 }
877 EXPORT_SYMBOL(abort);
878
879 void __init trap_init(void)
880 {
881 return;
882 }
883
884 #ifdef CONFIG_KUSER_HELPERS
885 static void __init kuser_init(void *vectors)
886 {
887 extern char __kuser_helper_start[], __kuser_helper_end[];
888 int kuser_sz = __kuser_helper_end - __kuser_helper_start;
889
890 memcpy(vectors + 0x1000 - kuser_sz, __kuser_helper_start, kuser_sz);
891
892 /*
893 * vectors + 0xfe0 = __kuser_get_tls
894 * vectors + 0xfe8 = hardware TLS instruction at 0xffff0fe8
895 */
896 if (tls_emu || has_tls_reg)
897 memcpy(vectors + 0xfe0, vectors + 0xfe8, 4);
898 }
899 #else
900 static void __init kuser_init(void *vectors)
901 {
902 }
903 #endif
904
905 void __init early_trap_init(void *vectors_base)
906 {
907 unsigned long vectors = (unsigned long)vectors_base;
908 extern char __stubs_start[], __stubs_end[];
909 extern char __vectors_start[], __vectors_end[];
910 unsigned i;
911
912 vectors_page = vectors_base;
913
914 /*
915 * Poison the vectors page with an undefined instruction. This
916 * instruction is chosen to be undefined for both ARM and Thumb
917 * ISAs. The Thumb version is an undefined instruction with a
918 * branch back to the undefined instruction.
919 */
920 for (i = 0; i < PAGE_SIZE / sizeof(u32); i++)
921 ((u32 *)vectors_base)[i] = 0xe7fddef1;
922
923 /*
924 * Copy the vectors, stubs and kuser helpers (in entry-armv.S)
925 * into the vector page, mapped at 0xffff0000, and ensure these
926 * are visible to the instruction stream.
927 */
928 memcpy((void *)vectors, __vectors_start, __vectors_end - __vectors_start);
929 memcpy((void *)vectors + 0x1000, __stubs_start, __stubs_end - __stubs_start);
930
931 kuser_init(vectors_base);
932
933 flush_icache_range(vectors, vectors + PAGE_SIZE * 2);
934 modify_domain(DOMAIN_USER, DOMAIN_CLIENT);
935 }