blob: 5dc1bf3baa98b3a1598c8b957af0fef27b74017f [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Ananth N Mavinakayanahalli804defe2008-03-04 14:28:38 -08002/*
3 * kretprobe_example.c
4 *
5 * Here's a sample kernel module showing the use of return probes to
6 * report the return value and total time taken for probed function
7 * to run.
8 *
9 * usage: insmod kretprobe_example.ko func=<func_name>
10 *
Christian Braunereea11282020-08-19 12:46:54 +020011 * If no func_name is specified, kernel_clone is instrumented
Ananth N Mavinakayanahalli804defe2008-03-04 14:28:38 -080012 *
13 * For more information on theory of operation of kretprobes, see
Mauro Carvalho Chehab7f9a2352020-09-09 16:10:37 +020014 * Documentation/trace/kprobes.rst
Ananth N Mavinakayanahalli804defe2008-03-04 14:28:38 -080015 *
16 * Build and insert the kernel module as done in the kprobe example.
17 * You will see the trace data in /var/log/messages and on the console
18 * whenever the probed function returns. (Some messages may be suppressed
19 * if syslogd is configured to eliminate duplicate messages.)
20 */
21
22#include <linux/kernel.h>
23#include <linux/module.h>
24#include <linux/kprobes.h>
25#include <linux/ktime.h>
26#include <linux/limits.h>
Alexey Dobriyan8abf9192009-08-13 10:05:43 +000027#include <linux/sched.h>
Ananth N Mavinakayanahalli804defe2008-03-04 14:28:38 -080028
Christian Braunereea11282020-08-19 12:46:54 +020029static char func_name[NAME_MAX] = "kernel_clone";
Ananth N Mavinakayanahalli804defe2008-03-04 14:28:38 -080030module_param_string(func, func_name, NAME_MAX, S_IRUGO);
31MODULE_PARM_DESC(func, "Function to kretprobe; this module will report the"
32 " function's execution time");
33
34/* per-instance private data */
35struct my_data {
36 ktime_t entry_stamp;
37};
38
39/* Here we use the entry_hanlder to timestamp function entry */
40static int entry_handler(struct kretprobe_instance *ri, struct pt_regs *regs)
41{
42 struct my_data *data;
43
44 if (!current->mm)
45 return 1; /* Skip kernel threads */
46
47 data = (struct my_data *)ri->data;
48 data->entry_stamp = ktime_get();
49 return 0;
50}
Masami Hiramatsud85eaa92020-03-26 23:50:11 +090051NOKPROBE_SYMBOL(entry_handler);
Ananth N Mavinakayanahalli804defe2008-03-04 14:28:38 -080052
53/*
54 * Return-probe handler: Log the return value and duration. Duration may turn
55 * out to be zero consistently, depending upon the granularity of time
56 * accounting on the platform.
57 */
58static int ret_handler(struct kretprobe_instance *ri, struct pt_regs *regs)
59{
Huang Shijie57c24b22016-08-03 13:46:12 -070060 unsigned long retval = regs_return_value(regs);
Ananth N Mavinakayanahalli804defe2008-03-04 14:28:38 -080061 struct my_data *data = (struct my_data *)ri->data;
62 s64 delta;
63 ktime_t now;
64
65 now = ktime_get();
66 delta = ktime_to_ns(ktime_sub(now, data->entry_stamp));
Huang Shijie57c24b22016-08-03 13:46:12 -070067 pr_info("%s returned %lu and took %lld ns to execute\n",
Ananth N Mavinakayanahalli804defe2008-03-04 14:28:38 -080068 func_name, retval, (long long)delta);
69 return 0;
70}
Masami Hiramatsud85eaa92020-03-26 23:50:11 +090071NOKPROBE_SYMBOL(ret_handler);
Ananth N Mavinakayanahalli804defe2008-03-04 14:28:38 -080072
73static struct kretprobe my_kretprobe = {
74 .handler = ret_handler,
75 .entry_handler = entry_handler,
76 .data_size = sizeof(struct my_data),
77 /* Probe up to 20 instances concurrently. */
78 .maxactive = 20,
79};
80
81static int __init kretprobe_init(void)
82{
83 int ret;
84
85 my_kretprobe.kp.symbol_name = func_name;
86 ret = register_kretprobe(&my_kretprobe);
87 if (ret < 0) {
Huang Shijie61341312016-08-03 13:46:09 -070088 pr_err("register_kretprobe failed, returned %d\n", ret);
Ananth N Mavinakayanahalli804defe2008-03-04 14:28:38 -080089 return -1;
90 }
Huang Shijie61341312016-08-03 13:46:09 -070091 pr_info("Planted return probe at %s: %p\n",
Ananth N Mavinakayanahalli804defe2008-03-04 14:28:38 -080092 my_kretprobe.kp.symbol_name, my_kretprobe.kp.addr);
93 return 0;
94}
95
96static void __exit kretprobe_exit(void)
97{
98 unregister_kretprobe(&my_kretprobe);
Huang Shijie61341312016-08-03 13:46:09 -070099 pr_info("kretprobe at %p unregistered\n", my_kretprobe.kp.addr);
Ananth N Mavinakayanahalli804defe2008-03-04 14:28:38 -0800100
101 /* nmissed > 0 suggests that maxactive was set too low. */
Huang Shijie61341312016-08-03 13:46:09 -0700102 pr_info("Missed probing %d instances of %s\n",
Ananth N Mavinakayanahalli804defe2008-03-04 14:28:38 -0800103 my_kretprobe.nmissed, my_kretprobe.kp.symbol_name);
104}
105
106module_init(kretprobe_init)
107module_exit(kretprobe_exit)
108MODULE_LICENSE("GPL");