traps.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:16k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Architecture-specific trap handling.
  3.  *
  4.  * Copyright (C) 1998-2001 Hewlett-Packard Co
  5.  * David Mosberger-Tang <davidm@hpl.hp.com>
  6.  *
  7.  * 05/12/00 grao <goutham.rao@intel.com> : added isr in siginfo for SIGFPE
  8.  */
  9. /*
  10.  * fp_emulate() needs to be able to access and update all floating point registers.  Those
  11.  * saved in pt_regs can be accessed through that structure, but those not saved, will be
  12.  * accessed directly.  To make this work, we need to ensure that the compiler does not end
  13.  * up using a preserved floating point register on its own.  The following achieves this
  14.  * by declaring preserved registers that are not marked as "fixed" as global register
  15.  * variables.
  16.  */
  17. register double f2 asm ("f2"); register double f3 asm ("f3");
  18. register double f4 asm ("f4"); register double f5 asm ("f5");
  19. register long f16 asm ("f16"); register long f17 asm ("f17");
  20. register long f18 asm ("f18"); register long f19 asm ("f19");
  21. register long f20 asm ("f20"); register long f21 asm ("f21");
  22. register long f22 asm ("f22"); register long f23 asm ("f23");
  23. register double f24 asm ("f24"); register double f25 asm ("f25");
  24. register double f26 asm ("f26"); register double f27 asm ("f27");
  25. register double f28 asm ("f28"); register double f29 asm ("f29");
  26. register double f30 asm ("f30"); register double f31 asm ("f31");
  27. #include <linux/config.h>
  28. #include <linux/kernel.h>
  29. #include <linux/init.h>
  30. #include <linux/sched.h>
  31. #include <linux/vt_kern.h> /* For unblank_screen() */
  32. #include <asm/hardirq.h>
  33. #include <asm/ia32.h>
  34. #include <asm/processor.h>
  35. #include <asm/uaccess.h>
  36. #include <asm/fpswa.h>
  37. extern spinlock_t timerlist_lock;
  38. static fpswa_interface_t *fpswa_interface;
  39. void __init
  40. trap_init (void)
  41. {
  42. printk("fpswa interface at %lxn", ia64_boot_param->fpswa);
  43. if (ia64_boot_param->fpswa)
  44. /* FPSWA fixup: make the interface pointer a kernel virtual address: */
  45. fpswa_interface = __va(ia64_boot_param->fpswa);
  46. }
  47. /*
  48.  * Unlock any spinlocks which will prevent us from getting the message out (timerlist_lock
  49.  * is acquired through the console unblank code)
  50.  */
  51. void
  52. bust_spinlocks (int yes)
  53. {
  54. spin_lock_init(&timerlist_lock);
  55. if (yes) {
  56. oops_in_progress = 1;
  57. #ifdef CONFIG_SMP
  58. global_irq_lock = 0; /* Many serial drivers do __global_cli() */
  59. #endif
  60. } else {
  61. int loglevel_save = console_loglevel;
  62. #ifdef CONFIG_VT
  63. unblank_screen();
  64. #endif
  65. oops_in_progress = 0;
  66. /*
  67.  * OK, the message is on the console.  Now we call printk() without
  68.  * oops_in_progress set so that printk will give klogd a poke.  Hold onto
  69.  * your hats...
  70.  */
  71. console_loglevel = 15; /* NMI oopser may have shut the console up */
  72. printk(" ");
  73. console_loglevel = loglevel_save;
  74. }
  75. }
  76. void
  77. die (const char *str, struct pt_regs *regs, long err)
  78. {
  79. static struct {
  80. spinlock_t lock;
  81. int lock_owner;
  82. int lock_owner_depth;
  83. } die = {
  84. lock: SPIN_LOCK_UNLOCKED,
  85. lock_owner: -1,
  86. lock_owner_depth: 0
  87. };
  88. if (die.lock_owner != smp_processor_id()) {
  89. console_verbose();
  90. spin_lock_irq(&die.lock);
  91. die.lock_owner = smp_processor_id();
  92. die.lock_owner_depth = 0;
  93. bust_spinlocks(1);
  94. }
  95. if (++die.lock_owner_depth < 3) {
  96. printk("%s[%d]: %s %ldn", current->comm, current->pid, str, err);
  97. show_regs(regs);
  98.    } else
  99. printk(KERN_ERR "Recursive die() failure, output suppressedn");
  100. bust_spinlocks(0);
  101. die.lock_owner = -1;
  102. spin_unlock_irq(&die.lock);
  103.    do_exit(SIGSEGV);
  104. }
  105. void
  106. die_if_kernel (char *str, struct pt_regs *regs, long err)
  107. {
  108. if (!user_mode(regs))
  109. die(str, regs, err);
  110. }
  111. void
  112. ia64_bad_break (unsigned long break_num, struct pt_regs *regs)
  113. {
  114. siginfo_t siginfo;
  115. int sig, code;
  116. /* SIGILL, SIGFPE, SIGSEGV, and SIGBUS want these field initialized: */
  117. siginfo.si_addr = (void *) (regs->cr_iip + ia64_psr(regs)->ri);
  118. siginfo.si_imm = break_num;
  119. switch (break_num) {
  120.       case 0: /* unknown error */
  121. sig = SIGILL; code = ILL_ILLOPC;
  122. break;
  123.       case 1: /* integer divide by zero */
  124. sig = SIGFPE; code = FPE_INTDIV;
  125. break;
  126.       case 2: /* integer overflow */
  127. sig = SIGFPE; code = FPE_INTOVF;
  128. break;
  129.       case 3: /* range check/bounds check */
  130. sig = SIGFPE; code = FPE_FLTSUB;
  131. break;
  132.       case 4: /* null pointer dereference */
  133. sig = SIGSEGV; code = SEGV_MAPERR;
  134. break;
  135.       case 5: /* misaligned data */
  136. sig = SIGSEGV; code = BUS_ADRALN;
  137. break;
  138.       case 6: /* decimal overflow */
  139. sig = SIGFPE; code = __FPE_DECOVF;
  140. break;
  141.       case 7: /* decimal divide by zero */
  142. sig = SIGFPE; code = __FPE_DECDIV;
  143. break;
  144.       case 8: /* packed decimal error */
  145. sig = SIGFPE; code = __FPE_DECERR;
  146. break;
  147.       case 9: /* invalid ASCII digit */
  148. sig = SIGFPE; code = __FPE_INVASC;
  149. break;
  150.       case 10: /* invalid decimal digit */
  151. sig = SIGFPE; code = __FPE_INVDEC;
  152. break;
  153.       case 11: /* paragraph stack overflow */
  154. sig = SIGSEGV; code = __SEGV_PSTKOVF;
  155. break;
  156.       default:
  157. if (break_num < 0x40000 || break_num > 0x100000)
  158. die_if_kernel("Bad break", regs, break_num);
  159. if (break_num < 0x80000) {
  160. sig = SIGILL; code = __ILL_BREAK;
  161. } else {
  162. sig = SIGTRAP; code = TRAP_BRKPT;
  163. }
  164. }
  165. siginfo.si_signo = sig;
  166. siginfo.si_errno = 0;
  167. siginfo.si_code = code;
  168. force_sig_info(sig, &siginfo, current);
  169. }
  170. /*
  171.  * Unimplemented system calls.  This is called only for stuff that
  172.  * we're supposed to implement but haven't done so yet.  Everything
  173.  * else goes to sys_ni_syscall.
  174.  */
  175. asmlinkage long
  176. ia64_ni_syscall (unsigned long arg0, unsigned long arg1, unsigned long arg2, unsigned long arg3,
  177.  unsigned long arg4, unsigned long arg5, unsigned long arg6, unsigned long arg7,
  178.  unsigned long stack)
  179. {
  180. struct pt_regs *regs = (struct pt_regs *) &stack;
  181. printk("<sc%ld(%lx,%lx,%lx,%lx)>n", regs->r15, arg0, arg1, arg2, arg3);
  182. return -ENOSYS;
  183. }
  184. /*
  185.  * disabled_fph_fault() is called when a user-level process attempts to access f32..f127
  186.  * and it doesn't own the fp-high register partition.  When this happens, we save the
  187.  * current fph partition in the task_struct of the fpu-owner (if necessary) and then load
  188.  * the fp-high partition of the current task (if necessary).  Note that the kernel has
  189.  * access to fph by the time we get here, as the IVT's "Disabled FP-Register" handler takes
  190.  * care of clearing psr.dfh.
  191.  */
  192. static inline void
  193. disabled_fph_fault (struct pt_regs *regs)
  194. {
  195. struct ia64_psr *psr = ia64_psr(regs);
  196. /* first, grant user-level access to fph partition: */
  197. psr->dfh = 0;
  198. #ifndef CONFIG_SMP
  199. {
  200. struct task_struct *fpu_owner = ia64_get_fpu_owner();
  201. if (fpu_owner == current)
  202. return;
  203. if (fpu_owner)
  204. ia64_flush_fph(fpu_owner);
  205. ia64_set_fpu_owner(current);
  206. }
  207. #endif /* !CONFIG_SMP */
  208. if ((current->thread.flags & IA64_THREAD_FPH_VALID) != 0) {
  209. __ia64_load_fpu(current->thread.fph);
  210. psr->mfh = 0;
  211. } else {
  212. __ia64_init_fpu();
  213. /*
  214.  * Set mfh because the state in thread.fph does not match the state in
  215.  * the fph partition.
  216.  */
  217. psr->mfh = 1;
  218. }
  219. }
  220. static inline int
  221. fp_emulate (int fp_fault, void *bundle, long *ipsr, long *fpsr, long *isr, long *pr, long *ifs,
  222.     struct pt_regs *regs)
  223. {
  224. struct ia64_fpreg f6_11[6];
  225. fp_state_t fp_state;
  226. fpswa_ret_t ret;
  227. if (!fpswa_interface)
  228. return -1;
  229. memset(&fp_state, 0, sizeof(fp_state_t));
  230. /*
  231.  * compute fp_state.  only FP registers f6 - f11 are used by the
  232.  * kernel, so set those bits in the mask and set the low volatile
  233.  * pointer to point to these registers.
  234.  */
  235. fp_state.bitmask_low64 = 0xfc0;  /* bit6..bit11 */
  236. f6_11[0] = regs->f6; f6_11[1] = regs->f7;
  237. f6_11[2] = regs->f8; f6_11[3] = regs->f9;
  238. __asm__ ("stf.spill %0=f10%P0" : "=m"(f6_11[4]));
  239. __asm__ ("stf.spill %0=f11%P0" : "=m"(f6_11[5]));
  240. fp_state.fp_state_low_volatile = (fp_state_low_volatile_t *) f6_11;
  241. /*
  242.  * unsigned long (*EFI_FPSWA) (
  243.  *      unsigned long    trap_type,
  244.  * void             *Bundle,
  245.  * unsigned long    *pipsr,
  246.  * unsigned long    *pfsr,
  247.  * unsigned long    *pisr,
  248.  * unsigned long    *ppreds,
  249.  * unsigned long    *pifs,
  250.  * void             *fp_state);
  251.  */
  252. ret = (*fpswa_interface->fpswa)((unsigned long) fp_fault, bundle,
  253. (unsigned long *) ipsr, (unsigned long *) fpsr,
  254. (unsigned long *) isr, (unsigned long *) pr,
  255. (unsigned long *) ifs, &fp_state);
  256. regs->f6 = f6_11[0]; regs->f7 = f6_11[1];
  257. regs->f8 = f6_11[2]; regs->f9 = f6_11[3];
  258. __asm__ ("ldf.fill f10=%0%P0" :: "m"(f6_11[4]));
  259. __asm__ ("ldf.fill f11=%0%P0" :: "m"(f6_11[5]));
  260. return ret.status;
  261. }
  262. /*
  263.  * Handle floating-point assist faults and traps.
  264.  */
  265. static int
  266. handle_fpu_swa (int fp_fault, struct pt_regs *regs, unsigned long isr)
  267. {
  268. long exception, bundle[2];
  269. unsigned long fault_ip;
  270. struct siginfo siginfo;
  271. static int fpu_swa_count = 0;
  272. static unsigned long last_time;
  273. fault_ip = regs->cr_iip;
  274. if (!fp_fault && (ia64_psr(regs)->ri == 0))
  275. fault_ip -= 16;
  276. if (copy_from_user(bundle, (void *) fault_ip, sizeof(bundle)))
  277. return -1;
  278. if (jiffies - last_time > 5*HZ)
  279. fpu_swa_count = 0;
  280. if ((++fpu_swa_count < 5) && !(current->thread.flags & IA64_THREAD_FPEMU_NOPRINT)) {
  281. last_time = jiffies;
  282. printk(KERN_WARNING "%s(%d): floating-point assist fault at ip %016lxn",
  283.        current->comm, current->pid, regs->cr_iip + ia64_psr(regs)->ri);
  284. }
  285. exception = fp_emulate(fp_fault, bundle, &regs->cr_ipsr, &regs->ar_fpsr, &isr, &regs->pr,
  286.        &regs->cr_ifs, regs);
  287. if (fp_fault) {
  288. if (exception == 0) {
  289. /* emulation was successful */
  290. ia64_increment_ip(regs);
  291. } else if (exception == -1) {
  292. printk("handle_fpu_swa: fp_emulate() returned -1n");
  293. return -1;
  294. } else {
  295. /* is next instruction a trap? */
  296. if (exception & 2) {
  297. ia64_increment_ip(regs);
  298. }
  299. siginfo.si_signo = SIGFPE;
  300. siginfo.si_errno = 0;
  301. siginfo.si_code = __SI_FAULT; /* default code */
  302. siginfo.si_addr = (void *) (regs->cr_iip + ia64_psr(regs)->ri);
  303. if (isr & 0x11) {
  304. siginfo.si_code = FPE_FLTINV;
  305. } else if (isr & 0x44) {
  306. siginfo.si_code = FPE_FLTDIV;
  307. }
  308. siginfo.si_isr = isr;
  309. force_sig_info(SIGFPE, &siginfo, current);
  310. }
  311. } else {
  312. if (exception == -1) {
  313. printk("handle_fpu_swa: fp_emulate() returned -1n");
  314. return -1;
  315. } else if (exception != 0) {
  316. /* raise exception */
  317. siginfo.si_signo = SIGFPE;
  318. siginfo.si_errno = 0;
  319. siginfo.si_code = __SI_FAULT; /* default code */
  320. siginfo.si_addr = (void *) (regs->cr_iip + ia64_psr(regs)->ri);
  321. if (isr & 0x880) {
  322. siginfo.si_code = FPE_FLTOVF;
  323. } else if (isr & 0x1100) {
  324. siginfo.si_code = FPE_FLTUND;
  325. } else if (isr & 0x2200) {
  326. siginfo.si_code = FPE_FLTRES;
  327. }
  328. siginfo.si_isr = isr;
  329. force_sig_info(SIGFPE, &siginfo, current);
  330. }
  331. }
  332. return 0;
  333. }
  334. struct illegal_op_return {
  335. unsigned long fkt, arg1, arg2, arg3;
  336. };
  337. struct illegal_op_return
  338. ia64_illegal_op_fault (unsigned long ec, unsigned long arg1, unsigned long arg2,
  339.        unsigned long arg3, unsigned long arg4, unsigned long arg5,
  340.        unsigned long arg6, unsigned long arg7, unsigned long stack)
  341. {
  342. struct pt_regs *regs = (struct pt_regs *) &stack;
  343. struct illegal_op_return rv;
  344. struct siginfo si;
  345. char buf[128];
  346. #ifdef CONFIG_IA64_BRL_EMU
  347. {
  348. extern struct illegal_op_return ia64_emulate_brl (struct pt_regs *, unsigned long);
  349. rv = ia64_emulate_brl(regs, ec);
  350. if (rv.fkt != (unsigned long) -1)
  351. return rv;
  352. }
  353. #endif
  354. sprintf(buf, "IA-64 Illegal operation fault");
  355. die_if_kernel(buf, regs, 0);
  356. memset(&si, 0, sizeof(si));
  357. si.si_signo = SIGILL;
  358. si.si_code = ILL_ILLOPC;
  359. si.si_addr = (void *) (regs->cr_iip + ia64_psr(regs)->ri);
  360. force_sig_info(SIGILL, &si, current);
  361. rv.fkt = 0;
  362. return rv;
  363. }
  364. void
  365. ia64_fault (unsigned long vector, unsigned long isr, unsigned long ifa,
  366.     unsigned long iim, unsigned long itir, unsigned long arg5,
  367.     unsigned long arg6, unsigned long arg7, unsigned long stack)
  368. {
  369. struct pt_regs *regs = (struct pt_regs *) &stack;
  370. unsigned long code, error = isr;
  371. struct siginfo siginfo;
  372. char buf[128];
  373. int result;
  374. static const char *reason[] = {
  375. "IA-64 Illegal Operation fault",
  376. "IA-64 Privileged Operation fault",
  377. "IA-64 Privileged Register fault",
  378. "IA-64 Reserved Register/Field fault",
  379. "Disabled Instruction Set Transition fault",
  380. "Unknown fault 5", "Unknown fault 6", "Unknown fault 7", "Illegal Hazard fault",
  381. "Unknown fault 9", "Unknown fault 10", "Unknown fault 11", "Unknown fault 12",
  382. "Unknown fault 13", "Unknown fault 14", "Unknown fault 15"
  383. };
  384. #if 0
  385. /* this is for minimal trust debugging; yeah this kind of stuff is useful at times... */
  386. if (vector != 25) {
  387. static unsigned long last_time;
  388. static char count;
  389. unsigned long n = vector;
  390. char buf[32], *cp;
  391. if (jiffies - last_time > 5*HZ)
  392. count = 0;
  393. if (count++ < 5) {
  394. last_time = jiffies;
  395. cp = buf + sizeof(buf);
  396. *--cp = '';
  397. while (n) {
  398. *--cp = "0123456789abcdef"[n & 0xf];
  399. n >>= 4;
  400. }
  401. printk("<0x%s>", cp);
  402. }
  403. }
  404. #endif
  405. switch (vector) {
  406.       case 24: /* General Exception */
  407. code = (isr >> 4) & 0xf;
  408. sprintf(buf, "General Exception: %s%s", reason[code],
  409. (code == 3) ? ((isr & (1UL << 37))
  410.        ? " (RSE access)" : " (data access)") : "");
  411. if (code == 8) {
  412. # ifdef CONFIG_IA64_PRINT_HAZARDS
  413. printk("%016lx:possible hazard, pr = %016lxn", regs->cr_iip, regs->pr);
  414. # endif
  415. return;
  416. }
  417. break;
  418.       case 25: /* Disabled FP-Register */
  419. if (isr & 2) {
  420. disabled_fph_fault(regs);
  421. return;
  422. }
  423. sprintf(buf, "Disabled FPL fault---not supposed to happen!");
  424. break;
  425.       case 26: /* NaT Consumption */
  426.       case 31: /* Unsupported Data Reference */
  427. if (user_mode(regs)) {
  428. siginfo.si_signo = SIGILL;
  429. siginfo.si_code = ILL_ILLOPN;
  430. siginfo.si_errno = 0;
  431. siginfo.si_addr = (void *) (regs->cr_iip + ia64_psr(regs)->ri);
  432. siginfo.si_imm = vector;
  433. force_sig_info(SIGILL, &siginfo, current);
  434. return;
  435. }
  436. sprintf(buf, (vector == 26) ? "NaT consumption" : "Unsupported data reference");
  437. break;
  438.       case 29: /* Debug */
  439.       case 35: /* Taken Branch Trap */
  440.       case 36: /* Single Step Trap */
  441. switch (vector) {
  442.       case 29:
  443. siginfo.si_code = TRAP_HWBKPT;
  444. #ifdef CONFIG_ITANIUM
  445. /*
  446.  * Erratum 10 (IFA may contain incorrect address) now has
  447.  * "NoFix" status.  There are no plans for fixing this.
  448.  */
  449. if (ia64_psr(regs)->is == 0)
  450.   ifa = regs->cr_iip;
  451. #endif
  452. siginfo.si_addr = (void *) ifa;
  453. break;
  454.       case 35: siginfo.si_code = TRAP_BRANCH; break;
  455.       case 36: siginfo.si_code = TRAP_TRACE; break;
  456. }
  457. siginfo.si_signo = SIGTRAP;
  458. siginfo.si_errno = 0;
  459. force_sig_info(SIGTRAP, &siginfo, current);
  460. return;
  461.       case 32: /* fp fault */
  462.       case 33: /* fp trap */
  463. result = handle_fpu_swa((vector == 32) ? 1 : 0, regs, isr);
  464. if ((result < 0) || (current->thread.flags & IA64_THREAD_FPEMU_SIGFPE)) {
  465. siginfo.si_signo = SIGFPE;
  466. siginfo.si_errno = 0;
  467. siginfo.si_code = FPE_FLTINV;
  468. siginfo.si_addr = (void *) (regs->cr_iip + ia64_psr(regs)->ri);
  469. force_sig_info(SIGFPE, &siginfo, current);
  470. }
  471. return;
  472.       case 34: /* Unimplemented Instruction Address Trap */
  473. if (user_mode(regs)) {
  474. siginfo.si_signo = SIGILL;
  475. siginfo.si_code = ILL_BADIADDR;
  476. siginfo.si_errno = 0;
  477. siginfo.si_addr = (void *) (regs->cr_iip + ia64_psr(regs)->ri);
  478. force_sig_info(SIGILL, &siginfo, current);
  479. return;
  480. }
  481. sprintf(buf, "Unimplemented Instruction Address fault");
  482. break;
  483.       case 45:
  484. #ifdef CONFIG_IA32_SUPPORT
  485. if (ia32_exception(regs, isr) == 0)
  486. return;
  487. #endif
  488. printk("Unexpected IA-32 exception (Trap 45)n");
  489. printk("  iip - 0x%lx, ifa - 0x%lx, isr - 0x%lxn", regs->cr_iip, ifa, isr);
  490. force_sig(SIGSEGV, current);
  491. break;
  492.       case 46:
  493. #ifdef CONFIG_IA32_SUPPORT
  494. if (ia32_intercept(regs, isr) == 0)
  495. return;
  496. #endif
  497. printk("Unexpected IA-32 intercept trap (Trap 46)n");
  498. printk("  iip - 0x%lx, ifa - 0x%lx, isr - 0x%lx, iim - 0x%lxn",
  499.        regs->cr_iip, ifa, isr, iim);
  500. force_sig(SIGSEGV, current);
  501. return;
  502.       case 47:
  503. sprintf(buf, "IA-32 Interruption Fault (int 0x%lx)", isr >> 16);
  504. break;
  505.       default:
  506. sprintf(buf, "Fault %lu", vector);
  507. break;
  508. }
  509. die_if_kernel(buf, regs, error);
  510. force_sig(SIGILL, current);
  511. }