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