1 // SPDX-License-Identifier: GPL-2.0
5 * Part of this code was copied from kernel/trace/trace_kprobe.c written by
12 #include <linux/module.h>
13 #include <linux/mutex.h>
14 #include <linux/ftrace.h>
16 #include "trace_dynevent.h"
17 #include "trace_probe.h"
18 #include "trace_probe_tmpl.h"
20 #define EPROBE_EVENT_SYSTEM "eprobes"
23 /* tracepoint system */
24 const char *event_system;
26 /* tracepoint event */
27 const char *event_name;
29 struct trace_event_call *event;
31 struct dyn_event devent;
32 struct trace_probe tp;
36 struct trace_event_file *file;
37 struct trace_eprobe *ep;
40 static int __trace_eprobe_create(int argc, const char *argv[]);
42 static void trace_event_probe_cleanup(struct trace_eprobe *ep)
46 trace_probe_cleanup(&ep->tp);
47 kfree(ep->event_name);
48 kfree(ep->event_system);
50 trace_event_put_ref(ep->event);
54 static struct trace_eprobe *to_trace_eprobe(struct dyn_event *ev)
56 return container_of(ev, struct trace_eprobe, devent);
59 static int eprobe_dyn_event_create(const char *raw_command)
61 return trace_probe_create(raw_command, __trace_eprobe_create);
64 static int eprobe_dyn_event_show(struct seq_file *m, struct dyn_event *ev)
66 struct trace_eprobe *ep = to_trace_eprobe(ev);
69 seq_printf(m, "e:%s/%s", trace_probe_group_name(&ep->tp),
70 trace_probe_name(&ep->tp));
71 seq_printf(m, " %s.%s", ep->event_system, ep->event_name);
73 for (i = 0; i < ep->tp.nr_args; i++)
74 seq_printf(m, " %s=%s", ep->tp.args[i].name, ep->tp.args[i].comm);
80 static int unregister_trace_eprobe(struct trace_eprobe *ep)
82 /* If other probes are on the event, just unregister eprobe */
83 if (trace_probe_has_sibling(&ep->tp))
86 /* Enabled event can not be unregistered */
87 if (trace_probe_is_enabled(&ep->tp))
90 /* Will fail if probe is being used by ftrace or perf */
91 if (trace_probe_unregister_event_call(&ep->tp))
95 dyn_event_remove(&ep->devent);
96 trace_probe_unlink(&ep->tp);
101 static int eprobe_dyn_event_release(struct dyn_event *ev)
103 struct trace_eprobe *ep = to_trace_eprobe(ev);
104 int ret = unregister_trace_eprobe(ep);
107 trace_event_probe_cleanup(ep);
111 static bool eprobe_dyn_event_is_busy(struct dyn_event *ev)
113 struct trace_eprobe *ep = to_trace_eprobe(ev);
115 return trace_probe_is_enabled(&ep->tp);
118 static bool eprobe_dyn_event_match(const char *system, const char *event,
119 int argc, const char **argv, struct dyn_event *ev)
121 struct trace_eprobe *ep = to_trace_eprobe(ev);
125 * We match the following:
126 * event only - match all eprobes with event name
127 * system and event only - match all system/event probes
129 * The below has the above satisfied with more arguments:
131 * attached system/event - If the arg has the system and event
132 * the probe is attached to, match
133 * probes with the attachment.
135 * If any more args are given, then it requires a full match.
139 * If system exists, but this probe is not part of that system
142 if (system && strcmp(trace_probe_group_name(&ep->tp), system) != 0)
145 /* Must match the event name */
146 if (strcmp(trace_probe_name(&ep->tp), event) != 0)
149 /* No arguments match all */
153 /* First argument is the system/event the probe is attached to */
155 slash = strchr(argv[0], '/');
157 slash = strchr(argv[0], '.');
161 if (strncmp(ep->event_system, argv[0], slash - argv[0]))
163 if (strcmp(ep->event_name, slash + 1))
169 /* If there are no other args, then match */
173 return trace_probe_match_command_args(&ep->tp, argc, argv);
176 static struct dyn_event_operations eprobe_dyn_event_ops = {
177 .create = eprobe_dyn_event_create,
178 .show = eprobe_dyn_event_show,
179 .is_busy = eprobe_dyn_event_is_busy,
180 .free = eprobe_dyn_event_release,
181 .match = eprobe_dyn_event_match,
184 static struct trace_eprobe *alloc_event_probe(const char *group,
185 const char *this_event,
186 struct trace_event_call *event,
189 struct trace_eprobe *ep;
190 const char *event_name;
191 const char *sys_name;
195 return ERR_PTR(-ENODEV);
197 sys_name = event->class->system;
198 event_name = trace_event_name(event);
200 ep = kzalloc(struct_size(ep, tp.args, nargs), GFP_KERNEL);
202 trace_event_put_ref(event);
206 ep->event_name = kstrdup(event_name, GFP_KERNEL);
209 ep->event_system = kstrdup(sys_name, GFP_KERNEL);
210 if (!ep->event_system)
213 ret = trace_probe_init(&ep->tp, this_event, group, false);
217 dyn_event_init(&ep->devent, &eprobe_dyn_event_ops);
220 trace_event_probe_cleanup(ep);
224 static int trace_eprobe_tp_arg_update(struct trace_eprobe *ep, int i)
226 struct probe_arg *parg = &ep->tp.args[i];
227 struct ftrace_event_field *field;
228 struct list_head *head;
230 head = trace_get_fields(ep->event);
231 list_for_each_entry(field, head, link) {
232 if (!strcmp(parg->code->data, field->name)) {
233 kfree(parg->code->data);
234 parg->code->data = field;
238 kfree(parg->code->data);
239 parg->code->data = NULL;
243 static int eprobe_event_define_fields(struct trace_event_call *event_call)
245 struct eprobe_trace_entry_head field;
246 struct trace_probe *tp;
248 tp = trace_probe_primary_from_call(event_call);
249 if (WARN_ON_ONCE(!tp))
252 return traceprobe_define_arg_fields(event_call, sizeof(field), tp);
255 static struct trace_event_fields eprobe_fields_array[] = {
256 { .type = TRACE_FUNCTION_TYPE,
257 .define_fields = eprobe_event_define_fields },
261 /* Event entry printers */
262 static enum print_line_t
263 print_eprobe_event(struct trace_iterator *iter, int flags,
264 struct trace_event *event)
266 struct eprobe_trace_entry_head *field;
267 struct trace_event_call *pevent;
268 struct trace_event *probed_event;
269 struct trace_seq *s = &iter->seq;
270 struct trace_eprobe *ep;
271 struct trace_probe *tp;
274 field = (struct eprobe_trace_entry_head *)iter->ent;
275 tp = trace_probe_primary_from_call(
276 container_of(event, struct trace_event_call, event));
277 if (WARN_ON_ONCE(!tp))
280 ep = container_of(tp, struct trace_eprobe, tp);
281 type = ep->event->event.type;
283 trace_seq_printf(s, "%s: (", trace_probe_name(tp));
285 probed_event = ftrace_find_event(type);
287 pevent = container_of(probed_event, struct trace_event_call, event);
288 trace_seq_printf(s, "%s.%s", pevent->class->system,
289 trace_event_name(pevent));
291 trace_seq_printf(s, "%u", type);
294 trace_seq_putc(s, ')');
296 if (print_probe_args(s, tp->args, tp->nr_args,
297 (u8 *)&field[1], field) < 0)
300 trace_seq_putc(s, '\n');
302 return trace_handle_return(s);
305 static unsigned long get_event_field(struct fetch_insn *code, void *rec)
307 struct ftrace_event_field *field = code->data;
311 addr = rec + field->offset;
313 switch (field->size) {
315 if (field->is_signed)
318 val = *(unsigned char *)addr;
321 if (field->is_signed)
322 val = *(short *)addr;
324 val = *(unsigned short *)addr;
327 if (field->is_signed)
330 val = *(unsigned int *)addr;
333 if (field->is_signed)
336 val = *(unsigned long *)addr;
342 static int get_eprobe_size(struct trace_probe *tp, void *rec)
344 struct probe_arg *arg;
347 for (i = 0; i < tp->nr_args; i++) {
349 if (unlikely(arg->dynamic)) {
352 val = get_event_field(arg->code, rec);
353 len = process_fetch_insn_bottom(arg->code + 1, val, NULL, NULL);
362 /* Kprobe specific fetch functions */
364 /* Note that we don't verify it, since the code does not come from user space */
366 process_fetch_insn(struct fetch_insn *code, void *rec, void *dest,
371 val = get_event_field(code, rec);
372 return process_fetch_insn_bottom(code + 1, val, dest, base);
374 NOKPROBE_SYMBOL(process_fetch_insn)
376 /* Return the length of string -- including null terminal byte */
377 static nokprobe_inline int
378 fetch_store_strlen_user(unsigned long addr)
380 const void __user *uaddr = (__force const void __user *)addr;
382 return strnlen_user_nofault(uaddr, MAX_STRING_SIZE);
385 /* Return the length of string -- including null terminal byte */
386 static nokprobe_inline int
387 fetch_store_strlen(unsigned long addr)
392 #ifdef CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE
393 if (addr < TASK_SIZE)
394 return fetch_store_strlen_user(addr);
398 ret = copy_from_kernel_nofault(&c, (u8 *)addr + len, 1);
400 } while (c && ret == 0 && len < MAX_STRING_SIZE);
402 return (ret < 0) ? ret : len;
406 * Fetch a null-terminated string from user. Caller MUST set *(u32 *)buf
407 * with max length and relative data location.
409 static nokprobe_inline int
410 fetch_store_string_user(unsigned long addr, void *dest, void *base)
412 const void __user *uaddr = (__force const void __user *)addr;
413 int maxlen = get_loc_len(*(u32 *)dest);
417 if (unlikely(!maxlen))
420 __dest = get_loc_data(dest, base);
422 ret = strncpy_from_user_nofault(__dest, uaddr, maxlen);
424 *(u32 *)dest = make_data_loc(ret, __dest - base);
430 * Fetch a null-terminated string. Caller MUST set *(u32 *)buf with max
431 * length and relative data location.
433 static nokprobe_inline int
434 fetch_store_string(unsigned long addr, void *dest, void *base)
436 int maxlen = get_loc_len(*(u32 *)dest);
440 #ifdef CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE
441 if ((unsigned long)addr < TASK_SIZE)
442 return fetch_store_string_user(addr, dest, base);
445 if (unlikely(!maxlen))
448 __dest = get_loc_data(dest, base);
451 * Try to get string again, since the string can be changed while
454 ret = strncpy_from_kernel_nofault(__dest, (void *)addr, maxlen);
456 *(u32 *)dest = make_data_loc(ret, __dest - base);
461 static nokprobe_inline int
462 probe_mem_read_user(void *dest, void *src, size_t size)
464 const void __user *uaddr = (__force const void __user *)src;
466 return copy_from_user_nofault(dest, uaddr, size);
469 static nokprobe_inline int
470 probe_mem_read(void *dest, void *src, size_t size)
472 #ifdef CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE
473 if ((unsigned long)src < TASK_SIZE)
474 return probe_mem_read_user(dest, src, size);
476 return copy_from_kernel_nofault(dest, src, size);
481 __eprobe_trace_func(struct eprobe_data *edata, void *rec)
483 struct eprobe_trace_entry_head *entry;
484 struct trace_event_call *call = trace_probe_event_call(&edata->ep->tp);
485 struct trace_event_buffer fbuffer;
488 if (WARN_ON_ONCE(call != edata->file->event_call))
491 if (trace_trigger_soft_disabled(edata->file))
494 dsize = get_eprobe_size(&edata->ep->tp, rec);
496 entry = trace_event_buffer_reserve(&fbuffer, edata->file,
497 sizeof(*entry) + edata->ep->tp.size + dsize);
502 entry = fbuffer.entry = ring_buffer_event_data(fbuffer.event);
503 store_trace_args(&entry[1], &edata->ep->tp, rec, sizeof(*entry), dsize);
505 trace_event_buffer_commit(&fbuffer);
509 * The event probe implementation uses event triggers to get access to
510 * the event it is attached to, but is not an actual trigger. The below
511 * functions are just stubs to fulfill what is needed to use the trigger
514 static int eprobe_trigger_init(struct event_trigger_ops *ops,
515 struct event_trigger_data *data)
520 static void eprobe_trigger_free(struct event_trigger_ops *ops,
521 struct event_trigger_data *data)
526 static int eprobe_trigger_print(struct seq_file *m,
527 struct event_trigger_ops *ops,
528 struct event_trigger_data *data)
530 /* Do not print eprobe event triggers */
534 static void eprobe_trigger_func(struct event_trigger_data *data,
535 struct trace_buffer *buffer, void *rec,
536 struct ring_buffer_event *rbe)
538 struct eprobe_data *edata = data->private_data;
540 __eprobe_trace_func(edata, rec);
543 static struct event_trigger_ops eprobe_trigger_ops = {
544 .trigger = eprobe_trigger_func,
545 .print = eprobe_trigger_print,
546 .init = eprobe_trigger_init,
547 .free = eprobe_trigger_free,
550 static int eprobe_trigger_cmd_parse(struct event_command *cmd_ops,
551 struct trace_event_file *file,
552 char *glob, char *cmd, char *param)
557 static int eprobe_trigger_reg_func(char *glob,
558 struct event_trigger_data *data,
559 struct trace_event_file *file)
564 static void eprobe_trigger_unreg_func(char *glob,
565 struct event_trigger_data *data,
566 struct trace_event_file *file)
571 static struct event_trigger_ops *eprobe_trigger_get_ops(char *cmd,
574 return &eprobe_trigger_ops;
577 static struct event_command event_trigger_cmd = {
579 .trigger_type = ETT_EVENT_EPROBE,
580 .flags = EVENT_CMD_FL_NEEDS_REC,
581 .parse = eprobe_trigger_cmd_parse,
582 .reg = eprobe_trigger_reg_func,
583 .unreg = eprobe_trigger_unreg_func,
585 .get_trigger_ops = eprobe_trigger_get_ops,
589 static struct event_trigger_data *
590 new_eprobe_trigger(struct trace_eprobe *ep, struct trace_event_file *file)
592 struct event_trigger_data *trigger;
593 struct eprobe_data *edata;
595 edata = kzalloc(sizeof(*edata), GFP_KERNEL);
596 trigger = kzalloc(sizeof(*trigger), GFP_KERNEL);
597 if (!trigger || !edata) {
600 return ERR_PTR(-ENOMEM);
603 trigger->flags = EVENT_TRIGGER_FL_PROBE;
605 trigger->ops = &eprobe_trigger_ops;
608 * EVENT PROBE triggers are not registered as commands with
609 * register_event_command(), as they are not controlled by the user
610 * from the trigger file
612 trigger->cmd_ops = &event_trigger_cmd;
614 INIT_LIST_HEAD(&trigger->list);
615 RCU_INIT_POINTER(trigger->filter, NULL);
619 trigger->private_data = edata;
624 static int enable_eprobe(struct trace_eprobe *ep,
625 struct trace_event_file *eprobe_file)
627 struct event_trigger_data *trigger;
628 struct trace_event_file *file;
629 struct trace_array *tr = eprobe_file->tr;
631 file = find_event_file(tr, ep->event_system, ep->event_name);
634 trigger = new_eprobe_trigger(ep, eprobe_file);
636 return PTR_ERR(trigger);
638 list_add_tail_rcu(&trigger->list, &file->triggers);
640 trace_event_trigger_enable_disable(file, 1);
641 update_cond_flag(file);
646 static struct trace_event_functions eprobe_funcs = {
647 .trace = print_eprobe_event
650 static int disable_eprobe(struct trace_eprobe *ep,
651 struct trace_array *tr)
653 struct event_trigger_data *trigger;
654 struct trace_event_file *file;
655 struct eprobe_data *edata;
657 file = find_event_file(tr, ep->event_system, ep->event_name);
661 list_for_each_entry(trigger, &file->triggers, list) {
662 if (!(trigger->flags & EVENT_TRIGGER_FL_PROBE))
664 edata = trigger->private_data;
668 if (list_entry_is_head(trigger, &file->triggers, list))
671 list_del_rcu(&trigger->list);
673 trace_event_trigger_enable_disable(file, 0);
674 update_cond_flag(file);
676 /* Make sure nothing is using the edata or trigger */
677 tracepoint_synchronize_unregister();
685 static int enable_trace_eprobe(struct trace_event_call *call,
686 struct trace_event_file *file)
688 struct trace_probe *pos, *tp;
689 struct trace_eprobe *ep;
693 tp = trace_probe_primary_from_call(call);
694 if (WARN_ON_ONCE(!tp))
696 enabled = trace_probe_is_enabled(tp);
698 /* This also changes "enabled" state */
700 ret = trace_probe_add_file(tp, file);
704 trace_probe_set_flag(tp, TP_FLAG_PROFILE);
709 list_for_each_entry(pos, trace_probe_probe_list(tp), list) {
710 ep = container_of(pos, struct trace_eprobe, tp);
711 ret = enable_eprobe(ep, file);
718 /* Failed to enable one of them. Roll back all */
720 disable_eprobe(ep, file->tr);
722 trace_probe_remove_file(tp, file);
724 trace_probe_clear_flag(tp, TP_FLAG_PROFILE);
730 static int disable_trace_eprobe(struct trace_event_call *call,
731 struct trace_event_file *file)
733 struct trace_probe *pos, *tp;
734 struct trace_eprobe *ep;
736 tp = trace_probe_primary_from_call(call);
737 if (WARN_ON_ONCE(!tp))
741 if (!trace_probe_get_file_link(tp, file))
743 if (!trace_probe_has_single_file(tp))
745 trace_probe_clear_flag(tp, TP_FLAG_TRACE);
747 trace_probe_clear_flag(tp, TP_FLAG_PROFILE);
749 if (!trace_probe_is_enabled(tp)) {
750 list_for_each_entry(pos, trace_probe_probe_list(tp), list) {
751 ep = container_of(pos, struct trace_eprobe, tp);
752 disable_eprobe(ep, file->tr);
759 * Synchronization is done in below function. For perf event,
760 * file == NULL and perf_trace_event_unreg() calls
761 * tracepoint_synchronize_unregister() to ensure synchronize
762 * event. We don't need to care about it.
764 trace_probe_remove_file(tp, file);
769 static int eprobe_register(struct trace_event_call *event,
770 enum trace_reg type, void *data)
772 struct trace_event_file *file = data;
775 case TRACE_REG_REGISTER:
776 return enable_trace_eprobe(event, file);
777 case TRACE_REG_UNREGISTER:
778 return disable_trace_eprobe(event, file);
779 #ifdef CONFIG_PERF_EVENTS
780 case TRACE_REG_PERF_REGISTER:
781 case TRACE_REG_PERF_UNREGISTER:
782 case TRACE_REG_PERF_OPEN:
783 case TRACE_REG_PERF_CLOSE:
784 case TRACE_REG_PERF_ADD:
785 case TRACE_REG_PERF_DEL:
792 static inline void init_trace_eprobe_call(struct trace_eprobe *ep)
794 struct trace_event_call *call = trace_probe_event_call(&ep->tp);
796 call->flags = TRACE_EVENT_FL_EPROBE;
797 call->event.funcs = &eprobe_funcs;
798 call->class->fields_array = eprobe_fields_array;
799 call->class->reg = eprobe_register;
802 static struct trace_event_call *
803 find_and_get_event(const char *system, const char *event_name)
805 struct trace_event_call *tp_event;
808 list_for_each_entry(tp_event, &ftrace_events, list) {
809 /* Skip other probes and ftrace events */
810 if (tp_event->flags &
811 (TRACE_EVENT_FL_IGNORE_ENABLE |
812 TRACE_EVENT_FL_KPROBE |
813 TRACE_EVENT_FL_UPROBE |
814 TRACE_EVENT_FL_EPROBE))
816 if (!tp_event->class->system ||
817 strcmp(system, tp_event->class->system))
819 name = trace_event_name(tp_event);
820 if (!name || strcmp(event_name, name))
822 if (!trace_event_try_get_ref(tp_event)) {
832 static int trace_eprobe_tp_update_arg(struct trace_eprobe *ep, const char *argv[], int i)
834 unsigned int flags = TPARG_FL_KERNEL | TPARG_FL_TPOINT;
837 ret = traceprobe_parse_probe_arg(&ep->tp, i, argv[i], flags);
841 if (ep->tp.args[i].code->op == FETCH_OP_TP_ARG)
842 ret = trace_eprobe_tp_arg_update(ep, i);
847 static int __trace_eprobe_create(int argc, const char *argv[])
851 * e[:[GRP/]ENAME] SYSTEM.EVENT [FETCHARGS]
853 * <name>=$<field>[:TYPE]
855 const char *event = NULL, *group = EPROBE_EVENT_SYSTEM;
856 const char *sys_event = NULL, *sys_name = NULL;
857 struct trace_event_call *event_call;
858 struct trace_eprobe *ep = NULL;
859 char buf1[MAX_EVENT_NAME_LEN];
860 char buf2[MAX_EVENT_NAME_LEN];
864 if (argc < 2 || argv[0][0] != 'e')
867 trace_probe_log_init("event_probe", argc, argv);
869 event = strchr(&argv[0][1], ':');
872 ret = traceprobe_parse_event_name(&event, &group, buf1,
877 strscpy(buf1, argv[1], MAX_EVENT_NAME_LEN);
878 sanitize_event_name(buf1);
881 if (!is_good_name(event) || !is_good_name(group))
885 ret = traceprobe_parse_event_name(&sys_event, &sys_name, buf2,
886 sys_event - argv[1]);
887 if (ret || !sys_name)
889 if (!is_good_name(sys_event) || !is_good_name(sys_name))
892 mutex_lock(&event_mutex);
893 event_call = find_and_get_event(sys_name, sys_event);
894 ep = alloc_event_probe(group, event, event_call, argc - 2);
895 mutex_unlock(&event_mutex);
899 /* This must return -ENOMEM or missing event, else there is a bug */
900 WARN_ON_ONCE(ret != -ENOMEM && ret != -ENODEV);
905 argc -= 2; argv += 2;
906 /* parse arguments */
907 for (i = 0; i < argc && i < MAX_TRACE_ARGS; i++) {
908 trace_probe_log_set_index(i + 2);
909 ret = trace_eprobe_tp_update_arg(ep, argv, i);
913 ret = traceprobe_set_print_fmt(&ep->tp, PROBE_PRINT_EVENT);
916 init_trace_eprobe_call(ep);
917 mutex_lock(&event_mutex);
918 ret = trace_probe_register_event_call(&ep->tp);
920 if (ret == -EEXIST) {
921 trace_probe_log_set_index(0);
922 trace_probe_log_err(0, EVENT_EXIST);
924 mutex_unlock(&event_mutex);
927 ret = dyn_event_add(&ep->devent, &ep->tp.event->call);
928 mutex_unlock(&event_mutex);
933 trace_event_probe_cleanup(ep);
938 * Register dynevent at core_initcall. This allows kernel to setup eprobe
939 * events in postcore_initcall without tracefs.
941 static __init int trace_events_eprobe_init_early(void)
945 err = dyn_event_register(&eprobe_dyn_event_ops);
947 pr_warn("Could not register eprobe_dyn_event_ops\n");
951 core_initcall(trace_events_eprobe_init_early);