uprobes.c 9.9 KB

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