data_breakpoint.c 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. * data_breakpoint.c - Sample HW Breakpoint file to watch kernel data address
  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. * usage: insmod data_breakpoint.ko ksym=<ksym_name>
  19. *
  20. * This file is a kernel module that places a breakpoint over ksym_name kernel
  21. * variable using Hardware Breakpoint register. The corresponding handler which
  22. * prints a backtrace is invoked everytime a write operation is performed on
  23. * that variable.
  24. *
  25. * Copyright (C) IBM Corporation, 2009
  26. */
  27. #include <linux/module.h> /* Needed by all modules */
  28. #include <linux/kernel.h> /* Needed for KERN_INFO */
  29. #include <linux/init.h> /* Needed for the macros */
  30. #include <asm/hw_breakpoint.h>
  31. struct hw_breakpoint sample_hbp;
  32. static char ksym_name[KSYM_NAME_LEN] = "pid_max";
  33. module_param_string(ksym, ksym_name, KSYM_NAME_LEN, S_IRUGO);
  34. MODULE_PARM_DESC(ksym, "Kernel symbol to monitor; this module will report any"
  35. " write operations on the kernel symbol");
  36. void sample_hbp_handler(struct hw_breakpoint *temp, struct pt_regs
  37. *temp_regs)
  38. {
  39. printk(KERN_INFO "%s value is changed\n", ksym_name);
  40. dump_stack();
  41. printk(KERN_INFO "Dump stack from sample_hbp_handler\n");
  42. }
  43. static int __init hw_break_module_init(void)
  44. {
  45. int ret;
  46. #ifdef CONFIG_X86
  47. sample_hbp.info.name = ksym_name;
  48. sample_hbp.info.type = HW_BREAKPOINT_WRITE;
  49. sample_hbp.info.len = HW_BREAKPOINT_LEN_4;
  50. #endif /* CONFIG_X86 */
  51. sample_hbp.triggered = (void *)sample_hbp_handler;
  52. ret = register_kernel_hw_breakpoint(&sample_hbp);
  53. if (ret < 0) {
  54. printk(KERN_INFO "Breakpoint registration failed\n");
  55. return ret;
  56. } else
  57. printk(KERN_INFO "HW Breakpoint for %s write installed\n",
  58. ksym_name);
  59. return 0;
  60. }
  61. static void __exit hw_break_module_exit(void)
  62. {
  63. unregister_kernel_hw_breakpoint(&sample_hbp);
  64. printk(KERN_INFO "HW Breakpoint for %s write uninstalled\n", ksym_name);
  65. }
  66. module_init(hw_break_module_init);
  67. module_exit(hw_break_module_exit);
  68. MODULE_LICENSE("GPL");
  69. MODULE_AUTHOR("K.Prasad");
  70. MODULE_DESCRIPTION("ksym breakpoint");