uprobes.c 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  1. /*
  2. * User-space Probes (UProbes) for s390
  3. *
  4. * Copyright IBM Corp. 2014
  5. * Author(s): Jan Willeke,
  6. */
  7. #include <linux/uaccess.h>
  8. #include <linux/uprobes.h>
  9. #include <linux/compat.h>
  10. #include <linux/kdebug.h>
  11. #include <asm/switch_to.h>
  12. #include <asm/facility.h>
  13. #include <asm/kprobes.h>
  14. #include <asm/dis.h>
  15. #include "entry.h"
  16. #define UPROBE_TRAP_NR UINT_MAX
  17. int arch_uprobe_analyze_insn(struct arch_uprobe *auprobe, struct mm_struct *mm,
  18. unsigned long addr)
  19. {
  20. return probe_is_prohibited_opcode(auprobe->insn);
  21. }
  22. int arch_uprobe_pre_xol(struct arch_uprobe *auprobe, struct pt_regs *regs)
  23. {
  24. if (psw_bits(regs->psw).eaba == PSW_AMODE_24BIT)
  25. return -EINVAL;
  26. if (!is_compat_task() && psw_bits(regs->psw).eaba == PSW_AMODE_31BIT)
  27. return -EINVAL;
  28. clear_pt_regs_flag(regs, PIF_PER_TRAP);
  29. auprobe->saved_per = psw_bits(regs->psw).r;
  30. auprobe->saved_int_code = regs->int_code;
  31. regs->int_code = UPROBE_TRAP_NR;
  32. regs->psw.addr = current->utask->xol_vaddr;
  33. set_tsk_thread_flag(current, TIF_UPROBE_SINGLESTEP);
  34. update_cr_regs(current);
  35. return 0;
  36. }
  37. bool arch_uprobe_xol_was_trapped(struct task_struct *tsk)
  38. {
  39. struct pt_regs *regs = task_pt_regs(tsk);
  40. if (regs->int_code != UPROBE_TRAP_NR)
  41. return true;
  42. return false;
  43. }
  44. static int check_per_event(unsigned short cause, unsigned long control,
  45. struct pt_regs *regs)
  46. {
  47. if (!(regs->psw.mask & PSW_MASK_PER))
  48. return 0;
  49. /* user space single step */
  50. if (control == 0)
  51. return 1;
  52. /* over indication for storage alteration */
  53. if ((control & 0x20200000) && (cause & 0x2000))
  54. return 1;
  55. if (cause & 0x8000) {
  56. /* all branches */
  57. if ((control & 0x80800000) == 0x80000000)
  58. return 1;
  59. /* branch into selected range */
  60. if (((control & 0x80800000) == 0x80800000) &&
  61. regs->psw.addr >= current->thread.per_user.start &&
  62. regs->psw.addr <= current->thread.per_user.end)
  63. return 1;
  64. }
  65. return 0;
  66. }
  67. int arch_uprobe_post_xol(struct arch_uprobe *auprobe, struct pt_regs *regs)
  68. {
  69. int fixup = probe_get_fixup_type(auprobe->insn);
  70. struct uprobe_task *utask = current->utask;
  71. clear_tsk_thread_flag(current, TIF_UPROBE_SINGLESTEP);
  72. update_cr_regs(current);
  73. psw_bits(regs->psw).r = auprobe->saved_per;
  74. regs->int_code = auprobe->saved_int_code;
  75. if (fixup & FIXUP_PSW_NORMAL)
  76. regs->psw.addr += utask->vaddr - utask->xol_vaddr;
  77. if (fixup & FIXUP_RETURN_REGISTER) {
  78. int reg = (auprobe->insn[0] & 0xf0) >> 4;
  79. regs->gprs[reg] += utask->vaddr - utask->xol_vaddr;
  80. }
  81. if (fixup & FIXUP_BRANCH_NOT_TAKEN) {
  82. int ilen = insn_length(auprobe->insn[0] >> 8);
  83. if (regs->psw.addr - utask->xol_vaddr == ilen)
  84. regs->psw.addr = utask->vaddr + ilen;
  85. }
  86. if (check_per_event(current->thread.per_event.cause,
  87. current->thread.per_user.control, regs)) {
  88. /* fix per address */
  89. current->thread.per_event.address = utask->vaddr;
  90. /* trigger per event */
  91. set_pt_regs_flag(regs, PIF_PER_TRAP);
  92. }
  93. return 0;
  94. }
  95. int arch_uprobe_exception_notify(struct notifier_block *self, unsigned long val,
  96. void *data)
  97. {
  98. struct die_args *args = data;
  99. struct pt_regs *regs = args->regs;
  100. if (!user_mode(regs))
  101. return NOTIFY_DONE;
  102. if (regs->int_code & 0x200) /* Trap during transaction */
  103. return NOTIFY_DONE;
  104. switch (val) {
  105. case DIE_BPT:
  106. if (uprobe_pre_sstep_notifier(regs))
  107. return NOTIFY_STOP;
  108. break;
  109. case DIE_SSTEP:
  110. if (uprobe_post_sstep_notifier(regs))
  111. return NOTIFY_STOP;
  112. default:
  113. break;
  114. }
  115. return NOTIFY_DONE;
  116. }
  117. void arch_uprobe_abort_xol(struct arch_uprobe *auprobe, struct pt_regs *regs)
  118. {
  119. clear_thread_flag(TIF_UPROBE_SINGLESTEP);
  120. regs->int_code = auprobe->saved_int_code;
  121. regs->psw.addr = current->utask->vaddr;
  122. current->thread.per_event.address = current->utask->vaddr;
  123. }
  124. unsigned long arch_uretprobe_hijack_return_addr(unsigned long trampoline,
  125. struct pt_regs *regs)
  126. {
  127. unsigned long orig;
  128. orig = regs->gprs[14];
  129. regs->gprs[14] = trampoline;
  130. return orig;
  131. }
  132. /* Instruction Emulation */
  133. static void adjust_psw_addr(psw_t *psw, unsigned long len)
  134. {
  135. psw->addr = __rewind_psw(*psw, -len);
  136. }
  137. #define EMU_ILLEGAL_OP 1
  138. #define EMU_SPECIFICATION 2
  139. #define EMU_ADDRESSING 3
  140. #define emu_load_ril(ptr, output) \
  141. ({ \
  142. unsigned int mask = sizeof(*(ptr)) - 1; \
  143. __typeof__(*(ptr)) input; \
  144. int __rc = 0; \
  145. \
  146. if (!test_facility(34)) \
  147. __rc = EMU_ILLEGAL_OP; \
  148. else if ((u64 __force)ptr & mask) \
  149. __rc = EMU_SPECIFICATION; \
  150. else if (get_user(input, ptr)) \
  151. __rc = EMU_ADDRESSING; \
  152. else \
  153. *(output) = input; \
  154. __rc; \
  155. })
  156. #define emu_store_ril(regs, ptr, input) \
  157. ({ \
  158. unsigned int mask = sizeof(*(ptr)) - 1; \
  159. __typeof__(ptr) __ptr = (ptr); \
  160. int __rc = 0; \
  161. \
  162. if (!test_facility(34)) \
  163. __rc = EMU_ILLEGAL_OP; \
  164. else if ((u64 __force)__ptr & mask) \
  165. __rc = EMU_SPECIFICATION; \
  166. else if (put_user(*(input), __ptr)) \
  167. __rc = EMU_ADDRESSING; \
  168. if (__rc == 0) \
  169. sim_stor_event(regs, __ptr, mask + 1); \
  170. __rc; \
  171. })
  172. #define emu_cmp_ril(regs, ptr, cmp) \
  173. ({ \
  174. unsigned int mask = sizeof(*(ptr)) - 1; \
  175. __typeof__(*(ptr)) input; \
  176. int __rc = 0; \
  177. \
  178. if (!test_facility(34)) \
  179. __rc = EMU_ILLEGAL_OP; \
  180. else if ((u64 __force)ptr & mask) \
  181. __rc = EMU_SPECIFICATION; \
  182. else if (get_user(input, ptr)) \
  183. __rc = EMU_ADDRESSING; \
  184. else if (input > *(cmp)) \
  185. psw_bits((regs)->psw).cc = 1; \
  186. else if (input < *(cmp)) \
  187. psw_bits((regs)->psw).cc = 2; \
  188. else \
  189. psw_bits((regs)->psw).cc = 0; \
  190. __rc; \
  191. })
  192. struct insn_ril {
  193. u8 opc0;
  194. u8 reg : 4;
  195. u8 opc1 : 4;
  196. s32 disp;
  197. } __packed;
  198. union split_register {
  199. u64 u64;
  200. u32 u32[2];
  201. u16 u16[4];
  202. s64 s64;
  203. s32 s32[2];
  204. s16 s16[4];
  205. };
  206. /*
  207. * If user per registers are setup to trace storage alterations and an
  208. * emulated store took place on a fitting address a user trap is generated.
  209. */
  210. static void sim_stor_event(struct pt_regs *regs, void *addr, int len)
  211. {
  212. if (!(regs->psw.mask & PSW_MASK_PER))
  213. return;
  214. if (!(current->thread.per_user.control & PER_EVENT_STORE))
  215. return;
  216. if ((void *)current->thread.per_user.start > (addr + len))
  217. return;
  218. if ((void *)current->thread.per_user.end < addr)
  219. return;
  220. current->thread.per_event.address = regs->psw.addr;
  221. current->thread.per_event.cause = PER_EVENT_STORE >> 16;
  222. set_pt_regs_flag(regs, PIF_PER_TRAP);
  223. }
  224. /*
  225. * pc relative instructions are emulated, since parameters may not be
  226. * accessible from the xol area due to range limitations.
  227. */
  228. static void handle_insn_ril(struct arch_uprobe *auprobe, struct pt_regs *regs)
  229. {
  230. union split_register *rx;
  231. struct insn_ril *insn;
  232. unsigned int ilen;
  233. void *uptr;
  234. int rc = 0;
  235. insn = (struct insn_ril *) &auprobe->insn;
  236. rx = (union split_register *) &regs->gprs[insn->reg];
  237. uptr = (void *)(regs->psw.addr + (insn->disp * 2));
  238. ilen = insn_length(insn->opc0);
  239. switch (insn->opc0) {
  240. case 0xc0:
  241. switch (insn->opc1) {
  242. case 0x00: /* larl */
  243. rx->u64 = (unsigned long)uptr;
  244. break;
  245. }
  246. break;
  247. case 0xc4:
  248. switch (insn->opc1) {
  249. case 0x02: /* llhrl */
  250. rc = emu_load_ril((u16 __user *)uptr, &rx->u32[1]);
  251. break;
  252. case 0x04: /* lghrl */
  253. rc = emu_load_ril((s16 __user *)uptr, &rx->u64);
  254. break;
  255. case 0x05: /* lhrl */
  256. rc = emu_load_ril((s16 __user *)uptr, &rx->u32[1]);
  257. break;
  258. case 0x06: /* llghrl */
  259. rc = emu_load_ril((u16 __user *)uptr, &rx->u64);
  260. break;
  261. case 0x08: /* lgrl */
  262. rc = emu_load_ril((u64 __user *)uptr, &rx->u64);
  263. break;
  264. case 0x0c: /* lgfrl */
  265. rc = emu_load_ril((s32 __user *)uptr, &rx->u64);
  266. break;
  267. case 0x0d: /* lrl */
  268. rc = emu_load_ril((u32 __user *)uptr, &rx->u32[1]);
  269. break;
  270. case 0x0e: /* llgfrl */
  271. rc = emu_load_ril((u32 __user *)uptr, &rx->u64);
  272. break;
  273. case 0x07: /* sthrl */
  274. rc = emu_store_ril(regs, (u16 __user *)uptr, &rx->u16[3]);
  275. break;
  276. case 0x0b: /* stgrl */
  277. rc = emu_store_ril(regs, (u64 __user *)uptr, &rx->u64);
  278. break;
  279. case 0x0f: /* strl */
  280. rc = emu_store_ril(regs, (u32 __user *)uptr, &rx->u32[1]);
  281. break;
  282. }
  283. break;
  284. case 0xc6:
  285. switch (insn->opc1) {
  286. case 0x02: /* pfdrl */
  287. if (!test_facility(34))
  288. rc = EMU_ILLEGAL_OP;
  289. break;
  290. case 0x04: /* cghrl */
  291. rc = emu_cmp_ril(regs, (s16 __user *)uptr, &rx->s64);
  292. break;
  293. case 0x05: /* chrl */
  294. rc = emu_cmp_ril(regs, (s16 __user *)uptr, &rx->s32[1]);
  295. break;
  296. case 0x06: /* clghrl */
  297. rc = emu_cmp_ril(regs, (u16 __user *)uptr, &rx->u64);
  298. break;
  299. case 0x07: /* clhrl */
  300. rc = emu_cmp_ril(regs, (u16 __user *)uptr, &rx->u32[1]);
  301. break;
  302. case 0x08: /* cgrl */
  303. rc = emu_cmp_ril(regs, (s64 __user *)uptr, &rx->s64);
  304. break;
  305. case 0x0a: /* clgrl */
  306. rc = emu_cmp_ril(regs, (u64 __user *)uptr, &rx->u64);
  307. break;
  308. case 0x0c: /* cgfrl */
  309. rc = emu_cmp_ril(regs, (s32 __user *)uptr, &rx->s64);
  310. break;
  311. case 0x0d: /* crl */
  312. rc = emu_cmp_ril(regs, (s32 __user *)uptr, &rx->s32[1]);
  313. break;
  314. case 0x0e: /* clgfrl */
  315. rc = emu_cmp_ril(regs, (u32 __user *)uptr, &rx->u64);
  316. break;
  317. case 0x0f: /* clrl */
  318. rc = emu_cmp_ril(regs, (u32 __user *)uptr, &rx->u32[1]);
  319. break;
  320. }
  321. break;
  322. }
  323. adjust_psw_addr(&regs->psw, ilen);
  324. switch (rc) {
  325. case EMU_ILLEGAL_OP:
  326. regs->int_code = ilen << 16 | 0x0001;
  327. do_report_trap(regs, SIGILL, ILL_ILLOPC, NULL);
  328. break;
  329. case EMU_SPECIFICATION:
  330. regs->int_code = ilen << 16 | 0x0006;
  331. do_report_trap(regs, SIGILL, ILL_ILLOPC , NULL);
  332. break;
  333. case EMU_ADDRESSING:
  334. regs->int_code = ilen << 16 | 0x0005;
  335. do_report_trap(regs, SIGSEGV, SEGV_MAPERR, NULL);
  336. break;
  337. }
  338. }
  339. bool arch_uprobe_skip_sstep(struct arch_uprobe *auprobe, struct pt_regs *regs)
  340. {
  341. if ((psw_bits(regs->psw).eaba == PSW_AMODE_24BIT) ||
  342. ((psw_bits(regs->psw).eaba == PSW_AMODE_31BIT) &&
  343. !is_compat_task())) {
  344. regs->psw.addr = __rewind_psw(regs->psw, UPROBE_SWBP_INSN_SIZE);
  345. do_report_trap(regs, SIGILL, ILL_ILLADR, NULL);
  346. return true;
  347. }
  348. if (probe_is_insn_relative_long(auprobe->insn)) {
  349. handle_insn_ril(auprobe, regs);
  350. return true;
  351. }
  352. return false;
  353. }