4 * Copyright (C) 2008 Red Hat Inc, Steven Rostedt <srostedt@redhat.com>
6 * - Added format output of fields of the trace point.
7 * This was based off of work by Tom Zanussi <tzanussi@gmail.com>.
11 #define pr_fmt(fmt) fmt
13 #include <linux/workqueue.h>
14 #include <linux/spinlock.h>
15 #include <linux/kthread.h>
16 #include <linux/tracefs.h>
17 #include <linux/uaccess.h>
18 #include <linux/bsearch.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
);
207 int trace_event_raw_init(struct trace_event_call
*call
)
211 id
= register_trace_event(&call
->event
);
217 EXPORT_SYMBOL_GPL(trace_event_raw_init
);
219 bool trace_event_ignore_this_pid(struct trace_event_file
*trace_file
)
221 struct trace_array
*tr
= trace_file
->tr
;
222 struct trace_array_cpu
*data
;
223 struct trace_pid_list
*pid_list
;
225 pid_list
= rcu_dereference_sched(tr
->filtered_pids
);
229 data
= this_cpu_ptr(tr
->trace_buffer
.data
);
231 return data
->ignore_pid
;
233 EXPORT_SYMBOL_GPL(trace_event_ignore_this_pid
);
235 void *trace_event_buffer_reserve(struct trace_event_buffer
*fbuffer
,
236 struct trace_event_file
*trace_file
,
239 struct trace_event_call
*event_call
= trace_file
->event_call
;
241 if ((trace_file
->flags
& EVENT_FILE_FL_PID_FILTER
) &&
242 trace_event_ignore_this_pid(trace_file
))
245 local_save_flags(fbuffer
->flags
);
246 fbuffer
->pc
= preempt_count();
247 fbuffer
->trace_file
= trace_file
;
250 trace_event_buffer_lock_reserve(&fbuffer
->buffer
, trace_file
,
251 event_call
->event
.type
, len
,
252 fbuffer
->flags
, fbuffer
->pc
);
256 fbuffer
->entry
= ring_buffer_event_data(fbuffer
->event
);
257 return fbuffer
->entry
;
259 EXPORT_SYMBOL_GPL(trace_event_buffer_reserve
);
261 static DEFINE_SPINLOCK(tracepoint_iter_lock
);
263 static void output_printk(struct trace_event_buffer
*fbuffer
)
265 struct trace_event_call
*event_call
;
266 struct trace_event
*event
;
268 struct trace_iterator
*iter
= tracepoint_print_iter
;
273 event_call
= fbuffer
->trace_file
->event_call
;
274 if (!event_call
|| !event_call
->event
.funcs
||
275 !event_call
->event
.funcs
->trace
)
278 event
= &fbuffer
->trace_file
->event_call
->event
;
280 spin_lock_irqsave(&tracepoint_iter_lock
, flags
);
281 trace_seq_init(&iter
->seq
);
282 iter
->ent
= fbuffer
->entry
;
283 event_call
->event
.funcs
->trace(iter
, 0, event
);
284 trace_seq_putc(&iter
->seq
, 0);
285 printk("%s", iter
->seq
.buffer
);
287 spin_unlock_irqrestore(&tracepoint_iter_lock
, flags
);
290 void trace_event_buffer_commit(struct trace_event_buffer
*fbuffer
)
292 if (tracepoint_printk
)
293 output_printk(fbuffer
);
295 event_trigger_unlock_commit(fbuffer
->trace_file
, fbuffer
->buffer
,
296 fbuffer
->event
, fbuffer
->entry
,
297 fbuffer
->flags
, fbuffer
->pc
);
299 EXPORT_SYMBOL_GPL(trace_event_buffer_commit
);
301 int trace_event_reg(struct trace_event_call
*call
,
302 enum trace_reg type
, void *data
)
304 struct trace_event_file
*file
= data
;
306 WARN_ON(!(call
->flags
& TRACE_EVENT_FL_TRACEPOINT
));
308 case TRACE_REG_REGISTER
:
309 return tracepoint_probe_register(call
->tp
,
312 case TRACE_REG_UNREGISTER
:
313 tracepoint_probe_unregister(call
->tp
,
318 #ifdef CONFIG_PERF_EVENTS
319 case TRACE_REG_PERF_REGISTER
:
320 return tracepoint_probe_register(call
->tp
,
321 call
->class->perf_probe
,
323 case TRACE_REG_PERF_UNREGISTER
:
324 tracepoint_probe_unregister(call
->tp
,
325 call
->class->perf_probe
,
328 case TRACE_REG_PERF_OPEN
:
329 case TRACE_REG_PERF_CLOSE
:
330 case TRACE_REG_PERF_ADD
:
331 case TRACE_REG_PERF_DEL
:
337 EXPORT_SYMBOL_GPL(trace_event_reg
);
339 void trace_event_enable_cmd_record(bool enable
)
341 struct trace_event_file
*file
;
342 struct trace_array
*tr
;
344 mutex_lock(&event_mutex
);
345 do_for_each_event_file(tr
, file
) {
347 if (!(file
->flags
& EVENT_FILE_FL_ENABLED
))
351 tracing_start_cmdline_record();
352 set_bit(EVENT_FILE_FL_RECORDED_CMD_BIT
, &file
->flags
);
354 tracing_stop_cmdline_record();
355 clear_bit(EVENT_FILE_FL_RECORDED_CMD_BIT
, &file
->flags
);
357 } while_for_each_event_file();
358 mutex_unlock(&event_mutex
);
361 static int __ftrace_event_enable_disable(struct trace_event_file
*file
,
362 int enable
, int soft_disable
)
364 struct trace_event_call
*call
= file
->event_call
;
365 struct trace_array
*tr
= file
->tr
;
372 * When soft_disable is set and enable is cleared, the sm_ref
373 * reference counter is decremented. If it reaches 0, we want
374 * to clear the SOFT_DISABLED flag but leave the event in the
375 * state that it was. That is, if the event was enabled and
376 * SOFT_DISABLED isn't set, then do nothing. But if SOFT_DISABLED
377 * is set we do not want the event to be enabled before we
380 * When soft_disable is not set but the SOFT_MODE flag is,
381 * we do nothing. Do not disable the tracepoint, otherwise
382 * "soft enable"s (clearing the SOFT_DISABLED bit) wont work.
385 if (atomic_dec_return(&file
->sm_ref
) > 0)
387 disable
= file
->flags
& EVENT_FILE_FL_SOFT_DISABLED
;
388 clear_bit(EVENT_FILE_FL_SOFT_MODE_BIT
, &file
->flags
);
390 disable
= !(file
->flags
& EVENT_FILE_FL_SOFT_MODE
);
392 if (disable
&& (file
->flags
& EVENT_FILE_FL_ENABLED
)) {
393 clear_bit(EVENT_FILE_FL_ENABLED_BIT
, &file
->flags
);
394 if (file
->flags
& EVENT_FILE_FL_RECORDED_CMD
) {
395 tracing_stop_cmdline_record();
396 clear_bit(EVENT_FILE_FL_RECORDED_CMD_BIT
, &file
->flags
);
398 call
->class->reg(call
, TRACE_REG_UNREGISTER
, file
);
400 /* If in SOFT_MODE, just set the SOFT_DISABLE_BIT, else clear it */
401 if (file
->flags
& EVENT_FILE_FL_SOFT_MODE
)
402 set_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT
, &file
->flags
);
404 clear_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT
, &file
->flags
);
408 * When soft_disable is set and enable is set, we want to
409 * register the tracepoint for the event, but leave the event
410 * as is. That means, if the event was already enabled, we do
411 * nothing (but set SOFT_MODE). If the event is disabled, we
412 * set SOFT_DISABLED before enabling the event tracepoint, so
413 * it still seems to be disabled.
416 clear_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT
, &file
->flags
);
418 if (atomic_inc_return(&file
->sm_ref
) > 1)
420 set_bit(EVENT_FILE_FL_SOFT_MODE_BIT
, &file
->flags
);
423 if (!(file
->flags
& EVENT_FILE_FL_ENABLED
)) {
425 /* Keep the event disabled, when going to SOFT_MODE. */
427 set_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT
, &file
->flags
);
429 if (tr
->trace_flags
& TRACE_ITER_RECORD_CMD
) {
430 tracing_start_cmdline_record();
431 set_bit(EVENT_FILE_FL_RECORDED_CMD_BIT
, &file
->flags
);
433 ret
= call
->class->reg(call
, TRACE_REG_REGISTER
, file
);
435 tracing_stop_cmdline_record();
436 pr_info("event trace: Could not enable event "
437 "%s\n", trace_event_name(call
));
440 set_bit(EVENT_FILE_FL_ENABLED_BIT
, &file
->flags
);
442 /* WAS_ENABLED gets set but never cleared. */
443 call
->flags
|= TRACE_EVENT_FL_WAS_ENABLED
;
451 int trace_event_enable_disable(struct trace_event_file
*file
,
452 int enable
, int soft_disable
)
454 return __ftrace_event_enable_disable(file
, enable
, soft_disable
);
457 static int ftrace_event_enable_disable(struct trace_event_file
*file
,
460 return __ftrace_event_enable_disable(file
, enable
, 0);
463 static void ftrace_clear_events(struct trace_array
*tr
)
465 struct trace_event_file
*file
;
467 mutex_lock(&event_mutex
);
468 list_for_each_entry(file
, &tr
->events
, list
) {
469 ftrace_event_enable_disable(file
, 0);
471 mutex_unlock(&event_mutex
);
474 static int cmp_pid(const void *key
, const void *elt
)
476 const pid_t
*search_pid
= key
;
477 const pid_t
*pid
= elt
;
479 if (*search_pid
== *pid
)
481 if (*search_pid
< *pid
)
487 check_ignore_pid(struct trace_pid_list
*filtered_pids
, struct task_struct
*task
)
493 * Return false, because if filtered_pids does not exist,
494 * all pids are good to trace.
499 search_pid
= task
->pid
;
501 pid
= bsearch(&search_pid
, filtered_pids
->pids
,
502 filtered_pids
->nr_pids
, sizeof(pid_t
),
511 event_filter_pid_sched_switch_probe_pre(void *data
, bool preempt
,
512 struct task_struct
*prev
, struct task_struct
*next
)
514 struct trace_array
*tr
= data
;
515 struct trace_pid_list
*pid_list
;
517 pid_list
= rcu_dereference_sched(tr
->filtered_pids
);
519 this_cpu_write(tr
->trace_buffer
.data
->ignore_pid
,
520 check_ignore_pid(pid_list
, prev
) &&
521 check_ignore_pid(pid_list
, next
));
525 event_filter_pid_sched_switch_probe_post(void *data
, bool preempt
,
526 struct task_struct
*prev
, struct task_struct
*next
)
528 struct trace_array
*tr
= data
;
529 struct trace_pid_list
*pid_list
;
531 pid_list
= rcu_dereference_sched(tr
->filtered_pids
);
533 this_cpu_write(tr
->trace_buffer
.data
->ignore_pid
,
534 check_ignore_pid(pid_list
, next
));
538 event_filter_pid_sched_wakeup_probe_pre(void *data
, struct task_struct
*task
)
540 struct trace_array
*tr
= data
;
541 struct trace_pid_list
*pid_list
;
543 /* Nothing to do if we are already tracing */
544 if (!this_cpu_read(tr
->trace_buffer
.data
->ignore_pid
))
547 pid_list
= rcu_dereference_sched(tr
->filtered_pids
);
549 this_cpu_write(tr
->trace_buffer
.data
->ignore_pid
,
550 check_ignore_pid(pid_list
, task
));
554 event_filter_pid_sched_wakeup_probe_post(void *data
, struct task_struct
*task
)
556 struct trace_array
*tr
= data
;
557 struct trace_pid_list
*pid_list
;
559 /* Nothing to do if we are not tracing */
560 if (this_cpu_read(tr
->trace_buffer
.data
->ignore_pid
))
563 pid_list
= rcu_dereference_sched(tr
->filtered_pids
);
565 /* Set tracing if current is enabled */
566 this_cpu_write(tr
->trace_buffer
.data
->ignore_pid
,
567 check_ignore_pid(pid_list
, current
));
570 static void __ftrace_clear_event_pids(struct trace_array
*tr
)
572 struct trace_pid_list
*pid_list
;
573 struct trace_event_file
*file
;
576 pid_list
= rcu_dereference_protected(tr
->filtered_pids
,
577 lockdep_is_held(&event_mutex
));
581 unregister_trace_sched_switch(event_filter_pid_sched_switch_probe_pre
, tr
);
582 unregister_trace_sched_switch(event_filter_pid_sched_switch_probe_post
, tr
);
584 unregister_trace_sched_wakeup(event_filter_pid_sched_wakeup_probe_pre
, tr
);
585 unregister_trace_sched_wakeup(event_filter_pid_sched_wakeup_probe_post
, tr
);
587 unregister_trace_sched_wakeup_new(event_filter_pid_sched_wakeup_probe_pre
, tr
);
588 unregister_trace_sched_wakeup_new(event_filter_pid_sched_wakeup_probe_post
, tr
);
590 unregister_trace_sched_waking(event_filter_pid_sched_wakeup_probe_pre
, tr
);
591 unregister_trace_sched_waking(event_filter_pid_sched_wakeup_probe_post
, tr
);
593 list_for_each_entry(file
, &tr
->events
, list
) {
594 clear_bit(EVENT_FILE_FL_PID_FILTER_BIT
, &file
->flags
);
597 for_each_possible_cpu(cpu
)
598 per_cpu_ptr(tr
->trace_buffer
.data
, cpu
)->ignore_pid
= false;
600 rcu_assign_pointer(tr
->filtered_pids
, NULL
);
602 /* Wait till all users are no longer using pid filtering */
605 free_pages((unsigned long)pid_list
->pids
, pid_list
->order
);
609 static void ftrace_clear_event_pids(struct trace_array
*tr
)
611 mutex_lock(&event_mutex
);
612 __ftrace_clear_event_pids(tr
);
613 mutex_unlock(&event_mutex
);
616 static void __put_system(struct event_subsystem
*system
)
618 struct event_filter
*filter
= system
->filter
;
620 WARN_ON_ONCE(system_refcount(system
) == 0);
621 if (system_refcount_dec(system
))
624 list_del(&system
->list
);
627 kfree(filter
->filter_string
);
630 kfree_const(system
->name
);
634 static void __get_system(struct event_subsystem
*system
)
636 WARN_ON_ONCE(system_refcount(system
) == 0);
637 system_refcount_inc(system
);
640 static void __get_system_dir(struct trace_subsystem_dir
*dir
)
642 WARN_ON_ONCE(dir
->ref_count
== 0);
644 __get_system(dir
->subsystem
);
647 static void __put_system_dir(struct trace_subsystem_dir
*dir
)
649 WARN_ON_ONCE(dir
->ref_count
== 0);
650 /* If the subsystem is about to be freed, the dir must be too */
651 WARN_ON_ONCE(system_refcount(dir
->subsystem
) == 1 && dir
->ref_count
!= 1);
653 __put_system(dir
->subsystem
);
654 if (!--dir
->ref_count
)
658 static void put_system(struct trace_subsystem_dir
*dir
)
660 mutex_lock(&event_mutex
);
661 __put_system_dir(dir
);
662 mutex_unlock(&event_mutex
);
665 static void remove_subsystem(struct trace_subsystem_dir
*dir
)
670 if (!--dir
->nr_events
) {
671 tracefs_remove_recursive(dir
->entry
);
672 list_del(&dir
->list
);
673 __put_system_dir(dir
);
677 static void remove_event_file_dir(struct trace_event_file
*file
)
679 struct dentry
*dir
= file
->dir
;
680 struct dentry
*child
;
683 spin_lock(&dir
->d_lock
); /* probably unneeded */
684 list_for_each_entry(child
, &dir
->d_subdirs
, d_child
) {
685 if (d_really_is_positive(child
)) /* probably unneeded */
686 d_inode(child
)->i_private
= NULL
;
688 spin_unlock(&dir
->d_lock
);
690 tracefs_remove_recursive(dir
);
693 list_del(&file
->list
);
694 remove_subsystem(file
->system
);
695 free_event_filter(file
->filter
);
696 kmem_cache_free(file_cachep
, file
);
700 * __ftrace_set_clr_event(NULL, NULL, NULL, set) will set/unset all events.
703 __ftrace_set_clr_event_nolock(struct trace_array
*tr
, const char *match
,
704 const char *sub
, const char *event
, int set
)
706 struct trace_event_file
*file
;
707 struct trace_event_call
*call
;
711 list_for_each_entry(file
, &tr
->events
, list
) {
713 call
= file
->event_call
;
714 name
= trace_event_name(call
);
716 if (!name
|| !call
->class || !call
->class->reg
)
719 if (call
->flags
& TRACE_EVENT_FL_IGNORE_ENABLE
)
723 strcmp(match
, name
) != 0 &&
724 strcmp(match
, call
->class->system
) != 0)
727 if (sub
&& strcmp(sub
, call
->class->system
) != 0)
730 if (event
&& strcmp(event
, name
) != 0)
733 ftrace_event_enable_disable(file
, set
);
741 static int __ftrace_set_clr_event(struct trace_array
*tr
, const char *match
,
742 const char *sub
, const char *event
, int set
)
746 mutex_lock(&event_mutex
);
747 ret
= __ftrace_set_clr_event_nolock(tr
, match
, sub
, event
, set
);
748 mutex_unlock(&event_mutex
);
753 static int ftrace_set_clr_event(struct trace_array
*tr
, char *buf
, int set
)
755 char *event
= NULL
, *sub
= NULL
, *match
;
759 * The buf format can be <subsystem>:<event-name>
760 * *:<event-name> means any event by that name.
761 * :<event-name> is the same.
763 * <subsystem>:* means all events in that subsystem
764 * <subsystem>: means the same.
766 * <name> (no ':') means all events in a subsystem with
767 * the name <name> or any event that matches <name>
770 match
= strsep(&buf
, ":");
776 if (!strlen(sub
) || strcmp(sub
, "*") == 0)
778 if (!strlen(event
) || strcmp(event
, "*") == 0)
782 ret
= __ftrace_set_clr_event(tr
, match
, sub
, event
, set
);
784 /* Put back the colon to allow this to be called again */
792 * trace_set_clr_event - enable or disable an event
793 * @system: system name to match (NULL for any system)
794 * @event: event name to match (NULL for all events, within system)
795 * @set: 1 to enable, 0 to disable
797 * This is a way for other parts of the kernel to enable or disable
800 * Returns 0 on success, -EINVAL if the parameters do not match any
803 int trace_set_clr_event(const char *system
, const char *event
, int set
)
805 struct trace_array
*tr
= top_trace_array();
810 return __ftrace_set_clr_event(tr
, NULL
, system
, event
, set
);
812 EXPORT_SYMBOL_GPL(trace_set_clr_event
);
814 /* 128 should be much more than enough */
815 #define EVENT_BUF_SIZE 127
818 ftrace_event_write(struct file
*file
, const char __user
*ubuf
,
819 size_t cnt
, loff_t
*ppos
)
821 struct trace_parser parser
;
822 struct seq_file
*m
= file
->private_data
;
823 struct trace_array
*tr
= m
->private;
829 ret
= tracing_update_buffers();
833 if (trace_parser_get_init(&parser
, EVENT_BUF_SIZE
+ 1))
836 read
= trace_get_user(&parser
, ubuf
, cnt
, ppos
);
838 if (read
>= 0 && trace_parser_loaded((&parser
))) {
841 if (*parser
.buffer
== '!')
844 parser
.buffer
[parser
.idx
] = 0;
846 ret
= ftrace_set_clr_event(tr
, parser
.buffer
+ !set
, set
);
854 trace_parser_put(&parser
);
860 t_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
862 struct trace_event_file
*file
= v
;
863 struct trace_event_call
*call
;
864 struct trace_array
*tr
= m
->private;
868 list_for_each_entry_continue(file
, &tr
->events
, list
) {
869 call
= file
->event_call
;
871 * The ftrace subsystem is for showing formats only.
872 * They can not be enabled or disabled via the event files.
874 if (call
->class && call
->class->reg
&&
875 !(call
->flags
& TRACE_EVENT_FL_IGNORE_ENABLE
))
882 static void *t_start(struct seq_file
*m
, loff_t
*pos
)
884 struct trace_event_file
*file
;
885 struct trace_array
*tr
= m
->private;
888 mutex_lock(&event_mutex
);
890 file
= list_entry(&tr
->events
, struct trace_event_file
, list
);
891 for (l
= 0; l
<= *pos
; ) {
892 file
= t_next(m
, file
, &l
);
900 s_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
902 struct trace_event_file
*file
= v
;
903 struct trace_array
*tr
= m
->private;
907 list_for_each_entry_continue(file
, &tr
->events
, list
) {
908 if (file
->flags
& EVENT_FILE_FL_ENABLED
)
915 static void *s_start(struct seq_file
*m
, loff_t
*pos
)
917 struct trace_event_file
*file
;
918 struct trace_array
*tr
= m
->private;
921 mutex_lock(&event_mutex
);
923 file
= list_entry(&tr
->events
, struct trace_event_file
, list
);
924 for (l
= 0; l
<= *pos
; ) {
925 file
= s_next(m
, file
, &l
);
932 static int t_show(struct seq_file
*m
, void *v
)
934 struct trace_event_file
*file
= v
;
935 struct trace_event_call
*call
= file
->event_call
;
937 if (strcmp(call
->class->system
, TRACE_SYSTEM
) != 0)
938 seq_printf(m
, "%s:", call
->class->system
);
939 seq_printf(m
, "%s\n", trace_event_name(call
));
944 static void t_stop(struct seq_file
*m
, void *p
)
946 mutex_unlock(&event_mutex
);
949 static void *p_start(struct seq_file
*m
, loff_t
*pos
)
952 struct trace_pid_list
*pid_list
;
953 struct trace_array
*tr
= m
->private;
956 * Grab the mutex, to keep calls to p_next() having the same
957 * tr->filtered_pids as p_start() has.
958 * If we just passed the tr->filtered_pids around, then RCU would
959 * have been enough, but doing that makes things more complex.
961 mutex_lock(&event_mutex
);
962 rcu_read_lock_sched();
964 pid_list
= rcu_dereference_sched(tr
->filtered_pids
);
966 if (!pid_list
|| *pos
>= pid_list
->nr_pids
)
969 return (void *)&pid_list
->pids
[*pos
];
972 static void p_stop(struct seq_file
*m
, void *p
)
975 rcu_read_unlock_sched();
976 mutex_unlock(&event_mutex
);
980 p_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
982 struct trace_array
*tr
= m
->private;
983 struct trace_pid_list
*pid_list
= rcu_dereference_sched(tr
->filtered_pids
);
987 if (*pos
>= pid_list
->nr_pids
)
990 return (void *)&pid_list
->pids
[*pos
];
993 static int p_show(struct seq_file
*m
, void *v
)
997 seq_printf(m
, "%d\n", *pid
);
1002 event_enable_read(struct file
*filp
, char __user
*ubuf
, size_t cnt
,
1005 struct trace_event_file
*file
;
1006 unsigned long flags
;
1009 mutex_lock(&event_mutex
);
1010 file
= event_file_data(filp
);
1012 flags
= file
->flags
;
1013 mutex_unlock(&event_mutex
);
1018 if (flags
& EVENT_FILE_FL_ENABLED
&&
1019 !(flags
& EVENT_FILE_FL_SOFT_DISABLED
))
1022 if (flags
& EVENT_FILE_FL_SOFT_DISABLED
||
1023 flags
& EVENT_FILE_FL_SOFT_MODE
)
1028 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, strlen(buf
));
1032 event_enable_write(struct file
*filp
, const char __user
*ubuf
, size_t cnt
,
1035 struct trace_event_file
*file
;
1039 ret
= kstrtoul_from_user(ubuf
, cnt
, 10, &val
);
1043 ret
= tracing_update_buffers();
1051 mutex_lock(&event_mutex
);
1052 file
= event_file_data(filp
);
1054 ret
= ftrace_event_enable_disable(file
, val
);
1055 mutex_unlock(&event_mutex
);
1064 return ret
? ret
: cnt
;
1068 system_enable_read(struct file
*filp
, char __user
*ubuf
, size_t cnt
,
1071 const char set_to_char
[4] = { '?', '0', '1', 'X' };
1072 struct trace_subsystem_dir
*dir
= filp
->private_data
;
1073 struct event_subsystem
*system
= dir
->subsystem
;
1074 struct trace_event_call
*call
;
1075 struct trace_event_file
*file
;
1076 struct trace_array
*tr
= dir
->tr
;
1081 mutex_lock(&event_mutex
);
1082 list_for_each_entry(file
, &tr
->events
, list
) {
1083 call
= file
->event_call
;
1084 if (!trace_event_name(call
) || !call
->class || !call
->class->reg
)
1087 if (system
&& strcmp(call
->class->system
, system
->name
) != 0)
1091 * We need to find out if all the events are set
1092 * or if all events or cleared, or if we have
1095 set
|= (1 << !!(file
->flags
& EVENT_FILE_FL_ENABLED
));
1098 * If we have a mixture, no need to look further.
1103 mutex_unlock(&event_mutex
);
1105 buf
[0] = set_to_char
[set
];
1108 ret
= simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, 2);
1114 system_enable_write(struct file
*filp
, const char __user
*ubuf
, size_t cnt
,
1117 struct trace_subsystem_dir
*dir
= filp
->private_data
;
1118 struct event_subsystem
*system
= dir
->subsystem
;
1119 const char *name
= NULL
;
1123 ret
= kstrtoul_from_user(ubuf
, cnt
, 10, &val
);
1127 ret
= tracing_update_buffers();
1131 if (val
!= 0 && val
!= 1)
1135 * Opening of "enable" adds a ref count to system,
1136 * so the name is safe to use.
1139 name
= system
->name
;
1141 ret
= __ftrace_set_clr_event(dir
->tr
, NULL
, name
, NULL
, val
);
1155 FORMAT_FIELD_SEPERATOR
= 2,
1156 FORMAT_PRINTFMT
= 3,
1159 static void *f_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
1161 struct trace_event_call
*call
= event_file_data(m
->private);
1162 struct list_head
*common_head
= &ftrace_common_fields
;
1163 struct list_head
*head
= trace_get_fields(call
);
1164 struct list_head
*node
= v
;
1168 switch ((unsigned long)v
) {
1173 case FORMAT_FIELD_SEPERATOR
:
1177 case FORMAT_PRINTFMT
:
1183 if (node
== common_head
)
1184 return (void *)FORMAT_FIELD_SEPERATOR
;
1185 else if (node
== head
)
1186 return (void *)FORMAT_PRINTFMT
;
1191 static int f_show(struct seq_file
*m
, void *v
)
1193 struct trace_event_call
*call
= event_file_data(m
->private);
1194 struct ftrace_event_field
*field
;
1195 const char *array_descriptor
;
1197 switch ((unsigned long)v
) {
1199 seq_printf(m
, "name: %s\n", trace_event_name(call
));
1200 seq_printf(m
, "ID: %d\n", call
->event
.type
);
1201 seq_puts(m
, "format:\n");
1204 case FORMAT_FIELD_SEPERATOR
:
1208 case FORMAT_PRINTFMT
:
1209 seq_printf(m
, "\nprint fmt: %s\n",
1214 field
= list_entry(v
, struct ftrace_event_field
, link
);
1216 * Smartly shows the array type(except dynamic array).
1219 * If TYPE := TYPE[LEN], it is shown:
1220 * field:TYPE VAR[LEN]
1222 array_descriptor
= strchr(field
->type
, '[');
1224 if (!strncmp(field
->type
, "__data_loc", 10))
1225 array_descriptor
= NULL
;
1227 if (!array_descriptor
)
1228 seq_printf(m
, "\tfield:%s %s;\toffset:%u;\tsize:%u;\tsigned:%d;\n",
1229 field
->type
, field
->name
, field
->offset
,
1230 field
->size
, !!field
->is_signed
);
1232 seq_printf(m
, "\tfield:%.*s %s%s;\toffset:%u;\tsize:%u;\tsigned:%d;\n",
1233 (int)(array_descriptor
- field
->type
),
1234 field
->type
, field
->name
,
1235 array_descriptor
, field
->offset
,
1236 field
->size
, !!field
->is_signed
);
1241 static void *f_start(struct seq_file
*m
, loff_t
*pos
)
1243 void *p
= (void *)FORMAT_HEADER
;
1246 /* ->stop() is called even if ->start() fails */
1247 mutex_lock(&event_mutex
);
1248 if (!event_file_data(m
->private))
1249 return ERR_PTR(-ENODEV
);
1251 while (l
< *pos
&& p
)
1252 p
= f_next(m
, p
, &l
);
1257 static void f_stop(struct seq_file
*m
, void *p
)
1259 mutex_unlock(&event_mutex
);
1262 static const struct seq_operations trace_format_seq_ops
= {
1269 static int trace_format_open(struct inode
*inode
, struct file
*file
)
1274 ret
= seq_open(file
, &trace_format_seq_ops
);
1278 m
= file
->private_data
;
1285 event_id_read(struct file
*filp
, char __user
*ubuf
, size_t cnt
, loff_t
*ppos
)
1287 int id
= (long)event_file_data(filp
);
1297 len
= sprintf(buf
, "%d\n", id
);
1299 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, len
);
1303 event_filter_read(struct file
*filp
, char __user
*ubuf
, size_t cnt
,
1306 struct trace_event_file
*file
;
1307 struct trace_seq
*s
;
1313 s
= kmalloc(sizeof(*s
), GFP_KERNEL
);
1320 mutex_lock(&event_mutex
);
1321 file
= event_file_data(filp
);
1323 print_event_filter(file
, s
);
1324 mutex_unlock(&event_mutex
);
1327 r
= simple_read_from_buffer(ubuf
, cnt
, ppos
,
1328 s
->buffer
, trace_seq_used(s
));
1336 event_filter_write(struct file
*filp
, const char __user
*ubuf
, size_t cnt
,
1339 struct trace_event_file
*file
;
1343 if (cnt
>= PAGE_SIZE
)
1346 buf
= memdup_user_nul(ubuf
, cnt
);
1348 return PTR_ERR(buf
);
1350 mutex_lock(&event_mutex
);
1351 file
= event_file_data(filp
);
1353 err
= apply_event_filter(file
, buf
);
1354 mutex_unlock(&event_mutex
);
1365 static LIST_HEAD(event_subsystems
);
1367 static int subsystem_open(struct inode
*inode
, struct file
*filp
)
1369 struct event_subsystem
*system
= NULL
;
1370 struct trace_subsystem_dir
*dir
= NULL
; /* Initialize for gcc */
1371 struct trace_array
*tr
;
1374 if (tracing_is_disabled())
1377 /* Make sure the system still exists */
1378 mutex_lock(&trace_types_lock
);
1379 mutex_lock(&event_mutex
);
1380 list_for_each_entry(tr
, &ftrace_trace_arrays
, list
) {
1381 list_for_each_entry(dir
, &tr
->systems
, list
) {
1382 if (dir
== inode
->i_private
) {
1383 /* Don't open systems with no events */
1384 if (dir
->nr_events
) {
1385 __get_system_dir(dir
);
1386 system
= dir
->subsystem
;
1393 mutex_unlock(&event_mutex
);
1394 mutex_unlock(&trace_types_lock
);
1399 /* Some versions of gcc think dir can be uninitialized here */
1402 /* Still need to increment the ref count of the system */
1403 if (trace_array_get(tr
) < 0) {
1408 ret
= tracing_open_generic(inode
, filp
);
1410 trace_array_put(tr
);
1417 static int system_tr_open(struct inode
*inode
, struct file
*filp
)
1419 struct trace_subsystem_dir
*dir
;
1420 struct trace_array
*tr
= inode
->i_private
;
1423 if (tracing_is_disabled())
1426 if (trace_array_get(tr
) < 0)
1429 /* Make a temporary dir that has no system but points to tr */
1430 dir
= kzalloc(sizeof(*dir
), GFP_KERNEL
);
1432 trace_array_put(tr
);
1438 ret
= tracing_open_generic(inode
, filp
);
1440 trace_array_put(tr
);
1445 filp
->private_data
= dir
;
1450 static int subsystem_release(struct inode
*inode
, struct file
*file
)
1452 struct trace_subsystem_dir
*dir
= file
->private_data
;
1454 trace_array_put(dir
->tr
);
1457 * If dir->subsystem is NULL, then this is a temporary
1458 * descriptor that was made for a trace_array to enable
1470 subsystem_filter_read(struct file
*filp
, char __user
*ubuf
, size_t cnt
,
1473 struct trace_subsystem_dir
*dir
= filp
->private_data
;
1474 struct event_subsystem
*system
= dir
->subsystem
;
1475 struct trace_seq
*s
;
1481 s
= kmalloc(sizeof(*s
), GFP_KERNEL
);
1487 print_subsystem_event_filter(system
, s
);
1488 r
= simple_read_from_buffer(ubuf
, cnt
, ppos
,
1489 s
->buffer
, trace_seq_used(s
));
1497 subsystem_filter_write(struct file
*filp
, const char __user
*ubuf
, size_t cnt
,
1500 struct trace_subsystem_dir
*dir
= filp
->private_data
;
1504 if (cnt
>= PAGE_SIZE
)
1507 buf
= memdup_user_nul(ubuf
, cnt
);
1509 return PTR_ERR(buf
);
1511 err
= apply_subsystem_event_filter(dir
, buf
);
1522 show_header(struct file
*filp
, char __user
*ubuf
, size_t cnt
, loff_t
*ppos
)
1524 int (*func
)(struct trace_seq
*s
) = filp
->private_data
;
1525 struct trace_seq
*s
;
1531 s
= kmalloc(sizeof(*s
), GFP_KERNEL
);
1538 r
= simple_read_from_buffer(ubuf
, cnt
, ppos
,
1539 s
->buffer
, trace_seq_used(s
));
1546 static int max_pids(struct trace_pid_list
*pid_list
)
1548 return (PAGE_SIZE
<< pid_list
->order
) / sizeof(pid_t
);
1551 static void ignore_task_cpu(void *data
)
1553 struct trace_array
*tr
= data
;
1554 struct trace_pid_list
*pid_list
;
1557 * This function is called by on_each_cpu() while the
1558 * event_mutex is held.
1560 pid_list
= rcu_dereference_protected(tr
->filtered_pids
,
1561 mutex_is_locked(&event_mutex
));
1563 this_cpu_write(tr
->trace_buffer
.data
->ignore_pid
,
1564 check_ignore_pid(pid_list
, current
));
1568 ftrace_event_pid_write(struct file
*filp
, const char __user
*ubuf
,
1569 size_t cnt
, loff_t
*ppos
)
1571 struct seq_file
*m
= filp
->private_data
;
1572 struct trace_array
*tr
= m
->private;
1573 struct trace_pid_list
*filtered_pids
= NULL
;
1574 struct trace_pid_list
*pid_list
= NULL
;
1575 struct trace_event_file
*file
;
1576 struct trace_parser parser
;
1587 ret
= tracing_update_buffers();
1591 if (trace_parser_get_init(&parser
, EVENT_BUF_SIZE
+ 1))
1594 mutex_lock(&event_mutex
);
1596 * Load as many pids into the array before doing a
1597 * swap from the tr->filtered_pids to the new list.
1603 ret
= trace_get_user(&parser
, ubuf
, cnt
, &this_pos
);
1604 if (ret
< 0 || !trace_parser_loaded(&parser
))
1611 parser
.buffer
[parser
.idx
] = 0;
1614 if (kstrtoul(parser
.buffer
, 0, &val
))
1623 pid_list
= kmalloc(sizeof(*pid_list
), GFP_KERNEL
);
1627 filtered_pids
= rcu_dereference_protected(tr
->filtered_pids
,
1628 lockdep_is_held(&event_mutex
));
1630 pid_list
->order
= filtered_pids
->order
;
1632 pid_list
->order
= 0;
1634 pid_list
->pids
= (void *)__get_free_pages(GFP_KERNEL
,
1636 if (!pid_list
->pids
)
1639 if (filtered_pids
) {
1640 pid_list
->nr_pids
= filtered_pids
->nr_pids
;
1641 memcpy(pid_list
->pids
, filtered_pids
->pids
,
1642 pid_list
->nr_pids
* sizeof(pid_t
));
1644 pid_list
->nr_pids
= 0;
1647 if (pid_list
->nr_pids
>= max_pids(pid_list
)) {
1650 pid_page
= (void *)__get_free_pages(GFP_KERNEL
,
1651 pid_list
->order
+ 1);
1654 memcpy(pid_page
, pid_list
->pids
,
1655 pid_list
->nr_pids
* sizeof(pid_t
));
1656 free_pages((unsigned long)pid_list
->pids
, pid_list
->order
);
1659 pid_list
->pids
= pid_page
;
1662 pid_list
->pids
[pid_list
->nr_pids
++] = pid
;
1663 trace_parser_clear(&parser
);
1666 trace_parser_put(&parser
);
1670 free_pages((unsigned long)pid_list
->pids
, pid_list
->order
);
1672 mutex_unlock(&event_mutex
);
1677 mutex_unlock(&event_mutex
);
1681 sort(pid_list
->pids
, pid_list
->nr_pids
, sizeof(pid_t
), cmp_pid
, NULL
);
1683 /* Remove duplicates */
1684 for (i
= 1; i
< pid_list
->nr_pids
; i
++) {
1687 while (i
< pid_list
->nr_pids
&&
1688 pid_list
->pids
[i
- 1] == pid_list
->pids
[i
])
1692 if (i
< pid_list
->nr_pids
) {
1693 memmove(&pid_list
->pids
[start
], &pid_list
->pids
[i
],
1694 (pid_list
->nr_pids
- i
) * sizeof(pid_t
));
1695 pid_list
->nr_pids
-= i
- start
;
1698 pid_list
->nr_pids
= start
;
1702 rcu_assign_pointer(tr
->filtered_pids
, pid_list
);
1704 list_for_each_entry(file
, &tr
->events
, list
) {
1705 set_bit(EVENT_FILE_FL_PID_FILTER_BIT
, &file
->flags
);
1708 if (filtered_pids
) {
1709 synchronize_sched();
1711 free_pages((unsigned long)filtered_pids
->pids
, filtered_pids
->order
);
1712 kfree(filtered_pids
);
1715 * Register a probe that is called before all other probes
1716 * to set ignore_pid if next or prev do not match.
1717 * Register a probe this is called after all other probes
1718 * to only keep ignore_pid set if next pid matches.
1720 register_trace_prio_sched_switch(event_filter_pid_sched_switch_probe_pre
,
1722 register_trace_prio_sched_switch(event_filter_pid_sched_switch_probe_post
,
1725 register_trace_prio_sched_wakeup(event_filter_pid_sched_wakeup_probe_pre
,
1727 register_trace_prio_sched_wakeup(event_filter_pid_sched_wakeup_probe_post
,
1730 register_trace_prio_sched_wakeup_new(event_filter_pid_sched_wakeup_probe_pre
,
1732 register_trace_prio_sched_wakeup_new(event_filter_pid_sched_wakeup_probe_post
,
1735 register_trace_prio_sched_waking(event_filter_pid_sched_wakeup_probe_pre
,
1737 register_trace_prio_sched_waking(event_filter_pid_sched_wakeup_probe_post
,
1742 * Ignoring of pids is done at task switch. But we have to
1743 * check for those tasks that are currently running.
1744 * Always do this in case a pid was appended or removed.
1746 on_each_cpu(ignore_task_cpu
, tr
, 1);
1748 mutex_unlock(&event_mutex
);
1756 static int ftrace_event_avail_open(struct inode
*inode
, struct file
*file
);
1757 static int ftrace_event_set_open(struct inode
*inode
, struct file
*file
);
1758 static int ftrace_event_set_pid_open(struct inode
*inode
, struct file
*file
);
1759 static int ftrace_event_release(struct inode
*inode
, struct file
*file
);
1761 static const struct seq_operations show_event_seq_ops
= {
1768 static const struct seq_operations show_set_event_seq_ops
= {
1775 static const struct seq_operations show_set_pid_seq_ops
= {
1782 static const struct file_operations ftrace_avail_fops
= {
1783 .open
= ftrace_event_avail_open
,
1785 .llseek
= seq_lseek
,
1786 .release
= seq_release
,
1789 static const struct file_operations ftrace_set_event_fops
= {
1790 .open
= ftrace_event_set_open
,
1792 .write
= ftrace_event_write
,
1793 .llseek
= seq_lseek
,
1794 .release
= ftrace_event_release
,
1797 static const struct file_operations ftrace_set_event_pid_fops
= {
1798 .open
= ftrace_event_set_pid_open
,
1800 .write
= ftrace_event_pid_write
,
1801 .llseek
= seq_lseek
,
1802 .release
= ftrace_event_release
,
1805 static const struct file_operations ftrace_enable_fops
= {
1806 .open
= tracing_open_generic
,
1807 .read
= event_enable_read
,
1808 .write
= event_enable_write
,
1809 .llseek
= default_llseek
,
1812 static const struct file_operations ftrace_event_format_fops
= {
1813 .open
= trace_format_open
,
1815 .llseek
= seq_lseek
,
1816 .release
= seq_release
,
1819 static const struct file_operations ftrace_event_id_fops
= {
1820 .read
= event_id_read
,
1821 .llseek
= default_llseek
,
1824 static const struct file_operations ftrace_event_filter_fops
= {
1825 .open
= tracing_open_generic
,
1826 .read
= event_filter_read
,
1827 .write
= event_filter_write
,
1828 .llseek
= default_llseek
,
1831 static const struct file_operations ftrace_subsystem_filter_fops
= {
1832 .open
= subsystem_open
,
1833 .read
= subsystem_filter_read
,
1834 .write
= subsystem_filter_write
,
1835 .llseek
= default_llseek
,
1836 .release
= subsystem_release
,
1839 static const struct file_operations ftrace_system_enable_fops
= {
1840 .open
= subsystem_open
,
1841 .read
= system_enable_read
,
1842 .write
= system_enable_write
,
1843 .llseek
= default_llseek
,
1844 .release
= subsystem_release
,
1847 static const struct file_operations ftrace_tr_enable_fops
= {
1848 .open
= system_tr_open
,
1849 .read
= system_enable_read
,
1850 .write
= system_enable_write
,
1851 .llseek
= default_llseek
,
1852 .release
= subsystem_release
,
1855 static const struct file_operations ftrace_show_header_fops
= {
1856 .open
= tracing_open_generic
,
1857 .read
= show_header
,
1858 .llseek
= default_llseek
,
1862 ftrace_event_open(struct inode
*inode
, struct file
*file
,
1863 const struct seq_operations
*seq_ops
)
1868 ret
= seq_open(file
, seq_ops
);
1871 m
= file
->private_data
;
1872 /* copy tr over to seq ops */
1873 m
->private = inode
->i_private
;
1878 static int ftrace_event_release(struct inode
*inode
, struct file
*file
)
1880 struct trace_array
*tr
= inode
->i_private
;
1882 trace_array_put(tr
);
1884 return seq_release(inode
, file
);
1888 ftrace_event_avail_open(struct inode
*inode
, struct file
*file
)
1890 const struct seq_operations
*seq_ops
= &show_event_seq_ops
;
1892 return ftrace_event_open(inode
, file
, seq_ops
);
1896 ftrace_event_set_open(struct inode
*inode
, struct file
*file
)
1898 const struct seq_operations
*seq_ops
= &show_set_event_seq_ops
;
1899 struct trace_array
*tr
= inode
->i_private
;
1902 if (trace_array_get(tr
) < 0)
1905 if ((file
->f_mode
& FMODE_WRITE
) &&
1906 (file
->f_flags
& O_TRUNC
))
1907 ftrace_clear_events(tr
);
1909 ret
= ftrace_event_open(inode
, file
, seq_ops
);
1911 trace_array_put(tr
);
1916 ftrace_event_set_pid_open(struct inode
*inode
, struct file
*file
)
1918 const struct seq_operations
*seq_ops
= &show_set_pid_seq_ops
;
1919 struct trace_array
*tr
= inode
->i_private
;
1922 if (trace_array_get(tr
) < 0)
1925 if ((file
->f_mode
& FMODE_WRITE
) &&
1926 (file
->f_flags
& O_TRUNC
))
1927 ftrace_clear_event_pids(tr
);
1929 ret
= ftrace_event_open(inode
, file
, seq_ops
);
1931 trace_array_put(tr
);
1935 static struct event_subsystem
*
1936 create_new_subsystem(const char *name
)
1938 struct event_subsystem
*system
;
1940 /* need to create new entry */
1941 system
= kmalloc(sizeof(*system
), GFP_KERNEL
);
1945 system
->ref_count
= 1;
1947 /* Only allocate if dynamic (kprobes and modules) */
1948 system
->name
= kstrdup_const(name
, GFP_KERNEL
);
1952 system
->filter
= NULL
;
1954 system
->filter
= kzalloc(sizeof(struct event_filter
), GFP_KERNEL
);
1955 if (!system
->filter
)
1958 list_add(&system
->list
, &event_subsystems
);
1963 kfree_const(system
->name
);
1968 static struct dentry
*
1969 event_subsystem_dir(struct trace_array
*tr
, const char *name
,
1970 struct trace_event_file
*file
, struct dentry
*parent
)
1972 struct trace_subsystem_dir
*dir
;
1973 struct event_subsystem
*system
;
1974 struct dentry
*entry
;
1976 /* First see if we did not already create this dir */
1977 list_for_each_entry(dir
, &tr
->systems
, list
) {
1978 system
= dir
->subsystem
;
1979 if (strcmp(system
->name
, name
) == 0) {
1986 /* Now see if the system itself exists. */
1987 list_for_each_entry(system
, &event_subsystems
, list
) {
1988 if (strcmp(system
->name
, name
) == 0)
1991 /* Reset system variable when not found */
1992 if (&system
->list
== &event_subsystems
)
1995 dir
= kmalloc(sizeof(*dir
), GFP_KERNEL
);
2000 system
= create_new_subsystem(name
);
2004 __get_system(system
);
2006 dir
->entry
= tracefs_create_dir(name
, parent
);
2008 pr_warn("Failed to create system directory %s\n", name
);
2009 __put_system(system
);
2016 dir
->subsystem
= system
;
2019 entry
= tracefs_create_file("filter", 0644, dir
->entry
, dir
,
2020 &ftrace_subsystem_filter_fops
);
2022 kfree(system
->filter
);
2023 system
->filter
= NULL
;
2024 pr_warn("Could not create tracefs '%s/filter' entry\n", name
);
2027 trace_create_file("enable", 0644, dir
->entry
, dir
,
2028 &ftrace_system_enable_fops
);
2030 list_add(&dir
->list
, &tr
->systems
);
2037 /* Only print this message if failed on memory allocation */
2038 if (!dir
|| !system
)
2039 pr_warn("No memory to create event subsystem %s\n", name
);
2044 event_create_dir(struct dentry
*parent
, struct trace_event_file
*file
)
2046 struct trace_event_call
*call
= file
->event_call
;
2047 struct trace_array
*tr
= file
->tr
;
2048 struct list_head
*head
;
2049 struct dentry
*d_events
;
2054 * If the trace point header did not define TRACE_SYSTEM
2055 * then the system would be called "TRACE_SYSTEM".
2057 if (strcmp(call
->class->system
, TRACE_SYSTEM
) != 0) {
2058 d_events
= event_subsystem_dir(tr
, call
->class->system
, file
, parent
);
2064 name
= trace_event_name(call
);
2065 file
->dir
= tracefs_create_dir(name
, d_events
);
2067 pr_warn("Could not create tracefs '%s' directory\n", name
);
2071 if (call
->class->reg
&& !(call
->flags
& TRACE_EVENT_FL_IGNORE_ENABLE
))
2072 trace_create_file("enable", 0644, file
->dir
, file
,
2073 &ftrace_enable_fops
);
2075 #ifdef CONFIG_PERF_EVENTS
2076 if (call
->event
.type
&& call
->class->reg
)
2077 trace_create_file("id", 0444, file
->dir
,
2078 (void *)(long)call
->event
.type
,
2079 &ftrace_event_id_fops
);
2083 * Other events may have the same class. Only update
2084 * the fields if they are not already defined.
2086 head
= trace_get_fields(call
);
2087 if (list_empty(head
)) {
2088 ret
= call
->class->define_fields(call
);
2090 pr_warn("Could not initialize trace point events/%s\n",
2095 trace_create_file("filter", 0644, file
->dir
, file
,
2096 &ftrace_event_filter_fops
);
2098 trace_create_file("trigger", 0644, file
->dir
, file
,
2099 &event_trigger_fops
);
2101 trace_create_file("format", 0444, file
->dir
, call
,
2102 &ftrace_event_format_fops
);
2107 static void remove_event_from_tracers(struct trace_event_call
*call
)
2109 struct trace_event_file
*file
;
2110 struct trace_array
*tr
;
2112 do_for_each_event_file_safe(tr
, file
) {
2113 if (file
->event_call
!= call
)
2116 remove_event_file_dir(file
);
2118 * The do_for_each_event_file_safe() is
2119 * a double loop. After finding the call for this
2120 * trace_array, we use break to jump to the next
2124 } while_for_each_event_file();
2127 static void event_remove(struct trace_event_call
*call
)
2129 struct trace_array
*tr
;
2130 struct trace_event_file
*file
;
2132 do_for_each_event_file(tr
, file
) {
2133 if (file
->event_call
!= call
)
2135 ftrace_event_enable_disable(file
, 0);
2137 * The do_for_each_event_file() is
2138 * a double loop. After finding the call for this
2139 * trace_array, we use break to jump to the next
2143 } while_for_each_event_file();
2145 if (call
->event
.funcs
)
2146 __unregister_trace_event(&call
->event
);
2147 remove_event_from_tracers(call
);
2148 list_del(&call
->list
);
2151 static int event_init(struct trace_event_call
*call
)
2156 name
= trace_event_name(call
);
2160 if (call
->class->raw_init
) {
2161 ret
= call
->class->raw_init(call
);
2162 if (ret
< 0 && ret
!= -ENOSYS
)
2163 pr_warn("Could not initialize trace events/%s\n", name
);
2170 __register_event(struct trace_event_call
*call
, struct module
*mod
)
2174 ret
= event_init(call
);
2178 list_add(&call
->list
, &ftrace_events
);
2184 static char *enum_replace(char *ptr
, struct trace_enum_map
*map
, int len
)
2189 /* Find the length of the enum value as a string */
2190 elen
= snprintf(ptr
, 0, "%ld", map
->enum_value
);
2191 /* Make sure there's enough room to replace the string with the value */
2195 snprintf(ptr
, elen
+ 1, "%ld", map
->enum_value
);
2197 /* Get the rest of the string of ptr */
2198 rlen
= strlen(ptr
+ len
);
2199 memmove(ptr
+ elen
, ptr
+ len
, rlen
);
2200 /* Make sure we end the new string */
2201 ptr
[elen
+ rlen
] = 0;
2206 static void update_event_printk(struct trace_event_call
*call
,
2207 struct trace_enum_map
*map
)
2211 int len
= strlen(map
->enum_string
);
2213 for (ptr
= call
->print_fmt
; *ptr
; ptr
++) {
2227 if (isdigit(*ptr
)) {
2231 /* Check for alpha chars like ULL */
2232 } while (isalnum(*ptr
));
2236 * A number must have some kind of delimiter after
2237 * it, and we can ignore that too.
2241 if (isalpha(*ptr
) || *ptr
== '_') {
2242 if (strncmp(map
->enum_string
, ptr
, len
) == 0 &&
2243 !isalnum(ptr
[len
]) && ptr
[len
] != '_') {
2244 ptr
= enum_replace(ptr
, map
, len
);
2245 /* Hmm, enum string smaller than value */
2246 if (WARN_ON_ONCE(!ptr
))
2249 * No need to decrement here, as enum_replace()
2250 * returns the pointer to the character passed
2251 * the enum, and two enums can not be placed
2252 * back to back without something in between.
2253 * We can skip that something in between.
2260 } while (isalnum(*ptr
) || *ptr
== '_');
2264 * If what comes after this variable is a '.' or
2265 * '->' then we can continue to ignore that string.
2267 if (*ptr
== '.' || (ptr
[0] == '-' && ptr
[1] == '>')) {
2268 ptr
+= *ptr
== '.' ? 1 : 2;
2274 * Once again, we can skip the delimiter that came
2282 void trace_event_enum_update(struct trace_enum_map
**map
, int len
)
2284 struct trace_event_call
*call
, *p
;
2285 const char *last_system
= NULL
;
2289 down_write(&trace_event_sem
);
2290 list_for_each_entry_safe(call
, p
, &ftrace_events
, list
) {
2291 /* events are usually grouped together with systems */
2292 if (!last_system
|| call
->class->system
!= last_system
) {
2294 last_system
= call
->class->system
;
2297 for (i
= last_i
; i
< len
; i
++) {
2298 if (call
->class->system
== map
[i
]->system
) {
2299 /* Save the first system if need be */
2302 update_event_printk(call
, map
[i
]);
2306 up_write(&trace_event_sem
);
2309 static struct trace_event_file
*
2310 trace_create_new_event(struct trace_event_call
*call
,
2311 struct trace_array
*tr
)
2313 struct trace_event_file
*file
;
2315 file
= kmem_cache_alloc(file_cachep
, GFP_TRACE
);
2319 file
->event_call
= call
;
2321 atomic_set(&file
->sm_ref
, 0);
2322 atomic_set(&file
->tm_ref
, 0);
2323 INIT_LIST_HEAD(&file
->triggers
);
2324 list_add(&file
->list
, &tr
->events
);
2329 /* Add an event to a trace directory */
2331 __trace_add_new_event(struct trace_event_call
*call
, struct trace_array
*tr
)
2333 struct trace_event_file
*file
;
2335 file
= trace_create_new_event(call
, tr
);
2339 return event_create_dir(tr
->event_dir
, file
);
2343 * Just create a decriptor for early init. A descriptor is required
2344 * for enabling events at boot. We want to enable events before
2345 * the filesystem is initialized.
2348 __trace_early_add_new_event(struct trace_event_call
*call
,
2349 struct trace_array
*tr
)
2351 struct trace_event_file
*file
;
2353 file
= trace_create_new_event(call
, tr
);
2360 struct ftrace_module_file_ops
;
2361 static void __add_event_to_tracers(struct trace_event_call
*call
);
2363 /* Add an additional event_call dynamically */
2364 int trace_add_event_call(struct trace_event_call
*call
)
2367 mutex_lock(&trace_types_lock
);
2368 mutex_lock(&event_mutex
);
2370 ret
= __register_event(call
, NULL
);
2372 __add_event_to_tracers(call
);
2374 mutex_unlock(&event_mutex
);
2375 mutex_unlock(&trace_types_lock
);
2380 * Must be called under locking of trace_types_lock, event_mutex and
2383 static void __trace_remove_event_call(struct trace_event_call
*call
)
2386 trace_destroy_fields(call
);
2387 free_event_filter(call
->filter
);
2388 call
->filter
= NULL
;
2391 static int probe_remove_event_call(struct trace_event_call
*call
)
2393 struct trace_array
*tr
;
2394 struct trace_event_file
*file
;
2396 #ifdef CONFIG_PERF_EVENTS
2397 if (call
->perf_refcount
)
2400 do_for_each_event_file(tr
, file
) {
2401 if (file
->event_call
!= call
)
2404 * We can't rely on ftrace_event_enable_disable(enable => 0)
2405 * we are going to do, EVENT_FILE_FL_SOFT_MODE can suppress
2406 * TRACE_REG_UNREGISTER.
2408 if (file
->flags
& EVENT_FILE_FL_ENABLED
)
2411 * The do_for_each_event_file_safe() is
2412 * a double loop. After finding the call for this
2413 * trace_array, we use break to jump to the next
2417 } while_for_each_event_file();
2419 __trace_remove_event_call(call
);
2424 /* Remove an event_call */
2425 int trace_remove_event_call(struct trace_event_call
*call
)
2429 mutex_lock(&trace_types_lock
);
2430 mutex_lock(&event_mutex
);
2431 down_write(&trace_event_sem
);
2432 ret
= probe_remove_event_call(call
);
2433 up_write(&trace_event_sem
);
2434 mutex_unlock(&event_mutex
);
2435 mutex_unlock(&trace_types_lock
);
2440 #define for_each_event(event, start, end) \
2441 for (event = start; \
2442 (unsigned long)event < (unsigned long)end; \
2445 #ifdef CONFIG_MODULES
2447 static void trace_module_add_events(struct module
*mod
)
2449 struct trace_event_call
**call
, **start
, **end
;
2451 if (!mod
->num_trace_events
)
2454 /* Don't add infrastructure for mods without tracepoints */
2455 if (trace_module_has_bad_taint(mod
)) {
2456 pr_err("%s: module has bad taint, not creating trace events\n",
2461 start
= mod
->trace_events
;
2462 end
= mod
->trace_events
+ mod
->num_trace_events
;
2464 for_each_event(call
, start
, end
) {
2465 __register_event(*call
, mod
);
2466 __add_event_to_tracers(*call
);
2470 static void trace_module_remove_events(struct module
*mod
)
2472 struct trace_event_call
*call
, *p
;
2473 bool clear_trace
= false;
2475 down_write(&trace_event_sem
);
2476 list_for_each_entry_safe(call
, p
, &ftrace_events
, list
) {
2477 if (call
->mod
== mod
) {
2478 if (call
->flags
& TRACE_EVENT_FL_WAS_ENABLED
)
2480 __trace_remove_event_call(call
);
2483 up_write(&trace_event_sem
);
2486 * It is safest to reset the ring buffer if the module being unloaded
2487 * registered any events that were used. The only worry is if
2488 * a new module gets loaded, and takes on the same id as the events
2489 * of this module. When printing out the buffer, traced events left
2490 * over from this module may be passed to the new module events and
2491 * unexpected results may occur.
2494 tracing_reset_all_online_cpus();
2497 static int trace_module_notify(struct notifier_block
*self
,
2498 unsigned long val
, void *data
)
2500 struct module
*mod
= data
;
2502 mutex_lock(&trace_types_lock
);
2503 mutex_lock(&event_mutex
);
2505 case MODULE_STATE_COMING
:
2506 trace_module_add_events(mod
);
2508 case MODULE_STATE_GOING
:
2509 trace_module_remove_events(mod
);
2512 mutex_unlock(&event_mutex
);
2513 mutex_unlock(&trace_types_lock
);
2518 static struct notifier_block trace_module_nb
= {
2519 .notifier_call
= trace_module_notify
,
2520 .priority
= 1, /* higher than trace.c module notify */
2522 #endif /* CONFIG_MODULES */
2524 /* Create a new event directory structure for a trace directory. */
2526 __trace_add_event_dirs(struct trace_array
*tr
)
2528 struct trace_event_call
*call
;
2531 list_for_each_entry(call
, &ftrace_events
, list
) {
2532 ret
= __trace_add_new_event(call
, tr
);
2534 pr_warn("Could not create directory for event %s\n",
2535 trace_event_name(call
));
2539 struct trace_event_file
*
2540 find_event_file(struct trace_array
*tr
, const char *system
, const char *event
)
2542 struct trace_event_file
*file
;
2543 struct trace_event_call
*call
;
2546 list_for_each_entry(file
, &tr
->events
, list
) {
2548 call
= file
->event_call
;
2549 name
= trace_event_name(call
);
2551 if (!name
|| !call
->class || !call
->class->reg
)
2554 if (call
->flags
& TRACE_EVENT_FL_IGNORE_ENABLE
)
2557 if (strcmp(event
, name
) == 0 &&
2558 strcmp(system
, call
->class->system
) == 0)
2564 #ifdef CONFIG_DYNAMIC_FTRACE
2567 #define ENABLE_EVENT_STR "enable_event"
2568 #define DISABLE_EVENT_STR "disable_event"
2570 struct event_probe_data
{
2571 struct trace_event_file
*file
;
2572 unsigned long count
;
2578 event_enable_probe(unsigned long ip
, unsigned long parent_ip
, void **_data
)
2580 struct event_probe_data
**pdata
= (struct event_probe_data
**)_data
;
2581 struct event_probe_data
*data
= *pdata
;
2587 clear_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT
, &data
->file
->flags
);
2589 set_bit(EVENT_FILE_FL_SOFT_DISABLED_BIT
, &data
->file
->flags
);
2593 event_enable_count_probe(unsigned long ip
, unsigned long parent_ip
, void **_data
)
2595 struct event_probe_data
**pdata
= (struct event_probe_data
**)_data
;
2596 struct event_probe_data
*data
= *pdata
;
2604 /* Skip if the event is in a state we want to switch to */
2605 if (data
->enable
== !(data
->file
->flags
& EVENT_FILE_FL_SOFT_DISABLED
))
2608 if (data
->count
!= -1)
2611 event_enable_probe(ip
, parent_ip
, _data
);
2615 event_enable_print(struct seq_file
*m
, unsigned long ip
,
2616 struct ftrace_probe_ops
*ops
, void *_data
)
2618 struct event_probe_data
*data
= _data
;
2620 seq_printf(m
, "%ps:", (void *)ip
);
2622 seq_printf(m
, "%s:%s:%s",
2623 data
->enable
? ENABLE_EVENT_STR
: DISABLE_EVENT_STR
,
2624 data
->file
->event_call
->class->system
,
2625 trace_event_name(data
->file
->event_call
));
2627 if (data
->count
== -1)
2628 seq_puts(m
, ":unlimited\n");
2630 seq_printf(m
, ":count=%ld\n", data
->count
);
2636 event_enable_init(struct ftrace_probe_ops
*ops
, unsigned long ip
,
2639 struct event_probe_data
**pdata
= (struct event_probe_data
**)_data
;
2640 struct event_probe_data
*data
= *pdata
;
2647 event_enable_free(struct ftrace_probe_ops
*ops
, unsigned long ip
,
2650 struct event_probe_data
**pdata
= (struct event_probe_data
**)_data
;
2651 struct event_probe_data
*data
= *pdata
;
2653 if (WARN_ON_ONCE(data
->ref
<= 0))
2658 /* Remove the SOFT_MODE flag */
2659 __ftrace_event_enable_disable(data
->file
, 0, 1);
2660 module_put(data
->file
->event_call
->mod
);
2666 static struct ftrace_probe_ops event_enable_probe_ops
= {
2667 .func
= event_enable_probe
,
2668 .print
= event_enable_print
,
2669 .init
= event_enable_init
,
2670 .free
= event_enable_free
,
2673 static struct ftrace_probe_ops event_enable_count_probe_ops
= {
2674 .func
= event_enable_count_probe
,
2675 .print
= event_enable_print
,
2676 .init
= event_enable_init
,
2677 .free
= event_enable_free
,
2680 static struct ftrace_probe_ops event_disable_probe_ops
= {
2681 .func
= event_enable_probe
,
2682 .print
= event_enable_print
,
2683 .init
= event_enable_init
,
2684 .free
= event_enable_free
,
2687 static struct ftrace_probe_ops event_disable_count_probe_ops
= {
2688 .func
= event_enable_count_probe
,
2689 .print
= event_enable_print
,
2690 .init
= event_enable_init
,
2691 .free
= event_enable_free
,
2695 event_enable_func(struct ftrace_hash
*hash
,
2696 char *glob
, char *cmd
, char *param
, int enabled
)
2698 struct trace_array
*tr
= top_trace_array();
2699 struct trace_event_file
*file
;
2700 struct ftrace_probe_ops
*ops
;
2701 struct event_probe_data
*data
;
2711 /* hash funcs only work with set_ftrace_filter */
2712 if (!enabled
|| !param
)
2715 system
= strsep(¶m
, ":");
2719 event
= strsep(¶m
, ":");
2721 mutex_lock(&event_mutex
);
2724 file
= find_event_file(tr
, system
, event
);
2728 enable
= strcmp(cmd
, ENABLE_EVENT_STR
) == 0;
2731 ops
= param
? &event_enable_count_probe_ops
: &event_enable_probe_ops
;
2733 ops
= param
? &event_disable_count_probe_ops
: &event_disable_probe_ops
;
2735 if (glob
[0] == '!') {
2736 unregister_ftrace_function_probe_func(glob
+1, ops
);
2742 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
2746 data
->enable
= enable
;
2753 number
= strsep(¶m
, ":");
2756 if (!strlen(number
))
2760 * We use the callback data field (which is a pointer)
2763 ret
= kstrtoul(number
, 0, &data
->count
);
2768 /* Don't let event modules unload while probe registered */
2769 ret
= try_module_get(file
->event_call
->mod
);
2775 ret
= __ftrace_event_enable_disable(file
, 1, 1);
2778 ret
= register_ftrace_function_probe(glob
, ops
, data
);
2780 * The above returns on success the # of functions enabled,
2781 * but if it didn't find any functions it returns zero.
2782 * Consider no functions a failure too.
2789 /* Just return zero, not the number of enabled functions */
2792 mutex_unlock(&event_mutex
);
2796 __ftrace_event_enable_disable(file
, 0, 1);
2798 module_put(file
->event_call
->mod
);
2804 static struct ftrace_func_command event_enable_cmd
= {
2805 .name
= ENABLE_EVENT_STR
,
2806 .func
= event_enable_func
,
2809 static struct ftrace_func_command event_disable_cmd
= {
2810 .name
= DISABLE_EVENT_STR
,
2811 .func
= event_enable_func
,
2814 static __init
int register_event_cmds(void)
2818 ret
= register_ftrace_command(&event_enable_cmd
);
2819 if (WARN_ON(ret
< 0))
2821 ret
= register_ftrace_command(&event_disable_cmd
);
2822 if (WARN_ON(ret
< 0))
2823 unregister_ftrace_command(&event_enable_cmd
);
2827 static inline int register_event_cmds(void) { return 0; }
2828 #endif /* CONFIG_DYNAMIC_FTRACE */
2831 * The top level array has already had its trace_event_file
2832 * descriptors created in order to allow for early events to
2833 * be recorded. This function is called after the tracefs has been
2834 * initialized, and we now have to create the files associated
2838 __trace_early_add_event_dirs(struct trace_array
*tr
)
2840 struct trace_event_file
*file
;
2844 list_for_each_entry(file
, &tr
->events
, list
) {
2845 ret
= event_create_dir(tr
->event_dir
, file
);
2847 pr_warn("Could not create directory for event %s\n",
2848 trace_event_name(file
->event_call
));
2853 * For early boot up, the top trace array requires to have
2854 * a list of events that can be enabled. This must be done before
2855 * the filesystem is set up in order to allow events to be traced
2859 __trace_early_add_events(struct trace_array
*tr
)
2861 struct trace_event_call
*call
;
2864 list_for_each_entry(call
, &ftrace_events
, list
) {
2865 /* Early boot up should not have any modules loaded */
2866 if (WARN_ON_ONCE(call
->mod
))
2869 ret
= __trace_early_add_new_event(call
, tr
);
2871 pr_warn("Could not create early event %s\n",
2872 trace_event_name(call
));
2876 /* Remove the event directory structure for a trace directory. */
2878 __trace_remove_event_dirs(struct trace_array
*tr
)
2880 struct trace_event_file
*file
, *next
;
2882 list_for_each_entry_safe(file
, next
, &tr
->events
, list
)
2883 remove_event_file_dir(file
);
2886 static void __add_event_to_tracers(struct trace_event_call
*call
)
2888 struct trace_array
*tr
;
2890 list_for_each_entry(tr
, &ftrace_trace_arrays
, list
)
2891 __trace_add_new_event(call
, tr
);
2894 extern struct trace_event_call
*__start_ftrace_events
[];
2895 extern struct trace_event_call
*__stop_ftrace_events
[];
2897 static char bootup_event_buf
[COMMAND_LINE_SIZE
] __initdata
;
2899 static __init
int setup_trace_event(char *str
)
2901 strlcpy(bootup_event_buf
, str
, COMMAND_LINE_SIZE
);
2902 ring_buffer_expanded
= true;
2903 tracing_selftest_disabled
= true;
2907 __setup("trace_event=", setup_trace_event
);
2909 /* Expects to have event_mutex held when called */
2911 create_event_toplevel_files(struct dentry
*parent
, struct trace_array
*tr
)
2913 struct dentry
*d_events
;
2914 struct dentry
*entry
;
2916 entry
= tracefs_create_file("set_event", 0644, parent
,
2917 tr
, &ftrace_set_event_fops
);
2919 pr_warn("Could not create tracefs 'set_event' entry\n");
2923 d_events
= tracefs_create_dir("events", parent
);
2925 pr_warn("Could not create tracefs 'events' directory\n");
2929 entry
= tracefs_create_file("set_event_pid", 0644, parent
,
2930 tr
, &ftrace_set_event_pid_fops
);
2932 /* ring buffer internal formats */
2933 trace_create_file("header_page", 0444, d_events
,
2934 ring_buffer_print_page_header
,
2935 &ftrace_show_header_fops
);
2937 trace_create_file("header_event", 0444, d_events
,
2938 ring_buffer_print_entry_header
,
2939 &ftrace_show_header_fops
);
2941 trace_create_file("enable", 0644, d_events
,
2942 tr
, &ftrace_tr_enable_fops
);
2944 tr
->event_dir
= d_events
;
2950 * event_trace_add_tracer - add a instance of a trace_array to events
2951 * @parent: The parent dentry to place the files/directories for events in
2952 * @tr: The trace array associated with these events
2954 * When a new instance is created, it needs to set up its events
2955 * directory, as well as other files associated with events. It also
2956 * creates the event hierachry in the @parent/events directory.
2958 * Returns 0 on success.
2960 int event_trace_add_tracer(struct dentry
*parent
, struct trace_array
*tr
)
2964 mutex_lock(&event_mutex
);
2966 ret
= create_event_toplevel_files(parent
, tr
);
2970 down_write(&trace_event_sem
);
2971 __trace_add_event_dirs(tr
);
2972 up_write(&trace_event_sem
);
2975 mutex_unlock(&event_mutex
);
2981 * The top trace array already had its file descriptors created.
2982 * Now the files themselves need to be created.
2985 early_event_add_tracer(struct dentry
*parent
, struct trace_array
*tr
)
2989 mutex_lock(&event_mutex
);
2991 ret
= create_event_toplevel_files(parent
, tr
);
2995 down_write(&trace_event_sem
);
2996 __trace_early_add_event_dirs(tr
);
2997 up_write(&trace_event_sem
);
3000 mutex_unlock(&event_mutex
);
3005 int event_trace_del_tracer(struct trace_array
*tr
)
3007 mutex_lock(&event_mutex
);
3009 /* Disable any event triggers and associated soft-disabled events */
3010 clear_event_triggers(tr
);
3012 /* Clear the pid list */
3013 __ftrace_clear_event_pids(tr
);
3015 /* Disable any running events */
3016 __ftrace_set_clr_event_nolock(tr
, NULL
, NULL
, NULL
, 0);
3018 /* Access to events are within rcu_read_lock_sched() */
3019 synchronize_sched();
3021 down_write(&trace_event_sem
);
3022 __trace_remove_event_dirs(tr
);
3023 tracefs_remove_recursive(tr
->event_dir
);
3024 up_write(&trace_event_sem
);
3026 tr
->event_dir
= NULL
;
3028 mutex_unlock(&event_mutex
);
3033 static __init
int event_trace_memsetup(void)
3035 field_cachep
= KMEM_CACHE(ftrace_event_field
, SLAB_PANIC
);
3036 file_cachep
= KMEM_CACHE(trace_event_file
, SLAB_PANIC
);
3041 early_enable_events(struct trace_array
*tr
, bool disable_first
)
3043 char *buf
= bootup_event_buf
;
3048 token
= strsep(&buf
, ",");
3054 /* Restarting syscalls requires that we stop them first */
3056 ftrace_set_clr_event(tr
, token
, 0);
3058 ret
= ftrace_set_clr_event(tr
, token
, 1);
3060 pr_warn("Failed to enable trace event: %s\n", token
);
3063 /* Put back the comma to allow this to be called again */
3069 static __init
int event_trace_enable(void)
3071 struct trace_array
*tr
= top_trace_array();
3072 struct trace_event_call
**iter
, *call
;
3078 for_each_event(iter
, __start_ftrace_events
, __stop_ftrace_events
) {
3081 ret
= event_init(call
);
3083 list_add(&call
->list
, &ftrace_events
);
3087 * We need the top trace array to have a working set of trace
3088 * points at early init, before the debug files and directories
3089 * are created. Create the file entries now, and attach them
3090 * to the actual file dentries later.
3092 __trace_early_add_events(tr
);
3094 early_enable_events(tr
, false);
3096 trace_printk_start_comm();
3098 register_event_cmds();
3100 register_trigger_cmds();
3106 * event_trace_enable() is called from trace_event_init() first to
3107 * initialize events and perhaps start any events that are on the
3108 * command line. Unfortunately, there are some events that will not
3109 * start this early, like the system call tracepoints that need
3110 * to set the TIF_SYSCALL_TRACEPOINT flag of pid 1. But event_trace_enable()
3111 * is called before pid 1 starts, and this flag is never set, making
3112 * the syscall tracepoint never get reached, but the event is enabled
3113 * regardless (and not doing anything).
3115 static __init
int event_trace_enable_again(void)
3117 struct trace_array
*tr
;
3119 tr
= top_trace_array();
3123 early_enable_events(tr
, true);
3128 early_initcall(event_trace_enable_again
);
3130 static __init
int event_trace_init(void)
3132 struct trace_array
*tr
;
3133 struct dentry
*d_tracer
;
3134 struct dentry
*entry
;
3137 tr
= top_trace_array();
3141 d_tracer
= tracing_init_dentry();
3142 if (IS_ERR(d_tracer
))
3145 entry
= tracefs_create_file("available_events", 0444, d_tracer
,
3146 tr
, &ftrace_avail_fops
);
3148 pr_warn("Could not create tracefs 'available_events' entry\n");
3150 if (trace_define_generic_fields())
3151 pr_warn("tracing: Failed to allocated generic fields");
3153 if (trace_define_common_fields())
3154 pr_warn("tracing: Failed to allocate common fields");
3156 ret
= early_event_add_tracer(d_tracer
, tr
);
3160 #ifdef CONFIG_MODULES
3161 ret
= register_module_notifier(&trace_module_nb
);
3163 pr_warn("Failed to register trace events module notifier\n");
3168 void __init
trace_event_init(void)
3170 event_trace_memsetup();
3171 init_ftrace_syscalls();
3172 event_trace_enable();
3175 fs_initcall(event_trace_init
);
3177 #ifdef CONFIG_FTRACE_STARTUP_TEST
3179 static DEFINE_SPINLOCK(test_spinlock
);
3180 static DEFINE_SPINLOCK(test_spinlock_irq
);
3181 static DEFINE_MUTEX(test_mutex
);
3183 static __init
void test_work(struct work_struct
*dummy
)
3185 spin_lock(&test_spinlock
);
3186 spin_lock_irq(&test_spinlock_irq
);
3188 spin_unlock_irq(&test_spinlock_irq
);
3189 spin_unlock(&test_spinlock
);
3191 mutex_lock(&test_mutex
);
3193 mutex_unlock(&test_mutex
);
3196 static __init
int event_test_thread(void *unused
)
3200 test_malloc
= kmalloc(1234, GFP_KERNEL
);
3202 pr_info("failed to kmalloc\n");
3204 schedule_on_each_cpu(test_work
);
3208 set_current_state(TASK_INTERRUPTIBLE
);
3209 while (!kthread_should_stop()) {
3211 set_current_state(TASK_INTERRUPTIBLE
);
3213 __set_current_state(TASK_RUNNING
);
3219 * Do various things that may trigger events.
3221 static __init
void event_test_stuff(void)
3223 struct task_struct
*test_thread
;
3225 test_thread
= kthread_run(event_test_thread
, NULL
, "test-events");
3227 kthread_stop(test_thread
);
3231 * For every trace event defined, we will test each trace point separately,
3232 * and then by groups, and finally all trace points.
3234 static __init
void event_trace_self_tests(void)
3236 struct trace_subsystem_dir
*dir
;
3237 struct trace_event_file
*file
;
3238 struct trace_event_call
*call
;
3239 struct event_subsystem
*system
;
3240 struct trace_array
*tr
;
3243 tr
= top_trace_array();
3247 pr_info("Running tests on trace events:\n");
3249 list_for_each_entry(file
, &tr
->events
, list
) {
3251 call
= file
->event_call
;
3253 /* Only test those that have a probe */
3254 if (!call
->class || !call
->class->probe
)
3258 * Testing syscall events here is pretty useless, but
3259 * we still do it if configured. But this is time consuming.
3260 * What we really need is a user thread to perform the
3261 * syscalls as we test.
3263 #ifndef CONFIG_EVENT_TRACE_TEST_SYSCALLS
3264 if (call
->class->system
&&
3265 strcmp(call
->class->system
, "syscalls") == 0)
3269 pr_info("Testing event %s: ", trace_event_name(call
));
3272 * If an event is already enabled, someone is using
3273 * it and the self test should not be on.
3275 if (file
->flags
& EVENT_FILE_FL_ENABLED
) {
3276 pr_warn("Enabled event during self test!\n");
3281 ftrace_event_enable_disable(file
, 1);
3283 ftrace_event_enable_disable(file
, 0);
3288 /* Now test at the sub system level */
3290 pr_info("Running tests on trace event systems:\n");
3292 list_for_each_entry(dir
, &tr
->systems
, list
) {
3294 system
= dir
->subsystem
;
3296 /* the ftrace system is special, skip it */
3297 if (strcmp(system
->name
, "ftrace") == 0)
3300 pr_info("Testing event system %s: ", system
->name
);
3302 ret
= __ftrace_set_clr_event(tr
, NULL
, system
->name
, NULL
, 1);
3303 if (WARN_ON_ONCE(ret
)) {
3304 pr_warn("error enabling system %s\n",
3311 ret
= __ftrace_set_clr_event(tr
, NULL
, system
->name
, NULL
, 0);
3312 if (WARN_ON_ONCE(ret
)) {
3313 pr_warn("error disabling system %s\n",
3321 /* Test with all events enabled */
3323 pr_info("Running tests on all trace events:\n");
3324 pr_info("Testing all events: ");
3326 ret
= __ftrace_set_clr_event(tr
, NULL
, NULL
, NULL
, 1);
3327 if (WARN_ON_ONCE(ret
)) {
3328 pr_warn("error enabling all events\n");
3335 ret
= __ftrace_set_clr_event(tr
, NULL
, NULL
, NULL
, 0);
3336 if (WARN_ON_ONCE(ret
)) {
3337 pr_warn("error disabling all events\n");
3344 #ifdef CONFIG_FUNCTION_TRACER
3346 static DEFINE_PER_CPU(atomic_t
, ftrace_test_event_disable
);
3348 static struct trace_array
*event_tr
;
3351 function_test_events_call(unsigned long ip
, unsigned long parent_ip
,
3352 struct ftrace_ops
*op
, struct pt_regs
*pt_regs
)
3354 struct ring_buffer_event
*event
;
3355 struct ring_buffer
*buffer
;
3356 struct ftrace_entry
*entry
;
3357 unsigned long flags
;
3362 pc
= preempt_count();
3363 preempt_disable_notrace();
3364 cpu
= raw_smp_processor_id();
3365 disabled
= atomic_inc_return(&per_cpu(ftrace_test_event_disable
, cpu
));
3370 local_save_flags(flags
);
3372 event
= trace_current_buffer_lock_reserve(&buffer
,
3373 TRACE_FN
, sizeof(*entry
),
3377 entry
= ring_buffer_event_data(event
);
3379 entry
->parent_ip
= parent_ip
;
3381 trace_buffer_unlock_commit(event_tr
, buffer
, event
, flags
, pc
);
3384 atomic_dec(&per_cpu(ftrace_test_event_disable
, cpu
));
3385 preempt_enable_notrace();
3388 static struct ftrace_ops trace_ops __initdata
=
3390 .func
= function_test_events_call
,
3391 .flags
= FTRACE_OPS_FL_RECURSION_SAFE
,
3394 static __init
void event_trace_self_test_with_function(void)
3397 event_tr
= top_trace_array();
3398 if (WARN_ON(!event_tr
))
3400 ret
= register_ftrace_function(&trace_ops
);
3401 if (WARN_ON(ret
< 0)) {
3402 pr_info("Failed to enable function tracer for event tests\n");
3405 pr_info("Running tests again, along with the function tracer\n");
3406 event_trace_self_tests();
3407 unregister_ftrace_function(&trace_ops
);
3410 static __init
void event_trace_self_test_with_function(void)
3415 static __init
int event_trace_self_tests_init(void)
3417 if (!tracing_selftest_disabled
) {
3418 event_trace_self_tests();
3419 event_trace_self_test_with_function();
3425 late_initcall(event_trace_self_tests_init
);