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 <generated/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/rwsem.h>
36 #include <linux/slab.h>
37 #include <linux/ctype.h>
38 #include <linux/init.h>
39 #include <linux/poll.h>
43 #include "trace_output.h"
45 #define TRACE_BUFFER_FLAGS (RB_FL_OVERWRITE)
48 * On boot up, the ring buffer is set to the minimum size, so that
49 * we do not waste memory on systems that are not using tracing.
51 int ring_buffer_expanded
;
54 * We need to change this state when a selftest is running.
55 * A selftest will lurk into the ring-buffer to count the
56 * entries inserted during the selftest although some concurrent
57 * insertions into the ring-buffer such as trace_printk could occurred
58 * at the same time, giving false positive or negative results.
60 static bool __read_mostly tracing_selftest_running
;
63 * If a tracer is running, we do not want to run SELFTEST.
65 bool __read_mostly tracing_selftest_disabled
;
67 /* For tracers that don't implement custom flags */
68 static struct tracer_opt dummy_tracer_opt
[] = {
72 static struct tracer_flags dummy_tracer_flags
= {
74 .opts
= dummy_tracer_opt
77 static int dummy_set_flag(u32 old_flags
, u32 bit
, int set
)
83 * Kill all tracing for good (never come back).
84 * It is initialized to 1 but will turn to zero if the initialization
85 * of the tracer is successful. But that is the only place that sets
88 static int tracing_disabled
= 1;
90 DEFINE_PER_CPU(int, ftrace_cpu_disabled
);
92 static inline void ftrace_disable_cpu(void)
95 __this_cpu_inc(ftrace_cpu_disabled
);
98 static inline void ftrace_enable_cpu(void)
100 __this_cpu_dec(ftrace_cpu_disabled
);
104 cpumask_var_t __read_mostly tracing_buffer_mask
;
107 * ftrace_dump_on_oops - variable to dump ftrace buffer on oops
109 * If there is an oops (or kernel panic) and the ftrace_dump_on_oops
110 * is set, then ftrace_dump is called. This will output the contents
111 * of the ftrace buffers to the console. This is very useful for
112 * capturing traces that lead to crashes and outputing it to a
115 * It is default off, but you can enable it with either specifying
116 * "ftrace_dump_on_oops" in the kernel command line, or setting
117 * /proc/sys/kernel/ftrace_dump_on_oops
118 * Set 1 if you want to dump buffers of all CPUs
119 * Set 2 if you want to dump the buffer of the CPU that triggered oops
122 enum ftrace_dump_mode ftrace_dump_on_oops
;
124 static int tracing_set_tracer(const char *buf
);
126 #define MAX_TRACER_SIZE 100
127 static char bootup_tracer_buf
[MAX_TRACER_SIZE
] __initdata
;
128 static char *default_bootup_tracer
;
130 static int __init
set_cmdline_ftrace(char *str
)
132 strncpy(bootup_tracer_buf
, str
, MAX_TRACER_SIZE
);
133 default_bootup_tracer
= bootup_tracer_buf
;
134 /* We are using ftrace early, expand it */
135 ring_buffer_expanded
= 1;
138 __setup("ftrace=", set_cmdline_ftrace
);
140 static int __init
set_ftrace_dump_on_oops(char *str
)
142 if (*str
++ != '=' || !*str
) {
143 ftrace_dump_on_oops
= DUMP_ALL
;
147 if (!strcmp("orig_cpu", str
)) {
148 ftrace_dump_on_oops
= DUMP_ORIG
;
154 __setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops
);
156 unsigned long long ns2usecs(cycle_t nsec
)
164 * The global_trace is the descriptor that holds the tracing
165 * buffers for the live tracing. For each CPU, it contains
166 * a link list of pages that will store trace entries. The
167 * page descriptor of the pages in the memory is used to hold
168 * the link list by linking the lru item in the page descriptor
169 * to each of the pages in the buffer per CPU.
171 * For each active CPU there is a data field that holds the
172 * pages for the buffer for that CPU. Each CPU has the same number
173 * of pages allocated for its buffer.
175 static struct trace_array global_trace
;
177 static DEFINE_PER_CPU(struct trace_array_cpu
, global_trace_cpu
);
179 int filter_current_check_discard(struct ring_buffer
*buffer
,
180 struct ftrace_event_call
*call
, void *rec
,
181 struct ring_buffer_event
*event
)
183 return filter_check_discard(call
, rec
, buffer
, event
);
185 EXPORT_SYMBOL_GPL(filter_current_check_discard
);
187 cycle_t
ftrace_now(int cpu
)
191 /* Early boot up does not have a buffer yet */
192 if (!global_trace
.buffer
)
193 return trace_clock_local();
195 ts
= ring_buffer_time_stamp(global_trace
.buffer
, cpu
);
196 ring_buffer_normalize_time_stamp(global_trace
.buffer
, cpu
, &ts
);
202 * The max_tr is used to snapshot the global_trace when a maximum
203 * latency is reached. Some tracers will use this to store a maximum
204 * trace while it continues examining live traces.
206 * The buffers for the max_tr are set up the same as the global_trace.
207 * When a snapshot is taken, the link list of the max_tr is swapped
208 * with the link list of the global_trace and the buffers are reset for
209 * the global_trace so the tracing can continue.
211 static struct trace_array max_tr
;
213 static DEFINE_PER_CPU(struct trace_array_cpu
, max_tr_data
);
215 /* tracer_enabled is used to toggle activation of a tracer */
216 static int tracer_enabled
= 1;
219 * tracing_is_enabled - return tracer_enabled status
221 * This function is used by other tracers to know the status
222 * of the tracer_enabled flag. Tracers may use this function
223 * to know if it should enable their features when starting
224 * up. See irqsoff tracer for an example (start_irqsoff_tracer).
226 int tracing_is_enabled(void)
228 return tracer_enabled
;
232 * trace_buf_size is the size in bytes that is allocated
233 * for a buffer. Note, the number of bytes is always rounded
236 * This number is purposely set to a low number of 16384.
237 * If the dump on oops happens, it will be much appreciated
238 * to not have to wait for all that output. Anyway this can be
239 * boot time and run time configurable.
241 #define TRACE_BUF_SIZE_DEFAULT 1441792UL /* 16384 * 88 (sizeof(entry)) */
243 static unsigned long trace_buf_size
= TRACE_BUF_SIZE_DEFAULT
;
245 /* trace_types holds a link list of available tracers. */
246 static struct tracer
*trace_types __read_mostly
;
248 /* current_trace points to the tracer that is currently active */
249 static struct tracer
*current_trace __read_mostly
;
252 * trace_types_lock is used to protect the trace_types list.
254 static DEFINE_MUTEX(trace_types_lock
);
257 * serialize the access of the ring buffer
259 * ring buffer serializes readers, but it is low level protection.
260 * The validity of the events (which returns by ring_buffer_peek() ..etc)
261 * are not protected by ring buffer.
263 * The content of events may become garbage if we allow other process consumes
264 * these events concurrently:
265 * A) the page of the consumed events may become a normal page
266 * (not reader page) in ring buffer, and this page will be rewrited
267 * by events producer.
268 * B) The page of the consumed events may become a page for splice_read,
269 * and this page will be returned to system.
271 * These primitives allow multi process access to different cpu ring buffer
274 * These primitives don't distinguish read-only and read-consume access.
275 * Multi read-only access are also serialized.
279 static DECLARE_RWSEM(all_cpu_access_lock
);
280 static DEFINE_PER_CPU(struct mutex
, cpu_access_lock
);
282 static inline void trace_access_lock(int cpu
)
284 if (cpu
== TRACE_PIPE_ALL_CPU
) {
285 /* gain it for accessing the whole ring buffer. */
286 down_write(&all_cpu_access_lock
);
288 /* gain it for accessing a cpu ring buffer. */
290 /* Firstly block other trace_access_lock(TRACE_PIPE_ALL_CPU). */
291 down_read(&all_cpu_access_lock
);
293 /* Secondly block other access to this @cpu ring buffer. */
294 mutex_lock(&per_cpu(cpu_access_lock
, cpu
));
298 static inline void trace_access_unlock(int cpu
)
300 if (cpu
== TRACE_PIPE_ALL_CPU
) {
301 up_write(&all_cpu_access_lock
);
303 mutex_unlock(&per_cpu(cpu_access_lock
, cpu
));
304 up_read(&all_cpu_access_lock
);
308 static inline void trace_access_lock_init(void)
312 for_each_possible_cpu(cpu
)
313 mutex_init(&per_cpu(cpu_access_lock
, cpu
));
318 static DEFINE_MUTEX(access_lock
);
320 static inline void trace_access_lock(int cpu
)
323 mutex_lock(&access_lock
);
326 static inline void trace_access_unlock(int cpu
)
329 mutex_unlock(&access_lock
);
332 static inline void trace_access_lock_init(void)
338 /* trace_wait is a waitqueue for tasks blocked on trace_poll */
339 static DECLARE_WAIT_QUEUE_HEAD(trace_wait
);
341 /* trace_flags holds trace_options default values */
342 unsigned long trace_flags
= TRACE_ITER_PRINT_PARENT
| TRACE_ITER_PRINTK
|
343 TRACE_ITER_ANNOTATE
| TRACE_ITER_CONTEXT_INFO
| TRACE_ITER_SLEEP_TIME
|
344 TRACE_ITER_GRAPH_TIME
| TRACE_ITER_RECORD_CMD
;
346 static int trace_stop_count
;
347 static DEFINE_SPINLOCK(tracing_start_lock
);
350 * trace_wake_up - wake up tasks waiting for trace input
352 * Simply wakes up any task that is blocked on the trace_wait
353 * queue. These is used with trace_poll for tasks polling the trace.
355 void trace_wake_up(void)
359 if (trace_flags
& TRACE_ITER_BLOCK
)
362 * The runqueue_is_locked() can fail, but this is the best we
366 if (!runqueue_is_locked(cpu
))
367 wake_up(&trace_wait
);
371 static int __init
set_buf_size(char *str
)
373 unsigned long buf_size
;
377 buf_size
= memparse(str
, &str
);
378 /* nr_entries can not be zero */
381 trace_buf_size
= buf_size
;
384 __setup("trace_buf_size=", set_buf_size
);
386 static int __init
set_tracing_thresh(char *str
)
388 unsigned long threshhold
;
393 ret
= strict_strtoul(str
, 0, &threshhold
);
396 tracing_thresh
= threshhold
* 1000;
399 __setup("tracing_thresh=", set_tracing_thresh
);
401 unsigned long nsecs_to_usecs(unsigned long nsecs
)
406 /* These must match the bit postions in trace_iterator_flags */
407 static const char *trace_options
[] = {
436 { trace_clock_local
, "local" },
437 { trace_clock_global
, "global" },
443 * trace_parser_get_init - gets the buffer for trace parser
445 int trace_parser_get_init(struct trace_parser
*parser
, int size
)
447 memset(parser
, 0, sizeof(*parser
));
449 parser
->buffer
= kmalloc(size
, GFP_KERNEL
);
458 * trace_parser_put - frees the buffer for trace parser
460 void trace_parser_put(struct trace_parser
*parser
)
462 kfree(parser
->buffer
);
466 * trace_get_user - reads the user input string separated by space
467 * (matched by isspace(ch))
469 * For each string found the 'struct trace_parser' is updated,
470 * and the function returns.
472 * Returns number of bytes read.
474 * See kernel/trace/trace.h for 'struct trace_parser' details.
476 int trace_get_user(struct trace_parser
*parser
, const char __user
*ubuf
,
477 size_t cnt
, loff_t
*ppos
)
484 trace_parser_clear(parser
);
486 ret
= get_user(ch
, ubuf
++);
494 * The parser is not finished with the last write,
495 * continue reading the user input without skipping spaces.
498 /* skip white space */
499 while (cnt
&& isspace(ch
)) {
500 ret
= get_user(ch
, ubuf
++);
507 /* only spaces were written */
517 /* read the non-space input */
518 while (cnt
&& !isspace(ch
)) {
519 if (parser
->idx
< parser
->size
- 1)
520 parser
->buffer
[parser
->idx
++] = ch
;
525 ret
= get_user(ch
, ubuf
++);
532 /* We either got finished input or we have to wait for another call. */
534 parser
->buffer
[parser
->idx
] = 0;
535 parser
->cont
= false;
538 parser
->buffer
[parser
->idx
++] = ch
;
548 ssize_t
trace_seq_to_user(struct trace_seq
*s
, char __user
*ubuf
, size_t cnt
)
556 if (s
->len
<= s
->readpos
)
559 len
= s
->len
- s
->readpos
;
562 ret
= copy_to_user(ubuf
, s
->buffer
+ s
->readpos
, cnt
);
572 static ssize_t
trace_seq_to_buffer(struct trace_seq
*s
, void *buf
, size_t cnt
)
577 if (s
->len
<= s
->readpos
)
580 len
= s
->len
- s
->readpos
;
583 ret
= memcpy(buf
, s
->buffer
+ s
->readpos
, cnt
);
592 * ftrace_max_lock is used to protect the swapping of buffers
593 * when taking a max snapshot. The buffers themselves are
594 * protected by per_cpu spinlocks. But the action of the swap
595 * needs its own lock.
597 * This is defined as a arch_spinlock_t in order to help
598 * with performance when lockdep debugging is enabled.
600 * It is also used in other places outside the update_max_tr
601 * so it needs to be defined outside of the
602 * CONFIG_TRACER_MAX_TRACE.
604 static arch_spinlock_t ftrace_max_lock
=
605 (arch_spinlock_t
)__ARCH_SPIN_LOCK_UNLOCKED
;
607 unsigned long __read_mostly tracing_thresh
;
609 #ifdef CONFIG_TRACER_MAX_TRACE
610 unsigned long __read_mostly tracing_max_latency
;
613 * Copy the new maximum trace into the separate maximum-trace
614 * structure. (this way the maximum trace is permanently saved,
615 * for later retrieval via /sys/kernel/debug/tracing/latency_trace)
618 __update_max_tr(struct trace_array
*tr
, struct task_struct
*tsk
, int cpu
)
620 struct trace_array_cpu
*data
= tr
->data
[cpu
];
621 struct trace_array_cpu
*max_data
;
624 max_tr
.time_start
= data
->preempt_timestamp
;
626 max_data
= max_tr
.data
[cpu
];
627 max_data
->saved_latency
= tracing_max_latency
;
628 max_data
->critical_start
= data
->critical_start
;
629 max_data
->critical_end
= data
->critical_end
;
631 memcpy(max_data
->comm
, tsk
->comm
, TASK_COMM_LEN
);
632 max_data
->pid
= tsk
->pid
;
633 max_data
->uid
= task_uid(tsk
);
634 max_data
->nice
= tsk
->static_prio
- 20 - MAX_RT_PRIO
;
635 max_data
->policy
= tsk
->policy
;
636 max_data
->rt_priority
= tsk
->rt_priority
;
638 /* record this tasks comm */
639 tracing_record_cmdline(tsk
);
643 * update_max_tr - snapshot all trace buffers from global_trace to max_tr
645 * @tsk: the task with the latency
646 * @cpu: The cpu that initiated the trace.
648 * Flip the buffers between the @tr and the max_tr and record information
649 * about which task was the cause of this latency.
652 update_max_tr(struct trace_array
*tr
, struct task_struct
*tsk
, int cpu
)
654 struct ring_buffer
*buf
= tr
->buffer
;
656 if (trace_stop_count
)
659 WARN_ON_ONCE(!irqs_disabled());
660 if (!current_trace
->use_max_tr
) {
664 arch_spin_lock(&ftrace_max_lock
);
666 tr
->buffer
= max_tr
.buffer
;
669 __update_max_tr(tr
, tsk
, cpu
);
670 arch_spin_unlock(&ftrace_max_lock
);
674 * update_max_tr_single - only copy one trace over, and reset the rest
676 * @tsk - task with the latency
677 * @cpu - the cpu of the buffer to copy.
679 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
682 update_max_tr_single(struct trace_array
*tr
, struct task_struct
*tsk
, int cpu
)
686 if (trace_stop_count
)
689 WARN_ON_ONCE(!irqs_disabled());
690 if (!current_trace
->use_max_tr
) {
695 arch_spin_lock(&ftrace_max_lock
);
697 ftrace_disable_cpu();
699 ret
= ring_buffer_swap_cpu(max_tr
.buffer
, tr
->buffer
, cpu
);
703 * We failed to swap the buffer due to a commit taking
704 * place on this CPU. We fail to record, but we reset
705 * the max trace buffer (no one writes directly to it)
706 * and flag that it failed.
708 trace_array_printk(&max_tr
, _THIS_IP_
,
709 "Failed to swap buffers due to commit in progress\n");
714 WARN_ON_ONCE(ret
&& ret
!= -EAGAIN
&& ret
!= -EBUSY
);
716 __update_max_tr(tr
, tsk
, cpu
);
717 arch_spin_unlock(&ftrace_max_lock
);
719 #endif /* CONFIG_TRACER_MAX_TRACE */
722 * register_tracer - register a tracer with the ftrace system.
723 * @type - the plugin for the tracer
725 * Register a new plugin tracer.
727 int register_tracer(struct tracer
*type
)
728 __releases(kernel_lock
)
729 __acquires(kernel_lock
)
735 pr_info("Tracer must have a name\n");
739 if (strlen(type
->name
) >= MAX_TRACER_SIZE
) {
740 pr_info("Tracer has a name longer than %d\n", MAX_TRACER_SIZE
);
744 mutex_lock(&trace_types_lock
);
746 tracing_selftest_running
= true;
748 for (t
= trace_types
; t
; t
= t
->next
) {
749 if (strcmp(type
->name
, t
->name
) == 0) {
751 pr_info("Tracer %s already registered\n",
759 type
->set_flag
= &dummy_set_flag
;
761 type
->flags
= &dummy_tracer_flags
;
763 if (!type
->flags
->opts
)
764 type
->flags
->opts
= dummy_tracer_opt
;
765 if (!type
->wait_pipe
)
766 type
->wait_pipe
= default_wait_pipe
;
769 #ifdef CONFIG_FTRACE_STARTUP_TEST
770 if (type
->selftest
&& !tracing_selftest_disabled
) {
771 struct tracer
*saved_tracer
= current_trace
;
772 struct trace_array
*tr
= &global_trace
;
775 * Run a selftest on this tracer.
776 * Here we reset the trace buffer, and set the current
777 * tracer to be this tracer. The tracer can then run some
778 * internal tracing to verify that everything is in order.
779 * If we fail, we do not register this tracer.
781 tracing_reset_online_cpus(tr
);
783 current_trace
= type
;
784 /* the test is responsible for initializing and enabling */
785 pr_info("Testing tracer %s: ", type
->name
);
786 ret
= type
->selftest(type
, tr
);
787 /* the test is responsible for resetting too */
788 current_trace
= saved_tracer
;
790 printk(KERN_CONT
"FAILED!\n");
793 /* Only reset on passing, to avoid touching corrupted buffers */
794 tracing_reset_online_cpus(tr
);
796 printk(KERN_CONT
"PASSED\n");
800 type
->next
= trace_types
;
804 tracing_selftest_running
= false;
805 mutex_unlock(&trace_types_lock
);
807 if (ret
|| !default_bootup_tracer
)
810 if (strncmp(default_bootup_tracer
, type
->name
, MAX_TRACER_SIZE
))
813 printk(KERN_INFO
"Starting tracer '%s'\n", type
->name
);
814 /* Do we want this tracer to start on bootup? */
815 tracing_set_tracer(type
->name
);
816 default_bootup_tracer
= NULL
;
817 /* disable other selftests, since this will break it. */
818 tracing_selftest_disabled
= 1;
819 #ifdef CONFIG_FTRACE_STARTUP_TEST
820 printk(KERN_INFO
"Disabling FTRACE selftests due to running tracer '%s'\n",
828 void unregister_tracer(struct tracer
*type
)
832 mutex_lock(&trace_types_lock
);
833 for (t
= &trace_types
; *t
; t
= &(*t
)->next
) {
837 pr_info("Tracer %s not registered\n", type
->name
);
843 if (type
== current_trace
&& tracer_enabled
) {
846 if (current_trace
->stop
)
847 current_trace
->stop(&global_trace
);
848 current_trace
= &nop_trace
;
851 mutex_unlock(&trace_types_lock
);
854 static void __tracing_reset(struct ring_buffer
*buffer
, int cpu
)
856 ftrace_disable_cpu();
857 ring_buffer_reset_cpu(buffer
, cpu
);
861 void tracing_reset(struct trace_array
*tr
, int cpu
)
863 struct ring_buffer
*buffer
= tr
->buffer
;
865 ring_buffer_record_disable(buffer
);
867 /* Make sure all commits have finished */
869 __tracing_reset(buffer
, cpu
);
871 ring_buffer_record_enable(buffer
);
874 void tracing_reset_online_cpus(struct trace_array
*tr
)
876 struct ring_buffer
*buffer
= tr
->buffer
;
879 ring_buffer_record_disable(buffer
);
881 /* Make sure all commits have finished */
884 tr
->time_start
= ftrace_now(tr
->cpu
);
886 for_each_online_cpu(cpu
)
887 __tracing_reset(buffer
, cpu
);
889 ring_buffer_record_enable(buffer
);
892 void tracing_reset_current(int cpu
)
894 tracing_reset(&global_trace
, cpu
);
897 void tracing_reset_current_online_cpus(void)
899 tracing_reset_online_cpus(&global_trace
);
902 #define SAVED_CMDLINES 128
903 #define NO_CMDLINE_MAP UINT_MAX
904 static unsigned map_pid_to_cmdline
[PID_MAX_DEFAULT
+1];
905 static unsigned map_cmdline_to_pid
[SAVED_CMDLINES
];
906 static char saved_cmdlines
[SAVED_CMDLINES
][TASK_COMM_LEN
];
907 static int cmdline_idx
;
908 static arch_spinlock_t trace_cmdline_lock
= __ARCH_SPIN_LOCK_UNLOCKED
;
910 /* temporary disable recording */
911 static atomic_t trace_record_cmdline_disabled __read_mostly
;
913 static void trace_init_cmdlines(void)
915 memset(&map_pid_to_cmdline
, NO_CMDLINE_MAP
, sizeof(map_pid_to_cmdline
));
916 memset(&map_cmdline_to_pid
, NO_CMDLINE_MAP
, sizeof(map_cmdline_to_pid
));
920 int is_tracing_stopped(void)
922 return trace_stop_count
;
926 * ftrace_off_permanent - disable all ftrace code permanently
928 * This should only be called when a serious anomally has
929 * been detected. This will turn off the function tracing,
930 * ring buffers, and other tracing utilites. It takes no
931 * locks and can be called from any context.
933 void ftrace_off_permanent(void)
935 tracing_disabled
= 1;
937 tracing_off_permanent();
941 * tracing_start - quick start of the tracer
943 * If tracing is enabled but was stopped by tracing_stop,
944 * this will start the tracer back up.
946 void tracing_start(void)
948 struct ring_buffer
*buffer
;
951 if (tracing_disabled
)
954 spin_lock_irqsave(&tracing_start_lock
, flags
);
955 if (--trace_stop_count
) {
956 if (trace_stop_count
< 0) {
957 /* Someone screwed up their debugging */
959 trace_stop_count
= 0;
964 /* Prevent the buffers from switching */
965 arch_spin_lock(&ftrace_max_lock
);
967 buffer
= global_trace
.buffer
;
969 ring_buffer_record_enable(buffer
);
971 buffer
= max_tr
.buffer
;
973 ring_buffer_record_enable(buffer
);
975 arch_spin_unlock(&ftrace_max_lock
);
979 spin_unlock_irqrestore(&tracing_start_lock
, flags
);
983 * tracing_stop - quick stop of the tracer
985 * Light weight way to stop tracing. Use in conjunction with
988 void tracing_stop(void)
990 struct ring_buffer
*buffer
;
994 spin_lock_irqsave(&tracing_start_lock
, flags
);
995 if (trace_stop_count
++)
998 /* Prevent the buffers from switching */
999 arch_spin_lock(&ftrace_max_lock
);
1001 buffer
= global_trace
.buffer
;
1003 ring_buffer_record_disable(buffer
);
1005 buffer
= max_tr
.buffer
;
1007 ring_buffer_record_disable(buffer
);
1009 arch_spin_unlock(&ftrace_max_lock
);
1012 spin_unlock_irqrestore(&tracing_start_lock
, flags
);
1015 void trace_stop_cmdline_recording(void);
1017 static void trace_save_cmdline(struct task_struct
*tsk
)
1021 if (!tsk
->pid
|| unlikely(tsk
->pid
> PID_MAX_DEFAULT
))
1025 * It's not the end of the world if we don't get
1026 * the lock, but we also don't want to spin
1027 * nor do we want to disable interrupts,
1028 * so if we miss here, then better luck next time.
1030 if (!arch_spin_trylock(&trace_cmdline_lock
))
1033 idx
= map_pid_to_cmdline
[tsk
->pid
];
1034 if (idx
== NO_CMDLINE_MAP
) {
1035 idx
= (cmdline_idx
+ 1) % SAVED_CMDLINES
;
1038 * Check whether the cmdline buffer at idx has a pid
1039 * mapped. We are going to overwrite that entry so we
1040 * need to clear the map_pid_to_cmdline. Otherwise we
1041 * would read the new comm for the old pid.
1043 pid
= map_cmdline_to_pid
[idx
];
1044 if (pid
!= NO_CMDLINE_MAP
)
1045 map_pid_to_cmdline
[pid
] = NO_CMDLINE_MAP
;
1047 map_cmdline_to_pid
[idx
] = tsk
->pid
;
1048 map_pid_to_cmdline
[tsk
->pid
] = idx
;
1053 memcpy(&saved_cmdlines
[idx
], tsk
->comm
, TASK_COMM_LEN
);
1055 arch_spin_unlock(&trace_cmdline_lock
);
1058 void trace_find_cmdline(int pid
, char comm
[])
1063 strcpy(comm
, "<idle>");
1067 if (WARN_ON_ONCE(pid
< 0)) {
1068 strcpy(comm
, "<XXX>");
1072 if (pid
> PID_MAX_DEFAULT
) {
1073 strcpy(comm
, "<...>");
1078 arch_spin_lock(&trace_cmdline_lock
);
1079 map
= map_pid_to_cmdline
[pid
];
1080 if (map
!= NO_CMDLINE_MAP
)
1081 strcpy(comm
, saved_cmdlines
[map
]);
1083 strcpy(comm
, "<...>");
1085 arch_spin_unlock(&trace_cmdline_lock
);
1089 void tracing_record_cmdline(struct task_struct
*tsk
)
1091 if (atomic_read(&trace_record_cmdline_disabled
) || !tracer_enabled
||
1095 trace_save_cmdline(tsk
);
1099 tracing_generic_entry_update(struct trace_entry
*entry
, unsigned long flags
,
1102 struct task_struct
*tsk
= current
;
1104 entry
->preempt_count
= pc
& 0xff;
1105 entry
->pid
= (tsk
) ? tsk
->pid
: 0;
1106 entry
->lock_depth
= (tsk
) ? tsk
->lock_depth
: 0;
1108 #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
1109 (irqs_disabled_flags(flags
) ? TRACE_FLAG_IRQS_OFF
: 0) |
1111 TRACE_FLAG_IRQS_NOSUPPORT
|
1113 ((pc
& HARDIRQ_MASK
) ? TRACE_FLAG_HARDIRQ
: 0) |
1114 ((pc
& SOFTIRQ_MASK
) ? TRACE_FLAG_SOFTIRQ
: 0) |
1115 (need_resched() ? TRACE_FLAG_NEED_RESCHED
: 0);
1117 EXPORT_SYMBOL_GPL(tracing_generic_entry_update
);
1119 struct ring_buffer_event
*
1120 trace_buffer_lock_reserve(struct ring_buffer
*buffer
,
1123 unsigned long flags
, int pc
)
1125 struct ring_buffer_event
*event
;
1127 event
= ring_buffer_lock_reserve(buffer
, len
);
1128 if (event
!= NULL
) {
1129 struct trace_entry
*ent
= ring_buffer_event_data(event
);
1131 tracing_generic_entry_update(ent
, flags
, pc
);
1139 __trace_buffer_unlock_commit(struct ring_buffer
*buffer
,
1140 struct ring_buffer_event
*event
,
1141 unsigned long flags
, int pc
,
1144 ring_buffer_unlock_commit(buffer
, event
);
1146 ftrace_trace_stack(buffer
, flags
, 6, pc
);
1147 ftrace_trace_userstack(buffer
, flags
, pc
);
1153 void trace_buffer_unlock_commit(struct ring_buffer
*buffer
,
1154 struct ring_buffer_event
*event
,
1155 unsigned long flags
, int pc
)
1157 __trace_buffer_unlock_commit(buffer
, event
, flags
, pc
, 1);
1160 struct ring_buffer_event
*
1161 trace_current_buffer_lock_reserve(struct ring_buffer
**current_rb
,
1162 int type
, unsigned long len
,
1163 unsigned long flags
, int pc
)
1165 *current_rb
= global_trace
.buffer
;
1166 return trace_buffer_lock_reserve(*current_rb
,
1167 type
, len
, flags
, pc
);
1169 EXPORT_SYMBOL_GPL(trace_current_buffer_lock_reserve
);
1171 void trace_current_buffer_unlock_commit(struct ring_buffer
*buffer
,
1172 struct ring_buffer_event
*event
,
1173 unsigned long flags
, int pc
)
1175 __trace_buffer_unlock_commit(buffer
, event
, flags
, pc
, 1);
1177 EXPORT_SYMBOL_GPL(trace_current_buffer_unlock_commit
);
1179 void trace_nowake_buffer_unlock_commit(struct ring_buffer
*buffer
,
1180 struct ring_buffer_event
*event
,
1181 unsigned long flags
, int pc
)
1183 __trace_buffer_unlock_commit(buffer
, event
, flags
, pc
, 0);
1185 EXPORT_SYMBOL_GPL(trace_nowake_buffer_unlock_commit
);
1187 void trace_current_buffer_discard_commit(struct ring_buffer
*buffer
,
1188 struct ring_buffer_event
*event
)
1190 ring_buffer_discard_commit(buffer
, event
);
1192 EXPORT_SYMBOL_GPL(trace_current_buffer_discard_commit
);
1195 trace_function(struct trace_array
*tr
,
1196 unsigned long ip
, unsigned long parent_ip
, unsigned long flags
,
1199 struct ftrace_event_call
*call
= &event_function
;
1200 struct ring_buffer
*buffer
= tr
->buffer
;
1201 struct ring_buffer_event
*event
;
1202 struct ftrace_entry
*entry
;
1204 /* If we are reading the ring buffer, don't trace */
1205 if (unlikely(__this_cpu_read(ftrace_cpu_disabled
)))
1208 event
= trace_buffer_lock_reserve(buffer
, TRACE_FN
, sizeof(*entry
),
1212 entry
= ring_buffer_event_data(event
);
1214 entry
->parent_ip
= parent_ip
;
1216 if (!filter_check_discard(call
, entry
, buffer
, event
))
1217 ring_buffer_unlock_commit(buffer
, event
);
1221 ftrace(struct trace_array
*tr
, struct trace_array_cpu
*data
,
1222 unsigned long ip
, unsigned long parent_ip
, unsigned long flags
,
1225 if (likely(!atomic_read(&data
->disabled
)))
1226 trace_function(tr
, ip
, parent_ip
, flags
, pc
);
1229 #ifdef CONFIG_STACKTRACE
1230 static void __ftrace_trace_stack(struct ring_buffer
*buffer
,
1231 unsigned long flags
,
1234 struct ftrace_event_call
*call
= &event_kernel_stack
;
1235 struct ring_buffer_event
*event
;
1236 struct stack_entry
*entry
;
1237 struct stack_trace trace
;
1239 event
= trace_buffer_lock_reserve(buffer
, TRACE_STACK
,
1240 sizeof(*entry
), flags
, pc
);
1243 entry
= ring_buffer_event_data(event
);
1244 memset(&entry
->caller
, 0, sizeof(entry
->caller
));
1246 trace
.nr_entries
= 0;
1247 trace
.max_entries
= FTRACE_STACK_ENTRIES
;
1249 trace
.entries
= entry
->caller
;
1251 save_stack_trace(&trace
);
1252 if (!filter_check_discard(call
, entry
, buffer
, event
))
1253 ring_buffer_unlock_commit(buffer
, event
);
1256 void ftrace_trace_stack(struct ring_buffer
*buffer
, unsigned long flags
,
1259 if (!(trace_flags
& TRACE_ITER_STACKTRACE
))
1262 __ftrace_trace_stack(buffer
, flags
, skip
, pc
);
1265 void __trace_stack(struct trace_array
*tr
, unsigned long flags
, int skip
,
1268 __ftrace_trace_stack(tr
->buffer
, flags
, skip
, pc
);
1272 * trace_dump_stack - record a stack back trace in the trace buffer
1274 void trace_dump_stack(void)
1276 unsigned long flags
;
1278 if (tracing_disabled
|| tracing_selftest_running
)
1281 local_save_flags(flags
);
1283 /* skipping 3 traces, seems to get us at the caller of this function */
1284 __ftrace_trace_stack(global_trace
.buffer
, flags
, 3, preempt_count());
1288 ftrace_trace_userstack(struct ring_buffer
*buffer
, unsigned long flags
, int pc
)
1290 struct ftrace_event_call
*call
= &event_user_stack
;
1291 struct ring_buffer_event
*event
;
1292 struct userstack_entry
*entry
;
1293 struct stack_trace trace
;
1295 if (!(trace_flags
& TRACE_ITER_USERSTACKTRACE
))
1299 * NMIs can not handle page faults, even with fix ups.
1300 * The save user stack can (and often does) fault.
1302 if (unlikely(in_nmi()))
1305 event
= trace_buffer_lock_reserve(buffer
, TRACE_USER_STACK
,
1306 sizeof(*entry
), flags
, pc
);
1309 entry
= ring_buffer_event_data(event
);
1311 entry
->tgid
= current
->tgid
;
1312 memset(&entry
->caller
, 0, sizeof(entry
->caller
));
1314 trace
.nr_entries
= 0;
1315 trace
.max_entries
= FTRACE_STACK_ENTRIES
;
1317 trace
.entries
= entry
->caller
;
1319 save_stack_trace_user(&trace
);
1320 if (!filter_check_discard(call
, entry
, buffer
, event
))
1321 ring_buffer_unlock_commit(buffer
, event
);
1325 static void __trace_userstack(struct trace_array
*tr
, unsigned long flags
)
1327 ftrace_trace_userstack(tr
, flags
, preempt_count());
1331 #endif /* CONFIG_STACKTRACE */
1334 * trace_vbprintk - write binary msg to tracing buffer
1337 int trace_vbprintk(unsigned long ip
, const char *fmt
, va_list args
)
1339 static arch_spinlock_t trace_buf_lock
=
1340 (arch_spinlock_t
)__ARCH_SPIN_LOCK_UNLOCKED
;
1341 static u32 trace_buf
[TRACE_BUF_SIZE
];
1343 struct ftrace_event_call
*call
= &event_bprint
;
1344 struct ring_buffer_event
*event
;
1345 struct ring_buffer
*buffer
;
1346 struct trace_array
*tr
= &global_trace
;
1347 struct trace_array_cpu
*data
;
1348 struct bprint_entry
*entry
;
1349 unsigned long flags
;
1351 int cpu
, len
= 0, size
, pc
;
1353 if (unlikely(tracing_selftest_running
|| tracing_disabled
))
1356 /* Don't pollute graph traces with trace_vprintk internals */
1357 pause_graph_tracing();
1359 pc
= preempt_count();
1360 preempt_disable_notrace();
1361 cpu
= raw_smp_processor_id();
1362 data
= tr
->data
[cpu
];
1364 disable
= atomic_inc_return(&data
->disabled
);
1365 if (unlikely(disable
!= 1))
1368 /* Lockdep uses trace_printk for lock tracing */
1369 local_irq_save(flags
);
1370 arch_spin_lock(&trace_buf_lock
);
1371 len
= vbin_printf(trace_buf
, TRACE_BUF_SIZE
, fmt
, args
);
1373 if (len
> TRACE_BUF_SIZE
|| len
< 0)
1376 size
= sizeof(*entry
) + sizeof(u32
) * len
;
1377 buffer
= tr
->buffer
;
1378 event
= trace_buffer_lock_reserve(buffer
, TRACE_BPRINT
, size
,
1382 entry
= ring_buffer_event_data(event
);
1386 memcpy(entry
->buf
, trace_buf
, sizeof(u32
) * len
);
1387 if (!filter_check_discard(call
, entry
, buffer
, event
)) {
1388 ring_buffer_unlock_commit(buffer
, event
);
1389 ftrace_trace_stack(buffer
, flags
, 6, pc
);
1393 arch_spin_unlock(&trace_buf_lock
);
1394 local_irq_restore(flags
);
1397 atomic_dec_return(&data
->disabled
);
1398 preempt_enable_notrace();
1399 unpause_graph_tracing();
1403 EXPORT_SYMBOL_GPL(trace_vbprintk
);
1405 int trace_array_printk(struct trace_array
*tr
,
1406 unsigned long ip
, const char *fmt
, ...)
1411 if (!(trace_flags
& TRACE_ITER_PRINTK
))
1415 ret
= trace_array_vprintk(tr
, ip
, fmt
, ap
);
1420 int trace_array_vprintk(struct trace_array
*tr
,
1421 unsigned long ip
, const char *fmt
, va_list args
)
1423 static arch_spinlock_t trace_buf_lock
= __ARCH_SPIN_LOCK_UNLOCKED
;
1424 static char trace_buf
[TRACE_BUF_SIZE
];
1426 struct ftrace_event_call
*call
= &event_print
;
1427 struct ring_buffer_event
*event
;
1428 struct ring_buffer
*buffer
;
1429 struct trace_array_cpu
*data
;
1430 int cpu
, len
= 0, size
, pc
;
1431 struct print_entry
*entry
;
1432 unsigned long irq_flags
;
1435 if (tracing_disabled
|| tracing_selftest_running
)
1438 pc
= preempt_count();
1439 preempt_disable_notrace();
1440 cpu
= raw_smp_processor_id();
1441 data
= tr
->data
[cpu
];
1443 disable
= atomic_inc_return(&data
->disabled
);
1444 if (unlikely(disable
!= 1))
1447 pause_graph_tracing();
1448 raw_local_irq_save(irq_flags
);
1449 arch_spin_lock(&trace_buf_lock
);
1450 len
= vsnprintf(trace_buf
, TRACE_BUF_SIZE
, fmt
, args
);
1452 size
= sizeof(*entry
) + len
+ 1;
1453 buffer
= tr
->buffer
;
1454 event
= trace_buffer_lock_reserve(buffer
, TRACE_PRINT
, size
,
1458 entry
= ring_buffer_event_data(event
);
1461 memcpy(&entry
->buf
, trace_buf
, len
);
1462 entry
->buf
[len
] = '\0';
1463 if (!filter_check_discard(call
, entry
, buffer
, event
)) {
1464 ring_buffer_unlock_commit(buffer
, event
);
1465 ftrace_trace_stack(buffer
, irq_flags
, 6, pc
);
1469 arch_spin_unlock(&trace_buf_lock
);
1470 raw_local_irq_restore(irq_flags
);
1471 unpause_graph_tracing();
1473 atomic_dec_return(&data
->disabled
);
1474 preempt_enable_notrace();
1479 int trace_vprintk(unsigned long ip
, const char *fmt
, va_list args
)
1481 return trace_array_vprintk(&global_trace
, ip
, fmt
, args
);
1483 EXPORT_SYMBOL_GPL(trace_vprintk
);
1485 static void trace_iterator_increment(struct trace_iterator
*iter
)
1487 /* Don't allow ftrace to trace into the ring buffers */
1488 ftrace_disable_cpu();
1491 if (iter
->buffer_iter
[iter
->cpu
])
1492 ring_buffer_read(iter
->buffer_iter
[iter
->cpu
], NULL
);
1494 ftrace_enable_cpu();
1497 static struct trace_entry
*
1498 peek_next_entry(struct trace_iterator
*iter
, int cpu
, u64
*ts
,
1499 unsigned long *lost_events
)
1501 struct ring_buffer_event
*event
;
1502 struct ring_buffer_iter
*buf_iter
= iter
->buffer_iter
[cpu
];
1504 /* Don't allow ftrace to trace into the ring buffers */
1505 ftrace_disable_cpu();
1508 event
= ring_buffer_iter_peek(buf_iter
, ts
);
1510 event
= ring_buffer_peek(iter
->tr
->buffer
, cpu
, ts
,
1513 ftrace_enable_cpu();
1515 return event
? ring_buffer_event_data(event
) : NULL
;
1518 static struct trace_entry
*
1519 __find_next_entry(struct trace_iterator
*iter
, int *ent_cpu
,
1520 unsigned long *missing_events
, u64
*ent_ts
)
1522 struct ring_buffer
*buffer
= iter
->tr
->buffer
;
1523 struct trace_entry
*ent
, *next
= NULL
;
1524 unsigned long lost_events
= 0, next_lost
= 0;
1525 int cpu_file
= iter
->cpu_file
;
1526 u64 next_ts
= 0, ts
;
1531 * If we are in a per_cpu trace file, don't bother by iterating over
1532 * all cpu and peek directly.
1534 if (cpu_file
> TRACE_PIPE_ALL_CPU
) {
1535 if (ring_buffer_empty_cpu(buffer
, cpu_file
))
1537 ent
= peek_next_entry(iter
, cpu_file
, ent_ts
, missing_events
);
1539 *ent_cpu
= cpu_file
;
1544 for_each_tracing_cpu(cpu
) {
1546 if (ring_buffer_empty_cpu(buffer
, cpu
))
1549 ent
= peek_next_entry(iter
, cpu
, &ts
, &lost_events
);
1552 * Pick the entry with the smallest timestamp:
1554 if (ent
&& (!next
|| ts
< next_ts
)) {
1558 next_lost
= lost_events
;
1563 *ent_cpu
= next_cpu
;
1569 *missing_events
= next_lost
;
1574 /* Find the next real entry, without updating the iterator itself */
1575 struct trace_entry
*trace_find_next_entry(struct trace_iterator
*iter
,
1576 int *ent_cpu
, u64
*ent_ts
)
1578 return __find_next_entry(iter
, ent_cpu
, NULL
, ent_ts
);
1581 /* Find the next real entry, and increment the iterator to the next entry */
1582 void *trace_find_next_entry_inc(struct trace_iterator
*iter
)
1584 iter
->ent
= __find_next_entry(iter
, &iter
->cpu
,
1585 &iter
->lost_events
, &iter
->ts
);
1588 trace_iterator_increment(iter
);
1590 return iter
->ent
? iter
: NULL
;
1593 static void trace_consume(struct trace_iterator
*iter
)
1595 /* Don't allow ftrace to trace into the ring buffers */
1596 ftrace_disable_cpu();
1597 ring_buffer_consume(iter
->tr
->buffer
, iter
->cpu
, &iter
->ts
,
1598 &iter
->lost_events
);
1599 ftrace_enable_cpu();
1602 static void *s_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
1604 struct trace_iterator
*iter
= m
->private;
1608 WARN_ON_ONCE(iter
->leftover
);
1612 /* can't go backwards */
1617 ent
= trace_find_next_entry_inc(iter
);
1621 while (ent
&& iter
->idx
< i
)
1622 ent
= trace_find_next_entry_inc(iter
);
1629 void tracing_iter_reset(struct trace_iterator
*iter
, int cpu
)
1631 struct trace_array
*tr
= iter
->tr
;
1632 struct ring_buffer_event
*event
;
1633 struct ring_buffer_iter
*buf_iter
;
1634 unsigned long entries
= 0;
1637 tr
->data
[cpu
]->skipped_entries
= 0;
1639 if (!iter
->buffer_iter
[cpu
])
1642 buf_iter
= iter
->buffer_iter
[cpu
];
1643 ring_buffer_iter_reset(buf_iter
);
1646 * We could have the case with the max latency tracers
1647 * that a reset never took place on a cpu. This is evident
1648 * by the timestamp being before the start of the buffer.
1650 while ((event
= ring_buffer_iter_peek(buf_iter
, &ts
))) {
1651 if (ts
>= iter
->tr
->time_start
)
1654 ring_buffer_read(buf_iter
, NULL
);
1657 tr
->data
[cpu
]->skipped_entries
= entries
;
1661 * The current tracer is copied to avoid a global locking
1664 static void *s_start(struct seq_file
*m
, loff_t
*pos
)
1666 struct trace_iterator
*iter
= m
->private;
1667 static struct tracer
*old_tracer
;
1668 int cpu_file
= iter
->cpu_file
;
1673 /* copy the tracer to avoid using a global lock all around */
1674 mutex_lock(&trace_types_lock
);
1675 if (unlikely(old_tracer
!= current_trace
&& current_trace
)) {
1676 old_tracer
= current_trace
;
1677 *iter
->trace
= *current_trace
;
1679 mutex_unlock(&trace_types_lock
);
1681 atomic_inc(&trace_record_cmdline_disabled
);
1683 if (*pos
!= iter
->pos
) {
1688 ftrace_disable_cpu();
1690 if (cpu_file
== TRACE_PIPE_ALL_CPU
) {
1691 for_each_tracing_cpu(cpu
)
1692 tracing_iter_reset(iter
, cpu
);
1694 tracing_iter_reset(iter
, cpu_file
);
1696 ftrace_enable_cpu();
1699 for (p
= iter
; p
&& l
< *pos
; p
= s_next(m
, p
, &l
))
1704 * If we overflowed the seq_file before, then we want
1705 * to just reuse the trace_seq buffer again.
1711 p
= s_next(m
, p
, &l
);
1715 trace_event_read_lock();
1716 trace_access_lock(cpu_file
);
1720 static void s_stop(struct seq_file
*m
, void *p
)
1722 struct trace_iterator
*iter
= m
->private;
1724 atomic_dec(&trace_record_cmdline_disabled
);
1725 trace_access_unlock(iter
->cpu_file
);
1726 trace_event_read_unlock();
1729 static void print_lat_help_header(struct seq_file
*m
)
1731 seq_puts(m
, "# _------=> CPU# \n");
1732 seq_puts(m
, "# / _-----=> irqs-off \n");
1733 seq_puts(m
, "# | / _----=> need-resched \n");
1734 seq_puts(m
, "# || / _---=> hardirq/softirq \n");
1735 seq_puts(m
, "# ||| / _--=> preempt-depth \n");
1736 seq_puts(m
, "# |||| /_--=> lock-depth \n");
1737 seq_puts(m
, "# |||||/ delay \n");
1738 seq_puts(m
, "# cmd pid |||||| time | caller \n");
1739 seq_puts(m
, "# \\ / |||||| \\ | / \n");
1742 static void print_func_help_header(struct seq_file
*m
)
1744 seq_puts(m
, "# TASK-PID CPU# TIMESTAMP FUNCTION\n");
1745 seq_puts(m
, "# | | | | |\n");
1750 print_trace_header(struct seq_file
*m
, struct trace_iterator
*iter
)
1752 unsigned long sym_flags
= (trace_flags
& TRACE_ITER_SYM_MASK
);
1753 struct trace_array
*tr
= iter
->tr
;
1754 struct trace_array_cpu
*data
= tr
->data
[tr
->cpu
];
1755 struct tracer
*type
= current_trace
;
1756 unsigned long entries
= 0;
1757 unsigned long total
= 0;
1758 unsigned long count
;
1759 const char *name
= "preemption";
1766 for_each_tracing_cpu(cpu
) {
1767 count
= ring_buffer_entries_cpu(tr
->buffer
, cpu
);
1769 * If this buffer has skipped entries, then we hold all
1770 * entries for the trace and we need to ignore the
1771 * ones before the time stamp.
1773 if (tr
->data
[cpu
]->skipped_entries
) {
1774 count
-= tr
->data
[cpu
]->skipped_entries
;
1775 /* total is the same as the entries */
1779 ring_buffer_overrun_cpu(tr
->buffer
, cpu
);
1783 seq_printf(m
, "# %s latency trace v1.1.5 on %s\n",
1785 seq_puts(m
, "# -----------------------------------"
1786 "---------------------------------\n");
1787 seq_printf(m
, "# latency: %lu us, #%lu/%lu, CPU#%d |"
1788 " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
1789 nsecs_to_usecs(data
->saved_latency
),
1793 #if defined(CONFIG_PREEMPT_NONE)
1795 #elif defined(CONFIG_PREEMPT_VOLUNTARY)
1797 #elif defined(CONFIG_PREEMPT)
1802 /* These are reserved for later use */
1805 seq_printf(m
, " #P:%d)\n", num_online_cpus());
1809 seq_puts(m
, "# -----------------\n");
1810 seq_printf(m
, "# | task: %.16s-%d "
1811 "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
1812 data
->comm
, data
->pid
, data
->uid
, data
->nice
,
1813 data
->policy
, data
->rt_priority
);
1814 seq_puts(m
, "# -----------------\n");
1816 if (data
->critical_start
) {
1817 seq_puts(m
, "# => started at: ");
1818 seq_print_ip_sym(&iter
->seq
, data
->critical_start
, sym_flags
);
1819 trace_print_seq(m
, &iter
->seq
);
1820 seq_puts(m
, "\n# => ended at: ");
1821 seq_print_ip_sym(&iter
->seq
, data
->critical_end
, sym_flags
);
1822 trace_print_seq(m
, &iter
->seq
);
1823 seq_puts(m
, "\n#\n");
1829 static void test_cpu_buff_start(struct trace_iterator
*iter
)
1831 struct trace_seq
*s
= &iter
->seq
;
1833 if (!(trace_flags
& TRACE_ITER_ANNOTATE
))
1836 if (!(iter
->iter_flags
& TRACE_FILE_ANNOTATE
))
1839 if (cpumask_test_cpu(iter
->cpu
, iter
->started
))
1842 if (iter
->tr
->data
[iter
->cpu
]->skipped_entries
)
1845 cpumask_set_cpu(iter
->cpu
, iter
->started
);
1847 /* Don't print started cpu buffer for the first entry of the trace */
1849 trace_seq_printf(s
, "##### CPU %u buffer started ####\n",
1853 static enum print_line_t
print_trace_fmt(struct trace_iterator
*iter
)
1855 struct trace_seq
*s
= &iter
->seq
;
1856 unsigned long sym_flags
= (trace_flags
& TRACE_ITER_SYM_MASK
);
1857 struct trace_entry
*entry
;
1858 struct trace_event
*event
;
1862 test_cpu_buff_start(iter
);
1864 event
= ftrace_find_event(entry
->type
);
1866 if (trace_flags
& TRACE_ITER_CONTEXT_INFO
) {
1867 if (iter
->iter_flags
& TRACE_FILE_LAT_FMT
) {
1868 if (!trace_print_lat_context(iter
))
1871 if (!trace_print_context(iter
))
1877 return event
->funcs
->trace(iter
, sym_flags
, event
);
1879 if (!trace_seq_printf(s
, "Unknown type %d\n", entry
->type
))
1882 return TRACE_TYPE_HANDLED
;
1884 return TRACE_TYPE_PARTIAL_LINE
;
1887 static enum print_line_t
print_raw_fmt(struct trace_iterator
*iter
)
1889 struct trace_seq
*s
= &iter
->seq
;
1890 struct trace_entry
*entry
;
1891 struct trace_event
*event
;
1895 if (trace_flags
& TRACE_ITER_CONTEXT_INFO
) {
1896 if (!trace_seq_printf(s
, "%d %d %llu ",
1897 entry
->pid
, iter
->cpu
, iter
->ts
))
1901 event
= ftrace_find_event(entry
->type
);
1903 return event
->funcs
->raw(iter
, 0, event
);
1905 if (!trace_seq_printf(s
, "%d ?\n", entry
->type
))
1908 return TRACE_TYPE_HANDLED
;
1910 return TRACE_TYPE_PARTIAL_LINE
;
1913 static enum print_line_t
print_hex_fmt(struct trace_iterator
*iter
)
1915 struct trace_seq
*s
= &iter
->seq
;
1916 unsigned char newline
= '\n';
1917 struct trace_entry
*entry
;
1918 struct trace_event
*event
;
1922 if (trace_flags
& TRACE_ITER_CONTEXT_INFO
) {
1923 SEQ_PUT_HEX_FIELD_RET(s
, entry
->pid
);
1924 SEQ_PUT_HEX_FIELD_RET(s
, iter
->cpu
);
1925 SEQ_PUT_HEX_FIELD_RET(s
, iter
->ts
);
1928 event
= ftrace_find_event(entry
->type
);
1930 enum print_line_t ret
= event
->funcs
->hex(iter
, 0, event
);
1931 if (ret
!= TRACE_TYPE_HANDLED
)
1935 SEQ_PUT_FIELD_RET(s
, newline
);
1937 return TRACE_TYPE_HANDLED
;
1940 static enum print_line_t
print_bin_fmt(struct trace_iterator
*iter
)
1942 struct trace_seq
*s
= &iter
->seq
;
1943 struct trace_entry
*entry
;
1944 struct trace_event
*event
;
1948 if (trace_flags
& TRACE_ITER_CONTEXT_INFO
) {
1949 SEQ_PUT_FIELD_RET(s
, entry
->pid
);
1950 SEQ_PUT_FIELD_RET(s
, iter
->cpu
);
1951 SEQ_PUT_FIELD_RET(s
, iter
->ts
);
1954 event
= ftrace_find_event(entry
->type
);
1955 return event
? event
->funcs
->binary(iter
, 0, event
) :
1959 int trace_empty(struct trace_iterator
*iter
)
1963 /* If we are looking at one CPU buffer, only check that one */
1964 if (iter
->cpu_file
!= TRACE_PIPE_ALL_CPU
) {
1965 cpu
= iter
->cpu_file
;
1966 if (iter
->buffer_iter
[cpu
]) {
1967 if (!ring_buffer_iter_empty(iter
->buffer_iter
[cpu
]))
1970 if (!ring_buffer_empty_cpu(iter
->tr
->buffer
, cpu
))
1976 for_each_tracing_cpu(cpu
) {
1977 if (iter
->buffer_iter
[cpu
]) {
1978 if (!ring_buffer_iter_empty(iter
->buffer_iter
[cpu
]))
1981 if (!ring_buffer_empty_cpu(iter
->tr
->buffer
, cpu
))
1989 /* Called with trace_event_read_lock() held. */
1990 enum print_line_t
print_trace_line(struct trace_iterator
*iter
)
1992 enum print_line_t ret
;
1994 if (iter
->lost_events
)
1995 trace_seq_printf(&iter
->seq
, "CPU:%d [LOST %lu EVENTS]\n",
1996 iter
->cpu
, iter
->lost_events
);
1998 if (iter
->trace
&& iter
->trace
->print_line
) {
1999 ret
= iter
->trace
->print_line(iter
);
2000 if (ret
!= TRACE_TYPE_UNHANDLED
)
2004 if (iter
->ent
->type
== TRACE_BPRINT
&&
2005 trace_flags
& TRACE_ITER_PRINTK
&&
2006 trace_flags
& TRACE_ITER_PRINTK_MSGONLY
)
2007 return trace_print_bprintk_msg_only(iter
);
2009 if (iter
->ent
->type
== TRACE_PRINT
&&
2010 trace_flags
& TRACE_ITER_PRINTK
&&
2011 trace_flags
& TRACE_ITER_PRINTK_MSGONLY
)
2012 return trace_print_printk_msg_only(iter
);
2014 if (trace_flags
& TRACE_ITER_BIN
)
2015 return print_bin_fmt(iter
);
2017 if (trace_flags
& TRACE_ITER_HEX
)
2018 return print_hex_fmt(iter
);
2020 if (trace_flags
& TRACE_ITER_RAW
)
2021 return print_raw_fmt(iter
);
2023 return print_trace_fmt(iter
);
2026 void trace_default_header(struct seq_file
*m
)
2028 struct trace_iterator
*iter
= m
->private;
2030 if (iter
->iter_flags
& TRACE_FILE_LAT_FMT
) {
2031 /* print nothing if the buffers are empty */
2032 if (trace_empty(iter
))
2034 print_trace_header(m
, iter
);
2035 if (!(trace_flags
& TRACE_ITER_VERBOSE
))
2036 print_lat_help_header(m
);
2038 if (!(trace_flags
& TRACE_ITER_VERBOSE
))
2039 print_func_help_header(m
);
2043 static int s_show(struct seq_file
*m
, void *v
)
2045 struct trace_iterator
*iter
= v
;
2048 if (iter
->ent
== NULL
) {
2050 seq_printf(m
, "# tracer: %s\n", iter
->trace
->name
);
2053 if (iter
->trace
&& iter
->trace
->print_header
)
2054 iter
->trace
->print_header(m
);
2056 trace_default_header(m
);
2058 } else if (iter
->leftover
) {
2060 * If we filled the seq_file buffer earlier, we
2061 * want to just show it now.
2063 ret
= trace_print_seq(m
, &iter
->seq
);
2065 /* ret should this time be zero, but you never know */
2066 iter
->leftover
= ret
;
2069 print_trace_line(iter
);
2070 ret
= trace_print_seq(m
, &iter
->seq
);
2072 * If we overflow the seq_file buffer, then it will
2073 * ask us for this data again at start up.
2075 * ret is 0 if seq_file write succeeded.
2078 iter
->leftover
= ret
;
2084 static const struct seq_operations tracer_seq_ops
= {
2091 static struct trace_iterator
*
2092 __tracing_open(struct inode
*inode
, struct file
*file
)
2094 long cpu_file
= (long) inode
->i_private
;
2095 void *fail_ret
= ERR_PTR(-ENOMEM
);
2096 struct trace_iterator
*iter
;
2100 if (tracing_disabled
)
2101 return ERR_PTR(-ENODEV
);
2103 iter
= kzalloc(sizeof(*iter
), GFP_KERNEL
);
2105 return ERR_PTR(-ENOMEM
);
2108 * We make a copy of the current tracer to avoid concurrent
2109 * changes on it while we are reading.
2111 mutex_lock(&trace_types_lock
);
2112 iter
->trace
= kzalloc(sizeof(*iter
->trace
), GFP_KERNEL
);
2117 *iter
->trace
= *current_trace
;
2119 if (!zalloc_cpumask_var(&iter
->started
, GFP_KERNEL
))
2122 if (current_trace
&& current_trace
->print_max
)
2125 iter
->tr
= &global_trace
;
2127 mutex_init(&iter
->mutex
);
2128 iter
->cpu_file
= cpu_file
;
2130 /* Notify the tracer early; before we stop tracing. */
2131 if (iter
->trace
&& iter
->trace
->open
)
2132 iter
->trace
->open(iter
);
2134 /* Annotate start of buffers if we had overruns */
2135 if (ring_buffer_overruns(iter
->tr
->buffer
))
2136 iter
->iter_flags
|= TRACE_FILE_ANNOTATE
;
2138 /* stop the trace while dumping */
2141 if (iter
->cpu_file
== TRACE_PIPE_ALL_CPU
) {
2142 for_each_tracing_cpu(cpu
) {
2143 iter
->buffer_iter
[cpu
] =
2144 ring_buffer_read_prepare(iter
->tr
->buffer
, cpu
);
2146 ring_buffer_read_prepare_sync();
2147 for_each_tracing_cpu(cpu
) {
2148 ring_buffer_read_start(iter
->buffer_iter
[cpu
]);
2149 tracing_iter_reset(iter
, cpu
);
2152 cpu
= iter
->cpu_file
;
2153 iter
->buffer_iter
[cpu
] =
2154 ring_buffer_read_prepare(iter
->tr
->buffer
, cpu
);
2155 ring_buffer_read_prepare_sync();
2156 ring_buffer_read_start(iter
->buffer_iter
[cpu
]);
2157 tracing_iter_reset(iter
, cpu
);
2160 ret
= seq_open(file
, &tracer_seq_ops
);
2162 fail_ret
= ERR_PTR(ret
);
2166 m
= file
->private_data
;
2169 mutex_unlock(&trace_types_lock
);
2174 for_each_tracing_cpu(cpu
) {
2175 if (iter
->buffer_iter
[cpu
])
2176 ring_buffer_read_finish(iter
->buffer_iter
[cpu
]);
2178 free_cpumask_var(iter
->started
);
2181 mutex_unlock(&trace_types_lock
);
2188 int tracing_open_generic(struct inode
*inode
, struct file
*filp
)
2190 if (tracing_disabled
)
2193 filp
->private_data
= inode
->i_private
;
2197 static int tracing_release(struct inode
*inode
, struct file
*file
)
2199 struct seq_file
*m
= (struct seq_file
*)file
->private_data
;
2200 struct trace_iterator
*iter
;
2203 if (!(file
->f_mode
& FMODE_READ
))
2208 mutex_lock(&trace_types_lock
);
2209 for_each_tracing_cpu(cpu
) {
2210 if (iter
->buffer_iter
[cpu
])
2211 ring_buffer_read_finish(iter
->buffer_iter
[cpu
]);
2214 if (iter
->trace
&& iter
->trace
->close
)
2215 iter
->trace
->close(iter
);
2217 /* reenable tracing if it was previously enabled */
2219 mutex_unlock(&trace_types_lock
);
2221 seq_release(inode
, file
);
2222 mutex_destroy(&iter
->mutex
);
2223 free_cpumask_var(iter
->started
);
2229 static int tracing_open(struct inode
*inode
, struct file
*file
)
2231 struct trace_iterator
*iter
;
2234 /* If this file was open for write, then erase contents */
2235 if ((file
->f_mode
& FMODE_WRITE
) &&
2236 (file
->f_flags
& O_TRUNC
)) {
2237 long cpu
= (long) inode
->i_private
;
2239 if (cpu
== TRACE_PIPE_ALL_CPU
)
2240 tracing_reset_online_cpus(&global_trace
);
2242 tracing_reset(&global_trace
, cpu
);
2245 if (file
->f_mode
& FMODE_READ
) {
2246 iter
= __tracing_open(inode
, file
);
2248 ret
= PTR_ERR(iter
);
2249 else if (trace_flags
& TRACE_ITER_LATENCY_FMT
)
2250 iter
->iter_flags
|= TRACE_FILE_LAT_FMT
;
2256 t_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
2258 struct tracer
*t
= v
;
2268 static void *t_start(struct seq_file
*m
, loff_t
*pos
)
2273 mutex_lock(&trace_types_lock
);
2274 for (t
= trace_types
; t
&& l
< *pos
; t
= t_next(m
, t
, &l
))
2280 static void t_stop(struct seq_file
*m
, void *p
)
2282 mutex_unlock(&trace_types_lock
);
2285 static int t_show(struct seq_file
*m
, void *v
)
2287 struct tracer
*t
= v
;
2292 seq_printf(m
, "%s", t
->name
);
2301 static const struct seq_operations show_traces_seq_ops
= {
2308 static int show_traces_open(struct inode
*inode
, struct file
*file
)
2310 if (tracing_disabled
)
2313 return seq_open(file
, &show_traces_seq_ops
);
2317 tracing_write_stub(struct file
*filp
, const char __user
*ubuf
,
2318 size_t count
, loff_t
*ppos
)
2323 static const struct file_operations tracing_fops
= {
2324 .open
= tracing_open
,
2326 .write
= tracing_write_stub
,
2327 .llseek
= seq_lseek
,
2328 .release
= tracing_release
,
2331 static const struct file_operations show_traces_fops
= {
2332 .open
= show_traces_open
,
2334 .release
= seq_release
,
2335 .llseek
= seq_lseek
,
2339 * Only trace on a CPU if the bitmask is set:
2341 static cpumask_var_t tracing_cpumask
;
2344 * The tracer itself will not take this lock, but still we want
2345 * to provide a consistent cpumask to user-space:
2347 static DEFINE_MUTEX(tracing_cpumask_update_lock
);
2350 * Temporary storage for the character representation of the
2351 * CPU bitmask (and one more byte for the newline):
2353 static char mask_str
[NR_CPUS
+ 1];
2356 tracing_cpumask_read(struct file
*filp
, char __user
*ubuf
,
2357 size_t count
, loff_t
*ppos
)
2361 mutex_lock(&tracing_cpumask_update_lock
);
2363 len
= cpumask_scnprintf(mask_str
, count
, tracing_cpumask
);
2364 if (count
- len
< 2) {
2368 len
+= sprintf(mask_str
+ len
, "\n");
2369 count
= simple_read_from_buffer(ubuf
, count
, ppos
, mask_str
, NR_CPUS
+1);
2372 mutex_unlock(&tracing_cpumask_update_lock
);
2378 tracing_cpumask_write(struct file
*filp
, const char __user
*ubuf
,
2379 size_t count
, loff_t
*ppos
)
2382 cpumask_var_t tracing_cpumask_new
;
2384 if (!alloc_cpumask_var(&tracing_cpumask_new
, GFP_KERNEL
))
2387 err
= cpumask_parse_user(ubuf
, count
, tracing_cpumask_new
);
2391 mutex_lock(&tracing_cpumask_update_lock
);
2393 local_irq_disable();
2394 arch_spin_lock(&ftrace_max_lock
);
2395 for_each_tracing_cpu(cpu
) {
2397 * Increase/decrease the disabled counter if we are
2398 * about to flip a bit in the cpumask:
2400 if (cpumask_test_cpu(cpu
, tracing_cpumask
) &&
2401 !cpumask_test_cpu(cpu
, tracing_cpumask_new
)) {
2402 atomic_inc(&global_trace
.data
[cpu
]->disabled
);
2404 if (!cpumask_test_cpu(cpu
, tracing_cpumask
) &&
2405 cpumask_test_cpu(cpu
, tracing_cpumask_new
)) {
2406 atomic_dec(&global_trace
.data
[cpu
]->disabled
);
2409 arch_spin_unlock(&ftrace_max_lock
);
2412 cpumask_copy(tracing_cpumask
, tracing_cpumask_new
);
2414 mutex_unlock(&tracing_cpumask_update_lock
);
2415 free_cpumask_var(tracing_cpumask_new
);
2420 free_cpumask_var(tracing_cpumask_new
);
2425 static const struct file_operations tracing_cpumask_fops
= {
2426 .open
= tracing_open_generic
,
2427 .read
= tracing_cpumask_read
,
2428 .write
= tracing_cpumask_write
,
2429 .llseek
= generic_file_llseek
,
2432 static int tracing_trace_options_show(struct seq_file
*m
, void *v
)
2434 struct tracer_opt
*trace_opts
;
2438 mutex_lock(&trace_types_lock
);
2439 tracer_flags
= current_trace
->flags
->val
;
2440 trace_opts
= current_trace
->flags
->opts
;
2442 for (i
= 0; trace_options
[i
]; i
++) {
2443 if (trace_flags
& (1 << i
))
2444 seq_printf(m
, "%s\n", trace_options
[i
]);
2446 seq_printf(m
, "no%s\n", trace_options
[i
]);
2449 for (i
= 0; trace_opts
[i
].name
; i
++) {
2450 if (tracer_flags
& trace_opts
[i
].bit
)
2451 seq_printf(m
, "%s\n", trace_opts
[i
].name
);
2453 seq_printf(m
, "no%s\n", trace_opts
[i
].name
);
2455 mutex_unlock(&trace_types_lock
);
2460 static int __set_tracer_option(struct tracer
*trace
,
2461 struct tracer_flags
*tracer_flags
,
2462 struct tracer_opt
*opts
, int neg
)
2466 ret
= trace
->set_flag(tracer_flags
->val
, opts
->bit
, !neg
);
2471 tracer_flags
->val
&= ~opts
->bit
;
2473 tracer_flags
->val
|= opts
->bit
;
2477 /* Try to assign a tracer specific option */
2478 static int set_tracer_option(struct tracer
*trace
, char *cmp
, int neg
)
2480 struct tracer_flags
*tracer_flags
= trace
->flags
;
2481 struct tracer_opt
*opts
= NULL
;
2484 for (i
= 0; tracer_flags
->opts
[i
].name
; i
++) {
2485 opts
= &tracer_flags
->opts
[i
];
2487 if (strcmp(cmp
, opts
->name
) == 0)
2488 return __set_tracer_option(trace
, trace
->flags
,
2495 static void set_tracer_flags(unsigned int mask
, int enabled
)
2497 /* do nothing if flag is already set */
2498 if (!!(trace_flags
& mask
) == !!enabled
)
2502 trace_flags
|= mask
;
2504 trace_flags
&= ~mask
;
2506 if (mask
== TRACE_ITER_RECORD_CMD
)
2507 trace_event_enable_cmd_record(enabled
);
2511 tracing_trace_options_write(struct file
*filp
, const char __user
*ubuf
,
2512 size_t cnt
, loff_t
*ppos
)
2520 if (cnt
>= sizeof(buf
))
2523 if (copy_from_user(&buf
, ubuf
, cnt
))
2527 cmp
= strstrip(buf
);
2529 if (strncmp(cmp
, "no", 2) == 0) {
2534 for (i
= 0; trace_options
[i
]; i
++) {
2535 if (strcmp(cmp
, trace_options
[i
]) == 0) {
2536 set_tracer_flags(1 << i
, !neg
);
2541 /* If no option could be set, test the specific tracer options */
2542 if (!trace_options
[i
]) {
2543 mutex_lock(&trace_types_lock
);
2544 ret
= set_tracer_option(current_trace
, cmp
, neg
);
2545 mutex_unlock(&trace_types_lock
);
2555 static int tracing_trace_options_open(struct inode
*inode
, struct file
*file
)
2557 if (tracing_disabled
)
2559 return single_open(file
, tracing_trace_options_show
, NULL
);
2562 static const struct file_operations tracing_iter_fops
= {
2563 .open
= tracing_trace_options_open
,
2565 .llseek
= seq_lseek
,
2566 .release
= single_release
,
2567 .write
= tracing_trace_options_write
,
2570 static const char readme_msg
[] =
2571 "tracing mini-HOWTO:\n\n"
2572 "# mount -t debugfs nodev /sys/kernel/debug\n\n"
2573 "# cat /sys/kernel/debug/tracing/available_tracers\n"
2574 "wakeup preemptirqsoff preemptoff irqsoff function sched_switch nop\n\n"
2575 "# cat /sys/kernel/debug/tracing/current_tracer\n"
2577 "# echo sched_switch > /sys/kernel/debug/tracing/current_tracer\n"
2578 "# cat /sys/kernel/debug/tracing/current_tracer\n"
2580 "# cat /sys/kernel/debug/tracing/trace_options\n"
2581 "noprint-parent nosym-offset nosym-addr noverbose\n"
2582 "# echo print-parent > /sys/kernel/debug/tracing/trace_options\n"
2583 "# echo 1 > /sys/kernel/debug/tracing/tracing_enabled\n"
2584 "# cat /sys/kernel/debug/tracing/trace > /tmp/trace.txt\n"
2585 "# echo 0 > /sys/kernel/debug/tracing/tracing_enabled\n"
2589 tracing_readme_read(struct file
*filp
, char __user
*ubuf
,
2590 size_t cnt
, loff_t
*ppos
)
2592 return simple_read_from_buffer(ubuf
, cnt
, ppos
,
2593 readme_msg
, strlen(readme_msg
));
2596 static const struct file_operations tracing_readme_fops
= {
2597 .open
= tracing_open_generic
,
2598 .read
= tracing_readme_read
,
2599 .llseek
= generic_file_llseek
,
2603 tracing_saved_cmdlines_read(struct file
*file
, char __user
*ubuf
,
2604 size_t cnt
, loff_t
*ppos
)
2613 file_buf
= kmalloc(SAVED_CMDLINES
*(16+TASK_COMM_LEN
), GFP_KERNEL
);
2617 buf_comm
= kmalloc(TASK_COMM_LEN
, GFP_KERNEL
);
2625 for (i
= 0; i
< SAVED_CMDLINES
; i
++) {
2628 pid
= map_cmdline_to_pid
[i
];
2629 if (pid
== -1 || pid
== NO_CMDLINE_MAP
)
2632 trace_find_cmdline(pid
, buf_comm
);
2633 r
= sprintf(buf
, "%d %s\n", pid
, buf_comm
);
2638 len
= simple_read_from_buffer(ubuf
, cnt
, ppos
,
2647 static const struct file_operations tracing_saved_cmdlines_fops
= {
2648 .open
= tracing_open_generic
,
2649 .read
= tracing_saved_cmdlines_read
,
2650 .llseek
= generic_file_llseek
,
2654 tracing_ctrl_read(struct file
*filp
, char __user
*ubuf
,
2655 size_t cnt
, loff_t
*ppos
)
2660 r
= sprintf(buf
, "%u\n", tracer_enabled
);
2661 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
2665 tracing_ctrl_write(struct file
*filp
, const char __user
*ubuf
,
2666 size_t cnt
, loff_t
*ppos
)
2668 struct trace_array
*tr
= filp
->private_data
;
2673 if (cnt
>= sizeof(buf
))
2676 if (copy_from_user(&buf
, ubuf
, cnt
))
2681 ret
= strict_strtoul(buf
, 10, &val
);
2687 mutex_lock(&trace_types_lock
);
2688 if (tracer_enabled
^ val
) {
2691 if (current_trace
->start
)
2692 current_trace
->start(tr
);
2697 if (current_trace
->stop
)
2698 current_trace
->stop(tr
);
2701 mutex_unlock(&trace_types_lock
);
2709 tracing_set_trace_read(struct file
*filp
, char __user
*ubuf
,
2710 size_t cnt
, loff_t
*ppos
)
2712 char buf
[MAX_TRACER_SIZE
+2];
2715 mutex_lock(&trace_types_lock
);
2717 r
= sprintf(buf
, "%s\n", current_trace
->name
);
2719 r
= sprintf(buf
, "\n");
2720 mutex_unlock(&trace_types_lock
);
2722 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
2725 int tracer_init(struct tracer
*t
, struct trace_array
*tr
)
2727 tracing_reset_online_cpus(tr
);
2731 static int tracing_resize_ring_buffer(unsigned long size
)
2736 * If kernel or user changes the size of the ring buffer
2737 * we use the size that was given, and we can forget about
2738 * expanding it later.
2740 ring_buffer_expanded
= 1;
2742 ret
= ring_buffer_resize(global_trace
.buffer
, size
);
2746 if (!current_trace
->use_max_tr
)
2749 ret
= ring_buffer_resize(max_tr
.buffer
, size
);
2753 r
= ring_buffer_resize(global_trace
.buffer
,
2754 global_trace
.entries
);
2757 * AARGH! We are left with different
2758 * size max buffer!!!!
2759 * The max buffer is our "snapshot" buffer.
2760 * When a tracer needs a snapshot (one of the
2761 * latency tracers), it swaps the max buffer
2762 * with the saved snap shot. We succeeded to
2763 * update the size of the main buffer, but failed to
2764 * update the size of the max buffer. But when we tried
2765 * to reset the main buffer to the original size, we
2766 * failed there too. This is very unlikely to
2767 * happen, but if it does, warn and kill all
2771 tracing_disabled
= 1;
2776 max_tr
.entries
= size
;
2778 global_trace
.entries
= size
;
2785 * tracing_update_buffers - used by tracing facility to expand ring buffers
2787 * To save on memory when the tracing is never used on a system with it
2788 * configured in. The ring buffers are set to a minimum size. But once
2789 * a user starts to use the tracing facility, then they need to grow
2790 * to their default size.
2792 * This function is to be called when a tracer is about to be used.
2794 int tracing_update_buffers(void)
2798 mutex_lock(&trace_types_lock
);
2799 if (!ring_buffer_expanded
)
2800 ret
= tracing_resize_ring_buffer(trace_buf_size
);
2801 mutex_unlock(&trace_types_lock
);
2806 struct trace_option_dentry
;
2808 static struct trace_option_dentry
*
2809 create_trace_option_files(struct tracer
*tracer
);
2812 destroy_trace_option_files(struct trace_option_dentry
*topts
);
2814 static int tracing_set_tracer(const char *buf
)
2816 static struct trace_option_dentry
*topts
;
2817 struct trace_array
*tr
= &global_trace
;
2821 mutex_lock(&trace_types_lock
);
2823 if (!ring_buffer_expanded
) {
2824 ret
= tracing_resize_ring_buffer(trace_buf_size
);
2830 for (t
= trace_types
; t
; t
= t
->next
) {
2831 if (strcmp(t
->name
, buf
) == 0)
2838 if (t
== current_trace
)
2841 trace_branch_disable();
2842 if (current_trace
&& current_trace
->reset
)
2843 current_trace
->reset(tr
);
2844 if (current_trace
&& current_trace
->use_max_tr
) {
2846 * We don't free the ring buffer. instead, resize it because
2847 * The max_tr ring buffer has some state (e.g. ring->clock) and
2848 * we want preserve it.
2850 ring_buffer_resize(max_tr
.buffer
, 1);
2853 destroy_trace_option_files(topts
);
2857 topts
= create_trace_option_files(current_trace
);
2858 if (current_trace
->use_max_tr
) {
2859 ret
= ring_buffer_resize(max_tr
.buffer
, global_trace
.entries
);
2862 max_tr
.entries
= global_trace
.entries
;
2866 ret
= tracer_init(t
, tr
);
2871 trace_branch_enable(tr
);
2873 mutex_unlock(&trace_types_lock
);
2879 tracing_set_trace_write(struct file
*filp
, const char __user
*ubuf
,
2880 size_t cnt
, loff_t
*ppos
)
2882 char buf
[MAX_TRACER_SIZE
+1];
2889 if (cnt
> MAX_TRACER_SIZE
)
2890 cnt
= MAX_TRACER_SIZE
;
2892 if (copy_from_user(&buf
, ubuf
, cnt
))
2897 /* strip ending whitespace. */
2898 for (i
= cnt
- 1; i
> 0 && isspace(buf
[i
]); i
--)
2901 err
= tracing_set_tracer(buf
);
2911 tracing_max_lat_read(struct file
*filp
, char __user
*ubuf
,
2912 size_t cnt
, loff_t
*ppos
)
2914 unsigned long *ptr
= filp
->private_data
;
2918 r
= snprintf(buf
, sizeof(buf
), "%ld\n",
2919 *ptr
== (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr
));
2920 if (r
> sizeof(buf
))
2922 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
2926 tracing_max_lat_write(struct file
*filp
, const char __user
*ubuf
,
2927 size_t cnt
, loff_t
*ppos
)
2929 unsigned long *ptr
= filp
->private_data
;
2934 if (cnt
>= sizeof(buf
))
2937 if (copy_from_user(&buf
, ubuf
, cnt
))
2942 ret
= strict_strtoul(buf
, 10, &val
);
2951 static int tracing_open_pipe(struct inode
*inode
, struct file
*filp
)
2953 long cpu_file
= (long) inode
->i_private
;
2954 struct trace_iterator
*iter
;
2957 if (tracing_disabled
)
2960 mutex_lock(&trace_types_lock
);
2962 /* create a buffer to store the information to pass to userspace */
2963 iter
= kzalloc(sizeof(*iter
), GFP_KERNEL
);
2970 * We make a copy of the current tracer to avoid concurrent
2971 * changes on it while we are reading.
2973 iter
->trace
= kmalloc(sizeof(*iter
->trace
), GFP_KERNEL
);
2979 *iter
->trace
= *current_trace
;
2981 if (!alloc_cpumask_var(&iter
->started
, GFP_KERNEL
)) {
2986 /* trace pipe does not show start of buffer */
2987 cpumask_setall(iter
->started
);
2989 if (trace_flags
& TRACE_ITER_LATENCY_FMT
)
2990 iter
->iter_flags
|= TRACE_FILE_LAT_FMT
;
2992 iter
->cpu_file
= cpu_file
;
2993 iter
->tr
= &global_trace
;
2994 mutex_init(&iter
->mutex
);
2995 filp
->private_data
= iter
;
2997 if (iter
->trace
->pipe_open
)
2998 iter
->trace
->pipe_open(iter
);
3000 nonseekable_open(inode
, filp
);
3002 mutex_unlock(&trace_types_lock
);
3008 mutex_unlock(&trace_types_lock
);
3012 static int tracing_release_pipe(struct inode
*inode
, struct file
*file
)
3014 struct trace_iterator
*iter
= file
->private_data
;
3016 mutex_lock(&trace_types_lock
);
3018 if (iter
->trace
->pipe_close
)
3019 iter
->trace
->pipe_close(iter
);
3021 mutex_unlock(&trace_types_lock
);
3023 free_cpumask_var(iter
->started
);
3024 mutex_destroy(&iter
->mutex
);
3032 tracing_poll_pipe(struct file
*filp
, poll_table
*poll_table
)
3034 struct trace_iterator
*iter
= filp
->private_data
;
3036 if (trace_flags
& TRACE_ITER_BLOCK
) {
3038 * Always select as readable when in blocking mode
3040 return POLLIN
| POLLRDNORM
;
3042 if (!trace_empty(iter
))
3043 return POLLIN
| POLLRDNORM
;
3044 poll_wait(filp
, &trace_wait
, poll_table
);
3045 if (!trace_empty(iter
))
3046 return POLLIN
| POLLRDNORM
;
3053 void default_wait_pipe(struct trace_iterator
*iter
)
3057 prepare_to_wait(&trace_wait
, &wait
, TASK_INTERRUPTIBLE
);
3059 if (trace_empty(iter
))
3062 finish_wait(&trace_wait
, &wait
);
3066 * This is a make-shift waitqueue.
3067 * A tracer might use this callback on some rare cases:
3069 * 1) the current tracer might hold the runqueue lock when it wakes up
3070 * a reader, hence a deadlock (sched, function, and function graph tracers)
3071 * 2) the function tracers, trace all functions, we don't want
3072 * the overhead of calling wake_up and friends
3073 * (and tracing them too)
3075 * Anyway, this is really very primitive wakeup.
3077 void poll_wait_pipe(struct trace_iterator
*iter
)
3079 set_current_state(TASK_INTERRUPTIBLE
);
3080 /* sleep for 100 msecs, and try again. */
3081 schedule_timeout(HZ
/ 10);
3084 /* Must be called with trace_types_lock mutex held. */
3085 static int tracing_wait_pipe(struct file
*filp
)
3087 struct trace_iterator
*iter
= filp
->private_data
;
3089 while (trace_empty(iter
)) {
3091 if ((filp
->f_flags
& O_NONBLOCK
)) {
3095 mutex_unlock(&iter
->mutex
);
3097 iter
->trace
->wait_pipe(iter
);
3099 mutex_lock(&iter
->mutex
);
3101 if (signal_pending(current
))
3105 * We block until we read something and tracing is disabled.
3106 * We still block if tracing is disabled, but we have never
3107 * read anything. This allows a user to cat this file, and
3108 * then enable tracing. But after we have read something,
3109 * we give an EOF when tracing is again disabled.
3111 * iter->pos will be 0 if we haven't read anything.
3113 if (!tracer_enabled
&& iter
->pos
)
3124 tracing_read_pipe(struct file
*filp
, char __user
*ubuf
,
3125 size_t cnt
, loff_t
*ppos
)
3127 struct trace_iterator
*iter
= filp
->private_data
;
3128 static struct tracer
*old_tracer
;
3131 /* return any leftover data */
3132 sret
= trace_seq_to_user(&iter
->seq
, ubuf
, cnt
);
3136 trace_seq_init(&iter
->seq
);
3138 /* copy the tracer to avoid using a global lock all around */
3139 mutex_lock(&trace_types_lock
);
3140 if (unlikely(old_tracer
!= current_trace
&& current_trace
)) {
3141 old_tracer
= current_trace
;
3142 *iter
->trace
= *current_trace
;
3144 mutex_unlock(&trace_types_lock
);
3147 * Avoid more than one consumer on a single file descriptor
3148 * This is just a matter of traces coherency, the ring buffer itself
3151 mutex_lock(&iter
->mutex
);
3152 if (iter
->trace
->read
) {
3153 sret
= iter
->trace
->read(iter
, filp
, ubuf
, cnt
, ppos
);
3159 sret
= tracing_wait_pipe(filp
);
3163 /* stop when tracing is finished */
3164 if (trace_empty(iter
)) {
3169 if (cnt
>= PAGE_SIZE
)
3170 cnt
= PAGE_SIZE
- 1;
3172 /* reset all but tr, trace, and overruns */
3173 memset(&iter
->seq
, 0,
3174 sizeof(struct trace_iterator
) -
3175 offsetof(struct trace_iterator
, seq
));
3178 trace_event_read_lock();
3179 trace_access_lock(iter
->cpu_file
);
3180 while (trace_find_next_entry_inc(iter
) != NULL
) {
3181 enum print_line_t ret
;
3182 int len
= iter
->seq
.len
;
3184 ret
= print_trace_line(iter
);
3185 if (ret
== TRACE_TYPE_PARTIAL_LINE
) {
3186 /* don't print partial lines */
3187 iter
->seq
.len
= len
;
3190 if (ret
!= TRACE_TYPE_NO_CONSUME
)
3191 trace_consume(iter
);
3193 if (iter
->seq
.len
>= cnt
)
3196 trace_access_unlock(iter
->cpu_file
);
3197 trace_event_read_unlock();
3199 /* Now copy what we have to the user */
3200 sret
= trace_seq_to_user(&iter
->seq
, ubuf
, cnt
);
3201 if (iter
->seq
.readpos
>= iter
->seq
.len
)
3202 trace_seq_init(&iter
->seq
);
3205 * If there was nothing to send to user, inspite of consuming trace
3206 * entries, go back to wait for more entries.
3212 mutex_unlock(&iter
->mutex
);
3217 static void tracing_pipe_buf_release(struct pipe_inode_info
*pipe
,
3218 struct pipe_buffer
*buf
)
3220 __free_page(buf
->page
);
3223 static void tracing_spd_release_pipe(struct splice_pipe_desc
*spd
,
3226 __free_page(spd
->pages
[idx
]);
3229 static const struct pipe_buf_operations tracing_pipe_buf_ops
= {
3231 .map
= generic_pipe_buf_map
,
3232 .unmap
= generic_pipe_buf_unmap
,
3233 .confirm
= generic_pipe_buf_confirm
,
3234 .release
= tracing_pipe_buf_release
,
3235 .steal
= generic_pipe_buf_steal
,
3236 .get
= generic_pipe_buf_get
,
3240 tracing_fill_pipe_page(size_t rem
, struct trace_iterator
*iter
)
3245 /* Seq buffer is page-sized, exactly what we need. */
3247 count
= iter
->seq
.len
;
3248 ret
= print_trace_line(iter
);
3249 count
= iter
->seq
.len
- count
;
3252 iter
->seq
.len
-= count
;
3255 if (ret
== TRACE_TYPE_PARTIAL_LINE
) {
3256 iter
->seq
.len
-= count
;
3260 if (ret
!= TRACE_TYPE_NO_CONSUME
)
3261 trace_consume(iter
);
3263 if (!trace_find_next_entry_inc(iter
)) {
3273 static ssize_t
tracing_splice_read_pipe(struct file
*filp
,
3275 struct pipe_inode_info
*pipe
,
3279 struct page
*pages_def
[PIPE_DEF_BUFFERS
];
3280 struct partial_page partial_def
[PIPE_DEF_BUFFERS
];
3281 struct trace_iterator
*iter
= filp
->private_data
;
3282 struct splice_pipe_desc spd
= {
3284 .partial
= partial_def
,
3285 .nr_pages
= 0, /* This gets updated below. */
3287 .ops
= &tracing_pipe_buf_ops
,
3288 .spd_release
= tracing_spd_release_pipe
,
3290 static struct tracer
*old_tracer
;
3295 if (splice_grow_spd(pipe
, &spd
))
3298 /* copy the tracer to avoid using a global lock all around */
3299 mutex_lock(&trace_types_lock
);
3300 if (unlikely(old_tracer
!= current_trace
&& current_trace
)) {
3301 old_tracer
= current_trace
;
3302 *iter
->trace
= *current_trace
;
3304 mutex_unlock(&trace_types_lock
);
3306 mutex_lock(&iter
->mutex
);
3308 if (iter
->trace
->splice_read
) {
3309 ret
= iter
->trace
->splice_read(iter
, filp
,
3310 ppos
, pipe
, len
, flags
);
3315 ret
= tracing_wait_pipe(filp
);
3319 if (!iter
->ent
&& !trace_find_next_entry_inc(iter
)) {
3324 trace_event_read_lock();
3325 trace_access_lock(iter
->cpu_file
);
3327 /* Fill as many pages as possible. */
3328 for (i
= 0, rem
= len
; i
< pipe
->buffers
&& rem
; i
++) {
3329 spd
.pages
[i
] = alloc_page(GFP_KERNEL
);
3333 rem
= tracing_fill_pipe_page(rem
, iter
);
3335 /* Copy the data into the page, so we can start over. */
3336 ret
= trace_seq_to_buffer(&iter
->seq
,
3337 page_address(spd
.pages
[i
]),
3340 __free_page(spd
.pages
[i
]);
3343 spd
.partial
[i
].offset
= 0;
3344 spd
.partial
[i
].len
= iter
->seq
.len
;
3346 trace_seq_init(&iter
->seq
);
3349 trace_access_unlock(iter
->cpu_file
);
3350 trace_event_read_unlock();
3351 mutex_unlock(&iter
->mutex
);
3355 ret
= splice_to_pipe(pipe
, &spd
);
3357 splice_shrink_spd(pipe
, &spd
);
3361 mutex_unlock(&iter
->mutex
);
3366 tracing_entries_read(struct file
*filp
, char __user
*ubuf
,
3367 size_t cnt
, loff_t
*ppos
)
3369 struct trace_array
*tr
= filp
->private_data
;
3373 mutex_lock(&trace_types_lock
);
3374 if (!ring_buffer_expanded
)
3375 r
= sprintf(buf
, "%lu (expanded: %lu)\n",
3377 trace_buf_size
>> 10);
3379 r
= sprintf(buf
, "%lu\n", tr
->entries
>> 10);
3380 mutex_unlock(&trace_types_lock
);
3382 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
3386 tracing_entries_write(struct file
*filp
, const char __user
*ubuf
,
3387 size_t cnt
, loff_t
*ppos
)
3393 if (cnt
>= sizeof(buf
))
3396 if (copy_from_user(&buf
, ubuf
, cnt
))
3401 ret
= strict_strtoul(buf
, 10, &val
);
3405 /* must have at least 1 entry */
3409 mutex_lock(&trace_types_lock
);
3413 /* disable all cpu buffers */
3414 for_each_tracing_cpu(cpu
) {
3415 if (global_trace
.data
[cpu
])
3416 atomic_inc(&global_trace
.data
[cpu
]->disabled
);
3417 if (max_tr
.data
[cpu
])
3418 atomic_inc(&max_tr
.data
[cpu
]->disabled
);
3421 /* value is in KB */
3424 if (val
!= global_trace
.entries
) {
3425 ret
= tracing_resize_ring_buffer(val
);
3434 /* If check pages failed, return ENOMEM */
3435 if (tracing_disabled
)
3438 for_each_tracing_cpu(cpu
) {
3439 if (global_trace
.data
[cpu
])
3440 atomic_dec(&global_trace
.data
[cpu
]->disabled
);
3441 if (max_tr
.data
[cpu
])
3442 atomic_dec(&max_tr
.data
[cpu
]->disabled
);
3446 mutex_unlock(&trace_types_lock
);
3451 static int mark_printk(const char *fmt
, ...)
3455 va_start(args
, fmt
);
3456 ret
= trace_vprintk(0, fmt
, args
);
3462 tracing_mark_write(struct file
*filp
, const char __user
*ubuf
,
3463 size_t cnt
, loff_t
*fpos
)
3467 if (tracing_disabled
)
3470 if (cnt
> TRACE_BUF_SIZE
)
3471 cnt
= TRACE_BUF_SIZE
;
3473 buf
= kmalloc(cnt
+ 2, GFP_KERNEL
);
3477 if (copy_from_user(buf
, ubuf
, cnt
)) {
3481 if (buf
[cnt
-1] != '\n') {
3487 cnt
= mark_printk("%s", buf
);
3494 static int tracing_clock_show(struct seq_file
*m
, void *v
)
3498 for (i
= 0; i
< ARRAY_SIZE(trace_clocks
); i
++)
3500 "%s%s%s%s", i
? " " : "",
3501 i
== trace_clock_id
? "[" : "", trace_clocks
[i
].name
,
3502 i
== trace_clock_id
? "]" : "");
3508 static ssize_t
tracing_clock_write(struct file
*filp
, const char __user
*ubuf
,
3509 size_t cnt
, loff_t
*fpos
)
3512 const char *clockstr
;
3515 if (cnt
>= sizeof(buf
))
3518 if (copy_from_user(&buf
, ubuf
, cnt
))
3523 clockstr
= strstrip(buf
);
3525 for (i
= 0; i
< ARRAY_SIZE(trace_clocks
); i
++) {
3526 if (strcmp(trace_clocks
[i
].name
, clockstr
) == 0)
3529 if (i
== ARRAY_SIZE(trace_clocks
))
3534 mutex_lock(&trace_types_lock
);
3536 ring_buffer_set_clock(global_trace
.buffer
, trace_clocks
[i
].func
);
3538 ring_buffer_set_clock(max_tr
.buffer
, trace_clocks
[i
].func
);
3540 mutex_unlock(&trace_types_lock
);
3547 static int tracing_clock_open(struct inode
*inode
, struct file
*file
)
3549 if (tracing_disabled
)
3551 return single_open(file
, tracing_clock_show
, NULL
);
3554 static const struct file_operations tracing_max_lat_fops
= {
3555 .open
= tracing_open_generic
,
3556 .read
= tracing_max_lat_read
,
3557 .write
= tracing_max_lat_write
,
3558 .llseek
= generic_file_llseek
,
3561 static const struct file_operations tracing_ctrl_fops
= {
3562 .open
= tracing_open_generic
,
3563 .read
= tracing_ctrl_read
,
3564 .write
= tracing_ctrl_write
,
3565 .llseek
= generic_file_llseek
,
3568 static const struct file_operations set_tracer_fops
= {
3569 .open
= tracing_open_generic
,
3570 .read
= tracing_set_trace_read
,
3571 .write
= tracing_set_trace_write
,
3572 .llseek
= generic_file_llseek
,
3575 static const struct file_operations tracing_pipe_fops
= {
3576 .open
= tracing_open_pipe
,
3577 .poll
= tracing_poll_pipe
,
3578 .read
= tracing_read_pipe
,
3579 .splice_read
= tracing_splice_read_pipe
,
3580 .release
= tracing_release_pipe
,
3581 .llseek
= no_llseek
,
3584 static const struct file_operations tracing_entries_fops
= {
3585 .open
= tracing_open_generic
,
3586 .read
= tracing_entries_read
,
3587 .write
= tracing_entries_write
,
3588 .llseek
= generic_file_llseek
,
3591 static const struct file_operations tracing_mark_fops
= {
3592 .open
= tracing_open_generic
,
3593 .write
= tracing_mark_write
,
3594 .llseek
= generic_file_llseek
,
3597 static const struct file_operations trace_clock_fops
= {
3598 .open
= tracing_clock_open
,
3600 .llseek
= seq_lseek
,
3601 .release
= single_release
,
3602 .write
= tracing_clock_write
,
3605 struct ftrace_buffer_info
{
3606 struct trace_array
*tr
;
3612 static int tracing_buffers_open(struct inode
*inode
, struct file
*filp
)
3614 int cpu
= (int)(long)inode
->i_private
;
3615 struct ftrace_buffer_info
*info
;
3617 if (tracing_disabled
)
3620 info
= kzalloc(sizeof(*info
), GFP_KERNEL
);
3624 info
->tr
= &global_trace
;
3627 /* Force reading ring buffer for first read */
3628 info
->read
= (unsigned int)-1;
3630 filp
->private_data
= info
;
3632 return nonseekable_open(inode
, filp
);
3636 tracing_buffers_read(struct file
*filp
, char __user
*ubuf
,
3637 size_t count
, loff_t
*ppos
)
3639 struct ftrace_buffer_info
*info
= filp
->private_data
;
3647 info
->spare
= ring_buffer_alloc_read_page(info
->tr
->buffer
);
3651 /* Do we have previous read data to read? */
3652 if (info
->read
< PAGE_SIZE
)
3657 trace_access_lock(info
->cpu
);
3658 ret
= ring_buffer_read_page(info
->tr
->buffer
,
3662 trace_access_unlock(info
->cpu
);
3667 size
= PAGE_SIZE
- info
->read
;
3671 ret
= copy_to_user(ubuf
, info
->spare
+ info
->read
, size
);
3682 static int tracing_buffers_release(struct inode
*inode
, struct file
*file
)
3684 struct ftrace_buffer_info
*info
= file
->private_data
;
3687 ring_buffer_free_read_page(info
->tr
->buffer
, info
->spare
);
3694 struct ring_buffer
*buffer
;
3699 static void buffer_pipe_buf_release(struct pipe_inode_info
*pipe
,
3700 struct pipe_buffer
*buf
)
3702 struct buffer_ref
*ref
= (struct buffer_ref
*)buf
->private;
3707 ring_buffer_free_read_page(ref
->buffer
, ref
->page
);
3712 static int buffer_pipe_buf_steal(struct pipe_inode_info
*pipe
,
3713 struct pipe_buffer
*buf
)
3718 static void buffer_pipe_buf_get(struct pipe_inode_info
*pipe
,
3719 struct pipe_buffer
*buf
)
3721 struct buffer_ref
*ref
= (struct buffer_ref
*)buf
->private;
3726 /* Pipe buffer operations for a buffer. */
3727 static const struct pipe_buf_operations buffer_pipe_buf_ops
= {
3729 .map
= generic_pipe_buf_map
,
3730 .unmap
= generic_pipe_buf_unmap
,
3731 .confirm
= generic_pipe_buf_confirm
,
3732 .release
= buffer_pipe_buf_release
,
3733 .steal
= buffer_pipe_buf_steal
,
3734 .get
= buffer_pipe_buf_get
,
3738 * Callback from splice_to_pipe(), if we need to release some pages
3739 * at the end of the spd in case we error'ed out in filling the pipe.
3741 static void buffer_spd_release(struct splice_pipe_desc
*spd
, unsigned int i
)
3743 struct buffer_ref
*ref
=
3744 (struct buffer_ref
*)spd
->partial
[i
].private;
3749 ring_buffer_free_read_page(ref
->buffer
, ref
->page
);
3751 spd
->partial
[i
].private = 0;
3755 tracing_buffers_splice_read(struct file
*file
, loff_t
*ppos
,
3756 struct pipe_inode_info
*pipe
, size_t len
,
3759 struct ftrace_buffer_info
*info
= file
->private_data
;
3760 struct partial_page partial_def
[PIPE_DEF_BUFFERS
];
3761 struct page
*pages_def
[PIPE_DEF_BUFFERS
];
3762 struct splice_pipe_desc spd
= {
3764 .partial
= partial_def
,
3766 .ops
= &buffer_pipe_buf_ops
,
3767 .spd_release
= buffer_spd_release
,
3769 struct buffer_ref
*ref
;
3770 int entries
, size
, i
;
3773 if (splice_grow_spd(pipe
, &spd
))
3776 if (*ppos
& (PAGE_SIZE
- 1)) {
3777 WARN_ONCE(1, "Ftrace: previous read must page-align\n");
3782 if (len
& (PAGE_SIZE
- 1)) {
3783 WARN_ONCE(1, "Ftrace: splice_read should page-align\n");
3784 if (len
< PAGE_SIZE
) {
3791 trace_access_lock(info
->cpu
);
3792 entries
= ring_buffer_entries_cpu(info
->tr
->buffer
, info
->cpu
);
3794 for (i
= 0; i
< pipe
->buffers
&& len
&& entries
; i
++, len
-= PAGE_SIZE
) {
3798 ref
= kzalloc(sizeof(*ref
), GFP_KERNEL
);
3803 ref
->buffer
= info
->tr
->buffer
;
3804 ref
->page
= ring_buffer_alloc_read_page(ref
->buffer
);
3810 r
= ring_buffer_read_page(ref
->buffer
, &ref
->page
,
3813 ring_buffer_free_read_page(ref
->buffer
,
3820 * zero out any left over data, this is going to
3823 size
= ring_buffer_page_len(ref
->page
);
3824 if (size
< PAGE_SIZE
)
3825 memset(ref
->page
+ size
, 0, PAGE_SIZE
- size
);
3827 page
= virt_to_page(ref
->page
);
3829 spd
.pages
[i
] = page
;
3830 spd
.partial
[i
].len
= PAGE_SIZE
;
3831 spd
.partial
[i
].offset
= 0;
3832 spd
.partial
[i
].private = (unsigned long)ref
;
3836 entries
= ring_buffer_entries_cpu(info
->tr
->buffer
, info
->cpu
);
3839 trace_access_unlock(info
->cpu
);
3842 /* did we read anything? */
3843 if (!spd
.nr_pages
) {
3844 if (flags
& SPLICE_F_NONBLOCK
)
3852 ret
= splice_to_pipe(pipe
, &spd
);
3853 splice_shrink_spd(pipe
, &spd
);
3858 static const struct file_operations tracing_buffers_fops
= {
3859 .open
= tracing_buffers_open
,
3860 .read
= tracing_buffers_read
,
3861 .release
= tracing_buffers_release
,
3862 .splice_read
= tracing_buffers_splice_read
,
3863 .llseek
= no_llseek
,
3867 tracing_stats_read(struct file
*filp
, char __user
*ubuf
,
3868 size_t count
, loff_t
*ppos
)
3870 unsigned long cpu
= (unsigned long)filp
->private_data
;
3871 struct trace_array
*tr
= &global_trace
;
3872 struct trace_seq
*s
;
3875 s
= kmalloc(sizeof(*s
), GFP_KERNEL
);
3881 cnt
= ring_buffer_entries_cpu(tr
->buffer
, cpu
);
3882 trace_seq_printf(s
, "entries: %ld\n", cnt
);
3884 cnt
= ring_buffer_overrun_cpu(tr
->buffer
, cpu
);
3885 trace_seq_printf(s
, "overrun: %ld\n", cnt
);
3887 cnt
= ring_buffer_commit_overrun_cpu(tr
->buffer
, cpu
);
3888 trace_seq_printf(s
, "commit overrun: %ld\n", cnt
);
3890 count
= simple_read_from_buffer(ubuf
, count
, ppos
, s
->buffer
, s
->len
);
3897 static const struct file_operations tracing_stats_fops
= {
3898 .open
= tracing_open_generic
,
3899 .read
= tracing_stats_read
,
3900 .llseek
= generic_file_llseek
,
3903 #ifdef CONFIG_DYNAMIC_FTRACE
3905 int __weak
ftrace_arch_read_dyn_info(char *buf
, int size
)
3911 tracing_read_dyn_info(struct file
*filp
, char __user
*ubuf
,
3912 size_t cnt
, loff_t
*ppos
)
3914 static char ftrace_dyn_info_buffer
[1024];
3915 static DEFINE_MUTEX(dyn_info_mutex
);
3916 unsigned long *p
= filp
->private_data
;
3917 char *buf
= ftrace_dyn_info_buffer
;
3918 int size
= ARRAY_SIZE(ftrace_dyn_info_buffer
);
3921 mutex_lock(&dyn_info_mutex
);
3922 r
= sprintf(buf
, "%ld ", *p
);
3924 r
+= ftrace_arch_read_dyn_info(buf
+r
, (size
-1)-r
);
3927 r
= simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
3929 mutex_unlock(&dyn_info_mutex
);
3934 static const struct file_operations tracing_dyn_info_fops
= {
3935 .open
= tracing_open_generic
,
3936 .read
= tracing_read_dyn_info
,
3937 .llseek
= generic_file_llseek
,
3941 static struct dentry
*d_tracer
;
3943 struct dentry
*tracing_init_dentry(void)
3950 if (!debugfs_initialized())
3953 d_tracer
= debugfs_create_dir("tracing", NULL
);
3955 if (!d_tracer
&& !once
) {
3957 pr_warning("Could not create debugfs directory 'tracing'\n");
3964 static struct dentry
*d_percpu
;
3966 struct dentry
*tracing_dentry_percpu(void)
3969 struct dentry
*d_tracer
;
3974 d_tracer
= tracing_init_dentry();
3979 d_percpu
= debugfs_create_dir("per_cpu", d_tracer
);
3981 if (!d_percpu
&& !once
) {
3983 pr_warning("Could not create debugfs directory 'per_cpu'\n");
3990 static void tracing_init_debugfs_percpu(long cpu
)
3992 struct dentry
*d_percpu
= tracing_dentry_percpu();
3993 struct dentry
*d_cpu
;
3994 /* strlen(cpu) + MAX(log10(cpu)) + '\0' */
3997 if (cpu
> 999 || cpu
< 0)
4000 sprintf(cpu_dir
, "cpu%ld", cpu
);
4001 d_cpu
= debugfs_create_dir(cpu_dir
, d_percpu
);
4003 pr_warning("Could not create debugfs '%s' entry\n", cpu_dir
);
4007 /* per cpu trace_pipe */
4008 trace_create_file("trace_pipe", 0444, d_cpu
,
4009 (void *) cpu
, &tracing_pipe_fops
);
4012 trace_create_file("trace", 0644, d_cpu
,
4013 (void *) cpu
, &tracing_fops
);
4015 trace_create_file("trace_pipe_raw", 0444, d_cpu
,
4016 (void *) cpu
, &tracing_buffers_fops
);
4018 trace_create_file("stats", 0444, d_cpu
,
4019 (void *) cpu
, &tracing_stats_fops
);
4022 #ifdef CONFIG_FTRACE_SELFTEST
4023 /* Let selftest have access to static functions in this file */
4024 #include "trace_selftest.c"
4027 struct trace_option_dentry
{
4028 struct tracer_opt
*opt
;
4029 struct tracer_flags
*flags
;
4030 struct dentry
*entry
;
4034 trace_options_read(struct file
*filp
, char __user
*ubuf
, size_t cnt
,
4037 struct trace_option_dentry
*topt
= filp
->private_data
;
4040 if (topt
->flags
->val
& topt
->opt
->bit
)
4045 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, 2);
4049 trace_options_write(struct file
*filp
, const char __user
*ubuf
, size_t cnt
,
4052 struct trace_option_dentry
*topt
= filp
->private_data
;
4057 if (cnt
>= sizeof(buf
))
4060 if (copy_from_user(&buf
, ubuf
, cnt
))
4065 ret
= strict_strtoul(buf
, 10, &val
);
4069 if (val
!= 0 && val
!= 1)
4072 if (!!(topt
->flags
->val
& topt
->opt
->bit
) != val
) {
4073 mutex_lock(&trace_types_lock
);
4074 ret
= __set_tracer_option(current_trace
, topt
->flags
,
4076 mutex_unlock(&trace_types_lock
);
4087 static const struct file_operations trace_options_fops
= {
4088 .open
= tracing_open_generic
,
4089 .read
= trace_options_read
,
4090 .write
= trace_options_write
,
4091 .llseek
= generic_file_llseek
,
4095 trace_options_core_read(struct file
*filp
, char __user
*ubuf
, size_t cnt
,
4098 long index
= (long)filp
->private_data
;
4101 if (trace_flags
& (1 << index
))
4106 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, 2);
4110 trace_options_core_write(struct file
*filp
, const char __user
*ubuf
, size_t cnt
,
4113 long index
= (long)filp
->private_data
;
4118 if (cnt
>= sizeof(buf
))
4121 if (copy_from_user(&buf
, ubuf
, cnt
))
4126 ret
= strict_strtoul(buf
, 10, &val
);
4130 if (val
!= 0 && val
!= 1)
4132 set_tracer_flags(1 << index
, val
);
4139 static const struct file_operations trace_options_core_fops
= {
4140 .open
= tracing_open_generic
,
4141 .read
= trace_options_core_read
,
4142 .write
= trace_options_core_write
,
4143 .llseek
= generic_file_llseek
,
4146 struct dentry
*trace_create_file(const char *name
,
4148 struct dentry
*parent
,
4150 const struct file_operations
*fops
)
4154 ret
= debugfs_create_file(name
, mode
, parent
, data
, fops
);
4156 pr_warning("Could not create debugfs '%s' entry\n", name
);
4162 static struct dentry
*trace_options_init_dentry(void)
4164 struct dentry
*d_tracer
;
4165 static struct dentry
*t_options
;
4170 d_tracer
= tracing_init_dentry();
4174 t_options
= debugfs_create_dir("options", d_tracer
);
4176 pr_warning("Could not create debugfs directory 'options'\n");
4184 create_trace_option_file(struct trace_option_dentry
*topt
,
4185 struct tracer_flags
*flags
,
4186 struct tracer_opt
*opt
)
4188 struct dentry
*t_options
;
4190 t_options
= trace_options_init_dentry();
4194 topt
->flags
= flags
;
4197 topt
->entry
= trace_create_file(opt
->name
, 0644, t_options
, topt
,
4198 &trace_options_fops
);
4202 static struct trace_option_dentry
*
4203 create_trace_option_files(struct tracer
*tracer
)
4205 struct trace_option_dentry
*topts
;
4206 struct tracer_flags
*flags
;
4207 struct tracer_opt
*opts
;
4213 flags
= tracer
->flags
;
4215 if (!flags
|| !flags
->opts
)
4220 for (cnt
= 0; opts
[cnt
].name
; cnt
++)
4223 topts
= kcalloc(cnt
+ 1, sizeof(*topts
), GFP_KERNEL
);
4227 for (cnt
= 0; opts
[cnt
].name
; cnt
++)
4228 create_trace_option_file(&topts
[cnt
], flags
,
4235 destroy_trace_option_files(struct trace_option_dentry
*topts
)
4242 for (cnt
= 0; topts
[cnt
].opt
; cnt
++) {
4243 if (topts
[cnt
].entry
)
4244 debugfs_remove(topts
[cnt
].entry
);
4250 static struct dentry
*
4251 create_trace_option_core_file(const char *option
, long index
)
4253 struct dentry
*t_options
;
4255 t_options
= trace_options_init_dentry();
4259 return trace_create_file(option
, 0644, t_options
, (void *)index
,
4260 &trace_options_core_fops
);
4263 static __init
void create_trace_options_dir(void)
4265 struct dentry
*t_options
;
4268 t_options
= trace_options_init_dentry();
4272 for (i
= 0; trace_options
[i
]; i
++)
4273 create_trace_option_core_file(trace_options
[i
], i
);
4276 static __init
int tracer_init_debugfs(void)
4278 struct dentry
*d_tracer
;
4281 trace_access_lock_init();
4283 d_tracer
= tracing_init_dentry();
4285 trace_create_file("tracing_enabled", 0644, d_tracer
,
4286 &global_trace
, &tracing_ctrl_fops
);
4288 trace_create_file("trace_options", 0644, d_tracer
,
4289 NULL
, &tracing_iter_fops
);
4291 trace_create_file("tracing_cpumask", 0644, d_tracer
,
4292 NULL
, &tracing_cpumask_fops
);
4294 trace_create_file("trace", 0644, d_tracer
,
4295 (void *) TRACE_PIPE_ALL_CPU
, &tracing_fops
);
4297 trace_create_file("available_tracers", 0444, d_tracer
,
4298 &global_trace
, &show_traces_fops
);
4300 trace_create_file("current_tracer", 0644, d_tracer
,
4301 &global_trace
, &set_tracer_fops
);
4303 #ifdef CONFIG_TRACER_MAX_TRACE
4304 trace_create_file("tracing_max_latency", 0644, d_tracer
,
4305 &tracing_max_latency
, &tracing_max_lat_fops
);
4308 trace_create_file("tracing_thresh", 0644, d_tracer
,
4309 &tracing_thresh
, &tracing_max_lat_fops
);
4311 trace_create_file("README", 0444, d_tracer
,
4312 NULL
, &tracing_readme_fops
);
4314 trace_create_file("trace_pipe", 0444, d_tracer
,
4315 (void *) TRACE_PIPE_ALL_CPU
, &tracing_pipe_fops
);
4317 trace_create_file("buffer_size_kb", 0644, d_tracer
,
4318 &global_trace
, &tracing_entries_fops
);
4320 trace_create_file("trace_marker", 0220, d_tracer
,
4321 NULL
, &tracing_mark_fops
);
4323 trace_create_file("saved_cmdlines", 0444, d_tracer
,
4324 NULL
, &tracing_saved_cmdlines_fops
);
4326 trace_create_file("trace_clock", 0644, d_tracer
, NULL
,
4329 #ifdef CONFIG_DYNAMIC_FTRACE
4330 trace_create_file("dyn_ftrace_total_info", 0444, d_tracer
,
4331 &ftrace_update_tot_cnt
, &tracing_dyn_info_fops
);
4334 create_trace_options_dir();
4336 for_each_tracing_cpu(cpu
)
4337 tracing_init_debugfs_percpu(cpu
);
4342 static int trace_panic_handler(struct notifier_block
*this,
4343 unsigned long event
, void *unused
)
4345 if (ftrace_dump_on_oops
)
4346 ftrace_dump(ftrace_dump_on_oops
);
4350 static struct notifier_block trace_panic_notifier
= {
4351 .notifier_call
= trace_panic_handler
,
4353 .priority
= 150 /* priority: INT_MAX >= x >= 0 */
4356 static int trace_die_handler(struct notifier_block
*self
,
4362 if (ftrace_dump_on_oops
)
4363 ftrace_dump(ftrace_dump_on_oops
);
4371 static struct notifier_block trace_die_notifier
= {
4372 .notifier_call
= trace_die_handler
,
4377 * printk is set to max of 1024, we really don't need it that big.
4378 * Nothing should be printing 1000 characters anyway.
4380 #define TRACE_MAX_PRINT 1000
4383 * Define here KERN_TRACE so that we have one place to modify
4384 * it if we decide to change what log level the ftrace dump
4387 #define KERN_TRACE KERN_EMERG
4390 trace_printk_seq(struct trace_seq
*s
)
4392 /* Probably should print a warning here. */
4396 /* should be zero ended, but we are paranoid. */
4397 s
->buffer
[s
->len
] = 0;
4399 printk(KERN_TRACE
"%s", s
->buffer
);
4404 void trace_init_global_iter(struct trace_iterator
*iter
)
4406 iter
->tr
= &global_trace
;
4407 iter
->trace
= current_trace
;
4408 iter
->cpu_file
= TRACE_PIPE_ALL_CPU
;
4412 __ftrace_dump(bool disable_tracing
, enum ftrace_dump_mode oops_dump_mode
)
4414 static arch_spinlock_t ftrace_dump_lock
=
4415 (arch_spinlock_t
)__ARCH_SPIN_LOCK_UNLOCKED
;
4416 /* use static because iter can be a bit big for the stack */
4417 static struct trace_iterator iter
;
4418 unsigned int old_userobj
;
4419 static int dump_ran
;
4420 unsigned long flags
;
4424 local_irq_save(flags
);
4425 arch_spin_lock(&ftrace_dump_lock
);
4433 if (disable_tracing
)
4436 trace_init_global_iter(&iter
);
4438 for_each_tracing_cpu(cpu
) {
4439 atomic_inc(&iter
.tr
->data
[cpu
]->disabled
);
4442 old_userobj
= trace_flags
& TRACE_ITER_SYM_USEROBJ
;
4444 /* don't look at user memory in panic mode */
4445 trace_flags
&= ~TRACE_ITER_SYM_USEROBJ
;
4447 /* Simulate the iterator */
4448 iter
.tr
= &global_trace
;
4449 iter
.trace
= current_trace
;
4451 switch (oops_dump_mode
) {
4453 iter
.cpu_file
= TRACE_PIPE_ALL_CPU
;
4456 iter
.cpu_file
= raw_smp_processor_id();
4461 printk(KERN_TRACE
"Bad dumping mode, switching to all CPUs dump\n");
4462 iter
.cpu_file
= TRACE_PIPE_ALL_CPU
;
4465 printk(KERN_TRACE
"Dumping ftrace buffer:\n");
4468 * We need to stop all tracing on all CPUS to read the
4469 * the next buffer. This is a bit expensive, but is
4470 * not done often. We fill all what we can read,
4471 * and then release the locks again.
4474 while (!trace_empty(&iter
)) {
4477 printk(KERN_TRACE
"---------------------------------\n");
4481 /* reset all but tr, trace, and overruns */
4482 memset(&iter
.seq
, 0,
4483 sizeof(struct trace_iterator
) -
4484 offsetof(struct trace_iterator
, seq
));
4485 iter
.iter_flags
|= TRACE_FILE_LAT_FMT
;
4488 if (trace_find_next_entry_inc(&iter
) != NULL
) {
4491 ret
= print_trace_line(&iter
);
4492 if (ret
!= TRACE_TYPE_NO_CONSUME
)
4493 trace_consume(&iter
);
4496 trace_printk_seq(&iter
.seq
);
4500 printk(KERN_TRACE
" (ftrace buffer empty)\n");
4502 printk(KERN_TRACE
"---------------------------------\n");
4505 /* Re-enable tracing if requested */
4506 if (!disable_tracing
) {
4507 trace_flags
|= old_userobj
;
4509 for_each_tracing_cpu(cpu
) {
4510 atomic_dec(&iter
.tr
->data
[cpu
]->disabled
);
4516 arch_spin_unlock(&ftrace_dump_lock
);
4517 local_irq_restore(flags
);
4520 /* By default: disable tracing after the dump */
4521 void ftrace_dump(enum ftrace_dump_mode oops_dump_mode
)
4523 __ftrace_dump(true, oops_dump_mode
);
4526 __init
static int tracer_alloc_buffers(void)
4532 if (!alloc_cpumask_var(&tracing_buffer_mask
, GFP_KERNEL
))
4535 if (!alloc_cpumask_var(&tracing_cpumask
, GFP_KERNEL
))
4536 goto out_free_buffer_mask
;
4538 /* To save memory, keep the ring buffer size to its minimum */
4539 if (ring_buffer_expanded
)
4540 ring_buf_size
= trace_buf_size
;
4544 cpumask_copy(tracing_buffer_mask
, cpu_possible_mask
);
4545 cpumask_copy(tracing_cpumask
, cpu_all_mask
);
4547 /* TODO: make the number of buffers hot pluggable with CPUS */
4548 global_trace
.buffer
= ring_buffer_alloc(ring_buf_size
,
4549 TRACE_BUFFER_FLAGS
);
4550 if (!global_trace
.buffer
) {
4551 printk(KERN_ERR
"tracer: failed to allocate ring buffer!\n");
4553 goto out_free_cpumask
;
4555 global_trace
.entries
= ring_buffer_size(global_trace
.buffer
);
4558 #ifdef CONFIG_TRACER_MAX_TRACE
4559 max_tr
.buffer
= ring_buffer_alloc(1, TRACE_BUFFER_FLAGS
);
4560 if (!max_tr
.buffer
) {
4561 printk(KERN_ERR
"tracer: failed to allocate max ring buffer!\n");
4563 ring_buffer_free(global_trace
.buffer
);
4564 goto out_free_cpumask
;
4569 /* Allocate the first page for all buffers */
4570 for_each_tracing_cpu(i
) {
4571 global_trace
.data
[i
] = &per_cpu(global_trace_cpu
, i
);
4572 max_tr
.data
[i
] = &per_cpu(max_tr_data
, i
);
4575 trace_init_cmdlines();
4577 register_tracer(&nop_trace
);
4578 current_trace
= &nop_trace
;
4579 /* All seems OK, enable tracing */
4580 tracing_disabled
= 0;
4582 atomic_notifier_chain_register(&panic_notifier_list
,
4583 &trace_panic_notifier
);
4585 register_die_notifier(&trace_die_notifier
);
4590 free_cpumask_var(tracing_cpumask
);
4591 out_free_buffer_mask
:
4592 free_cpumask_var(tracing_buffer_mask
);
4597 __init
static int clear_boot_tracer(void)
4600 * The default tracer at boot buffer is an init section.
4601 * This function is called in lateinit. If we did not
4602 * find the boot tracer, then clear it out, to prevent
4603 * later registration from accessing the buffer that is
4604 * about to be freed.
4606 if (!default_bootup_tracer
)
4609 printk(KERN_INFO
"ftrace bootup tracer '%s' not registered.\n",
4610 default_bootup_tracer
);
4611 default_bootup_tracer
= NULL
;
4616 early_initcall(tracer_alloc_buffers
);
4617 fs_initcall(tracer_init_debugfs
);
4618 late_initcall(clear_boot_tracer
);