]>
Commit | Line | Data |
---|---|---|
413d37d1 | 1 | /* |
77b44d1b | 2 | * Kprobes-based tracing events |
413d37d1 MH |
3 | * |
4 | * Created by Masami Hiramatsu <[email protected]> | |
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 version 2 as | |
8 | * published by the Free Software Foundation. | |
9 | * | |
10 | * This program is distributed in the hope that it will be useful, | |
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | * GNU General Public License for more details. | |
14 | * | |
15 | * You should have received a copy of the GNU General Public License | |
16 | * along with this program; if not, write to the Free Software | |
17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
18 | */ | |
19 | ||
20 | #include <linux/module.h> | |
21 | #include <linux/uaccess.h> | |
413d37d1 | 22 | |
8ab83f56 | 23 | #include "trace_probe.h" |
1ff511e3 | 24 | |
8ab83f56 | 25 | #define KPROBE_EVENT_SYSTEM "kprobes" |
e09c8614 | 26 | |
413d37d1 | 27 | /** |
77b44d1b | 28 | * Kprobe event core functions |
413d37d1 | 29 | */ |
c31ffb3f | 30 | struct trace_kprobe { |
413d37d1 | 31 | struct list_head list; |
4a846b44 | 32 | struct kretprobe rp; /* Use rp.kp for kprobe use */ |
a7636d9e | 33 | unsigned long __percpu *nhit; |
413d37d1 | 34 | const char *symbol; /* symbol name */ |
c31ffb3f | 35 | struct trace_probe tp; |
413d37d1 MH |
36 | }; |
37 | ||
c31ffb3f NK |
38 | #define SIZEOF_TRACE_KPROBE(n) \ |
39 | (offsetof(struct trace_kprobe, tp.args) + \ | |
eca0d916 | 40 | (sizeof(struct probe_arg) * (n))) |
a82378d8 | 41 | |
93ccae7a | 42 | |
3da0f180 | 43 | static nokprobe_inline bool trace_kprobe_is_return(struct trace_kprobe *tk) |
413d37d1 | 44 | { |
c31ffb3f | 45 | return tk->rp.handler != NULL; |
413d37d1 MH |
46 | } |
47 | ||
3da0f180 | 48 | static nokprobe_inline const char *trace_kprobe_symbol(struct trace_kprobe *tk) |
413d37d1 | 49 | { |
c31ffb3f | 50 | return tk->symbol ? tk->symbol : "unknown"; |
413d37d1 MH |
51 | } |
52 | ||
3da0f180 | 53 | static nokprobe_inline unsigned long trace_kprobe_offset(struct trace_kprobe *tk) |
61424318 | 54 | { |
c31ffb3f | 55 | return tk->rp.kp.offset; |
61424318 MH |
56 | } |
57 | ||
3da0f180 | 58 | static nokprobe_inline bool trace_kprobe_has_gone(struct trace_kprobe *tk) |
61424318 | 59 | { |
c31ffb3f | 60 | return !!(kprobe_gone(&tk->rp.kp)); |
61424318 MH |
61 | } |
62 | ||
3da0f180 | 63 | static nokprobe_inline bool trace_kprobe_within_module(struct trace_kprobe *tk, |
c31ffb3f | 64 | struct module *mod) |
61424318 MH |
65 | { |
66 | int len = strlen(mod->name); | |
c31ffb3f | 67 | const char *name = trace_kprobe_symbol(tk); |
61424318 MH |
68 | return strncmp(mod->name, name, len) == 0 && name[len] == ':'; |
69 | } | |
70 | ||
3da0f180 | 71 | static nokprobe_inline bool trace_kprobe_is_on_module(struct trace_kprobe *tk) |
61424318 | 72 | { |
c31ffb3f | 73 | return !!strchr(trace_kprobe_symbol(tk), ':'); |
61424318 MH |
74 | } |
75 | ||
c31ffb3f NK |
76 | static int register_kprobe_event(struct trace_kprobe *tk); |
77 | static int unregister_kprobe_event(struct trace_kprobe *tk); | |
413d37d1 MH |
78 | |
79 | static DEFINE_MUTEX(probe_lock); | |
80 | static LIST_HEAD(probe_list); | |
81 | ||
50d78056 MH |
82 | static int kprobe_dispatcher(struct kprobe *kp, struct pt_regs *regs); |
83 | static int kretprobe_dispatcher(struct kretprobe_instance *ri, | |
84 | struct pt_regs *regs); | |
85 | ||
1301a44e NK |
86 | /* Memory fetching by symbol */ |
87 | struct symbol_cache { | |
88 | char *symbol; | |
89 | long offset; | |
90 | unsigned long addr; | |
91 | }; | |
92 | ||
93 | unsigned long update_symbol_cache(struct symbol_cache *sc) | |
94 | { | |
95 | sc->addr = (unsigned long)kallsyms_lookup_name(sc->symbol); | |
96 | ||
97 | if (sc->addr) | |
98 | sc->addr += sc->offset; | |
99 | ||
100 | return sc->addr; | |
101 | } | |
102 | ||
103 | void free_symbol_cache(struct symbol_cache *sc) | |
104 | { | |
105 | kfree(sc->symbol); | |
106 | kfree(sc); | |
107 | } | |
108 | ||
109 | struct symbol_cache *alloc_symbol_cache(const char *sym, long offset) | |
110 | { | |
111 | struct symbol_cache *sc; | |
112 | ||
113 | if (!sym || strlen(sym) == 0) | |
114 | return NULL; | |
115 | ||
116 | sc = kzalloc(sizeof(struct symbol_cache), GFP_KERNEL); | |
117 | if (!sc) | |
118 | return NULL; | |
119 | ||
120 | sc->symbol = kstrdup(sym, GFP_KERNEL); | |
121 | if (!sc->symbol) { | |
122 | kfree(sc); | |
123 | return NULL; | |
124 | } | |
125 | sc->offset = offset; | |
126 | update_symbol_cache(sc); | |
127 | ||
128 | return sc; | |
129 | } | |
130 | ||
3fd996a2 NK |
131 | /* |
132 | * Kprobes-specific fetch functions | |
133 | */ | |
134 | #define DEFINE_FETCH_stack(type) \ | |
3da0f180 | 135 | static void FETCH_FUNC_NAME(stack, type)(struct pt_regs *regs, \ |
3fd996a2 NK |
136 | void *offset, void *dest) \ |
137 | { \ | |
138 | *(type *)dest = (type)regs_get_kernel_stack_nth(regs, \ | |
139 | (unsigned int)((unsigned long)offset)); \ | |
3da0f180 MH |
140 | } \ |
141 | NOKPROBE_SYMBOL(FETCH_FUNC_NAME(stack, type)); | |
142 | ||
3fd996a2 NK |
143 | DEFINE_BASIC_FETCH_FUNCS(stack) |
144 | /* No string on the stack entry */ | |
145 | #define fetch_stack_string NULL | |
146 | #define fetch_stack_string_size NULL | |
147 | ||
5baaa59e | 148 | #define DEFINE_FETCH_memory(type) \ |
3da0f180 | 149 | static void FETCH_FUNC_NAME(memory, type)(struct pt_regs *regs, \ |
5baaa59e NK |
150 | void *addr, void *dest) \ |
151 | { \ | |
152 | type retval; \ | |
153 | if (probe_kernel_address(addr, retval)) \ | |
154 | *(type *)dest = 0; \ | |
155 | else \ | |
156 | *(type *)dest = retval; \ | |
3da0f180 MH |
157 | } \ |
158 | NOKPROBE_SYMBOL(FETCH_FUNC_NAME(memory, type)); | |
159 | ||
5baaa59e NK |
160 | DEFINE_BASIC_FETCH_FUNCS(memory) |
161 | /* | |
162 | * Fetch a null-terminated string. Caller MUST set *(u32 *)dest with max | |
163 | * length and relative data location. | |
164 | */ | |
3da0f180 MH |
165 | static void FETCH_FUNC_NAME(memory, string)(struct pt_regs *regs, |
166 | void *addr, void *dest) | |
5baaa59e | 167 | { |
5baaa59e NK |
168 | int maxlen = get_rloc_len(*(u32 *)dest); |
169 | u8 *dst = get_rloc_data(dest); | |
1a6877b9 | 170 | long ret; |
5baaa59e NK |
171 | |
172 | if (!maxlen) | |
173 | return; | |
174 | ||
175 | /* | |
176 | * Try to get string again, since the string can be changed while | |
177 | * probing. | |
178 | */ | |
1a6877b9 | 179 | ret = strncpy_from_unsafe(dst, addr, maxlen); |
5baaa59e NK |
180 | |
181 | if (ret < 0) { /* Failed to fetch string */ | |
1a6877b9 | 182 | dst[0] = '\0'; |
5baaa59e NK |
183 | *(u32 *)dest = make_data_rloc(0, get_rloc_offs(*(u32 *)dest)); |
184 | } else { | |
1a6877b9 | 185 | *(u32 *)dest = make_data_rloc(ret, get_rloc_offs(*(u32 *)dest)); |
5baaa59e NK |
186 | } |
187 | } | |
3da0f180 | 188 | NOKPROBE_SYMBOL(FETCH_FUNC_NAME(memory, string)); |
5baaa59e NK |
189 | |
190 | /* Return the length of string -- including null terminal byte */ | |
3da0f180 MH |
191 | static void FETCH_FUNC_NAME(memory, string_size)(struct pt_regs *regs, |
192 | void *addr, void *dest) | |
5baaa59e NK |
193 | { |
194 | mm_segment_t old_fs; | |
195 | int ret, len = 0; | |
196 | u8 c; | |
197 | ||
198 | old_fs = get_fs(); | |
199 | set_fs(KERNEL_DS); | |
200 | pagefault_disable(); | |
201 | ||
202 | do { | |
203 | ret = __copy_from_user_inatomic(&c, (u8 *)addr + len, 1); | |
204 | len++; | |
205 | } while (c && ret == 0 && len < MAX_STRING_SIZE); | |
206 | ||
207 | pagefault_enable(); | |
208 | set_fs(old_fs); | |
209 | ||
210 | if (ret < 0) /* Failed to check the length */ | |
211 | *(u32 *)dest = 0; | |
212 | else | |
213 | *(u32 *)dest = len; | |
214 | } | |
3da0f180 | 215 | NOKPROBE_SYMBOL(FETCH_FUNC_NAME(memory, string_size)); |
5baaa59e | 216 | |
1301a44e | 217 | #define DEFINE_FETCH_symbol(type) \ |
3da0f180 | 218 | void FETCH_FUNC_NAME(symbol, type)(struct pt_regs *regs, void *data, void *dest)\ |
1301a44e NK |
219 | { \ |
220 | struct symbol_cache *sc = data; \ | |
221 | if (sc->addr) \ | |
222 | fetch_memory_##type(regs, (void *)sc->addr, dest); \ | |
223 | else \ | |
224 | *(type *)dest = 0; \ | |
3da0f180 MH |
225 | } \ |
226 | NOKPROBE_SYMBOL(FETCH_FUNC_NAME(symbol, type)); | |
227 | ||
1301a44e NK |
228 | DEFINE_BASIC_FETCH_FUNCS(symbol) |
229 | DEFINE_FETCH_symbol(string) | |
230 | DEFINE_FETCH_symbol(string_size) | |
231 | ||
b7e0bf34 NK |
232 | /* kprobes don't support file_offset fetch methods */ |
233 | #define fetch_file_offset_u8 NULL | |
234 | #define fetch_file_offset_u16 NULL | |
235 | #define fetch_file_offset_u32 NULL | |
236 | #define fetch_file_offset_u64 NULL | |
237 | #define fetch_file_offset_string NULL | |
238 | #define fetch_file_offset_string_size NULL | |
239 | ||
34fee3a1 | 240 | /* Fetch type information table */ |
d9a16d3a | 241 | static const struct fetch_type kprobes_fetch_type_table[] = { |
34fee3a1 NK |
242 | /* Special types */ |
243 | [FETCH_TYPE_STRING] = __ASSIGN_FETCH_TYPE("string", string, string, | |
244 | sizeof(u32), 1, "__data_loc char[]"), | |
245 | [FETCH_TYPE_STRSIZE] = __ASSIGN_FETCH_TYPE("string_size", u32, | |
246 | string_size, sizeof(u32), 0, "u32"), | |
247 | /* Basic types */ | |
248 | ASSIGN_FETCH_TYPE(u8, u8, 0), | |
249 | ASSIGN_FETCH_TYPE(u16, u16, 0), | |
250 | ASSIGN_FETCH_TYPE(u32, u32, 0), | |
251 | ASSIGN_FETCH_TYPE(u64, u64, 0), | |
252 | ASSIGN_FETCH_TYPE(s8, u8, 1), | |
253 | ASSIGN_FETCH_TYPE(s16, u16, 1), | |
254 | ASSIGN_FETCH_TYPE(s32, u32, 1), | |
255 | ASSIGN_FETCH_TYPE(s64, u64, 1), | |
256 | ||
257 | ASSIGN_FETCH_TYPE_END | |
258 | }; | |
259 | ||
4a846b44 MH |
260 | /* |
261 | * Allocate new trace_probe and initialize it (including kprobes). | |
262 | */ | |
c31ffb3f | 263 | static struct trace_kprobe *alloc_trace_kprobe(const char *group, |
f52487e9 | 264 | const char *event, |
4a846b44 MH |
265 | void *addr, |
266 | const char *symbol, | |
267 | unsigned long offs, | |
3a6b7666 | 268 | int nargs, bool is_return) |
413d37d1 | 269 | { |
c31ffb3f | 270 | struct trace_kprobe *tk; |
6f3cf440 | 271 | int ret = -ENOMEM; |
413d37d1 | 272 | |
c31ffb3f NK |
273 | tk = kzalloc(SIZEOF_TRACE_KPROBE(nargs), GFP_KERNEL); |
274 | if (!tk) | |
6f3cf440 | 275 | return ERR_PTR(ret); |
413d37d1 | 276 | |
a7636d9e MKL |
277 | tk->nhit = alloc_percpu(unsigned long); |
278 | if (!tk->nhit) | |
279 | goto error; | |
280 | ||
413d37d1 | 281 | if (symbol) { |
c31ffb3f NK |
282 | tk->symbol = kstrdup(symbol, GFP_KERNEL); |
283 | if (!tk->symbol) | |
413d37d1 | 284 | goto error; |
c31ffb3f NK |
285 | tk->rp.kp.symbol_name = tk->symbol; |
286 | tk->rp.kp.offset = offs; | |
4a846b44 | 287 | } else |
c31ffb3f | 288 | tk->rp.kp.addr = addr; |
4a846b44 MH |
289 | |
290 | if (is_return) | |
c31ffb3f | 291 | tk->rp.handler = kretprobe_dispatcher; |
4a846b44 | 292 | else |
c31ffb3f | 293 | tk->rp.kp.pre_handler = kprobe_dispatcher; |
4a846b44 | 294 | |
da34634f | 295 | if (!event || !is_good_name(event)) { |
6f3cf440 | 296 | ret = -EINVAL; |
4263565d | 297 | goto error; |
6f3cf440 MH |
298 | } |
299 | ||
c31ffb3f NK |
300 | tk->tp.call.class = &tk->tp.class; |
301 | tk->tp.call.name = kstrdup(event, GFP_KERNEL); | |
302 | if (!tk->tp.call.name) | |
4263565d | 303 | goto error; |
413d37d1 | 304 | |
da34634f | 305 | if (!group || !is_good_name(group)) { |
6f3cf440 | 306 | ret = -EINVAL; |
f52487e9 | 307 | goto error; |
6f3cf440 MH |
308 | } |
309 | ||
c31ffb3f NK |
310 | tk->tp.class.system = kstrdup(group, GFP_KERNEL); |
311 | if (!tk->tp.class.system) | |
f52487e9 MH |
312 | goto error; |
313 | ||
c31ffb3f NK |
314 | INIT_LIST_HEAD(&tk->list); |
315 | INIT_LIST_HEAD(&tk->tp.files); | |
316 | return tk; | |
413d37d1 | 317 | error: |
c31ffb3f NK |
318 | kfree(tk->tp.call.name); |
319 | kfree(tk->symbol); | |
a7636d9e | 320 | free_percpu(tk->nhit); |
c31ffb3f | 321 | kfree(tk); |
6f3cf440 | 322 | return ERR_PTR(ret); |
413d37d1 MH |
323 | } |
324 | ||
c31ffb3f | 325 | static void free_trace_kprobe(struct trace_kprobe *tk) |
413d37d1 MH |
326 | { |
327 | int i; | |
328 | ||
c31ffb3f NK |
329 | for (i = 0; i < tk->tp.nr_args; i++) |
330 | traceprobe_free_probe_arg(&tk->tp.args[i]); | |
413d37d1 | 331 | |
c31ffb3f NK |
332 | kfree(tk->tp.call.class->system); |
333 | kfree(tk->tp.call.name); | |
334 | kfree(tk->symbol); | |
a7636d9e | 335 | free_percpu(tk->nhit); |
c31ffb3f | 336 | kfree(tk); |
413d37d1 MH |
337 | } |
338 | ||
c31ffb3f NK |
339 | static struct trace_kprobe *find_trace_kprobe(const char *event, |
340 | const char *group) | |
413d37d1 | 341 | { |
c31ffb3f | 342 | struct trace_kprobe *tk; |
413d37d1 | 343 | |
c31ffb3f | 344 | list_for_each_entry(tk, &probe_list, list) |
687fcc4a | 345 | if (strcmp(trace_event_name(&tk->tp.call), event) == 0 && |
c31ffb3f NK |
346 | strcmp(tk->tp.call.class->system, group) == 0) |
347 | return tk; | |
413d37d1 MH |
348 | return NULL; |
349 | } | |
350 | ||
41a7dd42 MH |
351 | /* |
352 | * Enable trace_probe | |
353 | * if the file is NULL, enable "perf" handler, or enable "trace" handler. | |
354 | */ | |
355 | static int | |
7f1d2f82 | 356 | enable_trace_kprobe(struct trace_kprobe *tk, struct trace_event_file *file) |
1538f888 MH |
357 | { |
358 | int ret = 0; | |
359 | ||
41a7dd42 | 360 | if (file) { |
b04d52e3 ON |
361 | struct event_file_link *link; |
362 | ||
363 | link = kmalloc(sizeof(*link), GFP_KERNEL); | |
364 | if (!link) { | |
41a7dd42 | 365 | ret = -ENOMEM; |
3fe3d619 | 366 | goto out; |
41a7dd42 | 367 | } |
41a7dd42 | 368 | |
b04d52e3 | 369 | link->file = file; |
c31ffb3f | 370 | list_add_tail_rcu(&link->list, &tk->tp.files); |
41a7dd42 | 371 | |
c31ffb3f | 372 | tk->tp.flags |= TP_FLAG_TRACE; |
41a7dd42 | 373 | } else |
c31ffb3f | 374 | tk->tp.flags |= TP_FLAG_PROFILE; |
41a7dd42 | 375 | |
c31ffb3f NK |
376 | if (trace_probe_is_registered(&tk->tp) && !trace_kprobe_has_gone(tk)) { |
377 | if (trace_kprobe_is_return(tk)) | |
378 | ret = enable_kretprobe(&tk->rp); | |
1538f888 | 379 | else |
c31ffb3f | 380 | ret = enable_kprobe(&tk->rp.kp); |
1538f888 | 381 | } |
3fe3d619 | 382 | out: |
1538f888 MH |
383 | return ret; |
384 | } | |
385 | ||
41a7dd42 MH |
386 | /* |
387 | * Disable trace_probe | |
388 | * if the file is NULL, disable "perf" handler, or disable "trace" handler. | |
389 | */ | |
390 | static int | |
7f1d2f82 | 391 | disable_trace_kprobe(struct trace_kprobe *tk, struct trace_event_file *file) |
1538f888 | 392 | { |
a232e270 MH |
393 | struct event_file_link *link = NULL; |
394 | int wait = 0; | |
41a7dd42 MH |
395 | int ret = 0; |
396 | ||
41a7dd42 | 397 | if (file) { |
c31ffb3f | 398 | link = find_event_file_link(&tk->tp, file); |
b04d52e3 | 399 | if (!link) { |
41a7dd42 | 400 | ret = -EINVAL; |
3fe3d619 | 401 | goto out; |
41a7dd42 MH |
402 | } |
403 | ||
b04d52e3 | 404 | list_del_rcu(&link->list); |
a232e270 | 405 | wait = 1; |
c31ffb3f | 406 | if (!list_empty(&tk->tp.files)) |
b04d52e3 | 407 | goto out; |
41a7dd42 | 408 | |
c31ffb3f | 409 | tk->tp.flags &= ~TP_FLAG_TRACE; |
41a7dd42 | 410 | } else |
c31ffb3f | 411 | tk->tp.flags &= ~TP_FLAG_PROFILE; |
41a7dd42 | 412 | |
c31ffb3f NK |
413 | if (!trace_probe_is_enabled(&tk->tp) && trace_probe_is_registered(&tk->tp)) { |
414 | if (trace_kprobe_is_return(tk)) | |
415 | disable_kretprobe(&tk->rp); | |
1538f888 | 416 | else |
c31ffb3f | 417 | disable_kprobe(&tk->rp.kp); |
a232e270 | 418 | wait = 1; |
1538f888 | 419 | } |
3fe3d619 | 420 | out: |
a232e270 MH |
421 | if (wait) { |
422 | /* | |
423 | * Synchronize with kprobe_trace_func/kretprobe_trace_func | |
424 | * to ensure disabled (all running handlers are finished). | |
425 | * This is not only for kfree(), but also the caller, | |
426 | * trace_remove_event_call() supposes it for releasing | |
427 | * event_call related objects, which will be accessed in | |
428 | * the kprobe_trace_func/kretprobe_trace_func. | |
429 | */ | |
430 | synchronize_sched(); | |
431 | kfree(link); /* Ignored if link == NULL */ | |
432 | } | |
433 | ||
41a7dd42 | 434 | return ret; |
1538f888 MH |
435 | } |
436 | ||
61424318 | 437 | /* Internal register function - just handle k*probes and flags */ |
c31ffb3f | 438 | static int __register_trace_kprobe(struct trace_kprobe *tk) |
413d37d1 | 439 | { |
7f6878a3 | 440 | int i, ret; |
61424318 | 441 | |
c31ffb3f | 442 | if (trace_probe_is_registered(&tk->tp)) |
61424318 MH |
443 | return -EINVAL; |
444 | ||
c31ffb3f NK |
445 | for (i = 0; i < tk->tp.nr_args; i++) |
446 | traceprobe_update_arg(&tk->tp.args[i]); | |
7f6878a3 | 447 | |
61424318 | 448 | /* Set/clear disabled flag according to tp->flag */ |
c31ffb3f NK |
449 | if (trace_probe_is_enabled(&tk->tp)) |
450 | tk->rp.kp.flags &= ~KPROBE_FLAG_DISABLED; | |
61424318 | 451 | else |
c31ffb3f | 452 | tk->rp.kp.flags |= KPROBE_FLAG_DISABLED; |
61424318 | 453 | |
c31ffb3f NK |
454 | if (trace_kprobe_is_return(tk)) |
455 | ret = register_kretprobe(&tk->rp); | |
413d37d1 | 456 | else |
c31ffb3f | 457 | ret = register_kprobe(&tk->rp.kp); |
61424318 MH |
458 | |
459 | if (ret == 0) | |
c31ffb3f | 460 | tk->tp.flags |= TP_FLAG_REGISTERED; |
61424318 | 461 | else { |
a395d6a7 JP |
462 | pr_warn("Could not insert probe at %s+%lu: %d\n", |
463 | trace_kprobe_symbol(tk), trace_kprobe_offset(tk), ret); | |
c31ffb3f | 464 | if (ret == -ENOENT && trace_kprobe_is_on_module(tk)) { |
a395d6a7 | 465 | pr_warn("This probe might be able to register after target module is loaded. Continue.\n"); |
61424318 MH |
466 | ret = 0; |
467 | } else if (ret == -EILSEQ) { | |
a395d6a7 JP |
468 | pr_warn("Probing address(0x%p) is not an instruction boundary.\n", |
469 | tk->rp.kp.addr); | |
61424318 MH |
470 | ret = -EINVAL; |
471 | } | |
472 | } | |
473 | ||
474 | return ret; | |
475 | } | |
476 | ||
477 | /* Internal unregister function - just handle k*probes and flags */ | |
c31ffb3f | 478 | static void __unregister_trace_kprobe(struct trace_kprobe *tk) |
61424318 | 479 | { |
c31ffb3f NK |
480 | if (trace_probe_is_registered(&tk->tp)) { |
481 | if (trace_kprobe_is_return(tk)) | |
482 | unregister_kretprobe(&tk->rp); | |
61424318 | 483 | else |
c31ffb3f NK |
484 | unregister_kprobe(&tk->rp.kp); |
485 | tk->tp.flags &= ~TP_FLAG_REGISTERED; | |
61424318 | 486 | /* Cleanup kprobe for reuse */ |
c31ffb3f NK |
487 | if (tk->rp.kp.symbol_name) |
488 | tk->rp.kp.addr = NULL; | |
61424318 MH |
489 | } |
490 | } | |
491 | ||
492 | /* Unregister a trace_probe and probe_event: call with locking probe_lock */ | |
c31ffb3f | 493 | static int unregister_trace_kprobe(struct trace_kprobe *tk) |
61424318 | 494 | { |
02ca1521 | 495 | /* Enabled event can not be unregistered */ |
c31ffb3f | 496 | if (trace_probe_is_enabled(&tk->tp)) |
02ca1521 MH |
497 | return -EBUSY; |
498 | ||
40c32592 | 499 | /* Will fail if probe is being used by ftrace or perf */ |
c31ffb3f | 500 | if (unregister_kprobe_event(tk)) |
40c32592 SRRH |
501 | return -EBUSY; |
502 | ||
c31ffb3f NK |
503 | __unregister_trace_kprobe(tk); |
504 | list_del(&tk->list); | |
02ca1521 MH |
505 | |
506 | return 0; | |
413d37d1 MH |
507 | } |
508 | ||
509 | /* Register a trace_probe and probe_event */ | |
c31ffb3f | 510 | static int register_trace_kprobe(struct trace_kprobe *tk) |
413d37d1 | 511 | { |
c31ffb3f | 512 | struct trace_kprobe *old_tk; |
413d37d1 MH |
513 | int ret; |
514 | ||
515 | mutex_lock(&probe_lock); | |
516 | ||
61424318 | 517 | /* Delete old (same name) event if exist */ |
687fcc4a | 518 | old_tk = find_trace_kprobe(trace_event_name(&tk->tp.call), |
de7b2973 | 519 | tk->tp.call.class->system); |
c31ffb3f NK |
520 | if (old_tk) { |
521 | ret = unregister_trace_kprobe(old_tk); | |
02ca1521 MH |
522 | if (ret < 0) |
523 | goto end; | |
c31ffb3f | 524 | free_trace_kprobe(old_tk); |
2d5e067e | 525 | } |
61424318 MH |
526 | |
527 | /* Register new event */ | |
c31ffb3f | 528 | ret = register_kprobe_event(tk); |
2d5e067e | 529 | if (ret) { |
a395d6a7 | 530 | pr_warn("Failed to register probe event(%d)\n", ret); |
2d5e067e MH |
531 | goto end; |
532 | } | |
533 | ||
61424318 | 534 | /* Register k*probe */ |
c31ffb3f | 535 | ret = __register_trace_kprobe(tk); |
61424318 | 536 | if (ret < 0) |
c31ffb3f | 537 | unregister_kprobe_event(tk); |
61424318 | 538 | else |
c31ffb3f | 539 | list_add_tail(&tk->list, &probe_list); |
61424318 | 540 | |
413d37d1 MH |
541 | end: |
542 | mutex_unlock(&probe_lock); | |
543 | return ret; | |
544 | } | |
545 | ||
61424318 | 546 | /* Module notifier call back, checking event on the module */ |
c31ffb3f | 547 | static int trace_kprobe_module_callback(struct notifier_block *nb, |
61424318 MH |
548 | unsigned long val, void *data) |
549 | { | |
550 | struct module *mod = data; | |
c31ffb3f | 551 | struct trace_kprobe *tk; |
61424318 MH |
552 | int ret; |
553 | ||
554 | if (val != MODULE_STATE_COMING) | |
555 | return NOTIFY_DONE; | |
556 | ||
557 | /* Update probes on coming module */ | |
558 | mutex_lock(&probe_lock); | |
c31ffb3f NK |
559 | list_for_each_entry(tk, &probe_list, list) { |
560 | if (trace_kprobe_within_module(tk, mod)) { | |
02ca1521 | 561 | /* Don't need to check busy - this should have gone. */ |
c31ffb3f NK |
562 | __unregister_trace_kprobe(tk); |
563 | ret = __register_trace_kprobe(tk); | |
61424318 | 564 | if (ret) |
a395d6a7 JP |
565 | pr_warn("Failed to re-register probe %s on %s: %d\n", |
566 | trace_event_name(&tk->tp.call), | |
567 | mod->name, ret); | |
61424318 MH |
568 | } |
569 | } | |
570 | mutex_unlock(&probe_lock); | |
571 | ||
572 | return NOTIFY_DONE; | |
573 | } | |
574 | ||
c31ffb3f NK |
575 | static struct notifier_block trace_kprobe_module_nb = { |
576 | .notifier_call = trace_kprobe_module_callback, | |
61424318 MH |
577 | .priority = 1 /* Invoked after kprobe module callback */ |
578 | }; | |
579 | ||
c31ffb3f | 580 | static int create_trace_kprobe(int argc, char **argv) |
413d37d1 MH |
581 | { |
582 | /* | |
583 | * Argument syntax: | |
61424318 MH |
584 | * - Add kprobe: p[:[GRP/]EVENT] [MOD:]KSYM[+OFFS]|KADDR [FETCHARGS] |
585 | * - Add kretprobe: r[:[GRP/]EVENT] [MOD:]KSYM[+0] [FETCHARGS] | |
413d37d1 | 586 | * Fetch args: |
2e06ff63 MH |
587 | * $retval : fetch return value |
588 | * $stack : fetch stack address | |
589 | * $stackN : fetch Nth of stack (N:0-) | |
413d37d1 MH |
590 | * @ADDR : fetch memory at ADDR (ADDR should be in kernel) |
591 | * @SYM[+|-offs] : fetch memory at SYM +|- offs (SYM is a data symbol) | |
592 | * %REG : fetch register REG | |
93ccae7a | 593 | * Dereferencing memory fetch: |
413d37d1 | 594 | * +|-offs(ARG) : fetch memory at ARG +|- offs address. |
eca0d916 MH |
595 | * Alias name of args: |
596 | * NAME=FETCHARG : set NAME as alias of FETCHARG. | |
93ccae7a MH |
597 | * Type of args: |
598 | * FETCHARG:TYPE : use TYPE instead of unsigned long. | |
413d37d1 | 599 | */ |
c31ffb3f | 600 | struct trace_kprobe *tk; |
413d37d1 | 601 | int i, ret = 0; |
3a6b7666 | 602 | bool is_return = false, is_delete = false; |
93ccae7a | 603 | char *symbol = NULL, *event = NULL, *group = NULL; |
da34634f | 604 | char *arg; |
2fba0c88 | 605 | unsigned long offset = 0; |
413d37d1 | 606 | void *addr = NULL; |
4a846b44 | 607 | char buf[MAX_EVENT_NAME_LEN]; |
413d37d1 | 608 | |
a7c312be | 609 | /* argc must be >= 1 */ |
413d37d1 | 610 | if (argv[0][0] == 'p') |
3a6b7666 | 611 | is_return = false; |
413d37d1 | 612 | else if (argv[0][0] == 'r') |
3a6b7666 | 613 | is_return = true; |
a7c312be | 614 | else if (argv[0][0] == '-') |
3a6b7666 | 615 | is_delete = true; |
e63cc239 | 616 | else { |
a7c312be MH |
617 | pr_info("Probe definition must be started with 'p', 'r' or" |
618 | " '-'.\n"); | |
413d37d1 | 619 | return -EINVAL; |
e63cc239 | 620 | } |
413d37d1 MH |
621 | |
622 | if (argv[0][1] == ':') { | |
623 | event = &argv[0][2]; | |
f52487e9 MH |
624 | if (strchr(event, '/')) { |
625 | group = event; | |
626 | event = strchr(group, '/') + 1; | |
627 | event[-1] = '\0'; | |
628 | if (strlen(group) == 0) { | |
a5efd925 | 629 | pr_info("Group name is not specified\n"); |
f52487e9 MH |
630 | return -EINVAL; |
631 | } | |
632 | } | |
413d37d1 | 633 | if (strlen(event) == 0) { |
a5efd925 | 634 | pr_info("Event name is not specified\n"); |
413d37d1 MH |
635 | return -EINVAL; |
636 | } | |
637 | } | |
a7c312be MH |
638 | if (!group) |
639 | group = KPROBE_EVENT_SYSTEM; | |
413d37d1 | 640 | |
a7c312be MH |
641 | if (is_delete) { |
642 | if (!event) { | |
643 | pr_info("Delete command needs an event name.\n"); | |
644 | return -EINVAL; | |
645 | } | |
9da79ab8 | 646 | mutex_lock(&probe_lock); |
c31ffb3f NK |
647 | tk = find_trace_kprobe(event, group); |
648 | if (!tk) { | |
9da79ab8 | 649 | mutex_unlock(&probe_lock); |
a7c312be MH |
650 | pr_info("Event %s/%s doesn't exist.\n", group, event); |
651 | return -ENOENT; | |
652 | } | |
653 | /* delete an event */ | |
c31ffb3f | 654 | ret = unregister_trace_kprobe(tk); |
02ca1521 | 655 | if (ret == 0) |
c31ffb3f | 656 | free_trace_kprobe(tk); |
9da79ab8 | 657 | mutex_unlock(&probe_lock); |
02ca1521 | 658 | return ret; |
a7c312be MH |
659 | } |
660 | ||
661 | if (argc < 2) { | |
662 | pr_info("Probe point is not specified.\n"); | |
663 | return -EINVAL; | |
664 | } | |
413d37d1 | 665 | if (isdigit(argv[1][0])) { |
e63cc239 MH |
666 | if (is_return) { |
667 | pr_info("Return probe point must be a symbol.\n"); | |
413d37d1 | 668 | return -EINVAL; |
e63cc239 | 669 | } |
413d37d1 | 670 | /* an address specified */ |
bcd83ea6 | 671 | ret = kstrtoul(&argv[1][0], 0, (unsigned long *)&addr); |
e63cc239 MH |
672 | if (ret) { |
673 | pr_info("Failed to parse address.\n"); | |
413d37d1 | 674 | return ret; |
e63cc239 | 675 | } |
413d37d1 MH |
676 | } else { |
677 | /* a symbol specified */ | |
678 | symbol = argv[1]; | |
679 | /* TODO: support .init module functions */ | |
8ab83f56 | 680 | ret = traceprobe_split_symbol_offset(symbol, &offset); |
e63cc239 MH |
681 | if (ret) { |
682 | pr_info("Failed to parse symbol.\n"); | |
413d37d1 | 683 | return ret; |
e63cc239 MH |
684 | } |
685 | if (offset && is_return) { | |
686 | pr_info("Return probe must be used without offset.\n"); | |
413d37d1 | 687 | return -EINVAL; |
e63cc239 | 688 | } |
413d37d1 | 689 | } |
a82378d8 | 690 | argc -= 2; argv += 2; |
413d37d1 MH |
691 | |
692 | /* setup a probe */ | |
4263565d MH |
693 | if (!event) { |
694 | /* Make a new event name */ | |
4263565d | 695 | if (symbol) |
6f3cf440 | 696 | snprintf(buf, MAX_EVENT_NAME_LEN, "%c_%s_%ld", |
4263565d MH |
697 | is_return ? 'r' : 'p', symbol, offset); |
698 | else | |
6f3cf440 | 699 | snprintf(buf, MAX_EVENT_NAME_LEN, "%c_0x%p", |
4263565d | 700 | is_return ? 'r' : 'p', addr); |
4a846b44 MH |
701 | event = buf; |
702 | } | |
c31ffb3f | 703 | tk = alloc_trace_kprobe(group, event, addr, symbol, offset, argc, |
f52487e9 | 704 | is_return); |
c31ffb3f | 705 | if (IS_ERR(tk)) { |
e63cc239 | 706 | pr_info("Failed to allocate trace_probe.(%d)\n", |
c31ffb3f NK |
707 | (int)PTR_ERR(tk)); |
708 | return PTR_ERR(tk); | |
e63cc239 | 709 | } |
413d37d1 | 710 | |
413d37d1 | 711 | /* parse arguments */ |
a82378d8 MH |
712 | ret = 0; |
713 | for (i = 0; i < argc && i < MAX_TRACE_ARGS; i++) { | |
c31ffb3f NK |
714 | struct probe_arg *parg = &tk->tp.args[i]; |
715 | ||
61a52736 | 716 | /* Increment count for freeing args in error case */ |
c31ffb3f | 717 | tk->tp.nr_args++; |
61a52736 | 718 | |
eca0d916 MH |
719 | /* Parse argument name */ |
720 | arg = strchr(argv[i], '='); | |
aba91595 | 721 | if (arg) { |
eca0d916 | 722 | *arg++ = '\0'; |
c31ffb3f | 723 | parg->name = kstrdup(argv[i], GFP_KERNEL); |
aba91595 | 724 | } else { |
eca0d916 | 725 | arg = argv[i]; |
aba91595 MH |
726 | /* If argument name is omitted, set "argN" */ |
727 | snprintf(buf, MAX_EVENT_NAME_LEN, "arg%d", i + 1); | |
c31ffb3f | 728 | parg->name = kstrdup(buf, GFP_KERNEL); |
aba91595 | 729 | } |
a703d946 | 730 | |
c31ffb3f | 731 | if (!parg->name) { |
aba91595 | 732 | pr_info("Failed to allocate argument[%d] name.\n", i); |
ba8665d7 | 733 | ret = -ENOMEM; |
413d37d1 MH |
734 | goto error; |
735 | } | |
da34634f | 736 | |
c31ffb3f | 737 | if (!is_good_name(parg->name)) { |
da34634f | 738 | pr_info("Invalid argument[%d] name: %s\n", |
c31ffb3f | 739 | i, parg->name); |
da34634f MH |
740 | ret = -EINVAL; |
741 | goto error; | |
742 | } | |
93ccae7a | 743 | |
c31ffb3f NK |
744 | if (traceprobe_conflict_field_name(parg->name, |
745 | tk->tp.args, i)) { | |
aba91595 | 746 | pr_info("Argument[%d] name '%s' conflicts with " |
93ccae7a MH |
747 | "another field.\n", i, argv[i]); |
748 | ret = -EINVAL; | |
749 | goto error; | |
750 | } | |
ba8665d7 MH |
751 | |
752 | /* Parse fetch argument */ | |
c31ffb3f | 753 | ret = traceprobe_parse_probe_arg(arg, &tk->tp.size, parg, |
d9a16d3a SR |
754 | is_return, true, |
755 | kprobes_fetch_type_table); | |
e63cc239 | 756 | if (ret) { |
aba91595 | 757 | pr_info("Parse error at argument[%d]. (%d)\n", i, ret); |
413d37d1 | 758 | goto error; |
e63cc239 | 759 | } |
413d37d1 | 760 | } |
413d37d1 | 761 | |
c31ffb3f | 762 | ret = register_trace_kprobe(tk); |
413d37d1 MH |
763 | if (ret) |
764 | goto error; | |
765 | return 0; | |
766 | ||
767 | error: | |
c31ffb3f | 768 | free_trace_kprobe(tk); |
413d37d1 MH |
769 | return ret; |
770 | } | |
771 | ||
c31ffb3f | 772 | static int release_all_trace_kprobes(void) |
413d37d1 | 773 | { |
c31ffb3f | 774 | struct trace_kprobe *tk; |
02ca1521 | 775 | int ret = 0; |
413d37d1 MH |
776 | |
777 | mutex_lock(&probe_lock); | |
02ca1521 | 778 | /* Ensure no probe is in use. */ |
c31ffb3f NK |
779 | list_for_each_entry(tk, &probe_list, list) |
780 | if (trace_probe_is_enabled(&tk->tp)) { | |
02ca1521 MH |
781 | ret = -EBUSY; |
782 | goto end; | |
783 | } | |
413d37d1 MH |
784 | /* TODO: Use batch unregistration */ |
785 | while (!list_empty(&probe_list)) { | |
c31ffb3f NK |
786 | tk = list_entry(probe_list.next, struct trace_kprobe, list); |
787 | ret = unregister_trace_kprobe(tk); | |
40c32592 SRRH |
788 | if (ret) |
789 | goto end; | |
c31ffb3f | 790 | free_trace_kprobe(tk); |
413d37d1 | 791 | } |
02ca1521 MH |
792 | |
793 | end: | |
413d37d1 | 794 | mutex_unlock(&probe_lock); |
02ca1521 MH |
795 | |
796 | return ret; | |
413d37d1 MH |
797 | } |
798 | ||
413d37d1 MH |
799 | /* Probes listing interfaces */ |
800 | static void *probes_seq_start(struct seq_file *m, loff_t *pos) | |
801 | { | |
802 | mutex_lock(&probe_lock); | |
803 | return seq_list_start(&probe_list, *pos); | |
804 | } | |
805 | ||
806 | static void *probes_seq_next(struct seq_file *m, void *v, loff_t *pos) | |
807 | { | |
808 | return seq_list_next(v, &probe_list, pos); | |
809 | } | |
810 | ||
811 | static void probes_seq_stop(struct seq_file *m, void *v) | |
812 | { | |
813 | mutex_unlock(&probe_lock); | |
814 | } | |
815 | ||
816 | static int probes_seq_show(struct seq_file *m, void *v) | |
817 | { | |
c31ffb3f | 818 | struct trace_kprobe *tk = v; |
93ccae7a | 819 | int i; |
413d37d1 | 820 | |
fa6f0cc7 | 821 | seq_putc(m, trace_kprobe_is_return(tk) ? 'r' : 'p'); |
de7b2973 | 822 | seq_printf(m, ":%s/%s", tk->tp.call.class->system, |
687fcc4a | 823 | trace_event_name(&tk->tp.call)); |
413d37d1 | 824 | |
c31ffb3f NK |
825 | if (!tk->symbol) |
826 | seq_printf(m, " 0x%p", tk->rp.kp.addr); | |
827 | else if (tk->rp.kp.offset) | |
828 | seq_printf(m, " %s+%u", trace_kprobe_symbol(tk), | |
829 | tk->rp.kp.offset); | |
413d37d1 | 830 | else |
c31ffb3f | 831 | seq_printf(m, " %s", trace_kprobe_symbol(tk)); |
413d37d1 | 832 | |
c31ffb3f NK |
833 | for (i = 0; i < tk->tp.nr_args; i++) |
834 | seq_printf(m, " %s=%s", tk->tp.args[i].name, tk->tp.args[i].comm); | |
fa6f0cc7 | 835 | seq_putc(m, '\n'); |
93ccae7a | 836 | |
413d37d1 MH |
837 | return 0; |
838 | } | |
839 | ||
840 | static const struct seq_operations probes_seq_op = { | |
841 | .start = probes_seq_start, | |
842 | .next = probes_seq_next, | |
843 | .stop = probes_seq_stop, | |
844 | .show = probes_seq_show | |
845 | }; | |
846 | ||
847 | static int probes_open(struct inode *inode, struct file *file) | |
848 | { | |
02ca1521 MH |
849 | int ret; |
850 | ||
851 | if ((file->f_mode & FMODE_WRITE) && (file->f_flags & O_TRUNC)) { | |
c31ffb3f | 852 | ret = release_all_trace_kprobes(); |
02ca1521 MH |
853 | if (ret < 0) |
854 | return ret; | |
855 | } | |
413d37d1 MH |
856 | |
857 | return seq_open(file, &probes_seq_op); | |
858 | } | |
859 | ||
413d37d1 MH |
860 | static ssize_t probes_write(struct file *file, const char __user *buffer, |
861 | size_t count, loff_t *ppos) | |
862 | { | |
8ab83f56 | 863 | return traceprobe_probes_write(file, buffer, count, ppos, |
c31ffb3f | 864 | create_trace_kprobe); |
413d37d1 MH |
865 | } |
866 | ||
867 | static const struct file_operations kprobe_events_ops = { | |
868 | .owner = THIS_MODULE, | |
869 | .open = probes_open, | |
870 | .read = seq_read, | |
871 | .llseek = seq_lseek, | |
872 | .release = seq_release, | |
873 | .write = probes_write, | |
874 | }; | |
875 | ||
cd7e7bd5 MH |
876 | /* Probes profiling interfaces */ |
877 | static int probes_profile_seq_show(struct seq_file *m, void *v) | |
878 | { | |
c31ffb3f | 879 | struct trace_kprobe *tk = v; |
a7636d9e MKL |
880 | unsigned long nhit = 0; |
881 | int cpu; | |
882 | ||
883 | for_each_possible_cpu(cpu) | |
884 | nhit += *per_cpu_ptr(tk->nhit, cpu); | |
cd7e7bd5 | 885 | |
de7b2973 | 886 | seq_printf(m, " %-44s %15lu %15lu\n", |
a7636d9e | 887 | trace_event_name(&tk->tp.call), nhit, |
c31ffb3f | 888 | tk->rp.kp.nmissed); |
cd7e7bd5 MH |
889 | |
890 | return 0; | |
891 | } | |
892 | ||
893 | static const struct seq_operations profile_seq_op = { | |
894 | .start = probes_seq_start, | |
895 | .next = probes_seq_next, | |
896 | .stop = probes_seq_stop, | |
897 | .show = probes_profile_seq_show | |
898 | }; | |
899 | ||
900 | static int profile_open(struct inode *inode, struct file *file) | |
901 | { | |
902 | return seq_open(file, &profile_seq_op); | |
903 | } | |
904 | ||
905 | static const struct file_operations kprobe_profile_ops = { | |
906 | .owner = THIS_MODULE, | |
907 | .open = profile_open, | |
908 | .read = seq_read, | |
909 | .llseek = seq_lseek, | |
910 | .release = seq_release, | |
911 | }; | |
912 | ||
413d37d1 | 913 | /* Kprobe handler */ |
3da0f180 | 914 | static nokprobe_inline void |
c31ffb3f | 915 | __kprobe_trace_func(struct trace_kprobe *tk, struct pt_regs *regs, |
7f1d2f82 | 916 | struct trace_event_file *trace_file) |
413d37d1 | 917 | { |
93ccae7a | 918 | struct kprobe_trace_entry_head *entry; |
413d37d1 | 919 | struct ring_buffer_event *event; |
8f8ffe24 | 920 | struct ring_buffer *buffer; |
e09c8614 | 921 | int size, dsize, pc; |
413d37d1 | 922 | unsigned long irq_flags; |
2425bcb9 | 923 | struct trace_event_call *call = &tk->tp.call; |
413d37d1 | 924 | |
7f1d2f82 | 925 | WARN_ON(call != trace_file->event_call); |
41a7dd42 | 926 | |
09a5059a | 927 | if (trace_trigger_soft_disabled(trace_file)) |
13a1e4ae | 928 | return; |
b8820084 | 929 | |
413d37d1 MH |
930 | local_save_flags(irq_flags); |
931 | pc = preempt_count(); | |
932 | ||
c31ffb3f NK |
933 | dsize = __get_data_size(&tk->tp, regs); |
934 | size = sizeof(*entry) + tk->tp.size + dsize; | |
413d37d1 | 935 | |
7f1d2f82 | 936 | event = trace_event_buffer_lock_reserve(&buffer, trace_file, |
41a7dd42 MH |
937 | call->event.type, |
938 | size, irq_flags, pc); | |
413d37d1 | 939 | if (!event) |
1e12a4a7 | 940 | return; |
413d37d1 MH |
941 | |
942 | entry = ring_buffer_event_data(event); | |
c31ffb3f NK |
943 | entry->ip = (unsigned long)tk->rp.kp.addr; |
944 | store_trace_args(sizeof(*entry), &tk->tp, regs, (u8 *)&entry[1], dsize); | |
413d37d1 | 945 | |
7f1d2f82 | 946 | event_trigger_unlock_commit_regs(trace_file, buffer, event, |
13a1e4ae | 947 | entry, irq_flags, pc, regs); |
413d37d1 MH |
948 | } |
949 | ||
3da0f180 | 950 | static void |
c31ffb3f | 951 | kprobe_trace_func(struct trace_kprobe *tk, struct pt_regs *regs) |
41a7dd42 | 952 | { |
b04d52e3 | 953 | struct event_file_link *link; |
41a7dd42 | 954 | |
c31ffb3f NK |
955 | list_for_each_entry_rcu(link, &tk->tp.files, list) |
956 | __kprobe_trace_func(tk, regs, link->file); | |
41a7dd42 | 957 | } |
3da0f180 | 958 | NOKPROBE_SYMBOL(kprobe_trace_func); |
41a7dd42 | 959 | |
413d37d1 | 960 | /* Kretprobe handler */ |
3da0f180 | 961 | static nokprobe_inline void |
c31ffb3f | 962 | __kretprobe_trace_func(struct trace_kprobe *tk, struct kretprobe_instance *ri, |
41a7dd42 | 963 | struct pt_regs *regs, |
7f1d2f82 | 964 | struct trace_event_file *trace_file) |
413d37d1 | 965 | { |
93ccae7a | 966 | struct kretprobe_trace_entry_head *entry; |
413d37d1 | 967 | struct ring_buffer_event *event; |
8f8ffe24 | 968 | struct ring_buffer *buffer; |
e09c8614 | 969 | int size, pc, dsize; |
413d37d1 | 970 | unsigned long irq_flags; |
2425bcb9 | 971 | struct trace_event_call *call = &tk->tp.call; |
413d37d1 | 972 | |
7f1d2f82 | 973 | WARN_ON(call != trace_file->event_call); |
41a7dd42 | 974 | |
09a5059a | 975 | if (trace_trigger_soft_disabled(trace_file)) |
13a1e4ae | 976 | return; |
b8820084 | 977 | |
413d37d1 MH |
978 | local_save_flags(irq_flags); |
979 | pc = preempt_count(); | |
980 | ||
c31ffb3f NK |
981 | dsize = __get_data_size(&tk->tp, regs); |
982 | size = sizeof(*entry) + tk->tp.size + dsize; | |
413d37d1 | 983 | |
7f1d2f82 | 984 | event = trace_event_buffer_lock_reserve(&buffer, trace_file, |
41a7dd42 MH |
985 | call->event.type, |
986 | size, irq_flags, pc); | |
413d37d1 | 987 | if (!event) |
1e12a4a7 | 988 | return; |
413d37d1 MH |
989 | |
990 | entry = ring_buffer_event_data(event); | |
c31ffb3f | 991 | entry->func = (unsigned long)tk->rp.kp.addr; |
413d37d1 | 992 | entry->ret_ip = (unsigned long)ri->ret_addr; |
c31ffb3f | 993 | store_trace_args(sizeof(*entry), &tk->tp, regs, (u8 *)&entry[1], dsize); |
413d37d1 | 994 | |
7f1d2f82 | 995 | event_trigger_unlock_commit_regs(trace_file, buffer, event, |
13a1e4ae | 996 | entry, irq_flags, pc, regs); |
413d37d1 MH |
997 | } |
998 | ||
3da0f180 | 999 | static void |
c31ffb3f | 1000 | kretprobe_trace_func(struct trace_kprobe *tk, struct kretprobe_instance *ri, |
41a7dd42 MH |
1001 | struct pt_regs *regs) |
1002 | { | |
b04d52e3 | 1003 | struct event_file_link *link; |
41a7dd42 | 1004 | |
c31ffb3f NK |
1005 | list_for_each_entry_rcu(link, &tk->tp.files, list) |
1006 | __kretprobe_trace_func(tk, ri, regs, link->file); | |
41a7dd42 | 1007 | } |
3da0f180 | 1008 | NOKPROBE_SYMBOL(kretprobe_trace_func); |
41a7dd42 | 1009 | |
413d37d1 | 1010 | /* Event entry printers */ |
b62fdd97 | 1011 | static enum print_line_t |
a9a57763 SR |
1012 | print_kprobe_event(struct trace_iterator *iter, int flags, |
1013 | struct trace_event *event) | |
413d37d1 | 1014 | { |
93ccae7a | 1015 | struct kprobe_trace_entry_head *field; |
413d37d1 | 1016 | struct trace_seq *s = &iter->seq; |
eca0d916 | 1017 | struct trace_probe *tp; |
93ccae7a | 1018 | u8 *data; |
413d37d1 MH |
1019 | int i; |
1020 | ||
93ccae7a | 1021 | field = (struct kprobe_trace_entry_head *)iter->ent; |
80decc70 | 1022 | tp = container_of(event, struct trace_probe, call.event); |
413d37d1 | 1023 | |
687fcc4a | 1024 | trace_seq_printf(s, "%s: (", trace_event_name(&tp->call)); |
6e9f23d1 | 1025 | |
413d37d1 | 1026 | if (!seq_print_ip_sym(s, field->ip, flags | TRACE_ITER_SYM_OFFSET)) |
85224da0 | 1027 | goto out; |
413d37d1 | 1028 | |
85224da0 | 1029 | trace_seq_putc(s, ')'); |
413d37d1 | 1030 | |
93ccae7a MH |
1031 | data = (u8 *)&field[1]; |
1032 | for (i = 0; i < tp->nr_args; i++) | |
1033 | if (!tp->args[i].type->print(s, tp->args[i].name, | |
e09c8614 | 1034 | data + tp->args[i].offset, field)) |
85224da0 | 1035 | goto out; |
413d37d1 | 1036 | |
85224da0 SRRH |
1037 | trace_seq_putc(s, '\n'); |
1038 | out: | |
1039 | return trace_handle_return(s); | |
413d37d1 MH |
1040 | } |
1041 | ||
b62fdd97 | 1042 | static enum print_line_t |
a9a57763 SR |
1043 | print_kretprobe_event(struct trace_iterator *iter, int flags, |
1044 | struct trace_event *event) | |
413d37d1 | 1045 | { |
93ccae7a | 1046 | struct kretprobe_trace_entry_head *field; |
413d37d1 | 1047 | struct trace_seq *s = &iter->seq; |
eca0d916 | 1048 | struct trace_probe *tp; |
93ccae7a | 1049 | u8 *data; |
413d37d1 MH |
1050 | int i; |
1051 | ||
93ccae7a | 1052 | field = (struct kretprobe_trace_entry_head *)iter->ent; |
80decc70 | 1053 | tp = container_of(event, struct trace_probe, call.event); |
413d37d1 | 1054 | |
687fcc4a | 1055 | trace_seq_printf(s, "%s: (", trace_event_name(&tp->call)); |
6e9f23d1 | 1056 | |
413d37d1 | 1057 | if (!seq_print_ip_sym(s, field->ret_ip, flags | TRACE_ITER_SYM_OFFSET)) |
85224da0 | 1058 | goto out; |
413d37d1 | 1059 | |
85224da0 | 1060 | trace_seq_puts(s, " <- "); |
413d37d1 MH |
1061 | |
1062 | if (!seq_print_ip_sym(s, field->func, flags & ~TRACE_ITER_SYM_OFFSET)) | |
85224da0 | 1063 | goto out; |
413d37d1 | 1064 | |
85224da0 | 1065 | trace_seq_putc(s, ')'); |
413d37d1 | 1066 | |
93ccae7a MH |
1067 | data = (u8 *)&field[1]; |
1068 | for (i = 0; i < tp->nr_args; i++) | |
1069 | if (!tp->args[i].type->print(s, tp->args[i].name, | |
e09c8614 | 1070 | data + tp->args[i].offset, field)) |
85224da0 | 1071 | goto out; |
413d37d1 | 1072 | |
85224da0 | 1073 | trace_seq_putc(s, '\n'); |
413d37d1 | 1074 | |
85224da0 SRRH |
1075 | out: |
1076 | return trace_handle_return(s); | |
413d37d1 MH |
1077 | } |
1078 | ||
413d37d1 | 1079 | |
2425bcb9 | 1080 | static int kprobe_event_define_fields(struct trace_event_call *event_call) |
413d37d1 MH |
1081 | { |
1082 | int ret, i; | |
93ccae7a | 1083 | struct kprobe_trace_entry_head field; |
c31ffb3f | 1084 | struct trace_kprobe *tk = (struct trace_kprobe *)event_call->data; |
413d37d1 | 1085 | |
a703d946 | 1086 | DEFINE_FIELD(unsigned long, ip, FIELD_STRING_IP, 0); |
eca0d916 | 1087 | /* Set argument names as fields */ |
c31ffb3f NK |
1088 | for (i = 0; i < tk->tp.nr_args; i++) { |
1089 | struct probe_arg *parg = &tk->tp.args[i]; | |
1090 | ||
1091 | ret = trace_define_field(event_call, parg->type->fmttype, | |
1092 | parg->name, | |
1093 | sizeof(field) + parg->offset, | |
1094 | parg->type->size, | |
1095 | parg->type->is_signed, | |
93ccae7a MH |
1096 | FILTER_OTHER); |
1097 | if (ret) | |
1098 | return ret; | |
1099 | } | |
413d37d1 MH |
1100 | return 0; |
1101 | } | |
1102 | ||
2425bcb9 | 1103 | static int kretprobe_event_define_fields(struct trace_event_call *event_call) |
413d37d1 MH |
1104 | { |
1105 | int ret, i; | |
93ccae7a | 1106 | struct kretprobe_trace_entry_head field; |
c31ffb3f | 1107 | struct trace_kprobe *tk = (struct trace_kprobe *)event_call->data; |
413d37d1 | 1108 | |
a703d946 MH |
1109 | DEFINE_FIELD(unsigned long, func, FIELD_STRING_FUNC, 0); |
1110 | DEFINE_FIELD(unsigned long, ret_ip, FIELD_STRING_RETIP, 0); | |
eca0d916 | 1111 | /* Set argument names as fields */ |
c31ffb3f NK |
1112 | for (i = 0; i < tk->tp.nr_args; i++) { |
1113 | struct probe_arg *parg = &tk->tp.args[i]; | |
1114 | ||
1115 | ret = trace_define_field(event_call, parg->type->fmttype, | |
1116 | parg->name, | |
1117 | sizeof(field) + parg->offset, | |
1118 | parg->type->size, | |
1119 | parg->type->is_signed, | |
93ccae7a MH |
1120 | FILTER_OTHER); |
1121 | if (ret) | |
1122 | return ret; | |
1123 | } | |
413d37d1 MH |
1124 | return 0; |
1125 | } | |
1126 | ||
07b139c8 | 1127 | #ifdef CONFIG_PERF_EVENTS |
e08d1c65 MH |
1128 | |
1129 | /* Kprobe profile handler */ | |
3da0f180 | 1130 | static void |
c31ffb3f | 1131 | kprobe_perf_func(struct trace_kprobe *tk, struct pt_regs *regs) |
e08d1c65 | 1132 | { |
2425bcb9 | 1133 | struct trace_event_call *call = &tk->tp.call; |
2541517c | 1134 | struct bpf_prog *prog = call->prog; |
93ccae7a | 1135 | struct kprobe_trace_entry_head *entry; |
1c024eca | 1136 | struct hlist_head *head; |
e09c8614 | 1137 | int size, __size, dsize; |
4ed7c92d | 1138 | int rctx; |
e08d1c65 | 1139 | |
2541517c AS |
1140 | if (prog && !trace_call_bpf(prog, regs)) |
1141 | return; | |
1142 | ||
288e984e ON |
1143 | head = this_cpu_ptr(call->perf_events); |
1144 | if (hlist_empty(head)) | |
1145 | return; | |
1146 | ||
c31ffb3f NK |
1147 | dsize = __get_data_size(&tk->tp, regs); |
1148 | __size = sizeof(*entry) + tk->tp.size + dsize; | |
74ebb63e MH |
1149 | size = ALIGN(__size + sizeof(u32), sizeof(u64)); |
1150 | size -= sizeof(u32); | |
ce71b9df | 1151 | |
86038c5e | 1152 | entry = perf_trace_buf_prepare(size, call->event.type, NULL, &rctx); |
430ad5a6 | 1153 | if (!entry) |
1e12a4a7 | 1154 | return; |
a1a138d0 | 1155 | |
c31ffb3f | 1156 | entry->ip = (unsigned long)tk->rp.kp.addr; |
e09c8614 | 1157 | memset(&entry[1], 0, dsize); |
c31ffb3f | 1158 | store_trace_args(sizeof(*entry), &tk->tp, regs, (u8 *)&entry[1], dsize); |
cf6735a4 | 1159 | perf_trace_buf_submit(entry, size, rctx, 0, 1, regs, head, NULL); |
e08d1c65 | 1160 | } |
3da0f180 | 1161 | NOKPROBE_SYMBOL(kprobe_perf_func); |
e08d1c65 MH |
1162 | |
1163 | /* Kretprobe profile handler */ | |
3da0f180 | 1164 | static void |
c31ffb3f | 1165 | kretprobe_perf_func(struct trace_kprobe *tk, struct kretprobe_instance *ri, |
2b106aab | 1166 | struct pt_regs *regs) |
e08d1c65 | 1167 | { |
2425bcb9 | 1168 | struct trace_event_call *call = &tk->tp.call; |
2541517c | 1169 | struct bpf_prog *prog = call->prog; |
93ccae7a | 1170 | struct kretprobe_trace_entry_head *entry; |
1c024eca | 1171 | struct hlist_head *head; |
e09c8614 | 1172 | int size, __size, dsize; |
4ed7c92d | 1173 | int rctx; |
e08d1c65 | 1174 | |
2541517c AS |
1175 | if (prog && !trace_call_bpf(prog, regs)) |
1176 | return; | |
1177 | ||
288e984e ON |
1178 | head = this_cpu_ptr(call->perf_events); |
1179 | if (hlist_empty(head)) | |
1180 | return; | |
1181 | ||
c31ffb3f NK |
1182 | dsize = __get_data_size(&tk->tp, regs); |
1183 | __size = sizeof(*entry) + tk->tp.size + dsize; | |
74ebb63e MH |
1184 | size = ALIGN(__size + sizeof(u32), sizeof(u64)); |
1185 | size -= sizeof(u32); | |
444a2a3b | 1186 | |
86038c5e | 1187 | entry = perf_trace_buf_prepare(size, call->event.type, NULL, &rctx); |
430ad5a6 | 1188 | if (!entry) |
1e12a4a7 | 1189 | return; |
e08d1c65 | 1190 | |
c31ffb3f | 1191 | entry->func = (unsigned long)tk->rp.kp.addr; |
a1a138d0 | 1192 | entry->ret_ip = (unsigned long)ri->ret_addr; |
c31ffb3f | 1193 | store_trace_args(sizeof(*entry), &tk->tp, regs, (u8 *)&entry[1], dsize); |
cf6735a4 | 1194 | perf_trace_buf_submit(entry, size, rctx, 0, 1, regs, head, NULL); |
e08d1c65 | 1195 | } |
3da0f180 | 1196 | NOKPROBE_SYMBOL(kretprobe_perf_func); |
07b139c8 | 1197 | #endif /* CONFIG_PERF_EVENTS */ |
50d78056 | 1198 | |
3fe3d619 ON |
1199 | /* |
1200 | * called by perf_trace_init() or __ftrace_set_clr_event() under event_mutex. | |
1201 | * | |
1202 | * kprobe_trace_self_tests_init() does enable_trace_probe/disable_trace_probe | |
1203 | * lockless, but we can't race with this __init function. | |
1204 | */ | |
2425bcb9 | 1205 | static int kprobe_register(struct trace_event_call *event, |
fbc1963d | 1206 | enum trace_reg type, void *data) |
2239291a | 1207 | { |
c31ffb3f | 1208 | struct trace_kprobe *tk = (struct trace_kprobe *)event->data; |
7f1d2f82 | 1209 | struct trace_event_file *file = data; |
1538f888 | 1210 | |
2239291a SR |
1211 | switch (type) { |
1212 | case TRACE_REG_REGISTER: | |
c31ffb3f | 1213 | return enable_trace_kprobe(tk, file); |
2239291a | 1214 | case TRACE_REG_UNREGISTER: |
c31ffb3f | 1215 | return disable_trace_kprobe(tk, file); |
2239291a SR |
1216 | |
1217 | #ifdef CONFIG_PERF_EVENTS | |
1218 | case TRACE_REG_PERF_REGISTER: | |
c31ffb3f | 1219 | return enable_trace_kprobe(tk, NULL); |
2239291a | 1220 | case TRACE_REG_PERF_UNREGISTER: |
c31ffb3f | 1221 | return disable_trace_kprobe(tk, NULL); |
ceec0b6f JO |
1222 | case TRACE_REG_PERF_OPEN: |
1223 | case TRACE_REG_PERF_CLOSE: | |
489c75c3 JO |
1224 | case TRACE_REG_PERF_ADD: |
1225 | case TRACE_REG_PERF_DEL: | |
ceec0b6f | 1226 | return 0; |
2239291a SR |
1227 | #endif |
1228 | } | |
1229 | return 0; | |
1230 | } | |
50d78056 | 1231 | |
3da0f180 | 1232 | static int kprobe_dispatcher(struct kprobe *kp, struct pt_regs *regs) |
50d78056 | 1233 | { |
c31ffb3f | 1234 | struct trace_kprobe *tk = container_of(kp, struct trace_kprobe, rp.kp); |
e08d1c65 | 1235 | |
a7636d9e | 1236 | raw_cpu_inc(*tk->nhit); |
48182bd2 | 1237 | |
c31ffb3f NK |
1238 | if (tk->tp.flags & TP_FLAG_TRACE) |
1239 | kprobe_trace_func(tk, regs); | |
07b139c8 | 1240 | #ifdef CONFIG_PERF_EVENTS |
c31ffb3f NK |
1241 | if (tk->tp.flags & TP_FLAG_PROFILE) |
1242 | kprobe_perf_func(tk, regs); | |
07b139c8 | 1243 | #endif |
50d78056 MH |
1244 | return 0; /* We don't tweek kernel, so just return 0 */ |
1245 | } | |
3da0f180 | 1246 | NOKPROBE_SYMBOL(kprobe_dispatcher); |
50d78056 | 1247 | |
3da0f180 MH |
1248 | static int |
1249 | kretprobe_dispatcher(struct kretprobe_instance *ri, struct pt_regs *regs) | |
50d78056 | 1250 | { |
c31ffb3f | 1251 | struct trace_kprobe *tk = container_of(ri->rp, struct trace_kprobe, rp); |
50d78056 | 1252 | |
a7636d9e | 1253 | raw_cpu_inc(*tk->nhit); |
48182bd2 | 1254 | |
c31ffb3f NK |
1255 | if (tk->tp.flags & TP_FLAG_TRACE) |
1256 | kretprobe_trace_func(tk, ri, regs); | |
07b139c8 | 1257 | #ifdef CONFIG_PERF_EVENTS |
c31ffb3f NK |
1258 | if (tk->tp.flags & TP_FLAG_PROFILE) |
1259 | kretprobe_perf_func(tk, ri, regs); | |
07b139c8 | 1260 | #endif |
50d78056 MH |
1261 | return 0; /* We don't tweek kernel, so just return 0 */ |
1262 | } | |
3da0f180 | 1263 | NOKPROBE_SYMBOL(kretprobe_dispatcher); |
e08d1c65 | 1264 | |
a9a57763 SR |
1265 | static struct trace_event_functions kretprobe_funcs = { |
1266 | .trace = print_kretprobe_event | |
1267 | }; | |
1268 | ||
1269 | static struct trace_event_functions kprobe_funcs = { | |
1270 | .trace = print_kprobe_event | |
1271 | }; | |
1272 | ||
c31ffb3f | 1273 | static int register_kprobe_event(struct trace_kprobe *tk) |
413d37d1 | 1274 | { |
2425bcb9 | 1275 | struct trace_event_call *call = &tk->tp.call; |
413d37d1 MH |
1276 | int ret; |
1277 | ||
2425bcb9 | 1278 | /* Initialize trace_event_call */ |
ffb9f995 | 1279 | INIT_LIST_HEAD(&call->class->fields); |
c31ffb3f | 1280 | if (trace_kprobe_is_return(tk)) { |
80decc70 | 1281 | call->event.funcs = &kretprobe_funcs; |
2e33af02 | 1282 | call->class->define_fields = kretprobe_event_define_fields; |
413d37d1 | 1283 | } else { |
80decc70 | 1284 | call->event.funcs = &kprobe_funcs; |
2e33af02 | 1285 | call->class->define_fields = kprobe_event_define_fields; |
413d37d1 | 1286 | } |
5bf652aa | 1287 | if (set_print_fmt(&tk->tp, trace_kprobe_is_return(tk)) < 0) |
a342a028 | 1288 | return -ENOMEM; |
9023c930 | 1289 | ret = register_trace_event(&call->event); |
32c0edae | 1290 | if (!ret) { |
a342a028 | 1291 | kfree(call->print_fmt); |
ff50d991 | 1292 | return -ENODEV; |
a342a028 | 1293 | } |
72cbbc89 | 1294 | call->flags = TRACE_EVENT_FL_KPROBE; |
2239291a | 1295 | call->class->reg = kprobe_register; |
c31ffb3f | 1296 | call->data = tk; |
413d37d1 | 1297 | ret = trace_add_event_call(call); |
ff50d991 | 1298 | if (ret) { |
de7b2973 | 1299 | pr_info("Failed to register kprobe event: %s\n", |
687fcc4a | 1300 | trace_event_name(call)); |
a342a028 | 1301 | kfree(call->print_fmt); |
9023c930 | 1302 | unregister_trace_event(&call->event); |
ff50d991 | 1303 | } |
413d37d1 MH |
1304 | return ret; |
1305 | } | |
1306 | ||
c31ffb3f | 1307 | static int unregister_kprobe_event(struct trace_kprobe *tk) |
413d37d1 | 1308 | { |
40c32592 SRRH |
1309 | int ret; |
1310 | ||
ff50d991 | 1311 | /* tp->event is unregistered in trace_remove_event_call() */ |
c31ffb3f | 1312 | ret = trace_remove_event_call(&tk->tp.call); |
40c32592 | 1313 | if (!ret) |
c31ffb3f | 1314 | kfree(tk->tp.call.print_fmt); |
40c32592 | 1315 | return ret; |
413d37d1 MH |
1316 | } |
1317 | ||
8434dc93 | 1318 | /* Make a tracefs interface for controlling probe points */ |
413d37d1 MH |
1319 | static __init int init_kprobe_trace(void) |
1320 | { | |
1321 | struct dentry *d_tracer; | |
1322 | struct dentry *entry; | |
413d37d1 | 1323 | |
c31ffb3f | 1324 | if (register_module_notifier(&trace_kprobe_module_nb)) |
61424318 MH |
1325 | return -EINVAL; |
1326 | ||
413d37d1 | 1327 | d_tracer = tracing_init_dentry(); |
14a5ae40 | 1328 | if (IS_ERR(d_tracer)) |
413d37d1 MH |
1329 | return 0; |
1330 | ||
8434dc93 | 1331 | entry = tracefs_create_file("kprobe_events", 0644, d_tracer, |
413d37d1 MH |
1332 | NULL, &kprobe_events_ops); |
1333 | ||
cd7e7bd5 | 1334 | /* Event list interface */ |
413d37d1 | 1335 | if (!entry) |
a395d6a7 | 1336 | pr_warn("Could not create tracefs 'kprobe_events' entry\n"); |
cd7e7bd5 MH |
1337 | |
1338 | /* Profile interface */ | |
8434dc93 | 1339 | entry = tracefs_create_file("kprobe_profile", 0444, d_tracer, |
cd7e7bd5 MH |
1340 | NULL, &kprobe_profile_ops); |
1341 | ||
1342 | if (!entry) | |
a395d6a7 | 1343 | pr_warn("Could not create tracefs 'kprobe_profile' entry\n"); |
413d37d1 MH |
1344 | return 0; |
1345 | } | |
1346 | fs_initcall(init_kprobe_trace); | |
1347 | ||
1348 | ||
1349 | #ifdef CONFIG_FTRACE_STARTUP_TEST | |
1350 | ||
265a5b7e SR |
1351 | /* |
1352 | * The "__used" keeps gcc from removing the function symbol | |
1353 | * from the kallsyms table. | |
1354 | */ | |
1355 | static __used int kprobe_trace_selftest_target(int a1, int a2, int a3, | |
1356 | int a4, int a5, int a6) | |
413d37d1 MH |
1357 | { |
1358 | return a1 + a2 + a3 + a4 + a5 + a6; | |
1359 | } | |
1360 | ||
7f1d2f82 | 1361 | static struct trace_event_file * |
c31ffb3f | 1362 | find_trace_probe_file(struct trace_kprobe *tk, struct trace_array *tr) |
41a7dd42 | 1363 | { |
7f1d2f82 | 1364 | struct trace_event_file *file; |
41a7dd42 MH |
1365 | |
1366 | list_for_each_entry(file, &tr->events, list) | |
c31ffb3f | 1367 | if (file->event_call == &tk->tp.call) |
41a7dd42 MH |
1368 | return file; |
1369 | ||
1370 | return NULL; | |
1371 | } | |
1372 | ||
3fe3d619 | 1373 | /* |
c31ffb3f | 1374 | * Nobody but us can call enable_trace_kprobe/disable_trace_kprobe at this |
3fe3d619 ON |
1375 | * stage, we can do this lockless. |
1376 | */ | |
413d37d1 MH |
1377 | static __init int kprobe_trace_self_tests_init(void) |
1378 | { | |
231e36f4 | 1379 | int ret, warn = 0; |
413d37d1 | 1380 | int (*target)(int, int, int, int, int, int); |
c31ffb3f | 1381 | struct trace_kprobe *tk; |
7f1d2f82 | 1382 | struct trace_event_file *file; |
413d37d1 | 1383 | |
748ec3a2 YY |
1384 | if (tracing_is_disabled()) |
1385 | return -ENODEV; | |
1386 | ||
413d37d1 MH |
1387 | target = kprobe_trace_selftest_target; |
1388 | ||
1389 | pr_info("Testing kprobe tracing: "); | |
1390 | ||
8ab83f56 SD |
1391 | ret = traceprobe_command("p:testprobe kprobe_trace_selftest_target " |
1392 | "$stack $stack0 +0($stack)", | |
c31ffb3f | 1393 | create_trace_kprobe); |
231e36f4 | 1394 | if (WARN_ON_ONCE(ret)) { |
41a7dd42 | 1395 | pr_warn("error on probing function entry.\n"); |
231e36f4 MH |
1396 | warn++; |
1397 | } else { | |
1398 | /* Enable trace point */ | |
c31ffb3f NK |
1399 | tk = find_trace_kprobe("testprobe", KPROBE_EVENT_SYSTEM); |
1400 | if (WARN_ON_ONCE(tk == NULL)) { | |
41a7dd42 | 1401 | pr_warn("error on getting new probe.\n"); |
231e36f4 | 1402 | warn++; |
41a7dd42 | 1403 | } else { |
c31ffb3f | 1404 | file = find_trace_probe_file(tk, top_trace_array()); |
41a7dd42 MH |
1405 | if (WARN_ON_ONCE(file == NULL)) { |
1406 | pr_warn("error on getting probe file.\n"); | |
1407 | warn++; | |
1408 | } else | |
c31ffb3f | 1409 | enable_trace_kprobe(tk, file); |
41a7dd42 | 1410 | } |
231e36f4 | 1411 | } |
413d37d1 | 1412 | |
8ab83f56 | 1413 | ret = traceprobe_command("r:testprobe2 kprobe_trace_selftest_target " |
c31ffb3f | 1414 | "$retval", create_trace_kprobe); |
231e36f4 | 1415 | if (WARN_ON_ONCE(ret)) { |
41a7dd42 | 1416 | pr_warn("error on probing function return.\n"); |
231e36f4 MH |
1417 | warn++; |
1418 | } else { | |
1419 | /* Enable trace point */ | |
c31ffb3f NK |
1420 | tk = find_trace_kprobe("testprobe2", KPROBE_EVENT_SYSTEM); |
1421 | if (WARN_ON_ONCE(tk == NULL)) { | |
41a7dd42 | 1422 | pr_warn("error on getting 2nd new probe.\n"); |
231e36f4 | 1423 | warn++; |
41a7dd42 | 1424 | } else { |
c31ffb3f | 1425 | file = find_trace_probe_file(tk, top_trace_array()); |
41a7dd42 MH |
1426 | if (WARN_ON_ONCE(file == NULL)) { |
1427 | pr_warn("error on getting probe file.\n"); | |
1428 | warn++; | |
1429 | } else | |
c31ffb3f | 1430 | enable_trace_kprobe(tk, file); |
41a7dd42 | 1431 | } |
231e36f4 MH |
1432 | } |
1433 | ||
1434 | if (warn) | |
1435 | goto end; | |
413d37d1 MH |
1436 | |
1437 | ret = target(1, 2, 3, 4, 5, 6); | |
1438 | ||
02ca1521 | 1439 | /* Disable trace points before removing it */ |
c31ffb3f NK |
1440 | tk = find_trace_kprobe("testprobe", KPROBE_EVENT_SYSTEM); |
1441 | if (WARN_ON_ONCE(tk == NULL)) { | |
41a7dd42 | 1442 | pr_warn("error on getting test probe.\n"); |
02ca1521 | 1443 | warn++; |
41a7dd42 | 1444 | } else { |
c31ffb3f | 1445 | file = find_trace_probe_file(tk, top_trace_array()); |
41a7dd42 MH |
1446 | if (WARN_ON_ONCE(file == NULL)) { |
1447 | pr_warn("error on getting probe file.\n"); | |
1448 | warn++; | |
1449 | } else | |
c31ffb3f | 1450 | disable_trace_kprobe(tk, file); |
41a7dd42 | 1451 | } |
02ca1521 | 1452 | |
c31ffb3f NK |
1453 | tk = find_trace_kprobe("testprobe2", KPROBE_EVENT_SYSTEM); |
1454 | if (WARN_ON_ONCE(tk == NULL)) { | |
41a7dd42 | 1455 | pr_warn("error on getting 2nd test probe.\n"); |
02ca1521 | 1456 | warn++; |
41a7dd42 | 1457 | } else { |
c31ffb3f | 1458 | file = find_trace_probe_file(tk, top_trace_array()); |
41a7dd42 MH |
1459 | if (WARN_ON_ONCE(file == NULL)) { |
1460 | pr_warn("error on getting probe file.\n"); | |
1461 | warn++; | |
1462 | } else | |
c31ffb3f | 1463 | disable_trace_kprobe(tk, file); |
41a7dd42 | 1464 | } |
02ca1521 | 1465 | |
c31ffb3f | 1466 | ret = traceprobe_command("-:testprobe", create_trace_kprobe); |
231e36f4 | 1467 | if (WARN_ON_ONCE(ret)) { |
41a7dd42 | 1468 | pr_warn("error on deleting a probe.\n"); |
231e36f4 MH |
1469 | warn++; |
1470 | } | |
1471 | ||
c31ffb3f | 1472 | ret = traceprobe_command("-:testprobe2", create_trace_kprobe); |
231e36f4 | 1473 | if (WARN_ON_ONCE(ret)) { |
41a7dd42 | 1474 | pr_warn("error on deleting a probe.\n"); |
231e36f4 MH |
1475 | warn++; |
1476 | } | |
413d37d1 | 1477 | |
231e36f4 | 1478 | end: |
c31ffb3f | 1479 | release_all_trace_kprobes(); |
231e36f4 MH |
1480 | if (warn) |
1481 | pr_cont("NG: Some tests are failed. Please check them.\n"); | |
1482 | else | |
1483 | pr_cont("OK\n"); | |
413d37d1 MH |
1484 | return 0; |
1485 | } | |
1486 | ||
1487 | late_initcall(kprobe_trace_self_tests_init); | |
1488 | ||
1489 | #endif |