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);
165 #ifdef CONFIG_KRETPROBES
168 static int entry_handler(struct kretprobe_instance
*ri
, struct pt_regs
*regs
)
172 pr_err("kretprobe entry handler is preemptible\n");
174 krph_val
= (rand1
/ div_factor
);
178 static int return_handler(struct kretprobe_instance
*ri
, struct pt_regs
*regs
)
180 unsigned long ret
= regs_return_value(regs
);
184 pr_err("kretprobe return handler is preemptible\n");
186 if (ret
!= (rand1
/ div_factor
)) {
188 pr_err("incorrect value in kretprobe handler\n");
192 pr_err("call to kretprobe entry handler failed\n");
199 static struct kretprobe rp
= {
200 .handler
= return_handler
,
201 .entry_handler
= entry_handler
,
202 .kp
.symbol_name
= "kprobe_target"
205 static int test_kretprobe(void)
209 ret
= register_kretprobe(&rp
);
211 pr_err("register_kretprobe returned %d\n", ret
);
216 unregister_kretprobe(&rp
);
217 if (krph_val
!= rand1
) {
218 pr_err("kretprobe handler not called\n");
225 static int return_handler2(struct kretprobe_instance
*ri
, struct pt_regs
*regs
)
227 unsigned long ret
= regs_return_value(regs
);
229 if (ret
!= (rand1
/ div_factor
) + 1) {
231 pr_err("incorrect value in kretprobe handler2\n");
235 pr_err("call to kretprobe entry handler failed\n");
242 static struct kretprobe rp2
= {
243 .handler
= return_handler2
,
244 .entry_handler
= entry_handler
,
245 .kp
.symbol_name
= "kprobe_target2"
248 static int test_kretprobes(void)
251 struct kretprobe
*rps
[2] = {&rp
, &rp2
};
253 /* addr and flags should be cleard for reusing kprobe. */
256 ret
= register_kretprobes(rps
, 2);
258 pr_err("register_kretprobe returned %d\n", ret
);
264 if (krph_val
!= rand1
) {
265 pr_err("kretprobe handler not called\n");
270 ret
= target2(rand1
);
271 if (krph_val
!= rand1
) {
272 pr_err("kretprobe handler2 not called\n");
275 unregister_kretprobes(rps
, 2);
278 #endif /* CONFIG_KRETPROBES */
280 int init_test_probes(void)
284 target
= kprobe_target
;
285 target2
= kprobe_target2
;
288 rand1
= prandom_u32();
289 } while (rand1
<= div_factor
);
291 pr_info("started\n");
298 ret
= test_kprobes();
302 #ifdef CONFIG_KRETPROBES
304 ret
= test_kretprobe();
309 ret
= test_kretprobes();
312 #endif /* CONFIG_KRETPROBES */
315 pr_err("BUG: %d out of %d tests failed\n", errors
, num_tests
);
316 else if (handler_errors
)
317 pr_err("BUG: %d error(s) running handlers\n", handler_errors
);
319 pr_info("passed successfully\n");