1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 2008 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
7 * - Added format output of fields of the trace point.
8 * This was based off of work by Tom Zanussi <tzanussi@gmail.com>.
12 #define pr_fmt(fmt) fmt
14 #include <linux/workqueue.h>
15 #include <linux/spinlock.h>
16 #include <linux/kthread.h>
17 #include <linux/tracefs.h>
18 #include <linux/uaccess.h>
19 #include <linux/module.h>
20 #include <linux/ctype.h>
21 #include <linux/sort.h>
22 #include <linux/slab.h>
23 #include <linux/delay.h>
25 #include <trace/events/sched.h>
27 #include <asm/setup.h>
29 #include "trace_output.h"
32 #define TRACE_SYSTEM "TRACE_SYSTEM"
34 DEFINE_MUTEX(event_mutex
);
36 LIST_HEAD(ftrace_events
);
37 static LIST_HEAD(ftrace_generic_fields
);
38 static LIST_HEAD(ftrace_common_fields
);
40 #define GFP_TRACE (GFP_KERNEL | __GFP_ZERO)
42 static struct kmem_cache
*field_cachep
;
43 static struct kmem_cache
*file_cachep
;
45 static inline int system_refcount(struct event_subsystem
*system
)
47 return system
->ref_count
;
50 static int system_refcount_inc(struct event_subsystem
*system
)
52 return system
->ref_count
++;
55 static int system_refcount_dec(struct event_subsystem
*system
)
57 return --system
->ref_count
;
60 /* Double loops, do not use break, only goto's work */
61 #define do_for_each_event_file(tr, file) \
62 list_for_each_entry(tr, &ftrace_trace_arrays, list) { \
63 list_for_each_entry(file, &tr->events, list)
65 #define do_for_each_event_file_safe(tr, file) \
66 list_for_each_entry(tr, &ftrace_trace_arrays, list) { \
67 struct trace_event_file *___n; \
68 list_for_each_entry_safe(file, ___n, &tr->events, list)
70 #define while_for_each_event_file() \
73 static struct list_head
*
74 trace_get_fields(struct trace_event_call
*event_call
)
76 if (!event_call
->class->get_fields
)
77 return &event_call
->class->fields
;
78 return event_call
->class->get_fields(event_call
);
81 static struct ftrace_event_field
*
82 __find_event_field(struct list_head
*head
, char *name
)
84 struct ftrace_event_field
*field
;
86 list_for_each_entry(field
, head
, link
) {
87 if (!strcmp(field
->name
, name
))
94 struct ftrace_event_field
*
95 trace_find_event_field(struct trace_event_call
*call
, char *name
)
97 struct ftrace_event_field
*field
;
98 struct list_head
*head
;
100 head
= trace_get_fields(call
);
101 field
= __find_event_field(head
, name
);
105 field
= __find_event_field(&ftrace_generic_fields
, name
);
109 return __find_event_field(&ftrace_common_fields
, name
);
112 static int __trace_define_field(struct list_head
*head
, const char *type
,
113 const char *name
, int offset
, int size
,
114 int is_signed
, int filter_type
)
116 struct ftrace_event_field
*field
;
118 field
= kmem_cache_alloc(field_cachep
, GFP_TRACE
);
125 if (filter_type
== FILTER_OTHER
)
126 field
->filter_type
= filter_assign_type(type
);
128 field
->filter_type
= filter_type
;
130 field
->offset
= offset
;
132 field
->is_signed
= is_signed
;
134 list_add(&field
->link
, head
);
139 int trace_define_field(struct trace_event_call
*call
, const char *type
,
140 const char *name
, int offset
, int size
, int is_signed
,
143 struct list_head
*head
;
145 if (WARN_ON(!call
->class))
148 head
= trace_get_fields(call
);
149 return __trace_define_field(head
, type
, name
, offset
, size
,
150 is_signed
, filter_type
);
152 EXPORT_SYMBOL_GPL(trace_define_field
);
154 #define __generic_field(type, item, filter_type) \
155 ret = __trace_define_field(&ftrace_generic_fields, #type, \
156 #item, 0, 0, is_signed_type(type), \
161 #define __common_field(type, item) \
162 ret = __trace_define_field(&ftrace_common_fields, #type, \
164 offsetof(typeof(ent), item), \
166 is_signed_type(type), FILTER_OTHER); \
170 static int trace_define_generic_fields(void)
174 __generic_field(int, CPU
, FILTER_CPU
);
175 __generic_field(int, cpu
, FILTER_CPU
);
176 __generic_field(char *, COMM
, FILTER_COMM
);
177 __generic_field(char *, comm
, FILTER_COMM
);
182 static int trace_define_common_fields(void)
185 struct trace_entry ent
;
187 __common_field(unsigned short, type
);
188 __common_field(unsigned char, flags
);
189 __common_field(unsigned char, preempt_count
);
190 __common_field(int, pid
);
195 static void trace_destroy_fields(struct trace_event_call
*call
)
197 struct ftrace_event_field
*field
, *next
;
198 struct list_head
*head
;
200 head
= trace_get_fields(call
);
201 list_for_each_entry_safe(field
, next
, head
, link
) {
202 list_del(&field
->link
);
203 kmem_cache_free(field_cachep
, field
);
208 * run-time version of trace_event_get_offsets_<call>() that returns the last
209 * accessible offset of trace fields excluding __dynamic_array bytes
211 int trace_event_get_offsets(struct trace_event_call
*call
)
213 struct ftrace_event_field
*tail
;
214 struct list_head
*head
;
216 head
= trace_get_fields(call
);
218 * head->next points to the last field with the largest offset,
219 * since it was added last by trace_define_field()
221 tail
= list_first_entry(head
, struct ftrace_event_field
, link
);
222 return tail
->offset
+ tail
->size
;
225 int trace_event_raw_init(struct trace_event_call
*call
)
229 id
= register_trace_event(&call
->event
);
235 EXPORT_SYMBOL_GPL(trace_event_raw_init
);
237 bool trace_event_ignore_this_pid(struct trace_event_file
*trace_file
)
239 struct trace_array
*tr
= trace_file
->tr
;
240 struct trace_array_cpu
*data
;
241 struct trace_pid_list
*pid_list
;
243 pid_list
= rcu_dereference_raw(tr
->filtered_pids
);
247 data
= this_cpu_ptr(tr
->trace_buffer
.data
);
249 return data
->ignore_pid
;
251 EXPORT_SYMBOL_GPL(trace_event_ignore_this_pid
);
253 void *trace_event_buffer_reserve(struct trace_event_buffer
*fbuffer
,
254 struct trace_event_file
*trace_file
,
257 struct trace_event_call
*event_call
= trace_file
->event_call
;
259 if ((trace_file
->flags
& EVENT_FILE_FL_PID_FILTER
) &&
260 trace_event_ignore_this_pid(trace_file
))
263 local_save_flags(fbuffer
->flags
);
264 fbuffer
->pc
= preempt_count();
266 * If CONFIG_PREEMPT is enabled, then the tracepoint itself disables
267 * preemption (adding one to the preempt_count). Since we are
268 * interested in the preempt_count at the time the tracepoint was
269 * hit, we need to subtract one to offset the increment.
271 if (IS_ENABLED(CONFIG_PREEMPT
))
273 fbuffer
->trace_file
= trace_file
;
276 trace_event_buffer_lock_reserve(&fbuffer
->buffer
, trace_file
,
277 event_call
->event
.type
, len
,
278 fbuffer
->flags
, fbuffer
->pc
);
282 fbuffer
->entry
= ring_buffer_event_data(fbuffer
->event
);
283 return fbuffer
->entry
;
285 EXPORT_SYMBOL_GPL(trace_event_buffer_reserve
);
287 int trace_event_reg(struct trace_event_call
*call
,
288 enum trace_reg type
, void *data
)
290 struct trace_event_file
*file
= data
;
292 WARN_ON(!(call
->flags
& TRACE_EVENT_FL_TRACEPOINT
));
294 case TRACE_REG_REGISTER
:
295 return tracepoint_probe_register(call
->tp
,
298 case TRACE_REG_UNREGISTER
:
299 tracepoint_probe_unregister(call
->tp
,
304 #ifdef CONFIG_PERF_EVENTS
305 case TRACE_REG_PERF_REGISTER
:
306 return tracepoint_probe_register(call
->tp
,
307 call
->class->perf_probe
,
309 case TRACE_REG_PERF_UNREGISTER
:
310 tracepoint_probe_unregister(call
->tp
,
311 call
->class->perf_probe
,
314 case TRACE_REG_PERF_OPEN
:
315 case TRACE_REG_PERF_CLOSE
:
316 case TRACE_REG_PERF_ADD
:
317 case TRACE_REG_PERF_DEL
:
323 EXPORT_SYMBOL_GPL(trace_event_reg
);
325 void trace_event_enable_cmd_record(bool enable
)
327 struct trace_event_file
*file
;
328 struct trace_array
*tr
;
330 mutex_lock(&event_mutex
);
331 do_for_each_event_file(tr
, file
) {
333 if (!(file
->flags
& EVENT_FILE_FL_ENABLED
))
337 tracing_start_cmdline_record();
338 set_bit(EVENT_FILE_FL_RECORDED_CMD_BIT
, &file
->flags
);
340 tracing_stop_cmdline_record();
341 clear_bit(EVENT_FILE_FL_RECORDED_CMD_BIT
, &file
->flags
);
343 } while_for_each_event_file();
344 mutex_unlock(&event_mutex
);
347 void trace_event_enable_tgid_record(bool enable
)
349 struct trace_event_file
*file
;
350 struct trace_array
*tr
;
352 mutex_lock(&event_mutex
);
353 do_for_each_event_file(tr
, file
) {
354 if (!(file
->flags
& EVENT_FILE_FL_ENABLED
))
358 tracing_start_tgid_record();
359 set_bit(EVENT_FILE_FL_RECORDED_TGID_BIT
, &file
->flags
);
361 tracing_stop_tgid_record();
362 clear_bit(EVENT_FILE_FL_RECORDED_TGID_BIT
,
365 } while_for_each_event_file();
366 mutex_unlock(&event_mutex
);
369 static int __ftrace_event_enable_disable(struct trace_event_file
*file
,
370 int enable
, int soft_disable
)
372 struct trace_event_call
*call
= file
->event_call
;
373 struct trace_array
*tr
= file
->tr
;
374 unsigned long file_flags
= file
->flags
;
381 * When soft_disable is set and enable is cleared, the sm_ref
382 * reference counter is decremented. If it reaches 0, we want
383 * to clear the SOFT_DISABLED flag but leave the event in the
384 * state that it was. That is, if the event was enabled and
385 * SOFT_DISABLED isn't set, then do nothing. But if SOFT_DISABLED
386 * is set we do not want the event to be enabled before we
389 * When soft_disable is not set but the SOFT_MODE flag is,
390 * we do nothing. Do not disable the tracepoint, otherwise
391 * "soft enable"s (clearing the SOFT_DISABLED bit) wont work.
394 if (atomic_dec_return(&file
->sm_ref
) > 0)
396 disable
= file
->flags
& EVENT_FILE_FL_SOFT_DISABLED
;
397 clear_bit(EVENT_FILE_FL_SOFT_MODE_BIT
, &file
->flags
);
399 disable
= !(file
->flags
& EVENT_FILE_FL_SOFT_MODE
);
401 if (disable
&& (file
->flags
& EVENT_FILE_FL_ENABLED
)) {
402 clear_bit(EVENT_FILE_FL_ENABLED_BIT
, &file
->flags
);
403 if (file
->flags
& EVENT_FILE_FL_RECORDED_CMD
) {
404 tracing_stop_cmdline_record();
405 clear_bit(EVENT_FILE_FL_RECORDED_CMD_BIT
, &file
->flags
);
408 if (file
->flags
& EVENT_FILE_FL_RECORDED_TGID
) {
409 tracing_stop_tgid_record();
410 clear_bit(EVENT_FILE_FL_RECORDED_TGID_BIT
, &file
->flags
);
413 call
->class->reg(call
, TRACE_REG_UNREGISTER
, file
);
415 /* If in SOFT_MODE, just set the SOFT_DISABLE_BIT, else clear it */
416 if (file
->flags
& EVENT_FILE_FL_SOFT_MODE
)
417 set_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT
, &file
->flags
);
419 clear_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT
, &file
->flags
);
423 * When soft_disable is set and enable is set, we want to
424 * register the tracepoint for the event, but leave the event
425 * as is. That means, if the event was already enabled, we do
426 * nothing (but set SOFT_MODE). If the event is disabled, we
427 * set SOFT_DISABLED before enabling the event tracepoint, so
428 * it still seems to be disabled.
431 clear_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT
, &file
->flags
);
433 if (atomic_inc_return(&file
->sm_ref
) > 1)
435 set_bit(EVENT_FILE_FL_SOFT_MODE_BIT
, &file
->flags
);
438 if (!(file
->flags
& EVENT_FILE_FL_ENABLED
)) {
439 bool cmd
= false, tgid
= false;
441 /* Keep the event disabled, when going to SOFT_MODE. */
443 set_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT
, &file
->flags
);
445 if (tr
->trace_flags
& TRACE_ITER_RECORD_CMD
) {
447 tracing_start_cmdline_record();
448 set_bit(EVENT_FILE_FL_RECORDED_CMD_BIT
, &file
->flags
);
451 if (tr
->trace_flags
& TRACE_ITER_RECORD_TGID
) {
453 tracing_start_tgid_record();
454 set_bit(EVENT_FILE_FL_RECORDED_TGID_BIT
, &file
->flags
);
457 ret
= call
->class->reg(call
, TRACE_REG_REGISTER
, file
);
460 tracing_stop_cmdline_record();
462 tracing_stop_tgid_record();
463 pr_info("event trace: Could not enable event "
464 "%s\n", trace_event_name(call
));
467 set_bit(EVENT_FILE_FL_ENABLED_BIT
, &file
->flags
);
469 /* WAS_ENABLED gets set but never cleared. */
470 set_bit(EVENT_FILE_FL_WAS_ENABLED_BIT
, &file
->flags
);
475 /* Enable or disable use of trace_buffered_event */
476 if ((file_flags
& EVENT_FILE_FL_SOFT_DISABLED
) !=
477 (file
->flags
& EVENT_FILE_FL_SOFT_DISABLED
)) {
478 if (file
->flags
& EVENT_FILE_FL_SOFT_DISABLED
)
479 trace_buffered_event_enable();
481 trace_buffered_event_disable();
487 int trace_event_enable_disable(struct trace_event_file
*file
,
488 int enable
, int soft_disable
)
490 return __ftrace_event_enable_disable(file
, enable
, soft_disable
);
493 static int ftrace_event_enable_disable(struct trace_event_file
*file
,
496 return __ftrace_event_enable_disable(file
, enable
, 0);
499 static void ftrace_clear_events(struct trace_array
*tr
)
501 struct trace_event_file
*file
;
503 mutex_lock(&event_mutex
);
504 list_for_each_entry(file
, &tr
->events
, list
) {
505 ftrace_event_enable_disable(file
, 0);
507 mutex_unlock(&event_mutex
);
511 event_filter_pid_sched_process_exit(void *data
, struct task_struct
*task
)
513 struct trace_pid_list
*pid_list
;
514 struct trace_array
*tr
= data
;
516 pid_list
= rcu_dereference_raw(tr
->filtered_pids
);
517 trace_filter_add_remove_task(pid_list
, NULL
, task
);
521 event_filter_pid_sched_process_fork(void *data
,
522 struct task_struct
*self
,
523 struct task_struct
*task
)
525 struct trace_pid_list
*pid_list
;
526 struct trace_array
*tr
= data
;
528 pid_list
= rcu_dereference_sched(tr
->filtered_pids
);
529 trace_filter_add_remove_task(pid_list
, self
, task
);
532 void trace_event_follow_fork(struct trace_array
*tr
, bool enable
)
535 register_trace_prio_sched_process_fork(event_filter_pid_sched_process_fork
,
537 register_trace_prio_sched_process_exit(event_filter_pid_sched_process_exit
,
540 unregister_trace_sched_process_fork(event_filter_pid_sched_process_fork
,
542 unregister_trace_sched_process_exit(event_filter_pid_sched_process_exit
,
548 event_filter_pid_sched_switch_probe_pre(void *data
, bool preempt
,
549 struct task_struct
*prev
, struct task_struct
*next
)
551 struct trace_array
*tr
= data
;
552 struct trace_pid_list
*pid_list
;
554 pid_list
= rcu_dereference_sched(tr
->filtered_pids
);
556 this_cpu_write(tr
->trace_buffer
.data
->ignore_pid
,
557 trace_ignore_this_task(pid_list
, prev
) &&
558 trace_ignore_this_task(pid_list
, next
));
562 event_filter_pid_sched_switch_probe_post(void *data
, bool preempt
,
563 struct task_struct
*prev
, struct task_struct
*next
)
565 struct trace_array
*tr
= data
;
566 struct trace_pid_list
*pid_list
;
568 pid_list
= rcu_dereference_sched(tr
->filtered_pids
);
570 this_cpu_write(tr
->trace_buffer
.data
->ignore_pid
,
571 trace_ignore_this_task(pid_list
, next
));
575 event_filter_pid_sched_wakeup_probe_pre(void *data
, struct task_struct
*task
)
577 struct trace_array
*tr
= data
;
578 struct trace_pid_list
*pid_list
;
580 /* Nothing to do if we are already tracing */
581 if (!this_cpu_read(tr
->trace_buffer
.data
->ignore_pid
))
584 pid_list
= rcu_dereference_sched(tr
->filtered_pids
);
586 this_cpu_write(tr
->trace_buffer
.data
->ignore_pid
,
587 trace_ignore_this_task(pid_list
, task
));
591 event_filter_pid_sched_wakeup_probe_post(void *data
, struct task_struct
*task
)
593 struct trace_array
*tr
= data
;
594 struct trace_pid_list
*pid_list
;
596 /* Nothing to do if we are not tracing */
597 if (this_cpu_read(tr
->trace_buffer
.data
->ignore_pid
))
600 pid_list
= rcu_dereference_sched(tr
->filtered_pids
);
602 /* Set tracing if current is enabled */
603 this_cpu_write(tr
->trace_buffer
.data
->ignore_pid
,
604 trace_ignore_this_task(pid_list
, current
));
607 static void __ftrace_clear_event_pids(struct trace_array
*tr
)
609 struct trace_pid_list
*pid_list
;
610 struct trace_event_file
*file
;
613 pid_list
= rcu_dereference_protected(tr
->filtered_pids
,
614 lockdep_is_held(&event_mutex
));
618 unregister_trace_sched_switch(event_filter_pid_sched_switch_probe_pre
, tr
);
619 unregister_trace_sched_switch(event_filter_pid_sched_switch_probe_post
, tr
);
621 unregister_trace_sched_wakeup(event_filter_pid_sched_wakeup_probe_pre
, tr
);
622 unregister_trace_sched_wakeup(event_filter_pid_sched_wakeup_probe_post
, tr
);
624 unregister_trace_sched_wakeup_new(event_filter_pid_sched_wakeup_probe_pre
, tr
);
625 unregister_trace_sched_wakeup_new(event_filter_pid_sched_wakeup_probe_post
, tr
);
627 unregister_trace_sched_waking(event_filter_pid_sched_wakeup_probe_pre
, tr
);
628 unregister_trace_sched_waking(event_filter_pid_sched_wakeup_probe_post
, tr
);
630 list_for_each_entry(file
, &tr
->events
, list
) {
631 clear_bit(EVENT_FILE_FL_PID_FILTER_BIT
, &file
->flags
);
634 for_each_possible_cpu(cpu
)
635 per_cpu_ptr(tr
->trace_buffer
.data
, cpu
)->ignore_pid
= false;
637 rcu_assign_pointer(tr
->filtered_pids
, NULL
);
639 /* Wait till all users are no longer using pid filtering */
640 tracepoint_synchronize_unregister();
642 trace_free_pid_list(pid_list
);
645 static void ftrace_clear_event_pids(struct trace_array
*tr
)
647 mutex_lock(&event_mutex
);
648 __ftrace_clear_event_pids(tr
);
649 mutex_unlock(&event_mutex
);
652 static void __put_system(struct event_subsystem
*system
)
654 struct event_filter
*filter
= system
->filter
;
656 WARN_ON_ONCE(system_refcount(system
) == 0);
657 if (system_refcount_dec(system
))
660 list_del(&system
->list
);
663 kfree(filter
->filter_string
);
666 kfree_const(system
->name
);
670 static void __get_system(struct event_subsystem
*system
)
672 WARN_ON_ONCE(system_refcount(system
) == 0);
673 system_refcount_inc(system
);
676 static void __get_system_dir(struct trace_subsystem_dir
*dir
)
678 WARN_ON_ONCE(dir
->ref_count
== 0);
680 __get_system(dir
->subsystem
);
683 static void __put_system_dir(struct trace_subsystem_dir
*dir
)
685 WARN_ON_ONCE(dir
->ref_count
== 0);
686 /* If the subsystem is about to be freed, the dir must be too */
687 WARN_ON_ONCE(system_refcount(dir
->subsystem
) == 1 && dir
->ref_count
!= 1);
689 __put_system(dir
->subsystem
);
690 if (!--dir
->ref_count
)
694 static void put_system(struct trace_subsystem_dir
*dir
)
696 mutex_lock(&event_mutex
);
697 __put_system_dir(dir
);
698 mutex_unlock(&event_mutex
);
701 static void remove_subsystem(struct trace_subsystem_dir
*dir
)
706 if (!--dir
->nr_events
) {
707 tracefs_remove_recursive(dir
->entry
);
708 list_del(&dir
->list
);
709 __put_system_dir(dir
);
713 static void remove_event_file_dir(struct trace_event_file
*file
)
715 struct dentry
*dir
= file
->dir
;
716 struct dentry
*child
;
719 spin_lock(&dir
->d_lock
); /* probably unneeded */
720 list_for_each_entry(child
, &dir
->d_subdirs
, d_child
) {
721 if (d_really_is_positive(child
)) /* probably unneeded */
722 d_inode(child
)->i_private
= NULL
;
724 spin_unlock(&dir
->d_lock
);
726 tracefs_remove_recursive(dir
);
729 list_del(&file
->list
);
730 remove_subsystem(file
->system
);
731 free_event_filter(file
->filter
);
732 kmem_cache_free(file_cachep
, file
);
736 * __ftrace_set_clr_event(NULL, NULL, NULL, set) will set/unset all events.
739 __ftrace_set_clr_event_nolock(struct trace_array
*tr
, const char *match
,
740 const char *sub
, const char *event
, int set
)
742 struct trace_event_file
*file
;
743 struct trace_event_call
*call
;
748 list_for_each_entry(file
, &tr
->events
, list
) {
750 call
= file
->event_call
;
751 name
= trace_event_name(call
);
753 if (!name
|| !call
->class || !call
->class->reg
)
756 if (call
->flags
& TRACE_EVENT_FL_IGNORE_ENABLE
)
760 strcmp(match
, name
) != 0 &&
761 strcmp(match
, call
->class->system
) != 0)
764 if (sub
&& strcmp(sub
, call
->class->system
) != 0)
767 if (event
&& strcmp(event
, name
) != 0)
770 ret
= ftrace_event_enable_disable(file
, set
);
773 * Save the first error and return that. Some events
774 * may still have been enabled, but let the user
775 * know that something went wrong.
786 static int __ftrace_set_clr_event(struct trace_array
*tr
, const char *match
,
787 const char *sub
, const char *event
, int set
)
791 mutex_lock(&event_mutex
);
792 ret
= __ftrace_set_clr_event_nolock(tr
, match
, sub
, event
, set
);
793 mutex_unlock(&event_mutex
);
798 static int ftrace_set_clr_event(struct trace_array
*tr
, char *buf
, int set
)
800 char *event
= NULL
, *sub
= NULL
, *match
;
804 * The buf format can be <subsystem>:<event-name>
805 * *:<event-name> means any event by that name.
806 * :<event-name> is the same.
808 * <subsystem>:* means all events in that subsystem
809 * <subsystem>: means the same.
811 * <name> (no ':') means all events in a subsystem with
812 * the name <name> or any event that matches <name>
815 match
= strsep(&buf
, ":");
821 if (!strlen(sub
) || strcmp(sub
, "*") == 0)
823 if (!strlen(event
) || strcmp(event
, "*") == 0)
827 ret
= __ftrace_set_clr_event(tr
, match
, sub
, event
, set
);
829 /* Put back the colon to allow this to be called again */
835 EXPORT_SYMBOL_GPL(ftrace_set_clr_event
);
838 * trace_set_clr_event - enable or disable an event
839 * @system: system name to match (NULL for any system)
840 * @event: event name to match (NULL for all events, within system)
841 * @set: 1 to enable, 0 to disable
843 * This is a way for other parts of the kernel to enable or disable
846 * Returns 0 on success, -EINVAL if the parameters do not match any
849 int trace_set_clr_event(const char *system
, const char *event
, int set
)
851 struct trace_array
*tr
= top_trace_array();
856 return __ftrace_set_clr_event(tr
, NULL
, system
, event
, set
);
858 EXPORT_SYMBOL_GPL(trace_set_clr_event
);
860 /* 128 should be much more than enough */
861 #define EVENT_BUF_SIZE 127
864 ftrace_event_write(struct file
*file
, const char __user
*ubuf
,
865 size_t cnt
, loff_t
*ppos
)
867 struct trace_parser parser
;
868 struct seq_file
*m
= file
->private_data
;
869 struct trace_array
*tr
= m
->private;
875 ret
= tracing_update_buffers();
879 if (trace_parser_get_init(&parser
, EVENT_BUF_SIZE
+ 1))
882 read
= trace_get_user(&parser
, ubuf
, cnt
, ppos
);
884 if (read
>= 0 && trace_parser_loaded((&parser
))) {
887 if (*parser
.buffer
== '!')
890 ret
= ftrace_set_clr_event(tr
, parser
.buffer
+ !set
, set
);
898 trace_parser_put(&parser
);
904 t_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
906 struct trace_event_file
*file
= v
;
907 struct trace_event_call
*call
;
908 struct trace_array
*tr
= m
->private;
912 list_for_each_entry_continue(file
, &tr
->events
, list
) {
913 call
= file
->event_call
;
915 * The ftrace subsystem is for showing formats only.
916 * They can not be enabled or disabled via the event files.
918 if (call
->class && call
->class->reg
&&
919 !(call
->flags
& TRACE_EVENT_FL_IGNORE_ENABLE
))
926 static void *t_start(struct seq_file
*m
, loff_t
*pos
)
928 struct trace_event_file
*file
;
929 struct trace_array
*tr
= m
->private;
932 mutex_lock(&event_mutex
);
934 file
= list_entry(&tr
->events
, struct trace_event_file
, list
);
935 for (l
= 0; l
<= *pos
; ) {
936 file
= t_next(m
, file
, &l
);
944 s_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
946 struct trace_event_file
*file
= v
;
947 struct trace_array
*tr
= m
->private;
951 list_for_each_entry_continue(file
, &tr
->events
, list
) {
952 if (file
->flags
& EVENT_FILE_FL_ENABLED
)
959 static void *s_start(struct seq_file
*m
, loff_t
*pos
)
961 struct trace_event_file
*file
;
962 struct trace_array
*tr
= m
->private;
965 mutex_lock(&event_mutex
);
967 file
= list_entry(&tr
->events
, struct trace_event_file
, list
);
968 for (l
= 0; l
<= *pos
; ) {
969 file
= s_next(m
, file
, &l
);
976 static int t_show(struct seq_file
*m
, void *v
)
978 struct trace_event_file
*file
= v
;
979 struct trace_event_call
*call
= file
->event_call
;
981 if (strcmp(call
->class->system
, TRACE_SYSTEM
) != 0)
982 seq_printf(m
, "%s:", call
->class->system
);
983 seq_printf(m
, "%s\n", trace_event_name(call
));
988 static void t_stop(struct seq_file
*m
, void *p
)
990 mutex_unlock(&event_mutex
);
994 p_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
996 struct trace_array
*tr
= m
->private;
997 struct trace_pid_list
*pid_list
= rcu_dereference_sched(tr
->filtered_pids
);
999 return trace_pid_next(pid_list
, v
, pos
);
1002 static void *p_start(struct seq_file
*m
, loff_t
*pos
)
1005 struct trace_pid_list
*pid_list
;
1006 struct trace_array
*tr
= m
->private;
1009 * Grab the mutex, to keep calls to p_next() having the same
1010 * tr->filtered_pids as p_start() has.
1011 * If we just passed the tr->filtered_pids around, then RCU would
1012 * have been enough, but doing that makes things more complex.
1014 mutex_lock(&event_mutex
);
1015 rcu_read_lock_sched();
1017 pid_list
= rcu_dereference_sched(tr
->filtered_pids
);
1022 return trace_pid_start(pid_list
, pos
);
1025 static void p_stop(struct seq_file
*m
, void *p
)
1028 rcu_read_unlock_sched();
1029 mutex_unlock(&event_mutex
);
1033 event_enable_read(struct file
*filp
, char __user
*ubuf
, size_t cnt
,
1036 struct trace_event_file
*file
;
1037 unsigned long flags
;
1040 mutex_lock(&event_mutex
);
1041 file
= event_file_data(filp
);
1043 flags
= file
->flags
;
1044 mutex_unlock(&event_mutex
);
1049 if (flags
& EVENT_FILE_FL_ENABLED
&&
1050 !(flags
& EVENT_FILE_FL_SOFT_DISABLED
))
1053 if (flags
& EVENT_FILE_FL_SOFT_DISABLED
||
1054 flags
& EVENT_FILE_FL_SOFT_MODE
)
1059 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, strlen(buf
));
1063 event_enable_write(struct file
*filp
, const char __user
*ubuf
, size_t cnt
,
1066 struct trace_event_file
*file
;
1070 ret
= kstrtoul_from_user(ubuf
, cnt
, 10, &val
);
1074 ret
= tracing_update_buffers();
1082 mutex_lock(&event_mutex
);
1083 file
= event_file_data(filp
);
1085 ret
= ftrace_event_enable_disable(file
, val
);
1086 mutex_unlock(&event_mutex
);
1095 return ret
? ret
: cnt
;
1099 system_enable_read(struct file
*filp
, char __user
*ubuf
, size_t cnt
,
1102 const char set_to_char
[4] = { '?', '0', '1', 'X' };
1103 struct trace_subsystem_dir
*dir
= filp
->private_data
;
1104 struct event_subsystem
*system
= dir
->subsystem
;
1105 struct trace_event_call
*call
;
1106 struct trace_event_file
*file
;
1107 struct trace_array
*tr
= dir
->tr
;
1112 mutex_lock(&event_mutex
);
1113 list_for_each_entry(file
, &tr
->events
, list
) {
1114 call
= file
->event_call
;
1115 if (!trace_event_name(call
) || !call
->class || !call
->class->reg
)
1118 if (system
&& strcmp(call
->class->system
, system
->name
) != 0)
1122 * We need to find out if all the events are set
1123 * or if all events or cleared, or if we have
1126 set
|= (1 << !!(file
->flags
& EVENT_FILE_FL_ENABLED
));
1129 * If we have a mixture, no need to look further.
1134 mutex_unlock(&event_mutex
);
1136 buf
[0] = set_to_char
[set
];
1139 ret
= simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, 2);
1145 system_enable_write(struct file
*filp
, const char __user
*ubuf
, size_t cnt
,
1148 struct trace_subsystem_dir
*dir
= filp
->private_data
;
1149 struct event_subsystem
*system
= dir
->subsystem
;
1150 const char *name
= NULL
;
1154 ret
= kstrtoul_from_user(ubuf
, cnt
, 10, &val
);
1158 ret
= tracing_update_buffers();
1162 if (val
!= 0 && val
!= 1)
1166 * Opening of "enable" adds a ref count to system,
1167 * so the name is safe to use.
1170 name
= system
->name
;
1172 ret
= __ftrace_set_clr_event(dir
->tr
, NULL
, name
, NULL
, val
);
1186 FORMAT_FIELD_SEPERATOR
= 2,
1187 FORMAT_PRINTFMT
= 3,
1190 static void *f_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
1192 struct trace_event_call
*call
= event_file_data(m
->private);
1193 struct list_head
*common_head
= &ftrace_common_fields
;
1194 struct list_head
*head
= trace_get_fields(call
);
1195 struct list_head
*node
= v
;
1199 switch ((unsigned long)v
) {
1204 case FORMAT_FIELD_SEPERATOR
:
1208 case FORMAT_PRINTFMT
:
1214 if (node
== common_head
)
1215 return (void *)FORMAT_FIELD_SEPERATOR
;
1216 else if (node
== head
)
1217 return (void *)FORMAT_PRINTFMT
;
1222 static int f_show(struct seq_file
*m
, void *v
)
1224 struct trace_event_call
*call
= event_file_data(m
->private);
1225 struct ftrace_event_field
*field
;
1226 const char *array_descriptor
;
1228 switch ((unsigned long)v
) {
1230 seq_printf(m
, "name: %s\n", trace_event_name(call
));
1231 seq_printf(m
, "ID: %d\n", call
->event
.type
);
1232 seq_puts(m
, "format:\n");
1235 case FORMAT_FIELD_SEPERATOR
:
1239 case FORMAT_PRINTFMT
:
1240 seq_printf(m
, "\nprint fmt: %s\n",
1245 field
= list_entry(v
, struct ftrace_event_field
, link
);
1247 * Smartly shows the array type(except dynamic array).
1250 * If TYPE := TYPE[LEN], it is shown:
1251 * field:TYPE VAR[LEN]
1253 array_descriptor
= strchr(field
->type
, '[');
1255 if (str_has_prefix(field
->type
, "__data_loc"))
1256 array_descriptor
= NULL
;
1258 if (!array_descriptor
)
1259 seq_printf(m
, "\tfield:%s %s;\toffset:%u;\tsize:%u;\tsigned:%d;\n",
1260 field
->type
, field
->name
, field
->offset
,
1261 field
->size
, !!field
->is_signed
);
1263 seq_printf(m
, "\tfield:%.*s %s%s;\toffset:%u;\tsize:%u;\tsigned:%d;\n",
1264 (int)(array_descriptor
- field
->type
),
1265 field
->type
, field
->name
,
1266 array_descriptor
, field
->offset
,
1267 field
->size
, !!field
->is_signed
);
1272 static void *f_start(struct seq_file
*m
, loff_t
*pos
)
1274 void *p
= (void *)FORMAT_HEADER
;
1277 /* ->stop() is called even if ->start() fails */
1278 mutex_lock(&event_mutex
);
1279 if (!event_file_data(m
->private))
1280 return ERR_PTR(-ENODEV
);
1282 while (l
< *pos
&& p
)
1283 p
= f_next(m
, p
, &l
);
1288 static void f_stop(struct seq_file
*m
, void *p
)
1290 mutex_unlock(&event_mutex
);
1293 static const struct seq_operations trace_format_seq_ops
= {
1300 static int trace_format_open(struct inode
*inode
, struct file
*file
)
1305 ret
= seq_open(file
, &trace_format_seq_ops
);
1309 m
= file
->private_data
;
1316 event_id_read(struct file
*filp
, char __user
*ubuf
, size_t cnt
, loff_t
*ppos
)
1318 int id
= (long)event_file_data(filp
);
1325 len
= sprintf(buf
, "%d\n", id
);
1327 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, len
);
1331 event_filter_read(struct file
*filp
, char __user
*ubuf
, size_t cnt
,
1334 struct trace_event_file
*file
;
1335 struct trace_seq
*s
;
1341 s
= kmalloc(sizeof(*s
), GFP_KERNEL
);
1348 mutex_lock(&event_mutex
);
1349 file
= event_file_data(filp
);
1351 print_event_filter(file
, s
);
1352 mutex_unlock(&event_mutex
);
1355 r
= simple_read_from_buffer(ubuf
, cnt
, ppos
,
1356 s
->buffer
, trace_seq_used(s
));
1364 event_filter_write(struct file
*filp
, const char __user
*ubuf
, size_t cnt
,
1367 struct trace_event_file
*file
;
1371 if (cnt
>= PAGE_SIZE
)
1374 buf
= memdup_user_nul(ubuf
, cnt
);
1376 return PTR_ERR(buf
);
1378 mutex_lock(&event_mutex
);
1379 file
= event_file_data(filp
);
1381 err
= apply_event_filter(file
, buf
);
1382 mutex_unlock(&event_mutex
);
1393 static LIST_HEAD(event_subsystems
);
1395 static int subsystem_open(struct inode
*inode
, struct file
*filp
)
1397 struct event_subsystem
*system
= NULL
;
1398 struct trace_subsystem_dir
*dir
= NULL
; /* Initialize for gcc */
1399 struct trace_array
*tr
;
1402 if (tracing_is_disabled())
1405 /* Make sure the system still exists */
1406 mutex_lock(&event_mutex
);
1407 mutex_lock(&trace_types_lock
);
1408 list_for_each_entry(tr
, &ftrace_trace_arrays
, list
) {
1409 list_for_each_entry(dir
, &tr
->systems
, list
) {
1410 if (dir
== inode
->i_private
) {
1411 /* Don't open systems with no events */
1412 if (dir
->nr_events
) {
1413 __get_system_dir(dir
);
1414 system
= dir
->subsystem
;
1421 mutex_unlock(&trace_types_lock
);
1422 mutex_unlock(&event_mutex
);
1427 /* Some versions of gcc think dir can be uninitialized here */
1430 /* Still need to increment the ref count of the system */
1431 if (trace_array_get(tr
) < 0) {
1436 ret
= tracing_open_generic(inode
, filp
);
1438 trace_array_put(tr
);
1445 static int system_tr_open(struct inode
*inode
, struct file
*filp
)
1447 struct trace_subsystem_dir
*dir
;
1448 struct trace_array
*tr
= inode
->i_private
;
1451 if (tracing_is_disabled())
1454 if (trace_array_get(tr
) < 0)
1457 /* Make a temporary dir that has no system but points to tr */
1458 dir
= kzalloc(sizeof(*dir
), GFP_KERNEL
);
1460 trace_array_put(tr
);
1466 ret
= tracing_open_generic(inode
, filp
);
1468 trace_array_put(tr
);
1473 filp
->private_data
= dir
;
1478 static int subsystem_release(struct inode
*inode
, struct file
*file
)
1480 struct trace_subsystem_dir
*dir
= file
->private_data
;
1482 trace_array_put(dir
->tr
);
1485 * If dir->subsystem is NULL, then this is a temporary
1486 * descriptor that was made for a trace_array to enable
1498 subsystem_filter_read(struct file
*filp
, char __user
*ubuf
, size_t cnt
,
1501 struct trace_subsystem_dir
*dir
= filp
->private_data
;
1502 struct event_subsystem
*system
= dir
->subsystem
;
1503 struct trace_seq
*s
;
1509 s
= kmalloc(sizeof(*s
), GFP_KERNEL
);
1515 print_subsystem_event_filter(system
, s
);
1516 r
= simple_read_from_buffer(ubuf
, cnt
, ppos
,
1517 s
->buffer
, trace_seq_used(s
));
1525 subsystem_filter_write(struct file
*filp
, const char __user
*ubuf
, size_t cnt
,
1528 struct trace_subsystem_dir
*dir
= filp
->private_data
;
1532 if (cnt
>= PAGE_SIZE
)
1535 buf
= memdup_user_nul(ubuf
, cnt
);
1537 return PTR_ERR(buf
);
1539 err
= apply_subsystem_event_filter(dir
, buf
);
1550 show_header(struct file
*filp
, char __user
*ubuf
, size_t cnt
, loff_t
*ppos
)
1552 int (*func
)(struct trace_seq
*s
) = filp
->private_data
;
1553 struct trace_seq
*s
;
1559 s
= kmalloc(sizeof(*s
), GFP_KERNEL
);
1566 r
= simple_read_from_buffer(ubuf
, cnt
, ppos
,
1567 s
->buffer
, trace_seq_used(s
));
1574 static void ignore_task_cpu(void *data
)
1576 struct trace_array
*tr
= data
;
1577 struct trace_pid_list
*pid_list
;
1580 * This function is called by on_each_cpu() while the
1581 * event_mutex is held.
1583 pid_list
= rcu_dereference_protected(tr
->filtered_pids
,
1584 mutex_is_locked(&event_mutex
));
1586 this_cpu_write(tr
->trace_buffer
.data
->ignore_pid
,
1587 trace_ignore_this_task(pid_list
, current
));
1591 ftrace_event_pid_write(struct file
*filp
, const char __user
*ubuf
,
1592 size_t cnt
, loff_t
*ppos
)
1594 struct seq_file
*m
= filp
->private_data
;
1595 struct trace_array
*tr
= m
->private;
1596 struct trace_pid_list
*filtered_pids
= NULL
;
1597 struct trace_pid_list
*pid_list
;
1598 struct trace_event_file
*file
;
1604 ret
= tracing_update_buffers();
1608 mutex_lock(&event_mutex
);
1610 filtered_pids
= rcu_dereference_protected(tr
->filtered_pids
,
1611 lockdep_is_held(&event_mutex
));
1613 ret
= trace_pid_write(filtered_pids
, &pid_list
, ubuf
, cnt
);
1617 rcu_assign_pointer(tr
->filtered_pids
, pid_list
);
1619 list_for_each_entry(file
, &tr
->events
, list
) {
1620 set_bit(EVENT_FILE_FL_PID_FILTER_BIT
, &file
->flags
);
1623 if (filtered_pids
) {
1624 tracepoint_synchronize_unregister();
1625 trace_free_pid_list(filtered_pids
);
1626 } else if (pid_list
) {
1628 * Register a probe that is called before all other probes
1629 * to set ignore_pid if next or prev do not match.
1630 * Register a probe this is called after all other probes
1631 * to only keep ignore_pid set if next pid matches.
1633 register_trace_prio_sched_switch(event_filter_pid_sched_switch_probe_pre
,
1635 register_trace_prio_sched_switch(event_filter_pid_sched_switch_probe_post
,
1638 register_trace_prio_sched_wakeup(event_filter_pid_sched_wakeup_probe_pre
,
1640 register_trace_prio_sched_wakeup(event_filter_pid_sched_wakeup_probe_post
,
1643 register_trace_prio_sched_wakeup_new(event_filter_pid_sched_wakeup_probe_pre
,
1645 register_trace_prio_sched_wakeup_new(event_filter_pid_sched_wakeup_probe_post
,
1648 register_trace_prio_sched_waking(event_filter_pid_sched_wakeup_probe_pre
,
1650 register_trace_prio_sched_waking(event_filter_pid_sched_wakeup_probe_post
,
1655 * Ignoring of pids is done at task switch. But we have to
1656 * check for those tasks that are currently running.
1657 * Always do this in case a pid was appended or removed.
1659 on_each_cpu(ignore_task_cpu
, tr
, 1);
1662 mutex_unlock(&event_mutex
);
1670 static int ftrace_event_avail_open(struct inode
*inode
, struct file
*file
);
1671 static int ftrace_event_set_open(struct inode
*inode
, struct file
*file
);
1672 static int ftrace_event_set_pid_open(struct inode
*inode
, struct file
*file
);
1673 static int ftrace_event_release(struct inode
*inode
, struct file
*file
);
1675 static const struct seq_operations show_event_seq_ops
= {
1682 static const struct seq_operations show_set_event_seq_ops
= {
1689 static const struct seq_operations show_set_pid_seq_ops
= {
1692 .show
= trace_pid_show
,
1696 static const struct file_operations ftrace_avail_fops
= {
1697 .open
= ftrace_event_avail_open
,
1699 .llseek
= seq_lseek
,
1700 .release
= seq_release
,
1703 static const struct file_operations ftrace_set_event_fops
= {
1704 .open
= ftrace_event_set_open
,
1706 .write
= ftrace_event_write
,
1707 .llseek
= seq_lseek
,
1708 .release
= ftrace_event_release
,
1711 static const struct file_operations ftrace_set_event_pid_fops
= {
1712 .open
= ftrace_event_set_pid_open
,
1714 .write
= ftrace_event_pid_write
,
1715 .llseek
= seq_lseek
,
1716 .release
= ftrace_event_release
,
1719 static const struct file_operations ftrace_enable_fops
= {
1720 .open
= tracing_open_generic
,
1721 .read
= event_enable_read
,
1722 .write
= event_enable_write
,
1723 .llseek
= default_llseek
,
1726 static const struct file_operations ftrace_event_format_fops
= {
1727 .open
= trace_format_open
,
1729 .llseek
= seq_lseek
,
1730 .release
= seq_release
,
1733 static const struct file_operations ftrace_event_id_fops
= {
1734 .read
= event_id_read
,
1735 .llseek
= default_llseek
,
1738 static const struct file_operations ftrace_event_filter_fops
= {
1739 .open
= tracing_open_generic
,
1740 .read
= event_filter_read
,
1741 .write
= event_filter_write
,
1742 .llseek
= default_llseek
,
1745 static const struct file_operations ftrace_subsystem_filter_fops
= {
1746 .open
= subsystem_open
,
1747 .read
= subsystem_filter_read
,
1748 .write
= subsystem_filter_write
,
1749 .llseek
= default_llseek
,
1750 .release
= subsystem_release
,
1753 static const struct file_operations ftrace_system_enable_fops
= {
1754 .open
= subsystem_open
,
1755 .read
= system_enable_read
,
1756 .write
= system_enable_write
,
1757 .llseek
= default_llseek
,
1758 .release
= subsystem_release
,
1761 static const struct file_operations ftrace_tr_enable_fops
= {
1762 .open
= system_tr_open
,
1763 .read
= system_enable_read
,
1764 .write
= system_enable_write
,
1765 .llseek
= default_llseek
,
1766 .release
= subsystem_release
,
1769 static const struct file_operations ftrace_show_header_fops
= {
1770 .open
= tracing_open_generic
,
1771 .read
= show_header
,
1772 .llseek
= default_llseek
,
1776 ftrace_event_open(struct inode
*inode
, struct file
*file
,
1777 const struct seq_operations
*seq_ops
)
1782 ret
= seq_open(file
, seq_ops
);
1785 m
= file
->private_data
;
1786 /* copy tr over to seq ops */
1787 m
->private = inode
->i_private
;
1792 static int ftrace_event_release(struct inode
*inode
, struct file
*file
)
1794 struct trace_array
*tr
= inode
->i_private
;
1796 trace_array_put(tr
);
1798 return seq_release(inode
, file
);
1802 ftrace_event_avail_open(struct inode
*inode
, struct file
*file
)
1804 const struct seq_operations
*seq_ops
= &show_event_seq_ops
;
1806 return ftrace_event_open(inode
, file
, seq_ops
);
1810 ftrace_event_set_open(struct inode
*inode
, struct file
*file
)
1812 const struct seq_operations
*seq_ops
= &show_set_event_seq_ops
;
1813 struct trace_array
*tr
= inode
->i_private
;
1816 if (trace_array_get(tr
) < 0)
1819 if ((file
->f_mode
& FMODE_WRITE
) &&
1820 (file
->f_flags
& O_TRUNC
))
1821 ftrace_clear_events(tr
);
1823 ret
= ftrace_event_open(inode
, file
, seq_ops
);
1825 trace_array_put(tr
);
1830 ftrace_event_set_pid_open(struct inode
*inode
, struct file
*file
)
1832 const struct seq_operations
*seq_ops
= &show_set_pid_seq_ops
;
1833 struct trace_array
*tr
= inode
->i_private
;
1836 if (trace_array_get(tr
) < 0)
1839 if ((file
->f_mode
& FMODE_WRITE
) &&
1840 (file
->f_flags
& O_TRUNC
))
1841 ftrace_clear_event_pids(tr
);
1843 ret
= ftrace_event_open(inode
, file
, seq_ops
);
1845 trace_array_put(tr
);
1849 static struct event_subsystem
*
1850 create_new_subsystem(const char *name
)
1852 struct event_subsystem
*system
;
1854 /* need to create new entry */
1855 system
= kmalloc(sizeof(*system
), GFP_KERNEL
);
1859 system
->ref_count
= 1;
1861 /* Only allocate if dynamic (kprobes and modules) */
1862 system
->name
= kstrdup_const(name
, GFP_KERNEL
);
1866 system
->filter
= NULL
;
1868 system
->filter
= kzalloc(sizeof(struct event_filter
), GFP_KERNEL
);
1869 if (!system
->filter
)
1872 list_add(&system
->list
, &event_subsystems
);
1877 kfree_const(system
->name
);
1882 static struct dentry
*
1883 event_subsystem_dir(struct trace_array
*tr
, const char *name
,
1884 struct trace_event_file
*file
, struct dentry
*parent
)
1886 struct trace_subsystem_dir
*dir
;
1887 struct event_subsystem
*system
;
1888 struct dentry
*entry
;
1890 /* First see if we did not already create this dir */
1891 list_for_each_entry(dir
, &tr
->systems
, list
) {
1892 system
= dir
->subsystem
;
1893 if (strcmp(system
->name
, name
) == 0) {
1900 /* Now see if the system itself exists. */
1901 list_for_each_entry(system
, &event_subsystems
, list
) {
1902 if (strcmp(system
->name
, name
) == 0)
1905 /* Reset system variable when not found */
1906 if (&system
->list
== &event_subsystems
)
1909 dir
= kmalloc(sizeof(*dir
), GFP_KERNEL
);
1914 system
= create_new_subsystem(name
);
1918 __get_system(system
);
1920 dir
->entry
= tracefs_create_dir(name
, parent
);
1922 pr_warn("Failed to create system directory %s\n", name
);
1923 __put_system(system
);
1930 dir
->subsystem
= system
;
1933 entry
= tracefs_create_file("filter", 0644, dir
->entry
, dir
,
1934 &ftrace_subsystem_filter_fops
);
1936 kfree(system
->filter
);
1937 system
->filter
= NULL
;
1938 pr_warn("Could not create tracefs '%s/filter' entry\n", name
);
1941 trace_create_file("enable", 0644, dir
->entry
, dir
,
1942 &ftrace_system_enable_fops
);
1944 list_add(&dir
->list
, &tr
->systems
);
1951 /* Only print this message if failed on memory allocation */
1952 if (!dir
|| !system
)
1953 pr_warn("No memory to create event subsystem %s\n", name
);
1958 event_create_dir(struct dentry
*parent
, struct trace_event_file
*file
)
1960 struct trace_event_call
*call
= file
->event_call
;
1961 struct trace_array
*tr
= file
->tr
;
1962 struct list_head
*head
;
1963 struct dentry
*d_events
;
1968 * If the trace point header did not define TRACE_SYSTEM
1969 * then the system would be called "TRACE_SYSTEM".
1971 if (strcmp(call
->class->system
, TRACE_SYSTEM
) != 0) {
1972 d_events
= event_subsystem_dir(tr
, call
->class->system
, file
, parent
);
1978 name
= trace_event_name(call
);
1979 file
->dir
= tracefs_create_dir(name
, d_events
);
1981 pr_warn("Could not create tracefs '%s' directory\n", name
);
1985 if (call
->class->reg
&& !(call
->flags
& TRACE_EVENT_FL_IGNORE_ENABLE
))
1986 trace_create_file("enable", 0644, file
->dir
, file
,
1987 &ftrace_enable_fops
);
1989 #ifdef CONFIG_PERF_EVENTS
1990 if (call
->event
.type
&& call
->class->reg
)
1991 trace_create_file("id", 0444, file
->dir
,
1992 (void *)(long)call
->event
.type
,
1993 &ftrace_event_id_fops
);
1997 * Other events may have the same class. Only update
1998 * the fields if they are not already defined.
2000 head
= trace_get_fields(call
);
2001 if (list_empty(head
)) {
2002 ret
= call
->class->define_fields(call
);
2004 pr_warn("Could not initialize trace point events/%s\n",
2011 * Only event directories that can be enabled should have
2012 * triggers or filters.
2014 if (!(call
->flags
& TRACE_EVENT_FL_IGNORE_ENABLE
)) {
2015 trace_create_file("filter", 0644, file
->dir
, file
,
2016 &ftrace_event_filter_fops
);
2018 trace_create_file("trigger", 0644, file
->dir
, file
,
2019 &event_trigger_fops
);
2022 #ifdef CONFIG_HIST_TRIGGERS
2023 trace_create_file("hist", 0444, file
->dir
, file
,
2026 trace_create_file("format", 0444, file
->dir
, call
,
2027 &ftrace_event_format_fops
);
2032 static void remove_event_from_tracers(struct trace_event_call
*call
)
2034 struct trace_event_file
*file
;
2035 struct trace_array
*tr
;
2037 do_for_each_event_file_safe(tr
, file
) {
2038 if (file
->event_call
!= call
)
2041 remove_event_file_dir(file
);
2043 * The do_for_each_event_file_safe() is
2044 * a double loop. After finding the call for this
2045 * trace_array, we use break to jump to the next
2049 } while_for_each_event_file();
2052 static void event_remove(struct trace_event_call
*call
)
2054 struct trace_array
*tr
;
2055 struct trace_event_file
*file
;
2057 do_for_each_event_file(tr
, file
) {
2058 if (file
->event_call
!= call
)
2061 if (file
->flags
& EVENT_FILE_FL_WAS_ENABLED
)
2062 tr
->clear_trace
= true;
2064 ftrace_event_enable_disable(file
, 0);
2066 * The do_for_each_event_file() is
2067 * a double loop. After finding the call for this
2068 * trace_array, we use break to jump to the next
2072 } while_for_each_event_file();
2074 if (call
->event
.funcs
)
2075 __unregister_trace_event(&call
->event
);
2076 remove_event_from_tracers(call
);
2077 list_del(&call
->list
);
2080 static int event_init(struct trace_event_call
*call
)
2085 name
= trace_event_name(call
);
2089 if (call
->class->raw_init
) {
2090 ret
= call
->class->raw_init(call
);
2091 if (ret
< 0 && ret
!= -ENOSYS
)
2092 pr_warn("Could not initialize trace events/%s\n", name
);
2099 __register_event(struct trace_event_call
*call
, struct module
*mod
)
2103 ret
= event_init(call
);
2107 list_add(&call
->list
, &ftrace_events
);
2113 static char *eval_replace(char *ptr
, struct trace_eval_map
*map
, int len
)
2118 /* Find the length of the eval value as a string */
2119 elen
= snprintf(ptr
, 0, "%ld", map
->eval_value
);
2120 /* Make sure there's enough room to replace the string with the value */
2124 snprintf(ptr
, elen
+ 1, "%ld", map
->eval_value
);
2126 /* Get the rest of the string of ptr */
2127 rlen
= strlen(ptr
+ len
);
2128 memmove(ptr
+ elen
, ptr
+ len
, rlen
);
2129 /* Make sure we end the new string */
2130 ptr
[elen
+ rlen
] = 0;
2135 static void update_event_printk(struct trace_event_call
*call
,
2136 struct trace_eval_map
*map
)
2140 int len
= strlen(map
->eval_string
);
2142 for (ptr
= call
->print_fmt
; *ptr
; ptr
++) {
2156 if (isdigit(*ptr
)) {
2160 /* Check for alpha chars like ULL */
2161 } while (isalnum(*ptr
));
2165 * A number must have some kind of delimiter after
2166 * it, and we can ignore that too.
2170 if (isalpha(*ptr
) || *ptr
== '_') {
2171 if (strncmp(map
->eval_string
, ptr
, len
) == 0 &&
2172 !isalnum(ptr
[len
]) && ptr
[len
] != '_') {
2173 ptr
= eval_replace(ptr
, map
, len
);
2174 /* enum/sizeof string smaller than value */
2175 if (WARN_ON_ONCE(!ptr
))
2178 * No need to decrement here, as eval_replace()
2179 * returns the pointer to the character passed
2180 * the eval, and two evals can not be placed
2181 * back to back without something in between.
2182 * We can skip that something in between.
2189 } while (isalnum(*ptr
) || *ptr
== '_');
2193 * If what comes after this variable is a '.' or
2194 * '->' then we can continue to ignore that string.
2196 if (*ptr
== '.' || (ptr
[0] == '-' && ptr
[1] == '>')) {
2197 ptr
+= *ptr
== '.' ? 1 : 2;
2203 * Once again, we can skip the delimiter that came
2211 void trace_event_eval_update(struct trace_eval_map
**map
, int len
)
2213 struct trace_event_call
*call
, *p
;
2214 const char *last_system
= NULL
;
2219 down_write(&trace_event_sem
);
2220 list_for_each_entry_safe(call
, p
, &ftrace_events
, list
) {
2221 /* events are usually grouped together with systems */
2222 if (!last_system
|| call
->class->system
!= last_system
) {
2225 last_system
= call
->class->system
;
2229 * Since calls are grouped by systems, the likelyhood that the
2230 * next call in the iteration belongs to the same system as the
2231 * previous call is high. As an optimization, we skip seaching
2232 * for a map[] that matches the call's system if the last call
2233 * was from the same system. That's what last_i is for. If the
2234 * call has the same system as the previous call, then last_i
2235 * will be the index of the first map[] that has a matching
2238 for (i
= last_i
; i
< len
; i
++) {
2239 if (call
->class->system
== map
[i
]->system
) {
2240 /* Save the first system if need be */
2245 update_event_printk(call
, map
[i
]);
2249 up_write(&trace_event_sem
);
2252 static struct trace_event_file
*
2253 trace_create_new_event(struct trace_event_call
*call
,
2254 struct trace_array
*tr
)
2256 struct trace_event_file
*file
;
2258 file
= kmem_cache_alloc(file_cachep
, GFP_TRACE
);
2262 file
->event_call
= call
;
2264 atomic_set(&file
->sm_ref
, 0);
2265 atomic_set(&file
->tm_ref
, 0);
2266 INIT_LIST_HEAD(&file
->triggers
);
2267 list_add(&file
->list
, &tr
->events
);
2272 /* Add an event to a trace directory */
2274 __trace_add_new_event(struct trace_event_call
*call
, struct trace_array
*tr
)
2276 struct trace_event_file
*file
;
2278 file
= trace_create_new_event(call
, tr
);
2282 return event_create_dir(tr
->event_dir
, file
);
2286 * Just create a decriptor for early init. A descriptor is required
2287 * for enabling events at boot. We want to enable events before
2288 * the filesystem is initialized.
2291 __trace_early_add_new_event(struct trace_event_call
*call
,
2292 struct trace_array
*tr
)
2294 struct trace_event_file
*file
;
2296 file
= trace_create_new_event(call
, tr
);
2303 struct ftrace_module_file_ops
;
2304 static void __add_event_to_tracers(struct trace_event_call
*call
);
2306 /* Add an additional event_call dynamically */
2307 int trace_add_event_call(struct trace_event_call
*call
)
2310 lockdep_assert_held(&event_mutex
);
2312 mutex_lock(&trace_types_lock
);
2314 ret
= __register_event(call
, NULL
);
2316 __add_event_to_tracers(call
);
2318 mutex_unlock(&trace_types_lock
);
2323 * Must be called under locking of trace_types_lock, event_mutex and
2326 static void __trace_remove_event_call(struct trace_event_call
*call
)
2329 trace_destroy_fields(call
);
2330 free_event_filter(call
->filter
);
2331 call
->filter
= NULL
;
2334 static int probe_remove_event_call(struct trace_event_call
*call
)
2336 struct trace_array
*tr
;
2337 struct trace_event_file
*file
;
2339 #ifdef CONFIG_PERF_EVENTS
2340 if (call
->perf_refcount
)
2343 do_for_each_event_file(tr
, file
) {
2344 if (file
->event_call
!= call
)
2347 * We can't rely on ftrace_event_enable_disable(enable => 0)
2348 * we are going to do, EVENT_FILE_FL_SOFT_MODE can suppress
2349 * TRACE_REG_UNREGISTER.
2351 if (file
->flags
& EVENT_FILE_FL_ENABLED
)
2354 * The do_for_each_event_file_safe() is
2355 * a double loop. After finding the call for this
2356 * trace_array, we use break to jump to the next
2360 } while_for_each_event_file();
2362 __trace_remove_event_call(call
);
2367 /* Remove an event_call */
2368 int trace_remove_event_call(struct trace_event_call
*call
)
2372 lockdep_assert_held(&event_mutex
);
2374 mutex_lock(&trace_types_lock
);
2375 down_write(&trace_event_sem
);
2376 ret
= probe_remove_event_call(call
);
2377 up_write(&trace_event_sem
);
2378 mutex_unlock(&trace_types_lock
);
2383 #define for_each_event(event, start, end) \
2384 for (event = start; \
2385 (unsigned long)event < (unsigned long)end; \
2388 #ifdef CONFIG_MODULES
2390 static void trace_module_add_events(struct module
*mod
)
2392 struct trace_event_call
**call
, **start
, **end
;
2394 if (!mod
->num_trace_events
)
2397 /* Don't add infrastructure for mods without tracepoints */
2398 if (trace_module_has_bad_taint(mod
)) {
2399 pr_err("%s: module has bad taint, not creating trace events\n",
2404 start
= mod
->trace_events
;
2405 end
= mod
->trace_events
+ mod
->num_trace_events
;
2407 for_each_event(call
, start
, end
) {
2408 __register_event(*call
, mod
);
2409 __add_event_to_tracers(*call
);
2413 static void trace_module_remove_events(struct module
*mod
)
2415 struct trace_event_call
*call
, *p
;
2417 down_write(&trace_event_sem
);
2418 list_for_each_entry_safe(call
, p
, &ftrace_events
, list
) {
2419 if (call
->mod
== mod
)
2420 __trace_remove_event_call(call
);
2422 up_write(&trace_event_sem
);
2425 * It is safest to reset the ring buffer if the module being unloaded
2426 * registered any events that were used. The only worry is if
2427 * a new module gets loaded, and takes on the same id as the events
2428 * of this module. When printing out the buffer, traced events left
2429 * over from this module may be passed to the new module events and
2430 * unexpected results may occur.
2432 tracing_reset_all_online_cpus();
2435 static int trace_module_notify(struct notifier_block
*self
,
2436 unsigned long val
, void *data
)
2438 struct module
*mod
= data
;
2440 mutex_lock(&event_mutex
);
2441 mutex_lock(&trace_types_lock
);
2443 case MODULE_STATE_COMING
:
2444 trace_module_add_events(mod
);
2446 case MODULE_STATE_GOING
:
2447 trace_module_remove_events(mod
);
2450 mutex_unlock(&trace_types_lock
);
2451 mutex_unlock(&event_mutex
);
2456 static struct notifier_block trace_module_nb
= {
2457 .notifier_call
= trace_module_notify
,
2458 .priority
= 1, /* higher than trace.c module notify */
2460 #endif /* CONFIG_MODULES */
2462 /* Create a new event directory structure for a trace directory. */
2464 __trace_add_event_dirs(struct trace_array
*tr
)
2466 struct trace_event_call
*call
;
2469 list_for_each_entry(call
, &ftrace_events
, list
) {
2470 ret
= __trace_add_new_event(call
, tr
);
2472 pr_warn("Could not create directory for event %s\n",
2473 trace_event_name(call
));
2477 /* Returns any file that matches the system and event */
2478 struct trace_event_file
*
2479 __find_event_file(struct trace_array
*tr
, const char *system
, const char *event
)
2481 struct trace_event_file
*file
;
2482 struct trace_event_call
*call
;
2485 list_for_each_entry(file
, &tr
->events
, list
) {
2487 call
= file
->event_call
;
2488 name
= trace_event_name(call
);
2490 if (!name
|| !call
->class)
2493 if (strcmp(event
, name
) == 0 &&
2494 strcmp(system
, call
->class->system
) == 0)
2500 /* Returns valid trace event files that match system and event */
2501 struct trace_event_file
*
2502 find_event_file(struct trace_array
*tr
, const char *system
, const char *event
)
2504 struct trace_event_file
*file
;
2506 file
= __find_event_file(tr
, system
, event
);
2507 if (!file
|| !file
->event_call
->class->reg
||
2508 file
->event_call
->flags
& TRACE_EVENT_FL_IGNORE_ENABLE
)
2514 #ifdef CONFIG_DYNAMIC_FTRACE
2517 #define ENABLE_EVENT_STR "enable_event"
2518 #define DISABLE_EVENT_STR "disable_event"
2520 struct event_probe_data
{
2521 struct trace_event_file
*file
;
2522 unsigned long count
;
2527 static void update_event_probe(struct event_probe_data
*data
)
2530 clear_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT
, &data
->file
->flags
);
2532 set_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT
, &data
->file
->flags
);
2536 event_enable_probe(unsigned long ip
, unsigned long parent_ip
,
2537 struct trace_array
*tr
, struct ftrace_probe_ops
*ops
,
2540 struct ftrace_func_mapper
*mapper
= data
;
2541 struct event_probe_data
*edata
;
2544 pdata
= ftrace_func_mapper_find_ip(mapper
, ip
);
2545 if (!pdata
|| !*pdata
)
2549 update_event_probe(edata
);
2553 event_enable_count_probe(unsigned long ip
, unsigned long parent_ip
,
2554 struct trace_array
*tr
, struct ftrace_probe_ops
*ops
,
2557 struct ftrace_func_mapper
*mapper
= data
;
2558 struct event_probe_data
*edata
;
2561 pdata
= ftrace_func_mapper_find_ip(mapper
, ip
);
2562 if (!pdata
|| !*pdata
)
2570 /* Skip if the event is in a state we want to switch to */
2571 if (edata
->enable
== !(edata
->file
->flags
& EVENT_FILE_FL_SOFT_DISABLED
))
2574 if (edata
->count
!= -1)
2577 update_event_probe(edata
);
2581 event_enable_print(struct seq_file
*m
, unsigned long ip
,
2582 struct ftrace_probe_ops
*ops
, void *data
)
2584 struct ftrace_func_mapper
*mapper
= data
;
2585 struct event_probe_data
*edata
;
2588 pdata
= ftrace_func_mapper_find_ip(mapper
, ip
);
2590 if (WARN_ON_ONCE(!pdata
|| !*pdata
))
2595 seq_printf(m
, "%ps:", (void *)ip
);
2597 seq_printf(m
, "%s:%s:%s",
2598 edata
->enable
? ENABLE_EVENT_STR
: DISABLE_EVENT_STR
,
2599 edata
->file
->event_call
->class->system
,
2600 trace_event_name(edata
->file
->event_call
));
2602 if (edata
->count
== -1)
2603 seq_puts(m
, ":unlimited\n");
2605 seq_printf(m
, ":count=%ld\n", edata
->count
);
2611 event_enable_init(struct ftrace_probe_ops
*ops
, struct trace_array
*tr
,
2612 unsigned long ip
, void *init_data
, void **data
)
2614 struct ftrace_func_mapper
*mapper
= *data
;
2615 struct event_probe_data
*edata
= init_data
;
2619 mapper
= allocate_ftrace_func_mapper();
2625 ret
= ftrace_func_mapper_add_ip(mapper
, ip
, edata
);
2634 static int free_probe_data(void *data
)
2636 struct event_probe_data
*edata
= data
;
2640 /* Remove the SOFT_MODE flag */
2641 __ftrace_event_enable_disable(edata
->file
, 0, 1);
2642 module_put(edata
->file
->event_call
->mod
);
2649 event_enable_free(struct ftrace_probe_ops
*ops
, struct trace_array
*tr
,
2650 unsigned long ip
, void *data
)
2652 struct ftrace_func_mapper
*mapper
= data
;
2653 struct event_probe_data
*edata
;
2658 free_ftrace_func_mapper(mapper
, free_probe_data
);
2662 edata
= ftrace_func_mapper_remove_ip(mapper
, ip
);
2664 if (WARN_ON_ONCE(!edata
))
2667 if (WARN_ON_ONCE(edata
->ref
<= 0))
2670 free_probe_data(edata
);
2673 static struct ftrace_probe_ops event_enable_probe_ops
= {
2674 .func
= event_enable_probe
,
2675 .print
= event_enable_print
,
2676 .init
= event_enable_init
,
2677 .free
= event_enable_free
,
2680 static struct ftrace_probe_ops event_enable_count_probe_ops
= {
2681 .func
= event_enable_count_probe
,
2682 .print
= event_enable_print
,
2683 .init
= event_enable_init
,
2684 .free
= event_enable_free
,
2687 static struct ftrace_probe_ops event_disable_probe_ops
= {
2688 .func
= event_enable_probe
,
2689 .print
= event_enable_print
,
2690 .init
= event_enable_init
,
2691 .free
= event_enable_free
,
2694 static struct ftrace_probe_ops event_disable_count_probe_ops
= {
2695 .func
= event_enable_count_probe
,
2696 .print
= event_enable_print
,
2697 .init
= event_enable_init
,
2698 .free
= event_enable_free
,
2702 event_enable_func(struct trace_array
*tr
, struct ftrace_hash
*hash
,
2703 char *glob
, char *cmd
, char *param
, int enabled
)
2705 struct trace_event_file
*file
;
2706 struct ftrace_probe_ops
*ops
;
2707 struct event_probe_data
*data
;
2717 /* hash funcs only work with set_ftrace_filter */
2718 if (!enabled
|| !param
)
2721 system
= strsep(¶m
, ":");
2725 event
= strsep(¶m
, ":");
2727 mutex_lock(&event_mutex
);
2730 file
= find_event_file(tr
, system
, event
);
2734 enable
= strcmp(cmd
, ENABLE_EVENT_STR
) == 0;
2737 ops
= param
? &event_enable_count_probe_ops
: &event_enable_probe_ops
;
2739 ops
= param
? &event_disable_count_probe_ops
: &event_disable_probe_ops
;
2741 if (glob
[0] == '!') {
2742 ret
= unregister_ftrace_function_probe_func(glob
+1, tr
, ops
);
2748 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
2752 data
->enable
= enable
;
2759 number
= strsep(¶m
, ":");
2762 if (!strlen(number
))
2766 * We use the callback data field (which is a pointer)
2769 ret
= kstrtoul(number
, 0, &data
->count
);
2774 /* Don't let event modules unload while probe registered */
2775 ret
= try_module_get(file
->event_call
->mod
);
2781 ret
= __ftrace_event_enable_disable(file
, 1, 1);
2785 ret
= register_ftrace_function_probe(glob
, tr
, ops
, data
);
2787 * The above returns on success the # of functions enabled,
2788 * but if it didn't find any functions it returns zero.
2789 * Consider no functions a failure too.
2796 /* Just return zero, not the number of enabled functions */
2799 mutex_unlock(&event_mutex
);
2803 __ftrace_event_enable_disable(file
, 0, 1);
2805 module_put(file
->event_call
->mod
);
2811 static struct ftrace_func_command event_enable_cmd
= {
2812 .name
= ENABLE_EVENT_STR
,
2813 .func
= event_enable_func
,
2816 static struct ftrace_func_command event_disable_cmd
= {
2817 .name
= DISABLE_EVENT_STR
,
2818 .func
= event_enable_func
,
2821 static __init
int register_event_cmds(void)
2825 ret
= register_ftrace_command(&event_enable_cmd
);
2826 if (WARN_ON(ret
< 0))
2828 ret
= register_ftrace_command(&event_disable_cmd
);
2829 if (WARN_ON(ret
< 0))
2830 unregister_ftrace_command(&event_enable_cmd
);
2834 static inline int register_event_cmds(void) { return 0; }
2835 #endif /* CONFIG_DYNAMIC_FTRACE */
2838 * The top level array has already had its trace_event_file
2839 * descriptors created in order to allow for early events to
2840 * be recorded. This function is called after the tracefs has been
2841 * initialized, and we now have to create the files associated
2845 __trace_early_add_event_dirs(struct trace_array
*tr
)
2847 struct trace_event_file
*file
;
2851 list_for_each_entry(file
, &tr
->events
, list
) {
2852 ret
= event_create_dir(tr
->event_dir
, file
);
2854 pr_warn("Could not create directory for event %s\n",
2855 trace_event_name(file
->event_call
));
2860 * For early boot up, the top trace array requires to have
2861 * a list of events that can be enabled. This must be done before
2862 * the filesystem is set up in order to allow events to be traced
2866 __trace_early_add_events(struct trace_array
*tr
)
2868 struct trace_event_call
*call
;
2871 list_for_each_entry(call
, &ftrace_events
, list
) {
2872 /* Early boot up should not have any modules loaded */
2873 if (WARN_ON_ONCE(call
->mod
))
2876 ret
= __trace_early_add_new_event(call
, tr
);
2878 pr_warn("Could not create early event %s\n",
2879 trace_event_name(call
));
2883 /* Remove the event directory structure for a trace directory. */
2885 __trace_remove_event_dirs(struct trace_array
*tr
)
2887 struct trace_event_file
*file
, *next
;
2889 list_for_each_entry_safe(file
, next
, &tr
->events
, list
)
2890 remove_event_file_dir(file
);
2893 static void __add_event_to_tracers(struct trace_event_call
*call
)
2895 struct trace_array
*tr
;
2897 list_for_each_entry(tr
, &ftrace_trace_arrays
, list
)
2898 __trace_add_new_event(call
, tr
);
2901 extern struct trace_event_call
*__start_ftrace_events
[];
2902 extern struct trace_event_call
*__stop_ftrace_events
[];
2904 static char bootup_event_buf
[COMMAND_LINE_SIZE
] __initdata
;
2906 static __init
int setup_trace_event(char *str
)
2908 strlcpy(bootup_event_buf
, str
, COMMAND_LINE_SIZE
);
2909 ring_buffer_expanded
= true;
2910 tracing_selftest_disabled
= true;
2914 __setup("trace_event=", setup_trace_event
);
2916 /* Expects to have event_mutex held when called */
2918 create_event_toplevel_files(struct dentry
*parent
, struct trace_array
*tr
)
2920 struct dentry
*d_events
;
2921 struct dentry
*entry
;
2923 entry
= tracefs_create_file("set_event", 0644, parent
,
2924 tr
, &ftrace_set_event_fops
);
2926 pr_warn("Could not create tracefs 'set_event' entry\n");
2930 d_events
= tracefs_create_dir("events", parent
);
2932 pr_warn("Could not create tracefs 'events' directory\n");
2936 entry
= trace_create_file("enable", 0644, d_events
,
2937 tr
, &ftrace_tr_enable_fops
);
2939 pr_warn("Could not create tracefs 'enable' entry\n");
2943 /* There are not as crucial, just warn if they are not created */
2945 entry
= tracefs_create_file("set_event_pid", 0644, parent
,
2946 tr
, &ftrace_set_event_pid_fops
);
2948 pr_warn("Could not create tracefs 'set_event_pid' entry\n");
2950 /* ring buffer internal formats */
2951 entry
= trace_create_file("header_page", 0444, d_events
,
2952 ring_buffer_print_page_header
,
2953 &ftrace_show_header_fops
);
2955 pr_warn("Could not create tracefs 'header_page' entry\n");
2957 entry
= trace_create_file("header_event", 0444, d_events
,
2958 ring_buffer_print_entry_header
,
2959 &ftrace_show_header_fops
);
2961 pr_warn("Could not create tracefs 'header_event' entry\n");
2963 tr
->event_dir
= d_events
;
2969 * event_trace_add_tracer - add a instance of a trace_array to events
2970 * @parent: The parent dentry to place the files/directories for events in
2971 * @tr: The trace array associated with these events
2973 * When a new instance is created, it needs to set up its events
2974 * directory, as well as other files associated with events. It also
2975 * creates the event hierachry in the @parent/events directory.
2977 * Returns 0 on success.
2979 * Must be called with event_mutex held.
2981 int event_trace_add_tracer(struct dentry
*parent
, struct trace_array
*tr
)
2985 lockdep_assert_held(&event_mutex
);
2987 ret
= create_event_toplevel_files(parent
, tr
);
2991 down_write(&trace_event_sem
);
2992 __trace_add_event_dirs(tr
);
2993 up_write(&trace_event_sem
);
3000 * The top trace array already had its file descriptors created.
3001 * Now the files themselves need to be created.
3004 early_event_add_tracer(struct dentry
*parent
, struct trace_array
*tr
)
3008 mutex_lock(&event_mutex
);
3010 ret
= create_event_toplevel_files(parent
, tr
);
3014 down_write(&trace_event_sem
);
3015 __trace_early_add_event_dirs(tr
);
3016 up_write(&trace_event_sem
);
3019 mutex_unlock(&event_mutex
);
3024 /* Must be called with event_mutex held */
3025 int event_trace_del_tracer(struct trace_array
*tr
)
3027 lockdep_assert_held(&event_mutex
);
3029 /* Disable any event triggers and associated soft-disabled events */
3030 clear_event_triggers(tr
);
3032 /* Clear the pid list */
3033 __ftrace_clear_event_pids(tr
);
3035 /* Disable any running events */
3036 __ftrace_set_clr_event_nolock(tr
, NULL
, NULL
, NULL
, 0);
3038 /* Make sure no more events are being executed */
3039 tracepoint_synchronize_unregister();
3041 down_write(&trace_event_sem
);
3042 __trace_remove_event_dirs(tr
);
3043 tracefs_remove_recursive(tr
->event_dir
);
3044 up_write(&trace_event_sem
);
3046 tr
->event_dir
= NULL
;
3051 static __init
int event_trace_memsetup(void)
3053 field_cachep
= KMEM_CACHE(ftrace_event_field
, SLAB_PANIC
);
3054 file_cachep
= KMEM_CACHE(trace_event_file
, SLAB_PANIC
);
3059 early_enable_events(struct trace_array
*tr
, bool disable_first
)
3061 char *buf
= bootup_event_buf
;
3066 token
= strsep(&buf
, ",");
3072 /* Restarting syscalls requires that we stop them first */
3074 ftrace_set_clr_event(tr
, token
, 0);
3076 ret
= ftrace_set_clr_event(tr
, token
, 1);
3078 pr_warn("Failed to enable trace event: %s\n", token
);
3081 /* Put back the comma to allow this to be called again */
3087 static __init
int event_trace_enable(void)
3089 struct trace_array
*tr
= top_trace_array();
3090 struct trace_event_call
**iter
, *call
;
3096 for_each_event(iter
, __start_ftrace_events
, __stop_ftrace_events
) {
3099 ret
= event_init(call
);
3101 list_add(&call
->list
, &ftrace_events
);
3105 * We need the top trace array to have a working set of trace
3106 * points at early init, before the debug files and directories
3107 * are created. Create the file entries now, and attach them
3108 * to the actual file dentries later.
3110 __trace_early_add_events(tr
);
3112 early_enable_events(tr
, false);
3114 trace_printk_start_comm();
3116 register_event_cmds();
3118 register_trigger_cmds();
3124 * event_trace_enable() is called from trace_event_init() first to
3125 * initialize events and perhaps start any events that are on the
3126 * command line. Unfortunately, there are some events that will not
3127 * start this early, like the system call tracepoints that need
3128 * to set the TIF_SYSCALL_TRACEPOINT flag of pid 1. But event_trace_enable()
3129 * is called before pid 1 starts, and this flag is never set, making
3130 * the syscall tracepoint never get reached, but the event is enabled
3131 * regardless (and not doing anything).
3133 static __init
int event_trace_enable_again(void)
3135 struct trace_array
*tr
;
3137 tr
= top_trace_array();
3141 early_enable_events(tr
, true);
3146 early_initcall(event_trace_enable_again
);
3148 __init
int event_trace_init(void)
3150 struct trace_array
*tr
;
3151 struct dentry
*d_tracer
;
3152 struct dentry
*entry
;
3155 tr
= top_trace_array();
3159 d_tracer
= tracing_init_dentry();
3160 if (IS_ERR(d_tracer
))
3163 entry
= tracefs_create_file("available_events", 0444, d_tracer
,
3164 tr
, &ftrace_avail_fops
);
3166 pr_warn("Could not create tracefs 'available_events' entry\n");
3168 if (trace_define_generic_fields())
3169 pr_warn("tracing: Failed to allocated generic fields");
3171 if (trace_define_common_fields())
3172 pr_warn("tracing: Failed to allocate common fields");
3174 ret
= early_event_add_tracer(d_tracer
, tr
);
3178 #ifdef CONFIG_MODULES
3179 ret
= register_module_notifier(&trace_module_nb
);
3181 pr_warn("Failed to register trace events module notifier\n");
3186 void __init
trace_event_init(void)
3188 event_trace_memsetup();
3189 init_ftrace_syscalls();
3190 event_trace_enable();
3193 #ifdef CONFIG_FTRACE_STARTUP_TEST
3195 static DEFINE_SPINLOCK(test_spinlock
);
3196 static DEFINE_SPINLOCK(test_spinlock_irq
);
3197 static DEFINE_MUTEX(test_mutex
);
3199 static __init
void test_work(struct work_struct
*dummy
)
3201 spin_lock(&test_spinlock
);
3202 spin_lock_irq(&test_spinlock_irq
);
3204 spin_unlock_irq(&test_spinlock_irq
);
3205 spin_unlock(&test_spinlock
);
3207 mutex_lock(&test_mutex
);
3209 mutex_unlock(&test_mutex
);
3212 static __init
int event_test_thread(void *unused
)
3216 test_malloc
= kmalloc(1234, GFP_KERNEL
);
3218 pr_info("failed to kmalloc\n");
3220 schedule_on_each_cpu(test_work
);
3224 set_current_state(TASK_INTERRUPTIBLE
);
3225 while (!kthread_should_stop()) {
3227 set_current_state(TASK_INTERRUPTIBLE
);
3229 __set_current_state(TASK_RUNNING
);
3235 * Do various things that may trigger events.
3237 static __init
void event_test_stuff(void)
3239 struct task_struct
*test_thread
;
3241 test_thread
= kthread_run(event_test_thread
, NULL
, "test-events");
3243 kthread_stop(test_thread
);
3247 * For every trace event defined, we will test each trace point separately,
3248 * and then by groups, and finally all trace points.
3250 static __init
void event_trace_self_tests(void)
3252 struct trace_subsystem_dir
*dir
;
3253 struct trace_event_file
*file
;
3254 struct trace_event_call
*call
;
3255 struct event_subsystem
*system
;
3256 struct trace_array
*tr
;
3259 tr
= top_trace_array();
3263 pr_info("Running tests on trace events:\n");
3265 list_for_each_entry(file
, &tr
->events
, list
) {
3267 call
= file
->event_call
;
3269 /* Only test those that have a probe */
3270 if (!call
->class || !call
->class->probe
)
3274 * Testing syscall events here is pretty useless, but
3275 * we still do it if configured. But this is time consuming.
3276 * What we really need is a user thread to perform the
3277 * syscalls as we test.
3279 #ifndef CONFIG_EVENT_TRACE_TEST_SYSCALLS
3280 if (call
->class->system
&&
3281 strcmp(call
->class->system
, "syscalls") == 0)
3285 pr_info("Testing event %s: ", trace_event_name(call
));
3288 * If an event is already enabled, someone is using
3289 * it and the self test should not be on.
3291 if (file
->flags
& EVENT_FILE_FL_ENABLED
) {
3292 pr_warn("Enabled event during self test!\n");
3297 ftrace_event_enable_disable(file
, 1);
3299 ftrace_event_enable_disable(file
, 0);
3304 /* Now test at the sub system level */
3306 pr_info("Running tests on trace event systems:\n");
3308 list_for_each_entry(dir
, &tr
->systems
, list
) {
3310 system
= dir
->subsystem
;
3312 /* the ftrace system is special, skip it */
3313 if (strcmp(system
->name
, "ftrace") == 0)
3316 pr_info("Testing event system %s: ", system
->name
);
3318 ret
= __ftrace_set_clr_event(tr
, NULL
, system
->name
, NULL
, 1);
3319 if (WARN_ON_ONCE(ret
)) {
3320 pr_warn("error enabling system %s\n",
3327 ret
= __ftrace_set_clr_event(tr
, NULL
, system
->name
, NULL
, 0);
3328 if (WARN_ON_ONCE(ret
)) {
3329 pr_warn("error disabling system %s\n",
3337 /* Test with all events enabled */
3339 pr_info("Running tests on all trace events:\n");
3340 pr_info("Testing all events: ");
3342 ret
= __ftrace_set_clr_event(tr
, NULL
, NULL
, NULL
, 1);
3343 if (WARN_ON_ONCE(ret
)) {
3344 pr_warn("error enabling all events\n");
3351 ret
= __ftrace_set_clr_event(tr
, NULL
, NULL
, NULL
, 0);
3352 if (WARN_ON_ONCE(ret
)) {
3353 pr_warn("error disabling all events\n");
3360 #ifdef CONFIG_FUNCTION_TRACER
3362 static DEFINE_PER_CPU(atomic_t
, ftrace_test_event_disable
);
3364 static struct trace_event_file event_trace_file __initdata
;
3367 function_test_events_call(unsigned long ip
, unsigned long parent_ip
,
3368 struct ftrace_ops
*op
, struct pt_regs
*pt_regs
)
3370 struct ring_buffer_event
*event
;
3371 struct ring_buffer
*buffer
;
3372 struct ftrace_entry
*entry
;
3373 unsigned long flags
;
3378 pc
= preempt_count();
3379 preempt_disable_notrace();
3380 cpu
= raw_smp_processor_id();
3381 disabled
= atomic_inc_return(&per_cpu(ftrace_test_event_disable
, cpu
));
3386 local_save_flags(flags
);
3388 event
= trace_event_buffer_lock_reserve(&buffer
, &event_trace_file
,
3389 TRACE_FN
, sizeof(*entry
),
3393 entry
= ring_buffer_event_data(event
);
3395 entry
->parent_ip
= parent_ip
;
3397 event_trigger_unlock_commit(&event_trace_file
, buffer
, event
,
3400 atomic_dec(&per_cpu(ftrace_test_event_disable
, cpu
));
3401 preempt_enable_notrace();
3404 static struct ftrace_ops trace_ops __initdata
=
3406 .func
= function_test_events_call
,
3407 .flags
= FTRACE_OPS_FL_RECURSION_SAFE
,
3410 static __init
void event_trace_self_test_with_function(void)
3414 event_trace_file
.tr
= top_trace_array();
3415 if (WARN_ON(!event_trace_file
.tr
))
3418 ret
= register_ftrace_function(&trace_ops
);
3419 if (WARN_ON(ret
< 0)) {
3420 pr_info("Failed to enable function tracer for event tests\n");
3423 pr_info("Running tests again, along with the function tracer\n");
3424 event_trace_self_tests();
3425 unregister_ftrace_function(&trace_ops
);
3428 static __init
void event_trace_self_test_with_function(void)
3433 static __init
int event_trace_self_tests_init(void)
3435 if (!tracing_selftest_disabled
) {
3436 event_trace_self_tests();
3437 event_trace_self_test_with_function();
3443 late_initcall(event_trace_self_tests_init
);