blob: 418c46fe5ffc3974c660f85008a864b4edc5da59 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
K.Prasad43203992009-06-01 23:46:20 +05302/*
3 * data_breakpoint.c - Sample HW Breakpoint file to watch kernel data address
4 *
K.Prasad43203992009-06-01 23:46:20 +05305 * usage: insmod data_breakpoint.ko ksym=<ksym_name>
6 *
7 * This file is a kernel module that places a breakpoint over ksym_name kernel
8 * variable using Hardware Breakpoint register. The corresponding handler which
Lucas De Marchi25985ed2011-03-30 22:57:33 -03009 * prints a backtrace is invoked every time a write operation is performed on
K.Prasad43203992009-06-01 23:46:20 +053010 * that variable.
11 *
12 * Copyright (C) IBM Corporation, 2009
K.Prasadba6909b2009-11-23 21:17:13 +053013 *
14 * Author: K.Prasad <prasad@linux.vnet.ibm.com>
K.Prasad43203992009-06-01 23:46:20 +053015 */
16#include <linux/module.h> /* Needed by all modules */
17#include <linux/kernel.h> /* Needed for KERN_INFO */
18#include <linux/init.h> /* Needed for the macros */
Frederic Weisbeckerf60d24d2009-11-10 10:17:07 +010019#include <linux/kallsyms.h>
K.Prasad43203992009-06-01 23:46:20 +053020
Frederic Weisbeckerf60d24d2009-11-10 10:17:07 +010021#include <linux/perf_event.h>
22#include <linux/hw_breakpoint.h>
K.Prasad43203992009-06-01 23:46:20 +053023
Tejun Heo44ee6352010-02-17 10:50:50 +090024struct perf_event * __percpu *sample_hbp;
K.Prasad43203992009-06-01 23:46:20 +053025
Will Deacond8a84d32020-04-06 20:11:39 -070026static char ksym_name[KSYM_NAME_LEN] = "jiffies";
K.Prasad43203992009-06-01 23:46:20 +053027module_param_string(ksym, ksym_name, KSYM_NAME_LEN, S_IRUGO);
28MODULE_PARM_DESC(ksym, "Kernel symbol to monitor; this module will report any"
29 " write operations on the kernel symbol");
30
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +020031static void sample_hbp_handler(struct perf_event *bp,
Frederic Weisbeckerb326e952009-12-05 09:44:31 +010032 struct perf_sample_data *data,
33 struct pt_regs *regs)
K.Prasad43203992009-06-01 23:46:20 +053034{
35 printk(KERN_INFO "%s value is changed\n", ksym_name);
36 dump_stack();
37 printk(KERN_INFO "Dump stack from sample_hbp_handler\n");
38}
39
40static int __init hw_break_module_init(void)
41{
42 int ret;
Frederic Weisbeckerb326e952009-12-05 09:44:31 +010043 struct perf_event_attr attr;
Will Deacond8a84d32020-04-06 20:11:39 -070044 void *addr = __symbol_get(ksym_name);
45
46 if (!addr)
47 return -ENXIO;
K.Prasad43203992009-06-01 23:46:20 +053048
Frederic Weisbeckerb326e952009-12-05 09:44:31 +010049 hw_breakpoint_init(&attr);
Will Deacond8a84d32020-04-06 20:11:39 -070050 attr.bp_addr = (unsigned long)addr;
Frederic Weisbeckerdd1853c2009-11-27 04:55:54 +010051 attr.bp_len = HW_BREAKPOINT_LEN_4;
Will Deacon48003142020-04-06 20:11:36 -070052 attr.bp_type = HW_BREAKPOINT_W;
K.Prasad43203992009-06-01 23:46:20 +053053
Avi Kivity4dc0da82011-06-29 18:42:35 +030054 sample_hbp = register_wide_hw_breakpoint(&attr, sample_hbp_handler, NULL);
Tejun Heo44ee6352010-02-17 10:50:50 +090055 if (IS_ERR((void __force *)sample_hbp)) {
56 ret = PTR_ERR((void __force *)sample_hbp);
Frederic Weisbeckerf60d24d2009-11-10 10:17:07 +010057 goto fail;
Frederic Weisbeckerf60d24d2009-11-10 10:17:07 +010058 }
K.Prasad43203992009-06-01 23:46:20 +053059
Frederic Weisbeckerf60d24d2009-11-10 10:17:07 +010060 printk(KERN_INFO "HW Breakpoint for %s write installed\n", ksym_name);
K.Prasad43203992009-06-01 23:46:20 +053061
62 return 0;
Frederic Weisbeckerf60d24d2009-11-10 10:17:07 +010063
64fail:
65 printk(KERN_INFO "Breakpoint registration failed\n");
66
67 return ret;
K.Prasad43203992009-06-01 23:46:20 +053068}
69
70static void __exit hw_break_module_exit(void)
71{
Frederic Weisbeckerf60d24d2009-11-10 10:17:07 +010072 unregister_wide_hw_breakpoint(sample_hbp);
Will Deacond8a84d32020-04-06 20:11:39 -070073 symbol_put(ksym_name);
K.Prasad43203992009-06-01 23:46:20 +053074 printk(KERN_INFO "HW Breakpoint for %s write uninstalled\n", ksym_name);
75}
76
77module_init(hw_break_module_init);
78module_exit(hw_break_module_exit);
79
80MODULE_LICENSE("GPL");
81MODULE_AUTHOR("K.Prasad");
82MODULE_DESCRIPTION("ksym breakpoint");