tracing: Have eprobes use filtering logic of trace events
[linux-2.6-block.git] / kernel / trace / trace_kprobe.c
CommitLineData
bcea3f96 1// SPDX-License-Identifier: GPL-2.0
413d37d1 2/*
77b44d1b 3 * Kprobes-based tracing events
413d37d1
MH
4 *
5 * Created by Masami Hiramatsu <mhiramat@redhat.com>
6 *
413d37d1 7 */
72576341 8#define pr_fmt(fmt) "trace_kprobe: " fmt
413d37d1 9
17911ff3 10#include <linux/security.h>
413d37d1
MH
11#include <linux/module.h>
12#include <linux/uaccess.h>
b2d09103 13#include <linux/rculist.h>
540adea3 14#include <linux/error-injection.h>
413d37d1 15
970988e1
MH
16#include <asm/setup.h> /* for COMMAND_LINE_SIZE */
17
6212dd29 18#include "trace_dynevent.h"
d899926f 19#include "trace_kprobe_selftest.h"
8ab83f56 20#include "trace_probe.h"
53305928 21#include "trace_probe_tmpl.h"
1ff511e3 22
8ab83f56 23#define KPROBE_EVENT_SYSTEM "kprobes"
696ced4f 24#define KRETPROBE_MAXACTIVE_MAX 4096
970988e1
MH
25
26/* Kprobe early definition from command line */
27static char kprobe_boot_events_buf[COMMAND_LINE_SIZE] __initdata;
28
29static int __init set_kprobe_boot_events(char *str)
30{
31 strlcpy(kprobe_boot_events_buf, str, COMMAND_LINE_SIZE);
60efe21e
MH
32 disable_tracing_selftest("running kprobe events");
33
970988e1
MH
34 return 0;
35}
36__setup("kprobe_event=", set_kprobe_boot_events);
e09c8614 37
d262271d 38static int trace_kprobe_create(const char *raw_command);
6212dd29
MH
39static int trace_kprobe_show(struct seq_file *m, struct dyn_event *ev);
40static int trace_kprobe_release(struct dyn_event *ev);
41static bool trace_kprobe_is_busy(struct dyn_event *ev);
42static bool trace_kprobe_match(const char *system, const char *event,
30199137 43 int argc, const char **argv, struct dyn_event *ev);
6212dd29
MH
44
45static struct dyn_event_operations trace_kprobe_ops = {
46 .create = trace_kprobe_create,
47 .show = trace_kprobe_show,
48 .is_busy = trace_kprobe_is_busy,
49 .free = trace_kprobe_release,
50 .match = trace_kprobe_match,
51};
52
cede666e 53/*
77b44d1b 54 * Kprobe event core functions
413d37d1 55 */
c31ffb3f 56struct trace_kprobe {
6212dd29 57 struct dyn_event devent;
4a846b44 58 struct kretprobe rp; /* Use rp.kp for kprobe use */
a7636d9e 59 unsigned long __percpu *nhit;
413d37d1 60 const char *symbol; /* symbol name */
c31ffb3f 61 struct trace_probe tp;
413d37d1
MH
62};
63
6212dd29
MH
64static bool is_trace_kprobe(struct dyn_event *ev)
65{
66 return ev->ops == &trace_kprobe_ops;
67}
68
69static struct trace_kprobe *to_trace_kprobe(struct dyn_event *ev)
70{
71 return container_of(ev, struct trace_kprobe, devent);
72}
73
74/**
75 * for_each_trace_kprobe - iterate over the trace_kprobe list
76 * @pos: the struct trace_kprobe * for each entry
77 * @dpos: the struct dyn_event * to use as a loop cursor
78 */
79#define for_each_trace_kprobe(pos, dpos) \
80 for_each_dyn_event(dpos) \
81 if (is_trace_kprobe(dpos) && (pos = to_trace_kprobe(dpos)))
82
3da0f180 83static nokprobe_inline bool trace_kprobe_is_return(struct trace_kprobe *tk)
413d37d1 84{
c31ffb3f 85 return tk->rp.handler != NULL;
413d37d1
MH
86}
87
3da0f180 88static nokprobe_inline const char *trace_kprobe_symbol(struct trace_kprobe *tk)
413d37d1 89{
c31ffb3f 90 return tk->symbol ? tk->symbol : "unknown";
413d37d1
MH
91}
92
3da0f180 93static nokprobe_inline unsigned long trace_kprobe_offset(struct trace_kprobe *tk)
61424318 94{
c31ffb3f 95 return tk->rp.kp.offset;
61424318
MH
96}
97
3da0f180 98static nokprobe_inline bool trace_kprobe_has_gone(struct trace_kprobe *tk)
61424318 99{
29e8077a 100 return kprobe_gone(&tk->rp.kp);
61424318
MH
101}
102
3da0f180 103static nokprobe_inline bool trace_kprobe_within_module(struct trace_kprobe *tk,
c31ffb3f 104 struct module *mod)
61424318 105{
f3d36426 106 int len = strlen(module_name(mod));
c31ffb3f 107 const char *name = trace_kprobe_symbol(tk);
f3d36426
JS
108
109 return strncmp(module_name(mod), name, len) == 0 && name[len] == ':';
61424318
MH
110}
111
59158ec4 112static nokprobe_inline bool trace_kprobe_module_exist(struct trace_kprobe *tk)
61424318 113{
59158ec4
MH
114 char *p;
115 bool ret;
116
117 if (!tk->symbol)
118 return false;
119 p = strchr(tk->symbol, ':');
120 if (!p)
121 return true;
122 *p = '\0';
a0060505 123 rcu_read_lock_sched();
59158ec4 124 ret = !!find_module(tk->symbol);
a0060505 125 rcu_read_unlock_sched();
59158ec4
MH
126 *p = ':';
127
128 return ret;
61424318
MH
129}
130
6212dd29
MH
131static bool trace_kprobe_is_busy(struct dyn_event *ev)
132{
133 struct trace_kprobe *tk = to_trace_kprobe(ev);
134
135 return trace_probe_is_enabled(&tk->tp);
136}
137
eb5bf813
MH
138static bool trace_kprobe_match_command_head(struct trace_kprobe *tk,
139 int argc, const char **argv)
140{
141 char buf[MAX_ARGSTR_LEN + 1];
142
143 if (!argc)
144 return true;
145
146 if (!tk->symbol)
147 snprintf(buf, sizeof(buf), "0x%p", tk->rp.kp.addr);
148 else if (tk->rp.kp.offset)
149 snprintf(buf, sizeof(buf), "%s+%u",
150 trace_kprobe_symbol(tk), tk->rp.kp.offset);
151 else
152 snprintf(buf, sizeof(buf), "%s", trace_kprobe_symbol(tk));
153 if (strcmp(buf, argv[0]))
154 return false;
155 argc--; argv++;
156
157 return trace_probe_match_command_args(&tk->tp, argc, argv);
158}
159
6212dd29 160static bool trace_kprobe_match(const char *system, const char *event,
30199137 161 int argc, const char **argv, struct dyn_event *ev)
6212dd29
MH
162{
163 struct trace_kprobe *tk = to_trace_kprobe(ev);
164
b55ce203 165 return strcmp(trace_probe_name(&tk->tp), event) == 0 &&
eb5bf813
MH
166 (!system || strcmp(trace_probe_group_name(&tk->tp), system) == 0) &&
167 trace_kprobe_match_command_head(tk, argc, argv);
6212dd29
MH
168}
169
f18f97ac
MN
170static nokprobe_inline unsigned long trace_kprobe_nhit(struct trace_kprobe *tk)
171{
172 unsigned long nhit = 0;
173 int cpu;
174
175 for_each_possible_cpu(cpu)
176 nhit += *per_cpu_ptr(tk->nhit, cpu);
177
178 return nhit;
179}
180
715fa2fd
MH
181static nokprobe_inline bool trace_kprobe_is_registered(struct trace_kprobe *tk)
182{
183 return !(list_empty(&tk->rp.kp.list) &&
184 hlist_unhashed(&tk->rp.kp.hlist));
185}
186
6bc6c77c 187/* Return 0 if it fails to find the symbol address */
45408c4f
MH
188static nokprobe_inline
189unsigned long trace_kprobe_address(struct trace_kprobe *tk)
190{
191 unsigned long addr;
192
193 if (tk->symbol) {
194 addr = (unsigned long)
195 kallsyms_lookup_name(trace_kprobe_symbol(tk));
6bc6c77c
MH
196 if (addr)
197 addr += tk->rp.kp.offset;
45408c4f
MH
198 } else {
199 addr = (unsigned long)tk->rp.kp.addr;
200 }
201 return addr;
202}
203
60d53e2c
MH
204static nokprobe_inline struct trace_kprobe *
205trace_kprobe_primary_from_call(struct trace_event_call *call)
206{
207 struct trace_probe *tp;
208
209 tp = trace_probe_primary_from_call(call);
210 if (WARN_ON_ONCE(!tp))
211 return NULL;
212
213 return container_of(tp, struct trace_kprobe, tp);
214}
215
b4da3340 216bool trace_kprobe_on_func_entry(struct trace_event_call *call)
9802d865 217{
60d53e2c 218 struct trace_kprobe *tk = trace_kprobe_primary_from_call(call);
b4da3340 219
97c753e6 220 return tk ? (kprobe_on_func_entry(tk->rp.kp.addr,
b4da3340 221 tk->rp.kp.addr ? NULL : tk->rp.kp.symbol_name,
97c753e6 222 tk->rp.kp.addr ? 0 : tk->rp.kp.offset) == 0) : false;
9802d865
JB
223}
224
b4da3340 225bool trace_kprobe_error_injectable(struct trace_event_call *call)
9802d865 226{
60d53e2c 227 struct trace_kprobe *tk = trace_kprobe_primary_from_call(call);
9802d865 228
60d53e2c
MH
229 return tk ? within_error_injection_list(trace_kprobe_address(tk)) :
230 false;
9802d865
JB
231}
232
c31ffb3f
NK
233static int register_kprobe_event(struct trace_kprobe *tk);
234static int unregister_kprobe_event(struct trace_kprobe *tk);
413d37d1 235
50d78056
MH
236static int kprobe_dispatcher(struct kprobe *kp, struct pt_regs *regs);
237static int kretprobe_dispatcher(struct kretprobe_instance *ri,
238 struct pt_regs *regs);
239
455b2899
MH
240static void free_trace_kprobe(struct trace_kprobe *tk)
241{
242 if (tk) {
243 trace_probe_cleanup(&tk->tp);
244 kfree(tk->symbol);
245 free_percpu(tk->nhit);
246 kfree(tk);
247 }
248}
249
4a846b44
MH
250/*
251 * Allocate new trace_probe and initialize it (including kprobes).
252 */
c31ffb3f 253static struct trace_kprobe *alloc_trace_kprobe(const char *group,
f52487e9 254 const char *event,
4a846b44
MH
255 void *addr,
256 const char *symbol,
257 unsigned long offs,
696ced4f 258 int maxactive,
3a6b7666 259 int nargs, bool is_return)
413d37d1 260{
c31ffb3f 261 struct trace_kprobe *tk;
6f3cf440 262 int ret = -ENOMEM;
413d37d1 263
845cbf3e 264 tk = kzalloc(struct_size(tk, tp.args, nargs), GFP_KERNEL);
c31ffb3f 265 if (!tk)
6f3cf440 266 return ERR_PTR(ret);
413d37d1 267
a7636d9e
MKL
268 tk->nhit = alloc_percpu(unsigned long);
269 if (!tk->nhit)
270 goto error;
271
413d37d1 272 if (symbol) {
c31ffb3f
NK
273 tk->symbol = kstrdup(symbol, GFP_KERNEL);
274 if (!tk->symbol)
413d37d1 275 goto error;
c31ffb3f
NK
276 tk->rp.kp.symbol_name = tk->symbol;
277 tk->rp.kp.offset = offs;
4a846b44 278 } else
c31ffb3f 279 tk->rp.kp.addr = addr;
4a846b44
MH
280
281 if (is_return)
c31ffb3f 282 tk->rp.handler = kretprobe_dispatcher;
4a846b44 283 else
c31ffb3f 284 tk->rp.kp.pre_handler = kprobe_dispatcher;
4a846b44 285
696ced4f 286 tk->rp.maxactive = maxactive;
715fa2fd
MH
287 INIT_HLIST_NODE(&tk->rp.kp.hlist);
288 INIT_LIST_HEAD(&tk->rp.kp.list);
696ced4f 289
b61387cb 290 ret = trace_probe_init(&tk->tp, event, group, false);
455b2899 291 if (ret < 0)
f52487e9
MH
292 goto error;
293
6212dd29 294 dyn_event_init(&tk->devent, &trace_kprobe_ops);
c31ffb3f 295 return tk;
413d37d1 296error:
455b2899 297 free_trace_kprobe(tk);
6f3cf440 298 return ERR_PTR(ret);
413d37d1
MH
299}
300
c31ffb3f
NK
301static struct trace_kprobe *find_trace_kprobe(const char *event,
302 const char *group)
413d37d1 303{
6212dd29 304 struct dyn_event *pos;
c31ffb3f 305 struct trace_kprobe *tk;
413d37d1 306
6212dd29 307 for_each_trace_kprobe(tk, pos)
b55ce203
MH
308 if (strcmp(trace_probe_name(&tk->tp), event) == 0 &&
309 strcmp(trace_probe_group_name(&tk->tp), group) == 0)
c31ffb3f 310 return tk;
413d37d1
MH
311 return NULL;
312}
313
87107a25
SRV
314static inline int __enable_trace_kprobe(struct trace_kprobe *tk)
315{
316 int ret = 0;
317
715fa2fd 318 if (trace_kprobe_is_registered(tk) && !trace_kprobe_has_gone(tk)) {
87107a25
SRV
319 if (trace_kprobe_is_return(tk))
320 ret = enable_kretprobe(&tk->rp);
321 else
322 ret = enable_kprobe(&tk->rp.kp);
323 }
324
325 return ret;
326}
327
60d53e2c
MH
328static void __disable_trace_kprobe(struct trace_probe *tp)
329{
330 struct trace_probe *pos;
331 struct trace_kprobe *tk;
332
333 list_for_each_entry(pos, trace_probe_probe_list(tp), list) {
334 tk = container_of(pos, struct trace_kprobe, tp);
335 if (!trace_kprobe_is_registered(tk))
336 continue;
337 if (trace_kprobe_is_return(tk))
338 disable_kretprobe(&tk->rp);
339 else
340 disable_kprobe(&tk->rp.kp);
341 }
342}
343
41a7dd42
MH
344/*
345 * Enable trace_probe
346 * if the file is NULL, enable "perf" handler, or enable "trace" handler.
347 */
60d53e2c
MH
348static int enable_trace_kprobe(struct trace_event_call *call,
349 struct trace_event_file *file)
1538f888 350{
60d53e2c
MH
351 struct trace_probe *pos, *tp;
352 struct trace_kprobe *tk;
353 bool enabled;
1538f888
MH
354 int ret = 0;
355
60d53e2c
MH
356 tp = trace_probe_primary_from_call(call);
357 if (WARN_ON_ONCE(!tp))
358 return -ENODEV;
359 enabled = trace_probe_is_enabled(tp);
360
361 /* This also changes "enabled" state */
41a7dd42 362 if (file) {
60d53e2c 363 ret = trace_probe_add_file(tp, file);
b5f935ee
MH
364 if (ret)
365 return ret;
366 } else
60d53e2c 367 trace_probe_set_flag(tp, TP_FLAG_PROFILE);
41a7dd42 368
b5f935ee
MH
369 if (enabled)
370 return 0;
87107a25 371
60d53e2c
MH
372 list_for_each_entry(pos, trace_probe_probe_list(tp), list) {
373 tk = container_of(pos, struct trace_kprobe, tp);
374 if (trace_kprobe_has_gone(tk))
375 continue;
376 ret = __enable_trace_kprobe(tk);
44d00dc7 377 if (ret)
60d53e2c 378 break;
60d53e2c
MH
379 enabled = true;
380 }
381
44d00dc7
MH
382 if (ret) {
383 /* Failed to enable one of them. Roll back all */
384 if (enabled)
385 __disable_trace_kprobe(tp);
b5f935ee 386 if (file)
60d53e2c 387 trace_probe_remove_file(tp, file);
b5f935ee 388 else
60d53e2c 389 trace_probe_clear_flag(tp, TP_FLAG_PROFILE);
57ea2a34 390 }
b5f935ee 391
1538f888
MH
392 return ret;
393}
394
41a7dd42
MH
395/*
396 * Disable trace_probe
397 * if the file is NULL, disable "perf" handler, or disable "trace" handler.
398 */
60d53e2c
MH
399static int disable_trace_kprobe(struct trace_event_call *call,
400 struct trace_event_file *file)
1538f888 401{
60d53e2c
MH
402 struct trace_probe *tp;
403
404 tp = trace_probe_primary_from_call(call);
405 if (WARN_ON_ONCE(!tp))
406 return -ENODEV;
41a7dd42 407
41a7dd42 408 if (file) {
b5f935ee
MH
409 if (!trace_probe_get_file_link(tp, file))
410 return -ENOENT;
411 if (!trace_probe_has_single_file(tp))
b04d52e3 412 goto out;
747774d6 413 trace_probe_clear_flag(tp, TP_FLAG_TRACE);
41a7dd42 414 } else
747774d6 415 trace_probe_clear_flag(tp, TP_FLAG_PROFILE);
41a7dd42 416
60d53e2c
MH
417 if (!trace_probe_is_enabled(tp))
418 __disable_trace_kprobe(tp);
e12f03d7 419
3fe3d619 420 out:
b5f935ee 421 if (file)
a232e270 422 /*
b5f935ee
MH
423 * Synchronization is done in below function. For perf event,
424 * file == NULL and perf_trace_event_unreg() calls
425 * tracepoint_synchronize_unregister() to ensure synchronize
426 * event. We don't need to care about it.
a232e270 427 */
b5f935ee 428 trace_probe_remove_file(tp, file);
a232e270 429
60d53e2c 430 return 0;
1538f888
MH
431}
432
7bb83f6f 433#if defined(CONFIG_DYNAMIC_FTRACE) && \
45408c4f 434 !defined(CONFIG_KPROBE_EVENTS_ON_NOTRACE)
c7411a1a 435static bool __within_notrace_func(unsigned long addr)
45408c4f 436{
c7411a1a 437 unsigned long offset, size;
45408c4f 438
6bc6c77c
MH
439 if (!addr || !kallsyms_lookup_size_offset(addr, &size, &offset))
440 return false;
45408c4f 441
9161a864
MH
442 /* Get the entry address of the target function */
443 addr -= offset;
444
445 /*
446 * Since ftrace_location_range() does inclusive range check, we need
447 * to subtract 1 byte from the end address.
448 */
449 return !ftrace_location_range(addr, addr + size - 1);
45408c4f 450}
c7411a1a
MH
451
452static bool within_notrace_func(struct trace_kprobe *tk)
453{
dcbd21c9 454 unsigned long addr = trace_kprobe_address(tk);
c7411a1a
MH
455 char symname[KSYM_NAME_LEN], *p;
456
457 if (!__within_notrace_func(addr))
458 return false;
459
460 /* Check if the address is on a suffixed-symbol */
461 if (!lookup_symbol_name(addr, symname)) {
462 p = strchr(symname, '.');
463 if (!p)
464 return true;
465 *p = '\0';
466 addr = (unsigned long)kprobe_lookup_name(symname, 0);
467 if (addr)
468 return __within_notrace_func(addr);
469 }
470
471 return true;
472}
45408c4f
MH
473#else
474#define within_notrace_func(tk) (false)
475#endif
476
61424318 477/* Internal register function - just handle k*probes and flags */
c31ffb3f 478static int __register_trace_kprobe(struct trace_kprobe *tk)
413d37d1 479{
a6682814 480 int i, ret;
61424318 481
a94549dd
DH
482 ret = security_locked_down(LOCKDOWN_KPROBES);
483 if (ret)
484 return ret;
485
715fa2fd 486 if (trace_kprobe_is_registered(tk))
61424318
MH
487 return -EINVAL;
488
45408c4f
MH
489 if (within_notrace_func(tk)) {
490 pr_warn("Could not probe notrace function %s\n",
491 trace_kprobe_symbol(tk));
492 return -EINVAL;
493 }
494
a6682814
MH
495 for (i = 0; i < tk->tp.nr_args; i++) {
496 ret = traceprobe_update_arg(&tk->tp.args[i]);
497 if (ret)
498 return ret;
499 }
500
61424318 501 /* Set/clear disabled flag according to tp->flag */
c31ffb3f
NK
502 if (trace_probe_is_enabled(&tk->tp))
503 tk->rp.kp.flags &= ~KPROBE_FLAG_DISABLED;
61424318 504 else
c31ffb3f 505 tk->rp.kp.flags |= KPROBE_FLAG_DISABLED;
61424318 506
c31ffb3f
NK
507 if (trace_kprobe_is_return(tk))
508 ret = register_kretprobe(&tk->rp);
413d37d1 509 else
c31ffb3f 510 ret = register_kprobe(&tk->rp.kp);
61424318 511
61424318
MH
512 return ret;
513}
514
515/* Internal unregister function - just handle k*probes and flags */
c31ffb3f 516static void __unregister_trace_kprobe(struct trace_kprobe *tk)
61424318 517{
715fa2fd 518 if (trace_kprobe_is_registered(tk)) {
c31ffb3f
NK
519 if (trace_kprobe_is_return(tk))
520 unregister_kretprobe(&tk->rp);
61424318 521 else
c31ffb3f 522 unregister_kprobe(&tk->rp.kp);
715fa2fd
MH
523 /* Cleanup kprobe for reuse and mark it unregistered */
524 INIT_HLIST_NODE(&tk->rp.kp.hlist);
525 INIT_LIST_HEAD(&tk->rp.kp.list);
c31ffb3f
NK
526 if (tk->rp.kp.symbol_name)
527 tk->rp.kp.addr = NULL;
61424318
MH
528 }
529}
530
6212dd29 531/* Unregister a trace_probe and probe_event */
c31ffb3f 532static int unregister_trace_kprobe(struct trace_kprobe *tk)
61424318 533{
ca89bc07
MH
534 /* If other probes are on the event, just unregister kprobe */
535 if (trace_probe_has_sibling(&tk->tp))
536 goto unreg;
537
02ca1521 538 /* Enabled event can not be unregistered */
c31ffb3f 539 if (trace_probe_is_enabled(&tk->tp))
02ca1521
MH
540 return -EBUSY;
541
1d18538e
SRV
542 /* If there's a reference to the dynamic event */
543 if (trace_event_dyn_busy(trace_probe_event_call(&tk->tp)))
544 return -EBUSY;
545
40c32592 546 /* Will fail if probe is being used by ftrace or perf */
c31ffb3f 547 if (unregister_kprobe_event(tk))
40c32592
SRRH
548 return -EBUSY;
549
ca89bc07 550unreg:
c31ffb3f 551 __unregister_trace_kprobe(tk);
6212dd29 552 dyn_event_remove(&tk->devent);
ca89bc07 553 trace_probe_unlink(&tk->tp);
02ca1521
MH
554
555 return 0;
413d37d1
MH
556}
557
fe60b0ce
MH
558static bool trace_kprobe_has_same_kprobe(struct trace_kprobe *orig,
559 struct trace_kprobe *comp)
560{
561 struct trace_probe_event *tpe = orig->tp.event;
562 struct trace_probe *pos;
563 int i;
564
565 list_for_each_entry(pos, &tpe->probes, list) {
566 orig = container_of(pos, struct trace_kprobe, tp);
567 if (strcmp(trace_kprobe_symbol(orig),
568 trace_kprobe_symbol(comp)) ||
569 trace_kprobe_offset(orig) != trace_kprobe_offset(comp))
570 continue;
571
572 /*
573 * trace_probe_compare_arg_type() ensured that nr_args and
574 * each argument name and type are same. Let's compare comm.
575 */
576 for (i = 0; i < orig->tp.nr_args; i++) {
577 if (strcmp(orig->tp.args[i].comm,
578 comp->tp.args[i].comm))
f8d7ab2b 579 break;
fe60b0ce
MH
580 }
581
f8d7ab2b
SD
582 if (i == orig->tp.nr_args)
583 return true;
fe60b0ce
MH
584 }
585
586 return false;
587}
588
ca89bc07
MH
589static int append_trace_kprobe(struct trace_kprobe *tk, struct trace_kprobe *to)
590{
591 int ret;
592
fe60b0ce
MH
593 ret = trace_probe_compare_arg_type(&tk->tp, &to->tp);
594 if (ret) {
595 /* Note that argument starts index = 2 */
596 trace_probe_log_set_index(ret + 1);
597 trace_probe_log_err(0, DIFF_ARG_TYPE);
598 return -EEXIST;
599 }
600 if (trace_kprobe_has_same_kprobe(to, tk)) {
601 trace_probe_log_set_index(0);
602 trace_probe_log_err(0, SAME_PROBE);
603 return -EEXIST;
604 }
605
ca89bc07
MH
606 /* Append to existing event */
607 ret = trace_probe_append(&tk->tp, &to->tp);
608 if (ret)
609 return ret;
610
611 /* Register k*probe */
612 ret = __register_trace_kprobe(tk);
613 if (ret == -ENOENT && !trace_kprobe_module_exist(tk)) {
614 pr_warn("This probe might be able to register after target module is loaded. Continue.\n");
615 ret = 0;
616 }
617
618 if (ret)
619 trace_probe_unlink(&tk->tp);
620 else
8b0e6c74 621 dyn_event_add(&tk->devent, trace_probe_event_call(&tk->tp));
ca89bc07
MH
622
623 return ret;
624}
625
413d37d1 626/* Register a trace_probe and probe_event */
c31ffb3f 627static int register_trace_kprobe(struct trace_kprobe *tk)
413d37d1 628{
c31ffb3f 629 struct trace_kprobe *old_tk;
413d37d1
MH
630 int ret;
631
6212dd29 632 mutex_lock(&event_mutex);
413d37d1 633
b55ce203
MH
634 old_tk = find_trace_kprobe(trace_probe_name(&tk->tp),
635 trace_probe_group_name(&tk->tp));
c31ffb3f 636 if (old_tk) {
ca89bc07
MH
637 if (trace_kprobe_is_return(tk) != trace_kprobe_is_return(old_tk)) {
638 trace_probe_log_set_index(0);
639 trace_probe_log_err(0, DIFF_PROBE_TYPE);
640 ret = -EEXIST;
641 } else {
fe60b0ce 642 ret = append_trace_kprobe(tk, old_tk);
ca89bc07
MH
643 }
644 goto end;
2d5e067e 645 }
61424318
MH
646
647 /* Register new event */
c31ffb3f 648 ret = register_kprobe_event(tk);
2d5e067e 649 if (ret) {
8e242060
MH
650 if (ret == -EEXIST) {
651 trace_probe_log_set_index(0);
652 trace_probe_log_err(0, EVENT_EXIST);
653 } else
654 pr_warn("Failed to register probe event(%d)\n", ret);
2d5e067e
MH
655 goto end;
656 }
657
61424318 658 /* Register k*probe */
c31ffb3f 659 ret = __register_trace_kprobe(tk);
59158ec4
MH
660 if (ret == -ENOENT && !trace_kprobe_module_exist(tk)) {
661 pr_warn("This probe might be able to register after target module is loaded. Continue.\n");
662 ret = 0;
663 }
664
61424318 665 if (ret < 0)
c31ffb3f 666 unregister_kprobe_event(tk);
61424318 667 else
8b0e6c74 668 dyn_event_add(&tk->devent, trace_probe_event_call(&tk->tp));
61424318 669
413d37d1 670end:
6212dd29 671 mutex_unlock(&event_mutex);
413d37d1
MH
672 return ret;
673}
674
61424318 675/* Module notifier call back, checking event on the module */
c31ffb3f 676static int trace_kprobe_module_callback(struct notifier_block *nb,
61424318
MH
677 unsigned long val, void *data)
678{
679 struct module *mod = data;
6212dd29 680 struct dyn_event *pos;
c31ffb3f 681 struct trace_kprobe *tk;
61424318
MH
682 int ret;
683
684 if (val != MODULE_STATE_COMING)
685 return NOTIFY_DONE;
686
687 /* Update probes on coming module */
6212dd29
MH
688 mutex_lock(&event_mutex);
689 for_each_trace_kprobe(tk, pos) {
c31ffb3f 690 if (trace_kprobe_within_module(tk, mod)) {
02ca1521 691 /* Don't need to check busy - this should have gone. */
c31ffb3f
NK
692 __unregister_trace_kprobe(tk);
693 ret = __register_trace_kprobe(tk);
61424318 694 if (ret)
a395d6a7 695 pr_warn("Failed to re-register probe %s on %s: %d\n",
b55ce203 696 trace_probe_name(&tk->tp),
f3d36426 697 module_name(mod), ret);
61424318
MH
698 }
699 }
6212dd29 700 mutex_unlock(&event_mutex);
61424318
MH
701
702 return NOTIFY_DONE;
703}
704
c31ffb3f
NK
705static struct notifier_block trace_kprobe_module_nb = {
706 .notifier_call = trace_kprobe_module_callback,
61424318
MH
707 .priority = 1 /* Invoked after kprobe module callback */
708};
709
d262271d 710static int __trace_kprobe_create(int argc, const char *argv[])
413d37d1
MH
711{
712 /*
713 * Argument syntax:
696ced4f
AC
714 * - Add kprobe:
715 * p[:[GRP/]EVENT] [MOD:]KSYM[+OFFS]|KADDR [FETCHARGS]
716 * - Add kretprobe:
717 * r[MAXACTIVE][:[GRP/]EVENT] [MOD:]KSYM[+0] [FETCHARGS]
4725cd89
MH
718 * Or
719 * p:[GRP/]EVENT] [MOD:]KSYM[+0]%return [FETCHARGS]
720 *
413d37d1 721 * Fetch args:
2e06ff63
MH
722 * $retval : fetch return value
723 * $stack : fetch stack address
724 * $stackN : fetch Nth of stack (N:0-)
35abb67d 725 * $comm : fetch current task comm
413d37d1
MH
726 * @ADDR : fetch memory at ADDR (ADDR should be in kernel)
727 * @SYM[+|-offs] : fetch memory at SYM +|- offs (SYM is a data symbol)
728 * %REG : fetch register REG
93ccae7a 729 * Dereferencing memory fetch:
413d37d1 730 * +|-offs(ARG) : fetch memory at ARG +|- offs address.
eca0d916
MH
731 * Alias name of args:
732 * NAME=FETCHARG : set NAME as alias of FETCHARG.
93ccae7a
MH
733 * Type of args:
734 * FETCHARG:TYPE : use TYPE instead of unsigned long.
413d37d1 735 */
ab105a4f 736 struct trace_kprobe *tk = NULL;
6212dd29
MH
737 int i, len, ret = 0;
738 bool is_return = false;
739 char *symbol = NULL, *tmp = NULL;
740 const char *event = NULL, *group = KPROBE_EVENT_SYSTEM;
007517a0 741 enum probe_print_type ptype;
696ced4f 742 int maxactive = 0;
c5d343b6 743 long offset = 0;
413d37d1 744 void *addr = NULL;
4a846b44 745 char buf[MAX_EVENT_NAME_LEN];
a1303af5 746 unsigned int flags = TPARG_FL_KERNEL;
413d37d1 747
8b05a3a7
AR
748 switch (argv[0][0]) {
749 case 'r':
3a6b7666 750 is_return = true;
8b05a3a7
AR
751 break;
752 case 'p':
753 break;
754 default:
755 return -ECANCELED;
756 }
757 if (argc < 2)
6212dd29 758 return -ECANCELED;
413d37d1 759
ab105a4f
MH
760 trace_probe_log_init("trace_kprobe", argc, argv);
761
696ced4f 762 event = strchr(&argv[0][1], ':');
6212dd29 763 if (event)
696ced4f 764 event++;
6212dd29 765
287c038c
MH
766 if (isdigit(argv[0][1])) {
767 if (!is_return) {
ab105a4f
MH
768 trace_probe_log_err(1, MAXACT_NO_KPROBE);
769 goto parse_error;
287c038c 770 }
6212dd29
MH
771 if (event)
772 len = event - &argv[0][1] - 1;
773 else
774 len = strlen(&argv[0][1]);
ab105a4f
MH
775 if (len > MAX_EVENT_NAME_LEN - 1) {
776 trace_probe_log_err(1, BAD_MAXACT);
777 goto parse_error;
778 }
6212dd29
MH
779 memcpy(buf, &argv[0][1], len);
780 buf[len] = '\0';
781 ret = kstrtouint(buf, 0, &maxactive);
287c038c 782 if (ret || !maxactive) {
ab105a4f
MH
783 trace_probe_log_err(1, BAD_MAXACT);
784 goto parse_error;
696ced4f
AC
785 }
786 /* kretprobes instances are iterated over via a list. The
787 * maximum should stay reasonable.
788 */
789 if (maxactive > KRETPROBE_MAXACTIVE_MAX) {
ab105a4f
MH
790 trace_probe_log_err(1, MAXACT_TOO_BIG);
791 goto parse_error;
696ced4f
AC
792 }
793 }
794
9e52b325
SD
795 /* try to parse an address. if that fails, try to read the
796 * input as a symbol. */
797 if (kstrtoul(argv[1], 0, (unsigned long *)&addr)) {
ab105a4f 798 trace_probe_log_set_index(1);
6212dd29 799 /* Check whether uprobe event specified */
ab105a4f
MH
800 if (strchr(argv[1], '/') && strchr(argv[1], ':')) {
801 ret = -ECANCELED;
802 goto error;
803 }
413d37d1 804 /* a symbol specified */
6212dd29
MH
805 symbol = kstrdup(argv[1], GFP_KERNEL);
806 if (!symbol)
807 return -ENOMEM;
4725cd89
MH
808
809 tmp = strchr(symbol, '%');
810 if (tmp) {
811 if (!strcmp(tmp, "%return")) {
812 *tmp = '\0';
813 is_return = true;
814 } else {
815 trace_probe_log_err(tmp - symbol, BAD_ADDR_SUFFIX);
816 goto parse_error;
817 }
818 }
819
413d37d1 820 /* TODO: support .init module functions */
8ab83f56 821 ret = traceprobe_split_symbol_offset(symbol, &offset);
c5d343b6 822 if (ret || offset < 0 || offset > UINT_MAX) {
ab105a4f
MH
823 trace_probe_log_err(0, BAD_PROBE_ADDR);
824 goto parse_error;
e63cc239 825 }
4725cd89
MH
826 if (is_return)
827 flags |= TPARG_FL_RETURN;
97c753e6
MH
828 ret = kprobe_on_func_entry(NULL, symbol, offset);
829 if (ret == 0)
a1303af5 830 flags |= TPARG_FL_FENTRY;
97c753e6
MH
831 /* Defer the ENOENT case until register kprobe */
832 if (ret == -EINVAL && is_return) {
ab105a4f
MH
833 trace_probe_log_err(0, BAD_RETPROBE);
834 goto parse_error;
e63cc239 835 }
413d37d1
MH
836 }
837
ab105a4f 838 trace_probe_log_set_index(0);
6212dd29 839 if (event) {
ab105a4f
MH
840 ret = traceprobe_parse_event_name(&event, &group, buf,
841 event - argv[0]);
6212dd29 842 if (ret)
ab105a4f 843 goto parse_error;
6212dd29 844 } else {
4263565d 845 /* Make a new event name */
4263565d 846 if (symbol)
6f3cf440 847 snprintf(buf, MAX_EVENT_NAME_LEN, "%c_%s_%ld",
4263565d
MH
848 is_return ? 'r' : 'p', symbol, offset);
849 else
6f3cf440 850 snprintf(buf, MAX_EVENT_NAME_LEN, "%c_0x%p",
4263565d 851 is_return ? 'r' : 'p', addr);
fca18a47 852 sanitize_event_name(buf);
4a846b44
MH
853 event = buf;
854 }
6212dd29
MH
855
856 /* setup a probe */
696ced4f 857 tk = alloc_trace_kprobe(group, event, addr, symbol, offset, maxactive,
ab105a4f 858 argc - 2, is_return);
c31ffb3f 859 if (IS_ERR(tk)) {
6212dd29 860 ret = PTR_ERR(tk);
ab105a4f 861 /* This must return -ENOMEM, else there is a bug */
a039480e 862 WARN_ON_ONCE(ret != -ENOMEM);
ab105a4f 863 goto out; /* We know tk is not allocated */
e63cc239 864 }
ab105a4f 865 argc -= 2; argv += 2;
413d37d1 866
413d37d1 867 /* parse arguments */
a82378d8 868 for (i = 0; i < argc && i < MAX_TRACE_ARGS; i++) {
ab105a4f 869 trace_probe_log_set_index(i + 2);
fcd9db51 870 ret = traceprobe_parse_probe_arg(&tk->tp, i, argv[i], flags);
d00bbea9 871 if (ret)
ab105a4f 872 goto error; /* This can be -ENOMEM */
413d37d1 873 }
413d37d1 874
007517a0
SRV
875 ptype = is_return ? PROBE_PRINT_RETURN : PROBE_PRINT_NORMAL;
876 ret = traceprobe_set_print_fmt(&tk->tp, ptype);
f730e0f2
MH
877 if (ret < 0)
878 goto error;
879
c31ffb3f 880 ret = register_trace_kprobe(tk);
ab105a4f
MH
881 if (ret) {
882 trace_probe_log_set_index(1);
883 if (ret == -EILSEQ)
884 trace_probe_log_err(0, BAD_INSN_BNDRY);
885 else if (ret == -ENOENT)
886 trace_probe_log_err(0, BAD_PROBE_ADDR);
ca89bc07 887 else if (ret != -ENOMEM && ret != -EEXIST)
ab105a4f 888 trace_probe_log_err(0, FAIL_REG_PROBE);
413d37d1 889 goto error;
ab105a4f
MH
890 }
891
6212dd29 892out:
ab105a4f 893 trace_probe_log_clear();
6212dd29
MH
894 kfree(symbol);
895 return ret;
413d37d1 896
ab105a4f
MH
897parse_error:
898 ret = -EINVAL;
413d37d1 899error:
c31ffb3f 900 free_trace_kprobe(tk);
6212dd29 901 goto out;
413d37d1
MH
902}
903
d262271d
MH
904static int trace_kprobe_create(const char *raw_command)
905{
906 return trace_probe_create(raw_command, __trace_kprobe_create);
907}
908
909static int create_or_delete_trace_kprobe(const char *raw_command)
413d37d1 910{
6212dd29 911 int ret;
02ca1521 912
d262271d
MH
913 if (raw_command[0] == '-')
914 return dyn_event_release(raw_command, &trace_kprobe_ops);
413d37d1 915
d262271d 916 ret = trace_kprobe_create(raw_command);
6212dd29 917 return ret == -ECANCELED ? -EINVAL : ret;
413d37d1
MH
918}
919
29a15481 920static int trace_kprobe_run_command(struct dynevent_cmd *cmd)
2a588dd1 921{
d262271d 922 return create_or_delete_trace_kprobe(cmd->seq.buffer);
2a588dd1
TZ
923}
924
925/**
926 * kprobe_event_cmd_init - Initialize a kprobe event command object
927 * @cmd: A pointer to the dynevent_cmd struct representing the new event
928 * @buf: A pointer to the buffer used to build the command
929 * @maxlen: The length of the buffer passed in @buf
930 *
931 * Initialize a synthetic event command object. Use this before
932 * calling any of the other kprobe_event functions.
933 */
934void kprobe_event_cmd_init(struct dynevent_cmd *cmd, char *buf, int maxlen)
935{
936 dynevent_cmd_init(cmd, buf, maxlen, DYNEVENT_TYPE_KPROBE,
29a15481 937 trace_kprobe_run_command);
2a588dd1
TZ
938}
939EXPORT_SYMBOL_GPL(kprobe_event_cmd_init);
940
941/**
942 * __kprobe_event_gen_cmd_start - Generate a kprobe event command from arg list
943 * @cmd: A pointer to the dynevent_cmd struct representing the new event
944 * @name: The name of the kprobe event
945 * @loc: The location of the kprobe event
946 * @kretprobe: Is this a return probe?
947 * @args: Variable number of arg (pairs), one pair for each field
948 *
949 * NOTE: Users normally won't want to call this function directly, but
950 * rather use the kprobe_event_gen_cmd_start() wrapper, which automatically
951 * adds a NULL to the end of the arg list. If this function is used
952 * directly, make sure the last arg in the variable arg list is NULL.
953 *
954 * Generate a kprobe event command to be executed by
955 * kprobe_event_gen_cmd_end(). This function can be used to generate the
956 * complete command or only the first part of it; in the latter case,
957 * kprobe_event_add_fields() can be used to add more fields following this.
958 *
5b4dcd2d
MH
959 * Unlikely the synth_event_gen_cmd_start(), @loc must be specified. This
960 * returns -EINVAL if @loc == NULL.
961 *
2a588dd1
TZ
962 * Return: 0 if successful, error otherwise.
963 */
964int __kprobe_event_gen_cmd_start(struct dynevent_cmd *cmd, bool kretprobe,
965 const char *name, const char *loc, ...)
966{
967 char buf[MAX_EVENT_NAME_LEN];
968 struct dynevent_arg arg;
969 va_list args;
970 int ret;
971
972 if (cmd->type != DYNEVENT_TYPE_KPROBE)
973 return -EINVAL;
974
5b4dcd2d
MH
975 if (!loc)
976 return -EINVAL;
977
2a588dd1
TZ
978 if (kretprobe)
979 snprintf(buf, MAX_EVENT_NAME_LEN, "r:kprobes/%s", name);
980 else
981 snprintf(buf, MAX_EVENT_NAME_LEN, "p:kprobes/%s", name);
982
983 ret = dynevent_str_add(cmd, buf);
984 if (ret)
985 return ret;
986
74403b6c 987 dynevent_arg_init(&arg, 0);
2a588dd1 988 arg.str = loc;
74403b6c 989 ret = dynevent_arg_add(cmd, &arg, NULL);
2a588dd1
TZ
990 if (ret)
991 return ret;
992
993 va_start(args, loc);
994 for (;;) {
995 const char *field;
996
997 field = va_arg(args, const char *);
998 if (!field)
999 break;
1000
1001 if (++cmd->n_fields > MAX_TRACE_ARGS) {
1002 ret = -EINVAL;
1003 break;
1004 }
1005
1006 arg.str = field;
74403b6c 1007 ret = dynevent_arg_add(cmd, &arg, NULL);
2a588dd1
TZ
1008 if (ret)
1009 break;
1010 }
1011 va_end(args);
1012
1013 return ret;
1014}
1015EXPORT_SYMBOL_GPL(__kprobe_event_gen_cmd_start);
1016
1017/**
1018 * __kprobe_event_add_fields - Add probe fields to a kprobe command from arg list
1019 * @cmd: A pointer to the dynevent_cmd struct representing the new event
1020 * @args: Variable number of arg (pairs), one pair for each field
1021 *
1022 * NOTE: Users normally won't want to call this function directly, but
1023 * rather use the kprobe_event_add_fields() wrapper, which
1024 * automatically adds a NULL to the end of the arg list. If this
1025 * function is used directly, make sure the last arg in the variable
1026 * arg list is NULL.
1027 *
1028 * Add probe fields to an existing kprobe command using a variable
1029 * list of args. Fields are added in the same order they're listed.
1030 *
1031 * Return: 0 if successful, error otherwise.
1032 */
1033int __kprobe_event_add_fields(struct dynevent_cmd *cmd, ...)
1034{
1035 struct dynevent_arg arg;
1036 va_list args;
10f129cb 1037 int ret = 0;
2a588dd1
TZ
1038
1039 if (cmd->type != DYNEVENT_TYPE_KPROBE)
1040 return -EINVAL;
1041
74403b6c 1042 dynevent_arg_init(&arg, 0);
2a588dd1
TZ
1043
1044 va_start(args, cmd);
1045 for (;;) {
1046 const char *field;
1047
1048 field = va_arg(args, const char *);
1049 if (!field)
1050 break;
1051
1052 if (++cmd->n_fields > MAX_TRACE_ARGS) {
1053 ret = -EINVAL;
1054 break;
1055 }
1056
1057 arg.str = field;
74403b6c 1058 ret = dynevent_arg_add(cmd, &arg, NULL);
2a588dd1
TZ
1059 if (ret)
1060 break;
1061 }
1062 va_end(args);
1063
1064 return ret;
1065}
1066EXPORT_SYMBOL_GPL(__kprobe_event_add_fields);
1067
1068/**
1069 * kprobe_event_delete - Delete a kprobe event
1070 * @name: The name of the kprobe event to delete
1071 *
1072 * Delete a kprobe event with the give @name from kernel code rather
1073 * than directly from the command line.
1074 *
1075 * Return: 0 if successful, error otherwise.
1076 */
1077int kprobe_event_delete(const char *name)
1078{
1079 char buf[MAX_EVENT_NAME_LEN];
1080
1081 snprintf(buf, MAX_EVENT_NAME_LEN, "-:%s", name);
1082
d262271d 1083 return create_or_delete_trace_kprobe(buf);
2a588dd1
TZ
1084}
1085EXPORT_SYMBOL_GPL(kprobe_event_delete);
1086
6212dd29 1087static int trace_kprobe_release(struct dyn_event *ev)
413d37d1 1088{
6212dd29
MH
1089 struct trace_kprobe *tk = to_trace_kprobe(ev);
1090 int ret = unregister_trace_kprobe(tk);
413d37d1 1091
6212dd29
MH
1092 if (!ret)
1093 free_trace_kprobe(tk);
1094 return ret;
413d37d1
MH
1095}
1096
6212dd29 1097static int trace_kprobe_show(struct seq_file *m, struct dyn_event *ev)
413d37d1 1098{
6212dd29 1099 struct trace_kprobe *tk = to_trace_kprobe(ev);
93ccae7a 1100 int i;
413d37d1 1101
fa6f0cc7 1102 seq_putc(m, trace_kprobe_is_return(tk) ? 'r' : 'p');
6a13a0d7
MH
1103 if (trace_kprobe_is_return(tk) && tk->rp.maxactive)
1104 seq_printf(m, "%d", tk->rp.maxactive);
b55ce203
MH
1105 seq_printf(m, ":%s/%s", trace_probe_group_name(&tk->tp),
1106 trace_probe_name(&tk->tp));
413d37d1 1107
c31ffb3f
NK
1108 if (!tk->symbol)
1109 seq_printf(m, " 0x%p", tk->rp.kp.addr);
1110 else if (tk->rp.kp.offset)
1111 seq_printf(m, " %s+%u", trace_kprobe_symbol(tk),
1112 tk->rp.kp.offset);
413d37d1 1113 else
c31ffb3f 1114 seq_printf(m, " %s", trace_kprobe_symbol(tk));
413d37d1 1115
c31ffb3f
NK
1116 for (i = 0; i < tk->tp.nr_args; i++)
1117 seq_printf(m, " %s=%s", tk->tp.args[i].name, tk->tp.args[i].comm);
fa6f0cc7 1118 seq_putc(m, '\n');
93ccae7a 1119
413d37d1
MH
1120 return 0;
1121}
1122
6212dd29
MH
1123static int probes_seq_show(struct seq_file *m, void *v)
1124{
1125 struct dyn_event *ev = v;
1126
1127 if (!is_trace_kprobe(ev))
1128 return 0;
1129
1130 return trace_kprobe_show(m, ev);
1131}
1132
413d37d1 1133static const struct seq_operations probes_seq_op = {
6212dd29
MH
1134 .start = dyn_event_seq_start,
1135 .next = dyn_event_seq_next,
1136 .stop = dyn_event_seq_stop,
413d37d1
MH
1137 .show = probes_seq_show
1138};
1139
1140static int probes_open(struct inode *inode, struct file *file)
1141{
02ca1521
MH
1142 int ret;
1143
17911ff3
SRV
1144 ret = security_locked_down(LOCKDOWN_TRACEFS);
1145 if (ret)
1146 return ret;
1147
02ca1521 1148 if ((file->f_mode & FMODE_WRITE) && (file->f_flags & O_TRUNC)) {
6212dd29 1149 ret = dyn_events_release_all(&trace_kprobe_ops);
02ca1521
MH
1150 if (ret < 0)
1151 return ret;
1152 }
413d37d1
MH
1153
1154 return seq_open(file, &probes_seq_op);
1155}
1156
413d37d1
MH
1157static ssize_t probes_write(struct file *file, const char __user *buffer,
1158 size_t count, loff_t *ppos)
1159{
7e465baa 1160 return trace_parse_run_command(file, buffer, count, ppos,
6212dd29 1161 create_or_delete_trace_kprobe);
413d37d1
MH
1162}
1163
1164static const struct file_operations kprobe_events_ops = {
1165 .owner = THIS_MODULE,
1166 .open = probes_open,
1167 .read = seq_read,
1168 .llseek = seq_lseek,
1169 .release = seq_release,
1170 .write = probes_write,
1171};
1172
cd7e7bd5
MH
1173/* Probes profiling interfaces */
1174static int probes_profile_seq_show(struct seq_file *m, void *v)
1175{
6212dd29
MH
1176 struct dyn_event *ev = v;
1177 struct trace_kprobe *tk;
cd7e7bd5 1178
6212dd29
MH
1179 if (!is_trace_kprobe(ev))
1180 return 0;
cd7e7bd5 1181
6212dd29 1182 tk = to_trace_kprobe(ev);
de7b2973 1183 seq_printf(m, " %-44s %15lu %15lu\n",
b55ce203 1184 trace_probe_name(&tk->tp),
f18f97ac 1185 trace_kprobe_nhit(tk),
c31ffb3f 1186 tk->rp.kp.nmissed);
cd7e7bd5
MH
1187
1188 return 0;
1189}
1190
1191static const struct seq_operations profile_seq_op = {
6212dd29
MH
1192 .start = dyn_event_seq_start,
1193 .next = dyn_event_seq_next,
1194 .stop = dyn_event_seq_stop,
cd7e7bd5
MH
1195 .show = probes_profile_seq_show
1196};
1197
1198static int profile_open(struct inode *inode, struct file *file)
1199{
17911ff3
SRV
1200 int ret;
1201
1202 ret = security_locked_down(LOCKDOWN_TRACEFS);
1203 if (ret)
1204 return ret;
1205
cd7e7bd5
MH
1206 return seq_open(file, &profile_seq_op);
1207}
1208
1209static const struct file_operations kprobe_profile_ops = {
1210 .owner = THIS_MODULE,
1211 .open = profile_open,
1212 .read = seq_read,
1213 .llseek = seq_lseek,
1214 .release = seq_release,
1215};
1216
53305928
MH
1217/* Kprobe specific fetch functions */
1218
9de1fec5
CH
1219/* Return the length of string -- including null terminal byte */
1220static nokprobe_inline int
1221fetch_store_strlen_user(unsigned long addr)
1222{
1223 const void __user *uaddr = (__force const void __user *)addr;
1224
1225 return strnlen_user_nofault(uaddr, MAX_STRING_SIZE);
1226}
1227
53305928 1228/* Return the length of string -- including null terminal byte */
9178412d
MH
1229static nokprobe_inline int
1230fetch_store_strlen(unsigned long addr)
53305928 1231{
53305928
MH
1232 int ret, len = 0;
1233 u8 c;
1234
9de1fec5
CH
1235#ifdef CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE
1236 if (addr < TASK_SIZE)
1237 return fetch_store_strlen_user(addr);
1238#endif
1239
53305928 1240 do {
fe557319 1241 ret = copy_from_kernel_nofault(&c, (u8 *)addr + len, 1);
53305928
MH
1242 len++;
1243 } while (c && ret == 0 && len < MAX_STRING_SIZE);
1244
9178412d 1245 return (ret < 0) ? ret : len;
53305928
MH
1246}
1247
1248/*
9de1fec5
CH
1249 * Fetch a null-terminated string from user. Caller MUST set *(u32 *)buf
1250 * with max length and relative data location.
53305928 1251 */
9178412d 1252static nokprobe_inline int
9de1fec5 1253fetch_store_string_user(unsigned long addr, void *dest, void *base)
53305928 1254{
9de1fec5 1255 const void __user *uaddr = (__force const void __user *)addr;
9178412d 1256 int maxlen = get_loc_len(*(u32 *)dest);
88903c46 1257 void *__dest;
53305928
MH
1258 long ret;
1259
9178412d
MH
1260 if (unlikely(!maxlen))
1261 return -ENOMEM;
88903c46
MH
1262
1263 __dest = get_loc_data(dest, base);
1264
9de1fec5 1265 ret = strncpy_from_user_nofault(__dest, uaddr, maxlen);
88903c46
MH
1266 if (ret >= 0)
1267 *(u32 *)dest = make_data_loc(ret, __dest - base);
1268
1269 return ret;
1270}
53305928 1271
88903c46 1272/*
9de1fec5
CH
1273 * Fetch a null-terminated string. Caller MUST set *(u32 *)buf with max
1274 * length and relative data location.
88903c46
MH
1275 */
1276static nokprobe_inline int
9de1fec5 1277fetch_store_string(unsigned long addr, void *dest, void *base)
88903c46 1278{
88903c46
MH
1279 int maxlen = get_loc_len(*(u32 *)dest);
1280 void *__dest;
1281 long ret;
1282
9de1fec5
CH
1283#ifdef CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE
1284 if ((unsigned long)addr < TASK_SIZE)
1285 return fetch_store_string_user(addr, dest, base);
1286#endif
1287
88903c46
MH
1288 if (unlikely(!maxlen))
1289 return -ENOMEM;
1290
1291 __dest = get_loc_data(dest, base);
1292
9de1fec5
CH
1293 /*
1294 * Try to get string again, since the string can be changed while
1295 * probing.
1296 */
1297 ret = strncpy_from_kernel_nofault(__dest, (void *)addr, maxlen);
9178412d 1298 if (ret >= 0)
88903c46
MH
1299 *(u32 *)dest = make_data_loc(ret, __dest - base);
1300
9178412d 1301 return ret;
53305928
MH
1302}
1303
e65f7ae7
MH
1304static nokprobe_inline int
1305probe_mem_read_user(void *dest, void *src, size_t size)
1306{
539b75b2
MH
1307 const void __user *uaddr = (__force const void __user *)src;
1308
c0ee37e8 1309 return copy_from_user_nofault(dest, uaddr, size);
e65f7ae7
MH
1310}
1311
9de1fec5
CH
1312static nokprobe_inline int
1313probe_mem_read(void *dest, void *src, size_t size)
1314{
1315#ifdef CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE
1316 if ((unsigned long)src < TASK_SIZE)
1317 return probe_mem_read_user(dest, src, size);
1318#endif
fe557319 1319 return copy_from_kernel_nofault(dest, src, size);
9de1fec5
CH
1320}
1321
53305928
MH
1322/* Note that we don't verify it, since the code does not come from user space */
1323static int
8565a45d 1324process_fetch_insn(struct fetch_insn *code, void *rec, void *dest,
9178412d 1325 void *base)
53305928 1326{
8565a45d 1327 struct pt_regs *regs = rec;
53305928 1328 unsigned long val;
53305928 1329
a6682814 1330retry:
53305928
MH
1331 /* 1st stage: get value from context */
1332 switch (code->op) {
1333 case FETCH_OP_REG:
1334 val = regs_get_register(regs, code->param);
1335 break;
1336 case FETCH_OP_STACK:
1337 val = regs_get_kernel_stack_nth(regs, code->param);
1338 break;
1339 case FETCH_OP_STACKP:
1340 val = kernel_stack_pointer(regs);
1341 break;
1342 case FETCH_OP_RETVAL:
1343 val = regs_return_value(regs);
1344 break;
1345 case FETCH_OP_IMM:
1346 val = code->immediate;
1347 break;
1348 case FETCH_OP_COMM:
1349 val = (unsigned long)current->comm;
1350 break;
a42e3c4d
MH
1351 case FETCH_OP_DATA:
1352 val = (unsigned long)code->data;
1353 break;
a1303af5
MH
1354#ifdef CONFIG_HAVE_FUNCTION_ARG_ACCESS_API
1355 case FETCH_OP_ARG:
1356 val = regs_get_kernel_argument(regs, code->param);
1357 break;
1358#endif
a6682814
MH
1359 case FETCH_NOP_SYMBOL: /* Ignore a place holder */
1360 code++;
1361 goto retry;
53305928
MH
1362 default:
1363 return -EILSEQ;
1364 }
1365 code++;
1366
9b960a38 1367 return process_fetch_insn_bottom(code, val, dest, base);
53305928
MH
1368}
1369NOKPROBE_SYMBOL(process_fetch_insn)
1370
413d37d1 1371/* Kprobe handler */
3da0f180 1372static nokprobe_inline void
c31ffb3f 1373__kprobe_trace_func(struct trace_kprobe *tk, struct pt_regs *regs,
7f1d2f82 1374 struct trace_event_file *trace_file)
413d37d1 1375{
93ccae7a 1376 struct kprobe_trace_entry_head *entry;
e3dc9f89 1377 struct trace_event_call *call = trace_probe_event_call(&tk->tp);
8cfcf155
MH
1378 struct trace_event_buffer fbuffer;
1379 int dsize;
413d37d1 1380
7f1d2f82 1381 WARN_ON(call != trace_file->event_call);
41a7dd42 1382
09a5059a 1383 if (trace_trigger_soft_disabled(trace_file))
13a1e4ae 1384 return;
b8820084 1385
36590c50 1386 fbuffer.trace_ctx = tracing_gen_ctx();
8cfcf155 1387 fbuffer.trace_file = trace_file;
413d37d1 1388
c31ffb3f 1389 dsize = __get_data_size(&tk->tp, regs);
413d37d1 1390
8cfcf155
MH
1391 fbuffer.event =
1392 trace_event_buffer_lock_reserve(&fbuffer.buffer, trace_file,
1393 call->event.type,
1394 sizeof(*entry) + tk->tp.size + dsize,
36590c50 1395 fbuffer.trace_ctx);
8cfcf155 1396 if (!fbuffer.event)
1e12a4a7 1397 return;
413d37d1 1398
8cfcf155
MH
1399 fbuffer.regs = regs;
1400 entry = fbuffer.entry = ring_buffer_event_data(fbuffer.event);
c31ffb3f 1401 entry->ip = (unsigned long)tk->rp.kp.addr;
9178412d 1402 store_trace_args(&entry[1], &tk->tp, regs, sizeof(*entry), dsize);
413d37d1 1403
8cfcf155 1404 trace_event_buffer_commit(&fbuffer);
413d37d1
MH
1405}
1406
3da0f180 1407static void
c31ffb3f 1408kprobe_trace_func(struct trace_kprobe *tk, struct pt_regs *regs)
41a7dd42 1409{
b04d52e3 1410 struct event_file_link *link;
41a7dd42 1411
b5f935ee 1412 trace_probe_for_each_link_rcu(link, &tk->tp)
c31ffb3f 1413 __kprobe_trace_func(tk, regs, link->file);
41a7dd42 1414}
3da0f180 1415NOKPROBE_SYMBOL(kprobe_trace_func);
41a7dd42 1416
413d37d1 1417/* Kretprobe handler */
3da0f180 1418static nokprobe_inline void
c31ffb3f 1419__kretprobe_trace_func(struct trace_kprobe *tk, struct kretprobe_instance *ri,
41a7dd42 1420 struct pt_regs *regs,
7f1d2f82 1421 struct trace_event_file *trace_file)
413d37d1 1422{
93ccae7a 1423 struct kretprobe_trace_entry_head *entry;
8cfcf155 1424 struct trace_event_buffer fbuffer;
e3dc9f89 1425 struct trace_event_call *call = trace_probe_event_call(&tk->tp);
8cfcf155 1426 int dsize;
413d37d1 1427
7f1d2f82 1428 WARN_ON(call != trace_file->event_call);
41a7dd42 1429
09a5059a 1430 if (trace_trigger_soft_disabled(trace_file))
13a1e4ae 1431 return;
b8820084 1432
36590c50 1433 fbuffer.trace_ctx = tracing_gen_ctx();
8cfcf155 1434 fbuffer.trace_file = trace_file;
413d37d1 1435
c31ffb3f 1436 dsize = __get_data_size(&tk->tp, regs);
8cfcf155
MH
1437 fbuffer.event =
1438 trace_event_buffer_lock_reserve(&fbuffer.buffer, trace_file,
1439 call->event.type,
1440 sizeof(*entry) + tk->tp.size + dsize,
36590c50 1441 fbuffer.trace_ctx);
8cfcf155 1442 if (!fbuffer.event)
1e12a4a7 1443 return;
413d37d1 1444
8cfcf155
MH
1445 fbuffer.regs = regs;
1446 entry = fbuffer.entry = ring_buffer_event_data(fbuffer.event);
c31ffb3f 1447 entry->func = (unsigned long)tk->rp.kp.addr;
413d37d1 1448 entry->ret_ip = (unsigned long)ri->ret_addr;
9178412d 1449 store_trace_args(&entry[1], &tk->tp, regs, sizeof(*entry), dsize);
413d37d1 1450
8cfcf155 1451 trace_event_buffer_commit(&fbuffer);
413d37d1
MH
1452}
1453
3da0f180 1454static void
c31ffb3f 1455kretprobe_trace_func(struct trace_kprobe *tk, struct kretprobe_instance *ri,
41a7dd42
MH
1456 struct pt_regs *regs)
1457{
b04d52e3 1458 struct event_file_link *link;
41a7dd42 1459
b5f935ee 1460 trace_probe_for_each_link_rcu(link, &tk->tp)
c31ffb3f 1461 __kretprobe_trace_func(tk, ri, regs, link->file);
41a7dd42 1462}
3da0f180 1463NOKPROBE_SYMBOL(kretprobe_trace_func);
41a7dd42 1464
413d37d1 1465/* Event entry printers */
b62fdd97 1466static enum print_line_t
a9a57763
SR
1467print_kprobe_event(struct trace_iterator *iter, int flags,
1468 struct trace_event *event)
413d37d1 1469{
93ccae7a 1470 struct kprobe_trace_entry_head *field;
413d37d1 1471 struct trace_seq *s = &iter->seq;
eca0d916 1472 struct trace_probe *tp;
413d37d1 1473
93ccae7a 1474 field = (struct kprobe_trace_entry_head *)iter->ent;
60d53e2c
MH
1475 tp = trace_probe_primary_from_call(
1476 container_of(event, struct trace_event_call, event));
1477 if (WARN_ON_ONCE(!tp))
1478 goto out;
413d37d1 1479
b55ce203 1480 trace_seq_printf(s, "%s: (", trace_probe_name(tp));
6e9f23d1 1481
413d37d1 1482 if (!seq_print_ip_sym(s, field->ip, flags | TRACE_ITER_SYM_OFFSET))
85224da0 1483 goto out;
413d37d1 1484
85224da0 1485 trace_seq_putc(s, ')');
413d37d1 1486
56de7630
MH
1487 if (print_probe_args(s, tp->args, tp->nr_args,
1488 (u8 *)&field[1], field) < 0)
1489 goto out;
413d37d1 1490
85224da0
SRRH
1491 trace_seq_putc(s, '\n');
1492 out:
1493 return trace_handle_return(s);
413d37d1
MH
1494}
1495
b62fdd97 1496static enum print_line_t
a9a57763
SR
1497print_kretprobe_event(struct trace_iterator *iter, int flags,
1498 struct trace_event *event)
413d37d1 1499{
93ccae7a 1500 struct kretprobe_trace_entry_head *field;
413d37d1 1501 struct trace_seq *s = &iter->seq;
eca0d916 1502 struct trace_probe *tp;
413d37d1 1503
93ccae7a 1504 field = (struct kretprobe_trace_entry_head *)iter->ent;
60d53e2c
MH
1505 tp = trace_probe_primary_from_call(
1506 container_of(event, struct trace_event_call, event));
1507 if (WARN_ON_ONCE(!tp))
1508 goto out;
413d37d1 1509
b55ce203 1510 trace_seq_printf(s, "%s: (", trace_probe_name(tp));
6e9f23d1 1511
413d37d1 1512 if (!seq_print_ip_sym(s, field->ret_ip, flags | TRACE_ITER_SYM_OFFSET))
85224da0 1513 goto out;
413d37d1 1514
85224da0 1515 trace_seq_puts(s, " <- ");
413d37d1
MH
1516
1517 if (!seq_print_ip_sym(s, field->func, flags & ~TRACE_ITER_SYM_OFFSET))
85224da0 1518 goto out;
413d37d1 1519
85224da0 1520 trace_seq_putc(s, ')');
413d37d1 1521
56de7630
MH
1522 if (print_probe_args(s, tp->args, tp->nr_args,
1523 (u8 *)&field[1], field) < 0)
1524 goto out;
413d37d1 1525
85224da0 1526 trace_seq_putc(s, '\n');
413d37d1 1527
85224da0
SRRH
1528 out:
1529 return trace_handle_return(s);
413d37d1
MH
1530}
1531
413d37d1 1532
2425bcb9 1533static int kprobe_event_define_fields(struct trace_event_call *event_call)
413d37d1 1534{
eeb07b06 1535 int ret;
93ccae7a 1536 struct kprobe_trace_entry_head field;
60d53e2c
MH
1537 struct trace_probe *tp;
1538
1539 tp = trace_probe_primary_from_call(event_call);
1540 if (WARN_ON_ONCE(!tp))
1541 return -ENOENT;
413d37d1 1542
a703d946 1543 DEFINE_FIELD(unsigned long, ip, FIELD_STRING_IP, 0);
c31ffb3f 1544
60d53e2c 1545 return traceprobe_define_arg_fields(event_call, sizeof(field), tp);
413d37d1
MH
1546}
1547
2425bcb9 1548static int kretprobe_event_define_fields(struct trace_event_call *event_call)
413d37d1 1549{
eeb07b06 1550 int ret;
93ccae7a 1551 struct kretprobe_trace_entry_head field;
60d53e2c
MH
1552 struct trace_probe *tp;
1553
1554 tp = trace_probe_primary_from_call(event_call);
1555 if (WARN_ON_ONCE(!tp))
1556 return -ENOENT;
413d37d1 1557
a703d946
MH
1558 DEFINE_FIELD(unsigned long, func, FIELD_STRING_FUNC, 0);
1559 DEFINE_FIELD(unsigned long, ret_ip, FIELD_STRING_RETIP, 0);
c31ffb3f 1560
60d53e2c 1561 return traceprobe_define_arg_fields(event_call, sizeof(field), tp);
413d37d1
MH
1562}
1563
07b139c8 1564#ifdef CONFIG_PERF_EVENTS
e08d1c65
MH
1565
1566/* Kprobe profile handler */
9802d865 1567static int
c31ffb3f 1568kprobe_perf_func(struct trace_kprobe *tk, struct pt_regs *regs)
e08d1c65 1569{
e3dc9f89 1570 struct trace_event_call *call = trace_probe_event_call(&tk->tp);
93ccae7a 1571 struct kprobe_trace_entry_head *entry;
1c024eca 1572 struct hlist_head *head;
e09c8614 1573 int size, __size, dsize;
4ed7c92d 1574 int rctx;
e08d1c65 1575
9802d865 1576 if (bpf_prog_array_valid(call)) {
66665ad2 1577 unsigned long orig_ip = instruction_pointer(regs);
9802d865
JB
1578 int ret;
1579
1580 ret = trace_call_bpf(call, regs);
1581
1582 /*
1583 * We need to check and see if we modified the pc of the
cce188bd
MH
1584 * pt_regs, and if so return 1 so that we don't do the
1585 * single stepping.
9802d865 1586 */
cce188bd 1587 if (orig_ip != instruction_pointer(regs))
9802d865 1588 return 1;
9802d865
JB
1589 if (!ret)
1590 return 0;
1591 }
2541517c 1592
288e984e
ON
1593 head = this_cpu_ptr(call->perf_events);
1594 if (hlist_empty(head))
9802d865 1595 return 0;
288e984e 1596
c31ffb3f
NK
1597 dsize = __get_data_size(&tk->tp, regs);
1598 __size = sizeof(*entry) + tk->tp.size + dsize;
74ebb63e
MH
1599 size = ALIGN(__size + sizeof(u32), sizeof(u64));
1600 size -= sizeof(u32);
ce71b9df 1601
1e1dcd93 1602 entry = perf_trace_buf_alloc(size, NULL, &rctx);
430ad5a6 1603 if (!entry)
9802d865 1604 return 0;
a1a138d0 1605
c31ffb3f 1606 entry->ip = (unsigned long)tk->rp.kp.addr;
e09c8614 1607 memset(&entry[1], 0, dsize);
9178412d 1608 store_trace_args(&entry[1], &tk->tp, regs, sizeof(*entry), dsize);
1e1dcd93 1609 perf_trace_buf_submit(entry, size, rctx, call->event.type, 1, regs,
8fd0fbbe 1610 head, NULL);
9802d865 1611 return 0;
e08d1c65 1612}
3da0f180 1613NOKPROBE_SYMBOL(kprobe_perf_func);
e08d1c65
MH
1614
1615/* Kretprobe profile handler */
3da0f180 1616static void
c31ffb3f 1617kretprobe_perf_func(struct trace_kprobe *tk, struct kretprobe_instance *ri,
2b106aab 1618 struct pt_regs *regs)
e08d1c65 1619{
e3dc9f89 1620 struct trace_event_call *call = trace_probe_event_call(&tk->tp);
93ccae7a 1621 struct kretprobe_trace_entry_head *entry;
1c024eca 1622 struct hlist_head *head;
e09c8614 1623 int size, __size, dsize;
4ed7c92d 1624 int rctx;
e08d1c65 1625
e87c6bc3 1626 if (bpf_prog_array_valid(call) && !trace_call_bpf(call, regs))
2541517c
AS
1627 return;
1628
288e984e
ON
1629 head = this_cpu_ptr(call->perf_events);
1630 if (hlist_empty(head))
1631 return;
1632
c31ffb3f
NK
1633 dsize = __get_data_size(&tk->tp, regs);
1634 __size = sizeof(*entry) + tk->tp.size + dsize;
74ebb63e
MH
1635 size = ALIGN(__size + sizeof(u32), sizeof(u64));
1636 size -= sizeof(u32);
444a2a3b 1637
1e1dcd93 1638 entry = perf_trace_buf_alloc(size, NULL, &rctx);
430ad5a6 1639 if (!entry)
1e12a4a7 1640 return;
e08d1c65 1641
c31ffb3f 1642 entry->func = (unsigned long)tk->rp.kp.addr;
a1a138d0 1643 entry->ret_ip = (unsigned long)ri->ret_addr;
9178412d 1644 store_trace_args(&entry[1], &tk->tp, regs, sizeof(*entry), dsize);
1e1dcd93 1645 perf_trace_buf_submit(entry, size, rctx, call->event.type, 1, regs,
8fd0fbbe 1646 head, NULL);
e08d1c65 1647}
3da0f180 1648NOKPROBE_SYMBOL(kretprobe_perf_func);
41bdc4b4
YS
1649
1650int bpf_get_kprobe_info(const struct perf_event *event, u32 *fd_type,
1651 const char **symbol, u64 *probe_offset,
1652 u64 *probe_addr, bool perf_type_tracepoint)
1653{
1654 const char *pevent = trace_event_name(event->tp_event);
1655 const char *group = event->tp_event->class->system;
1656 struct trace_kprobe *tk;
1657
1658 if (perf_type_tracepoint)
1659 tk = find_trace_kprobe(pevent, group);
1660 else
22d5bd68 1661 tk = trace_kprobe_primary_from_call(event->tp_event);
41bdc4b4
YS
1662 if (!tk)
1663 return -EINVAL;
1664
1665 *fd_type = trace_kprobe_is_return(tk) ? BPF_FD_TYPE_KRETPROBE
1666 : BPF_FD_TYPE_KPROBE;
1667 if (tk->symbol) {
1668 *symbol = tk->symbol;
1669 *probe_offset = tk->rp.kp.offset;
1670 *probe_addr = 0;
1671 } else {
1672 *symbol = NULL;
1673 *probe_offset = 0;
1674 *probe_addr = (unsigned long)tk->rp.kp.addr;
1675 }
1676 return 0;
1677}
07b139c8 1678#endif /* CONFIG_PERF_EVENTS */
50d78056 1679
3fe3d619
ON
1680/*
1681 * called by perf_trace_init() or __ftrace_set_clr_event() under event_mutex.
1682 *
1683 * kprobe_trace_self_tests_init() does enable_trace_probe/disable_trace_probe
1684 * lockless, but we can't race with this __init function.
1685 */
2425bcb9 1686static int kprobe_register(struct trace_event_call *event,
fbc1963d 1687 enum trace_reg type, void *data)
2239291a 1688{
7f1d2f82 1689 struct trace_event_file *file = data;
1538f888 1690
2239291a
SR
1691 switch (type) {
1692 case TRACE_REG_REGISTER:
60d53e2c 1693 return enable_trace_kprobe(event, file);
2239291a 1694 case TRACE_REG_UNREGISTER:
60d53e2c 1695 return disable_trace_kprobe(event, file);
2239291a
SR
1696
1697#ifdef CONFIG_PERF_EVENTS
1698 case TRACE_REG_PERF_REGISTER:
60d53e2c 1699 return enable_trace_kprobe(event, NULL);
2239291a 1700 case TRACE_REG_PERF_UNREGISTER:
60d53e2c 1701 return disable_trace_kprobe(event, NULL);
ceec0b6f
JO
1702 case TRACE_REG_PERF_OPEN:
1703 case TRACE_REG_PERF_CLOSE:
489c75c3
JO
1704 case TRACE_REG_PERF_ADD:
1705 case TRACE_REG_PERF_DEL:
ceec0b6f 1706 return 0;
2239291a
SR
1707#endif
1708 }
1709 return 0;
1710}
50d78056 1711
3da0f180 1712static int kprobe_dispatcher(struct kprobe *kp, struct pt_regs *regs)
50d78056 1713{
c31ffb3f 1714 struct trace_kprobe *tk = container_of(kp, struct trace_kprobe, rp.kp);
9802d865 1715 int ret = 0;
e08d1c65 1716
a7636d9e 1717 raw_cpu_inc(*tk->nhit);
48182bd2 1718
747774d6 1719 if (trace_probe_test_flag(&tk->tp, TP_FLAG_TRACE))
c31ffb3f 1720 kprobe_trace_func(tk, regs);
07b139c8 1721#ifdef CONFIG_PERF_EVENTS
747774d6 1722 if (trace_probe_test_flag(&tk->tp, TP_FLAG_PROFILE))
9802d865 1723 ret = kprobe_perf_func(tk, regs);
07b139c8 1724#endif
9802d865 1725 return ret;
50d78056 1726}
3da0f180 1727NOKPROBE_SYMBOL(kprobe_dispatcher);
50d78056 1728
3da0f180
MH
1729static int
1730kretprobe_dispatcher(struct kretprobe_instance *ri, struct pt_regs *regs)
50d78056 1731{
d741bf41
PZ
1732 struct kretprobe *rp = get_kretprobe(ri);
1733 struct trace_kprobe *tk = container_of(rp, struct trace_kprobe, rp);
50d78056 1734
a7636d9e 1735 raw_cpu_inc(*tk->nhit);
48182bd2 1736
747774d6 1737 if (trace_probe_test_flag(&tk->tp, TP_FLAG_TRACE))
c31ffb3f 1738 kretprobe_trace_func(tk, ri, regs);
07b139c8 1739#ifdef CONFIG_PERF_EVENTS
747774d6 1740 if (trace_probe_test_flag(&tk->tp, TP_FLAG_PROFILE))
c31ffb3f 1741 kretprobe_perf_func(tk, ri, regs);
07b139c8 1742#endif
f2cc020d 1743 return 0; /* We don't tweak kernel, so just return 0 */
50d78056 1744}
3da0f180 1745NOKPROBE_SYMBOL(kretprobe_dispatcher);
e08d1c65 1746
a9a57763
SR
1747static struct trace_event_functions kretprobe_funcs = {
1748 .trace = print_kretprobe_event
1749};
1750
1751static struct trace_event_functions kprobe_funcs = {
1752 .trace = print_kprobe_event
1753};
1754
04ae87a5
PZ
1755static struct trace_event_fields kretprobe_fields_array[] = {
1756 { .type = TRACE_FUNCTION_TYPE,
1757 .define_fields = kretprobe_event_define_fields },
1758 {}
1759};
1760
1761static struct trace_event_fields kprobe_fields_array[] = {
1762 { .type = TRACE_FUNCTION_TYPE,
1763 .define_fields = kprobe_event_define_fields },
1764 {}
1765};
1766
e3dc9f89 1767static inline void init_trace_event_call(struct trace_kprobe *tk)
413d37d1 1768{
e3dc9f89
MH
1769 struct trace_event_call *call = trace_probe_event_call(&tk->tp);
1770
c31ffb3f 1771 if (trace_kprobe_is_return(tk)) {
80decc70 1772 call->event.funcs = &kretprobe_funcs;
04ae87a5 1773 call->class->fields_array = kretprobe_fields_array;
413d37d1 1774 } else {
80decc70 1775 call->event.funcs = &kprobe_funcs;
04ae87a5 1776 call->class->fields_array = kprobe_fields_array;
413d37d1 1777 }
e12f03d7
SL
1778
1779 call->flags = TRACE_EVENT_FL_KPROBE;
1780 call->class->reg = kprobe_register;
e12f03d7
SL
1781}
1782
1783static int register_kprobe_event(struct trace_kprobe *tk)
1784{
e3dc9f89 1785 init_trace_event_call(tk);
f730e0f2 1786
46e5376d 1787 return trace_probe_register_event_call(&tk->tp);
413d37d1
MH
1788}
1789
c31ffb3f 1790static int unregister_kprobe_event(struct trace_kprobe *tk)
413d37d1 1791{
46e5376d 1792 return trace_probe_unregister_event_call(&tk->tp);
413d37d1
MH
1793}
1794
e12f03d7
SL
1795#ifdef CONFIG_PERF_EVENTS
1796/* create a trace_kprobe, but don't add it to global lists */
1797struct trace_event_call *
1798create_local_trace_kprobe(char *func, void *addr, unsigned long offs,
1799 bool is_return)
1800{
007517a0 1801 enum probe_print_type ptype;
e12f03d7
SL
1802 struct trace_kprobe *tk;
1803 int ret;
1804 char *event;
1805
1806 /*
6212dd29 1807 * local trace_kprobes are not added to dyn_event, so they are never
e12f03d7
SL
1808 * searched in find_trace_kprobe(). Therefore, there is no concern of
1809 * duplicated name here.
1810 */
1811 event = func ? func : "DUMMY_EVENT";
1812
1813 tk = alloc_trace_kprobe(KPROBE_EVENT_SYSTEM, event, (void *)addr, func,
1814 offs, 0 /* maxactive */, 0 /* nargs */,
1815 is_return);
1816
1817 if (IS_ERR(tk)) {
1818 pr_info("Failed to allocate trace_probe.(%d)\n",
1819 (int)PTR_ERR(tk));
1820 return ERR_CAST(tk);
1821 }
1822
e3dc9f89 1823 init_trace_event_call(tk);
e12f03d7 1824
007517a0
SRV
1825 ptype = trace_kprobe_is_return(tk) ?
1826 PROBE_PRINT_RETURN : PROBE_PRINT_NORMAL;
1827 if (traceprobe_set_print_fmt(&tk->tp, ptype) < 0) {
e12f03d7
SL
1828 ret = -ENOMEM;
1829 goto error;
1830 }
1831
1832 ret = __register_trace_kprobe(tk);
f730e0f2 1833 if (ret < 0)
e12f03d7
SL
1834 goto error;
1835
e3dc9f89 1836 return trace_probe_event_call(&tk->tp);
e12f03d7
SL
1837error:
1838 free_trace_kprobe(tk);
1839 return ERR_PTR(ret);
1840}
1841
1842void destroy_local_trace_kprobe(struct trace_event_call *event_call)
1843{
1844 struct trace_kprobe *tk;
1845
60d53e2c
MH
1846 tk = trace_kprobe_primary_from_call(event_call);
1847 if (unlikely(!tk))
1848 return;
e12f03d7
SL
1849
1850 if (trace_probe_is_enabled(&tk->tp)) {
1851 WARN_ON(1);
1852 return;
1853 }
1854
1855 __unregister_trace_kprobe(tk);
0fc8c358 1856
e12f03d7
SL
1857 free_trace_kprobe(tk);
1858}
1859#endif /* CONFIG_PERF_EVENTS */
1860
970988e1
MH
1861static __init void enable_boot_kprobe_events(void)
1862{
1863 struct trace_array *tr = top_trace_array();
1864 struct trace_event_file *file;
1865 struct trace_kprobe *tk;
1866 struct dyn_event *pos;
1867
1868 mutex_lock(&event_mutex);
1869 for_each_trace_kprobe(tk, pos) {
1870 list_for_each_entry(file, &tr->events, list)
e3dc9f89 1871 if (file->event_call == trace_probe_event_call(&tk->tp))
970988e1
MH
1872 trace_event_enable_disable(file, 1, 0);
1873 }
1874 mutex_unlock(&event_mutex);
1875}
1876
1877static __init void setup_boot_kprobe_events(void)
1878{
1879 char *p, *cmd = kprobe_boot_events_buf;
1880 int ret;
1881
1882 strreplace(kprobe_boot_events_buf, ',', ' ');
1883
1884 while (cmd && *cmd != '\0') {
1885 p = strchr(cmd, ';');
1886 if (p)
1887 *p++ = '\0';
1888
d262271d 1889 ret = create_or_delete_trace_kprobe(cmd);
970988e1
MH
1890 if (ret)
1891 pr_warn("Failed to add event(%d): %s\n", ret, cmd);
1892
1893 cmd = p;
1894 }
1895
1896 enable_boot_kprobe_events();
1897}
1898
d8d4c6d0 1899/*
ba0fbfbb
MH
1900 * Register dynevent at core_initcall. This allows kernel to setup kprobe
1901 * events in postcore_initcall without tracefs.
d8d4c6d0
MH
1902 */
1903static __init int init_kprobe_trace_early(void)
413d37d1 1904{
6212dd29
MH
1905 int ret;
1906
1907 ret = dyn_event_register(&trace_kprobe_ops);
1908 if (ret)
1909 return ret;
413d37d1 1910
c31ffb3f 1911 if (register_module_notifier(&trace_kprobe_module_nb))
61424318
MH
1912 return -EINVAL;
1913
d8d4c6d0
MH
1914 return 0;
1915}
ba0fbfbb 1916core_initcall(init_kprobe_trace_early);
d8d4c6d0
MH
1917
1918/* Make a tracefs interface for controlling probe points */
1919static __init int init_kprobe_trace(void)
1920{
22c36b18 1921 int ret;
d8d4c6d0
MH
1922 struct dentry *entry;
1923
22c36b18
WY
1924 ret = tracing_init_dentry();
1925 if (ret)
413d37d1
MH
1926 return 0;
1927
21ccc9cd
SRV
1928 entry = tracefs_create_file("kprobe_events", TRACE_MODE_WRITE,
1929 NULL, NULL, &kprobe_events_ops);
413d37d1 1930
cd7e7bd5 1931 /* Event list interface */
413d37d1 1932 if (!entry)
a395d6a7 1933 pr_warn("Could not create tracefs 'kprobe_events' entry\n");
cd7e7bd5
MH
1934
1935 /* Profile interface */
21ccc9cd
SRV
1936 entry = tracefs_create_file("kprobe_profile", TRACE_MODE_READ,
1937 NULL, NULL, &kprobe_profile_ops);
cd7e7bd5
MH
1938
1939 if (!entry)
a395d6a7 1940 pr_warn("Could not create tracefs 'kprobe_profile' entry\n");
970988e1
MH
1941
1942 setup_boot_kprobe_events();
1943
413d37d1
MH
1944 return 0;
1945}
1946fs_initcall(init_kprobe_trace);
1947
1948
1949#ifdef CONFIG_FTRACE_STARTUP_TEST
26a346f2 1950static __init struct trace_event_file *
c31ffb3f 1951find_trace_probe_file(struct trace_kprobe *tk, struct trace_array *tr)
41a7dd42 1952{
7f1d2f82 1953 struct trace_event_file *file;
41a7dd42
MH
1954
1955 list_for_each_entry(file, &tr->events, list)
e3dc9f89 1956 if (file->event_call == trace_probe_event_call(&tk->tp))
41a7dd42
MH
1957 return file;
1958
1959 return NULL;
1960}
1961
3fe3d619 1962/*
c31ffb3f 1963 * Nobody but us can call enable_trace_kprobe/disable_trace_kprobe at this
3fe3d619
ON
1964 * stage, we can do this lockless.
1965 */
413d37d1
MH
1966static __init int kprobe_trace_self_tests_init(void)
1967{
231e36f4 1968 int ret, warn = 0;
413d37d1 1969 int (*target)(int, int, int, int, int, int);
c31ffb3f 1970 struct trace_kprobe *tk;
7f1d2f82 1971 struct trace_event_file *file;
413d37d1 1972
748ec3a2
YY
1973 if (tracing_is_disabled())
1974 return -ENODEV;
1975
60efe21e 1976 if (tracing_selftest_disabled)
b6399cc7 1977 return 0;
b6399cc7 1978
413d37d1
MH
1979 target = kprobe_trace_selftest_target;
1980
1981 pr_info("Testing kprobe tracing: ");
1982
d262271d 1983 ret = create_or_delete_trace_kprobe("p:testprobe kprobe_trace_selftest_target $stack $stack0 +0($stack)");
231e36f4 1984 if (WARN_ON_ONCE(ret)) {
41a7dd42 1985 pr_warn("error on probing function entry.\n");
231e36f4
MH
1986 warn++;
1987 } else {
1988 /* Enable trace point */
c31ffb3f
NK
1989 tk = find_trace_kprobe("testprobe", KPROBE_EVENT_SYSTEM);
1990 if (WARN_ON_ONCE(tk == NULL)) {
41a7dd42 1991 pr_warn("error on getting new probe.\n");
231e36f4 1992 warn++;
41a7dd42 1993 } else {
c31ffb3f 1994 file = find_trace_probe_file(tk, top_trace_array());
41a7dd42
MH
1995 if (WARN_ON_ONCE(file == NULL)) {
1996 pr_warn("error on getting probe file.\n");
1997 warn++;
1998 } else
60d53e2c
MH
1999 enable_trace_kprobe(
2000 trace_probe_event_call(&tk->tp), file);
41a7dd42 2001 }
231e36f4 2002 }
413d37d1 2003
d262271d 2004 ret = create_or_delete_trace_kprobe("r:testprobe2 kprobe_trace_selftest_target $retval");
231e36f4 2005 if (WARN_ON_ONCE(ret)) {
41a7dd42 2006 pr_warn("error on probing function return.\n");
231e36f4
MH
2007 warn++;
2008 } else {
2009 /* Enable trace point */
c31ffb3f
NK
2010 tk = find_trace_kprobe("testprobe2", KPROBE_EVENT_SYSTEM);
2011 if (WARN_ON_ONCE(tk == NULL)) {
41a7dd42 2012 pr_warn("error on getting 2nd new probe.\n");
231e36f4 2013 warn++;
41a7dd42 2014 } else {
c31ffb3f 2015 file = find_trace_probe_file(tk, top_trace_array());
41a7dd42
MH
2016 if (WARN_ON_ONCE(file == NULL)) {
2017 pr_warn("error on getting probe file.\n");
2018 warn++;
2019 } else
60d53e2c
MH
2020 enable_trace_kprobe(
2021 trace_probe_event_call(&tk->tp), file);
41a7dd42 2022 }
231e36f4
MH
2023 }
2024
2025 if (warn)
2026 goto end;
413d37d1
MH
2027
2028 ret = target(1, 2, 3, 4, 5, 6);
2029
d4d7ccc8
MN
2030 /*
2031 * Not expecting an error here, the check is only to prevent the
2032 * optimizer from removing the call to target() as otherwise there
2033 * are no side-effects and the call is never performed.
2034 */
2035 if (ret != 21)
2036 warn++;
2037
02ca1521 2038 /* Disable trace points before removing it */
c31ffb3f
NK
2039 tk = find_trace_kprobe("testprobe", KPROBE_EVENT_SYSTEM);
2040 if (WARN_ON_ONCE(tk == NULL)) {
41a7dd42 2041 pr_warn("error on getting test probe.\n");
02ca1521 2042 warn++;
41a7dd42 2043 } else {
d4d7ccc8
MN
2044 if (trace_kprobe_nhit(tk) != 1) {
2045 pr_warn("incorrect number of testprobe hits\n");
2046 warn++;
2047 }
2048
c31ffb3f 2049 file = find_trace_probe_file(tk, top_trace_array());
41a7dd42
MH
2050 if (WARN_ON_ONCE(file == NULL)) {
2051 pr_warn("error on getting probe file.\n");
2052 warn++;
2053 } else
60d53e2c
MH
2054 disable_trace_kprobe(
2055 trace_probe_event_call(&tk->tp), file);
41a7dd42 2056 }
02ca1521 2057
c31ffb3f
NK
2058 tk = find_trace_kprobe("testprobe2", KPROBE_EVENT_SYSTEM);
2059 if (WARN_ON_ONCE(tk == NULL)) {
41a7dd42 2060 pr_warn("error on getting 2nd test probe.\n");
02ca1521 2061 warn++;
41a7dd42 2062 } else {
d4d7ccc8
MN
2063 if (trace_kprobe_nhit(tk) != 1) {
2064 pr_warn("incorrect number of testprobe2 hits\n");
2065 warn++;
2066 }
2067
c31ffb3f 2068 file = find_trace_probe_file(tk, top_trace_array());
41a7dd42
MH
2069 if (WARN_ON_ONCE(file == NULL)) {
2070 pr_warn("error on getting probe file.\n");
2071 warn++;
2072 } else
60d53e2c
MH
2073 disable_trace_kprobe(
2074 trace_probe_event_call(&tk->tp), file);
41a7dd42 2075 }
02ca1521 2076
d262271d 2077 ret = create_or_delete_trace_kprobe("-:testprobe");
231e36f4 2078 if (WARN_ON_ONCE(ret)) {
41a7dd42 2079 pr_warn("error on deleting a probe.\n");
231e36f4
MH
2080 warn++;
2081 }
2082
d262271d 2083 ret = create_or_delete_trace_kprobe("-:testprobe2");
231e36f4 2084 if (WARN_ON_ONCE(ret)) {
41a7dd42 2085 pr_warn("error on deleting a probe.\n");
231e36f4
MH
2086 warn++;
2087 }
413d37d1 2088
231e36f4 2089end:
6212dd29
MH
2090 ret = dyn_events_release_all(&trace_kprobe_ops);
2091 if (WARN_ON_ONCE(ret)) {
2092 pr_warn("error on cleaning up probes.\n");
2093 warn++;
2094 }
30e7d894
TG
2095 /*
2096 * Wait for the optimizer work to finish. Otherwise it might fiddle
2097 * with probes in already freed __init text.
2098 */
2099 wait_for_kprobe_optimizer();
231e36f4
MH
2100 if (warn)
2101 pr_cont("NG: Some tests are failed. Please check them.\n");
2102 else
2103 pr_cont("OK\n");
413d37d1
MH
2104 return 0;
2105}
2106
2107late_initcall(kprobe_trace_self_tests_init);
2108
2109#endif