]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - kernel/trace/trace_kprobe.c
UBUNTU: Ubuntu-5.15.0-39.42
[mirror_ubuntu-jammy-kernel.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
4d894e96 34 return 1;
970988e1
MH
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{
c31ffb3f 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;
c7a0ea6d 1178 unsigned long nmissed;
cd7e7bd5 1179
6212dd29
MH
1180 if (!is_trace_kprobe(ev))
1181 return 0;
cd7e7bd5 1182
6212dd29 1183 tk = to_trace_kprobe(ev);
c7a0ea6d
XZ
1184 nmissed = trace_kprobe_is_return(tk) ?
1185 tk->rp.kp.nmissed + tk->rp.nmissed : tk->rp.kp.nmissed;
de7b2973 1186 seq_printf(m, " %-44s %15lu %15lu\n",
b55ce203 1187 trace_probe_name(&tk->tp),
f18f97ac 1188 trace_kprobe_nhit(tk),
c7a0ea6d 1189 nmissed);
cd7e7bd5
MH
1190
1191 return 0;
1192}
1193
1194static const struct seq_operations profile_seq_op = {
6212dd29
MH
1195 .start = dyn_event_seq_start,
1196 .next = dyn_event_seq_next,
1197 .stop = dyn_event_seq_stop,
cd7e7bd5
MH
1198 .show = probes_profile_seq_show
1199};
1200
1201static int profile_open(struct inode *inode, struct file *file)
1202{
17911ff3
SRV
1203 int ret;
1204
1205 ret = security_locked_down(LOCKDOWN_TRACEFS);
1206 if (ret)
1207 return ret;
1208
cd7e7bd5
MH
1209 return seq_open(file, &profile_seq_op);
1210}
1211
1212static const struct file_operations kprobe_profile_ops = {
1213 .owner = THIS_MODULE,
1214 .open = profile_open,
1215 .read = seq_read,
1216 .llseek = seq_lseek,
1217 .release = seq_release,
1218};
1219
53305928
MH
1220/* Kprobe specific fetch functions */
1221
9de1fec5
CH
1222/* Return the length of string -- including null terminal byte */
1223static nokprobe_inline int
1224fetch_store_strlen_user(unsigned long addr)
1225{
1226 const void __user *uaddr = (__force const void __user *)addr;
1227
1228 return strnlen_user_nofault(uaddr, MAX_STRING_SIZE);
1229}
1230
53305928 1231/* Return the length of string -- including null terminal byte */
9178412d
MH
1232static nokprobe_inline int
1233fetch_store_strlen(unsigned long addr)
53305928 1234{
53305928
MH
1235 int ret, len = 0;
1236 u8 c;
1237
9de1fec5
CH
1238#ifdef CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE
1239 if (addr < TASK_SIZE)
1240 return fetch_store_strlen_user(addr);
1241#endif
1242
53305928 1243 do {
fe557319 1244 ret = copy_from_kernel_nofault(&c, (u8 *)addr + len, 1);
53305928
MH
1245 len++;
1246 } while (c && ret == 0 && len < MAX_STRING_SIZE);
1247
9178412d 1248 return (ret < 0) ? ret : len;
53305928
MH
1249}
1250
1251/*
9de1fec5
CH
1252 * Fetch a null-terminated string from user. Caller MUST set *(u32 *)buf
1253 * with max length and relative data location.
53305928 1254 */
9178412d 1255static nokprobe_inline int
9de1fec5 1256fetch_store_string_user(unsigned long addr, void *dest, void *base)
53305928 1257{
9de1fec5 1258 const void __user *uaddr = (__force const void __user *)addr;
9178412d 1259 int maxlen = get_loc_len(*(u32 *)dest);
88903c46 1260 void *__dest;
53305928
MH
1261 long ret;
1262
9178412d
MH
1263 if (unlikely(!maxlen))
1264 return -ENOMEM;
88903c46
MH
1265
1266 __dest = get_loc_data(dest, base);
1267
9de1fec5 1268 ret = strncpy_from_user_nofault(__dest, uaddr, maxlen);
88903c46
MH
1269 if (ret >= 0)
1270 *(u32 *)dest = make_data_loc(ret, __dest - base);
1271
1272 return ret;
1273}
53305928 1274
88903c46 1275/*
9de1fec5
CH
1276 * Fetch a null-terminated string. Caller MUST set *(u32 *)buf with max
1277 * length and relative data location.
88903c46
MH
1278 */
1279static nokprobe_inline int
9de1fec5 1280fetch_store_string(unsigned long addr, void *dest, void *base)
88903c46 1281{
88903c46
MH
1282 int maxlen = get_loc_len(*(u32 *)dest);
1283 void *__dest;
1284 long ret;
1285
9de1fec5
CH
1286#ifdef CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE
1287 if ((unsigned long)addr < TASK_SIZE)
1288 return fetch_store_string_user(addr, dest, base);
1289#endif
1290
88903c46
MH
1291 if (unlikely(!maxlen))
1292 return -ENOMEM;
1293
1294 __dest = get_loc_data(dest, base);
1295
9de1fec5
CH
1296 /*
1297 * Try to get string again, since the string can be changed while
1298 * probing.
1299 */
1300 ret = strncpy_from_kernel_nofault(__dest, (void *)addr, maxlen);
9178412d 1301 if (ret >= 0)
88903c46
MH
1302 *(u32 *)dest = make_data_loc(ret, __dest - base);
1303
9178412d 1304 return ret;
53305928
MH
1305}
1306
e65f7ae7
MH
1307static nokprobe_inline int
1308probe_mem_read_user(void *dest, void *src, size_t size)
1309{
539b75b2
MH
1310 const void __user *uaddr = (__force const void __user *)src;
1311
c0ee37e8 1312 return copy_from_user_nofault(dest, uaddr, size);
e65f7ae7
MH
1313}
1314
9de1fec5
CH
1315static nokprobe_inline int
1316probe_mem_read(void *dest, void *src, size_t size)
1317{
1318#ifdef CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE
1319 if ((unsigned long)src < TASK_SIZE)
1320 return probe_mem_read_user(dest, src, size);
1321#endif
fe557319 1322 return copy_from_kernel_nofault(dest, src, size);
9de1fec5
CH
1323}
1324
53305928
MH
1325/* Note that we don't verify it, since the code does not come from user space */
1326static int
8565a45d 1327process_fetch_insn(struct fetch_insn *code, void *rec, void *dest,
9178412d 1328 void *base)
53305928 1329{
8565a45d 1330 struct pt_regs *regs = rec;
53305928 1331 unsigned long val;
53305928 1332
a6682814 1333retry:
53305928
MH
1334 /* 1st stage: get value from context */
1335 switch (code->op) {
1336 case FETCH_OP_REG:
1337 val = regs_get_register(regs, code->param);
1338 break;
1339 case FETCH_OP_STACK:
1340 val = regs_get_kernel_stack_nth(regs, code->param);
1341 break;
1342 case FETCH_OP_STACKP:
1343 val = kernel_stack_pointer(regs);
1344 break;
1345 case FETCH_OP_RETVAL:
1346 val = regs_return_value(regs);
1347 break;
1348 case FETCH_OP_IMM:
1349 val = code->immediate;
1350 break;
1351 case FETCH_OP_COMM:
1352 val = (unsigned long)current->comm;
1353 break;
a42e3c4d
MH
1354 case FETCH_OP_DATA:
1355 val = (unsigned long)code->data;
1356 break;
a1303af5
MH
1357#ifdef CONFIG_HAVE_FUNCTION_ARG_ACCESS_API
1358 case FETCH_OP_ARG:
1359 val = regs_get_kernel_argument(regs, code->param);
1360 break;
1361#endif
a6682814
MH
1362 case FETCH_NOP_SYMBOL: /* Ignore a place holder */
1363 code++;
1364 goto retry;
53305928
MH
1365 default:
1366 return -EILSEQ;
1367 }
1368 code++;
1369
9b960a38 1370 return process_fetch_insn_bottom(code, val, dest, base);
53305928
MH
1371}
1372NOKPROBE_SYMBOL(process_fetch_insn)
1373
413d37d1 1374/* Kprobe handler */
3da0f180 1375static nokprobe_inline void
c31ffb3f 1376__kprobe_trace_func(struct trace_kprobe *tk, struct pt_regs *regs,
7f1d2f82 1377 struct trace_event_file *trace_file)
413d37d1 1378{
93ccae7a 1379 struct kprobe_trace_entry_head *entry;
e3dc9f89 1380 struct trace_event_call *call = trace_probe_event_call(&tk->tp);
8cfcf155
MH
1381 struct trace_event_buffer fbuffer;
1382 int dsize;
413d37d1 1383
7f1d2f82 1384 WARN_ON(call != trace_file->event_call);
41a7dd42 1385
09a5059a 1386 if (trace_trigger_soft_disabled(trace_file))
13a1e4ae 1387 return;
b8820084 1388
36590c50 1389 fbuffer.trace_ctx = tracing_gen_ctx();
8cfcf155 1390 fbuffer.trace_file = trace_file;
413d37d1 1391
c31ffb3f 1392 dsize = __get_data_size(&tk->tp, regs);
413d37d1 1393
8cfcf155
MH
1394 fbuffer.event =
1395 trace_event_buffer_lock_reserve(&fbuffer.buffer, trace_file,
1396 call->event.type,
1397 sizeof(*entry) + tk->tp.size + dsize,
36590c50 1398 fbuffer.trace_ctx);
8cfcf155 1399 if (!fbuffer.event)
1e12a4a7 1400 return;
413d37d1 1401
8cfcf155
MH
1402 fbuffer.regs = regs;
1403 entry = fbuffer.entry = ring_buffer_event_data(fbuffer.event);
c31ffb3f 1404 entry->ip = (unsigned long)tk->rp.kp.addr;
9178412d 1405 store_trace_args(&entry[1], &tk->tp, regs, sizeof(*entry), dsize);
413d37d1 1406
8cfcf155 1407 trace_event_buffer_commit(&fbuffer);
413d37d1
MH
1408}
1409
3da0f180 1410static void
c31ffb3f 1411kprobe_trace_func(struct trace_kprobe *tk, struct pt_regs *regs)
41a7dd42 1412{
b04d52e3 1413 struct event_file_link *link;
41a7dd42 1414
b5f935ee 1415 trace_probe_for_each_link_rcu(link, &tk->tp)
c31ffb3f 1416 __kprobe_trace_func(tk, regs, link->file);
41a7dd42 1417}
3da0f180 1418NOKPROBE_SYMBOL(kprobe_trace_func);
41a7dd42 1419
413d37d1 1420/* Kretprobe handler */
3da0f180 1421static nokprobe_inline void
c31ffb3f 1422__kretprobe_trace_func(struct trace_kprobe *tk, struct kretprobe_instance *ri,
41a7dd42 1423 struct pt_regs *regs,
7f1d2f82 1424 struct trace_event_file *trace_file)
413d37d1 1425{
93ccae7a 1426 struct kretprobe_trace_entry_head *entry;
8cfcf155 1427 struct trace_event_buffer fbuffer;
e3dc9f89 1428 struct trace_event_call *call = trace_probe_event_call(&tk->tp);
8cfcf155 1429 int dsize;
413d37d1 1430
7f1d2f82 1431 WARN_ON(call != trace_file->event_call);
41a7dd42 1432
09a5059a 1433 if (trace_trigger_soft_disabled(trace_file))
13a1e4ae 1434 return;
b8820084 1435
36590c50 1436 fbuffer.trace_ctx = tracing_gen_ctx();
8cfcf155 1437 fbuffer.trace_file = trace_file;
413d37d1 1438
c31ffb3f 1439 dsize = __get_data_size(&tk->tp, regs);
8cfcf155
MH
1440 fbuffer.event =
1441 trace_event_buffer_lock_reserve(&fbuffer.buffer, trace_file,
1442 call->event.type,
1443 sizeof(*entry) + tk->tp.size + dsize,
36590c50 1444 fbuffer.trace_ctx);
8cfcf155 1445 if (!fbuffer.event)
1e12a4a7 1446 return;
413d37d1 1447
8cfcf155
MH
1448 fbuffer.regs = regs;
1449 entry = fbuffer.entry = ring_buffer_event_data(fbuffer.event);
c31ffb3f 1450 entry->func = (unsigned long)tk->rp.kp.addr;
413d37d1 1451 entry->ret_ip = (unsigned long)ri->ret_addr;
9178412d 1452 store_trace_args(&entry[1], &tk->tp, regs, sizeof(*entry), dsize);
413d37d1 1453
8cfcf155 1454 trace_event_buffer_commit(&fbuffer);
413d37d1
MH
1455}
1456
3da0f180 1457static void
c31ffb3f 1458kretprobe_trace_func(struct trace_kprobe *tk, struct kretprobe_instance *ri,
41a7dd42
MH
1459 struct pt_regs *regs)
1460{
b04d52e3 1461 struct event_file_link *link;
41a7dd42 1462
b5f935ee 1463 trace_probe_for_each_link_rcu(link, &tk->tp)
c31ffb3f 1464 __kretprobe_trace_func(tk, ri, regs, link->file);
41a7dd42 1465}
3da0f180 1466NOKPROBE_SYMBOL(kretprobe_trace_func);
41a7dd42 1467
413d37d1 1468/* Event entry printers */
b62fdd97 1469static enum print_line_t
a9a57763
SR
1470print_kprobe_event(struct trace_iterator *iter, int flags,
1471 struct trace_event *event)
413d37d1 1472{
93ccae7a 1473 struct kprobe_trace_entry_head *field;
413d37d1 1474 struct trace_seq *s = &iter->seq;
eca0d916 1475 struct trace_probe *tp;
413d37d1 1476
93ccae7a 1477 field = (struct kprobe_trace_entry_head *)iter->ent;
60d53e2c
MH
1478 tp = trace_probe_primary_from_call(
1479 container_of(event, struct trace_event_call, event));
1480 if (WARN_ON_ONCE(!tp))
1481 goto out;
413d37d1 1482
b55ce203 1483 trace_seq_printf(s, "%s: (", trace_probe_name(tp));
6e9f23d1 1484
413d37d1 1485 if (!seq_print_ip_sym(s, field->ip, flags | TRACE_ITER_SYM_OFFSET))
85224da0 1486 goto out;
413d37d1 1487
85224da0 1488 trace_seq_putc(s, ')');
413d37d1 1489
56de7630
MH
1490 if (print_probe_args(s, tp->args, tp->nr_args,
1491 (u8 *)&field[1], field) < 0)
1492 goto out;
413d37d1 1493
85224da0
SRRH
1494 trace_seq_putc(s, '\n');
1495 out:
1496 return trace_handle_return(s);
413d37d1
MH
1497}
1498
b62fdd97 1499static enum print_line_t
a9a57763
SR
1500print_kretprobe_event(struct trace_iterator *iter, int flags,
1501 struct trace_event *event)
413d37d1 1502{
93ccae7a 1503 struct kretprobe_trace_entry_head *field;
413d37d1 1504 struct trace_seq *s = &iter->seq;
eca0d916 1505 struct trace_probe *tp;
413d37d1 1506
93ccae7a 1507 field = (struct kretprobe_trace_entry_head *)iter->ent;
60d53e2c
MH
1508 tp = trace_probe_primary_from_call(
1509 container_of(event, struct trace_event_call, event));
1510 if (WARN_ON_ONCE(!tp))
1511 goto out;
413d37d1 1512
b55ce203 1513 trace_seq_printf(s, "%s: (", trace_probe_name(tp));
6e9f23d1 1514
413d37d1 1515 if (!seq_print_ip_sym(s, field->ret_ip, flags | TRACE_ITER_SYM_OFFSET))
85224da0 1516 goto out;
413d37d1 1517
85224da0 1518 trace_seq_puts(s, " <- ");
413d37d1
MH
1519
1520 if (!seq_print_ip_sym(s, field->func, flags & ~TRACE_ITER_SYM_OFFSET))
85224da0 1521 goto out;
413d37d1 1522
85224da0 1523 trace_seq_putc(s, ')');
413d37d1 1524
56de7630
MH
1525 if (print_probe_args(s, tp->args, tp->nr_args,
1526 (u8 *)&field[1], field) < 0)
1527 goto out;
413d37d1 1528
85224da0 1529 trace_seq_putc(s, '\n');
413d37d1 1530
85224da0
SRRH
1531 out:
1532 return trace_handle_return(s);
413d37d1
MH
1533}
1534
413d37d1 1535
2425bcb9 1536static int kprobe_event_define_fields(struct trace_event_call *event_call)
413d37d1 1537{
eeb07b06 1538 int ret;
93ccae7a 1539 struct kprobe_trace_entry_head field;
60d53e2c
MH
1540 struct trace_probe *tp;
1541
1542 tp = trace_probe_primary_from_call(event_call);
1543 if (WARN_ON_ONCE(!tp))
1544 return -ENOENT;
413d37d1 1545
a703d946 1546 DEFINE_FIELD(unsigned long, ip, FIELD_STRING_IP, 0);
c31ffb3f 1547
60d53e2c 1548 return traceprobe_define_arg_fields(event_call, sizeof(field), tp);
413d37d1
MH
1549}
1550
2425bcb9 1551static int kretprobe_event_define_fields(struct trace_event_call *event_call)
413d37d1 1552{
eeb07b06 1553 int ret;
93ccae7a 1554 struct kretprobe_trace_entry_head field;
60d53e2c
MH
1555 struct trace_probe *tp;
1556
1557 tp = trace_probe_primary_from_call(event_call);
1558 if (WARN_ON_ONCE(!tp))
1559 return -ENOENT;
413d37d1 1560
a703d946
MH
1561 DEFINE_FIELD(unsigned long, func, FIELD_STRING_FUNC, 0);
1562 DEFINE_FIELD(unsigned long, ret_ip, FIELD_STRING_RETIP, 0);
c31ffb3f 1563
60d53e2c 1564 return traceprobe_define_arg_fields(event_call, sizeof(field), tp);
413d37d1
MH
1565}
1566
07b139c8 1567#ifdef CONFIG_PERF_EVENTS
e08d1c65
MH
1568
1569/* Kprobe profile handler */
9802d865 1570static int
c31ffb3f 1571kprobe_perf_func(struct trace_kprobe *tk, struct pt_regs *regs)
e08d1c65 1572{
e3dc9f89 1573 struct trace_event_call *call = trace_probe_event_call(&tk->tp);
93ccae7a 1574 struct kprobe_trace_entry_head *entry;
1c024eca 1575 struct hlist_head *head;
e09c8614 1576 int size, __size, dsize;
4ed7c92d 1577 int rctx;
e08d1c65 1578
9802d865 1579 if (bpf_prog_array_valid(call)) {
66665ad2 1580 unsigned long orig_ip = instruction_pointer(regs);
9802d865
JB
1581 int ret;
1582
1583 ret = trace_call_bpf(call, regs);
1584
1585 /*
1586 * We need to check and see if we modified the pc of the
cce188bd
MH
1587 * pt_regs, and if so return 1 so that we don't do the
1588 * single stepping.
9802d865 1589 */
cce188bd 1590 if (orig_ip != instruction_pointer(regs))
9802d865 1591 return 1;
9802d865
JB
1592 if (!ret)
1593 return 0;
1594 }
2541517c 1595
288e984e
ON
1596 head = this_cpu_ptr(call->perf_events);
1597 if (hlist_empty(head))
9802d865 1598 return 0;
288e984e 1599
c31ffb3f
NK
1600 dsize = __get_data_size(&tk->tp, regs);
1601 __size = sizeof(*entry) + tk->tp.size + dsize;
74ebb63e
MH
1602 size = ALIGN(__size + sizeof(u32), sizeof(u64));
1603 size -= sizeof(u32);
ce71b9df 1604
1e1dcd93 1605 entry = perf_trace_buf_alloc(size, NULL, &rctx);
430ad5a6 1606 if (!entry)
9802d865 1607 return 0;
a1a138d0 1608
c31ffb3f 1609 entry->ip = (unsigned long)tk->rp.kp.addr;
e09c8614 1610 memset(&entry[1], 0, dsize);
9178412d 1611 store_trace_args(&entry[1], &tk->tp, regs, sizeof(*entry), dsize);
1e1dcd93 1612 perf_trace_buf_submit(entry, size, rctx, call->event.type, 1, regs,
8fd0fbbe 1613 head, NULL);
9802d865 1614 return 0;
e08d1c65 1615}
3da0f180 1616NOKPROBE_SYMBOL(kprobe_perf_func);
e08d1c65
MH
1617
1618/* Kretprobe profile handler */
3da0f180 1619static void
c31ffb3f 1620kretprobe_perf_func(struct trace_kprobe *tk, struct kretprobe_instance *ri,
2b106aab 1621 struct pt_regs *regs)
e08d1c65 1622{
e3dc9f89 1623 struct trace_event_call *call = trace_probe_event_call(&tk->tp);
93ccae7a 1624 struct kretprobe_trace_entry_head *entry;
1c024eca 1625 struct hlist_head *head;
e09c8614 1626 int size, __size, dsize;
4ed7c92d 1627 int rctx;
e08d1c65 1628
e87c6bc3 1629 if (bpf_prog_array_valid(call) && !trace_call_bpf(call, regs))
2541517c
AS
1630 return;
1631
288e984e
ON
1632 head = this_cpu_ptr(call->perf_events);
1633 if (hlist_empty(head))
1634 return;
1635
c31ffb3f
NK
1636 dsize = __get_data_size(&tk->tp, regs);
1637 __size = sizeof(*entry) + tk->tp.size + dsize;
74ebb63e
MH
1638 size = ALIGN(__size + sizeof(u32), sizeof(u64));
1639 size -= sizeof(u32);
444a2a3b 1640
1e1dcd93 1641 entry = perf_trace_buf_alloc(size, NULL, &rctx);
430ad5a6 1642 if (!entry)
1e12a4a7 1643 return;
e08d1c65 1644
c31ffb3f 1645 entry->func = (unsigned long)tk->rp.kp.addr;
a1a138d0 1646 entry->ret_ip = (unsigned long)ri->ret_addr;
9178412d 1647 store_trace_args(&entry[1], &tk->tp, regs, sizeof(*entry), dsize);
1e1dcd93 1648 perf_trace_buf_submit(entry, size, rctx, call->event.type, 1, regs,
8fd0fbbe 1649 head, NULL);
e08d1c65 1650}
3da0f180 1651NOKPROBE_SYMBOL(kretprobe_perf_func);
41bdc4b4
YS
1652
1653int bpf_get_kprobe_info(const struct perf_event *event, u32 *fd_type,
1654 const char **symbol, u64 *probe_offset,
1655 u64 *probe_addr, bool perf_type_tracepoint)
1656{
1657 const char *pevent = trace_event_name(event->tp_event);
1658 const char *group = event->tp_event->class->system;
1659 struct trace_kprobe *tk;
1660
1661 if (perf_type_tracepoint)
1662 tk = find_trace_kprobe(pevent, group);
1663 else
22d5bd68 1664 tk = trace_kprobe_primary_from_call(event->tp_event);
41bdc4b4
YS
1665 if (!tk)
1666 return -EINVAL;
1667
1668 *fd_type = trace_kprobe_is_return(tk) ? BPF_FD_TYPE_KRETPROBE
1669 : BPF_FD_TYPE_KPROBE;
1670 if (tk->symbol) {
1671 *symbol = tk->symbol;
1672 *probe_offset = tk->rp.kp.offset;
1673 *probe_addr = 0;
1674 } else {
1675 *symbol = NULL;
1676 *probe_offset = 0;
1677 *probe_addr = (unsigned long)tk->rp.kp.addr;
1678 }
1679 return 0;
1680}
07b139c8 1681#endif /* CONFIG_PERF_EVENTS */
50d78056 1682
3fe3d619
ON
1683/*
1684 * called by perf_trace_init() or __ftrace_set_clr_event() under event_mutex.
1685 *
1686 * kprobe_trace_self_tests_init() does enable_trace_probe/disable_trace_probe
1687 * lockless, but we can't race with this __init function.
1688 */
2425bcb9 1689static int kprobe_register(struct trace_event_call *event,
fbc1963d 1690 enum trace_reg type, void *data)
2239291a 1691{
7f1d2f82 1692 struct trace_event_file *file = data;
1538f888 1693
2239291a
SR
1694 switch (type) {
1695 case TRACE_REG_REGISTER:
60d53e2c 1696 return enable_trace_kprobe(event, file);
2239291a 1697 case TRACE_REG_UNREGISTER:
60d53e2c 1698 return disable_trace_kprobe(event, file);
2239291a
SR
1699
1700#ifdef CONFIG_PERF_EVENTS
1701 case TRACE_REG_PERF_REGISTER:
60d53e2c 1702 return enable_trace_kprobe(event, NULL);
2239291a 1703 case TRACE_REG_PERF_UNREGISTER:
60d53e2c 1704 return disable_trace_kprobe(event, NULL);
ceec0b6f
JO
1705 case TRACE_REG_PERF_OPEN:
1706 case TRACE_REG_PERF_CLOSE:
489c75c3
JO
1707 case TRACE_REG_PERF_ADD:
1708 case TRACE_REG_PERF_DEL:
ceec0b6f 1709 return 0;
2239291a
SR
1710#endif
1711 }
1712 return 0;
1713}
50d78056 1714
3da0f180 1715static int kprobe_dispatcher(struct kprobe *kp, struct pt_regs *regs)
50d78056 1716{
c31ffb3f 1717 struct trace_kprobe *tk = container_of(kp, struct trace_kprobe, rp.kp);
9802d865 1718 int ret = 0;
e08d1c65 1719
a7636d9e 1720 raw_cpu_inc(*tk->nhit);
48182bd2 1721
747774d6 1722 if (trace_probe_test_flag(&tk->tp, TP_FLAG_TRACE))
c31ffb3f 1723 kprobe_trace_func(tk, regs);
07b139c8 1724#ifdef CONFIG_PERF_EVENTS
747774d6 1725 if (trace_probe_test_flag(&tk->tp, TP_FLAG_PROFILE))
9802d865 1726 ret = kprobe_perf_func(tk, regs);
07b139c8 1727#endif
9802d865 1728 return ret;
50d78056 1729}
3da0f180 1730NOKPROBE_SYMBOL(kprobe_dispatcher);
50d78056 1731
3da0f180
MH
1732static int
1733kretprobe_dispatcher(struct kretprobe_instance *ri, struct pt_regs *regs)
50d78056 1734{
d741bf41
PZ
1735 struct kretprobe *rp = get_kretprobe(ri);
1736 struct trace_kprobe *tk = container_of(rp, struct trace_kprobe, rp);
50d78056 1737
a7636d9e 1738 raw_cpu_inc(*tk->nhit);
48182bd2 1739
747774d6 1740 if (trace_probe_test_flag(&tk->tp, TP_FLAG_TRACE))
c31ffb3f 1741 kretprobe_trace_func(tk, ri, regs);
07b139c8 1742#ifdef CONFIG_PERF_EVENTS
747774d6 1743 if (trace_probe_test_flag(&tk->tp, TP_FLAG_PROFILE))
c31ffb3f 1744 kretprobe_perf_func(tk, ri, regs);
07b139c8 1745#endif
f2cc020d 1746 return 0; /* We don't tweak kernel, so just return 0 */
50d78056 1747}
3da0f180 1748NOKPROBE_SYMBOL(kretprobe_dispatcher);
e08d1c65 1749
a9a57763
SR
1750static struct trace_event_functions kretprobe_funcs = {
1751 .trace = print_kretprobe_event
1752};
1753
1754static struct trace_event_functions kprobe_funcs = {
1755 .trace = print_kprobe_event
1756};
1757
04ae87a5
PZ
1758static struct trace_event_fields kretprobe_fields_array[] = {
1759 { .type = TRACE_FUNCTION_TYPE,
1760 .define_fields = kretprobe_event_define_fields },
1761 {}
1762};
1763
1764static struct trace_event_fields kprobe_fields_array[] = {
1765 { .type = TRACE_FUNCTION_TYPE,
1766 .define_fields = kprobe_event_define_fields },
1767 {}
1768};
1769
e3dc9f89 1770static inline void init_trace_event_call(struct trace_kprobe *tk)
413d37d1 1771{
e3dc9f89
MH
1772 struct trace_event_call *call = trace_probe_event_call(&tk->tp);
1773
c31ffb3f 1774 if (trace_kprobe_is_return(tk)) {
80decc70 1775 call->event.funcs = &kretprobe_funcs;
04ae87a5 1776 call->class->fields_array = kretprobe_fields_array;
413d37d1 1777 } else {
80decc70 1778 call->event.funcs = &kprobe_funcs;
04ae87a5 1779 call->class->fields_array = kprobe_fields_array;
413d37d1 1780 }
e12f03d7
SL
1781
1782 call->flags = TRACE_EVENT_FL_KPROBE;
1783 call->class->reg = kprobe_register;
e12f03d7
SL
1784}
1785
1786static int register_kprobe_event(struct trace_kprobe *tk)
1787{
e3dc9f89 1788 init_trace_event_call(tk);
f730e0f2 1789
46e5376d 1790 return trace_probe_register_event_call(&tk->tp);
413d37d1
MH
1791}
1792
c31ffb3f 1793static int unregister_kprobe_event(struct trace_kprobe *tk)
413d37d1 1794{
46e5376d 1795 return trace_probe_unregister_event_call(&tk->tp);
413d37d1
MH
1796}
1797
e12f03d7
SL
1798#ifdef CONFIG_PERF_EVENTS
1799/* create a trace_kprobe, but don't add it to global lists */
1800struct trace_event_call *
1801create_local_trace_kprobe(char *func, void *addr, unsigned long offs,
1802 bool is_return)
1803{
007517a0 1804 enum probe_print_type ptype;
e12f03d7
SL
1805 struct trace_kprobe *tk;
1806 int ret;
1807 char *event;
1808
1809 /*
6212dd29 1810 * local trace_kprobes are not added to dyn_event, so they are never
e12f03d7
SL
1811 * searched in find_trace_kprobe(). Therefore, there is no concern of
1812 * duplicated name here.
1813 */
1814 event = func ? func : "DUMMY_EVENT";
1815
1816 tk = alloc_trace_kprobe(KPROBE_EVENT_SYSTEM, event, (void *)addr, func,
1817 offs, 0 /* maxactive */, 0 /* nargs */,
1818 is_return);
1819
1820 if (IS_ERR(tk)) {
1821 pr_info("Failed to allocate trace_probe.(%d)\n",
1822 (int)PTR_ERR(tk));
1823 return ERR_CAST(tk);
1824 }
1825
e3dc9f89 1826 init_trace_event_call(tk);
e12f03d7 1827
007517a0
SRV
1828 ptype = trace_kprobe_is_return(tk) ?
1829 PROBE_PRINT_RETURN : PROBE_PRINT_NORMAL;
1830 if (traceprobe_set_print_fmt(&tk->tp, ptype) < 0) {
e12f03d7
SL
1831 ret = -ENOMEM;
1832 goto error;
1833 }
1834
1835 ret = __register_trace_kprobe(tk);
f730e0f2 1836 if (ret < 0)
e12f03d7
SL
1837 goto error;
1838
e3dc9f89 1839 return trace_probe_event_call(&tk->tp);
e12f03d7
SL
1840error:
1841 free_trace_kprobe(tk);
1842 return ERR_PTR(ret);
1843}
1844
1845void destroy_local_trace_kprobe(struct trace_event_call *event_call)
1846{
1847 struct trace_kprobe *tk;
1848
60d53e2c
MH
1849 tk = trace_kprobe_primary_from_call(event_call);
1850 if (unlikely(!tk))
1851 return;
e12f03d7
SL
1852
1853 if (trace_probe_is_enabled(&tk->tp)) {
1854 WARN_ON(1);
1855 return;
1856 }
1857
1858 __unregister_trace_kprobe(tk);
0fc8c358 1859
e12f03d7
SL
1860 free_trace_kprobe(tk);
1861}
1862#endif /* CONFIG_PERF_EVENTS */
1863
970988e1
MH
1864static __init void enable_boot_kprobe_events(void)
1865{
1866 struct trace_array *tr = top_trace_array();
1867 struct trace_event_file *file;
1868 struct trace_kprobe *tk;
1869 struct dyn_event *pos;
1870
1871 mutex_lock(&event_mutex);
1872 for_each_trace_kprobe(tk, pos) {
1873 list_for_each_entry(file, &tr->events, list)
e3dc9f89 1874 if (file->event_call == trace_probe_event_call(&tk->tp))
970988e1
MH
1875 trace_event_enable_disable(file, 1, 0);
1876 }
1877 mutex_unlock(&event_mutex);
1878}
1879
1880static __init void setup_boot_kprobe_events(void)
1881{
1882 char *p, *cmd = kprobe_boot_events_buf;
1883 int ret;
1884
1885 strreplace(kprobe_boot_events_buf, ',', ' ');
1886
1887 while (cmd && *cmd != '\0') {
1888 p = strchr(cmd, ';');
1889 if (p)
1890 *p++ = '\0';
1891
d262271d 1892 ret = create_or_delete_trace_kprobe(cmd);
970988e1
MH
1893 if (ret)
1894 pr_warn("Failed to add event(%d): %s\n", ret, cmd);
1895
1896 cmd = p;
1897 }
1898
1899 enable_boot_kprobe_events();
1900}
1901
d8d4c6d0 1902/*
ba0fbfbb
MH
1903 * Register dynevent at core_initcall. This allows kernel to setup kprobe
1904 * events in postcore_initcall without tracefs.
d8d4c6d0
MH
1905 */
1906static __init int init_kprobe_trace_early(void)
413d37d1 1907{
6212dd29
MH
1908 int ret;
1909
1910 ret = dyn_event_register(&trace_kprobe_ops);
1911 if (ret)
1912 return ret;
413d37d1 1913
c31ffb3f 1914 if (register_module_notifier(&trace_kprobe_module_nb))
61424318
MH
1915 return -EINVAL;
1916
d8d4c6d0
MH
1917 return 0;
1918}
ba0fbfbb 1919core_initcall(init_kprobe_trace_early);
d8d4c6d0
MH
1920
1921/* Make a tracefs interface for controlling probe points */
1922static __init int init_kprobe_trace(void)
1923{
22c36b18 1924 int ret;
d8d4c6d0
MH
1925 struct dentry *entry;
1926
22c36b18
WY
1927 ret = tracing_init_dentry();
1928 if (ret)
413d37d1
MH
1929 return 0;
1930
bd324cfc
SRV
1931 entry = tracefs_create_file("kprobe_events", TRACE_MODE_WRITE,
1932 NULL, NULL, &kprobe_events_ops);
413d37d1 1933
cd7e7bd5 1934 /* Event list interface */
413d37d1 1935 if (!entry)
a395d6a7 1936 pr_warn("Could not create tracefs 'kprobe_events' entry\n");
cd7e7bd5
MH
1937
1938 /* Profile interface */
bd324cfc
SRV
1939 entry = tracefs_create_file("kprobe_profile", TRACE_MODE_READ,
1940 NULL, NULL, &kprobe_profile_ops);
cd7e7bd5
MH
1941
1942 if (!entry)
a395d6a7 1943 pr_warn("Could not create tracefs 'kprobe_profile' entry\n");
970988e1
MH
1944
1945 setup_boot_kprobe_events();
1946
413d37d1
MH
1947 return 0;
1948}
1949fs_initcall(init_kprobe_trace);
1950
1951
1952#ifdef CONFIG_FTRACE_STARTUP_TEST
26a346f2 1953static __init struct trace_event_file *
c31ffb3f 1954find_trace_probe_file(struct trace_kprobe *tk, struct trace_array *tr)
41a7dd42 1955{
7f1d2f82 1956 struct trace_event_file *file;
41a7dd42
MH
1957
1958 list_for_each_entry(file, &tr->events, list)
e3dc9f89 1959 if (file->event_call == trace_probe_event_call(&tk->tp))
41a7dd42
MH
1960 return file;
1961
1962 return NULL;
1963}
1964
3fe3d619 1965/*
c31ffb3f 1966 * Nobody but us can call enable_trace_kprobe/disable_trace_kprobe at this
3fe3d619
ON
1967 * stage, we can do this lockless.
1968 */
413d37d1
MH
1969static __init int kprobe_trace_self_tests_init(void)
1970{
231e36f4 1971 int ret, warn = 0;
413d37d1 1972 int (*target)(int, int, int, int, int, int);
c31ffb3f 1973 struct trace_kprobe *tk;
7f1d2f82 1974 struct trace_event_file *file;
413d37d1 1975
748ec3a2
YY
1976 if (tracing_is_disabled())
1977 return -ENODEV;
1978
60efe21e 1979 if (tracing_selftest_disabled)
b6399cc7 1980 return 0;
b6399cc7 1981
413d37d1
MH
1982 target = kprobe_trace_selftest_target;
1983
1984 pr_info("Testing kprobe tracing: ");
1985
d262271d 1986 ret = create_or_delete_trace_kprobe("p:testprobe kprobe_trace_selftest_target $stack $stack0 +0($stack)");
231e36f4 1987 if (WARN_ON_ONCE(ret)) {
41a7dd42 1988 pr_warn("error on probing function entry.\n");
231e36f4
MH
1989 warn++;
1990 } else {
1991 /* Enable trace point */
c31ffb3f
NK
1992 tk = find_trace_kprobe("testprobe", KPROBE_EVENT_SYSTEM);
1993 if (WARN_ON_ONCE(tk == NULL)) {
41a7dd42 1994 pr_warn("error on getting new probe.\n");
231e36f4 1995 warn++;
41a7dd42 1996 } else {
c31ffb3f 1997 file = find_trace_probe_file(tk, top_trace_array());
41a7dd42
MH
1998 if (WARN_ON_ONCE(file == NULL)) {
1999 pr_warn("error on getting probe file.\n");
2000 warn++;
2001 } else
60d53e2c
MH
2002 enable_trace_kprobe(
2003 trace_probe_event_call(&tk->tp), file);
41a7dd42 2004 }
231e36f4 2005 }
413d37d1 2006
d262271d 2007 ret = create_or_delete_trace_kprobe("r:testprobe2 kprobe_trace_selftest_target $retval");
231e36f4 2008 if (WARN_ON_ONCE(ret)) {
41a7dd42 2009 pr_warn("error on probing function return.\n");
231e36f4
MH
2010 warn++;
2011 } else {
2012 /* Enable trace point */
c31ffb3f
NK
2013 tk = find_trace_kprobe("testprobe2", KPROBE_EVENT_SYSTEM);
2014 if (WARN_ON_ONCE(tk == NULL)) {
41a7dd42 2015 pr_warn("error on getting 2nd new probe.\n");
231e36f4 2016 warn++;
41a7dd42 2017 } else {
c31ffb3f 2018 file = find_trace_probe_file(tk, top_trace_array());
41a7dd42
MH
2019 if (WARN_ON_ONCE(file == NULL)) {
2020 pr_warn("error on getting probe file.\n");
2021 warn++;
2022 } else
60d53e2c
MH
2023 enable_trace_kprobe(
2024 trace_probe_event_call(&tk->tp), file);
41a7dd42 2025 }
231e36f4
MH
2026 }
2027
2028 if (warn)
2029 goto end;
413d37d1
MH
2030
2031 ret = target(1, 2, 3, 4, 5, 6);
2032
d4d7ccc8
MN
2033 /*
2034 * Not expecting an error here, the check is only to prevent the
2035 * optimizer from removing the call to target() as otherwise there
2036 * are no side-effects and the call is never performed.
2037 */
2038 if (ret != 21)
2039 warn++;
2040
02ca1521 2041 /* Disable trace points before removing it */
c31ffb3f
NK
2042 tk = find_trace_kprobe("testprobe", KPROBE_EVENT_SYSTEM);
2043 if (WARN_ON_ONCE(tk == NULL)) {
41a7dd42 2044 pr_warn("error on getting test probe.\n");
02ca1521 2045 warn++;
41a7dd42 2046 } else {
d4d7ccc8
MN
2047 if (trace_kprobe_nhit(tk) != 1) {
2048 pr_warn("incorrect number of testprobe hits\n");
2049 warn++;
2050 }
2051
c31ffb3f 2052 file = find_trace_probe_file(tk, top_trace_array());
41a7dd42
MH
2053 if (WARN_ON_ONCE(file == NULL)) {
2054 pr_warn("error on getting probe file.\n");
2055 warn++;
2056 } else
60d53e2c
MH
2057 disable_trace_kprobe(
2058 trace_probe_event_call(&tk->tp), file);
41a7dd42 2059 }
02ca1521 2060
c31ffb3f
NK
2061 tk = find_trace_kprobe("testprobe2", KPROBE_EVENT_SYSTEM);
2062 if (WARN_ON_ONCE(tk == NULL)) {
41a7dd42 2063 pr_warn("error on getting 2nd test probe.\n");
02ca1521 2064 warn++;
41a7dd42 2065 } else {
d4d7ccc8
MN
2066 if (trace_kprobe_nhit(tk) != 1) {
2067 pr_warn("incorrect number of testprobe2 hits\n");
2068 warn++;
2069 }
2070
c31ffb3f 2071 file = find_trace_probe_file(tk, top_trace_array());
41a7dd42
MH
2072 if (WARN_ON_ONCE(file == NULL)) {
2073 pr_warn("error on getting probe file.\n");
2074 warn++;
2075 } else
60d53e2c
MH
2076 disable_trace_kprobe(
2077 trace_probe_event_call(&tk->tp), file);
41a7dd42 2078 }
02ca1521 2079
d262271d 2080 ret = create_or_delete_trace_kprobe("-:testprobe");
231e36f4 2081 if (WARN_ON_ONCE(ret)) {
41a7dd42 2082 pr_warn("error on deleting a probe.\n");
231e36f4
MH
2083 warn++;
2084 }
2085
d262271d 2086 ret = create_or_delete_trace_kprobe("-:testprobe2");
231e36f4 2087 if (WARN_ON_ONCE(ret)) {
41a7dd42 2088 pr_warn("error on deleting a probe.\n");
231e36f4
MH
2089 warn++;
2090 }
413d37d1 2091
231e36f4 2092end:
6212dd29
MH
2093 ret = dyn_events_release_all(&trace_kprobe_ops);
2094 if (WARN_ON_ONCE(ret)) {
2095 pr_warn("error on cleaning up probes.\n");
2096 warn++;
2097 }
30e7d894
TG
2098 /*
2099 * Wait for the optimizer work to finish. Otherwise it might fiddle
2100 * with probes in already freed __init text.
2101 */
2102 wait_for_kprobe_optimizer();
231e36f4
MH
2103 if (warn)
2104 pr_cont("NG: Some tests are failed. Please check them.\n");
2105 else
2106 pr_cont("OK\n");
413d37d1
MH
2107 return 0;
2108}
2109
2110late_initcall(kprobe_trace_self_tests_init);
2111
2112#endif