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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * arch/alpha/kernel/traps.c
  3.  *
  4.  * (C) Copyright 1994 Linus Torvalds
  5.  */
  6. /*
  7.  * This file initializes the trap entry points
  8.  */
  9. #include <linux/config.h>
  10. #include <linux/mm.h>
  11. #include <linux/sched.h>
  12. #include <linux/tty.h>
  13. #include <linux/delay.h>
  14. #include <linux/smp_lock.h>
  15. #include <asm/gentrap.h>
  16. #include <asm/uaccess.h>
  17. #include <asm/unaligned.h>
  18. #include <asm/sysinfo.h>
  19. #include <asm/hwrpb.h>
  20. #include <asm/mmu_context.h>
  21. #include "proto.h"
  22. /* data/code implementing a work-around for some SRMs which
  23.    mishandle opDEC faults
  24. */
  25. static int opDEC_testing = 0;
  26. static int opDEC_fix = 0;
  27. static unsigned long opDEC_test_pc = 0;
  28. static void
  29. opDEC_check(void)
  30. {
  31. unsigned long test_pc;
  32. lock_kernel();
  33. opDEC_testing = 1;
  34. __asm__ __volatile__(
  35. "       br      %0,1fn"
  36. "1:     addq    %0,8,%0n"
  37. "       stq     %0,%1n"
  38. "       cvttq/svm $f31,$f31n"
  39. : "=&r"(test_pc), "=m"(opDEC_test_pc)
  40. : );
  41. opDEC_testing = 0;
  42. unlock_kernel();
  43. }
  44. void
  45. dik_show_regs(struct pt_regs *regs, unsigned long *r9_15)
  46. {
  47. printk("pc = [<%016lx>]  ra = [<%016lx>]  ps = %04lx    %sn",
  48.        regs->pc, regs->r26, regs->ps, print_tainted());
  49. printk("v0 = %016lx  t0 = %016lx  t1 = %016lxn",
  50.        regs->r0, regs->r1, regs->r2);
  51. printk("t2 = %016lx  t3 = %016lx  t4 = %016lxn",
  52.          regs->r3, regs->r4, regs->r5);
  53. printk("t5 = %016lx  t6 = %016lx  t7 = %016lxn",
  54.        regs->r6, regs->r7, regs->r8);
  55. if (r9_15) {
  56. printk("s0 = %016lx  s1 = %016lx  s2 = %016lxn",
  57.        r9_15[9], r9_15[10], r9_15[11]);
  58. printk("s3 = %016lx  s4 = %016lx  s5 = %016lxn",
  59.        r9_15[12], r9_15[13], r9_15[14]);
  60. printk("s6 = %016lxn", r9_15[15]);
  61. }
  62. printk("a0 = %016lx  a1 = %016lx  a2 = %016lxn",
  63.        regs->r16, regs->r17, regs->r18);
  64. printk("a3 = %016lx  a4 = %016lx  a5 = %016lxn",
  65.          regs->r19, regs->r20, regs->r21);
  66.   printk("t8 = %016lx  t9 = %016lx  t10= %016lxn",
  67.        regs->r22, regs->r23, regs->r24);
  68. printk("t11= %016lx  pv = %016lx  at = %016lxn",
  69.        regs->r25, regs->r27, regs->r28);
  70. printk("gp = %016lx  sp = %pn", regs->gp, regs+1);
  71. #if 0
  72. __halt();
  73. #endif
  74. }
  75. #if 0
  76. static char * ireg_name[] = {"v0", "t0", "t1", "t2", "t3", "t4", "t5", "t6",
  77.    "t7", "s0", "s1", "s2", "s3", "s4", "s5", "s6",
  78.    "a0", "a1", "a2", "a3", "a4", "a5", "t8", "t9",
  79.    "t10", "t11", "ra", "pv", "at", "gp", "sp", "zero"};
  80. #endif
  81. static void
  82. dik_show_code(unsigned int *pc)
  83. {
  84. long i;
  85. printk("Code:");
  86. for (i = -6; i < 2; i++) {
  87. unsigned int insn;
  88. if (__get_user(insn, pc+i))
  89. break;
  90. printk("%c%08x%c", i ? ' ' : '<', insn, i ? ' ' : '>');
  91. }
  92. printk("n");
  93. }
  94. static void
  95. dik_show_trace(unsigned long *sp)
  96. {
  97. long i = 0;
  98. printk("Trace:");
  99. while (0x1ff8 & (unsigned long) sp) {
  100. extern unsigned long _stext, _etext;
  101. unsigned long tmp = *sp;
  102. sp++;
  103. if (tmp < (unsigned long) &_stext)
  104. continue;
  105. if (tmp >= (unsigned long) &_etext)
  106. continue;
  107. printk("%lx%c", tmp, ' ');
  108. if (i > 40) {
  109. printk(" ...");
  110. break;
  111. }
  112. }
  113. printk("n");
  114. }
  115. void show_trace_task(struct task_struct * tsk)
  116. {
  117. struct thread_struct * thread = &tsk->thread;
  118. unsigned long fp, sp = thread->ksp, base = (unsigned long) thread;
  119.  
  120. if (sp > base && sp+6*8 < base + 16*1024) {
  121. fp = ((unsigned long*)sp)[6];
  122. if (fp > sp && fp < base + 16*1024)
  123. dik_show_trace((unsigned long *)fp);
  124. }
  125. }
  126. int kstack_depth_to_print = 24;
  127. void show_stack(unsigned long *sp)
  128. {
  129. unsigned long *stack;
  130. int i;
  131. /*
  132.  * debugging aid: "show_stack(NULL);" prints the
  133.  * back trace for this cpu.
  134.  */
  135. if(sp==NULL)
  136. sp=(unsigned long*)&sp;
  137. stack = sp;
  138. for(i=0; i < kstack_depth_to_print; i++) {
  139. if (((long) stack & (THREAD_SIZE-1)) == 0)
  140. break;
  141. if (i && ((i % 4) == 0))
  142. printk("n       ");
  143. printk("%016lx ", *stack++);
  144. }
  145. printk("n");
  146. dik_show_trace(sp);
  147. }
  148. void dump_stack(void)
  149. {
  150. show_stack(NULL);
  151. }
  152. void
  153. die_if_kernel(char * str, struct pt_regs *regs, long err, unsigned long *r9_15)
  154. {
  155. if (regs->ps & 8)
  156. return;
  157. #ifdef CONFIG_SMP
  158. printk("CPU %d ", hard_smp_processor_id());
  159. #endif
  160. printk("%s(%d): %s %ldn", current->comm, current->pid, str, err);
  161. dik_show_regs(regs, r9_15);
  162. dik_show_trace((unsigned long *)(regs+1));
  163. dik_show_code((unsigned int *)regs->pc);
  164. if (current->thread.flags & (1UL << 63)) {
  165. printk("die_if_kernel recursion detected.n");
  166. sti();
  167. while (1);
  168. }
  169. current->thread.flags |= (1UL << 63);
  170. do_exit(SIGSEGV);
  171. }
  172. #ifndef CONFIG_MATHEMU
  173. static long dummy_emul(void) { return 0; }
  174. long (*alpha_fp_emul_imprecise)(struct pt_regs *regs, unsigned long writemask)
  175.   = (void *)dummy_emul;
  176. long (*alpha_fp_emul) (unsigned long pc)
  177.   = (void *)dummy_emul;
  178. #else
  179. long alpha_fp_emul_imprecise(struct pt_regs *regs, unsigned long writemask);
  180. long alpha_fp_emul (unsigned long pc);
  181. #endif
  182. asmlinkage void
  183. do_entArith(unsigned long summary, unsigned long write_mask,
  184.     unsigned long a2, unsigned long a3, unsigned long a4,
  185.     unsigned long a5, struct pt_regs regs)
  186. {
  187. if (summary & 1) {
  188. /* Software-completion summary bit is set, so try to
  189.    emulate the instruction.  */
  190. if (!amask(AMASK_PRECISE_TRAP)) {
  191. /* 21264 (except pass 1) has precise exceptions.  */
  192. if (alpha_fp_emul(regs.pc - 4))
  193. return;
  194. } else {
  195. if (alpha_fp_emul_imprecise(&regs, write_mask))
  196. return;
  197. }
  198. }
  199. #if 0
  200. printk("%s: arithmetic trap at %016lx: %02lx %016lxn",
  201. current->comm, regs.pc, summary, write_mask);
  202. #endif
  203. die_if_kernel("Arithmetic fault", &regs, 0, 0);
  204. send_sig(SIGFPE, current, 1);
  205. }
  206. asmlinkage void
  207. do_entIF(unsigned long type, unsigned long a1,
  208.  unsigned long a2, unsigned long a3, unsigned long a4,
  209.  unsigned long a5, struct pt_regs regs)
  210. {
  211. if (!opDEC_testing || type != 4) {
  212. die_if_kernel((type == 1 ? "Kernel Bug" : "Instruction fault"),
  213.       &regs, type, 0);
  214. }
  215. switch (type) {
  216.       case 0: /* breakpoint */
  217. if (ptrace_cancel_bpt(current)) {
  218. regs.pc -= 4; /* make pc point to former bpt */
  219. }
  220. send_sig(SIGTRAP, current, 1);
  221. return;
  222.       case 1: /* bugcheck */
  223. send_sig(SIGTRAP, current, 1);
  224. return;
  225.       case 2: /* gentrap */
  226. /*
  227.  * The exception code should be passed on to the signal
  228.  * handler as the second argument.  Linux doesn't do that
  229.  * yet (also notice that Linux *always* behaves like
  230.  * DEC Unix with SA_SIGINFO off; see DEC Unix man page
  231.  * for sigaction(2)).
  232.  */
  233. switch ((long) regs.r16) {
  234.       case GEN_INTOVF: case GEN_INTDIV: case GEN_FLTOVF:
  235.       case GEN_FLTDIV: case GEN_FLTUND: case GEN_FLTINV:
  236.       case GEN_FLTINE: case GEN_ROPRAND:
  237. send_sig(SIGFPE, current, 1);
  238. return;
  239.       case GEN_DECOVF:
  240.       case GEN_DECDIV:
  241.       case GEN_DECINV:
  242.       case GEN_ASSERTERR:
  243.       case GEN_NULPTRERR:
  244.       case GEN_STKOVF:
  245.       case GEN_STRLENERR:
  246.       case GEN_SUBSTRERR:
  247.       case GEN_RANGERR:
  248.       case GEN_SUBRNG:
  249.       case GEN_SUBRNG1:
  250.       case GEN_SUBRNG2:
  251.       case GEN_SUBRNG3:
  252.       case GEN_SUBRNG4:
  253.       case GEN_SUBRNG5:
  254.       case GEN_SUBRNG6:
  255.       case GEN_SUBRNG7:
  256. send_sig(SIGTRAP, current, 1);
  257. return;
  258. }
  259. break;
  260.       case 4: /* opDEC */
  261. if (implver() == IMPLVER_EV4) {
  262. /* The some versions of SRM do not handle
  263.    the opDEC properly - they return the PC of the
  264.    opDEC fault, not the instruction after as the
  265.    Alpha architecture requires.  Here we fix it up.
  266.    We do this by intentionally causing an opDEC
  267.    fault during the boot sequence and testing if
  268.    we get the correct PC.  If not, we set a flag
  269.    to correct it every time through.
  270. */
  271. if (opDEC_testing) {
  272. if (regs.pc == opDEC_test_pc) {
  273. opDEC_fix = 4;
  274. regs.pc += 4;
  275. printk("opDEC fixup enabled.n");
  276. }
  277. return;
  278. }
  279. regs.pc += opDEC_fix; 
  280. /* EV4 does not implement anything except normal
  281.    rounding.  Everything else will come here as
  282.    an illegal instruction.  Emulate them.  */
  283. if (alpha_fp_emul(regs.pc-4))
  284. return;
  285. }
  286. break;
  287.       case 3: /* FEN fault */
  288. /* Irritating users can call PAL_clrfen to disable the
  289.    FPU for the process.  The kernel will then trap in
  290.    do_switch_stack and undo_switch_stack when we try
  291.    to save and restore the FP registers.
  292.    Given that GCC by default generates code that uses the
  293.    FP registers, PAL_clrfen is not useful except for DoS
  294.    attacks.  So turn the bleeding FPU back on and be done
  295.    with it.  */
  296. current->thread.pal_flags |= 1;
  297. __reload_thread(&current->thread);
  298. return;
  299.       case 5: /* illoc */
  300.       default: /* unexpected instruction-fault type */
  301.       ;
  302. }
  303. send_sig(SIGILL, current, 1);
  304. }
  305. /* There is an ifdef in the PALcode in MILO that enables a 
  306.    "kernel debugging entry point" as an unpriviledged call_pal.
  307.    We don't want to have anything to do with it, but unfortunately
  308.    several versions of MILO included in distributions have it enabled,
  309.    and if we don't put something on the entry point we'll oops.  */
  310. asmlinkage void
  311. do_entDbg(unsigned long type, unsigned long a1,
  312.   unsigned long a2, unsigned long a3, unsigned long a4,
  313.   unsigned long a5, struct pt_regs regs)
  314. {
  315. die_if_kernel("Instruction fault", &regs, type, 0);
  316. force_sig(SIGILL, current);
  317. }
  318. /*
  319.  * entUna has a different register layout to be reasonably simple. It
  320.  * needs access to all the integer registers (the kernel doesn't use
  321.  * fp-regs), and it needs to have them in order for simpler access.
  322.  *
  323.  * Due to the non-standard register layout (and because we don't want
  324.  * to handle floating-point regs), user-mode unaligned accesses are
  325.  * handled separately by do_entUnaUser below.
  326.  *
  327.  * Oh, btw, we don't handle the "gp" register correctly, but if we fault
  328.  * on a gp-register unaligned load/store, something is _very_ wrong
  329.  * in the kernel anyway..
  330.  */
  331. struct allregs {
  332. unsigned long regs[32];
  333. unsigned long ps, pc, gp, a0, a1, a2;
  334. };
  335. struct unaligned_stat {
  336. unsigned long count, va, pc;
  337. } unaligned[2];
  338. /* Macro for exception fixup code to access integer registers.  */
  339. #define una_reg(r)  (regs.regs[(r) >= 16 && (r) <= 18 ? (r)+19 : (r)])
  340. asmlinkage void
  341. do_entUna(void * va, unsigned long opcode, unsigned long reg,
  342.   unsigned long a3, unsigned long a4, unsigned long a5,
  343.   struct allregs regs)
  344. {
  345. long error, tmp1, tmp2, tmp3, tmp4;
  346. unsigned long pc = regs.pc - 4;
  347. unsigned fixup;
  348. unaligned[0].count++;
  349. unaligned[0].va = (unsigned long) va;
  350. unaligned[0].pc = pc;
  351. /* We don't want to use the generic get/put unaligned macros as
  352.    we want to trap exceptions.  Only if we actually get an
  353.    exception will we decide whether we should have caught it.  */
  354. switch (opcode) {
  355. case 0x0c: /* ldwu */
  356. __asm__ __volatile__(
  357. "1: ldq_u %1,0(%3)n"
  358. "2: ldq_u %2,1(%3)n"
  359. " extwl %1,%3,%1n"
  360. " extwh %2,%3,%2n"
  361. "3:n"
  362. ".section __ex_table,"a"n"
  363. " .gprel32 1bn"
  364. " lda %1,3b-1b(%0)n"
  365. " .gprel32 2bn"
  366. " lda %2,3b-2b(%0)n"
  367. ".previous"
  368. : "=r"(error), "=&r"(tmp1), "=&r"(tmp2)
  369. : "r"(va), "0"(0));
  370. if (error)
  371. goto got_exception;
  372. una_reg(reg) = tmp1|tmp2;
  373. return;
  374. case 0x28: /* ldl */
  375. __asm__ __volatile__(
  376. "1: ldq_u %1,0(%3)n"
  377. "2: ldq_u %2,3(%3)n"
  378. " extll %1,%3,%1n"
  379. " extlh %2,%3,%2n"
  380. "3:n"
  381. ".section __ex_table,"a"n"
  382. " .gprel32 1bn"
  383. " lda %1,3b-1b(%0)n"
  384. " .gprel32 2bn"
  385. " lda %2,3b-2b(%0)n"
  386. ".previous"
  387. : "=r"(error), "=&r"(tmp1), "=&r"(tmp2)
  388. : "r"(va), "0"(0));
  389. if (error)
  390. goto got_exception;
  391. una_reg(reg) = (int)(tmp1|tmp2);
  392. return;
  393. case 0x29: /* ldq */
  394. __asm__ __volatile__(
  395. "1: ldq_u %1,0(%3)n"
  396. "2: ldq_u %2,7(%3)n"
  397. " extql %1,%3,%1n"
  398. " extqh %2,%3,%2n"
  399. "3:n"
  400. ".section __ex_table,"a"n"
  401. " .gprel32 1bn"
  402. " lda %1,3b-1b(%0)n"
  403. " .gprel32 2bn"
  404. " lda %2,3b-2b(%0)n"
  405. ".previous"
  406. : "=r"(error), "=&r"(tmp1), "=&r"(tmp2)
  407. : "r"(va), "0"(0));
  408. if (error)
  409. goto got_exception;
  410. una_reg(reg) = tmp1|tmp2;
  411. return;
  412. /* Note that the store sequences do not indicate that they change
  413.    memory because it _should_ be affecting nothing in this context.
  414.    (Otherwise we have other, much larger, problems.)  */
  415. case 0x0d: /* stw */
  416. __asm__ __volatile__(
  417. "1: ldq_u %2,1(%5)n"
  418. "2: ldq_u %1,0(%5)n"
  419. " inswh %6,%5,%4n"
  420. " inswl %6,%5,%3n"
  421. " mskwh %2,%5,%2n"
  422. " mskwl %1,%5,%1n"
  423. " or %2,%4,%2n"
  424. " or %1,%3,%1n"
  425. "3: stq_u %2,1(%5)n"
  426. "4: stq_u %1,0(%5)n"
  427. "5:n"
  428. ".section __ex_table,"a"n"
  429. " .gprel32 1bn"
  430. " lda %2,5b-1b(%0)n"
  431. " .gprel32 2bn"
  432. " lda %1,5b-2b(%0)n"
  433. " .gprel32 3bn"
  434. " lda $31,5b-3b(%0)n"
  435. " .gprel32 4bn"
  436. " lda $31,5b-4b(%0)n"
  437. ".previous"
  438. : "=r"(error), "=&r"(tmp1), "=&r"(tmp2),
  439.   "=&r"(tmp3), "=&r"(tmp4)
  440. : "r"(va), "r"(una_reg(reg)), "0"(0));
  441. if (error)
  442. goto got_exception;
  443. return;
  444. case 0x2c: /* stl */
  445. __asm__ __volatile__(
  446. "1: ldq_u %2,3(%5)n"
  447. "2: ldq_u %1,0(%5)n"
  448. " inslh %6,%5,%4n"
  449. " insll %6,%5,%3n"
  450. " msklh %2,%5,%2n"
  451. " mskll %1,%5,%1n"
  452. " or %2,%4,%2n"
  453. " or %1,%3,%1n"
  454. "3: stq_u %2,3(%5)n"
  455. "4: stq_u %1,0(%5)n"
  456. "5:n"
  457. ".section __ex_table,"a"n"
  458. " .gprel32 1bn"
  459. " lda %2,5b-1b(%0)n"
  460. " .gprel32 2bn"
  461. " lda %1,5b-2b(%0)n"
  462. " .gprel32 3bn"
  463. " lda $31,5b-3b(%0)n"
  464. " .gprel32 4bn"
  465. " lda $31,5b-4b(%0)n"
  466. ".previous"
  467. : "=r"(error), "=&r"(tmp1), "=&r"(tmp2),
  468.   "=&r"(tmp3), "=&r"(tmp4)
  469. : "r"(va), "r"(una_reg(reg)), "0"(0));
  470. if (error)
  471. goto got_exception;
  472. return;
  473. case 0x2d: /* stq */
  474. __asm__ __volatile__(
  475. "1: ldq_u %2,7(%5)n"
  476. "2: ldq_u %1,0(%5)n"
  477. " insqh %6,%5,%4n"
  478. " insql %6,%5,%3n"
  479. " mskqh %2,%5,%2n"
  480. " mskql %1,%5,%1n"
  481. " or %2,%4,%2n"
  482. " or %1,%3,%1n"
  483. "3: stq_u %2,7(%5)n"
  484. "4: stq_u %1,0(%5)n"
  485. "5:n"
  486. ".section __ex_table,"a"nt"
  487. " .gprel32 1bn"
  488. " lda %2,5b-1b(%0)n"
  489. " .gprel32 2bn"
  490. " lda %1,5b-2b(%0)n"
  491. " .gprel32 3bn"
  492. " lda $31,5b-3b(%0)n"
  493. " .gprel32 4bn"
  494. " lda $31,5b-4b(%0)n"
  495. ".previous"
  496. : "=r"(error), "=&r"(tmp1), "=&r"(tmp2),
  497.   "=&r"(tmp3), "=&r"(tmp4)
  498. : "r"(va), "r"(una_reg(reg)), "0"(0));
  499. if (error)
  500. goto got_exception;
  501. return;
  502. }
  503. lock_kernel();
  504. printk("Bad unaligned kernel access at %016lx: %p %lx %ldn",
  505. pc, va, opcode, reg);
  506. do_exit(SIGSEGV);
  507. got_exception:
  508. /* Ok, we caught the exception, but we don't want it.  Is there
  509.    someone to pass it along to?  */
  510. if ((fixup = search_exception_table(pc, regs.gp)) != 0) {
  511. unsigned long newpc;
  512. newpc = fixup_exception(una_reg, fixup, pc);
  513. printk("Forwarding unaligned exception at %lx (%lx)n",
  514.        pc, newpc);
  515. (&regs)->pc = newpc;
  516. return;
  517. }
  518. /*
  519.  * Yikes!  No one to forward the exception to.
  520.  * Since the registers are in a weird format, dump them ourselves.
  521.    */
  522. lock_kernel();
  523. printk("%s(%d): unhandled unaligned exceptionn",
  524.        current->comm, current->pid);
  525. printk("pc = [<%016lx>]  ra = [<%016lx>]  ps = %04lxn",
  526.        pc, una_reg(26), regs.ps);
  527. printk("r0 = %016lx  r1 = %016lx  r2 = %016lxn",
  528.        una_reg(0), una_reg(1), una_reg(2));
  529. printk("r3 = %016lx  r4 = %016lx  r5 = %016lxn",
  530.          una_reg(3), una_reg(4), una_reg(5));
  531. printk("r6 = %016lx  r7 = %016lx  r8 = %016lxn",
  532.        una_reg(6), una_reg(7), una_reg(8));
  533. printk("r9 = %016lx  r10= %016lx  r11= %016lxn",
  534.        una_reg(9), una_reg(10), una_reg(11));
  535. printk("r12= %016lx  r13= %016lx  r14= %016lxn",
  536.        una_reg(12), una_reg(13), una_reg(14));
  537. printk("r15= %016lxn", una_reg(15));
  538. printk("r16= %016lx  r17= %016lx  r18= %016lxn",
  539.        una_reg(16), una_reg(17), una_reg(18));
  540. printk("r19= %016lx  r20= %016lx  r21= %016lxn",
  541.          una_reg(19), una_reg(20), una_reg(21));
  542.   printk("r22= %016lx  r23= %016lx  r24= %016lxn",
  543.        una_reg(22), una_reg(23), una_reg(24));
  544. printk("r25= %016lx  r27= %016lx  r28= %016lxn",
  545.        una_reg(25), una_reg(27), una_reg(28));
  546. printk("gp = %016lx  sp = %pn", regs.gp, &regs+1);
  547. dik_show_code((unsigned int *)pc);
  548. dik_show_trace((unsigned long *)(&regs+1));
  549. if (current->thread.flags & (1UL << 63)) {
  550. printk("die_if_kernel recursion detected.n");
  551. sti();
  552. while (1);
  553. }
  554. current->thread.flags |= (1UL << 63);
  555. do_exit(SIGSEGV);
  556. }
  557. /*
  558.  * Convert an s-floating point value in memory format to the
  559.  * corresponding value in register format.  The exponent
  560.  * needs to be remapped to preserve non-finite values
  561.  * (infinities, not-a-numbers, denormals).
  562.  */
  563. static inline unsigned long
  564. s_mem_to_reg (unsigned long s_mem)
  565. {
  566. unsigned long frac    = (s_mem >>  0) & 0x7fffff;
  567. unsigned long sign    = (s_mem >> 31) & 0x1;
  568. unsigned long exp_msb = (s_mem >> 30) & 0x1;
  569. unsigned long exp_low = (s_mem >> 23) & 0x7f;
  570. unsigned long exp;
  571. exp = (exp_msb << 10) | exp_low; /* common case */
  572. if (exp_msb) {
  573. if (exp_low == 0x7f) {
  574. exp = 0x7ff;
  575. }
  576. } else {
  577. if (exp_low == 0x00) {
  578. exp = 0x000;
  579. } else {
  580. exp |= (0x7 << 7);
  581. }
  582. }
  583. return (sign << 63) | (exp << 52) | (frac << 29);
  584. }
  585. /*
  586.  * Convert an s-floating point value in register format to the
  587.  * corresponding value in memory format.
  588.  */
  589. static inline unsigned long
  590. s_reg_to_mem (unsigned long s_reg)
  591. {
  592. return ((s_reg >> 62) << 30) | ((s_reg << 5) >> 34);
  593. }
  594. /*
  595.  * Handle user-level unaligned fault.  Handling user-level unaligned
  596.  * faults is *extremely* slow and produces nasty messages.  A user
  597.  * program *should* fix unaligned faults ASAP.
  598.  *
  599.  * Notice that we have (almost) the regular kernel stack layout here,
  600.  * so finding the appropriate registers is a little more difficult
  601.  * than in the kernel case.
  602.  *
  603.  * Finally, we handle regular integer load/stores only.  In
  604.  * particular, load-linked/store-conditionally and floating point
  605.  * load/stores are not supported.  The former make no sense with
  606.  * unaligned faults (they are guaranteed to fail) and I don't think
  607.  * the latter will occur in any decent program.
  608.  *
  609.  * Sigh. We *do* have to handle some FP operations, because GCC will
  610.  * uses them as temporary storage for integer memory to memory copies.
  611.  * However, we need to deal with stt/ldt and sts/lds only.
  612.  */
  613. #define OP_INT_MASK ( 1L << 0x28 | 1L << 0x2c   /* ldl stl */
  614. | 1L << 0x29 | 1L << 0x2d   /* ldq stq */
  615. | 1L << 0x0c | 1L << 0x0d   /* ldwu stw */
  616. | 1L << 0x0a | 1L << 0x0e ) /* ldbu stb */
  617. #define OP_WRITE_MASK ( 1L << 0x26 | 1L << 0x27   /* sts stt */
  618. | 1L << 0x2c | 1L << 0x2d   /* stl stq */
  619. | 1L << 0x0d | 1L << 0x0e ) /* stw stb */
  620. #define R(x) ((size_t) &((struct pt_regs *)0)->x)
  621. static int unauser_reg_offsets[32] = {
  622. R(r0), R(r1), R(r2), R(r3), R(r4), R(r5), R(r6), R(r7), R(r8),
  623. /* r9 ... r15 are stored in front of regs.  */
  624. -56, -48, -40, -32, -24, -16, -8,
  625. R(r16), R(r17), R(r18),
  626. R(r19), R(r20), R(r21), R(r22), R(r23), R(r24), R(r25), R(r26),
  627. R(r27), R(r28), R(gp),
  628. 0, 0
  629. };
  630. #undef R
  631. asmlinkage void
  632. do_entUnaUser(void * va, unsigned long opcode,
  633.       unsigned long reg, struct pt_regs *regs)
  634. {
  635. static int cnt = 0;
  636. static long last_time = 0;
  637. unsigned long tmp1, tmp2, tmp3, tmp4;
  638. unsigned long fake_reg, *reg_addr = &fake_reg;
  639. unsigned long uac_bits;
  640. long error;
  641. /* Check the UAC bits to decide what the user wants us to do
  642.    with the unaliged access.  */
  643. uac_bits = (current->thread.flags >> UAC_SHIFT) & UAC_BITMASK;
  644. if (!(uac_bits & UAC_NOPRINT)) {
  645. if (cnt >= 5 && jiffies - last_time > 5*HZ) {
  646. cnt = 0;
  647. }
  648. if (++cnt < 5) {
  649. printk("%s(%d): unaligned trap at %016lx: %p %lx %ldn",
  650.        current->comm, current->pid,
  651.        regs->pc - 4, va, opcode, reg);
  652. }
  653. last_time = jiffies;
  654. }
  655. if (uac_bits & UAC_SIGBUS) {
  656. goto give_sigbus;
  657. }
  658. if (uac_bits & UAC_NOFIX) {
  659. /* Not sure why you'd want to use this, but... */
  660. return;
  661. }
  662. /* Don't bother reading ds in the access check since we already
  663.    know that this came from the user.  Also rely on the fact that
  664.    the page at TASK_SIZE is unmapped and so can't be touched anyway. */
  665. if (!__access_ok((unsigned long)va, 0, USER_DS))
  666. goto give_sigsegv;
  667. ++unaligned[1].count;
  668. unaligned[1].va = (unsigned long)va;
  669. unaligned[1].pc = regs->pc - 4;
  670. if ((1L << opcode) & OP_INT_MASK) {
  671. /* it's an integer load/store */
  672. if (reg < 30) {
  673. reg_addr = (unsigned long *)
  674.   ((char *)regs + unauser_reg_offsets[reg]);
  675. } else if (reg == 30) {
  676. /* usp in PAL regs */
  677. fake_reg = rdusp();
  678. } else {
  679. /* zero "register" */
  680. fake_reg = 0;
  681. }
  682. }
  683. /* We don't want to use the generic get/put unaligned macros as
  684.    we want to trap exceptions.  Only if we actually get an
  685.    exception will we decide whether we should have caught it.  */
  686. switch (opcode) {
  687. case 0x0c: /* ldwu */
  688. __asm__ __volatile__(
  689. "1: ldq_u %1,0(%3)n"
  690. "2: ldq_u %2,1(%3)n"
  691. " extwl %1,%3,%1n"
  692. " extwh %2,%3,%2n"
  693. "3:n"
  694. ".section __ex_table,"a"n"
  695. " .gprel32 1bn"
  696. " lda %1,3b-1b(%0)n"
  697. " .gprel32 2bn"
  698. " lda %2,3b-2b(%0)n"
  699. ".previous"
  700. : "=r"(error), "=&r"(tmp1), "=&r"(tmp2)
  701. : "r"(va), "0"(0));
  702. if (error)
  703. goto give_sigsegv;
  704. *reg_addr = tmp1|tmp2;
  705. break;
  706. case 0x22: /* lds */
  707. __asm__ __volatile__(
  708. "1: ldq_u %1,0(%3)n"
  709. "2: ldq_u %2,3(%3)n"
  710. " extll %1,%3,%1n"
  711. " extlh %2,%3,%2n"
  712. "3:n"
  713. ".section __ex_table,"a"n"
  714. " .gprel32 1bn"
  715. " lda %1,3b-1b(%0)n"
  716. " .gprel32 2bn"
  717. " lda %2,3b-2b(%0)n"
  718. ".previous"
  719. : "=r"(error), "=&r"(tmp1), "=&r"(tmp2)
  720. : "r"(va), "0"(0));
  721. if (error)
  722. goto give_sigsegv;
  723. alpha_write_fp_reg(reg, s_mem_to_reg((int)(tmp1|tmp2)));
  724. return;
  725. case 0x23: /* ldt */
  726. __asm__ __volatile__(
  727. "1: ldq_u %1,0(%3)n"
  728. "2: ldq_u %2,7(%3)n"
  729. " extql %1,%3,%1n"
  730. " extqh %2,%3,%2n"
  731. "3:n"
  732. ".section __ex_table,"a"n"
  733. " .gprel32 1bn"
  734. " lda %1,3b-1b(%0)n"
  735. " .gprel32 2bn"
  736. " lda %2,3b-2b(%0)n"
  737. ".previous"
  738. : "=r"(error), "=&r"(tmp1), "=&r"(tmp2)
  739. : "r"(va), "0"(0));
  740. if (error)
  741. goto give_sigsegv;
  742. alpha_write_fp_reg(reg, tmp1|tmp2);
  743. return;
  744. case 0x28: /* ldl */
  745. __asm__ __volatile__(
  746. "1: ldq_u %1,0(%3)n"
  747. "2: ldq_u %2,3(%3)n"
  748. " extll %1,%3,%1n"
  749. " extlh %2,%3,%2n"
  750. "3:n"
  751. ".section __ex_table,"a"n"
  752. " .gprel32 1bn"
  753. " lda %1,3b-1b(%0)n"
  754. " .gprel32 2bn"
  755. " lda %2,3b-2b(%0)n"
  756. ".previous"
  757. : "=r"(error), "=&r"(tmp1), "=&r"(tmp2)
  758. : "r"(va), "0"(0));
  759. if (error)
  760. goto give_sigsegv;
  761. *reg_addr = (int)(tmp1|tmp2);
  762. break;
  763. case 0x29: /* ldq */
  764. __asm__ __volatile__(
  765. "1: ldq_u %1,0(%3)n"
  766. "2: ldq_u %2,7(%3)n"
  767. " extql %1,%3,%1n"
  768. " extqh %2,%3,%2n"
  769. "3:n"
  770. ".section __ex_table,"a"n"
  771. " .gprel32 1bn"
  772. " lda %1,3b-1b(%0)n"
  773. " .gprel32 2bn"
  774. " lda %2,3b-2b(%0)n"
  775. ".previous"
  776. : "=r"(error), "=&r"(tmp1), "=&r"(tmp2)
  777. : "r"(va), "0"(0));
  778. if (error)
  779. goto give_sigsegv;
  780. *reg_addr = tmp1|tmp2;
  781. break;
  782. /* Note that the store sequences do not indicate that they change
  783.    memory because it _should_ be affecting nothing in this context.
  784.    (Otherwise we have other, much larger, problems.)  */
  785. case 0x0d: /* stw */
  786. __asm__ __volatile__(
  787. "1: ldq_u %2,1(%5)n"
  788. "2: ldq_u %1,0(%5)n"
  789. " inswh %6,%5,%4n"
  790. " inswl %6,%5,%3n"
  791. " mskwh %2,%5,%2n"
  792. " mskwl %1,%5,%1n"
  793. " or %2,%4,%2n"
  794. " or %1,%3,%1n"
  795. "3: stq_u %2,1(%5)n"
  796. "4: stq_u %1,0(%5)n"
  797. "5:n"
  798. ".section __ex_table,"a"n"
  799. " .gprel32 1bn"
  800. " lda %2,5b-1b(%0)n"
  801. " .gprel32 2bn"
  802. " lda %1,5b-2b(%0)n"
  803. " .gprel32 3bn"
  804. " lda $31,5b-3b(%0)n"
  805. " .gprel32 4bn"
  806. " lda $31,5b-4b(%0)n"
  807. ".previous"
  808. : "=r"(error), "=&r"(tmp1), "=&r"(tmp2),
  809.   "=&r"(tmp3), "=&r"(tmp4)
  810. : "r"(va), "r"(*reg_addr), "0"(0));
  811. if (error)
  812. goto give_sigsegv;
  813. return;
  814. case 0x26: /* sts */
  815. fake_reg = s_reg_to_mem(alpha_read_fp_reg(reg));
  816. /* FALLTHRU */
  817. case 0x2c: /* stl */
  818. __asm__ __volatile__(
  819. "1: ldq_u %2,3(%5)n"
  820. "2: ldq_u %1,0(%5)n"
  821. " inslh %6,%5,%4n"
  822. " insll %6,%5,%3n"
  823. " msklh %2,%5,%2n"
  824. " mskll %1,%5,%1n"
  825. " or %2,%4,%2n"
  826. " or %1,%3,%1n"
  827. "3: stq_u %2,3(%5)n"
  828. "4: stq_u %1,0(%5)n"
  829. "5:n"
  830. ".section __ex_table,"a"n"
  831. " .gprel32 1bn"
  832. " lda %2,5b-1b(%0)n"
  833. " .gprel32 2bn"
  834. " lda %1,5b-2b(%0)n"
  835. " .gprel32 3bn"
  836. " lda $31,5b-3b(%0)n"
  837. " .gprel32 4bn"
  838. " lda $31,5b-4b(%0)n"
  839. ".previous"
  840. : "=r"(error), "=&r"(tmp1), "=&r"(tmp2),
  841.   "=&r"(tmp3), "=&r"(tmp4)
  842. : "r"(va), "r"(*reg_addr), "0"(0));
  843. if (error)
  844. goto give_sigsegv;
  845. return;
  846. case 0x27: /* stt */
  847. fake_reg = alpha_read_fp_reg(reg);
  848. /* FALLTHRU */
  849. case 0x2d: /* stq */
  850. __asm__ __volatile__(
  851. "1: ldq_u %2,7(%5)n"
  852. "2: ldq_u %1,0(%5)n"
  853. " insqh %6,%5,%4n"
  854. " insql %6,%5,%3n"
  855. " mskqh %2,%5,%2n"
  856. " mskql %1,%5,%1n"
  857. " or %2,%4,%2n"
  858. " or %1,%3,%1n"
  859. "3: stq_u %2,7(%5)n"
  860. "4: stq_u %1,0(%5)n"
  861. "5:n"
  862. ".section __ex_table,"a"nt"
  863. " .gprel32 1bn"
  864. " lda %2,5b-1b(%0)n"
  865. " .gprel32 2bn"
  866. " lda %1,5b-2b(%0)n"
  867. " .gprel32 3bn"
  868. " lda $31,5b-3b(%0)n"
  869. " .gprel32 4bn"
  870. " lda $31,5b-4b(%0)n"
  871. ".previous"
  872. : "=r"(error), "=&r"(tmp1), "=&r"(tmp2),
  873.   "=&r"(tmp3), "=&r"(tmp4)
  874. : "r"(va), "r"(*reg_addr), "0"(0));
  875. if (error)
  876. goto give_sigsegv;
  877. return;
  878. default:
  879. /* What instruction were you trying to use, exactly?  */
  880. goto give_sigbus;
  881. }
  882. /* Only integer loads should get here; everyone else returns early. */
  883. if (reg == 30)
  884. wrusp(fake_reg);
  885. return;
  886. give_sigsegv:
  887. regs->pc -= 4;  /* make pc point to faulting insn */
  888. send_sig(SIGSEGV, current, 1);
  889. return;
  890. give_sigbus:
  891. regs->pc -= 4;
  892. send_sig(SIGBUS, current, 1);
  893. return;
  894. }
  895. /*
  896.  * Unimplemented system calls.
  897.  */
  898. asmlinkage long
  899. alpha_ni_syscall(unsigned long a0, unsigned long a1, unsigned long a2,
  900.  unsigned long a3, unsigned long a4, unsigned long a5,
  901.  struct pt_regs regs)
  902. {
  903. /* We only get here for OSF system calls, minus #112;
  904.    the rest go to sys_ni_syscall.  */
  905. #if 0
  906. printk("<sc %ld(%lx,%lx,%lx)>", regs.r0, a0, a1, a2);
  907. #endif
  908. return -ENOSYS;
  909. }
  910. void
  911. trap_init(void)
  912. {
  913. /* Tell PAL-code what global pointer we want in the kernel.  */
  914. register unsigned long gptr __asm__("$29");
  915. wrkgp(gptr);
  916. wrent(entArith, 1);
  917. wrent(entMM, 2);
  918. wrent(entIF, 3);
  919. wrent(entUna, 4);
  920. wrent(entSys, 5);
  921. wrent(entDbg, 6);
  922. /* Hack for Multia (UDB) and JENSEN: some of their SRMs have
  923.  * a bug in the handling of the opDEC fault.  Fix it up if so.
  924.  */
  925. if (implver() == IMPLVER_EV4) {
  926. opDEC_check();
  927. }
  928. }