traps.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:13k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/kernel/traps.c
  3.  *
  4.  *  Copyright (C) 1995, 1996 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/config.h>
  16. #include <linux/types.h>
  17. #include <linux/kernel.h>
  18. #include <linux/signal.h>
  19. #include <linux/sched.h>
  20. #include <linux/mm.h>
  21. #include <linux/spinlock.h>
  22. #include <linux/personality.h>
  23. #include <linux/ptrace.h>
  24. #include <linux/elf.h>
  25. #include <linux/interrupt.h>
  26. #include <linux/init.h>
  27. #include <asm/pgtable.h>
  28. #include <asm/system.h>
  29. #include <asm/uaccess.h>
  30. #include <asm/unistd.h>
  31. #include "ptrace.h"
  32. extern void c_backtrace (unsigned long fp, int pmode);
  33. extern void show_pte(struct mm_struct *mm, unsigned long addr);
  34. const char *processor_modes[]=
  35. { "USER_26", "FIQ_26" , "IRQ_26" , "SVC_26" , "UK4_26" , "UK5_26" , "UK6_26" , "UK7_26" ,
  36.   "UK8_26" , "UK9_26" , "UK10_26", "UK11_26", "UK12_26", "UK13_26", "UK14_26", "UK15_26",
  37.   "USER_32", "FIQ_32" , "IRQ_32" , "SVC_32" , "UK4_32" , "UK5_32" , "UK6_32" , "ABT_32" ,
  38.   "UK8_32" , "UK9_32" , "UK10_32", "UND_32" , "UK12_32", "UK13_32", "UK14_32", "SYS_32"
  39. };
  40. static const char *handler[]= { "prefetch abort", "data abort", "address exception", "interrupt" };
  41. /*
  42.  * Stack pointers should always be within the kernels view of
  43.  * physical memory.  If it is not there, then we can't dump
  44.  * out any information relating to the stack.
  45.  */
  46. static int verify_stack(unsigned long sp)
  47. {
  48. if (sp < PAGE_OFFSET || (sp > (unsigned long)high_memory && high_memory != 0))
  49. return -EFAULT;
  50. return 0;
  51. }
  52. /*
  53.  * Dump out the contents of some memory nicely...
  54.  */
  55. static void dump_mem(const char *str, unsigned long bottom, unsigned long top)
  56. {
  57. unsigned long p = bottom & ~31;
  58. int i;
  59. printk("%s(0x%08lx to 0x%08lx)n", str, bottom, top);
  60. for (p = bottom & ~31; p < top;) {
  61. printk("%04lx: ", p & 0xffff);
  62. for (i = 0; i < 8; i++, p += 4) {
  63. unsigned int val;
  64. if (p < bottom || p >= top)
  65. printk("         ");
  66. else {
  67. __get_user(val, (unsigned long *)p);
  68. printk("%08x ", val);
  69. }
  70. }
  71. printk ("n");
  72. }
  73. }
  74. static void dump_instr(struct pt_regs *regs)
  75. {
  76. unsigned long addr = instruction_pointer(regs);
  77. const int thumb = thumb_mode(regs);
  78. const int width = thumb ? 4 : 8;
  79. int i;
  80. printk("Code: ");
  81. for (i = -4; i < 1; i++) {
  82. unsigned int val, bad;
  83. if (thumb)
  84. bad = __get_user(val, &((u16 *)addr)[i]);
  85. else
  86. bad = __get_user(val, &((u32 *)addr)[i]);
  87. if (!bad)
  88. printk(i == 0 ? "(%0*x) " : "%0*x ", width, val);
  89. else {
  90. printk("bad PC value.");
  91. break;
  92. }
  93. }
  94. printk("n");
  95. }
  96. static void dump_stack(struct task_struct *tsk, unsigned long sp)
  97. {
  98. dump_mem("Stack: ", sp - 16, 8192+(unsigned long)tsk);
  99. }
  100. static void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk)
  101. {
  102. unsigned int fp;
  103. int ok = 1;
  104. printk("Backtrace: ");
  105. fp = regs->ARM_fp;
  106. if (!fp) {
  107. printk("no frame pointer");
  108. ok = 0;
  109. } else if (verify_stack(fp)) {
  110. printk("invalid frame pointer 0x%08x", fp);
  111. ok = 0;
  112. } else if (fp < 4096+(unsigned long)tsk)
  113. printk("frame pointer underflow");
  114. printk("n");
  115. if (ok)
  116. c_backtrace(fp, processor_mode(regs));
  117. }
  118. /*
  119.  * This is called from SysRq-T (show_task) to display the current
  120.  * call trace for each process.  Very useful.
  121.  */
  122. void show_trace_task(struct task_struct *tsk)
  123. {
  124. if (tsk != current) {
  125. unsigned int fp = tsk->thread.save->fp;
  126. c_backtrace(fp, 0x10);
  127. }
  128. }
  129. spinlock_t die_lock = SPIN_LOCK_UNLOCKED;
  130. /*
  131.  * This function is protected against re-entrancy.
  132.  */
  133. NORET_TYPE void die(const char *str, struct pt_regs *regs, int err)
  134. {
  135. struct task_struct *tsk = current;
  136. console_verbose();
  137. spin_lock_irq(&die_lock);
  138. printk("Internal error: %s: %xn", str, err);
  139. printk("CPU: %dn", smp_processor_id());
  140. show_regs(regs);
  141. printk("Process %s (pid: %d, stackpage=%08lx)n",
  142. current->comm, current->pid, 4096+(unsigned long)tsk);
  143. if (!user_mode(regs) || in_interrupt()) {
  144. mm_segment_t fs;
  145. /*
  146.  * We need to switch to kernel mode so that we can
  147.  * use __get_user to safely read from kernel space.
  148.  * Note that we now dump the code first, just in case
  149.  * the backtrace kills us.
  150.  */
  151. fs = get_fs();
  152. set_fs(KERNEL_DS);
  153. dump_stack(tsk, (unsigned long)(regs + 1));
  154. dump_backtrace(regs, tsk);
  155. dump_instr(regs);
  156. set_fs(fs);
  157. }
  158. spin_unlock_irq(&die_lock);
  159. do_exit(SIGSEGV);
  160. }
  161. void die_if_kernel(const char *str, struct pt_regs *regs, int err)
  162. {
  163. if (user_mode(regs))
  164.      return;
  165.      die(str, regs, err);
  166. }
  167. asmlinkage void do_undefinstr(int address, struct pt_regs *regs, int mode)
  168. {
  169. unsigned long *pc;
  170. siginfo_t info;
  171. /*
  172.  * According to the ARM ARM, PC is 2 or 4 bytes ahead, depending
  173.  * whether we're in Thumb mode or not.
  174.  */
  175. regs->ARM_pc -= thumb_mode(regs) ? 2 : 4;
  176. pc = (unsigned long *)instruction_pointer(regs);
  177. #ifdef CONFIG_DEBUG_USER
  178. printk(KERN_INFO "%s (%d): undefined instruction: pc=%pn",
  179. current->comm, current->pid, pc);
  180. dump_instr(regs);
  181. #endif
  182. current->thread.error_code = 0;
  183. current->thread.trap_no = 6;
  184. info.si_signo = SIGILL;
  185. info.si_errno = 0;
  186. info.si_code  = ILL_ILLOPC;
  187. info.si_addr  = pc;
  188. force_sig_info(SIGILL, &info, current);
  189. die_if_kernel("Oops - undefined instruction", regs, mode);
  190. }
  191. #ifdef CONFIG_CPU_26
  192. asmlinkage void do_excpt(int address, struct pt_regs *regs, int mode)
  193. {
  194. siginfo_t info;
  195. #ifdef CONFIG_DEBUG_USER
  196. printk(KERN_INFO "%s (%d): address exception: pc=%08lxn",
  197. current->comm, current->pid, instruction_pointer(regs));
  198. dump_instr(regs);
  199. #endif
  200. current->thread.error_code = 0;
  201. current->thread.trap_no = 11;
  202. info.si_signo = SIGBUS;
  203. info.si_errno = 0;
  204. info.si_code  = BUS_ADRERR;
  205. info.si_addr  = (void *)address;
  206. force_sig_info(SIGBUS, &info, current);
  207. die_if_kernel("Oops - address exception", regs, mode);
  208. }
  209. #endif
  210. asmlinkage void do_unexp_fiq (struct pt_regs *regs)
  211. {
  212. #ifndef CONFIG_IGNORE_FIQ
  213. printk("Hmm.  Unexpected FIQ received, but trying to continuen");
  214. printk("You may have a hardware problem...n");
  215. #endif
  216. }
  217. /*
  218.  * bad_mode handles the impossible case in the vectors.  If you see one of
  219.  * these, then it's extremely serious, and could mean you have buggy hardware.
  220.  * It never returns, and never tries to sync.  We hope that we can at least
  221.  * dump out some state information...
  222.  */
  223. asmlinkage void bad_mode(struct pt_regs *regs, int reason, int proc_mode)
  224. {
  225. unsigned int vectors = vectors_base();
  226. mm_segment_t fs;
  227. console_verbose();
  228. printk(KERN_CRIT "Bad mode in %s handler detected: mode %sn",
  229. handler[reason], processor_modes[proc_mode]);
  230. /*
  231.  * We need to switch to kernel mode so that we can use __get_user
  232.  * to safely read from kernel space.  Note that we now dump the
  233.  * code first, just in case the backtrace kills us.
  234.  */
  235. fs = get_fs();
  236. set_fs(KERNEL_DS);
  237. /*
  238.  * Dump out the vectors and stub routines.  Maybe a better solution
  239.  * would be to dump them out only if we detect that they are corrupted.
  240.  */
  241. dump_mem(KERN_CRIT "Vectors: ", vectors, vectors + 0x40);
  242. dump_mem(KERN_CRIT "Stubs: ", vectors + 0x200, vectors + 0x4b8);
  243. set_fs(fs);
  244. die("Oops", regs, 0);
  245. cli();
  246. panic("bad mode");
  247. }
  248. static int bad_syscall(int n, struct pt_regs *regs)
  249. {
  250. siginfo_t info;
  251. /* You might think just testing `handler' would be enough, but PER_LINUX
  252.  * points it to no_lcall7 to catch undercover SVr4 binaries.  Gutted.
  253.  */
  254. if (current->personality != PER_LINUX && current->exec_domain->handler) {
  255. /* Hand it off to iBCS.  The extra parameter and consequent type 
  256.  * forcing is necessary because of the weird ARM calling convention.
  257.  */
  258. current->exec_domain->handler(n, regs);
  259. return regs->ARM_r0;
  260. }
  261. #ifdef CONFIG_DEBUG_USER
  262. printk(KERN_ERR "[%d] %s: obsolete system call %08x.n",
  263. current->pid, current->comm, n);
  264. dump_instr(regs);
  265. #endif
  266. info.si_signo = SIGILL;
  267. info.si_errno = 0;
  268. info.si_code  = ILL_ILLTRP;
  269. info.si_addr  = (void *)instruction_pointer(regs) -
  270.  (thumb_mode(regs) ? 2 : 4);
  271. force_sig_info(SIGILL, &info, current);
  272. die_if_kernel("Oops", regs, n);
  273. return regs->ARM_r0;
  274. }
  275. /*
  276.  * Handle all unrecognised system calls.
  277.  *  0x9f0000 - 0x9fffff are some more esoteric system calls
  278.  */
  279. #define NR(x) ((__ARM_NR_##x) - __ARM_NR_BASE)
  280. asmlinkage int arm_syscall(int no, struct pt_regs *regs)
  281. {
  282. siginfo_t info;
  283. if ((no >> 16) != 0x9f)
  284. return bad_syscall(no, regs);
  285. switch (no & 0xffff) {
  286. case 0: /* branch through 0 */
  287. info.si_signo = SIGSEGV;
  288. info.si_errno = 0;
  289. info.si_code  = SEGV_MAPERR;
  290. info.si_addr  = NULL;
  291. force_sig_info(SIGSEGV, &info, current);
  292. die_if_kernel("branch through zero", regs, 0);
  293. return 0;
  294. case NR(breakpoint): /* SWI BREAK_POINT */
  295. /*
  296.  * The PC is always left pointing at the next
  297.  * instruction.  Fix this.
  298.  */
  299. regs->ARM_pc -= 4;
  300. __ptrace_cancel_bpt(current);
  301. info.si_signo = SIGTRAP;
  302. info.si_errno = 0;
  303. info.si_code  = TRAP_BRKPT;
  304. info.si_addr  = (void *)instruction_pointer(regs) -
  305.  (thumb_mode(regs) ? 2 : 4);
  306. force_sig_info(SIGTRAP, &info, current);
  307. return regs->ARM_r0;
  308. #ifdef CONFIG_CPU_32
  309. /*
  310.  * Flush a region from virtual address 'r0' to virtual address 'r1'
  311.  * _inclusive_.  There is no alignment requirement on either address;
  312.  * user space does not need to know the hardware cache layout.
  313.  *
  314.  * r2 contains flags.  It should ALWAYS be passed as ZERO until it
  315.  * is defined to be something else.  For now we ignore it, but may
  316.  * the fires of hell burn in your belly if you break this rule. ;)
  317.  *
  318.  * (at a later date, we may want to allow this call to not flush
  319.  * various aspects of the cache.  Passing '0' will guarantee that
  320.  * everything necessary gets flushed to maintain consistency in
  321.  * the specified region).
  322.  */
  323. case NR(cacheflush):
  324. cpu_cache_clean_invalidate_range(regs->ARM_r0, regs->ARM_r1, 1);
  325. return 0;
  326. case NR(usr26):
  327. if (!(elf_hwcap & HWCAP_26BIT))
  328. break;
  329. regs->ARM_cpsr &= ~0x10;
  330. return regs->ARM_r0;
  331. case NR(usr32):
  332. if (!(elf_hwcap & HWCAP_26BIT))
  333. break;
  334. regs->ARM_cpsr |= 0x10;
  335. return regs->ARM_r0;
  336. #else
  337. case NR(cacheflush):
  338. return 0;
  339. case NR(usr26):
  340. case NR(usr32):
  341. break;
  342. #endif
  343. default:
  344. /* Calls 9f00xx..9f07ff are defined to return -ENOSYS
  345.    if not implemented, rather than raising SIGILL.  This
  346.    way the calling program can gracefully determine whether
  347.    a feature is supported.  */
  348. if (no <= 0x7ff)
  349. return -ENOSYS;
  350. break;
  351. }
  352. #ifdef CONFIG_DEBUG_USER
  353. /*
  354.  * experience shows that these seem to indicate that
  355.  * something catastrophic has happened
  356.  */
  357. printk("[%d] %s: arm syscall %dn", current->pid, current->comm, no);
  358. dump_instr(regs);
  359. if (user_mode(regs)) {
  360. show_regs(regs);
  361. c_backtrace(regs->ARM_fp, processor_mode(regs));
  362. }
  363. #endif
  364. info.si_signo = SIGILL;
  365. info.si_errno = 0;
  366. info.si_code  = ILL_ILLTRP;
  367. info.si_addr  = (void *)instruction_pointer(regs) -
  368.  (thumb_mode(regs) ? 2 : 4);
  369. force_sig_info(SIGILL, &info, current);
  370. die_if_kernel("Oops", regs, no);
  371. return 0;
  372. }
  373. void __bad_xchg(volatile void *ptr, int size)
  374. {
  375. printk("xchg: bad data size: pc 0x%p, ptr 0x%p, size %dn",
  376. __builtin_return_address(0), ptr, size);
  377. BUG();
  378. }
  379. /*
  380.  * A data abort trap was taken, but we did not handle the instruction.
  381.  * Try to abort the user program, or panic if it was the kernel.
  382.  */
  383. asmlinkage void
  384. baddataabort(int code, unsigned long instr, struct pt_regs *regs)
  385. {
  386. unsigned long addr = instruction_pointer(regs);
  387. siginfo_t info;
  388. #ifdef CONFIG_DEBUG_USER
  389. printk(KERN_ERR "[%d] %s: bad data abort: code %d instr 0x%08lxn",
  390. current->pid, current->comm, code, instr);
  391. dump_instr(regs);
  392. show_pte(current->mm, addr);
  393. #endif
  394. info.si_signo = SIGILL;
  395. info.si_errno = 0;
  396. info.si_code  = ILL_ILLOPC;
  397. info.si_addr  = (void *)addr;
  398. force_sig_info(SIGILL, &info, current);
  399. die_if_kernel("unknown data abort code", regs, instr);
  400. }
  401. void __bug(const char *file, int line, void *data)
  402. {
  403. printk(KERN_CRIT"kernel BUG at %s:%d!", file, line);
  404. if (data)
  405. printk(KERN_CRIT" - extra data = %p", data);
  406. printk("n");
  407. *(int *)0 = 0;
  408. }
  409. void __readwrite_bug(const char *fn)
  410. {
  411. printk("%s called, but not implemented", fn);
  412. BUG();
  413. }
  414. void __pte_error(const char *file, int line, unsigned long val)
  415. {
  416. printk("%s:%d: bad pte %08lx.n", file, line, val);
  417. }
  418. void __pmd_error(const char *file, int line, unsigned long val)
  419. {
  420. printk("%s:%d: bad pmd %08lx.n", file, line, val);
  421. }
  422. void __pgd_error(const char *file, int line, unsigned long val)
  423. {
  424. printk("%s:%d: bad pgd %08lx.n", file, line, val);
  425. }
  426. asmlinkage void __div0(void)
  427. {
  428. printk("Division by zero in kernel.n");
  429. __backtrace();
  430. }
  431. void abort(void)
  432. {
  433. BUG();
  434. /* if that doesn't kill us, halt */
  435. panic("Oops failed to kill thread");
  436. }
  437. void __init trap_init(void)
  438. {
  439. extern void __trap_init(void *);
  440. __trap_init((void *)vectors_base());
  441. if (vectors_base() != 0)
  442. printk(KERN_DEBUG "Relocating machine vectors to 0x%08xn",
  443. vectors_base());
  444. #ifdef CONFIG_CPU_32
  445. modify_domain(DOMAIN_USER, DOMAIN_CLIENT);
  446. #endif
  447. }