2 * test_kprobes.c - simple sanity test for *probes
4 * Copyright IBM Corp. 2008
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it would be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
14 * the GNU General Public License for more details.
17 #define pr_fmt(fmt) "Kprobe smoke test: " fmt
19 #include <linux/kernel.h>
20 #include <linux/kprobes.h>
21 #include <linux/random.h>
25 static u32 rand1, preh_val, posth_val;
26 static int errors, handler_errors, num_tests;
27 static u32 (*target)(u32 value);
28 static u32 (*target2)(u32 value);
30 static noinline u32 kprobe_target(u32 value)
32 return (value / div_factor);
35 static int kp_pre_handler(struct kprobe *p, struct pt_regs *regs)
39 pr_err("pre-handler is preemptible\n");
41 preh_val = (rand1 / div_factor);
45 static void kp_post_handler(struct kprobe *p, struct pt_regs *regs,
50 pr_err("post-handler is preemptible\n");
52 if (preh_val != (rand1 / div_factor)) {
54 pr_err("incorrect value in post_handler\n");
56 posth_val = preh_val + div_factor;
59 static struct kprobe kp = {
60 .symbol_name = "kprobe_target",
61 .pre_handler = kp_pre_handler,
62 .post_handler = kp_post_handler
65 static int test_kprobe(void)
69 ret = register_kprobe(&kp);
71 pr_err("register_kprobe returned %d\n", ret);
76 unregister_kprobe(&kp);
79 pr_err("kprobe pre_handler not called\n");
84 pr_err("kprobe post_handler not called\n");
91 static noinline u32 kprobe_target2(u32 value)
93 return (value / div_factor) + 1;
96 static int kp_pre_handler2(struct kprobe *p, struct pt_regs *regs)
98 preh_val = (rand1 / div_factor) + 1;
102 static void kp_post_handler2(struct kprobe *p, struct pt_regs *regs,
105 if (preh_val != (rand1 / div_factor) + 1) {
107 pr_err("incorrect value in post_handler2\n");
109 posth_val = preh_val + div_factor;
112 static struct kprobe kp2 = {
113 .symbol_name = "kprobe_target2",
114 .pre_handler = kp_pre_handler2,
115 .post_handler = kp_post_handler2
118 static int test_kprobes(void)
121 struct kprobe *kps[2] = {&kp, &kp2};
123 /* addr and flags should be cleard for reusing kprobe. */
126 ret = register_kprobes(kps, 2);
128 pr_err("register_kprobes returned %d\n", ret);
137 pr_err("kprobe pre_handler not called\n");
141 if (posth_val == 0) {
142 pr_err("kprobe post_handler not called\n");
148 ret = target2(rand1);
151 pr_err("kprobe pre_handler2 not called\n");
155 if (posth_val == 0) {
156 pr_err("kprobe post_handler2 not called\n");
160 unregister_kprobes(kps, 2);
168 static u32 j_kprobe_target(u32 value)
172 pr_err("jprobe-handler is preemptible\n");
174 if (value != rand1) {
176 pr_err("incorrect value in jprobe handler\n");
184 static struct jprobe jp = {
185 .entry = j_kprobe_target,
186 .kp.symbol_name = "kprobe_target"
189 static int test_jprobe(void)
193 ret = register_jprobe(&jp);
195 pr_err("register_jprobe returned %d\n", ret);
200 unregister_jprobe(&jp);
202 pr_err("jprobe handler not called\n");
209 static struct jprobe jp2 = {
210 .entry = j_kprobe_target,
211 .kp.symbol_name = "kprobe_target2"
214 static int test_jprobes(void)
217 struct jprobe *jps[2] = {&jp, &jp2};
219 /* addr and flags should be cleard for reusing kprobe. */
222 ret = register_jprobes(jps, 2);
224 pr_err("register_jprobes returned %d\n", ret);
231 pr_err("jprobe handler not called\n");
236 ret = target2(rand1);
238 pr_err("jprobe handler2 not called\n");
241 unregister_jprobes(jps, 2);
246 #define test_jprobe() (0)
247 #define test_jprobes() (0)
249 #ifdef CONFIG_KRETPROBES
252 static int entry_handler(struct kretprobe_instance *ri, struct pt_regs *regs)
256 pr_err("kretprobe entry handler is preemptible\n");
258 krph_val = (rand1 / div_factor);
262 static int return_handler(struct kretprobe_instance *ri, struct pt_regs *regs)
264 unsigned long ret = regs_return_value(regs);
268 pr_err("kretprobe return handler is preemptible\n");
270 if (ret != (rand1 / div_factor)) {
272 pr_err("incorrect value in kretprobe handler\n");
276 pr_err("call to kretprobe entry handler failed\n");
283 static struct kretprobe rp = {
284 .handler = return_handler,
285 .entry_handler = entry_handler,
286 .kp.symbol_name = "kprobe_target"
289 static int test_kretprobe(void)
293 ret = register_kretprobe(&rp);
295 pr_err("register_kretprobe returned %d\n", ret);
300 unregister_kretprobe(&rp);
301 if (krph_val != rand1) {
302 pr_err("kretprobe handler not called\n");
309 static int return_handler2(struct kretprobe_instance *ri, struct pt_regs *regs)
311 unsigned long ret = regs_return_value(regs);
313 if (ret != (rand1 / div_factor) + 1) {
315 pr_err("incorrect value in kretprobe handler2\n");
319 pr_err("call to kretprobe entry handler failed\n");
326 static struct kretprobe rp2 = {
327 .handler = return_handler2,
328 .entry_handler = entry_handler,
329 .kp.symbol_name = "kprobe_target2"
332 static int test_kretprobes(void)
335 struct kretprobe *rps[2] = {&rp, &rp2};
337 /* addr and flags should be cleard for reusing kprobe. */
340 ret = register_kretprobes(rps, 2);
342 pr_err("register_kretprobe returned %d\n", ret);
348 if (krph_val != rand1) {
349 pr_err("kretprobe handler not called\n");
354 ret = target2(rand1);
355 if (krph_val != rand1) {
356 pr_err("kretprobe handler2 not called\n");
359 unregister_kretprobes(rps, 2);
362 #endif /* CONFIG_KRETPROBES */
364 int init_test_probes(void)
368 target = kprobe_target;
369 target2 = kprobe_target2;
372 rand1 = prandom_u32();
373 } while (rand1 <= div_factor);
375 pr_info("started\n");
382 ret = test_kprobes();
392 ret = test_jprobes();
396 #ifdef CONFIG_KRETPROBES
398 ret = test_kretprobe();
403 ret = test_kretprobes();
406 #endif /* CONFIG_KRETPROBES */
409 pr_err("BUG: %d out of %d tests failed\n", errors, num_tests);
410 else if (handler_errors)
411 pr_err("BUG: %d error(s) running handlers\n", handler_errors);
413 pr_info("passed successfully\n");