traps.c 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880
  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. #include <linux/irq.h>
  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/ptrace.h>
  35. #include <asm/unwind.h>
  36. #include <asm/tls.h>
  37. #include <asm/system_misc.h>
  38. #include <asm/opcodes.h>
  39. static const char *handler[]= {
  40. "prefetch abort",
  41. "data abort",
  42. "address exception",
  43. "interrupt",
  44. "undefined instruction",
  45. };
  46. void *vectors_page;
  47. #ifdef CONFIG_DEBUG_USER
  48. unsigned int user_debug;
  49. static int __init user_debug_setup(char *str)
  50. {
  51. get_option(&str, &user_debug);
  52. return 1;
  53. }
  54. __setup("user_debug=", user_debug_setup);
  55. #endif
  56. static void dump_mem(const char *, const char *, unsigned long, unsigned long);
  57. void dump_backtrace_entry(unsigned long where, unsigned long from, unsigned long frame)
  58. {
  59. #ifdef CONFIG_KALLSYMS
  60. printk("[<%08lx>] (%ps) from [<%08lx>] (%pS)\n", where, (void *)where, from, (void *)from);
  61. #else
  62. printk("Function entered at [<%08lx>] from [<%08lx>]\n", where, from);
  63. #endif
  64. if (in_exception_text(where))
  65. dump_mem("", "Exception stack", frame + 4, frame + 4 + sizeof(struct pt_regs));
  66. }
  67. #ifndef CONFIG_ARM_UNWIND
  68. /*
  69. * Stack pointers should always be within the kernels view of
  70. * physical memory. If it is not there, then we can't dump
  71. * out any information relating to the stack.
  72. */
  73. static 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. return 0;
  79. }
  80. #endif
  81. /*
  82. * Dump out the contents of some memory nicely...
  83. */
  84. static void dump_mem(const char *lvl, const char *str, unsigned long bottom,
  85. unsigned long top)
  86. {
  87. unsigned long first;
  88. mm_segment_t fs;
  89. int i;
  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. printk("%s%s(0x%08lx to 0x%08lx)\n", lvl, str, bottom, top);
  98. for (first = bottom & ~31; first < top; first += 32) {
  99. unsigned long p;
  100. char str[sizeof(" 12345678") * 8 + 1];
  101. memset(str, ' ', sizeof(str));
  102. str[sizeof(str) - 1] = '\0';
  103. for (p = first, i = 0; i < 8 && p < top; i++, p += 4) {
  104. if (p >= bottom && p < top) {
  105. unsigned long val;
  106. if (__get_user(val, (unsigned long *)p) == 0)
  107. sprintf(str + i * 9, " %08lx", val);
  108. else
  109. sprintf(str + i * 9, " ????????");
  110. }
  111. }
  112. printk("%s%04lx:%s\n", lvl, first & 0xffff, str);
  113. }
  114. set_fs(fs);
  115. }
  116. static void dump_instr(const char *lvl, struct pt_regs *regs)
  117. {
  118. unsigned long addr = instruction_pointer(regs);
  119. const int thumb = thumb_mode(regs);
  120. const int width = thumb ? 4 : 8;
  121. mm_segment_t fs;
  122. char str[sizeof("00000000 ") * 5 + 2 + 1], *p = str;
  123. int i;
  124. /*
  125. * We need to switch to kernel mode so that we can use __get_user
  126. * to safely read from kernel space. Note that we now dump the
  127. * code first, just in case the backtrace kills us.
  128. */
  129. fs = get_fs();
  130. set_fs(KERNEL_DS);
  131. for (i = -4; i < 1 + !!thumb; i++) {
  132. unsigned int val, bad;
  133. if (thumb)
  134. bad = __get_user(val, &((u16 *)addr)[i]);
  135. else
  136. bad = __get_user(val, &((u32 *)addr)[i]);
  137. if (!bad)
  138. p += sprintf(p, i == 0 ? "(%0*x) " : "%0*x ",
  139. width, val);
  140. else {
  141. p += sprintf(p, "bad PC value");
  142. break;
  143. }
  144. }
  145. printk("%sCode: %s\n", lvl, str);
  146. set_fs(fs);
  147. }
  148. #ifdef CONFIG_ARM_UNWIND
  149. static inline void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk)
  150. {
  151. unwind_backtrace(regs, tsk);
  152. }
  153. #else
  154. static void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk)
  155. {
  156. unsigned int fp, mode;
  157. int ok = 1;
  158. printk("Backtrace: ");
  159. if (!tsk)
  160. tsk = current;
  161. if (regs) {
  162. fp = frame_pointer(regs);
  163. mode = processor_mode(regs);
  164. } else if (tsk != current) {
  165. fp = thread_saved_fp(tsk);
  166. mode = 0x10;
  167. } else {
  168. asm("mov %0, fp" : "=r" (fp) : : "cc");
  169. mode = 0x10;
  170. }
  171. if (!fp) {
  172. pr_cont("no frame pointer");
  173. ok = 0;
  174. } else if (verify_stack(fp)) {
  175. pr_cont("invalid frame pointer 0x%08x", fp);
  176. ok = 0;
  177. } else if (fp < (unsigned long)end_of_stack(tsk))
  178. pr_cont("frame pointer underflow");
  179. pr_cont("\n");
  180. if (ok)
  181. c_backtrace(fp, mode);
  182. }
  183. #endif
  184. void show_stack(struct task_struct *tsk, unsigned long *sp)
  185. {
  186. dump_backtrace(NULL, tsk);
  187. barrier();
  188. }
  189. #ifdef CONFIG_PREEMPT
  190. #define S_PREEMPT " PREEMPT"
  191. #else
  192. #define S_PREEMPT ""
  193. #endif
  194. #ifdef CONFIG_SMP
  195. #define S_SMP " SMP"
  196. #else
  197. #define S_SMP ""
  198. #endif
  199. #ifdef CONFIG_THUMB2_KERNEL
  200. #define S_ISA " THUMB2"
  201. #else
  202. #define S_ISA " ARM"
  203. #endif
  204. static int __die(const char *str, int err, struct pt_regs *regs)
  205. {
  206. struct task_struct *tsk = current;
  207. static int die_counter;
  208. int ret;
  209. pr_emerg("Internal error: %s: %x [#%d]" S_PREEMPT S_SMP S_ISA "\n",
  210. str, err, ++die_counter);
  211. /* trap and error numbers are mostly meaningless on ARM */
  212. ret = notify_die(DIE_OOPS, str, regs, err, tsk->thread.trap_no, SIGSEGV);
  213. if (ret == NOTIFY_STOP)
  214. return 1;
  215. print_modules();
  216. __show_regs(regs);
  217. pr_emerg("Process %.*s (pid: %d, stack limit = 0x%p)\n",
  218. TASK_COMM_LEN, tsk->comm, task_pid_nr(tsk), end_of_stack(tsk));
  219. if (!user_mode(regs) || in_interrupt()) {
  220. dump_mem(KERN_EMERG, "Stack: ", regs->ARM_sp,
  221. THREAD_SIZE + (unsigned long)task_stack_page(tsk));
  222. dump_backtrace(regs, tsk);
  223. dump_instr(KERN_EMERG, regs);
  224. }
  225. return 0;
  226. }
  227. static arch_spinlock_t die_lock = __ARCH_SPIN_LOCK_UNLOCKED;
  228. static int die_owner = -1;
  229. static unsigned int die_nest_count;
  230. static unsigned long oops_begin(void)
  231. {
  232. int cpu;
  233. unsigned long flags;
  234. oops_enter();
  235. /* racy, but better than risking deadlock. */
  236. raw_local_irq_save(flags);
  237. cpu = smp_processor_id();
  238. if (!arch_spin_trylock(&die_lock)) {
  239. if (cpu == die_owner)
  240. /* nested oops. should stop eventually */;
  241. else
  242. arch_spin_lock(&die_lock);
  243. }
  244. die_nest_count++;
  245. die_owner = cpu;
  246. console_verbose();
  247. bust_spinlocks(1);
  248. return flags;
  249. }
  250. static void oops_end(unsigned long flags, struct pt_regs *regs, int signr)
  251. {
  252. if (regs && kexec_should_crash(current))
  253. crash_kexec(regs);
  254. bust_spinlocks(0);
  255. die_owner = -1;
  256. add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE);
  257. die_nest_count--;
  258. if (!die_nest_count)
  259. /* Nest count reaches zero, release the lock. */
  260. arch_spin_unlock(&die_lock);
  261. raw_local_irq_restore(flags);
  262. oops_exit();
  263. if (in_interrupt())
  264. panic("Fatal exception in interrupt");
  265. if (panic_on_oops)
  266. panic("Fatal exception");
  267. if (signr)
  268. do_exit(signr);
  269. }
  270. /*
  271. * This function is protected against re-entrancy.
  272. */
  273. void die(const char *str, struct pt_regs *regs, int err)
  274. {
  275. enum bug_trap_type bug_type = BUG_TRAP_TYPE_NONE;
  276. unsigned long flags = oops_begin();
  277. int sig = SIGSEGV;
  278. if (!user_mode(regs))
  279. bug_type = report_bug(regs->ARM_pc, regs);
  280. if (bug_type != BUG_TRAP_TYPE_NONE)
  281. str = "Oops - BUG";
  282. if (__die(str, err, regs))
  283. sig = 0;
  284. oops_end(flags, regs, sig);
  285. }
  286. void arm_notify_die(const char *str, struct pt_regs *regs,
  287. struct siginfo *info, unsigned long err, unsigned long trap)
  288. {
  289. if (user_mode(regs)) {
  290. current->thread.error_code = err;
  291. current->thread.trap_no = trap;
  292. force_sig_info(info->si_signo, info, current);
  293. } else {
  294. die(str, regs, err);
  295. }
  296. }
  297. #ifdef CONFIG_GENERIC_BUG
  298. int is_valid_bugaddr(unsigned long pc)
  299. {
  300. #ifdef CONFIG_THUMB2_KERNEL
  301. u16 bkpt;
  302. u16 insn = __opcode_to_mem_thumb16(BUG_INSTR_VALUE);
  303. #else
  304. u32 bkpt;
  305. u32 insn = __opcode_to_mem_arm(BUG_INSTR_VALUE);
  306. #endif
  307. if (probe_kernel_address((unsigned *)pc, bkpt))
  308. return 0;
  309. return bkpt == insn;
  310. }
  311. #endif
  312. static LIST_HEAD(undef_hook);
  313. static DEFINE_RAW_SPINLOCK(undef_lock);
  314. void register_undef_hook(struct undef_hook *hook)
  315. {
  316. unsigned long flags;
  317. raw_spin_lock_irqsave(&undef_lock, flags);
  318. list_add(&hook->node, &undef_hook);
  319. raw_spin_unlock_irqrestore(&undef_lock, flags);
  320. }
  321. void unregister_undef_hook(struct undef_hook *hook)
  322. {
  323. unsigned long flags;
  324. raw_spin_lock_irqsave(&undef_lock, flags);
  325. list_del(&hook->node);
  326. raw_spin_unlock_irqrestore(&undef_lock, flags);
  327. }
  328. static int call_undef_hook(struct pt_regs *regs, unsigned int instr)
  329. {
  330. struct undef_hook *hook;
  331. unsigned long flags;
  332. int (*fn)(struct pt_regs *regs, unsigned int instr) = NULL;
  333. raw_spin_lock_irqsave(&undef_lock, flags);
  334. list_for_each_entry(hook, &undef_hook, node)
  335. if ((instr & hook->instr_mask) == hook->instr_val &&
  336. (regs->ARM_cpsr & hook->cpsr_mask) == hook->cpsr_val)
  337. fn = hook->fn;
  338. raw_spin_unlock_irqrestore(&undef_lock, flags);
  339. return fn ? fn(regs, instr) : 1;
  340. }
  341. asmlinkage void __exception do_undefinstr(struct pt_regs *regs)
  342. {
  343. unsigned int instr;
  344. siginfo_t info;
  345. void __user *pc;
  346. pc = (void __user *)instruction_pointer(regs);
  347. if (processor_mode(regs) == SVC_MODE) {
  348. #ifdef CONFIG_THUMB2_KERNEL
  349. if (thumb_mode(regs)) {
  350. instr = __mem_to_opcode_thumb16(((u16 *)pc)[0]);
  351. if (is_wide_instruction(instr)) {
  352. u16 inst2;
  353. inst2 = __mem_to_opcode_thumb16(((u16 *)pc)[1]);
  354. instr = __opcode_thumb32_compose(instr, inst2);
  355. }
  356. } else
  357. #endif
  358. instr = __mem_to_opcode_arm(*(u32 *) pc);
  359. } else if (thumb_mode(regs)) {
  360. if (get_user(instr, (u16 __user *)pc))
  361. goto die_sig;
  362. instr = __mem_to_opcode_thumb16(instr);
  363. if (is_wide_instruction(instr)) {
  364. unsigned int instr2;
  365. if (get_user(instr2, (u16 __user *)pc+1))
  366. goto die_sig;
  367. instr2 = __mem_to_opcode_thumb16(instr2);
  368. instr = __opcode_thumb32_compose(instr, instr2);
  369. }
  370. } else {
  371. if (get_user(instr, (u32 __user *)pc))
  372. goto die_sig;
  373. instr = __mem_to_opcode_arm(instr);
  374. }
  375. if (call_undef_hook(regs, instr) == 0)
  376. return;
  377. die_sig:
  378. #ifdef CONFIG_DEBUG_USER
  379. if (user_debug & UDBG_UNDEFINED) {
  380. pr_info("%s (%d): undefined instruction: pc=%p\n",
  381. current->comm, task_pid_nr(current), pc);
  382. __show_regs(regs);
  383. dump_instr(KERN_INFO, regs);
  384. }
  385. #endif
  386. info.si_signo = SIGILL;
  387. info.si_errno = 0;
  388. info.si_code = ILL_ILLOPC;
  389. info.si_addr = pc;
  390. arm_notify_die("Oops - undefined instruction", regs, &info, 0, 6);
  391. }
  392. /*
  393. * Handle FIQ similarly to NMI on x86 systems.
  394. *
  395. * The runtime environment for NMIs is extremely restrictive
  396. * (NMIs can pre-empt critical sections meaning almost all locking is
  397. * forbidden) meaning this default FIQ handling must only be used in
  398. * circumstances where non-maskability improves robustness, such as
  399. * watchdog or debug logic.
  400. *
  401. * This handler is not appropriate for general purpose use in drivers
  402. * platform code and can be overrideen using set_fiq_handler.
  403. */
  404. asmlinkage void __exception_irq_entry handle_fiq_as_nmi(struct pt_regs *regs)
  405. {
  406. struct pt_regs *old_regs = set_irq_regs(regs);
  407. nmi_enter();
  408. /* nop. FIQ handlers for special arch/arm features can be added here. */
  409. nmi_exit();
  410. set_irq_regs(old_regs);
  411. }
  412. /*
  413. * bad_mode handles the impossible case in the vectors. If you see one of
  414. * these, then it's extremely serious, and could mean you have buggy hardware.
  415. * It never returns, and never tries to sync. We hope that we can at least
  416. * dump out some state information...
  417. */
  418. asmlinkage void bad_mode(struct pt_regs *regs, int reason)
  419. {
  420. console_verbose();
  421. pr_crit("Bad mode in %s handler detected\n", handler[reason]);
  422. die("Oops - bad mode", regs, 0);
  423. local_irq_disable();
  424. panic("bad mode");
  425. }
  426. static int bad_syscall(int n, struct pt_regs *regs)
  427. {
  428. siginfo_t info;
  429. if ((current->personality & PER_MASK) != PER_LINUX) {
  430. send_sig(SIGSEGV, current, 1);
  431. return regs->ARM_r0;
  432. }
  433. #ifdef CONFIG_DEBUG_USER
  434. if (user_debug & UDBG_SYSCALL) {
  435. pr_err("[%d] %s: obsolete system call %08x.\n",
  436. task_pid_nr(current), current->comm, n);
  437. dump_instr(KERN_ERR, regs);
  438. }
  439. #endif
  440. info.si_signo = SIGILL;
  441. info.si_errno = 0;
  442. info.si_code = ILL_ILLTRP;
  443. info.si_addr = (void __user *)instruction_pointer(regs) -
  444. (thumb_mode(regs) ? 2 : 4);
  445. arm_notify_die("Oops - bad syscall", regs, &info, n, 0);
  446. return regs->ARM_r0;
  447. }
  448. static inline int
  449. __do_cache_op(unsigned long start, unsigned long end)
  450. {
  451. int ret;
  452. do {
  453. unsigned long chunk = min(PAGE_SIZE, end - start);
  454. if (fatal_signal_pending(current))
  455. return 0;
  456. ret = flush_cache_user_range(start, start + chunk);
  457. if (ret)
  458. return ret;
  459. cond_resched();
  460. start += chunk;
  461. } while (start < end);
  462. return 0;
  463. }
  464. static inline int
  465. do_cache_op(unsigned long start, unsigned long end, int flags)
  466. {
  467. if (end < start || flags)
  468. return -EINVAL;
  469. if (!access_ok(VERIFY_READ, start, end - start))
  470. return -EFAULT;
  471. return __do_cache_op(start, end);
  472. }
  473. /*
  474. * Handle all unrecognised system calls.
  475. * 0x9f0000 - 0x9fffff are some more esoteric system calls
  476. */
  477. #define NR(x) ((__ARM_NR_##x) - __ARM_NR_BASE)
  478. asmlinkage int arm_syscall(int no, struct pt_regs *regs)
  479. {
  480. siginfo_t info;
  481. if ((no >> 16) != (__ARM_NR_BASE>> 16))
  482. return bad_syscall(no, regs);
  483. switch (no & 0xffff) {
  484. case 0: /* branch through 0 */
  485. info.si_signo = SIGSEGV;
  486. info.si_errno = 0;
  487. info.si_code = SEGV_MAPERR;
  488. info.si_addr = NULL;
  489. arm_notify_die("branch through zero", regs, &info, 0, 0);
  490. return 0;
  491. case NR(breakpoint): /* SWI BREAK_POINT */
  492. regs->ARM_pc -= thumb_mode(regs) ? 2 : 4;
  493. ptrace_break(current, regs);
  494. return regs->ARM_r0;
  495. /*
  496. * Flush a region from virtual address 'r0' to virtual address 'r1'
  497. * _exclusive_. There is no alignment requirement on either address;
  498. * user space does not need to know the hardware cache layout.
  499. *
  500. * r2 contains flags. It should ALWAYS be passed as ZERO until it
  501. * is defined to be something else. For now we ignore it, but may
  502. * the fires of hell burn in your belly if you break this rule. ;)
  503. *
  504. * (at a later date, we may want to allow this call to not flush
  505. * various aspects of the cache. Passing '0' will guarantee that
  506. * everything necessary gets flushed to maintain consistency in
  507. * the specified region).
  508. */
  509. case NR(cacheflush):
  510. return do_cache_op(regs->ARM_r0, regs->ARM_r1, regs->ARM_r2);
  511. case NR(usr26):
  512. if (!(elf_hwcap & HWCAP_26BIT))
  513. break;
  514. regs->ARM_cpsr &= ~MODE32_BIT;
  515. return regs->ARM_r0;
  516. case NR(usr32):
  517. if (!(elf_hwcap & HWCAP_26BIT))
  518. break;
  519. regs->ARM_cpsr |= MODE32_BIT;
  520. return regs->ARM_r0;
  521. case NR(set_tls):
  522. set_tls(regs->ARM_r0);
  523. return 0;
  524. #ifdef CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG
  525. /*
  526. * Atomically store r1 in *r2 if *r2 is equal to r0 for user space.
  527. * Return zero in r0 if *MEM was changed or non-zero if no exchange
  528. * happened. Also set the user C flag accordingly.
  529. * If access permissions have to be fixed up then non-zero is
  530. * returned and the operation has to be re-attempted.
  531. *
  532. * *NOTE*: This is a ghost syscall private to the kernel. Only the
  533. * __kuser_cmpxchg code in entry-armv.S should be aware of its
  534. * existence. Don't ever use this from user code.
  535. */
  536. case NR(cmpxchg):
  537. for (;;) {
  538. extern void do_DataAbort(unsigned long addr, unsigned int fsr,
  539. struct pt_regs *regs);
  540. unsigned long val;
  541. unsigned long addr = regs->ARM_r2;
  542. struct mm_struct *mm = current->mm;
  543. pgd_t *pgd; pmd_t *pmd; pte_t *pte;
  544. spinlock_t *ptl;
  545. regs->ARM_cpsr &= ~PSR_C_BIT;
  546. down_read(&mm->mmap_sem);
  547. pgd = pgd_offset(mm, addr);
  548. if (!pgd_present(*pgd))
  549. goto bad_access;
  550. pmd = pmd_offset(pgd, addr);
  551. if (!pmd_present(*pmd))
  552. goto bad_access;
  553. pte = pte_offset_map_lock(mm, pmd, addr, &ptl);
  554. if (!pte_present(*pte) || !pte_write(*pte) || !pte_dirty(*pte)) {
  555. pte_unmap_unlock(pte, ptl);
  556. goto bad_access;
  557. }
  558. val = *(unsigned long *)addr;
  559. val -= regs->ARM_r0;
  560. if (val == 0) {
  561. *(unsigned long *)addr = regs->ARM_r1;
  562. regs->ARM_cpsr |= PSR_C_BIT;
  563. }
  564. pte_unmap_unlock(pte, ptl);
  565. up_read(&mm->mmap_sem);
  566. return val;
  567. bad_access:
  568. up_read(&mm->mmap_sem);
  569. /* simulate a write access fault */
  570. do_DataAbort(addr, 15 + (1 << 11), regs);
  571. }
  572. #endif
  573. default:
  574. /* Calls 9f00xx..9f07ff are defined to return -ENOSYS
  575. if not implemented, rather than raising SIGILL. This
  576. way the calling program can gracefully determine whether
  577. a feature is supported. */
  578. if ((no & 0xffff) <= 0x7ff)
  579. return -ENOSYS;
  580. break;
  581. }
  582. #ifdef CONFIG_DEBUG_USER
  583. /*
  584. * experience shows that these seem to indicate that
  585. * something catastrophic has happened
  586. */
  587. if (user_debug & UDBG_SYSCALL) {
  588. pr_err("[%d] %s: arm syscall %d\n",
  589. task_pid_nr(current), current->comm, no);
  590. dump_instr("", regs);
  591. if (user_mode(regs)) {
  592. __show_regs(regs);
  593. c_backtrace(frame_pointer(regs), processor_mode(regs));
  594. }
  595. }
  596. #endif
  597. info.si_signo = SIGILL;
  598. info.si_errno = 0;
  599. info.si_code = ILL_ILLTRP;
  600. info.si_addr = (void __user *)instruction_pointer(regs) -
  601. (thumb_mode(regs) ? 2 : 4);
  602. arm_notify_die("Oops - bad syscall(2)", regs, &info, no, 0);
  603. return 0;
  604. }
  605. #ifdef CONFIG_TLS_REG_EMUL
  606. /*
  607. * We might be running on an ARMv6+ processor which should have the TLS
  608. * register but for some reason we can't use it, or maybe an SMP system
  609. * using a pre-ARMv6 processor (there are apparently a few prototypes like
  610. * that in existence) and therefore access to that register must be
  611. * emulated.
  612. */
  613. static int get_tp_trap(struct pt_regs *regs, unsigned int instr)
  614. {
  615. int reg = (instr >> 12) & 15;
  616. if (reg == 15)
  617. return 1;
  618. regs->uregs[reg] = current_thread_info()->tp_value[0];
  619. regs->ARM_pc += 4;
  620. return 0;
  621. }
  622. static struct undef_hook arm_mrc_hook = {
  623. .instr_mask = 0x0fff0fff,
  624. .instr_val = 0x0e1d0f70,
  625. .cpsr_mask = PSR_T_BIT,
  626. .cpsr_val = 0,
  627. .fn = get_tp_trap,
  628. };
  629. static int __init arm_mrc_hook_init(void)
  630. {
  631. register_undef_hook(&arm_mrc_hook);
  632. return 0;
  633. }
  634. late_initcall(arm_mrc_hook_init);
  635. #endif
  636. /*
  637. * A data abort trap was taken, but we did not handle the instruction.
  638. * Try to abort the user program, or panic if it was the kernel.
  639. */
  640. asmlinkage void
  641. baddataabort(int code, unsigned long instr, struct pt_regs *regs)
  642. {
  643. unsigned long addr = instruction_pointer(regs);
  644. siginfo_t info;
  645. #ifdef CONFIG_DEBUG_USER
  646. if (user_debug & UDBG_BADABORT) {
  647. pr_err("[%d] %s: bad data abort: code %d instr 0x%08lx\n",
  648. task_pid_nr(current), current->comm, code, instr);
  649. dump_instr(KERN_ERR, regs);
  650. show_pte(current->mm, addr);
  651. }
  652. #endif
  653. info.si_signo = SIGILL;
  654. info.si_errno = 0;
  655. info.si_code = ILL_ILLOPC;
  656. info.si_addr = (void __user *)addr;
  657. arm_notify_die("unknown data abort code", regs, &info, instr, 0);
  658. }
  659. void __readwrite_bug(const char *fn)
  660. {
  661. pr_err("%s called, but not implemented\n", fn);
  662. BUG();
  663. }
  664. EXPORT_SYMBOL(__readwrite_bug);
  665. void __pte_error(const char *file, int line, pte_t pte)
  666. {
  667. pr_err("%s:%d: bad pte %08llx.\n", file, line, (long long)pte_val(pte));
  668. }
  669. void __pmd_error(const char *file, int line, pmd_t pmd)
  670. {
  671. pr_err("%s:%d: bad pmd %08llx.\n", file, line, (long long)pmd_val(pmd));
  672. }
  673. void __pgd_error(const char *file, int line, pgd_t pgd)
  674. {
  675. pr_err("%s:%d: bad pgd %08llx.\n", file, line, (long long)pgd_val(pgd));
  676. }
  677. asmlinkage void __div0(void)
  678. {
  679. pr_err("Division by zero in kernel.\n");
  680. dump_stack();
  681. }
  682. EXPORT_SYMBOL(__div0);
  683. void abort(void)
  684. {
  685. BUG();
  686. /* if that doesn't kill us, halt */
  687. panic("Oops failed to kill thread");
  688. }
  689. EXPORT_SYMBOL(abort);
  690. void __init trap_init(void)
  691. {
  692. return;
  693. }
  694. #ifdef CONFIG_KUSER_HELPERS
  695. static void __init kuser_init(void *vectors)
  696. {
  697. extern char __kuser_helper_start[], __kuser_helper_end[];
  698. int kuser_sz = __kuser_helper_end - __kuser_helper_start;
  699. memcpy(vectors + 0x1000 - kuser_sz, __kuser_helper_start, kuser_sz);
  700. /*
  701. * vectors + 0xfe0 = __kuser_get_tls
  702. * vectors + 0xfe8 = hardware TLS instruction at 0xffff0fe8
  703. */
  704. if (tls_emu || has_tls_reg)
  705. memcpy(vectors + 0xfe0, vectors + 0xfe8, 4);
  706. }
  707. #else
  708. static inline void __init kuser_init(void *vectors)
  709. {
  710. }
  711. #endif
  712. void __init early_trap_init(void *vectors_base)
  713. {
  714. #ifndef CONFIG_CPU_V7M
  715. unsigned long vectors = (unsigned long)vectors_base;
  716. extern char __stubs_start[], __stubs_end[];
  717. extern char __vectors_start[], __vectors_end[];
  718. unsigned i;
  719. vectors_page = vectors_base;
  720. /*
  721. * Poison the vectors page with an undefined instruction. This
  722. * instruction is chosen to be undefined for both ARM and Thumb
  723. * ISAs. The Thumb version is an undefined instruction with a
  724. * branch back to the undefined instruction.
  725. */
  726. for (i = 0; i < PAGE_SIZE / sizeof(u32); i++)
  727. ((u32 *)vectors_base)[i] = 0xe7fddef1;
  728. /*
  729. * Copy the vectors, stubs and kuser helpers (in entry-armv.S)
  730. * into the vector page, mapped at 0xffff0000, and ensure these
  731. * are visible to the instruction stream.
  732. */
  733. memcpy((void *)vectors, __vectors_start, __vectors_end - __vectors_start);
  734. memcpy((void *)vectors + 0x1000, __stubs_start, __stubs_end - __stubs_start);
  735. kuser_init(vectors_base);
  736. flush_icache_range(vectors, vectors + PAGE_SIZE * 2);
  737. #else /* ifndef CONFIG_CPU_V7M */
  738. /*
  739. * on V7-M there is no need to copy the vector table to a dedicated
  740. * memory area. The address is configurable and so a table in the kernel
  741. * image can be used.
  742. */
  743. #endif
  744. }