2 * ring buffer based function tracer
4 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
5 * Copyright (C) 2008 Ingo Molnar <mingo@redhat.com>
7 * Originally taken from the RT patch by:
8 * Arnaldo Carvalho de Melo <acme@redhat.com>
10 * Based on code from the latency_tracer, that is:
11 * Copyright (C) 2004-2006 Ingo Molnar
12 * Copyright (C) 2004 William Lee Irwin III
14 #include <linux/ring_buffer.h>
15 #include <linux/utsrelease.h>
16 #include <linux/stacktrace.h>
17 #include <linux/writeback.h>
18 #include <linux/kallsyms.h>
19 #include <linux/seq_file.h>
20 #include <linux/smp_lock.h>
21 #include <linux/notifier.h>
22 #include <linux/irqflags.h>
23 #include <linux/debugfs.h>
24 #include <linux/pagemap.h>
25 #include <linux/hardirq.h>
26 #include <linux/linkage.h>
27 #include <linux/uaccess.h>
28 #include <linux/kprobes.h>
29 #include <linux/ftrace.h>
30 #include <linux/module.h>
31 #include <linux/percpu.h>
32 #include <linux/splice.h>
33 #include <linux/kdebug.h>
34 #include <linux/string.h>
35 #include <linux/ctype.h>
36 #include <linux/init.h>
37 #include <linux/poll.h>
38 #include <linux/gfp.h>
42 #include "trace_output.h"
44 #define TRACE_BUFFER_FLAGS (RB_FL_OVERWRITE)
47 * On boot up, the ring buffer is set to the minimum size, so that
48 * we do not waste memory on systems that are not using tracing.
50 int ring_buffer_expanded
;
53 * We need to change this state when a selftest is running.
54 * A selftest will lurk into the ring-buffer to count the
55 * entries inserted during the selftest although some concurrent
56 * insertions into the ring-buffer such as trace_printk could occurred
57 * at the same time, giving false positive or negative results.
59 static bool __read_mostly tracing_selftest_running
;
62 * If a tracer is running, we do not want to run SELFTEST.
64 bool __read_mostly tracing_selftest_disabled
;
66 /* For tracers that don't implement custom flags */
67 static struct tracer_opt dummy_tracer_opt
[] = {
71 static struct tracer_flags dummy_tracer_flags
= {
73 .opts
= dummy_tracer_opt
76 static int dummy_set_flag(u32 old_flags
, u32 bit
, int set
)
82 * Kill all tracing for good (never come back).
83 * It is initialized to 1 but will turn to zero if the initialization
84 * of the tracer is successful. But that is the only place that sets
87 static int tracing_disabled
= 1;
89 DEFINE_PER_CPU(local_t
, ftrace_cpu_disabled
);
91 static inline void ftrace_disable_cpu(void)
94 local_inc(&__get_cpu_var(ftrace_cpu_disabled
));
97 static inline void ftrace_enable_cpu(void)
99 local_dec(&__get_cpu_var(ftrace_cpu_disabled
));
103 static cpumask_var_t __read_mostly tracing_buffer_mask
;
105 /* Define which cpu buffers are currently read in trace_pipe */
106 static cpumask_var_t tracing_reader_cpumask
;
108 #define for_each_tracing_cpu(cpu) \
109 for_each_cpu(cpu, tracing_buffer_mask)
112 * ftrace_dump_on_oops - variable to dump ftrace buffer on oops
114 * If there is an oops (or kernel panic) and the ftrace_dump_on_oops
115 * is set, then ftrace_dump is called. This will output the contents
116 * of the ftrace buffers to the console. This is very useful for
117 * capturing traces that lead to crashes and outputing it to a
120 * It is default off, but you can enable it with either specifying
121 * "ftrace_dump_on_oops" in the kernel command line, or setting
122 * /proc/sys/kernel/ftrace_dump_on_oops to true.
124 int ftrace_dump_on_oops
;
126 static int tracing_set_tracer(const char *buf
);
128 #define MAX_TRACER_SIZE 100
129 static char bootup_tracer_buf
[MAX_TRACER_SIZE
] __initdata
;
130 static char *default_bootup_tracer
;
132 static int __init
set_ftrace(char *str
)
134 strncpy(bootup_tracer_buf
, str
, MAX_TRACER_SIZE
);
135 default_bootup_tracer
= bootup_tracer_buf
;
136 /* We are using ftrace early, expand it */
137 ring_buffer_expanded
= 1;
140 __setup("ftrace=", set_ftrace
);
142 static int __init
set_ftrace_dump_on_oops(char *str
)
144 ftrace_dump_on_oops
= 1;
147 __setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops
);
149 unsigned long long ns2usecs(cycle_t nsec
)
157 * The global_trace is the descriptor that holds the tracing
158 * buffers for the live tracing. For each CPU, it contains
159 * a link list of pages that will store trace entries. The
160 * page descriptor of the pages in the memory is used to hold
161 * the link list by linking the lru item in the page descriptor
162 * to each of the pages in the buffer per CPU.
164 * For each active CPU there is a data field that holds the
165 * pages for the buffer for that CPU. Each CPU has the same number
166 * of pages allocated for its buffer.
168 static struct trace_array global_trace
;
170 static DEFINE_PER_CPU(struct trace_array_cpu
, global_trace_cpu
);
172 int filter_current_check_discard(struct ring_buffer
*buffer
,
173 struct ftrace_event_call
*call
, void *rec
,
174 struct ring_buffer_event
*event
)
176 return filter_check_discard(call
, rec
, buffer
, event
);
178 EXPORT_SYMBOL_GPL(filter_current_check_discard
);
180 cycle_t
ftrace_now(int cpu
)
184 /* Early boot up does not have a buffer yet */
185 if (!global_trace
.buffer
)
186 return trace_clock_local();
188 ts
= ring_buffer_time_stamp(global_trace
.buffer
, cpu
);
189 ring_buffer_normalize_time_stamp(global_trace
.buffer
, cpu
, &ts
);
195 * The max_tr is used to snapshot the global_trace when a maximum
196 * latency is reached. Some tracers will use this to store a maximum
197 * trace while it continues examining live traces.
199 * The buffers for the max_tr are set up the same as the global_trace.
200 * When a snapshot is taken, the link list of the max_tr is swapped
201 * with the link list of the global_trace and the buffers are reset for
202 * the global_trace so the tracing can continue.
204 static struct trace_array max_tr
;
206 static DEFINE_PER_CPU(struct trace_array_cpu
, max_data
);
208 /* tracer_enabled is used to toggle activation of a tracer */
209 static int tracer_enabled
= 1;
212 * tracing_is_enabled - return tracer_enabled status
214 * This function is used by other tracers to know the status
215 * of the tracer_enabled flag. Tracers may use this function
216 * to know if it should enable their features when starting
217 * up. See irqsoff tracer for an example (start_irqsoff_tracer).
219 int tracing_is_enabled(void)
221 return tracer_enabled
;
225 * trace_buf_size is the size in bytes that is allocated
226 * for a buffer. Note, the number of bytes is always rounded
229 * This number is purposely set to a low number of 16384.
230 * If the dump on oops happens, it will be much appreciated
231 * to not have to wait for all that output. Anyway this can be
232 * boot time and run time configurable.
234 #define TRACE_BUF_SIZE_DEFAULT 1441792UL /* 16384 * 88 (sizeof(entry)) */
236 static unsigned long trace_buf_size
= TRACE_BUF_SIZE_DEFAULT
;
238 /* trace_types holds a link list of available tracers. */
239 static struct tracer
*trace_types __read_mostly
;
241 /* current_trace points to the tracer that is currently active */
242 static struct tracer
*current_trace __read_mostly
;
245 * trace_types_lock is used to protect the trace_types list.
246 * This lock is also used to keep user access serialized.
247 * Accesses from userspace will grab this lock while userspace
248 * activities happen inside the kernel.
250 static DEFINE_MUTEX(trace_types_lock
);
252 /* trace_wait is a waitqueue for tasks blocked on trace_poll */
253 static DECLARE_WAIT_QUEUE_HEAD(trace_wait
);
255 /* trace_flags holds trace_options default values */
256 unsigned long trace_flags
= TRACE_ITER_PRINT_PARENT
| TRACE_ITER_PRINTK
|
257 TRACE_ITER_ANNOTATE
| TRACE_ITER_CONTEXT_INFO
| TRACE_ITER_SLEEP_TIME
|
258 TRACE_ITER_GRAPH_TIME
;
260 static int trace_stop_count
;
261 static DEFINE_SPINLOCK(tracing_start_lock
);
264 * trace_wake_up - wake up tasks waiting for trace input
266 * Simply wakes up any task that is blocked on the trace_wait
267 * queue. These is used with trace_poll for tasks polling the trace.
269 void trace_wake_up(void)
273 if (trace_flags
& TRACE_ITER_BLOCK
)
276 * The runqueue_is_locked() can fail, but this is the best we
280 if (!runqueue_is_locked(cpu
))
281 wake_up(&trace_wait
);
285 static int __init
set_buf_size(char *str
)
287 unsigned long buf_size
;
291 buf_size
= memparse(str
, &str
);
292 /* nr_entries can not be zero */
295 trace_buf_size
= buf_size
;
298 __setup("trace_buf_size=", set_buf_size
);
300 unsigned long nsecs_to_usecs(unsigned long nsecs
)
305 /* These must match the bit postions in trace_iterator_flags */
306 static const char *trace_options
[] = {
335 { trace_clock_local
, "local" },
336 { trace_clock_global
, "global" },
342 * trace_parser_get_init - gets the buffer for trace parser
344 int trace_parser_get_init(struct trace_parser
*parser
, int size
)
346 memset(parser
, 0, sizeof(*parser
));
348 parser
->buffer
= kmalloc(size
, GFP_KERNEL
);
357 * trace_parser_put - frees the buffer for trace parser
359 void trace_parser_put(struct trace_parser
*parser
)
361 kfree(parser
->buffer
);
365 * trace_get_user - reads the user input string separated by space
366 * (matched by isspace(ch))
368 * For each string found the 'struct trace_parser' is updated,
369 * and the function returns.
371 * Returns number of bytes read.
373 * See kernel/trace/trace.h for 'struct trace_parser' details.
375 int trace_get_user(struct trace_parser
*parser
, const char __user
*ubuf
,
376 size_t cnt
, loff_t
*ppos
)
383 trace_parser_clear(parser
);
385 ret
= get_user(ch
, ubuf
++);
393 * The parser is not finished with the last write,
394 * continue reading the user input without skipping spaces.
397 /* skip white space */
398 while (cnt
&& isspace(ch
)) {
399 ret
= get_user(ch
, ubuf
++);
406 /* only spaces were written */
416 /* read the non-space input */
417 while (cnt
&& !isspace(ch
)) {
418 if (parser
->idx
< parser
->size
- 1)
419 parser
->buffer
[parser
->idx
++] = ch
;
424 ret
= get_user(ch
, ubuf
++);
431 /* We either got finished input or we have to wait for another call. */
433 parser
->buffer
[parser
->idx
] = 0;
434 parser
->cont
= false;
437 parser
->buffer
[parser
->idx
++] = ch
;
447 ssize_t
trace_seq_to_user(struct trace_seq
*s
, char __user
*ubuf
, size_t cnt
)
455 if (s
->len
<= s
->readpos
)
458 len
= s
->len
- s
->readpos
;
461 ret
= copy_to_user(ubuf
, s
->buffer
+ s
->readpos
, cnt
);
471 static ssize_t
trace_seq_to_buffer(struct trace_seq
*s
, void *buf
, size_t cnt
)
476 if (s
->len
<= s
->readpos
)
479 len
= s
->len
- s
->readpos
;
482 ret
= memcpy(buf
, s
->buffer
+ s
->readpos
, cnt
);
491 * ftrace_max_lock is used to protect the swapping of buffers
492 * when taking a max snapshot. The buffers themselves are
493 * protected by per_cpu spinlocks. But the action of the swap
494 * needs its own lock.
496 * This is defined as a raw_spinlock_t in order to help
497 * with performance when lockdep debugging is enabled.
499 * It is also used in other places outside the update_max_tr
500 * so it needs to be defined outside of the
501 * CONFIG_TRACER_MAX_TRACE.
503 static raw_spinlock_t ftrace_max_lock
=
504 (raw_spinlock_t
)__RAW_SPIN_LOCK_UNLOCKED
;
506 #ifdef CONFIG_TRACER_MAX_TRACE
507 unsigned long __read_mostly tracing_max_latency
;
508 unsigned long __read_mostly tracing_thresh
;
511 * Copy the new maximum trace into the separate maximum-trace
512 * structure. (this way the maximum trace is permanently saved,
513 * for later retrieval via /sys/kernel/debug/tracing/latency_trace)
516 __update_max_tr(struct trace_array
*tr
, struct task_struct
*tsk
, int cpu
)
518 struct trace_array_cpu
*data
= tr
->data
[cpu
];
519 struct trace_array_cpu
*max_data
= tr
->data
[cpu
];
522 max_tr
.time_start
= data
->preempt_timestamp
;
524 max_data
= max_tr
.data
[cpu
];
525 max_data
->saved_latency
= tracing_max_latency
;
526 max_data
->critical_start
= data
->critical_start
;
527 max_data
->critical_end
= data
->critical_end
;
529 memcpy(data
->comm
, tsk
->comm
, TASK_COMM_LEN
);
530 max_data
->pid
= tsk
->pid
;
531 max_data
->uid
= task_uid(tsk
);
532 max_data
->nice
= tsk
->static_prio
- 20 - MAX_RT_PRIO
;
533 max_data
->policy
= tsk
->policy
;
534 max_data
->rt_priority
= tsk
->rt_priority
;
536 /* record this tasks comm */
537 tracing_record_cmdline(tsk
);
541 * update_max_tr - snapshot all trace buffers from global_trace to max_tr
543 * @tsk: the task with the latency
544 * @cpu: The cpu that initiated the trace.
546 * Flip the buffers between the @tr and the max_tr and record information
547 * about which task was the cause of this latency.
550 update_max_tr(struct trace_array
*tr
, struct task_struct
*tsk
, int cpu
)
552 struct ring_buffer
*buf
= tr
->buffer
;
554 if (trace_stop_count
)
557 WARN_ON_ONCE(!irqs_disabled());
558 __raw_spin_lock(&ftrace_max_lock
);
560 tr
->buffer
= max_tr
.buffer
;
563 __update_max_tr(tr
, tsk
, cpu
);
564 __raw_spin_unlock(&ftrace_max_lock
);
568 * update_max_tr_single - only copy one trace over, and reset the rest
570 * @tsk - task with the latency
571 * @cpu - the cpu of the buffer to copy.
573 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
576 update_max_tr_single(struct trace_array
*tr
, struct task_struct
*tsk
, int cpu
)
580 if (trace_stop_count
)
583 WARN_ON_ONCE(!irqs_disabled());
584 __raw_spin_lock(&ftrace_max_lock
);
586 ftrace_disable_cpu();
588 ret
= ring_buffer_swap_cpu(max_tr
.buffer
, tr
->buffer
, cpu
);
592 * We failed to swap the buffer due to a commit taking
593 * place on this CPU. We fail to record, but we reset
594 * the max trace buffer (no one writes directly to it)
595 * and flag that it failed.
597 trace_array_printk(&max_tr
, _THIS_IP_
,
598 "Failed to swap buffers due to commit in progress\n");
603 WARN_ON_ONCE(ret
&& ret
!= -EAGAIN
&& ret
!= -EBUSY
);
605 __update_max_tr(tr
, tsk
, cpu
);
606 __raw_spin_unlock(&ftrace_max_lock
);
608 #endif /* CONFIG_TRACER_MAX_TRACE */
611 * register_tracer - register a tracer with the ftrace system.
612 * @type - the plugin for the tracer
614 * Register a new plugin tracer.
616 int register_tracer(struct tracer
*type
)
617 __releases(kernel_lock
)
618 __acquires(kernel_lock
)
624 pr_info("Tracer must have a name\n");
628 if (strlen(type
->name
) > MAX_TRACER_SIZE
) {
629 pr_info("Tracer has a name longer than %d\n", MAX_TRACER_SIZE
);
634 * When this gets called we hold the BKL which means that
635 * preemption is disabled. Various trace selftests however
636 * need to disable and enable preemption for successful tests.
637 * So we drop the BKL here and grab it after the tests again.
640 mutex_lock(&trace_types_lock
);
642 tracing_selftest_running
= true;
644 for (t
= trace_types
; t
; t
= t
->next
) {
645 if (strcmp(type
->name
, t
->name
) == 0) {
647 pr_info("Tracer %s already registered\n",
655 type
->set_flag
= &dummy_set_flag
;
657 type
->flags
= &dummy_tracer_flags
;
659 if (!type
->flags
->opts
)
660 type
->flags
->opts
= dummy_tracer_opt
;
661 if (!type
->wait_pipe
)
662 type
->wait_pipe
= default_wait_pipe
;
665 #ifdef CONFIG_FTRACE_STARTUP_TEST
666 if (type
->selftest
&& !tracing_selftest_disabled
) {
667 struct tracer
*saved_tracer
= current_trace
;
668 struct trace_array
*tr
= &global_trace
;
671 * Run a selftest on this tracer.
672 * Here we reset the trace buffer, and set the current
673 * tracer to be this tracer. The tracer can then run some
674 * internal tracing to verify that everything is in order.
675 * If we fail, we do not register this tracer.
677 tracing_reset_online_cpus(tr
);
679 current_trace
= type
;
680 /* the test is responsible for initializing and enabling */
681 pr_info("Testing tracer %s: ", type
->name
);
682 ret
= type
->selftest(type
, tr
);
683 /* the test is responsible for resetting too */
684 current_trace
= saved_tracer
;
686 printk(KERN_CONT
"FAILED!\n");
689 /* Only reset on passing, to avoid touching corrupted buffers */
690 tracing_reset_online_cpus(tr
);
692 printk(KERN_CONT
"PASSED\n");
696 type
->next
= trace_types
;
700 tracing_selftest_running
= false;
701 mutex_unlock(&trace_types_lock
);
703 if (ret
|| !default_bootup_tracer
)
706 if (strncmp(default_bootup_tracer
, type
->name
, MAX_TRACER_SIZE
))
709 printk(KERN_INFO
"Starting tracer '%s'\n", type
->name
);
710 /* Do we want this tracer to start on bootup? */
711 tracing_set_tracer(type
->name
);
712 default_bootup_tracer
= NULL
;
713 /* disable other selftests, since this will break it. */
714 tracing_selftest_disabled
= 1;
715 #ifdef CONFIG_FTRACE_STARTUP_TEST
716 printk(KERN_INFO
"Disabling FTRACE selftests due to running tracer '%s'\n",
725 void unregister_tracer(struct tracer
*type
)
729 mutex_lock(&trace_types_lock
);
730 for (t
= &trace_types
; *t
; t
= &(*t
)->next
) {
734 pr_info("Tracer %s not registered\n", type
->name
);
740 if (type
== current_trace
&& tracer_enabled
) {
743 if (current_trace
->stop
)
744 current_trace
->stop(&global_trace
);
745 current_trace
= &nop_trace
;
748 mutex_unlock(&trace_types_lock
);
751 static void __tracing_reset(struct trace_array
*tr
, int cpu
)
753 ftrace_disable_cpu();
754 ring_buffer_reset_cpu(tr
->buffer
, cpu
);
758 void tracing_reset(struct trace_array
*tr
, int cpu
)
760 struct ring_buffer
*buffer
= tr
->buffer
;
762 ring_buffer_record_disable(buffer
);
764 /* Make sure all commits have finished */
766 __tracing_reset(tr
, cpu
);
768 ring_buffer_record_enable(buffer
);
771 void tracing_reset_online_cpus(struct trace_array
*tr
)
773 struct ring_buffer
*buffer
= tr
->buffer
;
776 ring_buffer_record_disable(buffer
);
778 /* Make sure all commits have finished */
781 tr
->time_start
= ftrace_now(tr
->cpu
);
783 for_each_online_cpu(cpu
)
784 __tracing_reset(tr
, cpu
);
786 ring_buffer_record_enable(buffer
);
789 void tracing_reset_current(int cpu
)
791 tracing_reset(&global_trace
, cpu
);
794 void tracing_reset_current_online_cpus(void)
796 tracing_reset_online_cpus(&global_trace
);
799 #define SAVED_CMDLINES 128
800 #define NO_CMDLINE_MAP UINT_MAX
801 static unsigned map_pid_to_cmdline
[PID_MAX_DEFAULT
+1];
802 static unsigned map_cmdline_to_pid
[SAVED_CMDLINES
];
803 static char saved_cmdlines
[SAVED_CMDLINES
][TASK_COMM_LEN
];
804 static int cmdline_idx
;
805 static raw_spinlock_t trace_cmdline_lock
= __RAW_SPIN_LOCK_UNLOCKED
;
807 /* temporary disable recording */
808 static atomic_t trace_record_cmdline_disabled __read_mostly
;
810 static void trace_init_cmdlines(void)
812 memset(&map_pid_to_cmdline
, NO_CMDLINE_MAP
, sizeof(map_pid_to_cmdline
));
813 memset(&map_cmdline_to_pid
, NO_CMDLINE_MAP
, sizeof(map_cmdline_to_pid
));
817 int is_tracing_stopped(void)
819 return trace_stop_count
;
823 * ftrace_off_permanent - disable all ftrace code permanently
825 * This should only be called when a serious anomally has
826 * been detected. This will turn off the function tracing,
827 * ring buffers, and other tracing utilites. It takes no
828 * locks and can be called from any context.
830 void ftrace_off_permanent(void)
832 tracing_disabled
= 1;
834 tracing_off_permanent();
838 * tracing_start - quick start of the tracer
840 * If tracing is enabled but was stopped by tracing_stop,
841 * this will start the tracer back up.
843 void tracing_start(void)
845 struct ring_buffer
*buffer
;
848 if (tracing_disabled
)
851 spin_lock_irqsave(&tracing_start_lock
, flags
);
852 if (--trace_stop_count
) {
853 if (trace_stop_count
< 0) {
854 /* Someone screwed up their debugging */
856 trace_stop_count
= 0;
862 buffer
= global_trace
.buffer
;
864 ring_buffer_record_enable(buffer
);
866 buffer
= max_tr
.buffer
;
868 ring_buffer_record_enable(buffer
);
872 spin_unlock_irqrestore(&tracing_start_lock
, flags
);
876 * tracing_stop - quick stop of the tracer
878 * Light weight way to stop tracing. Use in conjunction with
881 void tracing_stop(void)
883 struct ring_buffer
*buffer
;
887 spin_lock_irqsave(&tracing_start_lock
, flags
);
888 if (trace_stop_count
++)
891 buffer
= global_trace
.buffer
;
893 ring_buffer_record_disable(buffer
);
895 buffer
= max_tr
.buffer
;
897 ring_buffer_record_disable(buffer
);
900 spin_unlock_irqrestore(&tracing_start_lock
, flags
);
903 void trace_stop_cmdline_recording(void);
905 static void trace_save_cmdline(struct task_struct
*tsk
)
909 if (!tsk
->pid
|| unlikely(tsk
->pid
> PID_MAX_DEFAULT
))
913 * It's not the end of the world if we don't get
914 * the lock, but we also don't want to spin
915 * nor do we want to disable interrupts,
916 * so if we miss here, then better luck next time.
918 if (!__raw_spin_trylock(&trace_cmdline_lock
))
921 idx
= map_pid_to_cmdline
[tsk
->pid
];
922 if (idx
== NO_CMDLINE_MAP
) {
923 idx
= (cmdline_idx
+ 1) % SAVED_CMDLINES
;
926 * Check whether the cmdline buffer at idx has a pid
927 * mapped. We are going to overwrite that entry so we
928 * need to clear the map_pid_to_cmdline. Otherwise we
929 * would read the new comm for the old pid.
931 pid
= map_cmdline_to_pid
[idx
];
932 if (pid
!= NO_CMDLINE_MAP
)
933 map_pid_to_cmdline
[pid
] = NO_CMDLINE_MAP
;
935 map_cmdline_to_pid
[idx
] = tsk
->pid
;
936 map_pid_to_cmdline
[tsk
->pid
] = idx
;
941 memcpy(&saved_cmdlines
[idx
], tsk
->comm
, TASK_COMM_LEN
);
943 __raw_spin_unlock(&trace_cmdline_lock
);
946 void trace_find_cmdline(int pid
, char comm
[])
951 strcpy(comm
, "<idle>");
955 if (pid
> PID_MAX_DEFAULT
) {
956 strcpy(comm
, "<...>");
961 __raw_spin_lock(&trace_cmdline_lock
);
962 map
= map_pid_to_cmdline
[pid
];
963 if (map
!= NO_CMDLINE_MAP
)
964 strcpy(comm
, saved_cmdlines
[map
]);
966 strcpy(comm
, "<...>");
968 __raw_spin_unlock(&trace_cmdline_lock
);
972 void tracing_record_cmdline(struct task_struct
*tsk
)
974 if (atomic_read(&trace_record_cmdline_disabled
) || !tracer_enabled
||
978 trace_save_cmdline(tsk
);
982 tracing_generic_entry_update(struct trace_entry
*entry
, unsigned long flags
,
985 struct task_struct
*tsk
= current
;
987 entry
->preempt_count
= pc
& 0xff;
988 entry
->pid
= (tsk
) ? tsk
->pid
: 0;
989 entry
->lock_depth
= (tsk
) ? tsk
->lock_depth
: 0;
991 #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
992 (irqs_disabled_flags(flags
) ? TRACE_FLAG_IRQS_OFF
: 0) |
994 TRACE_FLAG_IRQS_NOSUPPORT
|
996 ((pc
& HARDIRQ_MASK
) ? TRACE_FLAG_HARDIRQ
: 0) |
997 ((pc
& SOFTIRQ_MASK
) ? TRACE_FLAG_SOFTIRQ
: 0) |
998 (need_resched() ? TRACE_FLAG_NEED_RESCHED
: 0);
1000 EXPORT_SYMBOL_GPL(tracing_generic_entry_update
);
1002 struct ring_buffer_event
*
1003 trace_buffer_lock_reserve(struct ring_buffer
*buffer
,
1006 unsigned long flags
, int pc
)
1008 struct ring_buffer_event
*event
;
1010 event
= ring_buffer_lock_reserve(buffer
, len
);
1011 if (event
!= NULL
) {
1012 struct trace_entry
*ent
= ring_buffer_event_data(event
);
1014 tracing_generic_entry_update(ent
, flags
, pc
);
1022 __trace_buffer_unlock_commit(struct ring_buffer
*buffer
,
1023 struct ring_buffer_event
*event
,
1024 unsigned long flags
, int pc
,
1027 ring_buffer_unlock_commit(buffer
, event
);
1029 ftrace_trace_stack(buffer
, flags
, 6, pc
);
1030 ftrace_trace_userstack(buffer
, flags
, pc
);
1036 void trace_buffer_unlock_commit(struct ring_buffer
*buffer
,
1037 struct ring_buffer_event
*event
,
1038 unsigned long flags
, int pc
)
1040 __trace_buffer_unlock_commit(buffer
, event
, flags
, pc
, 1);
1043 struct ring_buffer_event
*
1044 trace_current_buffer_lock_reserve(struct ring_buffer
**current_rb
,
1045 int type
, unsigned long len
,
1046 unsigned long flags
, int pc
)
1048 *current_rb
= global_trace
.buffer
;
1049 return trace_buffer_lock_reserve(*current_rb
,
1050 type
, len
, flags
, pc
);
1052 EXPORT_SYMBOL_GPL(trace_current_buffer_lock_reserve
);
1054 void trace_current_buffer_unlock_commit(struct ring_buffer
*buffer
,
1055 struct ring_buffer_event
*event
,
1056 unsigned long flags
, int pc
)
1058 __trace_buffer_unlock_commit(buffer
, event
, flags
, pc
, 1);
1060 EXPORT_SYMBOL_GPL(trace_current_buffer_unlock_commit
);
1062 void trace_nowake_buffer_unlock_commit(struct ring_buffer
*buffer
,
1063 struct ring_buffer_event
*event
,
1064 unsigned long flags
, int pc
)
1066 __trace_buffer_unlock_commit(buffer
, event
, flags
, pc
, 0);
1068 EXPORT_SYMBOL_GPL(trace_nowake_buffer_unlock_commit
);
1070 void trace_current_buffer_discard_commit(struct ring_buffer
*buffer
,
1071 struct ring_buffer_event
*event
)
1073 ring_buffer_discard_commit(buffer
, event
);
1075 EXPORT_SYMBOL_GPL(trace_current_buffer_discard_commit
);
1078 trace_function(struct trace_array
*tr
,
1079 unsigned long ip
, unsigned long parent_ip
, unsigned long flags
,
1082 struct ftrace_event_call
*call
= &event_function
;
1083 struct ring_buffer
*buffer
= tr
->buffer
;
1084 struct ring_buffer_event
*event
;
1085 struct ftrace_entry
*entry
;
1087 /* If we are reading the ring buffer, don't trace */
1088 if (unlikely(local_read(&__get_cpu_var(ftrace_cpu_disabled
))))
1091 event
= trace_buffer_lock_reserve(buffer
, TRACE_FN
, sizeof(*entry
),
1095 entry
= ring_buffer_event_data(event
);
1097 entry
->parent_ip
= parent_ip
;
1099 if (!filter_check_discard(call
, entry
, buffer
, event
))
1100 ring_buffer_unlock_commit(buffer
, event
);
1104 ftrace(struct trace_array
*tr
, struct trace_array_cpu
*data
,
1105 unsigned long ip
, unsigned long parent_ip
, unsigned long flags
,
1108 if (likely(!atomic_read(&data
->disabled
)))
1109 trace_function(tr
, ip
, parent_ip
, flags
, pc
);
1112 #ifdef CONFIG_STACKTRACE
1113 static void __ftrace_trace_stack(struct ring_buffer
*buffer
,
1114 unsigned long flags
,
1117 struct ftrace_event_call
*call
= &event_kernel_stack
;
1118 struct ring_buffer_event
*event
;
1119 struct stack_entry
*entry
;
1120 struct stack_trace trace
;
1122 event
= trace_buffer_lock_reserve(buffer
, TRACE_STACK
,
1123 sizeof(*entry
), flags
, pc
);
1126 entry
= ring_buffer_event_data(event
);
1127 memset(&entry
->caller
, 0, sizeof(entry
->caller
));
1129 trace
.nr_entries
= 0;
1130 trace
.max_entries
= FTRACE_STACK_ENTRIES
;
1132 trace
.entries
= entry
->caller
;
1134 save_stack_trace(&trace
);
1135 if (!filter_check_discard(call
, entry
, buffer
, event
))
1136 ring_buffer_unlock_commit(buffer
, event
);
1139 void ftrace_trace_stack(struct ring_buffer
*buffer
, unsigned long flags
,
1142 if (!(trace_flags
& TRACE_ITER_STACKTRACE
))
1145 __ftrace_trace_stack(buffer
, flags
, skip
, pc
);
1148 void __trace_stack(struct trace_array
*tr
, unsigned long flags
, int skip
,
1151 __ftrace_trace_stack(tr
->buffer
, flags
, skip
, pc
);
1155 ftrace_trace_userstack(struct ring_buffer
*buffer
, unsigned long flags
, int pc
)
1157 struct ftrace_event_call
*call
= &event_user_stack
;
1158 struct ring_buffer_event
*event
;
1159 struct userstack_entry
*entry
;
1160 struct stack_trace trace
;
1162 if (!(trace_flags
& TRACE_ITER_USERSTACKTRACE
))
1165 event
= trace_buffer_lock_reserve(buffer
, TRACE_USER_STACK
,
1166 sizeof(*entry
), flags
, pc
);
1169 entry
= ring_buffer_event_data(event
);
1171 entry
->tgid
= current
->tgid
;
1172 memset(&entry
->caller
, 0, sizeof(entry
->caller
));
1174 trace
.nr_entries
= 0;
1175 trace
.max_entries
= FTRACE_STACK_ENTRIES
;
1177 trace
.entries
= entry
->caller
;
1179 save_stack_trace_user(&trace
);
1180 if (!filter_check_discard(call
, entry
, buffer
, event
))
1181 ring_buffer_unlock_commit(buffer
, event
);
1185 static void __trace_userstack(struct trace_array
*tr
, unsigned long flags
)
1187 ftrace_trace_userstack(tr
, flags
, preempt_count());
1191 #endif /* CONFIG_STACKTRACE */
1194 ftrace_trace_special(void *__tr
,
1195 unsigned long arg1
, unsigned long arg2
, unsigned long arg3
,
1198 struct ftrace_event_call
*call
= &event_special
;
1199 struct ring_buffer_event
*event
;
1200 struct trace_array
*tr
= __tr
;
1201 struct ring_buffer
*buffer
= tr
->buffer
;
1202 struct special_entry
*entry
;
1204 event
= trace_buffer_lock_reserve(buffer
, TRACE_SPECIAL
,
1205 sizeof(*entry
), 0, pc
);
1208 entry
= ring_buffer_event_data(event
);
1213 if (!filter_check_discard(call
, entry
, buffer
, event
))
1214 trace_buffer_unlock_commit(buffer
, event
, 0, pc
);
1218 __trace_special(void *__tr
, void *__data
,
1219 unsigned long arg1
, unsigned long arg2
, unsigned long arg3
)
1221 ftrace_trace_special(__tr
, arg1
, arg2
, arg3
, preempt_count());
1225 ftrace_special(unsigned long arg1
, unsigned long arg2
, unsigned long arg3
)
1227 struct trace_array
*tr
= &global_trace
;
1228 struct trace_array_cpu
*data
;
1229 unsigned long flags
;
1233 if (tracing_disabled
)
1236 pc
= preempt_count();
1237 local_irq_save(flags
);
1238 cpu
= raw_smp_processor_id();
1239 data
= tr
->data
[cpu
];
1241 if (likely(atomic_inc_return(&data
->disabled
) == 1))
1242 ftrace_trace_special(tr
, arg1
, arg2
, arg3
, pc
);
1244 atomic_dec(&data
->disabled
);
1245 local_irq_restore(flags
);
1249 * trace_vbprintk - write binary msg to tracing buffer
1252 int trace_vbprintk(unsigned long ip
, const char *fmt
, va_list args
)
1254 static raw_spinlock_t trace_buf_lock
=
1255 (raw_spinlock_t
)__RAW_SPIN_LOCK_UNLOCKED
;
1256 static u32 trace_buf
[TRACE_BUF_SIZE
];
1258 struct ftrace_event_call
*call
= &event_bprint
;
1259 struct ring_buffer_event
*event
;
1260 struct ring_buffer
*buffer
;
1261 struct trace_array
*tr
= &global_trace
;
1262 struct trace_array_cpu
*data
;
1263 struct bprint_entry
*entry
;
1264 unsigned long flags
;
1267 int cpu
, len
= 0, size
, pc
;
1269 if (unlikely(tracing_selftest_running
|| tracing_disabled
))
1272 /* Don't pollute graph traces with trace_vprintk internals */
1273 pause_graph_tracing();
1275 pc
= preempt_count();
1276 resched
= ftrace_preempt_disable();
1277 cpu
= raw_smp_processor_id();
1278 data
= tr
->data
[cpu
];
1280 disable
= atomic_inc_return(&data
->disabled
);
1281 if (unlikely(disable
!= 1))
1284 /* Lockdep uses trace_printk for lock tracing */
1285 local_irq_save(flags
);
1286 __raw_spin_lock(&trace_buf_lock
);
1287 len
= vbin_printf(trace_buf
, TRACE_BUF_SIZE
, fmt
, args
);
1289 if (len
> TRACE_BUF_SIZE
|| len
< 0)
1292 size
= sizeof(*entry
) + sizeof(u32
) * len
;
1293 buffer
= tr
->buffer
;
1294 event
= trace_buffer_lock_reserve(buffer
, TRACE_BPRINT
, size
,
1298 entry
= ring_buffer_event_data(event
);
1302 memcpy(entry
->buf
, trace_buf
, sizeof(u32
) * len
);
1303 if (!filter_check_discard(call
, entry
, buffer
, event
))
1304 ring_buffer_unlock_commit(buffer
, event
);
1307 __raw_spin_unlock(&trace_buf_lock
);
1308 local_irq_restore(flags
);
1311 atomic_dec_return(&data
->disabled
);
1312 ftrace_preempt_enable(resched
);
1313 unpause_graph_tracing();
1317 EXPORT_SYMBOL_GPL(trace_vbprintk
);
1319 int trace_array_printk(struct trace_array
*tr
,
1320 unsigned long ip
, const char *fmt
, ...)
1325 if (!(trace_flags
& TRACE_ITER_PRINTK
))
1329 ret
= trace_array_vprintk(tr
, ip
, fmt
, ap
);
1334 int trace_array_vprintk(struct trace_array
*tr
,
1335 unsigned long ip
, const char *fmt
, va_list args
)
1337 static raw_spinlock_t trace_buf_lock
= __RAW_SPIN_LOCK_UNLOCKED
;
1338 static char trace_buf
[TRACE_BUF_SIZE
];
1340 struct ftrace_event_call
*call
= &event_print
;
1341 struct ring_buffer_event
*event
;
1342 struct ring_buffer
*buffer
;
1343 struct trace_array_cpu
*data
;
1344 int cpu
, len
= 0, size
, pc
;
1345 struct print_entry
*entry
;
1346 unsigned long irq_flags
;
1349 if (tracing_disabled
|| tracing_selftest_running
)
1352 pc
= preempt_count();
1353 preempt_disable_notrace();
1354 cpu
= raw_smp_processor_id();
1355 data
= tr
->data
[cpu
];
1357 disable
= atomic_inc_return(&data
->disabled
);
1358 if (unlikely(disable
!= 1))
1361 pause_graph_tracing();
1362 raw_local_irq_save(irq_flags
);
1363 __raw_spin_lock(&trace_buf_lock
);
1364 len
= vsnprintf(trace_buf
, TRACE_BUF_SIZE
, fmt
, args
);
1366 len
= min(len
, TRACE_BUF_SIZE
-1);
1369 size
= sizeof(*entry
) + len
+ 1;
1370 buffer
= tr
->buffer
;
1371 event
= trace_buffer_lock_reserve(buffer
, TRACE_PRINT
, size
,
1375 entry
= ring_buffer_event_data(event
);
1378 memcpy(&entry
->buf
, trace_buf
, len
);
1379 entry
->buf
[len
] = 0;
1380 if (!filter_check_discard(call
, entry
, buffer
, event
))
1381 ring_buffer_unlock_commit(buffer
, event
);
1384 __raw_spin_unlock(&trace_buf_lock
);
1385 raw_local_irq_restore(irq_flags
);
1386 unpause_graph_tracing();
1388 atomic_dec_return(&data
->disabled
);
1389 preempt_enable_notrace();
1394 int trace_vprintk(unsigned long ip
, const char *fmt
, va_list args
)
1396 return trace_array_vprintk(&global_trace
, ip
, fmt
, args
);
1398 EXPORT_SYMBOL_GPL(trace_vprintk
);
1400 enum trace_file_type
{
1401 TRACE_FILE_LAT_FMT
= 1,
1402 TRACE_FILE_ANNOTATE
= 2,
1405 static void trace_iterator_increment(struct trace_iterator
*iter
)
1407 /* Don't allow ftrace to trace into the ring buffers */
1408 ftrace_disable_cpu();
1411 if (iter
->buffer_iter
[iter
->cpu
])
1412 ring_buffer_read(iter
->buffer_iter
[iter
->cpu
], NULL
);
1414 ftrace_enable_cpu();
1417 static struct trace_entry
*
1418 peek_next_entry(struct trace_iterator
*iter
, int cpu
, u64
*ts
)
1420 struct ring_buffer_event
*event
;
1421 struct ring_buffer_iter
*buf_iter
= iter
->buffer_iter
[cpu
];
1423 /* Don't allow ftrace to trace into the ring buffers */
1424 ftrace_disable_cpu();
1427 event
= ring_buffer_iter_peek(buf_iter
, ts
);
1429 event
= ring_buffer_peek(iter
->tr
->buffer
, cpu
, ts
);
1431 ftrace_enable_cpu();
1433 return event
? ring_buffer_event_data(event
) : NULL
;
1436 static struct trace_entry
*
1437 __find_next_entry(struct trace_iterator
*iter
, int *ent_cpu
, u64
*ent_ts
)
1439 struct ring_buffer
*buffer
= iter
->tr
->buffer
;
1440 struct trace_entry
*ent
, *next
= NULL
;
1441 int cpu_file
= iter
->cpu_file
;
1442 u64 next_ts
= 0, ts
;
1447 * If we are in a per_cpu trace file, don't bother by iterating over
1448 * all cpu and peek directly.
1450 if (cpu_file
> TRACE_PIPE_ALL_CPU
) {
1451 if (ring_buffer_empty_cpu(buffer
, cpu_file
))
1453 ent
= peek_next_entry(iter
, cpu_file
, ent_ts
);
1455 *ent_cpu
= cpu_file
;
1460 for_each_tracing_cpu(cpu
) {
1462 if (ring_buffer_empty_cpu(buffer
, cpu
))
1465 ent
= peek_next_entry(iter
, cpu
, &ts
);
1468 * Pick the entry with the smallest timestamp:
1470 if (ent
&& (!next
|| ts
< next_ts
)) {
1478 *ent_cpu
= next_cpu
;
1486 /* Find the next real entry, without updating the iterator itself */
1487 struct trace_entry
*trace_find_next_entry(struct trace_iterator
*iter
,
1488 int *ent_cpu
, u64
*ent_ts
)
1490 return __find_next_entry(iter
, ent_cpu
, ent_ts
);
1493 /* Find the next real entry, and increment the iterator to the next entry */
1494 static void *find_next_entry_inc(struct trace_iterator
*iter
)
1496 iter
->ent
= __find_next_entry(iter
, &iter
->cpu
, &iter
->ts
);
1499 trace_iterator_increment(iter
);
1501 return iter
->ent
? iter
: NULL
;
1504 static void trace_consume(struct trace_iterator
*iter
)
1506 /* Don't allow ftrace to trace into the ring buffers */
1507 ftrace_disable_cpu();
1508 ring_buffer_consume(iter
->tr
->buffer
, iter
->cpu
, &iter
->ts
);
1509 ftrace_enable_cpu();
1512 static void *s_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
1514 struct trace_iterator
*iter
= m
->private;
1520 /* can't go backwards */
1525 ent
= find_next_entry_inc(iter
);
1529 while (ent
&& iter
->idx
< i
)
1530 ent
= find_next_entry_inc(iter
);
1537 static void tracing_iter_reset(struct trace_iterator
*iter
, int cpu
)
1539 struct trace_array
*tr
= iter
->tr
;
1540 struct ring_buffer_event
*event
;
1541 struct ring_buffer_iter
*buf_iter
;
1542 unsigned long entries
= 0;
1545 tr
->data
[cpu
]->skipped_entries
= 0;
1547 if (!iter
->buffer_iter
[cpu
])
1550 buf_iter
= iter
->buffer_iter
[cpu
];
1551 ring_buffer_iter_reset(buf_iter
);
1554 * We could have the case with the max latency tracers
1555 * that a reset never took place on a cpu. This is evident
1556 * by the timestamp being before the start of the buffer.
1558 while ((event
= ring_buffer_iter_peek(buf_iter
, &ts
))) {
1559 if (ts
>= iter
->tr
->time_start
)
1562 ring_buffer_read(buf_iter
, NULL
);
1565 tr
->data
[cpu
]->skipped_entries
= entries
;
1569 * No necessary locking here. The worst thing which can
1570 * happen is loosing events consumed at the same time
1571 * by a trace_pipe reader.
1572 * Other than that, we don't risk to crash the ring buffer
1573 * because it serializes the readers.
1575 * The current tracer is copied to avoid a global locking
1578 static void *s_start(struct seq_file
*m
, loff_t
*pos
)
1580 struct trace_iterator
*iter
= m
->private;
1581 static struct tracer
*old_tracer
;
1582 int cpu_file
= iter
->cpu_file
;
1587 /* copy the tracer to avoid using a global lock all around */
1588 mutex_lock(&trace_types_lock
);
1589 if (unlikely(old_tracer
!= current_trace
&& current_trace
)) {
1590 old_tracer
= current_trace
;
1591 *iter
->trace
= *current_trace
;
1593 mutex_unlock(&trace_types_lock
);
1595 atomic_inc(&trace_record_cmdline_disabled
);
1597 if (*pos
!= iter
->pos
) {
1602 ftrace_disable_cpu();
1604 if (cpu_file
== TRACE_PIPE_ALL_CPU
) {
1605 for_each_tracing_cpu(cpu
)
1606 tracing_iter_reset(iter
, cpu
);
1608 tracing_iter_reset(iter
, cpu_file
);
1610 ftrace_enable_cpu();
1612 for (p
= iter
; p
&& l
< *pos
; p
= s_next(m
, p
, &l
))
1617 p
= s_next(m
, p
, &l
);
1620 trace_event_read_lock();
1624 static void s_stop(struct seq_file
*m
, void *p
)
1626 atomic_dec(&trace_record_cmdline_disabled
);
1627 trace_event_read_unlock();
1630 static void print_lat_help_header(struct seq_file
*m
)
1632 seq_puts(m
, "# _------=> CPU# \n");
1633 seq_puts(m
, "# / _-----=> irqs-off \n");
1634 seq_puts(m
, "# | / _----=> need-resched \n");
1635 seq_puts(m
, "# || / _---=> hardirq/softirq \n");
1636 seq_puts(m
, "# ||| / _--=> preempt-depth \n");
1637 seq_puts(m
, "# |||| /_--=> lock-depth \n");
1638 seq_puts(m
, "# |||||/ delay \n");
1639 seq_puts(m
, "# cmd pid |||||| time | caller \n");
1640 seq_puts(m
, "# \\ / |||||| \\ | / \n");
1643 static void print_func_help_header(struct seq_file
*m
)
1645 seq_puts(m
, "# TASK-PID CPU# TIMESTAMP FUNCTION\n");
1646 seq_puts(m
, "# | | | | |\n");
1651 print_trace_header(struct seq_file
*m
, struct trace_iterator
*iter
)
1653 unsigned long sym_flags
= (trace_flags
& TRACE_ITER_SYM_MASK
);
1654 struct trace_array
*tr
= iter
->tr
;
1655 struct trace_array_cpu
*data
= tr
->data
[tr
->cpu
];
1656 struct tracer
*type
= current_trace
;
1657 unsigned long entries
= 0;
1658 unsigned long total
= 0;
1659 unsigned long count
;
1660 const char *name
= "preemption";
1667 for_each_tracing_cpu(cpu
) {
1668 count
= ring_buffer_entries_cpu(tr
->buffer
, cpu
);
1670 * If this buffer has skipped entries, then we hold all
1671 * entries for the trace and we need to ignore the
1672 * ones before the time stamp.
1674 if (tr
->data
[cpu
]->skipped_entries
) {
1675 count
-= tr
->data
[cpu
]->skipped_entries
;
1676 /* total is the same as the entries */
1680 ring_buffer_overrun_cpu(tr
->buffer
, cpu
);
1684 seq_printf(m
, "# %s latency trace v1.1.5 on %s\n",
1686 seq_puts(m
, "# -----------------------------------"
1687 "---------------------------------\n");
1688 seq_printf(m
, "# latency: %lu us, #%lu/%lu, CPU#%d |"
1689 " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
1690 nsecs_to_usecs(data
->saved_latency
),
1694 #if defined(CONFIG_PREEMPT_NONE)
1696 #elif defined(CONFIG_PREEMPT_VOLUNTARY)
1698 #elif defined(CONFIG_PREEMPT)
1703 /* These are reserved for later use */
1706 seq_printf(m
, " #P:%d)\n", num_online_cpus());
1710 seq_puts(m
, "# -----------------\n");
1711 seq_printf(m
, "# | task: %.16s-%d "
1712 "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
1713 data
->comm
, data
->pid
, data
->uid
, data
->nice
,
1714 data
->policy
, data
->rt_priority
);
1715 seq_puts(m
, "# -----------------\n");
1717 if (data
->critical_start
) {
1718 seq_puts(m
, "# => started at: ");
1719 seq_print_ip_sym(&iter
->seq
, data
->critical_start
, sym_flags
);
1720 trace_print_seq(m
, &iter
->seq
);
1721 seq_puts(m
, "\n# => ended at: ");
1722 seq_print_ip_sym(&iter
->seq
, data
->critical_end
, sym_flags
);
1723 trace_print_seq(m
, &iter
->seq
);
1724 seq_puts(m
, "\n#\n");
1730 static void test_cpu_buff_start(struct trace_iterator
*iter
)
1732 struct trace_seq
*s
= &iter
->seq
;
1734 if (!(trace_flags
& TRACE_ITER_ANNOTATE
))
1737 if (!(iter
->iter_flags
& TRACE_FILE_ANNOTATE
))
1740 if (cpumask_test_cpu(iter
->cpu
, iter
->started
))
1743 if (iter
->tr
->data
[iter
->cpu
]->skipped_entries
)
1746 cpumask_set_cpu(iter
->cpu
, iter
->started
);
1748 /* Don't print started cpu buffer for the first entry of the trace */
1750 trace_seq_printf(s
, "##### CPU %u buffer started ####\n",
1754 static enum print_line_t
print_trace_fmt(struct trace_iterator
*iter
)
1756 struct trace_seq
*s
= &iter
->seq
;
1757 unsigned long sym_flags
= (trace_flags
& TRACE_ITER_SYM_MASK
);
1758 struct trace_entry
*entry
;
1759 struct trace_event
*event
;
1763 test_cpu_buff_start(iter
);
1765 event
= ftrace_find_event(entry
->type
);
1767 if (trace_flags
& TRACE_ITER_CONTEXT_INFO
) {
1768 if (iter
->iter_flags
& TRACE_FILE_LAT_FMT
) {
1769 if (!trace_print_lat_context(iter
))
1772 if (!trace_print_context(iter
))
1778 return event
->trace(iter
, sym_flags
);
1780 if (!trace_seq_printf(s
, "Unknown type %d\n", entry
->type
))
1783 return TRACE_TYPE_HANDLED
;
1785 return TRACE_TYPE_PARTIAL_LINE
;
1788 static enum print_line_t
print_raw_fmt(struct trace_iterator
*iter
)
1790 struct trace_seq
*s
= &iter
->seq
;
1791 struct trace_entry
*entry
;
1792 struct trace_event
*event
;
1796 if (trace_flags
& TRACE_ITER_CONTEXT_INFO
) {
1797 if (!trace_seq_printf(s
, "%d %d %llu ",
1798 entry
->pid
, iter
->cpu
, iter
->ts
))
1802 event
= ftrace_find_event(entry
->type
);
1804 return event
->raw(iter
, 0);
1806 if (!trace_seq_printf(s
, "%d ?\n", entry
->type
))
1809 return TRACE_TYPE_HANDLED
;
1811 return TRACE_TYPE_PARTIAL_LINE
;
1814 static enum print_line_t
print_hex_fmt(struct trace_iterator
*iter
)
1816 struct trace_seq
*s
= &iter
->seq
;
1817 unsigned char newline
= '\n';
1818 struct trace_entry
*entry
;
1819 struct trace_event
*event
;
1823 if (trace_flags
& TRACE_ITER_CONTEXT_INFO
) {
1824 SEQ_PUT_HEX_FIELD_RET(s
, entry
->pid
);
1825 SEQ_PUT_HEX_FIELD_RET(s
, iter
->cpu
);
1826 SEQ_PUT_HEX_FIELD_RET(s
, iter
->ts
);
1829 event
= ftrace_find_event(entry
->type
);
1831 enum print_line_t ret
= event
->hex(iter
, 0);
1832 if (ret
!= TRACE_TYPE_HANDLED
)
1836 SEQ_PUT_FIELD_RET(s
, newline
);
1838 return TRACE_TYPE_HANDLED
;
1841 static enum print_line_t
print_bin_fmt(struct trace_iterator
*iter
)
1843 struct trace_seq
*s
= &iter
->seq
;
1844 struct trace_entry
*entry
;
1845 struct trace_event
*event
;
1849 if (trace_flags
& TRACE_ITER_CONTEXT_INFO
) {
1850 SEQ_PUT_FIELD_RET(s
, entry
->pid
);
1851 SEQ_PUT_FIELD_RET(s
, iter
->cpu
);
1852 SEQ_PUT_FIELD_RET(s
, iter
->ts
);
1855 event
= ftrace_find_event(entry
->type
);
1856 return event
? event
->binary(iter
, 0) : TRACE_TYPE_HANDLED
;
1859 static int trace_empty(struct trace_iterator
*iter
)
1863 /* If we are looking at one CPU buffer, only check that one */
1864 if (iter
->cpu_file
!= TRACE_PIPE_ALL_CPU
) {
1865 cpu
= iter
->cpu_file
;
1866 if (iter
->buffer_iter
[cpu
]) {
1867 if (!ring_buffer_iter_empty(iter
->buffer_iter
[cpu
]))
1870 if (!ring_buffer_empty_cpu(iter
->tr
->buffer
, cpu
))
1876 for_each_tracing_cpu(cpu
) {
1877 if (iter
->buffer_iter
[cpu
]) {
1878 if (!ring_buffer_iter_empty(iter
->buffer_iter
[cpu
]))
1881 if (!ring_buffer_empty_cpu(iter
->tr
->buffer
, cpu
))
1889 /* Called with trace_event_read_lock() held. */
1890 static enum print_line_t
print_trace_line(struct trace_iterator
*iter
)
1892 enum print_line_t ret
;
1894 if (iter
->trace
&& iter
->trace
->print_line
) {
1895 ret
= iter
->trace
->print_line(iter
);
1896 if (ret
!= TRACE_TYPE_UNHANDLED
)
1900 if (iter
->ent
->type
== TRACE_BPRINT
&&
1901 trace_flags
& TRACE_ITER_PRINTK
&&
1902 trace_flags
& TRACE_ITER_PRINTK_MSGONLY
)
1903 return trace_print_bprintk_msg_only(iter
);
1905 if (iter
->ent
->type
== TRACE_PRINT
&&
1906 trace_flags
& TRACE_ITER_PRINTK
&&
1907 trace_flags
& TRACE_ITER_PRINTK_MSGONLY
)
1908 return trace_print_printk_msg_only(iter
);
1910 if (trace_flags
& TRACE_ITER_BIN
)
1911 return print_bin_fmt(iter
);
1913 if (trace_flags
& TRACE_ITER_HEX
)
1914 return print_hex_fmt(iter
);
1916 if (trace_flags
& TRACE_ITER_RAW
)
1917 return print_raw_fmt(iter
);
1919 return print_trace_fmt(iter
);
1922 static int s_show(struct seq_file
*m
, void *v
)
1924 struct trace_iterator
*iter
= v
;
1926 if (iter
->ent
== NULL
) {
1928 seq_printf(m
, "# tracer: %s\n", iter
->trace
->name
);
1931 if (iter
->trace
&& iter
->trace
->print_header
)
1932 iter
->trace
->print_header(m
);
1933 else if (iter
->iter_flags
& TRACE_FILE_LAT_FMT
) {
1934 /* print nothing if the buffers are empty */
1935 if (trace_empty(iter
))
1937 print_trace_header(m
, iter
);
1938 if (!(trace_flags
& TRACE_ITER_VERBOSE
))
1939 print_lat_help_header(m
);
1941 if (!(trace_flags
& TRACE_ITER_VERBOSE
))
1942 print_func_help_header(m
);
1945 print_trace_line(iter
);
1946 trace_print_seq(m
, &iter
->seq
);
1952 static const struct seq_operations tracer_seq_ops
= {
1959 static struct trace_iterator
*
1960 __tracing_open(struct inode
*inode
, struct file
*file
)
1962 long cpu_file
= (long) inode
->i_private
;
1963 void *fail_ret
= ERR_PTR(-ENOMEM
);
1964 struct trace_iterator
*iter
;
1968 if (tracing_disabled
)
1969 return ERR_PTR(-ENODEV
);
1971 iter
= kzalloc(sizeof(*iter
), GFP_KERNEL
);
1973 return ERR_PTR(-ENOMEM
);
1976 * We make a copy of the current tracer to avoid concurrent
1977 * changes on it while we are reading.
1979 mutex_lock(&trace_types_lock
);
1980 iter
->trace
= kzalloc(sizeof(*iter
->trace
), GFP_KERNEL
);
1985 *iter
->trace
= *current_trace
;
1987 if (!zalloc_cpumask_var(&iter
->started
, GFP_KERNEL
))
1990 if (current_trace
&& current_trace
->print_max
)
1993 iter
->tr
= &global_trace
;
1995 mutex_init(&iter
->mutex
);
1996 iter
->cpu_file
= cpu_file
;
1998 /* Notify the tracer early; before we stop tracing. */
1999 if (iter
->trace
&& iter
->trace
->open
)
2000 iter
->trace
->open(iter
);
2002 /* Annotate start of buffers if we had overruns */
2003 if (ring_buffer_overruns(iter
->tr
->buffer
))
2004 iter
->iter_flags
|= TRACE_FILE_ANNOTATE
;
2006 /* stop the trace while dumping */
2009 if (iter
->cpu_file
== TRACE_PIPE_ALL_CPU
) {
2010 for_each_tracing_cpu(cpu
) {
2012 iter
->buffer_iter
[cpu
] =
2013 ring_buffer_read_start(iter
->tr
->buffer
, cpu
);
2014 tracing_iter_reset(iter
, cpu
);
2017 cpu
= iter
->cpu_file
;
2018 iter
->buffer_iter
[cpu
] =
2019 ring_buffer_read_start(iter
->tr
->buffer
, cpu
);
2020 tracing_iter_reset(iter
, cpu
);
2023 ret
= seq_open(file
, &tracer_seq_ops
);
2025 fail_ret
= ERR_PTR(ret
);
2029 m
= file
->private_data
;
2032 mutex_unlock(&trace_types_lock
);
2037 for_each_tracing_cpu(cpu
) {
2038 if (iter
->buffer_iter
[cpu
])
2039 ring_buffer_read_finish(iter
->buffer_iter
[cpu
]);
2041 free_cpumask_var(iter
->started
);
2044 mutex_unlock(&trace_types_lock
);
2051 int tracing_open_generic(struct inode
*inode
, struct file
*filp
)
2053 if (tracing_disabled
)
2056 filp
->private_data
= inode
->i_private
;
2060 static int tracing_release(struct inode
*inode
, struct file
*file
)
2062 struct seq_file
*m
= (struct seq_file
*)file
->private_data
;
2063 struct trace_iterator
*iter
;
2066 if (!(file
->f_mode
& FMODE_READ
))
2071 mutex_lock(&trace_types_lock
);
2072 for_each_tracing_cpu(cpu
) {
2073 if (iter
->buffer_iter
[cpu
])
2074 ring_buffer_read_finish(iter
->buffer_iter
[cpu
]);
2077 if (iter
->trace
&& iter
->trace
->close
)
2078 iter
->trace
->close(iter
);
2080 /* reenable tracing if it was previously enabled */
2082 mutex_unlock(&trace_types_lock
);
2084 seq_release(inode
, file
);
2085 mutex_destroy(&iter
->mutex
);
2086 free_cpumask_var(iter
->started
);
2092 static int tracing_open(struct inode
*inode
, struct file
*file
)
2094 struct trace_iterator
*iter
;
2097 /* If this file was open for write, then erase contents */
2098 if ((file
->f_mode
& FMODE_WRITE
) &&
2099 (file
->f_flags
& O_TRUNC
)) {
2100 long cpu
= (long) inode
->i_private
;
2102 if (cpu
== TRACE_PIPE_ALL_CPU
)
2103 tracing_reset_online_cpus(&global_trace
);
2105 tracing_reset(&global_trace
, cpu
);
2108 if (file
->f_mode
& FMODE_READ
) {
2109 iter
= __tracing_open(inode
, file
);
2111 ret
= PTR_ERR(iter
);
2112 else if (trace_flags
& TRACE_ITER_LATENCY_FMT
)
2113 iter
->iter_flags
|= TRACE_FILE_LAT_FMT
;
2119 t_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
2121 struct tracer
*t
= v
;
2131 static void *t_start(struct seq_file
*m
, loff_t
*pos
)
2136 mutex_lock(&trace_types_lock
);
2137 for (t
= trace_types
; t
&& l
< *pos
; t
= t_next(m
, t
, &l
))
2143 static void t_stop(struct seq_file
*m
, void *p
)
2145 mutex_unlock(&trace_types_lock
);
2148 static int t_show(struct seq_file
*m
, void *v
)
2150 struct tracer
*t
= v
;
2155 seq_printf(m
, "%s", t
->name
);
2164 static const struct seq_operations show_traces_seq_ops
= {
2171 static int show_traces_open(struct inode
*inode
, struct file
*file
)
2173 if (tracing_disabled
)
2176 return seq_open(file
, &show_traces_seq_ops
);
2180 tracing_write_stub(struct file
*filp
, const char __user
*ubuf
,
2181 size_t count
, loff_t
*ppos
)
2186 static const struct file_operations tracing_fops
= {
2187 .open
= tracing_open
,
2189 .write
= tracing_write_stub
,
2190 .llseek
= seq_lseek
,
2191 .release
= tracing_release
,
2194 static const struct file_operations show_traces_fops
= {
2195 .open
= show_traces_open
,
2197 .release
= seq_release
,
2201 * Only trace on a CPU if the bitmask is set:
2203 static cpumask_var_t tracing_cpumask
;
2206 * The tracer itself will not take this lock, but still we want
2207 * to provide a consistent cpumask to user-space:
2209 static DEFINE_MUTEX(tracing_cpumask_update_lock
);
2212 * Temporary storage for the character representation of the
2213 * CPU bitmask (and one more byte for the newline):
2215 static char mask_str
[NR_CPUS
+ 1];
2218 tracing_cpumask_read(struct file
*filp
, char __user
*ubuf
,
2219 size_t count
, loff_t
*ppos
)
2223 mutex_lock(&tracing_cpumask_update_lock
);
2225 len
= cpumask_scnprintf(mask_str
, count
, tracing_cpumask
);
2226 if (count
- len
< 2) {
2230 len
+= sprintf(mask_str
+ len
, "\n");
2231 count
= simple_read_from_buffer(ubuf
, count
, ppos
, mask_str
, NR_CPUS
+1);
2234 mutex_unlock(&tracing_cpumask_update_lock
);
2240 tracing_cpumask_write(struct file
*filp
, const char __user
*ubuf
,
2241 size_t count
, loff_t
*ppos
)
2244 cpumask_var_t tracing_cpumask_new
;
2246 if (!alloc_cpumask_var(&tracing_cpumask_new
, GFP_KERNEL
))
2249 err
= cpumask_parse_user(ubuf
, count
, tracing_cpumask_new
);
2253 mutex_lock(&tracing_cpumask_update_lock
);
2255 local_irq_disable();
2256 __raw_spin_lock(&ftrace_max_lock
);
2257 for_each_tracing_cpu(cpu
) {
2259 * Increase/decrease the disabled counter if we are
2260 * about to flip a bit in the cpumask:
2262 if (cpumask_test_cpu(cpu
, tracing_cpumask
) &&
2263 !cpumask_test_cpu(cpu
, tracing_cpumask_new
)) {
2264 atomic_inc(&global_trace
.data
[cpu
]->disabled
);
2266 if (!cpumask_test_cpu(cpu
, tracing_cpumask
) &&
2267 cpumask_test_cpu(cpu
, tracing_cpumask_new
)) {
2268 atomic_dec(&global_trace
.data
[cpu
]->disabled
);
2271 __raw_spin_unlock(&ftrace_max_lock
);
2274 cpumask_copy(tracing_cpumask
, tracing_cpumask_new
);
2276 mutex_unlock(&tracing_cpumask_update_lock
);
2277 free_cpumask_var(tracing_cpumask_new
);
2282 free_cpumask_var(tracing_cpumask_new
);
2287 static const struct file_operations tracing_cpumask_fops
= {
2288 .open
= tracing_open_generic
,
2289 .read
= tracing_cpumask_read
,
2290 .write
= tracing_cpumask_write
,
2294 tracing_trace_options_read(struct file
*filp
, char __user
*ubuf
,
2295 size_t cnt
, loff_t
*ppos
)
2297 struct tracer_opt
*trace_opts
;
2305 /* calculate max size */
2306 for (i
= 0; trace_options
[i
]; i
++) {
2307 len
+= strlen(trace_options
[i
]);
2308 len
+= 3; /* "no" and newline */
2311 mutex_lock(&trace_types_lock
);
2312 tracer_flags
= current_trace
->flags
->val
;
2313 trace_opts
= current_trace
->flags
->opts
;
2316 * Increase the size with names of options specific
2317 * of the current tracer.
2319 for (i
= 0; trace_opts
[i
].name
; i
++) {
2320 len
+= strlen(trace_opts
[i
].name
);
2321 len
+= 3; /* "no" and newline */
2325 buf
= kmalloc(len
+ 1, GFP_KERNEL
);
2327 mutex_unlock(&trace_types_lock
);
2331 for (i
= 0; trace_options
[i
]; i
++) {
2332 if (trace_flags
& (1 << i
))
2333 r
+= sprintf(buf
+ r
, "%s\n", trace_options
[i
]);
2335 r
+= sprintf(buf
+ r
, "no%s\n", trace_options
[i
]);
2338 for (i
= 0; trace_opts
[i
].name
; i
++) {
2339 if (tracer_flags
& trace_opts
[i
].bit
)
2340 r
+= sprintf(buf
+ r
, "%s\n",
2341 trace_opts
[i
].name
);
2343 r
+= sprintf(buf
+ r
, "no%s\n",
2344 trace_opts
[i
].name
);
2346 mutex_unlock(&trace_types_lock
);
2348 WARN_ON(r
>= len
+ 1);
2350 r
= simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
2356 /* Try to assign a tracer specific option */
2357 static int set_tracer_option(struct tracer
*trace
, char *cmp
, int neg
)
2359 struct tracer_flags
*tracer_flags
= trace
->flags
;
2360 struct tracer_opt
*opts
= NULL
;
2364 for (i
= 0; tracer_flags
->opts
[i
].name
; i
++) {
2365 opts
= &tracer_flags
->opts
[i
];
2366 len
= strlen(opts
->name
);
2368 if (strncmp(cmp
, opts
->name
, len
) == 0) {
2369 ret
= trace
->set_flag(tracer_flags
->val
,
2375 if (!tracer_flags
->opts
[i
].name
)
2378 /* Refused to handle */
2383 tracer_flags
->val
&= ~opts
->bit
;
2385 tracer_flags
->val
|= opts
->bit
;
2390 static void set_tracer_flags(unsigned int mask
, int enabled
)
2392 /* do nothing if flag is already set */
2393 if (!!(trace_flags
& mask
) == !!enabled
)
2397 trace_flags
|= mask
;
2399 trace_flags
&= ~mask
;
2403 tracing_trace_options_write(struct file
*filp
, const char __user
*ubuf
,
2404 size_t cnt
, loff_t
*ppos
)
2412 if (cnt
>= sizeof(buf
))
2415 if (copy_from_user(&buf
, ubuf
, cnt
))
2420 if (strncmp(buf
, "no", 2) == 0) {
2425 for (i
= 0; trace_options
[i
]; i
++) {
2426 int len
= strlen(trace_options
[i
]);
2428 if (strncmp(cmp
, trace_options
[i
], len
) == 0) {
2429 set_tracer_flags(1 << i
, !neg
);
2434 /* If no option could be set, test the specific tracer options */
2435 if (!trace_options
[i
]) {
2436 mutex_lock(&trace_types_lock
);
2437 ret
= set_tracer_option(current_trace
, cmp
, neg
);
2438 mutex_unlock(&trace_types_lock
);
2448 static const struct file_operations tracing_iter_fops
= {
2449 .open
= tracing_open_generic
,
2450 .read
= tracing_trace_options_read
,
2451 .write
= tracing_trace_options_write
,
2454 static const char readme_msg
[] =
2455 "tracing mini-HOWTO:\n\n"
2456 "# mount -t debugfs nodev /sys/kernel/debug\n\n"
2457 "# cat /sys/kernel/debug/tracing/available_tracers\n"
2458 "wakeup preemptirqsoff preemptoff irqsoff function sched_switch nop\n\n"
2459 "# cat /sys/kernel/debug/tracing/current_tracer\n"
2461 "# echo sched_switch > /sys/kernel/debug/tracing/current_tracer\n"
2462 "# cat /sys/kernel/debug/tracing/current_tracer\n"
2464 "# cat /sys/kernel/debug/tracing/trace_options\n"
2465 "noprint-parent nosym-offset nosym-addr noverbose\n"
2466 "# echo print-parent > /sys/kernel/debug/tracing/trace_options\n"
2467 "# echo 1 > /sys/kernel/debug/tracing/tracing_enabled\n"
2468 "# cat /sys/kernel/debug/tracing/trace > /tmp/trace.txt\n"
2469 "# echo 0 > /sys/kernel/debug/tracing/tracing_enabled\n"
2473 tracing_readme_read(struct file
*filp
, char __user
*ubuf
,
2474 size_t cnt
, loff_t
*ppos
)
2476 return simple_read_from_buffer(ubuf
, cnt
, ppos
,
2477 readme_msg
, strlen(readme_msg
));
2480 static const struct file_operations tracing_readme_fops
= {
2481 .open
= tracing_open_generic
,
2482 .read
= tracing_readme_read
,
2486 tracing_saved_cmdlines_read(struct file
*file
, char __user
*ubuf
,
2487 size_t cnt
, loff_t
*ppos
)
2496 file_buf
= kmalloc(SAVED_CMDLINES
*(16+TASK_COMM_LEN
), GFP_KERNEL
);
2500 buf_comm
= kmalloc(TASK_COMM_LEN
, GFP_KERNEL
);
2508 for (i
= 0; i
< SAVED_CMDLINES
; i
++) {
2511 pid
= map_cmdline_to_pid
[i
];
2512 if (pid
== -1 || pid
== NO_CMDLINE_MAP
)
2515 trace_find_cmdline(pid
, buf_comm
);
2516 r
= sprintf(buf
, "%d %s\n", pid
, buf_comm
);
2521 len
= simple_read_from_buffer(ubuf
, cnt
, ppos
,
2530 static const struct file_operations tracing_saved_cmdlines_fops
= {
2531 .open
= tracing_open_generic
,
2532 .read
= tracing_saved_cmdlines_read
,
2536 tracing_ctrl_read(struct file
*filp
, char __user
*ubuf
,
2537 size_t cnt
, loff_t
*ppos
)
2542 r
= sprintf(buf
, "%u\n", tracer_enabled
);
2543 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
2547 tracing_ctrl_write(struct file
*filp
, const char __user
*ubuf
,
2548 size_t cnt
, loff_t
*ppos
)
2550 struct trace_array
*tr
= filp
->private_data
;
2555 if (cnt
>= sizeof(buf
))
2558 if (copy_from_user(&buf
, ubuf
, cnt
))
2563 ret
= strict_strtoul(buf
, 10, &val
);
2569 mutex_lock(&trace_types_lock
);
2570 if (tracer_enabled
^ val
) {
2573 if (current_trace
->start
)
2574 current_trace
->start(tr
);
2579 if (current_trace
->stop
)
2580 current_trace
->stop(tr
);
2583 mutex_unlock(&trace_types_lock
);
2591 tracing_set_trace_read(struct file
*filp
, char __user
*ubuf
,
2592 size_t cnt
, loff_t
*ppos
)
2594 char buf
[MAX_TRACER_SIZE
+2];
2597 mutex_lock(&trace_types_lock
);
2599 r
= sprintf(buf
, "%s\n", current_trace
->name
);
2601 r
= sprintf(buf
, "\n");
2602 mutex_unlock(&trace_types_lock
);
2604 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
2607 int tracer_init(struct tracer
*t
, struct trace_array
*tr
)
2609 tracing_reset_online_cpus(tr
);
2613 static int tracing_resize_ring_buffer(unsigned long size
)
2618 * If kernel or user changes the size of the ring buffer
2619 * we use the size that was given, and we can forget about
2620 * expanding it later.
2622 ring_buffer_expanded
= 1;
2624 ret
= ring_buffer_resize(global_trace
.buffer
, size
);
2628 ret
= ring_buffer_resize(max_tr
.buffer
, size
);
2632 r
= ring_buffer_resize(global_trace
.buffer
,
2633 global_trace
.entries
);
2636 * AARGH! We are left with different
2637 * size max buffer!!!!
2638 * The max buffer is our "snapshot" buffer.
2639 * When a tracer needs a snapshot (one of the
2640 * latency tracers), it swaps the max buffer
2641 * with the saved snap shot. We succeeded to
2642 * update the size of the main buffer, but failed to
2643 * update the size of the max buffer. But when we tried
2644 * to reset the main buffer to the original size, we
2645 * failed there too. This is very unlikely to
2646 * happen, but if it does, warn and kill all
2650 tracing_disabled
= 1;
2655 global_trace
.entries
= size
;
2661 * tracing_update_buffers - used by tracing facility to expand ring buffers
2663 * To save on memory when the tracing is never used on a system with it
2664 * configured in. The ring buffers are set to a minimum size. But once
2665 * a user starts to use the tracing facility, then they need to grow
2666 * to their default size.
2668 * This function is to be called when a tracer is about to be used.
2670 int tracing_update_buffers(void)
2674 mutex_lock(&trace_types_lock
);
2675 if (!ring_buffer_expanded
)
2676 ret
= tracing_resize_ring_buffer(trace_buf_size
);
2677 mutex_unlock(&trace_types_lock
);
2682 struct trace_option_dentry
;
2684 static struct trace_option_dentry
*
2685 create_trace_option_files(struct tracer
*tracer
);
2688 destroy_trace_option_files(struct trace_option_dentry
*topts
);
2690 static int tracing_set_tracer(const char *buf
)
2692 static struct trace_option_dentry
*topts
;
2693 struct trace_array
*tr
= &global_trace
;
2697 mutex_lock(&trace_types_lock
);
2699 if (!ring_buffer_expanded
) {
2700 ret
= tracing_resize_ring_buffer(trace_buf_size
);
2706 for (t
= trace_types
; t
; t
= t
->next
) {
2707 if (strcmp(t
->name
, buf
) == 0)
2714 if (t
== current_trace
)
2717 trace_branch_disable();
2718 if (current_trace
&& current_trace
->reset
)
2719 current_trace
->reset(tr
);
2721 destroy_trace_option_files(topts
);
2725 topts
= create_trace_option_files(current_trace
);
2728 ret
= tracer_init(t
, tr
);
2733 trace_branch_enable(tr
);
2735 mutex_unlock(&trace_types_lock
);
2741 tracing_set_trace_write(struct file
*filp
, const char __user
*ubuf
,
2742 size_t cnt
, loff_t
*ppos
)
2744 char buf
[MAX_TRACER_SIZE
+1];
2751 if (cnt
> MAX_TRACER_SIZE
)
2752 cnt
= MAX_TRACER_SIZE
;
2754 if (copy_from_user(&buf
, ubuf
, cnt
))
2759 /* strip ending whitespace. */
2760 for (i
= cnt
- 1; i
> 0 && isspace(buf
[i
]); i
--)
2763 err
= tracing_set_tracer(buf
);
2773 tracing_max_lat_read(struct file
*filp
, char __user
*ubuf
,
2774 size_t cnt
, loff_t
*ppos
)
2776 unsigned long *ptr
= filp
->private_data
;
2780 r
= snprintf(buf
, sizeof(buf
), "%ld\n",
2781 *ptr
== (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr
));
2782 if (r
> sizeof(buf
))
2784 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
2788 tracing_max_lat_write(struct file
*filp
, const char __user
*ubuf
,
2789 size_t cnt
, loff_t
*ppos
)
2791 unsigned long *ptr
= filp
->private_data
;
2796 if (cnt
>= sizeof(buf
))
2799 if (copy_from_user(&buf
, ubuf
, cnt
))
2804 ret
= strict_strtoul(buf
, 10, &val
);
2813 static int tracing_open_pipe(struct inode
*inode
, struct file
*filp
)
2815 long cpu_file
= (long) inode
->i_private
;
2816 struct trace_iterator
*iter
;
2819 if (tracing_disabled
)
2822 mutex_lock(&trace_types_lock
);
2824 /* We only allow one reader per cpu */
2825 if (cpu_file
== TRACE_PIPE_ALL_CPU
) {
2826 if (!cpumask_empty(tracing_reader_cpumask
)) {
2830 cpumask_setall(tracing_reader_cpumask
);
2832 if (!cpumask_test_cpu(cpu_file
, tracing_reader_cpumask
))
2833 cpumask_set_cpu(cpu_file
, tracing_reader_cpumask
);
2840 /* create a buffer to store the information to pass to userspace */
2841 iter
= kzalloc(sizeof(*iter
), GFP_KERNEL
);
2848 * We make a copy of the current tracer to avoid concurrent
2849 * changes on it while we are reading.
2851 iter
->trace
= kmalloc(sizeof(*iter
->trace
), GFP_KERNEL
);
2857 *iter
->trace
= *current_trace
;
2859 if (!alloc_cpumask_var(&iter
->started
, GFP_KERNEL
)) {
2864 /* trace pipe does not show start of buffer */
2865 cpumask_setall(iter
->started
);
2867 if (trace_flags
& TRACE_ITER_LATENCY_FMT
)
2868 iter
->iter_flags
|= TRACE_FILE_LAT_FMT
;
2870 iter
->cpu_file
= cpu_file
;
2871 iter
->tr
= &global_trace
;
2872 mutex_init(&iter
->mutex
);
2873 filp
->private_data
= iter
;
2875 if (iter
->trace
->pipe_open
)
2876 iter
->trace
->pipe_open(iter
);
2879 mutex_unlock(&trace_types_lock
);
2885 mutex_unlock(&trace_types_lock
);
2889 static int tracing_release_pipe(struct inode
*inode
, struct file
*file
)
2891 struct trace_iterator
*iter
= file
->private_data
;
2893 mutex_lock(&trace_types_lock
);
2895 if (iter
->cpu_file
== TRACE_PIPE_ALL_CPU
)
2896 cpumask_clear(tracing_reader_cpumask
);
2898 cpumask_clear_cpu(iter
->cpu_file
, tracing_reader_cpumask
);
2900 mutex_unlock(&trace_types_lock
);
2902 free_cpumask_var(iter
->started
);
2903 mutex_destroy(&iter
->mutex
);
2911 tracing_poll_pipe(struct file
*filp
, poll_table
*poll_table
)
2913 struct trace_iterator
*iter
= filp
->private_data
;
2915 if (trace_flags
& TRACE_ITER_BLOCK
) {
2917 * Always select as readable when in blocking mode
2919 return POLLIN
| POLLRDNORM
;
2921 if (!trace_empty(iter
))
2922 return POLLIN
| POLLRDNORM
;
2923 poll_wait(filp
, &trace_wait
, poll_table
);
2924 if (!trace_empty(iter
))
2925 return POLLIN
| POLLRDNORM
;
2932 void default_wait_pipe(struct trace_iterator
*iter
)
2936 prepare_to_wait(&trace_wait
, &wait
, TASK_INTERRUPTIBLE
);
2938 if (trace_empty(iter
))
2941 finish_wait(&trace_wait
, &wait
);
2945 * This is a make-shift waitqueue.
2946 * A tracer might use this callback on some rare cases:
2948 * 1) the current tracer might hold the runqueue lock when it wakes up
2949 * a reader, hence a deadlock (sched, function, and function graph tracers)
2950 * 2) the function tracers, trace all functions, we don't want
2951 * the overhead of calling wake_up and friends
2952 * (and tracing them too)
2954 * Anyway, this is really very primitive wakeup.
2956 void poll_wait_pipe(struct trace_iterator
*iter
)
2958 set_current_state(TASK_INTERRUPTIBLE
);
2959 /* sleep for 100 msecs, and try again. */
2960 schedule_timeout(HZ
/ 10);
2963 /* Must be called with trace_types_lock mutex held. */
2964 static int tracing_wait_pipe(struct file
*filp
)
2966 struct trace_iterator
*iter
= filp
->private_data
;
2968 while (trace_empty(iter
)) {
2970 if ((filp
->f_flags
& O_NONBLOCK
)) {
2974 mutex_unlock(&iter
->mutex
);
2976 iter
->trace
->wait_pipe(iter
);
2978 mutex_lock(&iter
->mutex
);
2980 if (signal_pending(current
))
2984 * We block until we read something and tracing is disabled.
2985 * We still block if tracing is disabled, but we have never
2986 * read anything. This allows a user to cat this file, and
2987 * then enable tracing. But after we have read something,
2988 * we give an EOF when tracing is again disabled.
2990 * iter->pos will be 0 if we haven't read anything.
2992 if (!tracer_enabled
&& iter
->pos
)
3003 tracing_read_pipe(struct file
*filp
, char __user
*ubuf
,
3004 size_t cnt
, loff_t
*ppos
)
3006 struct trace_iterator
*iter
= filp
->private_data
;
3007 static struct tracer
*old_tracer
;
3010 /* return any leftover data */
3011 sret
= trace_seq_to_user(&iter
->seq
, ubuf
, cnt
);
3015 trace_seq_init(&iter
->seq
);
3017 /* copy the tracer to avoid using a global lock all around */
3018 mutex_lock(&trace_types_lock
);
3019 if (unlikely(old_tracer
!= current_trace
&& current_trace
)) {
3020 old_tracer
= current_trace
;
3021 *iter
->trace
= *current_trace
;
3023 mutex_unlock(&trace_types_lock
);
3026 * Avoid more than one consumer on a single file descriptor
3027 * This is just a matter of traces coherency, the ring buffer itself
3030 mutex_lock(&iter
->mutex
);
3031 if (iter
->trace
->read
) {
3032 sret
= iter
->trace
->read(iter
, filp
, ubuf
, cnt
, ppos
);
3038 sret
= tracing_wait_pipe(filp
);
3042 /* stop when tracing is finished */
3043 if (trace_empty(iter
)) {
3048 if (cnt
>= PAGE_SIZE
)
3049 cnt
= PAGE_SIZE
- 1;
3051 /* reset all but tr, trace, and overruns */
3052 memset(&iter
->seq
, 0,
3053 sizeof(struct trace_iterator
) -
3054 offsetof(struct trace_iterator
, seq
));
3057 trace_event_read_lock();
3058 while (find_next_entry_inc(iter
) != NULL
) {
3059 enum print_line_t ret
;
3060 int len
= iter
->seq
.len
;
3062 ret
= print_trace_line(iter
);
3063 if (ret
== TRACE_TYPE_PARTIAL_LINE
) {
3064 /* don't print partial lines */
3065 iter
->seq
.len
= len
;
3068 if (ret
!= TRACE_TYPE_NO_CONSUME
)
3069 trace_consume(iter
);
3071 if (iter
->seq
.len
>= cnt
)
3074 trace_event_read_unlock();
3076 /* Now copy what we have to the user */
3077 sret
= trace_seq_to_user(&iter
->seq
, ubuf
, cnt
);
3078 if (iter
->seq
.readpos
>= iter
->seq
.len
)
3079 trace_seq_init(&iter
->seq
);
3082 * If there was nothing to send to user, inspite of consuming trace
3083 * entries, go back to wait for more entries.
3089 mutex_unlock(&iter
->mutex
);
3094 static void tracing_pipe_buf_release(struct pipe_inode_info
*pipe
,
3095 struct pipe_buffer
*buf
)
3097 __free_page(buf
->page
);
3100 static void tracing_spd_release_pipe(struct splice_pipe_desc
*spd
,
3103 __free_page(spd
->pages
[idx
]);
3106 static struct pipe_buf_operations tracing_pipe_buf_ops
= {
3108 .map
= generic_pipe_buf_map
,
3109 .unmap
= generic_pipe_buf_unmap
,
3110 .confirm
= generic_pipe_buf_confirm
,
3111 .release
= tracing_pipe_buf_release
,
3112 .steal
= generic_pipe_buf_steal
,
3113 .get
= generic_pipe_buf_get
,
3117 tracing_fill_pipe_page(size_t rem
, struct trace_iterator
*iter
)
3122 /* Seq buffer is page-sized, exactly what we need. */
3124 count
= iter
->seq
.len
;
3125 ret
= print_trace_line(iter
);
3126 count
= iter
->seq
.len
- count
;
3129 iter
->seq
.len
-= count
;
3132 if (ret
== TRACE_TYPE_PARTIAL_LINE
) {
3133 iter
->seq
.len
-= count
;
3137 if (ret
!= TRACE_TYPE_NO_CONSUME
)
3138 trace_consume(iter
);
3140 if (!find_next_entry_inc(iter
)) {
3150 static ssize_t
tracing_splice_read_pipe(struct file
*filp
,
3152 struct pipe_inode_info
*pipe
,
3156 struct page
*pages
[PIPE_BUFFERS
];
3157 struct partial_page partial
[PIPE_BUFFERS
];
3158 struct trace_iterator
*iter
= filp
->private_data
;
3159 struct splice_pipe_desc spd
= {
3162 .nr_pages
= 0, /* This gets updated below. */
3164 .ops
= &tracing_pipe_buf_ops
,
3165 .spd_release
= tracing_spd_release_pipe
,
3167 static struct tracer
*old_tracer
;
3172 /* copy the tracer to avoid using a global lock all around */
3173 mutex_lock(&trace_types_lock
);
3174 if (unlikely(old_tracer
!= current_trace
&& current_trace
)) {
3175 old_tracer
= current_trace
;
3176 *iter
->trace
= *current_trace
;
3178 mutex_unlock(&trace_types_lock
);
3180 mutex_lock(&iter
->mutex
);
3182 if (iter
->trace
->splice_read
) {
3183 ret
= iter
->trace
->splice_read(iter
, filp
,
3184 ppos
, pipe
, len
, flags
);
3189 ret
= tracing_wait_pipe(filp
);
3193 if (!iter
->ent
&& !find_next_entry_inc(iter
)) {
3198 trace_event_read_lock();
3200 /* Fill as many pages as possible. */
3201 for (i
= 0, rem
= len
; i
< PIPE_BUFFERS
&& rem
; i
++) {
3202 pages
[i
] = alloc_page(GFP_KERNEL
);
3206 rem
= tracing_fill_pipe_page(rem
, iter
);
3208 /* Copy the data into the page, so we can start over. */
3209 ret
= trace_seq_to_buffer(&iter
->seq
,
3210 page_address(pages
[i
]),
3213 __free_page(pages
[i
]);
3216 partial
[i
].offset
= 0;
3217 partial
[i
].len
= iter
->seq
.len
;
3219 trace_seq_init(&iter
->seq
);
3222 trace_event_read_unlock();
3223 mutex_unlock(&iter
->mutex
);
3227 return splice_to_pipe(pipe
, &spd
);
3230 mutex_unlock(&iter
->mutex
);
3236 tracing_entries_read(struct file
*filp
, char __user
*ubuf
,
3237 size_t cnt
, loff_t
*ppos
)
3239 struct trace_array
*tr
= filp
->private_data
;
3243 mutex_lock(&trace_types_lock
);
3244 if (!ring_buffer_expanded
)
3245 r
= sprintf(buf
, "%lu (expanded: %lu)\n",
3247 trace_buf_size
>> 10);
3249 r
= sprintf(buf
, "%lu\n", tr
->entries
>> 10);
3250 mutex_unlock(&trace_types_lock
);
3252 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
3256 tracing_entries_write(struct file
*filp
, const char __user
*ubuf
,
3257 size_t cnt
, loff_t
*ppos
)
3263 if (cnt
>= sizeof(buf
))
3266 if (copy_from_user(&buf
, ubuf
, cnt
))
3271 ret
= strict_strtoul(buf
, 10, &val
);
3275 /* must have at least 1 entry */
3279 mutex_lock(&trace_types_lock
);
3283 /* disable all cpu buffers */
3284 for_each_tracing_cpu(cpu
) {
3285 if (global_trace
.data
[cpu
])
3286 atomic_inc(&global_trace
.data
[cpu
]->disabled
);
3287 if (max_tr
.data
[cpu
])
3288 atomic_inc(&max_tr
.data
[cpu
]->disabled
);
3291 /* value is in KB */
3294 if (val
!= global_trace
.entries
) {
3295 ret
= tracing_resize_ring_buffer(val
);
3304 /* If check pages failed, return ENOMEM */
3305 if (tracing_disabled
)
3308 for_each_tracing_cpu(cpu
) {
3309 if (global_trace
.data
[cpu
])
3310 atomic_dec(&global_trace
.data
[cpu
]->disabled
);
3311 if (max_tr
.data
[cpu
])
3312 atomic_dec(&max_tr
.data
[cpu
]->disabled
);
3316 max_tr
.entries
= global_trace
.entries
;
3317 mutex_unlock(&trace_types_lock
);
3322 static int mark_printk(const char *fmt
, ...)
3326 va_start(args
, fmt
);
3327 ret
= trace_vprintk(0, fmt
, args
);
3333 tracing_mark_write(struct file
*filp
, const char __user
*ubuf
,
3334 size_t cnt
, loff_t
*fpos
)
3339 if (tracing_disabled
)
3342 if (cnt
> TRACE_BUF_SIZE
)
3343 cnt
= TRACE_BUF_SIZE
;
3345 buf
= kmalloc(cnt
+ 1, GFP_KERNEL
);
3349 if (copy_from_user(buf
, ubuf
, cnt
)) {
3354 /* Cut from the first nil or newline. */
3356 end
= strchr(buf
, '\n');
3360 cnt
= mark_printk("%s\n", buf
);
3367 static ssize_t
tracing_clock_read(struct file
*filp
, char __user
*ubuf
,
3368 size_t cnt
, loff_t
*ppos
)
3374 for (i
= 0; i
< ARRAY_SIZE(trace_clocks
); i
++)
3375 bufiter
+= snprintf(buf
+ bufiter
, sizeof(buf
) - bufiter
,
3376 "%s%s%s%s", i
? " " : "",
3377 i
== trace_clock_id
? "[" : "", trace_clocks
[i
].name
,
3378 i
== trace_clock_id
? "]" : "");
3379 bufiter
+= snprintf(buf
+ bufiter
, sizeof(buf
) - bufiter
, "\n");
3381 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, bufiter
);
3384 static ssize_t
tracing_clock_write(struct file
*filp
, const char __user
*ubuf
,
3385 size_t cnt
, loff_t
*fpos
)
3388 const char *clockstr
;
3391 if (cnt
>= sizeof(buf
))
3394 if (copy_from_user(&buf
, ubuf
, cnt
))
3399 clockstr
= strstrip(buf
);
3401 for (i
= 0; i
< ARRAY_SIZE(trace_clocks
); i
++) {
3402 if (strcmp(trace_clocks
[i
].name
, clockstr
) == 0)
3405 if (i
== ARRAY_SIZE(trace_clocks
))
3410 mutex_lock(&trace_types_lock
);
3412 ring_buffer_set_clock(global_trace
.buffer
, trace_clocks
[i
].func
);
3414 ring_buffer_set_clock(max_tr
.buffer
, trace_clocks
[i
].func
);
3416 mutex_unlock(&trace_types_lock
);
3423 static const struct file_operations tracing_max_lat_fops
= {
3424 .open
= tracing_open_generic
,
3425 .read
= tracing_max_lat_read
,
3426 .write
= tracing_max_lat_write
,
3429 static const struct file_operations tracing_ctrl_fops
= {
3430 .open
= tracing_open_generic
,
3431 .read
= tracing_ctrl_read
,
3432 .write
= tracing_ctrl_write
,
3435 static const struct file_operations set_tracer_fops
= {
3436 .open
= tracing_open_generic
,
3437 .read
= tracing_set_trace_read
,
3438 .write
= tracing_set_trace_write
,
3441 static const struct file_operations tracing_pipe_fops
= {
3442 .open
= tracing_open_pipe
,
3443 .poll
= tracing_poll_pipe
,
3444 .read
= tracing_read_pipe
,
3445 .splice_read
= tracing_splice_read_pipe
,
3446 .release
= tracing_release_pipe
,
3449 static const struct file_operations tracing_entries_fops
= {
3450 .open
= tracing_open_generic
,
3451 .read
= tracing_entries_read
,
3452 .write
= tracing_entries_write
,
3455 static const struct file_operations tracing_mark_fops
= {
3456 .open
= tracing_open_generic
,
3457 .write
= tracing_mark_write
,
3460 static const struct file_operations trace_clock_fops
= {
3461 .open
= tracing_open_generic
,
3462 .read
= tracing_clock_read
,
3463 .write
= tracing_clock_write
,
3466 struct ftrace_buffer_info
{
3467 struct trace_array
*tr
;
3473 static int tracing_buffers_open(struct inode
*inode
, struct file
*filp
)
3475 int cpu
= (int)(long)inode
->i_private
;
3476 struct ftrace_buffer_info
*info
;
3478 if (tracing_disabled
)
3481 info
= kzalloc(sizeof(*info
), GFP_KERNEL
);
3485 info
->tr
= &global_trace
;
3488 /* Force reading ring buffer for first read */
3489 info
->read
= (unsigned int)-1;
3491 filp
->private_data
= info
;
3493 return nonseekable_open(inode
, filp
);
3497 tracing_buffers_read(struct file
*filp
, char __user
*ubuf
,
3498 size_t count
, loff_t
*ppos
)
3500 struct ftrace_buffer_info
*info
= filp
->private_data
;
3509 info
->spare
= ring_buffer_alloc_read_page(info
->tr
->buffer
);
3513 /* Do we have previous read data to read? */
3514 if (info
->read
< PAGE_SIZE
)
3519 ret
= ring_buffer_read_page(info
->tr
->buffer
,
3526 pos
= ring_buffer_page_len(info
->spare
);
3528 if (pos
< PAGE_SIZE
)
3529 memset(info
->spare
+ pos
, 0, PAGE_SIZE
- pos
);
3532 size
= PAGE_SIZE
- info
->read
;
3536 ret
= copy_to_user(ubuf
, info
->spare
+ info
->read
, size
);
3547 static int tracing_buffers_release(struct inode
*inode
, struct file
*file
)
3549 struct ftrace_buffer_info
*info
= file
->private_data
;
3552 ring_buffer_free_read_page(info
->tr
->buffer
, info
->spare
);
3559 struct ring_buffer
*buffer
;
3564 static void buffer_pipe_buf_release(struct pipe_inode_info
*pipe
,
3565 struct pipe_buffer
*buf
)
3567 struct buffer_ref
*ref
= (struct buffer_ref
*)buf
->private;
3572 ring_buffer_free_read_page(ref
->buffer
, ref
->page
);
3577 static int buffer_pipe_buf_steal(struct pipe_inode_info
*pipe
,
3578 struct pipe_buffer
*buf
)
3583 static void buffer_pipe_buf_get(struct pipe_inode_info
*pipe
,
3584 struct pipe_buffer
*buf
)
3586 struct buffer_ref
*ref
= (struct buffer_ref
*)buf
->private;
3591 /* Pipe buffer operations for a buffer. */
3592 static struct pipe_buf_operations buffer_pipe_buf_ops
= {
3594 .map
= generic_pipe_buf_map
,
3595 .unmap
= generic_pipe_buf_unmap
,
3596 .confirm
= generic_pipe_buf_confirm
,
3597 .release
= buffer_pipe_buf_release
,
3598 .steal
= buffer_pipe_buf_steal
,
3599 .get
= buffer_pipe_buf_get
,
3603 * Callback from splice_to_pipe(), if we need to release some pages
3604 * at the end of the spd in case we error'ed out in filling the pipe.
3606 static void buffer_spd_release(struct splice_pipe_desc
*spd
, unsigned int i
)
3608 struct buffer_ref
*ref
=
3609 (struct buffer_ref
*)spd
->partial
[i
].private;
3614 ring_buffer_free_read_page(ref
->buffer
, ref
->page
);
3616 spd
->partial
[i
].private = 0;
3620 tracing_buffers_splice_read(struct file
*file
, loff_t
*ppos
,
3621 struct pipe_inode_info
*pipe
, size_t len
,
3624 struct ftrace_buffer_info
*info
= file
->private_data
;
3625 struct partial_page partial
[PIPE_BUFFERS
];
3626 struct page
*pages
[PIPE_BUFFERS
];
3627 struct splice_pipe_desc spd
= {
3631 .ops
= &buffer_pipe_buf_ops
,
3632 .spd_release
= buffer_spd_release
,
3634 struct buffer_ref
*ref
;
3635 int entries
, size
, i
;
3638 if (*ppos
& (PAGE_SIZE
- 1)) {
3639 WARN_ONCE(1, "Ftrace: previous read must page-align\n");
3643 if (len
& (PAGE_SIZE
- 1)) {
3644 WARN_ONCE(1, "Ftrace: splice_read should page-align\n");
3645 if (len
< PAGE_SIZE
)
3650 entries
= ring_buffer_entries_cpu(info
->tr
->buffer
, info
->cpu
);
3652 for (i
= 0; i
< PIPE_BUFFERS
&& len
&& entries
; i
++, len
-= PAGE_SIZE
) {
3656 ref
= kzalloc(sizeof(*ref
), GFP_KERNEL
);
3661 ref
->buffer
= info
->tr
->buffer
;
3662 ref
->page
= ring_buffer_alloc_read_page(ref
->buffer
);
3668 r
= ring_buffer_read_page(ref
->buffer
, &ref
->page
,
3671 ring_buffer_free_read_page(ref
->buffer
,
3678 * zero out any left over data, this is going to
3681 size
= ring_buffer_page_len(ref
->page
);
3682 if (size
< PAGE_SIZE
)
3683 memset(ref
->page
+ size
, 0, PAGE_SIZE
- size
);
3685 page
= virt_to_page(ref
->page
);
3687 spd
.pages
[i
] = page
;
3688 spd
.partial
[i
].len
= PAGE_SIZE
;
3689 spd
.partial
[i
].offset
= 0;
3690 spd
.partial
[i
].private = (unsigned long)ref
;
3694 entries
= ring_buffer_entries_cpu(info
->tr
->buffer
, info
->cpu
);
3699 /* did we read anything? */
3700 if (!spd
.nr_pages
) {
3701 if (flags
& SPLICE_F_NONBLOCK
)
3709 ret
= splice_to_pipe(pipe
, &spd
);
3714 static const struct file_operations tracing_buffers_fops
= {
3715 .open
= tracing_buffers_open
,
3716 .read
= tracing_buffers_read
,
3717 .release
= tracing_buffers_release
,
3718 .splice_read
= tracing_buffers_splice_read
,
3719 .llseek
= no_llseek
,
3723 tracing_stats_read(struct file
*filp
, char __user
*ubuf
,
3724 size_t count
, loff_t
*ppos
)
3726 unsigned long cpu
= (unsigned long)filp
->private_data
;
3727 struct trace_array
*tr
= &global_trace
;
3728 struct trace_seq
*s
;
3731 s
= kmalloc(sizeof(*s
), GFP_KERNEL
);
3737 cnt
= ring_buffer_entries_cpu(tr
->buffer
, cpu
);
3738 trace_seq_printf(s
, "entries: %ld\n", cnt
);
3740 cnt
= ring_buffer_overrun_cpu(tr
->buffer
, cpu
);
3741 trace_seq_printf(s
, "overrun: %ld\n", cnt
);
3743 cnt
= ring_buffer_commit_overrun_cpu(tr
->buffer
, cpu
);
3744 trace_seq_printf(s
, "commit overrun: %ld\n", cnt
);
3746 count
= simple_read_from_buffer(ubuf
, count
, ppos
, s
->buffer
, s
->len
);
3753 static const struct file_operations tracing_stats_fops
= {
3754 .open
= tracing_open_generic
,
3755 .read
= tracing_stats_read
,
3758 #ifdef CONFIG_DYNAMIC_FTRACE
3760 int __weak
ftrace_arch_read_dyn_info(char *buf
, int size
)
3766 tracing_read_dyn_info(struct file
*filp
, char __user
*ubuf
,
3767 size_t cnt
, loff_t
*ppos
)
3769 static char ftrace_dyn_info_buffer
[1024];
3770 static DEFINE_MUTEX(dyn_info_mutex
);
3771 unsigned long *p
= filp
->private_data
;
3772 char *buf
= ftrace_dyn_info_buffer
;
3773 int size
= ARRAY_SIZE(ftrace_dyn_info_buffer
);
3776 mutex_lock(&dyn_info_mutex
);
3777 r
= sprintf(buf
, "%ld ", *p
);
3779 r
+= ftrace_arch_read_dyn_info(buf
+r
, (size
-1)-r
);
3782 r
= simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
3784 mutex_unlock(&dyn_info_mutex
);
3789 static const struct file_operations tracing_dyn_info_fops
= {
3790 .open
= tracing_open_generic
,
3791 .read
= tracing_read_dyn_info
,
3795 static struct dentry
*d_tracer
;
3797 struct dentry
*tracing_init_dentry(void)
3804 if (!debugfs_initialized())
3807 d_tracer
= debugfs_create_dir("tracing", NULL
);
3809 if (!d_tracer
&& !once
) {
3811 pr_warning("Could not create debugfs directory 'tracing'\n");
3818 static struct dentry
*d_percpu
;
3820 struct dentry
*tracing_dentry_percpu(void)
3823 struct dentry
*d_tracer
;
3828 d_tracer
= tracing_init_dentry();
3833 d_percpu
= debugfs_create_dir("per_cpu", d_tracer
);
3835 if (!d_percpu
&& !once
) {
3837 pr_warning("Could not create debugfs directory 'per_cpu'\n");
3844 static void tracing_init_debugfs_percpu(long cpu
)
3846 struct dentry
*d_percpu
= tracing_dentry_percpu();
3847 struct dentry
*d_cpu
;
3848 /* strlen(cpu) + MAX(log10(cpu)) + '\0' */
3851 if (cpu
> 999 || cpu
< 0)
3854 sprintf(cpu_dir
, "cpu%ld", cpu
);
3855 d_cpu
= debugfs_create_dir(cpu_dir
, d_percpu
);
3857 pr_warning("Could not create debugfs '%s' entry\n", cpu_dir
);
3861 /* per cpu trace_pipe */
3862 trace_create_file("trace_pipe", 0444, d_cpu
,
3863 (void *) cpu
, &tracing_pipe_fops
);
3866 trace_create_file("trace", 0644, d_cpu
,
3867 (void *) cpu
, &tracing_fops
);
3869 trace_create_file("trace_pipe_raw", 0444, d_cpu
,
3870 (void *) cpu
, &tracing_buffers_fops
);
3872 trace_create_file("stats", 0444, d_cpu
,
3873 (void *) cpu
, &tracing_stats_fops
);
3876 #ifdef CONFIG_FTRACE_SELFTEST
3877 /* Let selftest have access to static functions in this file */
3878 #include "trace_selftest.c"
3881 struct trace_option_dentry
{
3882 struct tracer_opt
*opt
;
3883 struct tracer_flags
*flags
;
3884 struct dentry
*entry
;
3888 trace_options_read(struct file
*filp
, char __user
*ubuf
, size_t cnt
,
3891 struct trace_option_dentry
*topt
= filp
->private_data
;
3894 if (topt
->flags
->val
& topt
->opt
->bit
)
3899 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, 2);
3903 trace_options_write(struct file
*filp
, const char __user
*ubuf
, size_t cnt
,
3906 struct trace_option_dentry
*topt
= filp
->private_data
;
3911 if (cnt
>= sizeof(buf
))
3914 if (copy_from_user(&buf
, ubuf
, cnt
))
3919 ret
= strict_strtoul(buf
, 10, &val
);
3926 /* do nothing if already cleared */
3927 if (!(topt
->flags
->val
& topt
->opt
->bit
))
3930 mutex_lock(&trace_types_lock
);
3931 if (current_trace
->set_flag
)
3932 ret
= current_trace
->set_flag(topt
->flags
->val
,
3934 mutex_unlock(&trace_types_lock
);
3937 topt
->flags
->val
&= ~topt
->opt
->bit
;
3940 /* do nothing if already set */
3941 if (topt
->flags
->val
& topt
->opt
->bit
)
3944 mutex_lock(&trace_types_lock
);
3945 if (current_trace
->set_flag
)
3946 ret
= current_trace
->set_flag(topt
->flags
->val
,
3948 mutex_unlock(&trace_types_lock
);
3951 topt
->flags
->val
|= topt
->opt
->bit
;
3964 static const struct file_operations trace_options_fops
= {
3965 .open
= tracing_open_generic
,
3966 .read
= trace_options_read
,
3967 .write
= trace_options_write
,
3971 trace_options_core_read(struct file
*filp
, char __user
*ubuf
, size_t cnt
,
3974 long index
= (long)filp
->private_data
;
3977 if (trace_flags
& (1 << index
))
3982 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, 2);
3986 trace_options_core_write(struct file
*filp
, const char __user
*ubuf
, size_t cnt
,
3989 long index
= (long)filp
->private_data
;
3994 if (cnt
>= sizeof(buf
))
3997 if (copy_from_user(&buf
, ubuf
, cnt
))
4002 ret
= strict_strtoul(buf
, 10, &val
);
4006 if (val
!= 0 && val
!= 1)
4008 set_tracer_flags(1 << index
, val
);
4015 static const struct file_operations trace_options_core_fops
= {
4016 .open
= tracing_open_generic
,
4017 .read
= trace_options_core_read
,
4018 .write
= trace_options_core_write
,
4021 struct dentry
*trace_create_file(const char *name
,
4023 struct dentry
*parent
,
4025 const struct file_operations
*fops
)
4029 ret
= debugfs_create_file(name
, mode
, parent
, data
, fops
);
4031 pr_warning("Could not create debugfs '%s' entry\n", name
);
4037 static struct dentry
*trace_options_init_dentry(void)
4039 struct dentry
*d_tracer
;
4040 static struct dentry
*t_options
;
4045 d_tracer
= tracing_init_dentry();
4049 t_options
= debugfs_create_dir("options", d_tracer
);
4051 pr_warning("Could not create debugfs directory 'options'\n");
4059 create_trace_option_file(struct trace_option_dentry
*topt
,
4060 struct tracer_flags
*flags
,
4061 struct tracer_opt
*opt
)
4063 struct dentry
*t_options
;
4065 t_options
= trace_options_init_dentry();
4069 topt
->flags
= flags
;
4072 topt
->entry
= trace_create_file(opt
->name
, 0644, t_options
, topt
,
4073 &trace_options_fops
);
4077 static struct trace_option_dentry
*
4078 create_trace_option_files(struct tracer
*tracer
)
4080 struct trace_option_dentry
*topts
;
4081 struct tracer_flags
*flags
;
4082 struct tracer_opt
*opts
;
4088 flags
= tracer
->flags
;
4090 if (!flags
|| !flags
->opts
)
4095 for (cnt
= 0; opts
[cnt
].name
; cnt
++)
4098 topts
= kcalloc(cnt
+ 1, sizeof(*topts
), GFP_KERNEL
);
4102 for (cnt
= 0; opts
[cnt
].name
; cnt
++)
4103 create_trace_option_file(&topts
[cnt
], flags
,
4110 destroy_trace_option_files(struct trace_option_dentry
*topts
)
4117 for (cnt
= 0; topts
[cnt
].opt
; cnt
++) {
4118 if (topts
[cnt
].entry
)
4119 debugfs_remove(topts
[cnt
].entry
);
4125 static struct dentry
*
4126 create_trace_option_core_file(const char *option
, long index
)
4128 struct dentry
*t_options
;
4130 t_options
= trace_options_init_dentry();
4134 return trace_create_file(option
, 0644, t_options
, (void *)index
,
4135 &trace_options_core_fops
);
4138 static __init
void create_trace_options_dir(void)
4140 struct dentry
*t_options
;
4143 t_options
= trace_options_init_dentry();
4147 for (i
= 0; trace_options
[i
]; i
++)
4148 create_trace_option_core_file(trace_options
[i
], i
);
4151 static __init
int tracer_init_debugfs(void)
4153 struct dentry
*d_tracer
;
4156 d_tracer
= tracing_init_dentry();
4158 trace_create_file("tracing_enabled", 0644, d_tracer
,
4159 &global_trace
, &tracing_ctrl_fops
);
4161 trace_create_file("trace_options", 0644, d_tracer
,
4162 NULL
, &tracing_iter_fops
);
4164 trace_create_file("tracing_cpumask", 0644, d_tracer
,
4165 NULL
, &tracing_cpumask_fops
);
4167 trace_create_file("trace", 0644, d_tracer
,
4168 (void *) TRACE_PIPE_ALL_CPU
, &tracing_fops
);
4170 trace_create_file("available_tracers", 0444, d_tracer
,
4171 &global_trace
, &show_traces_fops
);
4173 trace_create_file("current_tracer", 0644, d_tracer
,
4174 &global_trace
, &set_tracer_fops
);
4176 #ifdef CONFIG_TRACER_MAX_TRACE
4177 trace_create_file("tracing_max_latency", 0644, d_tracer
,
4178 &tracing_max_latency
, &tracing_max_lat_fops
);
4180 trace_create_file("tracing_thresh", 0644, d_tracer
,
4181 &tracing_thresh
, &tracing_max_lat_fops
);
4184 trace_create_file("README", 0444, d_tracer
,
4185 NULL
, &tracing_readme_fops
);
4187 trace_create_file("trace_pipe", 0444, d_tracer
,
4188 (void *) TRACE_PIPE_ALL_CPU
, &tracing_pipe_fops
);
4190 trace_create_file("buffer_size_kb", 0644, d_tracer
,
4191 &global_trace
, &tracing_entries_fops
);
4193 trace_create_file("trace_marker", 0220, d_tracer
,
4194 NULL
, &tracing_mark_fops
);
4196 trace_create_file("saved_cmdlines", 0444, d_tracer
,
4197 NULL
, &tracing_saved_cmdlines_fops
);
4199 trace_create_file("trace_clock", 0644, d_tracer
, NULL
,
4202 #ifdef CONFIG_DYNAMIC_FTRACE
4203 trace_create_file("dyn_ftrace_total_info", 0444, d_tracer
,
4204 &ftrace_update_tot_cnt
, &tracing_dyn_info_fops
);
4206 #ifdef CONFIG_SYSPROF_TRACER
4207 init_tracer_sysprof_debugfs(d_tracer
);
4210 create_trace_options_dir();
4212 for_each_tracing_cpu(cpu
)
4213 tracing_init_debugfs_percpu(cpu
);
4218 static int trace_panic_handler(struct notifier_block
*this,
4219 unsigned long event
, void *unused
)
4221 if (ftrace_dump_on_oops
)
4226 static struct notifier_block trace_panic_notifier
= {
4227 .notifier_call
= trace_panic_handler
,
4229 .priority
= 150 /* priority: INT_MAX >= x >= 0 */
4232 static int trace_die_handler(struct notifier_block
*self
,
4238 if (ftrace_dump_on_oops
)
4247 static struct notifier_block trace_die_notifier
= {
4248 .notifier_call
= trace_die_handler
,
4253 * printk is set to max of 1024, we really don't need it that big.
4254 * Nothing should be printing 1000 characters anyway.
4256 #define TRACE_MAX_PRINT 1000
4259 * Define here KERN_TRACE so that we have one place to modify
4260 * it if we decide to change what log level the ftrace dump
4263 #define KERN_TRACE KERN_EMERG
4266 trace_printk_seq(struct trace_seq
*s
)
4268 /* Probably should print a warning here. */
4272 /* should be zero ended, but we are paranoid. */
4273 s
->buffer
[s
->len
] = 0;
4275 printk(KERN_TRACE
"%s", s
->buffer
);
4280 static void __ftrace_dump(bool disable_tracing
)
4282 static raw_spinlock_t ftrace_dump_lock
=
4283 (raw_spinlock_t
)__RAW_SPIN_LOCK_UNLOCKED
;
4284 /* use static because iter can be a bit big for the stack */
4285 static struct trace_iterator iter
;
4286 unsigned int old_userobj
;
4287 static int dump_ran
;
4288 unsigned long flags
;
4292 local_irq_save(flags
);
4293 __raw_spin_lock(&ftrace_dump_lock
);
4301 if (disable_tracing
)
4304 for_each_tracing_cpu(cpu
) {
4305 atomic_inc(&global_trace
.data
[cpu
]->disabled
);
4308 old_userobj
= trace_flags
& TRACE_ITER_SYM_USEROBJ
;
4310 /* don't look at user memory in panic mode */
4311 trace_flags
&= ~TRACE_ITER_SYM_USEROBJ
;
4313 printk(KERN_TRACE
"Dumping ftrace buffer:\n");
4315 /* Simulate the iterator */
4316 iter
.tr
= &global_trace
;
4317 iter
.trace
= current_trace
;
4318 iter
.cpu_file
= TRACE_PIPE_ALL_CPU
;
4321 * We need to stop all tracing on all CPUS to read the
4322 * the next buffer. This is a bit expensive, but is
4323 * not done often. We fill all what we can read,
4324 * and then release the locks again.
4327 while (!trace_empty(&iter
)) {
4330 printk(KERN_TRACE
"---------------------------------\n");
4334 /* reset all but tr, trace, and overruns */
4335 memset(&iter
.seq
, 0,
4336 sizeof(struct trace_iterator
) -
4337 offsetof(struct trace_iterator
, seq
));
4338 iter
.iter_flags
|= TRACE_FILE_LAT_FMT
;
4341 if (find_next_entry_inc(&iter
) != NULL
) {
4344 ret
= print_trace_line(&iter
);
4345 if (ret
!= TRACE_TYPE_NO_CONSUME
)
4346 trace_consume(&iter
);
4349 trace_printk_seq(&iter
.seq
);
4353 printk(KERN_TRACE
" (ftrace buffer empty)\n");
4355 printk(KERN_TRACE
"---------------------------------\n");
4357 /* Re-enable tracing if requested */
4358 if (!disable_tracing
) {
4359 trace_flags
|= old_userobj
;
4361 for_each_tracing_cpu(cpu
) {
4362 atomic_dec(&global_trace
.data
[cpu
]->disabled
);
4368 __raw_spin_unlock(&ftrace_dump_lock
);
4369 local_irq_restore(flags
);
4372 /* By default: disable tracing after the dump */
4373 void ftrace_dump(void)
4375 __ftrace_dump(true);
4378 __init
static int tracer_alloc_buffers(void)
4384 if (!alloc_cpumask_var(&tracing_buffer_mask
, GFP_KERNEL
))
4387 if (!alloc_cpumask_var(&tracing_cpumask
, GFP_KERNEL
))
4388 goto out_free_buffer_mask
;
4390 if (!zalloc_cpumask_var(&tracing_reader_cpumask
, GFP_KERNEL
))
4391 goto out_free_tracing_cpumask
;
4393 /* To save memory, keep the ring buffer size to its minimum */
4394 if (ring_buffer_expanded
)
4395 ring_buf_size
= trace_buf_size
;
4399 cpumask_copy(tracing_buffer_mask
, cpu_possible_mask
);
4400 cpumask_copy(tracing_cpumask
, cpu_all_mask
);
4402 /* TODO: make the number of buffers hot pluggable with CPUS */
4403 global_trace
.buffer
= ring_buffer_alloc(ring_buf_size
,
4404 TRACE_BUFFER_FLAGS
);
4405 if (!global_trace
.buffer
) {
4406 printk(KERN_ERR
"tracer: failed to allocate ring buffer!\n");
4408 goto out_free_cpumask
;
4410 global_trace
.entries
= ring_buffer_size(global_trace
.buffer
);
4413 #ifdef CONFIG_TRACER_MAX_TRACE
4414 max_tr
.buffer
= ring_buffer_alloc(ring_buf_size
,
4415 TRACE_BUFFER_FLAGS
);
4416 if (!max_tr
.buffer
) {
4417 printk(KERN_ERR
"tracer: failed to allocate max ring buffer!\n");
4419 ring_buffer_free(global_trace
.buffer
);
4420 goto out_free_cpumask
;
4422 max_tr
.entries
= ring_buffer_size(max_tr
.buffer
);
4423 WARN_ON(max_tr
.entries
!= global_trace
.entries
);
4426 /* Allocate the first page for all buffers */
4427 for_each_tracing_cpu(i
) {
4428 global_trace
.data
[i
] = &per_cpu(global_trace_cpu
, i
);
4429 max_tr
.data
[i
] = &per_cpu(max_data
, i
);
4432 trace_init_cmdlines();
4434 register_tracer(&nop_trace
);
4435 current_trace
= &nop_trace
;
4436 #ifdef CONFIG_BOOT_TRACER
4437 register_tracer(&boot_tracer
);
4439 /* All seems OK, enable tracing */
4440 tracing_disabled
= 0;
4442 atomic_notifier_chain_register(&panic_notifier_list
,
4443 &trace_panic_notifier
);
4445 register_die_notifier(&trace_die_notifier
);
4450 free_cpumask_var(tracing_reader_cpumask
);
4451 out_free_tracing_cpumask
:
4452 free_cpumask_var(tracing_cpumask
);
4453 out_free_buffer_mask
:
4454 free_cpumask_var(tracing_buffer_mask
);
4459 __init
static int clear_boot_tracer(void)
4462 * The default tracer at boot buffer is an init section.
4463 * This function is called in lateinit. If we did not
4464 * find the boot tracer, then clear it out, to prevent
4465 * later registration from accessing the buffer that is
4466 * about to be freed.
4468 if (!default_bootup_tracer
)
4471 printk(KERN_INFO
"ftrace bootup tracer '%s' not registered.\n",
4472 default_bootup_tracer
);
4473 default_bootup_tracer
= NULL
;
4478 early_initcall(tracer_alloc_buffers
);
4479 fs_initcall(tracer_init_debugfs
);
4480 late_initcall(clear_boot_tracer
);