xfs: xfs_buf: drop useless LIST_HEAD
[linux-2.6-block.git] / kernel / test_kprobes.c
CommitLineData
8c1c9356
AM
1/*
2 * test_kprobes.c - simple sanity test for *probes
3 *
4 * Copyright IBM Corp. 2008
5 *
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.
10 *
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.
15 */
16
4878b14b
FF
17#define pr_fmt(fmt) "Kprobe smoke test: " fmt
18
8c1c9356
AM
19#include <linux/kernel.h>
20#include <linux/kprobes.h>
21#include <linux/random.h>
22
23#define div_factor 3
24
2c7d662e 25static u32 rand1, preh_val, posth_val;
8c1c9356 26static int errors, handler_errors, num_tests;
8e114405 27static u32 (*target)(u32 value);
12da3b88 28static u32 (*target2)(u32 value);
8c1c9356
AM
29
30static noinline u32 kprobe_target(u32 value)
31{
8c1c9356
AM
32 return (value / div_factor);
33}
34
35static int kp_pre_handler(struct kprobe *p, struct pt_regs *regs)
36{
3539d091
MH
37 if (preemptible()) {
38 handler_errors++;
39 pr_err("pre-handler is preemptible\n");
40 }
8c1c9356
AM
41 preh_val = (rand1 / div_factor);
42 return 0;
43}
44
45static void kp_post_handler(struct kprobe *p, struct pt_regs *regs,
46 unsigned long flags)
47{
3539d091
MH
48 if (preemptible()) {
49 handler_errors++;
50 pr_err("post-handler is preemptible\n");
51 }
8c1c9356
AM
52 if (preh_val != (rand1 / div_factor)) {
53 handler_errors++;
4878b14b 54 pr_err("incorrect value in post_handler\n");
8c1c9356
AM
55 }
56 posth_val = preh_val + div_factor;
57}
58
59static struct kprobe kp = {
60 .symbol_name = "kprobe_target",
61 .pre_handler = kp_pre_handler,
62 .post_handler = kp_post_handler
63};
64
65static int test_kprobe(void)
66{
67 int ret;
68
69 ret = register_kprobe(&kp);
70 if (ret < 0) {
4878b14b 71 pr_err("register_kprobe returned %d\n", ret);
8c1c9356
AM
72 return ret;
73 }
74
8e114405 75 ret = target(rand1);
8c1c9356
AM
76 unregister_kprobe(&kp);
77
78 if (preh_val == 0) {
4878b14b 79 pr_err("kprobe pre_handler not called\n");
8c1c9356
AM
80 handler_errors++;
81 }
82
83 if (posth_val == 0) {
4878b14b 84 pr_err("kprobe post_handler not called\n");
8c1c9356
AM
85 handler_errors++;
86 }
87
88 return 0;
89}
90
12da3b88
MH
91static noinline u32 kprobe_target2(u32 value)
92{
93 return (value / div_factor) + 1;
94}
95
96static int kp_pre_handler2(struct kprobe *p, struct pt_regs *regs)
97{
98 preh_val = (rand1 / div_factor) + 1;
99 return 0;
100}
101
102static void kp_post_handler2(struct kprobe *p, struct pt_regs *regs,
103 unsigned long flags)
104{
105 if (preh_val != (rand1 / div_factor) + 1) {
106 handler_errors++;
4878b14b 107 pr_err("incorrect value in post_handler2\n");
12da3b88
MH
108 }
109 posth_val = preh_val + div_factor;
110}
111
112static struct kprobe kp2 = {
113 .symbol_name = "kprobe_target2",
114 .pre_handler = kp_pre_handler2,
115 .post_handler = kp_post_handler2
116};
117
118static int test_kprobes(void)
119{
120 int ret;
121 struct kprobe *kps[2] = {&kp, &kp2};
122
fd02e6f7
MH
123 /* addr and flags should be cleard for reusing kprobe. */
124 kp.addr = NULL;
125 kp.flags = 0;
12da3b88
MH
126 ret = register_kprobes(kps, 2);
127 if (ret < 0) {
4878b14b 128 pr_err("register_kprobes returned %d\n", ret);
12da3b88
MH
129 return ret;
130 }
131
132 preh_val = 0;
133 posth_val = 0;
134 ret = target(rand1);
135
136 if (preh_val == 0) {
4878b14b 137 pr_err("kprobe pre_handler not called\n");
12da3b88
MH
138 handler_errors++;
139 }
140
141 if (posth_val == 0) {
4878b14b 142 pr_err("kprobe post_handler not called\n");
12da3b88
MH
143 handler_errors++;
144 }
145
146 preh_val = 0;
147 posth_val = 0;
148 ret = target2(rand1);
149
150 if (preh_val == 0) {
4878b14b 151 pr_err("kprobe pre_handler2 not called\n");
12da3b88
MH
152 handler_errors++;
153 }
154
155 if (posth_val == 0) {
4878b14b 156 pr_err("kprobe post_handler2 not called\n");
12da3b88
MH
157 handler_errors++;
158 }
159
160 unregister_kprobes(kps, 2);
161 return 0;
162
163}
164
8c1c9356
AM
165#ifdef CONFIG_KRETPROBES
166static u32 krph_val;
167
f47cd9b5
AS
168static int entry_handler(struct kretprobe_instance *ri, struct pt_regs *regs)
169{
3539d091
MH
170 if (preemptible()) {
171 handler_errors++;
172 pr_err("kretprobe entry handler is preemptible\n");
173 }
f47cd9b5
AS
174 krph_val = (rand1 / div_factor);
175 return 0;
176}
177
8c1c9356
AM
178static int return_handler(struct kretprobe_instance *ri, struct pt_regs *regs)
179{
180 unsigned long ret = regs_return_value(regs);
181
3539d091
MH
182 if (preemptible()) {
183 handler_errors++;
184 pr_err("kretprobe return handler is preemptible\n");
185 }
8c1c9356
AM
186 if (ret != (rand1 / div_factor)) {
187 handler_errors++;
4878b14b 188 pr_err("incorrect value in kretprobe handler\n");
8c1c9356 189 }
f47cd9b5
AS
190 if (krph_val == 0) {
191 handler_errors++;
4878b14b 192 pr_err("call to kretprobe entry handler failed\n");
f47cd9b5 193 }
8c1c9356 194
f47cd9b5 195 krph_val = rand1;
8c1c9356
AM
196 return 0;
197}
198
199static struct kretprobe rp = {
200 .handler = return_handler,
f47cd9b5 201 .entry_handler = entry_handler,
8c1c9356
AM
202 .kp.symbol_name = "kprobe_target"
203};
204
205static int test_kretprobe(void)
206{
207 int ret;
208
209 ret = register_kretprobe(&rp);
210 if (ret < 0) {
4878b14b 211 pr_err("register_kretprobe returned %d\n", ret);
8c1c9356
AM
212 return ret;
213 }
214
8e114405 215 ret = target(rand1);
8c1c9356 216 unregister_kretprobe(&rp);
f47cd9b5 217 if (krph_val != rand1) {
4878b14b 218 pr_err("kretprobe handler not called\n");
8c1c9356
AM
219 handler_errors++;
220 }
221
222 return 0;
223}
12da3b88
MH
224
225static int return_handler2(struct kretprobe_instance *ri, struct pt_regs *regs)
226{
227 unsigned long ret = regs_return_value(regs);
228
229 if (ret != (rand1 / div_factor) + 1) {
230 handler_errors++;
4878b14b 231 pr_err("incorrect value in kretprobe handler2\n");
12da3b88
MH
232 }
233 if (krph_val == 0) {
234 handler_errors++;
4878b14b 235 pr_err("call to kretprobe entry handler failed\n");
12da3b88
MH
236 }
237
238 krph_val = rand1;
239 return 0;
240}
241
242static struct kretprobe rp2 = {
243 .handler = return_handler2,
244 .entry_handler = entry_handler,
245 .kp.symbol_name = "kprobe_target2"
246};
247
248static int test_kretprobes(void)
249{
250 int ret;
251 struct kretprobe *rps[2] = {&rp, &rp2};
252
fd02e6f7
MH
253 /* addr and flags should be cleard for reusing kprobe. */
254 rp.kp.addr = NULL;
255 rp.kp.flags = 0;
12da3b88
MH
256 ret = register_kretprobes(rps, 2);
257 if (ret < 0) {
4878b14b 258 pr_err("register_kretprobe returned %d\n", ret);
12da3b88
MH
259 return ret;
260 }
261
262 krph_val = 0;
263 ret = target(rand1);
264 if (krph_val != rand1) {
4878b14b 265 pr_err("kretprobe handler not called\n");
12da3b88
MH
266 handler_errors++;
267 }
268
269 krph_val = 0;
270 ret = target2(rand1);
271 if (krph_val != rand1) {
4878b14b 272 pr_err("kretprobe handler2 not called\n");
12da3b88
MH
273 handler_errors++;
274 }
275 unregister_kretprobes(rps, 2);
276 return 0;
277}
8c1c9356
AM
278#endif /* CONFIG_KRETPROBES */
279
280int init_test_probes(void)
281{
282 int ret;
283
8e114405 284 target = kprobe_target;
12da3b88 285 target2 = kprobe_target2;
8e114405 286
8c1c9356 287 do {
6d65df33 288 rand1 = prandom_u32();
8c1c9356
AM
289 } while (rand1 <= div_factor);
290
4878b14b 291 pr_info("started\n");
8c1c9356
AM
292 num_tests++;
293 ret = test_kprobe();
294 if (ret < 0)
295 errors++;
296
12da3b88
MH
297 num_tests++;
298 ret = test_kprobes();
299 if (ret < 0)
300 errors++;
301
8c1c9356
AM
302#ifdef CONFIG_KRETPROBES
303 num_tests++;
304 ret = test_kretprobe();
305 if (ret < 0)
306 errors++;
12da3b88
MH
307
308 num_tests++;
309 ret = test_kretprobes();
310 if (ret < 0)
311 errors++;
8c1c9356
AM
312#endif /* CONFIG_KRETPROBES */
313
314 if (errors)
4878b14b 315 pr_err("BUG: %d out of %d tests failed\n", errors, num_tests);
8c1c9356 316 else if (handler_errors)
4878b14b 317 pr_err("BUG: %d error(s) running handlers\n", handler_errors);
8c1c9356 318 else
4878b14b 319 pr_info("passed successfully\n");
8c1c9356
AM
320
321 return 0;
322}