kprobe_example.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /*
  2. * NOTE: This example is works on x86 and powerpc.
  3. * Here's a sample kernel module showing the use of kprobes to dump a
  4. * stack trace and selected registers when do_fork() is called.
  5. *
  6. * For more information on theory of operation of kprobes, see
  7. * Documentation/kprobes.txt
  8. *
  9. * You will see the trace data in /var/log/messages and on the console
  10. * whenever do_fork() is invoked to create a new process.
  11. */
  12. #include <linux/kernel.h>
  13. #include <linux/module.h>
  14. #include <linux/kprobes.h>
  15. /* For each probe you need to allocate a kprobe structure */
  16. static struct kprobe kp = {
  17. .symbol_name = "do_fork",
  18. };
  19. /* kprobe pre_handler: called just before the probed instruction is executed */
  20. static int handler_pre(struct kprobe *p, struct pt_regs *regs)
  21. {
  22. #ifdef CONFIG_X86
  23. printk(KERN_INFO "pre_handler: p->addr = 0x%p, ip = %lx,"
  24. " flags = 0x%lx\n",
  25. p->addr, regs->ip, regs->flags);
  26. #endif
  27. #ifdef CONFIG_PPC
  28. printk(KERN_INFO "pre_handler: p->addr = 0x%p, nip = 0x%lx,"
  29. " msr = 0x%lx\n",
  30. p->addr, regs->nip, regs->msr);
  31. #endif
  32. #ifdef CONFIG_MIPS
  33. printk(KERN_INFO "pre_handler: p->addr = 0x%p, epc = 0x%lx,"
  34. " status = 0x%lx\n",
  35. p->addr, regs->cp0_epc, regs->cp0_status);
  36. #endif
  37. #ifdef CONFIG_TILEGX
  38. printk(KERN_INFO "pre_handler: p->addr = 0x%p, pc = 0x%lx,"
  39. " ex1 = 0x%lx\n",
  40. p->addr, regs->pc, regs->ex1);
  41. #endif
  42. /* A dump_stack() here will give a stack backtrace */
  43. return 0;
  44. }
  45. /* kprobe post_handler: called after the probed instruction is executed */
  46. static void handler_post(struct kprobe *p, struct pt_regs *regs,
  47. unsigned long flags)
  48. {
  49. #ifdef CONFIG_X86
  50. printk(KERN_INFO "post_handler: p->addr = 0x%p, flags = 0x%lx\n",
  51. p->addr, regs->flags);
  52. #endif
  53. #ifdef CONFIG_PPC
  54. printk(KERN_INFO "post_handler: p->addr = 0x%p, msr = 0x%lx\n",
  55. p->addr, regs->msr);
  56. #endif
  57. #ifdef CONFIG_MIPS
  58. printk(KERN_INFO "post_handler: p->addr = 0x%p, status = 0x%lx\n",
  59. p->addr, regs->cp0_status);
  60. #endif
  61. #ifdef CONFIG_TILEGX
  62. printk(KERN_INFO "post_handler: p->addr = 0x%p, ex1 = 0x%lx\n",
  63. p->addr, regs->ex1);
  64. #endif
  65. }
  66. /*
  67. * fault_handler: this is called if an exception is generated for any
  68. * instruction within the pre- or post-handler, or when Kprobes
  69. * single-steps the probed instruction.
  70. */
  71. static int handler_fault(struct kprobe *p, struct pt_regs *regs, int trapnr)
  72. {
  73. printk(KERN_INFO "fault_handler: p->addr = 0x%p, trap #%dn",
  74. p->addr, trapnr);
  75. /* Return 0 because we don't handle the fault. */
  76. return 0;
  77. }
  78. static int __init kprobe_init(void)
  79. {
  80. int ret;
  81. kp.pre_handler = handler_pre;
  82. kp.post_handler = handler_post;
  83. kp.fault_handler = handler_fault;
  84. ret = register_kprobe(&kp);
  85. if (ret < 0) {
  86. printk(KERN_INFO "register_kprobe failed, returned %d\n", ret);
  87. return ret;
  88. }
  89. printk(KERN_INFO "Planted kprobe at %p\n", kp.addr);
  90. return 0;
  91. }
  92. static void __exit kprobe_exit(void)
  93. {
  94. unregister_kprobe(&kp);
  95. printk(KERN_INFO "kprobe at %p unregistered\n", kp.addr);
  96. }
  97. module_init(kprobe_init)
  98. module_exit(kprobe_exit)
  99. MODULE_LICENSE("GPL");