]>
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> | |
22 | #include <linux/kprobes.h> | |
23 | #include <linux/seq_file.h> | |
24 | #include <linux/slab.h> | |
25 | #include <linux/smp.h> | |
26 | #include <linux/debugfs.h> | |
27 | #include <linux/types.h> | |
28 | #include <linux/string.h> | |
29 | #include <linux/ctype.h> | |
30 | #include <linux/ptrace.h> | |
d7a4b414 | 31 | #include <linux/perf_event.h> |
413d37d1 MH |
32 | |
33 | #include "trace.h" | |
34 | #include "trace_output.h" | |
35 | ||
a82378d8 | 36 | #define MAX_TRACE_ARGS 128 |
413d37d1 | 37 | #define MAX_ARGSTR_LEN 63 |
4263565d | 38 | #define MAX_EVENT_NAME_LEN 64 |
f52487e9 | 39 | #define KPROBE_EVENT_SYSTEM "kprobes" |
413d37d1 | 40 | |
a703d946 | 41 | /* Reserved field names */ |
e93f4d85 MH |
42 | #define FIELD_STRING_IP "__probe_ip" |
43 | #define FIELD_STRING_NARGS "__probe_nargs" | |
44 | #define FIELD_STRING_RETIP "__probe_ret_ip" | |
45 | #define FIELD_STRING_FUNC "__probe_func" | |
a703d946 MH |
46 | |
47 | const char *reserved_field_names[] = { | |
48 | "common_type", | |
49 | "common_flags", | |
50 | "common_preempt_count", | |
51 | "common_pid", | |
52 | "common_tgid", | |
53 | "common_lock_depth", | |
54 | FIELD_STRING_IP, | |
55 | FIELD_STRING_NARGS, | |
56 | FIELD_STRING_RETIP, | |
57 | FIELD_STRING_FUNC, | |
58 | }; | |
59 | ||
413d37d1 MH |
60 | struct fetch_func { |
61 | unsigned long (*func)(struct pt_regs *, void *); | |
62 | void *data; | |
63 | }; | |
64 | ||
65 | static __kprobes unsigned long call_fetch(struct fetch_func *f, | |
66 | struct pt_regs *regs) | |
67 | { | |
68 | return f->func(regs, f->data); | |
69 | } | |
70 | ||
71 | /* fetch handlers */ | |
72 | static __kprobes unsigned long fetch_register(struct pt_regs *regs, | |
73 | void *offset) | |
74 | { | |
75 | return regs_get_register(regs, (unsigned int)((unsigned long)offset)); | |
76 | } | |
77 | ||
78 | static __kprobes unsigned long fetch_stack(struct pt_regs *regs, | |
79 | void *num) | |
80 | { | |
81 | return regs_get_kernel_stack_nth(regs, | |
82 | (unsigned int)((unsigned long)num)); | |
83 | } | |
84 | ||
85 | static __kprobes unsigned long fetch_memory(struct pt_regs *regs, void *addr) | |
86 | { | |
87 | unsigned long retval; | |
88 | ||
89 | if (probe_kernel_address(addr, retval)) | |
90 | return 0; | |
91 | return retval; | |
92 | } | |
93 | ||
413d37d1 MH |
94 | static __kprobes unsigned long fetch_retvalue(struct pt_regs *regs, |
95 | void *dummy) | |
96 | { | |
97 | return regs_return_value(regs); | |
98 | } | |
99 | ||
413d37d1 MH |
100 | static __kprobes unsigned long fetch_stack_address(struct pt_regs *regs, |
101 | void *dummy) | |
102 | { | |
103 | return kernel_stack_pointer(regs); | |
104 | } | |
105 | ||
106 | /* Memory fetching by symbol */ | |
107 | struct symbol_cache { | |
108 | char *symbol; | |
109 | long offset; | |
110 | unsigned long addr; | |
111 | }; | |
112 | ||
113 | static unsigned long update_symbol_cache(struct symbol_cache *sc) | |
114 | { | |
115 | sc->addr = (unsigned long)kallsyms_lookup_name(sc->symbol); | |
116 | if (sc->addr) | |
117 | sc->addr += sc->offset; | |
118 | return sc->addr; | |
119 | } | |
120 | ||
121 | static void free_symbol_cache(struct symbol_cache *sc) | |
122 | { | |
123 | kfree(sc->symbol); | |
124 | kfree(sc); | |
125 | } | |
126 | ||
127 | static struct symbol_cache *alloc_symbol_cache(const char *sym, long offset) | |
128 | { | |
129 | struct symbol_cache *sc; | |
130 | ||
131 | if (!sym || strlen(sym) == 0) | |
132 | return NULL; | |
133 | sc = kzalloc(sizeof(struct symbol_cache), GFP_KERNEL); | |
134 | if (!sc) | |
135 | return NULL; | |
136 | ||
137 | sc->symbol = kstrdup(sym, GFP_KERNEL); | |
138 | if (!sc->symbol) { | |
139 | kfree(sc); | |
140 | return NULL; | |
141 | } | |
142 | sc->offset = offset; | |
143 | ||
144 | update_symbol_cache(sc); | |
145 | return sc; | |
146 | } | |
147 | ||
148 | static __kprobes unsigned long fetch_symbol(struct pt_regs *regs, void *data) | |
149 | { | |
150 | struct symbol_cache *sc = data; | |
151 | ||
152 | if (sc->addr) | |
153 | return fetch_memory(regs, (void *)sc->addr); | |
154 | else | |
155 | return 0; | |
156 | } | |
157 | ||
158 | /* Special indirect memory access interface */ | |
159 | struct indirect_fetch_data { | |
160 | struct fetch_func orig; | |
161 | long offset; | |
162 | }; | |
163 | ||
164 | static __kprobes unsigned long fetch_indirect(struct pt_regs *regs, void *data) | |
165 | { | |
166 | struct indirect_fetch_data *ind = data; | |
167 | unsigned long addr; | |
168 | ||
169 | addr = call_fetch(&ind->orig, regs); | |
170 | if (addr) { | |
171 | addr += ind->offset; | |
172 | return fetch_memory(regs, (void *)addr); | |
173 | } else | |
174 | return 0; | |
175 | } | |
176 | ||
177 | static __kprobes void free_indirect_fetch_data(struct indirect_fetch_data *data) | |
178 | { | |
179 | if (data->orig.func == fetch_indirect) | |
180 | free_indirect_fetch_data(data->orig.data); | |
181 | else if (data->orig.func == fetch_symbol) | |
182 | free_symbol_cache(data->orig.data); | |
183 | kfree(data); | |
184 | } | |
185 | ||
186 | /** | |
77b44d1b | 187 | * Kprobe event core functions |
413d37d1 MH |
188 | */ |
189 | ||
eca0d916 MH |
190 | struct probe_arg { |
191 | struct fetch_func fetch; | |
192 | const char *name; | |
193 | }; | |
194 | ||
50d78056 MH |
195 | /* Flags for trace_probe */ |
196 | #define TP_FLAG_TRACE 1 | |
197 | #define TP_FLAG_PROFILE 2 | |
198 | ||
413d37d1 MH |
199 | struct trace_probe { |
200 | struct list_head list; | |
4a846b44 | 201 | struct kretprobe rp; /* Use rp.kp for kprobe use */ |
cd7e7bd5 | 202 | unsigned long nhit; |
50d78056 | 203 | unsigned int flags; /* For TP_FLAG_* */ |
413d37d1 | 204 | const char *symbol; /* symbol name */ |
2239291a | 205 | struct ftrace_event_class class; |
413d37d1 | 206 | struct ftrace_event_call call; |
ff50d991 | 207 | struct trace_event event; |
a82378d8 | 208 | unsigned int nr_args; |
eca0d916 | 209 | struct probe_arg args[]; |
413d37d1 MH |
210 | }; |
211 | ||
a82378d8 MH |
212 | #define SIZEOF_TRACE_PROBE(n) \ |
213 | (offsetof(struct trace_probe, args) + \ | |
eca0d916 | 214 | (sizeof(struct probe_arg) * (n))) |
a82378d8 | 215 | |
413d37d1 MH |
216 | static __kprobes int probe_is_return(struct trace_probe *tp) |
217 | { | |
4a846b44 | 218 | return tp->rp.handler != NULL; |
413d37d1 MH |
219 | } |
220 | ||
221 | static __kprobes const char *probe_symbol(struct trace_probe *tp) | |
222 | { | |
223 | return tp->symbol ? tp->symbol : "unknown"; | |
224 | } | |
225 | ||
30a7e073 | 226 | static int probe_arg_string(char *buf, size_t n, struct fetch_func *ff) |
413d37d1 MH |
227 | { |
228 | int ret = -EINVAL; | |
229 | ||
14640106 | 230 | if (ff->func == fetch_register) { |
413d37d1 MH |
231 | const char *name; |
232 | name = regs_query_register_name((unsigned int)((long)ff->data)); | |
233 | ret = snprintf(buf, n, "%%%s", name); | |
234 | } else if (ff->func == fetch_stack) | |
2e06ff63 | 235 | ret = snprintf(buf, n, "$stack%lu", (unsigned long)ff->data); |
413d37d1 MH |
236 | else if (ff->func == fetch_memory) |
237 | ret = snprintf(buf, n, "@0x%p", ff->data); | |
238 | else if (ff->func == fetch_symbol) { | |
239 | struct symbol_cache *sc = ff->data; | |
52a11f35 LJ |
240 | if (sc->offset) |
241 | ret = snprintf(buf, n, "@%s%+ld", sc->symbol, | |
242 | sc->offset); | |
243 | else | |
244 | ret = snprintf(buf, n, "@%s", sc->symbol); | |
413d37d1 | 245 | } else if (ff->func == fetch_retvalue) |
2e06ff63 | 246 | ret = snprintf(buf, n, "$retval"); |
413d37d1 | 247 | else if (ff->func == fetch_stack_address) |
2e06ff63 | 248 | ret = snprintf(buf, n, "$stack"); |
413d37d1 MH |
249 | else if (ff->func == fetch_indirect) { |
250 | struct indirect_fetch_data *id = ff->data; | |
251 | size_t l = 0; | |
252 | ret = snprintf(buf, n, "%+ld(", id->offset); | |
253 | if (ret >= n) | |
254 | goto end; | |
255 | l += ret; | |
30a7e073 | 256 | ret = probe_arg_string(buf + l, n - l, &id->orig); |
413d37d1 MH |
257 | if (ret < 0) |
258 | goto end; | |
259 | l += ret; | |
260 | ret = snprintf(buf + l, n - l, ")"); | |
261 | ret += l; | |
262 | } | |
263 | end: | |
264 | if (ret >= n) | |
265 | return -ENOSPC; | |
266 | return ret; | |
267 | } | |
268 | ||
269 | static int register_probe_event(struct trace_probe *tp); | |
270 | static void unregister_probe_event(struct trace_probe *tp); | |
271 | ||
272 | static DEFINE_MUTEX(probe_lock); | |
273 | static LIST_HEAD(probe_list); | |
274 | ||
50d78056 MH |
275 | static int kprobe_dispatcher(struct kprobe *kp, struct pt_regs *regs); |
276 | static int kretprobe_dispatcher(struct kretprobe_instance *ri, | |
277 | struct pt_regs *regs); | |
278 | ||
6f3cf440 MH |
279 | /* Check the name is good for event/group */ |
280 | static int check_event_name(const char *name) | |
281 | { | |
282 | if (!isalpha(*name) && *name != '_') | |
283 | return 0; | |
284 | while (*++name != '\0') { | |
285 | if (!isalpha(*name) && !isdigit(*name) && *name != '_') | |
286 | return 0; | |
287 | } | |
288 | return 1; | |
289 | } | |
290 | ||
4a846b44 MH |
291 | /* |
292 | * Allocate new trace_probe and initialize it (including kprobes). | |
293 | */ | |
f52487e9 MH |
294 | static struct trace_probe *alloc_trace_probe(const char *group, |
295 | const char *event, | |
4a846b44 MH |
296 | void *addr, |
297 | const char *symbol, | |
298 | unsigned long offs, | |
299 | int nargs, int is_return) | |
413d37d1 MH |
300 | { |
301 | struct trace_probe *tp; | |
6f3cf440 | 302 | int ret = -ENOMEM; |
413d37d1 | 303 | |
a82378d8 | 304 | tp = kzalloc(SIZEOF_TRACE_PROBE(nargs), GFP_KERNEL); |
413d37d1 | 305 | if (!tp) |
6f3cf440 | 306 | return ERR_PTR(ret); |
413d37d1 MH |
307 | |
308 | if (symbol) { | |
309 | tp->symbol = kstrdup(symbol, GFP_KERNEL); | |
310 | if (!tp->symbol) | |
311 | goto error; | |
4a846b44 MH |
312 | tp->rp.kp.symbol_name = tp->symbol; |
313 | tp->rp.kp.offset = offs; | |
314 | } else | |
315 | tp->rp.kp.addr = addr; | |
316 | ||
317 | if (is_return) | |
50d78056 | 318 | tp->rp.handler = kretprobe_dispatcher; |
4a846b44 | 319 | else |
50d78056 | 320 | tp->rp.kp.pre_handler = kprobe_dispatcher; |
4a846b44 | 321 | |
6f3cf440 MH |
322 | if (!event || !check_event_name(event)) { |
323 | ret = -EINVAL; | |
4263565d | 324 | goto error; |
6f3cf440 MH |
325 | } |
326 | ||
2239291a | 327 | tp->call.class = &tp->class; |
4263565d MH |
328 | tp->call.name = kstrdup(event, GFP_KERNEL); |
329 | if (!tp->call.name) | |
330 | goto error; | |
413d37d1 | 331 | |
6f3cf440 MH |
332 | if (!group || !check_event_name(group)) { |
333 | ret = -EINVAL; | |
f52487e9 | 334 | goto error; |
6f3cf440 MH |
335 | } |
336 | ||
2239291a SR |
337 | tp->class.system = kstrdup(group, GFP_KERNEL); |
338 | if (!tp->class.system) | |
f52487e9 MH |
339 | goto error; |
340 | ||
413d37d1 MH |
341 | INIT_LIST_HEAD(&tp->list); |
342 | return tp; | |
343 | error: | |
f52487e9 | 344 | kfree(tp->call.name); |
413d37d1 MH |
345 | kfree(tp->symbol); |
346 | kfree(tp); | |
6f3cf440 | 347 | return ERR_PTR(ret); |
413d37d1 MH |
348 | } |
349 | ||
eca0d916 MH |
350 | static void free_probe_arg(struct probe_arg *arg) |
351 | { | |
352 | if (arg->fetch.func == fetch_symbol) | |
353 | free_symbol_cache(arg->fetch.data); | |
354 | else if (arg->fetch.func == fetch_indirect) | |
355 | free_indirect_fetch_data(arg->fetch.data); | |
356 | kfree(arg->name); | |
357 | } | |
358 | ||
413d37d1 MH |
359 | static void free_trace_probe(struct trace_probe *tp) |
360 | { | |
361 | int i; | |
362 | ||
363 | for (i = 0; i < tp->nr_args; i++) | |
eca0d916 | 364 | free_probe_arg(&tp->args[i]); |
413d37d1 | 365 | |
8f082018 | 366 | kfree(tp->call.class->system); |
413d37d1 MH |
367 | kfree(tp->call.name); |
368 | kfree(tp->symbol); | |
369 | kfree(tp); | |
370 | } | |
371 | ||
dd004c47 MH |
372 | static struct trace_probe *find_probe_event(const char *event, |
373 | const char *group) | |
413d37d1 MH |
374 | { |
375 | struct trace_probe *tp; | |
376 | ||
377 | list_for_each_entry(tp, &probe_list, list) | |
dd004c47 | 378 | if (strcmp(tp->call.name, event) == 0 && |
8f082018 | 379 | strcmp(tp->call.class->system, group) == 0) |
413d37d1 MH |
380 | return tp; |
381 | return NULL; | |
382 | } | |
383 | ||
2d5e067e MH |
384 | /* Unregister a trace_probe and probe_event: call with locking probe_lock */ |
385 | static void unregister_trace_probe(struct trace_probe *tp) | |
413d37d1 MH |
386 | { |
387 | if (probe_is_return(tp)) | |
388 | unregister_kretprobe(&tp->rp); | |
389 | else | |
4a846b44 | 390 | unregister_kprobe(&tp->rp.kp); |
413d37d1 | 391 | list_del(&tp->list); |
2d5e067e | 392 | unregister_probe_event(tp); |
413d37d1 MH |
393 | } |
394 | ||
395 | /* Register a trace_probe and probe_event */ | |
396 | static int register_trace_probe(struct trace_probe *tp) | |
397 | { | |
398 | struct trace_probe *old_tp; | |
399 | int ret; | |
400 | ||
401 | mutex_lock(&probe_lock); | |
402 | ||
2d5e067e | 403 | /* register as an event */ |
8f082018 | 404 | old_tp = find_probe_event(tp->call.name, tp->call.class->system); |
2d5e067e MH |
405 | if (old_tp) { |
406 | /* delete old event */ | |
407 | unregister_trace_probe(old_tp); | |
408 | free_trace_probe(old_tp); | |
409 | } | |
410 | ret = register_probe_event(tp); | |
411 | if (ret) { | |
412 | pr_warning("Faild to register probe event(%d)\n", ret); | |
413 | goto end; | |
414 | } | |
415 | ||
5a0d9050 | 416 | tp->rp.kp.flags |= KPROBE_FLAG_DISABLED; |
413d37d1 MH |
417 | if (probe_is_return(tp)) |
418 | ret = register_kretprobe(&tp->rp); | |
419 | else | |
4a846b44 | 420 | ret = register_kprobe(&tp->rp.kp); |
413d37d1 MH |
421 | |
422 | if (ret) { | |
423 | pr_warning("Could not insert probe(%d)\n", ret); | |
424 | if (ret == -EILSEQ) { | |
425 | pr_warning("Probing address(0x%p) is not an " | |
426 | "instruction boundary.\n", | |
4a846b44 | 427 | tp->rp.kp.addr); |
413d37d1 MH |
428 | ret = -EINVAL; |
429 | } | |
2d5e067e MH |
430 | unregister_probe_event(tp); |
431 | } else | |
432 | list_add_tail(&tp->list, &probe_list); | |
413d37d1 MH |
433 | end: |
434 | mutex_unlock(&probe_lock); | |
435 | return ret; | |
436 | } | |
437 | ||
438 | /* Split symbol and offset. */ | |
2fba0c88 | 439 | static int split_symbol_offset(char *symbol, unsigned long *offset) |
413d37d1 MH |
440 | { |
441 | char *tmp; | |
442 | int ret; | |
443 | ||
444 | if (!offset) | |
445 | return -EINVAL; | |
446 | ||
447 | tmp = strchr(symbol, '+'); | |
413d37d1 MH |
448 | if (tmp) { |
449 | /* skip sign because strict_strtol doesn't accept '+' */ | |
2fba0c88 | 450 | ret = strict_strtoul(tmp + 1, 0, offset); |
413d37d1 MH |
451 | if (ret) |
452 | return ret; | |
413d37d1 MH |
453 | *tmp = '\0'; |
454 | } else | |
455 | *offset = 0; | |
456 | return 0; | |
457 | } | |
458 | ||
459 | #define PARAM_MAX_ARGS 16 | |
460 | #define PARAM_MAX_STACK (THREAD_SIZE / sizeof(unsigned long)) | |
461 | ||
405b2651 | 462 | static int parse_probe_vars(char *arg, struct fetch_func *ff, int is_return) |
413d37d1 MH |
463 | { |
464 | int ret = 0; | |
465 | unsigned long param; | |
413d37d1 | 466 | |
2e06ff63 MH |
467 | if (strcmp(arg, "retval") == 0) { |
468 | if (is_return) { | |
413d37d1 MH |
469 | ff->func = fetch_retvalue; |
470 | ff->data = NULL; | |
413d37d1 MH |
471 | } else |
472 | ret = -EINVAL; | |
2e06ff63 MH |
473 | } else if (strncmp(arg, "stack", 5) == 0) { |
474 | if (arg[5] == '\0') { | |
413d37d1 MH |
475 | ff->func = fetch_stack_address; |
476 | ff->data = NULL; | |
2e06ff63 MH |
477 | } else if (isdigit(arg[5])) { |
478 | ret = strict_strtoul(arg + 5, 10, ¶m); | |
413d37d1 MH |
479 | if (ret || param > PARAM_MAX_STACK) |
480 | ret = -EINVAL; | |
481 | else { | |
482 | ff->func = fetch_stack; | |
483 | ff->data = (void *)param; | |
484 | } | |
2e06ff63 MH |
485 | } else |
486 | ret = -EINVAL; | |
2e06ff63 | 487 | } else |
405b2651 | 488 | ret = -EINVAL; |
405b2651 MH |
489 | return ret; |
490 | } | |
491 | ||
ba8665d7 MH |
492 | /* Recursive argument parser */ |
493 | static int __parse_probe_arg(char *arg, struct fetch_func *ff, int is_return) | |
405b2651 MH |
494 | { |
495 | int ret = 0; | |
496 | unsigned long param; | |
497 | long offset; | |
498 | char *tmp; | |
499 | ||
500 | switch (arg[0]) { | |
501 | case '$': | |
502 | ret = parse_probe_vars(arg + 1, ff, is_return); | |
503 | break; | |
504 | case '%': /* named register */ | |
505 | ret = regs_query_register_offset(arg + 1); | |
506 | if (ret >= 0) { | |
507 | ff->func = fetch_register; | |
508 | ff->data = (void *)(unsigned long)ret; | |
509 | ret = 0; | |
510 | } | |
511 | break; | |
413d37d1 MH |
512 | case '@': /* memory or symbol */ |
513 | if (isdigit(arg[1])) { | |
514 | ret = strict_strtoul(arg + 1, 0, ¶m); | |
515 | if (ret) | |
516 | break; | |
517 | ff->func = fetch_memory; | |
518 | ff->data = (void *)param; | |
519 | } else { | |
520 | ret = split_symbol_offset(arg + 1, &offset); | |
521 | if (ret) | |
522 | break; | |
405b2651 | 523 | ff->data = alloc_symbol_cache(arg + 1, offset); |
413d37d1 MH |
524 | if (ff->data) |
525 | ff->func = fetch_symbol; | |
526 | else | |
527 | ret = -EINVAL; | |
528 | } | |
529 | break; | |
530 | case '+': /* indirect memory */ | |
531 | case '-': | |
532 | tmp = strchr(arg, '('); | |
533 | if (!tmp) { | |
534 | ret = -EINVAL; | |
535 | break; | |
536 | } | |
537 | *tmp = '\0'; | |
538 | ret = strict_strtol(arg + 1, 0, &offset); | |
539 | if (ret) | |
540 | break; | |
541 | if (arg[0] == '-') | |
542 | offset = -offset; | |
543 | arg = tmp + 1; | |
544 | tmp = strrchr(arg, ')'); | |
545 | if (tmp) { | |
546 | struct indirect_fetch_data *id; | |
547 | *tmp = '\0'; | |
548 | id = kzalloc(sizeof(struct indirect_fetch_data), | |
549 | GFP_KERNEL); | |
550 | if (!id) | |
551 | return -ENOMEM; | |
552 | id->offset = offset; | |
ba8665d7 | 553 | ret = __parse_probe_arg(arg, &id->orig, is_return); |
413d37d1 MH |
554 | if (ret) |
555 | kfree(id); | |
556 | else { | |
557 | ff->func = fetch_indirect; | |
558 | ff->data = (void *)id; | |
559 | } | |
560 | } else | |
561 | ret = -EINVAL; | |
562 | break; | |
563 | default: | |
564 | /* TODO: support custom handler */ | |
565 | ret = -EINVAL; | |
566 | } | |
567 | return ret; | |
568 | } | |
569 | ||
ba8665d7 MH |
570 | /* String length checking wrapper */ |
571 | static int parse_probe_arg(char *arg, struct fetch_func *ff, int is_return) | |
572 | { | |
573 | if (strlen(arg) > MAX_ARGSTR_LEN) { | |
574 | pr_info("Argument is too long.: %s\n", arg); | |
575 | return -ENOSPC; | |
576 | } | |
577 | return __parse_probe_arg(arg, ff, is_return); | |
578 | } | |
579 | ||
a703d946 MH |
580 | /* Return 1 if name is reserved or already used by another argument */ |
581 | static int conflict_field_name(const char *name, | |
582 | struct probe_arg *args, int narg) | |
583 | { | |
584 | int i; | |
585 | for (i = 0; i < ARRAY_SIZE(reserved_field_names); i++) | |
586 | if (strcmp(reserved_field_names[i], name) == 0) | |
587 | return 1; | |
588 | for (i = 0; i < narg; i++) | |
589 | if (strcmp(args[i].name, name) == 0) | |
590 | return 1; | |
591 | return 0; | |
592 | } | |
593 | ||
413d37d1 MH |
594 | static int create_trace_probe(int argc, char **argv) |
595 | { | |
596 | /* | |
597 | * Argument syntax: | |
f52487e9 MH |
598 | * - Add kprobe: p[:[GRP/]EVENT] KSYM[+OFFS]|KADDR [FETCHARGS] |
599 | * - Add kretprobe: r[:[GRP/]EVENT] KSYM[+0] [FETCHARGS] | |
413d37d1 | 600 | * Fetch args: |
2e06ff63 MH |
601 | * $retval : fetch return value |
602 | * $stack : fetch stack address | |
603 | * $stackN : fetch Nth of stack (N:0-) | |
413d37d1 MH |
604 | * @ADDR : fetch memory at ADDR (ADDR should be in kernel) |
605 | * @SYM[+|-offs] : fetch memory at SYM +|- offs (SYM is a data symbol) | |
606 | * %REG : fetch register REG | |
607 | * Indirect memory fetch: | |
608 | * +|-offs(ARG) : fetch memory at ARG +|- offs address. | |
eca0d916 MH |
609 | * Alias name of args: |
610 | * NAME=FETCHARG : set NAME as alias of FETCHARG. | |
413d37d1 MH |
611 | */ |
612 | struct trace_probe *tp; | |
413d37d1 | 613 | int i, ret = 0; |
a7c312be | 614 | int is_return = 0, is_delete = 0; |
f52487e9 | 615 | char *symbol = NULL, *event = NULL, *arg = NULL, *group = NULL; |
2fba0c88 | 616 | unsigned long offset = 0; |
413d37d1 | 617 | void *addr = NULL; |
4a846b44 | 618 | char buf[MAX_EVENT_NAME_LEN]; |
413d37d1 | 619 | |
a7c312be | 620 | /* argc must be >= 1 */ |
413d37d1 MH |
621 | if (argv[0][0] == 'p') |
622 | is_return = 0; | |
623 | else if (argv[0][0] == 'r') | |
624 | is_return = 1; | |
a7c312be MH |
625 | else if (argv[0][0] == '-') |
626 | is_delete = 1; | |
e63cc239 | 627 | else { |
a7c312be MH |
628 | pr_info("Probe definition must be started with 'p', 'r' or" |
629 | " '-'.\n"); | |
413d37d1 | 630 | return -EINVAL; |
e63cc239 | 631 | } |
413d37d1 MH |
632 | |
633 | if (argv[0][1] == ':') { | |
634 | event = &argv[0][2]; | |
f52487e9 MH |
635 | if (strchr(event, '/')) { |
636 | group = event; | |
637 | event = strchr(group, '/') + 1; | |
638 | event[-1] = '\0'; | |
639 | if (strlen(group) == 0) { | |
a5efd925 | 640 | pr_info("Group name is not specified\n"); |
f52487e9 MH |
641 | return -EINVAL; |
642 | } | |
643 | } | |
413d37d1 | 644 | if (strlen(event) == 0) { |
a5efd925 | 645 | pr_info("Event name is not specified\n"); |
413d37d1 MH |
646 | return -EINVAL; |
647 | } | |
648 | } | |
a7c312be MH |
649 | if (!group) |
650 | group = KPROBE_EVENT_SYSTEM; | |
413d37d1 | 651 | |
a7c312be MH |
652 | if (is_delete) { |
653 | if (!event) { | |
654 | pr_info("Delete command needs an event name.\n"); | |
655 | return -EINVAL; | |
656 | } | |
657 | tp = find_probe_event(event, group); | |
658 | if (!tp) { | |
659 | pr_info("Event %s/%s doesn't exist.\n", group, event); | |
660 | return -ENOENT; | |
661 | } | |
662 | /* delete an event */ | |
663 | unregister_trace_probe(tp); | |
664 | free_trace_probe(tp); | |
665 | return 0; | |
666 | } | |
667 | ||
668 | if (argc < 2) { | |
669 | pr_info("Probe point is not specified.\n"); | |
670 | return -EINVAL; | |
671 | } | |
413d37d1 | 672 | if (isdigit(argv[1][0])) { |
e63cc239 MH |
673 | if (is_return) { |
674 | pr_info("Return probe point must be a symbol.\n"); | |
413d37d1 | 675 | return -EINVAL; |
e63cc239 | 676 | } |
413d37d1 | 677 | /* an address specified */ |
a9bb18f3 | 678 | ret = strict_strtoul(&argv[1][0], 0, (unsigned long *)&addr); |
e63cc239 MH |
679 | if (ret) { |
680 | pr_info("Failed to parse address.\n"); | |
413d37d1 | 681 | return ret; |
e63cc239 | 682 | } |
413d37d1 MH |
683 | } else { |
684 | /* a symbol specified */ | |
685 | symbol = argv[1]; | |
686 | /* TODO: support .init module functions */ | |
687 | ret = split_symbol_offset(symbol, &offset); | |
e63cc239 MH |
688 | if (ret) { |
689 | pr_info("Failed to parse symbol.\n"); | |
413d37d1 | 690 | return ret; |
e63cc239 MH |
691 | } |
692 | if (offset && is_return) { | |
693 | pr_info("Return probe must be used without offset.\n"); | |
413d37d1 | 694 | return -EINVAL; |
e63cc239 | 695 | } |
413d37d1 | 696 | } |
a82378d8 | 697 | argc -= 2; argv += 2; |
413d37d1 MH |
698 | |
699 | /* setup a probe */ | |
4263565d MH |
700 | if (!event) { |
701 | /* Make a new event name */ | |
4263565d | 702 | if (symbol) |
6f3cf440 | 703 | snprintf(buf, MAX_EVENT_NAME_LEN, "%c_%s_%ld", |
4263565d MH |
704 | is_return ? 'r' : 'p', symbol, offset); |
705 | else | |
6f3cf440 | 706 | snprintf(buf, MAX_EVENT_NAME_LEN, "%c_0x%p", |
4263565d | 707 | is_return ? 'r' : 'p', addr); |
4a846b44 MH |
708 | event = buf; |
709 | } | |
f52487e9 MH |
710 | tp = alloc_trace_probe(group, event, addr, symbol, offset, argc, |
711 | is_return); | |
e63cc239 MH |
712 | if (IS_ERR(tp)) { |
713 | pr_info("Failed to allocate trace_probe.(%d)\n", | |
714 | (int)PTR_ERR(tp)); | |
413d37d1 | 715 | return PTR_ERR(tp); |
e63cc239 | 716 | } |
413d37d1 | 717 | |
413d37d1 | 718 | /* parse arguments */ |
a82378d8 MH |
719 | ret = 0; |
720 | for (i = 0; i < argc && i < MAX_TRACE_ARGS; i++) { | |
eca0d916 MH |
721 | /* Parse argument name */ |
722 | arg = strchr(argv[i], '='); | |
723 | if (arg) | |
724 | *arg++ = '\0'; | |
725 | else | |
726 | arg = argv[i]; | |
a703d946 MH |
727 | |
728 | if (conflict_field_name(argv[i], tp->args, i)) { | |
e63cc239 MH |
729 | pr_info("Argument%d name '%s' conflicts with " |
730 | "another field.\n", i, argv[i]); | |
a703d946 MH |
731 | ret = -EINVAL; |
732 | goto error; | |
733 | } | |
734 | ||
eca0d916 | 735 | tp->args[i].name = kstrdup(argv[i], GFP_KERNEL); |
ba8665d7 MH |
736 | if (!tp->args[i].name) { |
737 | pr_info("Failed to allocate argument%d name '%s'.\n", | |
738 | i, argv[i]); | |
739 | ret = -ENOMEM; | |
413d37d1 MH |
740 | goto error; |
741 | } | |
ba8665d7 MH |
742 | |
743 | /* Parse fetch argument */ | |
eca0d916 | 744 | ret = parse_probe_arg(arg, &tp->args[i].fetch, is_return); |
e63cc239 MH |
745 | if (ret) { |
746 | pr_info("Parse error at argument%d. (%d)\n", i, ret); | |
abab9d37 | 747 | kfree(tp->args[i].name); |
413d37d1 | 748 | goto error; |
e63cc239 | 749 | } |
abab9d37 LJ |
750 | |
751 | tp->nr_args++; | |
413d37d1 | 752 | } |
413d37d1 MH |
753 | |
754 | ret = register_trace_probe(tp); | |
755 | if (ret) | |
756 | goto error; | |
757 | return 0; | |
758 | ||
759 | error: | |
760 | free_trace_probe(tp); | |
761 | return ret; | |
762 | } | |
763 | ||
764 | static void cleanup_all_probes(void) | |
765 | { | |
766 | struct trace_probe *tp; | |
767 | ||
768 | mutex_lock(&probe_lock); | |
769 | /* TODO: Use batch unregistration */ | |
770 | while (!list_empty(&probe_list)) { | |
771 | tp = list_entry(probe_list.next, struct trace_probe, list); | |
772 | unregister_trace_probe(tp); | |
773 | free_trace_probe(tp); | |
774 | } | |
775 | mutex_unlock(&probe_lock); | |
776 | } | |
777 | ||
778 | ||
779 | /* Probes listing interfaces */ | |
780 | static void *probes_seq_start(struct seq_file *m, loff_t *pos) | |
781 | { | |
782 | mutex_lock(&probe_lock); | |
783 | return seq_list_start(&probe_list, *pos); | |
784 | } | |
785 | ||
786 | static void *probes_seq_next(struct seq_file *m, void *v, loff_t *pos) | |
787 | { | |
788 | return seq_list_next(v, &probe_list, pos); | |
789 | } | |
790 | ||
791 | static void probes_seq_stop(struct seq_file *m, void *v) | |
792 | { | |
793 | mutex_unlock(&probe_lock); | |
794 | } | |
795 | ||
796 | static int probes_seq_show(struct seq_file *m, void *v) | |
797 | { | |
798 | struct trace_probe *tp = v; | |
799 | int i, ret; | |
800 | char buf[MAX_ARGSTR_LEN + 1]; | |
801 | ||
802 | seq_printf(m, "%c", probe_is_return(tp) ? 'r' : 'p'); | |
8f082018 | 803 | seq_printf(m, ":%s/%s", tp->call.class->system, tp->call.name); |
413d37d1 | 804 | |
52a11f35 LJ |
805 | if (!tp->symbol) |
806 | seq_printf(m, " 0x%p", tp->rp.kp.addr); | |
807 | else if (tp->rp.kp.offset) | |
4a846b44 | 808 | seq_printf(m, " %s+%u", probe_symbol(tp), tp->rp.kp.offset); |
413d37d1 | 809 | else |
52a11f35 | 810 | seq_printf(m, " %s", probe_symbol(tp)); |
413d37d1 MH |
811 | |
812 | for (i = 0; i < tp->nr_args; i++) { | |
eca0d916 | 813 | ret = probe_arg_string(buf, MAX_ARGSTR_LEN, &tp->args[i].fetch); |
413d37d1 MH |
814 | if (ret < 0) { |
815 | pr_warning("Argument%d decoding error(%d).\n", i, ret); | |
816 | return ret; | |
817 | } | |
eca0d916 | 818 | seq_printf(m, " %s=%s", tp->args[i].name, buf); |
413d37d1 MH |
819 | } |
820 | seq_printf(m, "\n"); | |
821 | return 0; | |
822 | } | |
823 | ||
824 | static const struct seq_operations probes_seq_op = { | |
825 | .start = probes_seq_start, | |
826 | .next = probes_seq_next, | |
827 | .stop = probes_seq_stop, | |
828 | .show = probes_seq_show | |
829 | }; | |
830 | ||
831 | static int probes_open(struct inode *inode, struct file *file) | |
832 | { | |
833 | if ((file->f_mode & FMODE_WRITE) && | |
834 | (file->f_flags & O_TRUNC)) | |
835 | cleanup_all_probes(); | |
836 | ||
837 | return seq_open(file, &probes_seq_op); | |
838 | } | |
839 | ||
840 | static int command_trace_probe(const char *buf) | |
841 | { | |
842 | char **argv; | |
843 | int argc = 0, ret = 0; | |
844 | ||
845 | argv = argv_split(GFP_KERNEL, buf, &argc); | |
846 | if (!argv) | |
847 | return -ENOMEM; | |
848 | ||
849 | if (argc) | |
850 | ret = create_trace_probe(argc, argv); | |
851 | ||
852 | argv_free(argv); | |
853 | return ret; | |
854 | } | |
855 | ||
856 | #define WRITE_BUFSIZE 128 | |
857 | ||
858 | static ssize_t probes_write(struct file *file, const char __user *buffer, | |
859 | size_t count, loff_t *ppos) | |
860 | { | |
861 | char *kbuf, *tmp; | |
862 | int ret; | |
863 | size_t done; | |
864 | size_t size; | |
865 | ||
866 | kbuf = kmalloc(WRITE_BUFSIZE, GFP_KERNEL); | |
867 | if (!kbuf) | |
868 | return -ENOMEM; | |
869 | ||
870 | ret = done = 0; | |
871 | while (done < count) { | |
872 | size = count - done; | |
873 | if (size >= WRITE_BUFSIZE) | |
874 | size = WRITE_BUFSIZE - 1; | |
875 | if (copy_from_user(kbuf, buffer + done, size)) { | |
876 | ret = -EFAULT; | |
877 | goto out; | |
878 | } | |
879 | kbuf[size] = '\0'; | |
880 | tmp = strchr(kbuf, '\n'); | |
881 | if (tmp) { | |
882 | *tmp = '\0'; | |
883 | size = tmp - kbuf + 1; | |
884 | } else if (done + size < count) { | |
885 | pr_warning("Line length is too long: " | |
886 | "Should be less than %d.", WRITE_BUFSIZE); | |
887 | ret = -EINVAL; | |
888 | goto out; | |
889 | } | |
890 | done += size; | |
891 | /* Remove comments */ | |
892 | tmp = strchr(kbuf, '#'); | |
893 | if (tmp) | |
894 | *tmp = '\0'; | |
895 | ||
896 | ret = command_trace_probe(kbuf); | |
897 | if (ret) | |
898 | goto out; | |
899 | } | |
900 | ret = done; | |
901 | out: | |
902 | kfree(kbuf); | |
903 | return ret; | |
904 | } | |
905 | ||
906 | static const struct file_operations kprobe_events_ops = { | |
907 | .owner = THIS_MODULE, | |
908 | .open = probes_open, | |
909 | .read = seq_read, | |
910 | .llseek = seq_lseek, | |
911 | .release = seq_release, | |
912 | .write = probes_write, | |
913 | }; | |
914 | ||
cd7e7bd5 MH |
915 | /* Probes profiling interfaces */ |
916 | static int probes_profile_seq_show(struct seq_file *m, void *v) | |
917 | { | |
918 | struct trace_probe *tp = v; | |
919 | ||
920 | seq_printf(m, " %-44s %15lu %15lu\n", tp->call.name, tp->nhit, | |
4a846b44 | 921 | tp->rp.kp.nmissed); |
cd7e7bd5 MH |
922 | |
923 | return 0; | |
924 | } | |
925 | ||
926 | static const struct seq_operations profile_seq_op = { | |
927 | .start = probes_seq_start, | |
928 | .next = probes_seq_next, | |
929 | .stop = probes_seq_stop, | |
930 | .show = probes_profile_seq_show | |
931 | }; | |
932 | ||
933 | static int profile_open(struct inode *inode, struct file *file) | |
934 | { | |
935 | return seq_open(file, &profile_seq_op); | |
936 | } | |
937 | ||
938 | static const struct file_operations kprobe_profile_ops = { | |
939 | .owner = THIS_MODULE, | |
940 | .open = profile_open, | |
941 | .read = seq_read, | |
942 | .llseek = seq_lseek, | |
943 | .release = seq_release, | |
944 | }; | |
945 | ||
413d37d1 | 946 | /* Kprobe handler */ |
1e12a4a7 | 947 | static __kprobes void kprobe_trace_func(struct kprobe *kp, struct pt_regs *regs) |
413d37d1 | 948 | { |
4a846b44 | 949 | struct trace_probe *tp = container_of(kp, struct trace_probe, rp.kp); |
413d37d1 MH |
950 | struct kprobe_trace_entry *entry; |
951 | struct ring_buffer_event *event; | |
8f8ffe24 | 952 | struct ring_buffer *buffer; |
413d37d1 MH |
953 | int size, i, pc; |
954 | unsigned long irq_flags; | |
4263565d | 955 | struct ftrace_event_call *call = &tp->call; |
413d37d1 | 956 | |
cd7e7bd5 MH |
957 | tp->nhit++; |
958 | ||
413d37d1 MH |
959 | local_save_flags(irq_flags); |
960 | pc = preempt_count(); | |
961 | ||
962 | size = SIZEOF_KPROBE_TRACE_ENTRY(tp->nr_args); | |
963 | ||
8f8ffe24 | 964 | event = trace_current_buffer_lock_reserve(&buffer, call->id, size, |
413d37d1 MH |
965 | irq_flags, pc); |
966 | if (!event) | |
1e12a4a7 | 967 | return; |
413d37d1 MH |
968 | |
969 | entry = ring_buffer_event_data(event); | |
970 | entry->nargs = tp->nr_args; | |
971 | entry->ip = (unsigned long)kp->addr; | |
972 | for (i = 0; i < tp->nr_args; i++) | |
eca0d916 | 973 | entry->args[i] = call_fetch(&tp->args[i].fetch, regs); |
413d37d1 | 974 | |
8f8ffe24 FW |
975 | if (!filter_current_check_discard(buffer, call, entry, event)) |
976 | trace_nowake_buffer_unlock_commit(buffer, event, irq_flags, pc); | |
413d37d1 MH |
977 | } |
978 | ||
979 | /* Kretprobe handler */ | |
1e12a4a7 | 980 | static __kprobes void kretprobe_trace_func(struct kretprobe_instance *ri, |
413d37d1 MH |
981 | struct pt_regs *regs) |
982 | { | |
983 | struct trace_probe *tp = container_of(ri->rp, struct trace_probe, rp); | |
984 | struct kretprobe_trace_entry *entry; | |
985 | struct ring_buffer_event *event; | |
8f8ffe24 | 986 | struct ring_buffer *buffer; |
413d37d1 MH |
987 | int size, i, pc; |
988 | unsigned long irq_flags; | |
4263565d | 989 | struct ftrace_event_call *call = &tp->call; |
413d37d1 MH |
990 | |
991 | local_save_flags(irq_flags); | |
992 | pc = preempt_count(); | |
993 | ||
994 | size = SIZEOF_KRETPROBE_TRACE_ENTRY(tp->nr_args); | |
995 | ||
8f8ffe24 | 996 | event = trace_current_buffer_lock_reserve(&buffer, call->id, size, |
413d37d1 MH |
997 | irq_flags, pc); |
998 | if (!event) | |
1e12a4a7 | 999 | return; |
413d37d1 MH |
1000 | |
1001 | entry = ring_buffer_event_data(event); | |
1002 | entry->nargs = tp->nr_args; | |
4a846b44 | 1003 | entry->func = (unsigned long)tp->rp.kp.addr; |
413d37d1 MH |
1004 | entry->ret_ip = (unsigned long)ri->ret_addr; |
1005 | for (i = 0; i < tp->nr_args; i++) | |
eca0d916 | 1006 | entry->args[i] = call_fetch(&tp->args[i].fetch, regs); |
413d37d1 | 1007 | |
8f8ffe24 FW |
1008 | if (!filter_current_check_discard(buffer, call, entry, event)) |
1009 | trace_nowake_buffer_unlock_commit(buffer, event, irq_flags, pc); | |
413d37d1 MH |
1010 | } |
1011 | ||
1012 | /* Event entry printers */ | |
1013 | enum print_line_t | |
1014 | print_kprobe_event(struct trace_iterator *iter, int flags) | |
1015 | { | |
1016 | struct kprobe_trace_entry *field; | |
1017 | struct trace_seq *s = &iter->seq; | |
eca0d916 MH |
1018 | struct trace_event *event; |
1019 | struct trace_probe *tp; | |
413d37d1 MH |
1020 | int i; |
1021 | ||
ff50d991 | 1022 | field = (struct kprobe_trace_entry *)iter->ent; |
eca0d916 MH |
1023 | event = ftrace_find_event(field->ent.type); |
1024 | tp = container_of(event, struct trace_probe, event); | |
413d37d1 | 1025 | |
6e9f23d1 MH |
1026 | if (!trace_seq_printf(s, "%s: (", tp->call.name)) |
1027 | goto partial; | |
1028 | ||
413d37d1 MH |
1029 | if (!seq_print_ip_sym(s, field->ip, flags | TRACE_ITER_SYM_OFFSET)) |
1030 | goto partial; | |
1031 | ||
6e9f23d1 | 1032 | if (!trace_seq_puts(s, ")")) |
413d37d1 MH |
1033 | goto partial; |
1034 | ||
1035 | for (i = 0; i < field->nargs; i++) | |
eca0d916 MH |
1036 | if (!trace_seq_printf(s, " %s=%lx", |
1037 | tp->args[i].name, field->args[i])) | |
413d37d1 MH |
1038 | goto partial; |
1039 | ||
1040 | if (!trace_seq_puts(s, "\n")) | |
1041 | goto partial; | |
1042 | ||
1043 | return TRACE_TYPE_HANDLED; | |
1044 | partial: | |
1045 | return TRACE_TYPE_PARTIAL_LINE; | |
1046 | } | |
1047 | ||
1048 | enum print_line_t | |
1049 | print_kretprobe_event(struct trace_iterator *iter, int flags) | |
1050 | { | |
1051 | struct kretprobe_trace_entry *field; | |
1052 | struct trace_seq *s = &iter->seq; | |
eca0d916 MH |
1053 | struct trace_event *event; |
1054 | struct trace_probe *tp; | |
413d37d1 MH |
1055 | int i; |
1056 | ||
ff50d991 | 1057 | field = (struct kretprobe_trace_entry *)iter->ent; |
eca0d916 MH |
1058 | event = ftrace_find_event(field->ent.type); |
1059 | tp = container_of(event, struct trace_probe, event); | |
413d37d1 | 1060 | |
6e9f23d1 MH |
1061 | if (!trace_seq_printf(s, "%s: (", tp->call.name)) |
1062 | goto partial; | |
1063 | ||
413d37d1 MH |
1064 | if (!seq_print_ip_sym(s, field->ret_ip, flags | TRACE_ITER_SYM_OFFSET)) |
1065 | goto partial; | |
1066 | ||
1067 | if (!trace_seq_puts(s, " <- ")) | |
1068 | goto partial; | |
1069 | ||
1070 | if (!seq_print_ip_sym(s, field->func, flags & ~TRACE_ITER_SYM_OFFSET)) | |
1071 | goto partial; | |
1072 | ||
6e9f23d1 | 1073 | if (!trace_seq_puts(s, ")")) |
413d37d1 MH |
1074 | goto partial; |
1075 | ||
1076 | for (i = 0; i < field->nargs; i++) | |
eca0d916 MH |
1077 | if (!trace_seq_printf(s, " %s=%lx", |
1078 | tp->args[i].name, field->args[i])) | |
413d37d1 MH |
1079 | goto partial; |
1080 | ||
1081 | if (!trace_seq_puts(s, "\n")) | |
1082 | goto partial; | |
1083 | ||
1084 | return TRACE_TYPE_HANDLED; | |
1085 | partial: | |
1086 | return TRACE_TYPE_PARTIAL_LINE; | |
1087 | } | |
1088 | ||
413d37d1 MH |
1089 | static int probe_event_enable(struct ftrace_event_call *call) |
1090 | { | |
1091 | struct trace_probe *tp = (struct trace_probe *)call->data; | |
1092 | ||
50d78056 MH |
1093 | tp->flags |= TP_FLAG_TRACE; |
1094 | if (probe_is_return(tp)) | |
413d37d1 | 1095 | return enable_kretprobe(&tp->rp); |
50d78056 | 1096 | else |
4a846b44 | 1097 | return enable_kprobe(&tp->rp.kp); |
413d37d1 MH |
1098 | } |
1099 | ||
1100 | static void probe_event_disable(struct ftrace_event_call *call) | |
1101 | { | |
1102 | struct trace_probe *tp = (struct trace_probe *)call->data; | |
1103 | ||
50d78056 MH |
1104 | tp->flags &= ~TP_FLAG_TRACE; |
1105 | if (!(tp->flags & (TP_FLAG_TRACE | TP_FLAG_PROFILE))) { | |
1106 | if (probe_is_return(tp)) | |
1107 | disable_kretprobe(&tp->rp); | |
1108 | else | |
1109 | disable_kprobe(&tp->rp.kp); | |
1110 | } | |
413d37d1 MH |
1111 | } |
1112 | ||
1113 | static int probe_event_raw_init(struct ftrace_event_call *event_call) | |
1114 | { | |
1115 | INIT_LIST_HEAD(&event_call->fields); | |
8f8ffe24 | 1116 | |
413d37d1 MH |
1117 | return 0; |
1118 | } | |
1119 | ||
1120 | #undef DEFINE_FIELD | |
1121 | #define DEFINE_FIELD(type, item, name, is_signed) \ | |
1122 | do { \ | |
1123 | ret = trace_define_field(event_call, #type, name, \ | |
1124 | offsetof(typeof(field), item), \ | |
1125 | sizeof(field.item), is_signed, \ | |
1126 | FILTER_OTHER); \ | |
1127 | if (ret) \ | |
1128 | return ret; \ | |
1129 | } while (0) | |
1130 | ||
1131 | static int kprobe_event_define_fields(struct ftrace_event_call *event_call) | |
1132 | { | |
1133 | int ret, i; | |
1134 | struct kprobe_trace_entry field; | |
413d37d1 MH |
1135 | struct trace_probe *tp = (struct trace_probe *)event_call->data; |
1136 | ||
a703d946 MH |
1137 | DEFINE_FIELD(unsigned long, ip, FIELD_STRING_IP, 0); |
1138 | DEFINE_FIELD(int, nargs, FIELD_STRING_NARGS, 1); | |
eca0d916 MH |
1139 | /* Set argument names as fields */ |
1140 | for (i = 0; i < tp->nr_args; i++) | |
1141 | DEFINE_FIELD(unsigned long, args[i], tp->args[i].name, 0); | |
413d37d1 MH |
1142 | return 0; |
1143 | } | |
1144 | ||
1145 | static int kretprobe_event_define_fields(struct ftrace_event_call *event_call) | |
1146 | { | |
1147 | int ret, i; | |
1148 | struct kretprobe_trace_entry field; | |
413d37d1 MH |
1149 | struct trace_probe *tp = (struct trace_probe *)event_call->data; |
1150 | ||
a703d946 MH |
1151 | DEFINE_FIELD(unsigned long, func, FIELD_STRING_FUNC, 0); |
1152 | DEFINE_FIELD(unsigned long, ret_ip, FIELD_STRING_RETIP, 0); | |
1153 | DEFINE_FIELD(int, nargs, FIELD_STRING_NARGS, 1); | |
eca0d916 MH |
1154 | /* Set argument names as fields */ |
1155 | for (i = 0; i < tp->nr_args; i++) | |
1156 | DEFINE_FIELD(unsigned long, args[i], tp->args[i].name, 0); | |
413d37d1 MH |
1157 | return 0; |
1158 | } | |
1159 | ||
a342a028 LJ |
1160 | static int __set_print_fmt(struct trace_probe *tp, char *buf, int len) |
1161 | { | |
1162 | int i; | |
1163 | int pos = 0; | |
1164 | ||
1165 | const char *fmt, *arg; | |
1166 | ||
1167 | if (!probe_is_return(tp)) { | |
1168 | fmt = "(%lx)"; | |
1169 | arg = "REC->" FIELD_STRING_IP; | |
1170 | } else { | |
1171 | fmt = "(%lx <- %lx)"; | |
1172 | arg = "REC->" FIELD_STRING_FUNC ", REC->" FIELD_STRING_RETIP; | |
1173 | } | |
1174 | ||
1175 | /* When len=0, we just calculate the needed length */ | |
1176 | #define LEN_OR_ZERO (len ? len - pos : 0) | |
1177 | ||
1178 | pos += snprintf(buf + pos, LEN_OR_ZERO, "\"%s", fmt); | |
1179 | ||
1180 | for (i = 0; i < tp->nr_args; i++) { | |
1181 | pos += snprintf(buf + pos, LEN_OR_ZERO, " %s=%%lx", | |
1182 | tp->args[i].name); | |
1183 | } | |
1184 | ||
1185 | pos += snprintf(buf + pos, LEN_OR_ZERO, "\", %s", arg); | |
1186 | ||
1187 | for (i = 0; i < tp->nr_args; i++) { | |
1188 | pos += snprintf(buf + pos, LEN_OR_ZERO, ", REC->%s", | |
1189 | tp->args[i].name); | |
1190 | } | |
1191 | ||
1192 | #undef LEN_OR_ZERO | |
1193 | ||
1194 | /* return the length of print_fmt */ | |
1195 | return pos; | |
1196 | } | |
1197 | ||
1198 | static int set_print_fmt(struct trace_probe *tp) | |
1199 | { | |
1200 | int len; | |
1201 | char *print_fmt; | |
1202 | ||
1203 | /* First: called with 0 length to calculate the needed length */ | |
1204 | len = __set_print_fmt(tp, NULL, 0); | |
1205 | print_fmt = kmalloc(len + 1, GFP_KERNEL); | |
1206 | if (!print_fmt) | |
1207 | return -ENOMEM; | |
1208 | ||
1209 | /* Second: actually write the @print_fmt */ | |
1210 | __set_print_fmt(tp, print_fmt, len + 1); | |
1211 | tp->call.print_fmt = print_fmt; | |
1212 | ||
1213 | return 0; | |
1214 | } | |
1215 | ||
07b139c8 | 1216 | #ifdef CONFIG_PERF_EVENTS |
e08d1c65 MH |
1217 | |
1218 | /* Kprobe profile handler */ | |
97d5a220 | 1219 | static __kprobes void kprobe_perf_func(struct kprobe *kp, |
e08d1c65 MH |
1220 | struct pt_regs *regs) |
1221 | { | |
1222 | struct trace_probe *tp = container_of(kp, struct trace_probe, rp.kp); | |
1223 | struct ftrace_event_call *call = &tp->call; | |
1224 | struct kprobe_trace_entry *entry; | |
430ad5a6 | 1225 | int size, __size, i; |
e08d1c65 | 1226 | unsigned long irq_flags; |
4ed7c92d | 1227 | int rctx; |
e08d1c65 | 1228 | |
74ebb63e MH |
1229 | __size = SIZEOF_KPROBE_TRACE_ENTRY(tp->nr_args); |
1230 | size = ALIGN(__size + sizeof(u32), sizeof(u64)); | |
1231 | size -= sizeof(u32); | |
97d5a220 | 1232 | if (WARN_ONCE(size > PERF_MAX_TRACE_SIZE, |
a1a138d0 | 1233 | "profile buffer not large enough")) |
1e12a4a7 | 1234 | return; |
ce71b9df | 1235 | |
97d5a220 | 1236 | entry = perf_trace_buf_prepare(size, call->id, &rctx, &irq_flags); |
430ad5a6 | 1237 | if (!entry) |
1e12a4a7 | 1238 | return; |
a1a138d0 | 1239 | |
a1a138d0 MH |
1240 | entry->nargs = tp->nr_args; |
1241 | entry->ip = (unsigned long)kp->addr; | |
1242 | for (i = 0; i < tp->nr_args; i++) | |
1243 | entry->args[i] = call_fetch(&tp->args[i].fetch, regs); | |
444a2a3b | 1244 | |
97d5a220 | 1245 | perf_trace_buf_submit(entry, size, rctx, entry->ip, 1, irq_flags, regs); |
e08d1c65 MH |
1246 | } |
1247 | ||
1248 | /* Kretprobe profile handler */ | |
97d5a220 | 1249 | static __kprobes void kretprobe_perf_func(struct kretprobe_instance *ri, |
e08d1c65 MH |
1250 | struct pt_regs *regs) |
1251 | { | |
1252 | struct trace_probe *tp = container_of(ri->rp, struct trace_probe, rp); | |
1253 | struct ftrace_event_call *call = &tp->call; | |
1254 | struct kretprobe_trace_entry *entry; | |
430ad5a6 | 1255 | int size, __size, i; |
e08d1c65 | 1256 | unsigned long irq_flags; |
4ed7c92d | 1257 | int rctx; |
e08d1c65 | 1258 | |
74ebb63e MH |
1259 | __size = SIZEOF_KRETPROBE_TRACE_ENTRY(tp->nr_args); |
1260 | size = ALIGN(__size + sizeof(u32), sizeof(u64)); | |
1261 | size -= sizeof(u32); | |
97d5a220 | 1262 | if (WARN_ONCE(size > PERF_MAX_TRACE_SIZE, |
a1a138d0 | 1263 | "profile buffer not large enough")) |
1e12a4a7 | 1264 | return; |
444a2a3b | 1265 | |
97d5a220 | 1266 | entry = perf_trace_buf_prepare(size, call->id, &rctx, &irq_flags); |
430ad5a6 | 1267 | if (!entry) |
1e12a4a7 | 1268 | return; |
e08d1c65 | 1269 | |
a1a138d0 MH |
1270 | entry->nargs = tp->nr_args; |
1271 | entry->func = (unsigned long)tp->rp.kp.addr; | |
1272 | entry->ret_ip = (unsigned long)ri->ret_addr; | |
1273 | for (i = 0; i < tp->nr_args; i++) | |
1274 | entry->args[i] = call_fetch(&tp->args[i].fetch, regs); | |
444a2a3b | 1275 | |
97d5a220 | 1276 | perf_trace_buf_submit(entry, size, rctx, entry->ret_ip, 1, |
c530665c | 1277 | irq_flags, regs); |
e08d1c65 MH |
1278 | } |
1279 | ||
97d5a220 | 1280 | static int probe_perf_enable(struct ftrace_event_call *call) |
e08d1c65 MH |
1281 | { |
1282 | struct trace_probe *tp = (struct trace_probe *)call->data; | |
1283 | ||
50d78056 | 1284 | tp->flags |= TP_FLAG_PROFILE; |
d7a4b414 | 1285 | |
50d78056 | 1286 | if (probe_is_return(tp)) |
e08d1c65 | 1287 | return enable_kretprobe(&tp->rp); |
50d78056 | 1288 | else |
e08d1c65 | 1289 | return enable_kprobe(&tp->rp.kp); |
e08d1c65 MH |
1290 | } |
1291 | ||
97d5a220 | 1292 | static void probe_perf_disable(struct ftrace_event_call *call) |
e08d1c65 | 1293 | { |
50d78056 MH |
1294 | struct trace_probe *tp = (struct trace_probe *)call->data; |
1295 | ||
d7a4b414 | 1296 | tp->flags &= ~TP_FLAG_PROFILE; |
50d78056 | 1297 | |
d7a4b414 | 1298 | if (!(tp->flags & TP_FLAG_TRACE)) { |
50d78056 MH |
1299 | if (probe_is_return(tp)) |
1300 | disable_kretprobe(&tp->rp); | |
1301 | else | |
1302 | disable_kprobe(&tp->rp.kp); | |
1303 | } | |
e08d1c65 | 1304 | } |
07b139c8 | 1305 | #endif /* CONFIG_PERF_EVENTS */ |
50d78056 | 1306 | |
2239291a SR |
1307 | static __kprobes |
1308 | int kprobe_register(struct ftrace_event_call *event, enum trace_reg type) | |
1309 | { | |
1310 | switch (type) { | |
1311 | case TRACE_REG_REGISTER: | |
1312 | return probe_event_enable(event); | |
1313 | case TRACE_REG_UNREGISTER: | |
1314 | probe_event_disable(event); | |
1315 | return 0; | |
1316 | ||
1317 | #ifdef CONFIG_PERF_EVENTS | |
1318 | case TRACE_REG_PERF_REGISTER: | |
1319 | return probe_perf_enable(event); | |
1320 | case TRACE_REG_PERF_UNREGISTER: | |
1321 | probe_perf_disable(event); | |
1322 | return 0; | |
1323 | #endif | |
1324 | } | |
1325 | return 0; | |
1326 | } | |
50d78056 MH |
1327 | |
1328 | static __kprobes | |
1329 | int kprobe_dispatcher(struct kprobe *kp, struct pt_regs *regs) | |
1330 | { | |
1331 | struct trace_probe *tp = container_of(kp, struct trace_probe, rp.kp); | |
e08d1c65 | 1332 | |
50d78056 MH |
1333 | if (tp->flags & TP_FLAG_TRACE) |
1334 | kprobe_trace_func(kp, regs); | |
07b139c8 | 1335 | #ifdef CONFIG_PERF_EVENTS |
50d78056 | 1336 | if (tp->flags & TP_FLAG_PROFILE) |
97d5a220 | 1337 | kprobe_perf_func(kp, regs); |
07b139c8 | 1338 | #endif |
50d78056 MH |
1339 | return 0; /* We don't tweek kernel, so just return 0 */ |
1340 | } | |
1341 | ||
1342 | static __kprobes | |
1343 | int kretprobe_dispatcher(struct kretprobe_instance *ri, struct pt_regs *regs) | |
1344 | { | |
1345 | struct trace_probe *tp = container_of(ri->rp, struct trace_probe, rp); | |
1346 | ||
1347 | if (tp->flags & TP_FLAG_TRACE) | |
1348 | kretprobe_trace_func(ri, regs); | |
07b139c8 | 1349 | #ifdef CONFIG_PERF_EVENTS |
50d78056 | 1350 | if (tp->flags & TP_FLAG_PROFILE) |
97d5a220 | 1351 | kretprobe_perf_func(ri, regs); |
07b139c8 | 1352 | #endif |
50d78056 MH |
1353 | return 0; /* We don't tweek kernel, so just return 0 */ |
1354 | } | |
e08d1c65 | 1355 | |
413d37d1 MH |
1356 | static int register_probe_event(struct trace_probe *tp) |
1357 | { | |
1358 | struct ftrace_event_call *call = &tp->call; | |
1359 | int ret; | |
1360 | ||
1361 | /* Initialize ftrace_event_call */ | |
413d37d1 | 1362 | if (probe_is_return(tp)) { |
ff50d991 | 1363 | tp->event.trace = print_kretprobe_event; |
413d37d1 | 1364 | call->raw_init = probe_event_raw_init; |
413d37d1 MH |
1365 | call->define_fields = kretprobe_event_define_fields; |
1366 | } else { | |
ff50d991 | 1367 | tp->event.trace = print_kprobe_event; |
413d37d1 | 1368 | call->raw_init = probe_event_raw_init; |
413d37d1 MH |
1369 | call->define_fields = kprobe_event_define_fields; |
1370 | } | |
a342a028 LJ |
1371 | if (set_print_fmt(tp) < 0) |
1372 | return -ENOMEM; | |
ff50d991 MH |
1373 | call->event = &tp->event; |
1374 | call->id = register_ftrace_event(&tp->event); | |
a342a028 LJ |
1375 | if (!call->id) { |
1376 | kfree(call->print_fmt); | |
ff50d991 | 1377 | return -ENODEV; |
a342a028 | 1378 | } |
5a0d9050 | 1379 | call->enabled = 0; |
2239291a | 1380 | call->class->reg = kprobe_register; |
413d37d1 MH |
1381 | call->data = tp; |
1382 | ret = trace_add_event_call(call); | |
ff50d991 | 1383 | if (ret) { |
413d37d1 | 1384 | pr_info("Failed to register kprobe event: %s\n", call->name); |
a342a028 | 1385 | kfree(call->print_fmt); |
ff50d991 MH |
1386 | unregister_ftrace_event(&tp->event); |
1387 | } | |
413d37d1 MH |
1388 | return ret; |
1389 | } | |
1390 | ||
1391 | static void unregister_probe_event(struct trace_probe *tp) | |
1392 | { | |
ff50d991 | 1393 | /* tp->event is unregistered in trace_remove_event_call() */ |
413d37d1 | 1394 | trace_remove_event_call(&tp->call); |
a342a028 | 1395 | kfree(tp->call.print_fmt); |
413d37d1 MH |
1396 | } |
1397 | ||
1398 | /* Make a debugfs interface for controling probe points */ | |
1399 | static __init int init_kprobe_trace(void) | |
1400 | { | |
1401 | struct dentry *d_tracer; | |
1402 | struct dentry *entry; | |
413d37d1 MH |
1403 | |
1404 | d_tracer = tracing_init_dentry(); | |
1405 | if (!d_tracer) | |
1406 | return 0; | |
1407 | ||
1408 | entry = debugfs_create_file("kprobe_events", 0644, d_tracer, | |
1409 | NULL, &kprobe_events_ops); | |
1410 | ||
cd7e7bd5 | 1411 | /* Event list interface */ |
413d37d1 MH |
1412 | if (!entry) |
1413 | pr_warning("Could not create debugfs " | |
1414 | "'kprobe_events' entry\n"); | |
cd7e7bd5 MH |
1415 | |
1416 | /* Profile interface */ | |
1417 | entry = debugfs_create_file("kprobe_profile", 0444, d_tracer, | |
1418 | NULL, &kprobe_profile_ops); | |
1419 | ||
1420 | if (!entry) | |
1421 | pr_warning("Could not create debugfs " | |
1422 | "'kprobe_profile' entry\n"); | |
413d37d1 MH |
1423 | return 0; |
1424 | } | |
1425 | fs_initcall(init_kprobe_trace); | |
1426 | ||
1427 | ||
1428 | #ifdef CONFIG_FTRACE_STARTUP_TEST | |
1429 | ||
1430 | static int kprobe_trace_selftest_target(int a1, int a2, int a3, | |
1431 | int a4, int a5, int a6) | |
1432 | { | |
1433 | return a1 + a2 + a3 + a4 + a5 + a6; | |
1434 | } | |
1435 | ||
1436 | static __init int kprobe_trace_self_tests_init(void) | |
1437 | { | |
231e36f4 | 1438 | int ret, warn = 0; |
413d37d1 | 1439 | int (*target)(int, int, int, int, int, int); |
231e36f4 | 1440 | struct trace_probe *tp; |
413d37d1 MH |
1441 | |
1442 | target = kprobe_trace_selftest_target; | |
1443 | ||
1444 | pr_info("Testing kprobe tracing: "); | |
1445 | ||
1446 | ret = command_trace_probe("p:testprobe kprobe_trace_selftest_target " | |
231e36f4 MH |
1447 | "$stack $stack0 +0($stack)"); |
1448 | if (WARN_ON_ONCE(ret)) { | |
1449 | pr_warning("error on probing function entry.\n"); | |
1450 | warn++; | |
1451 | } else { | |
1452 | /* Enable trace point */ | |
1453 | tp = find_probe_event("testprobe", KPROBE_EVENT_SYSTEM); | |
1454 | if (WARN_ON_ONCE(tp == NULL)) { | |
1455 | pr_warning("error on getting new probe.\n"); | |
1456 | warn++; | |
1457 | } else | |
1458 | probe_event_enable(&tp->call); | |
1459 | } | |
413d37d1 MH |
1460 | |
1461 | ret = command_trace_probe("r:testprobe2 kprobe_trace_selftest_target " | |
f397af06 | 1462 | "$retval"); |
231e36f4 MH |
1463 | if (WARN_ON_ONCE(ret)) { |
1464 | pr_warning("error on probing function return.\n"); | |
1465 | warn++; | |
1466 | } else { | |
1467 | /* Enable trace point */ | |
1468 | tp = find_probe_event("testprobe2", KPROBE_EVENT_SYSTEM); | |
1469 | if (WARN_ON_ONCE(tp == NULL)) { | |
1470 | pr_warning("error on getting new probe.\n"); | |
1471 | warn++; | |
1472 | } else | |
1473 | probe_event_enable(&tp->call); | |
1474 | } | |
1475 | ||
1476 | if (warn) | |
1477 | goto end; | |
413d37d1 MH |
1478 | |
1479 | ret = target(1, 2, 3, 4, 5, 6); | |
1480 | ||
231e36f4 MH |
1481 | ret = command_trace_probe("-:testprobe"); |
1482 | if (WARN_ON_ONCE(ret)) { | |
1483 | pr_warning("error on deleting a probe.\n"); | |
1484 | warn++; | |
1485 | } | |
1486 | ||
1487 | ret = command_trace_probe("-:testprobe2"); | |
1488 | if (WARN_ON_ONCE(ret)) { | |
1489 | pr_warning("error on deleting a probe.\n"); | |
1490 | warn++; | |
1491 | } | |
413d37d1 | 1492 | |
231e36f4 MH |
1493 | end: |
1494 | cleanup_all_probes(); | |
1495 | if (warn) | |
1496 | pr_cont("NG: Some tests are failed. Please check them.\n"); | |
1497 | else | |
1498 | pr_cont("OK\n"); | |
413d37d1 MH |
1499 | return 0; |
1500 | } | |
1501 | ||
1502 | late_initcall(kprobe_trace_self_tests_init); | |
1503 | ||
1504 | #endif |