ftrace.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. // SPDX-License-Identifier: GPL-2.0
  2. #include <linux/kprobes.h>
  3. /* Ftrace callback handler for kprobes -- called under preepmt disabled */
  4. void kprobe_ftrace_handler(unsigned long ip, unsigned long parent_ip,
  5. struct ftrace_ops *ops, struct ftrace_regs *fregs)
  6. {
  7. int bit;
  8. bool lr_saver = false;
  9. struct kprobe *p;
  10. struct kprobe_ctlblk *kcb;
  11. struct pt_regs *regs;
  12. if (unlikely(kprobe_ftrace_disabled))
  13. return;
  14. bit = ftrace_test_recursion_trylock(ip, parent_ip);
  15. if (bit < 0)
  16. return;
  17. regs = ftrace_get_regs(fregs);
  18. p = get_kprobe((kprobe_opcode_t *)ip);
  19. if (!p) {
  20. p = get_kprobe((kprobe_opcode_t *)(ip - MCOUNT_INSN_SIZE));
  21. if (unlikely(!p) || kprobe_disabled(p))
  22. goto out;
  23. lr_saver = true;
  24. }
  25. kcb = get_kprobe_ctlblk();
  26. if (kprobe_running()) {
  27. kprobes_inc_nmissed_count(p);
  28. } else {
  29. unsigned long orig_ip = instruction_pointer(regs);
  30. if (lr_saver)
  31. ip -= MCOUNT_INSN_SIZE;
  32. instruction_pointer_set(regs, ip);
  33. __this_cpu_write(current_kprobe, p);
  34. kcb->kprobe_status = KPROBE_HIT_ACTIVE;
  35. if (!p->pre_handler || !p->pre_handler(p, regs)) {
  36. /*
  37. * Emulate singlestep (and also recover regs->pc)
  38. * as if there is a nop
  39. */
  40. instruction_pointer_set(regs,
  41. (unsigned long)p->addr + MCOUNT_INSN_SIZE);
  42. if (unlikely(p->post_handler)) {
  43. kcb->kprobe_status = KPROBE_HIT_SSDONE;
  44. p->post_handler(p, regs, 0);
  45. }
  46. instruction_pointer_set(regs, orig_ip);
  47. }
  48. /*
  49. * If pre_handler returns !0, it changes regs->pc. We have to
  50. * skip emulating post_handler.
  51. */
  52. __this_cpu_write(current_kprobe, NULL);
  53. }
  54. out:
  55. ftrace_test_recursion_unlock(bit);
  56. }
  57. NOKPROBE_SYMBOL(kprobe_ftrace_handler);
  58. int arch_prepare_kprobe_ftrace(struct kprobe *p)
  59. {
  60. p->ainsn.api.insn = NULL;
  61. return 0;
  62. }