traps.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. /*
  2. * Traps/Non-MMU Exception handling for ARC
  3. *
  4. * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * vineetg: May 2011
  11. * -user-space unaligned access emulation
  12. *
  13. * Rahul Trivedi: Codito Technologies 2004
  14. */
  15. #include <linux/sched.h>
  16. #include <linux/kdebug.h>
  17. #include <linux/uaccess.h>
  18. #include <asm/ptrace.h>
  19. #include <asm/setup.h>
  20. #include <asm/kprobes.h>
  21. #include <asm/unaligned.h>
  22. #include <asm/kgdb.h>
  23. void __init trap_init(void)
  24. {
  25. return;
  26. }
  27. void die(const char *str, struct pt_regs *regs, unsigned long address,
  28. unsigned long cause_reg)
  29. {
  30. show_kernel_fault_diag(str, regs, address, cause_reg);
  31. /* DEAD END */
  32. __asm__("flag 1");
  33. }
  34. /*
  35. * Helper called for bulk of exceptions NOT needing specific handling
  36. * -for user faults enqueues requested signal
  37. * -for kernel, chk if due to copy_(to|from)_user, otherwise die()
  38. */
  39. static noinline int handle_exception(unsigned long cause, char *str,
  40. struct pt_regs *regs, siginfo_t *info)
  41. {
  42. if (user_mode(regs)) {
  43. struct task_struct *tsk = current;
  44. tsk->thread.fault_address = (__force unsigned int)info->si_addr;
  45. tsk->thread.cause_code = cause;
  46. force_sig_info(info->si_signo, info, tsk);
  47. } else {
  48. /* If not due to copy_(to|from)_user, we are doomed */
  49. if (fixup_exception(regs))
  50. return 0;
  51. die(str, regs, (unsigned long)info->si_addr, cause);
  52. }
  53. return 1;
  54. }
  55. #define DO_ERROR_INFO(signr, str, name, sicode) \
  56. int name(unsigned long cause, unsigned long address, struct pt_regs *regs) \
  57. { \
  58. siginfo_t info = { \
  59. .si_signo = signr, \
  60. .si_errno = 0, \
  61. .si_code = sicode, \
  62. .si_addr = (void __user *)address, \
  63. }; \
  64. return handle_exception(cause, str, regs, &info);\
  65. }
  66. /*
  67. * Entry points for exceptions NOT needing specific handling
  68. */
  69. DO_ERROR_INFO(SIGILL, "Priv Op/Disabled Extn", do_privilege_fault, ILL_PRVOPC)
  70. DO_ERROR_INFO(SIGILL, "Invalid Extn Insn", do_extension_fault, ILL_ILLOPC)
  71. DO_ERROR_INFO(SIGILL, "Illegal Insn (or Seq)", insterror_is_error, ILL_ILLOPC)
  72. DO_ERROR_INFO(SIGBUS, "Invalid Mem Access", do_memory_error, BUS_ADRERR)
  73. DO_ERROR_INFO(SIGTRAP, "Breakpoint Set", trap_is_brkpt, TRAP_BRKPT)
  74. #ifdef CONFIG_ARC_MISALIGN_ACCESS
  75. /*
  76. * Entry Point for Misaligned Data access Exception, for emulating in software
  77. */
  78. int do_misaligned_access(unsigned long cause, unsigned long address,
  79. struct pt_regs *regs, struct callee_regs *cregs)
  80. {
  81. if (misaligned_fixup(address, regs, cause, cregs) != 0) {
  82. siginfo_t info;
  83. info.si_signo = SIGBUS;
  84. info.si_errno = 0;
  85. info.si_code = BUS_ADRALN;
  86. info.si_addr = (void __user *)address;
  87. return handle_exception(cause, "Misaligned Access", regs,
  88. &info);
  89. }
  90. return 0;
  91. }
  92. #else
  93. DO_ERROR_INFO(SIGSEGV, "Misaligned Access", do_misaligned_access, SEGV_ACCERR)
  94. #endif
  95. /*
  96. * Entry point for miscll errors such as Nested Exceptions
  97. * -Duplicate TLB entry is handled seperately though
  98. */
  99. void do_machine_check_fault(unsigned long cause, unsigned long address,
  100. struct pt_regs *regs)
  101. {
  102. die("Machine Check Exception", regs, address, cause);
  103. }
  104. /*
  105. * Entry point for traps induced by ARCompact TRAP_S <n> insn
  106. * This is same family as TRAP0/SWI insn (use the same vector).
  107. * The only difference being SWI insn take no operand, while TRAP_S does
  108. * which reflects in ECR Reg as 8 bit param.
  109. * Thus TRAP_S <n> can be used for specific purpose
  110. * -1 used for software breakpointing (gdb)
  111. * -2 used by kprobes
  112. */
  113. void do_non_swi_trap(unsigned long cause, unsigned long address,
  114. struct pt_regs *regs)
  115. {
  116. unsigned int param = cause & 0xff;
  117. switch (param) {
  118. case 1:
  119. trap_is_brkpt(cause, address, regs);
  120. break;
  121. case 2:
  122. trap_is_kprobe(param, address, regs);
  123. break;
  124. case 3:
  125. case 4:
  126. kgdb_trap(regs, param);
  127. break;
  128. default:
  129. break;
  130. }
  131. }
  132. /*
  133. * Entry point for Instruction Error Exception
  134. * -For a corner case, ARC kprobes implementation resorts to using
  135. * this exception, hence the check
  136. */
  137. void do_insterror_or_kprobe(unsigned long cause,
  138. unsigned long address,
  139. struct pt_regs *regs)
  140. {
  141. /* Check if this exception is caused by kprobes */
  142. if (notify_die(DIE_IERR, "kprobe_ierr", regs, address,
  143. cause, SIGILL) == NOTIFY_STOP)
  144. return;
  145. insterror_is_error(cause, address, regs);
  146. }