ftrace.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * Dynamic Ftrace based Kprobes Optimization
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  17. *
  18. * Copyright (C) Hitachi Ltd., 2012
  19. */
  20. #include <linux/kprobes.h>
  21. #include <linux/ptrace.h>
  22. #include <linux/hardirq.h>
  23. #include <linux/preempt.h>
  24. #include <linux/ftrace.h>
  25. #include "common.h"
  26. /* Ftrace callback handler for kprobes -- called under preepmt disabed */
  27. void kprobe_ftrace_handler(unsigned long ip, unsigned long parent_ip,
  28. struct ftrace_ops *ops, struct pt_regs *regs)
  29. {
  30. struct kprobe *p;
  31. struct kprobe_ctlblk *kcb;
  32. /* Preempt is disabled by ftrace */
  33. p = get_kprobe((kprobe_opcode_t *)ip);
  34. if (unlikely(!p) || kprobe_disabled(p))
  35. return;
  36. kcb = get_kprobe_ctlblk();
  37. if (kprobe_running()) {
  38. kprobes_inc_nmissed_count(p);
  39. } else {
  40. unsigned long orig_ip = regs->ip;
  41. /* Kprobe handler expects regs->ip = ip + 1 as breakpoint hit */
  42. regs->ip = ip + sizeof(kprobe_opcode_t);
  43. __this_cpu_write(current_kprobe, p);
  44. kcb->kprobe_status = KPROBE_HIT_ACTIVE;
  45. if (!p->pre_handler || !p->pre_handler(p, regs)) {
  46. /*
  47. * Emulate singlestep (and also recover regs->ip)
  48. * as if there is a 5byte nop
  49. */
  50. regs->ip = (unsigned long)p->addr + MCOUNT_INSN_SIZE;
  51. if (unlikely(p->post_handler)) {
  52. kcb->kprobe_status = KPROBE_HIT_SSDONE;
  53. p->post_handler(p, regs, 0);
  54. }
  55. regs->ip = orig_ip;
  56. }
  57. /*
  58. * If pre_handler returns !0, it changes regs->ip. We have to
  59. * skip emulating post_handler.
  60. */
  61. __this_cpu_write(current_kprobe, NULL);
  62. }
  63. }
  64. NOKPROBE_SYMBOL(kprobe_ftrace_handler);
  65. int arch_prepare_kprobe_ftrace(struct kprobe *p)
  66. {
  67. p->ainsn.insn = NULL;
  68. p->ainsn.boostable = false;
  69. return 0;
  70. }