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

嵌入式Linux

开发平台:

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