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/notifier.h>
21 #include <linux/irqflags.h>
22 #include <linux/debugfs.h>
23 #include <linux/pagemap.h>
24 #include <linux/hardirq.h>
25 #include <linux/linkage.h>
26 #include <linux/uaccess.h>
27 #include <linux/kprobes.h>
28 #include <linux/ftrace.h>
29 #include <linux/module.h>
30 #include <linux/percpu.h>
31 #include <linux/splice.h>
32 #include <linux/kdebug.h>
33 #include <linux/string.h>
34 #include <linux/rwsem.h>
35 #include <linux/slab.h>
36 #include <linux/ctype.h>
37 #include <linux/init.h>
38 #include <linux/poll.h>
42 #include "trace_output.h"
45 * On boot up, the ring buffer is set to the minimum size, so that
46 * we do not waste memory on systems that are not using tracing.
48 int ring_buffer_expanded
;
51 * We need to change this state when a selftest is running.
52 * A selftest will lurk into the ring-buffer to count the
53 * entries inserted during the selftest although some concurrent
54 * insertions into the ring-buffer such as trace_printk could occurred
55 * at the same time, giving false positive or negative results.
57 static bool __read_mostly tracing_selftest_running
;
60 * If a tracer is running, we do not want to run SELFTEST.
62 bool __read_mostly tracing_selftest_disabled
;
64 /* For tracers that don't implement custom flags */
65 static struct tracer_opt dummy_tracer_opt
[] = {
69 static struct tracer_flags dummy_tracer_flags
= {
71 .opts
= dummy_tracer_opt
74 static int dummy_set_flag(u32 old_flags
, u32 bit
, int set
)
80 * Kill all tracing for good (never come back).
81 * It is initialized to 1 but will turn to zero if the initialization
82 * of the tracer is successful. But that is the only place that sets
85 static int tracing_disabled
= 1;
87 DEFINE_PER_CPU(int, ftrace_cpu_disabled
);
89 static inline void ftrace_disable_cpu(void)
92 __this_cpu_inc(ftrace_cpu_disabled
);
95 static inline void ftrace_enable_cpu(void)
97 __this_cpu_dec(ftrace_cpu_disabled
);
101 cpumask_var_t __read_mostly tracing_buffer_mask
;
104 * ftrace_dump_on_oops - variable to dump ftrace buffer on oops
106 * If there is an oops (or kernel panic) and the ftrace_dump_on_oops
107 * is set, then ftrace_dump is called. This will output the contents
108 * of the ftrace buffers to the console. This is very useful for
109 * capturing traces that lead to crashes and outputing it to a
112 * It is default off, but you can enable it with either specifying
113 * "ftrace_dump_on_oops" in the kernel command line, or setting
114 * /proc/sys/kernel/ftrace_dump_on_oops
115 * Set 1 if you want to dump buffers of all CPUs
116 * Set 2 if you want to dump the buffer of the CPU that triggered oops
119 enum ftrace_dump_mode ftrace_dump_on_oops
;
121 static int tracing_set_tracer(const char *buf
);
123 #define MAX_TRACER_SIZE 100
124 static char bootup_tracer_buf
[MAX_TRACER_SIZE
] __initdata
;
125 static char *default_bootup_tracer
;
127 static int __init
set_cmdline_ftrace(char *str
)
129 strncpy(bootup_tracer_buf
, str
, MAX_TRACER_SIZE
);
130 default_bootup_tracer
= bootup_tracer_buf
;
131 /* We are using ftrace early, expand it */
132 ring_buffer_expanded
= 1;
135 __setup("ftrace=", set_cmdline_ftrace
);
137 static int __init
set_ftrace_dump_on_oops(char *str
)
139 if (*str
++ != '=' || !*str
) {
140 ftrace_dump_on_oops
= DUMP_ALL
;
144 if (!strcmp("orig_cpu", str
)) {
145 ftrace_dump_on_oops
= DUMP_ORIG
;
151 __setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops
);
153 unsigned long long ns2usecs(cycle_t nsec
)
161 * The global_trace is the descriptor that holds the tracing
162 * buffers for the live tracing. For each CPU, it contains
163 * a link list of pages that will store trace entries. The
164 * page descriptor of the pages in the memory is used to hold
165 * the link list by linking the lru item in the page descriptor
166 * to each of the pages in the buffer per CPU.
168 * For each active CPU there is a data field that holds the
169 * pages for the buffer for that CPU. Each CPU has the same number
170 * of pages allocated for its buffer.
172 static struct trace_array global_trace
;
174 static DEFINE_PER_CPU(struct trace_array_cpu
, global_trace_cpu
);
176 int filter_current_check_discard(struct ring_buffer
*buffer
,
177 struct ftrace_event_call
*call
, void *rec
,
178 struct ring_buffer_event
*event
)
180 return filter_check_discard(call
, rec
, buffer
, event
);
182 EXPORT_SYMBOL_GPL(filter_current_check_discard
);
184 cycle_t
ftrace_now(int cpu
)
188 /* Early boot up does not have a buffer yet */
189 if (!global_trace
.buffer
)
190 return trace_clock_local();
192 ts
= ring_buffer_time_stamp(global_trace
.buffer
, cpu
);
193 ring_buffer_normalize_time_stamp(global_trace
.buffer
, cpu
, &ts
);
199 * The max_tr is used to snapshot the global_trace when a maximum
200 * latency is reached. Some tracers will use this to store a maximum
201 * trace while it continues examining live traces.
203 * The buffers for the max_tr are set up the same as the global_trace.
204 * When a snapshot is taken, the link list of the max_tr is swapped
205 * with the link list of the global_trace and the buffers are reset for
206 * the global_trace so the tracing can continue.
208 static struct trace_array max_tr
;
210 static DEFINE_PER_CPU(struct trace_array_cpu
, max_tr_data
);
212 /* tracer_enabled is used to toggle activation of a tracer */
213 static int tracer_enabled
= 1;
216 * tracing_is_enabled - return tracer_enabled status
218 * This function is used by other tracers to know the status
219 * of the tracer_enabled flag. Tracers may use this function
220 * to know if it should enable their features when starting
221 * up. See irqsoff tracer for an example (start_irqsoff_tracer).
223 int tracing_is_enabled(void)
225 return tracer_enabled
;
229 * trace_buf_size is the size in bytes that is allocated
230 * for a buffer. Note, the number of bytes is always rounded
233 * This number is purposely set to a low number of 16384.
234 * If the dump on oops happens, it will be much appreciated
235 * to not have to wait for all that output. Anyway this can be
236 * boot time and run time configurable.
238 #define TRACE_BUF_SIZE_DEFAULT 1441792UL /* 16384 * 88 (sizeof(entry)) */
240 static unsigned long trace_buf_size
= TRACE_BUF_SIZE_DEFAULT
;
242 /* trace_types holds a link list of available tracers. */
243 static struct tracer
*trace_types __read_mostly
;
245 /* current_trace points to the tracer that is currently active */
246 static struct tracer
*current_trace __read_mostly
;
249 * trace_types_lock is used to protect the trace_types list.
251 static DEFINE_MUTEX(trace_types_lock
);
254 * serialize the access of the ring buffer
256 * ring buffer serializes readers, but it is low level protection.
257 * The validity of the events (which returns by ring_buffer_peek() ..etc)
258 * are not protected by ring buffer.
260 * The content of events may become garbage if we allow other process consumes
261 * these events concurrently:
262 * A) the page of the consumed events may become a normal page
263 * (not reader page) in ring buffer, and this page will be rewrited
264 * by events producer.
265 * B) The page of the consumed events may become a page for splice_read,
266 * and this page will be returned to system.
268 * These primitives allow multi process access to different cpu ring buffer
271 * These primitives don't distinguish read-only and read-consume access.
272 * Multi read-only access are also serialized.
276 static DECLARE_RWSEM(all_cpu_access_lock
);
277 static DEFINE_PER_CPU(struct mutex
, cpu_access_lock
);
279 static inline void trace_access_lock(int cpu
)
281 if (cpu
== TRACE_PIPE_ALL_CPU
) {
282 /* gain it for accessing the whole ring buffer. */
283 down_write(&all_cpu_access_lock
);
285 /* gain it for accessing a cpu ring buffer. */
287 /* Firstly block other trace_access_lock(TRACE_PIPE_ALL_CPU). */
288 down_read(&all_cpu_access_lock
);
290 /* Secondly block other access to this @cpu ring buffer. */
291 mutex_lock(&per_cpu(cpu_access_lock
, cpu
));
295 static inline void trace_access_unlock(int cpu
)
297 if (cpu
== TRACE_PIPE_ALL_CPU
) {
298 up_write(&all_cpu_access_lock
);
300 mutex_unlock(&per_cpu(cpu_access_lock
, cpu
));
301 up_read(&all_cpu_access_lock
);
305 static inline void trace_access_lock_init(void)
309 for_each_possible_cpu(cpu
)
310 mutex_init(&per_cpu(cpu_access_lock
, cpu
));
315 static DEFINE_MUTEX(access_lock
);
317 static inline void trace_access_lock(int cpu
)
320 mutex_lock(&access_lock
);
323 static inline void trace_access_unlock(int cpu
)
326 mutex_unlock(&access_lock
);
329 static inline void trace_access_lock_init(void)
335 /* trace_wait is a waitqueue for tasks blocked on trace_poll */
336 static DECLARE_WAIT_QUEUE_HEAD(trace_wait
);
338 /* trace_flags holds trace_options default values */
339 unsigned long trace_flags
= TRACE_ITER_PRINT_PARENT
| TRACE_ITER_PRINTK
|
340 TRACE_ITER_ANNOTATE
| TRACE_ITER_CONTEXT_INFO
| TRACE_ITER_SLEEP_TIME
|
341 TRACE_ITER_GRAPH_TIME
| TRACE_ITER_RECORD_CMD
| TRACE_ITER_OVERWRITE
|
344 static int trace_stop_count
;
345 static DEFINE_RAW_SPINLOCK(tracing_start_lock
);
347 static void wakeup_work_handler(struct work_struct
*work
)
349 wake_up(&trace_wait
);
352 static DECLARE_DELAYED_WORK(wakeup_work
, wakeup_work_handler
);
355 * trace_wake_up - wake up tasks waiting for trace input
357 * Schedules a delayed work to wake up any task that is blocked on the
358 * trace_wait queue. These is used with trace_poll for tasks polling the
361 void trace_wake_up(void)
363 const unsigned long delay
= msecs_to_jiffies(2);
365 if (trace_flags
& TRACE_ITER_BLOCK
)
367 schedule_delayed_work(&wakeup_work
, delay
);
370 static int __init
set_buf_size(char *str
)
372 unsigned long buf_size
;
376 buf_size
= memparse(str
, &str
);
377 /* nr_entries can not be zero */
380 trace_buf_size
= buf_size
;
383 __setup("trace_buf_size=", set_buf_size
);
385 static int __init
set_tracing_thresh(char *str
)
387 unsigned long threshhold
;
392 ret
= strict_strtoul(str
, 0, &threshhold
);
395 tracing_thresh
= threshhold
* 1000;
398 __setup("tracing_thresh=", set_tracing_thresh
);
400 unsigned long nsecs_to_usecs(unsigned long nsecs
)
405 /* These must match the bit postions in trace_iterator_flags */
406 static const char *trace_options
[] = {
438 { trace_clock_local
, "local" },
439 { trace_clock_global
, "global" },
440 { trace_clock_counter
, "counter" },
446 * trace_parser_get_init - gets the buffer for trace parser
448 int trace_parser_get_init(struct trace_parser
*parser
, int size
)
450 memset(parser
, 0, sizeof(*parser
));
452 parser
->buffer
= kmalloc(size
, GFP_KERNEL
);
461 * trace_parser_put - frees the buffer for trace parser
463 void trace_parser_put(struct trace_parser
*parser
)
465 kfree(parser
->buffer
);
469 * trace_get_user - reads the user input string separated by space
470 * (matched by isspace(ch))
472 * For each string found the 'struct trace_parser' is updated,
473 * and the function returns.
475 * Returns number of bytes read.
477 * See kernel/trace/trace.h for 'struct trace_parser' details.
479 int trace_get_user(struct trace_parser
*parser
, const char __user
*ubuf
,
480 size_t cnt
, loff_t
*ppos
)
487 trace_parser_clear(parser
);
489 ret
= get_user(ch
, ubuf
++);
497 * The parser is not finished with the last write,
498 * continue reading the user input without skipping spaces.
501 /* skip white space */
502 while (cnt
&& isspace(ch
)) {
503 ret
= get_user(ch
, ubuf
++);
510 /* only spaces were written */
520 /* read the non-space input */
521 while (cnt
&& !isspace(ch
)) {
522 if (parser
->idx
< parser
->size
- 1)
523 parser
->buffer
[parser
->idx
++] = ch
;
528 ret
= get_user(ch
, ubuf
++);
535 /* We either got finished input or we have to wait for another call. */
537 parser
->buffer
[parser
->idx
] = 0;
538 parser
->cont
= false;
541 parser
->buffer
[parser
->idx
++] = ch
;
551 ssize_t
trace_seq_to_user(struct trace_seq
*s
, char __user
*ubuf
, size_t cnt
)
559 if (s
->len
<= s
->readpos
)
562 len
= s
->len
- s
->readpos
;
565 ret
= copy_to_user(ubuf
, s
->buffer
+ s
->readpos
, cnt
);
575 static ssize_t
trace_seq_to_buffer(struct trace_seq
*s
, void *buf
, size_t cnt
)
580 if (s
->len
<= s
->readpos
)
583 len
= s
->len
- s
->readpos
;
586 ret
= memcpy(buf
, s
->buffer
+ s
->readpos
, cnt
);
595 * ftrace_max_lock is used to protect the swapping of buffers
596 * when taking a max snapshot. The buffers themselves are
597 * protected by per_cpu spinlocks. But the action of the swap
598 * needs its own lock.
600 * This is defined as a arch_spinlock_t in order to help
601 * with performance when lockdep debugging is enabled.
603 * It is also used in other places outside the update_max_tr
604 * so it needs to be defined outside of the
605 * CONFIG_TRACER_MAX_TRACE.
607 static arch_spinlock_t ftrace_max_lock
=
608 (arch_spinlock_t
)__ARCH_SPIN_LOCK_UNLOCKED
;
610 unsigned long __read_mostly tracing_thresh
;
612 #ifdef CONFIG_TRACER_MAX_TRACE
613 unsigned long __read_mostly tracing_max_latency
;
616 * Copy the new maximum trace into the separate maximum-trace
617 * structure. (this way the maximum trace is permanently saved,
618 * for later retrieval via /sys/kernel/debug/tracing/latency_trace)
621 __update_max_tr(struct trace_array
*tr
, struct task_struct
*tsk
, int cpu
)
623 struct trace_array_cpu
*data
= tr
->data
[cpu
];
624 struct trace_array_cpu
*max_data
;
627 max_tr
.time_start
= data
->preempt_timestamp
;
629 max_data
= max_tr
.data
[cpu
];
630 max_data
->saved_latency
= tracing_max_latency
;
631 max_data
->critical_start
= data
->critical_start
;
632 max_data
->critical_end
= data
->critical_end
;
634 memcpy(max_data
->comm
, tsk
->comm
, TASK_COMM_LEN
);
635 max_data
->pid
= tsk
->pid
;
636 max_data
->uid
= task_uid(tsk
);
637 max_data
->nice
= tsk
->static_prio
- 20 - MAX_RT_PRIO
;
638 max_data
->policy
= tsk
->policy
;
639 max_data
->rt_priority
= tsk
->rt_priority
;
641 /* record this tasks comm */
642 tracing_record_cmdline(tsk
);
646 * update_max_tr - snapshot all trace buffers from global_trace to max_tr
648 * @tsk: the task with the latency
649 * @cpu: The cpu that initiated the trace.
651 * Flip the buffers between the @tr and the max_tr and record information
652 * about which task was the cause of this latency.
655 update_max_tr(struct trace_array
*tr
, struct task_struct
*tsk
, int cpu
)
657 struct ring_buffer
*buf
= tr
->buffer
;
659 if (trace_stop_count
)
662 WARN_ON_ONCE(!irqs_disabled());
663 if (!current_trace
->use_max_tr
) {
667 arch_spin_lock(&ftrace_max_lock
);
669 tr
->buffer
= max_tr
.buffer
;
672 __update_max_tr(tr
, tsk
, cpu
);
673 arch_spin_unlock(&ftrace_max_lock
);
677 * update_max_tr_single - only copy one trace over, and reset the rest
679 * @tsk - task with the latency
680 * @cpu - the cpu of the buffer to copy.
682 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
685 update_max_tr_single(struct trace_array
*tr
, struct task_struct
*tsk
, int cpu
)
689 if (trace_stop_count
)
692 WARN_ON_ONCE(!irqs_disabled());
693 if (!current_trace
->use_max_tr
) {
698 arch_spin_lock(&ftrace_max_lock
);
700 ftrace_disable_cpu();
702 ret
= ring_buffer_swap_cpu(max_tr
.buffer
, tr
->buffer
, cpu
);
706 * We failed to swap the buffer due to a commit taking
707 * place on this CPU. We fail to record, but we reset
708 * the max trace buffer (no one writes directly to it)
709 * and flag that it failed.
711 trace_array_printk(&max_tr
, _THIS_IP_
,
712 "Failed to swap buffers due to commit in progress\n");
717 WARN_ON_ONCE(ret
&& ret
!= -EAGAIN
&& ret
!= -EBUSY
);
719 __update_max_tr(tr
, tsk
, cpu
);
720 arch_spin_unlock(&ftrace_max_lock
);
722 #endif /* CONFIG_TRACER_MAX_TRACE */
725 * register_tracer - register a tracer with the ftrace system.
726 * @type - the plugin for the tracer
728 * Register a new plugin tracer.
730 int register_tracer(struct tracer
*type
)
731 __releases(kernel_lock
)
732 __acquires(kernel_lock
)
738 pr_info("Tracer must have a name\n");
742 if (strlen(type
->name
) >= MAX_TRACER_SIZE
) {
743 pr_info("Tracer has a name longer than %d\n", MAX_TRACER_SIZE
);
747 mutex_lock(&trace_types_lock
);
749 tracing_selftest_running
= true;
751 for (t
= trace_types
; t
; t
= t
->next
) {
752 if (strcmp(type
->name
, t
->name
) == 0) {
754 pr_info("Tracer %s already registered\n",
762 type
->set_flag
= &dummy_set_flag
;
764 type
->flags
= &dummy_tracer_flags
;
766 if (!type
->flags
->opts
)
767 type
->flags
->opts
= dummy_tracer_opt
;
768 if (!type
->wait_pipe
)
769 type
->wait_pipe
= default_wait_pipe
;
772 #ifdef CONFIG_FTRACE_STARTUP_TEST
773 if (type
->selftest
&& !tracing_selftest_disabled
) {
774 struct tracer
*saved_tracer
= current_trace
;
775 struct trace_array
*tr
= &global_trace
;
778 * Run a selftest on this tracer.
779 * Here we reset the trace buffer, and set the current
780 * tracer to be this tracer. The tracer can then run some
781 * internal tracing to verify that everything is in order.
782 * If we fail, we do not register this tracer.
784 tracing_reset_online_cpus(tr
);
786 current_trace
= type
;
788 /* If we expanded the buffers, make sure the max is expanded too */
789 if (ring_buffer_expanded
&& type
->use_max_tr
)
790 ring_buffer_resize(max_tr
.buffer
, trace_buf_size
);
792 /* the test is responsible for initializing and enabling */
793 pr_info("Testing tracer %s: ", type
->name
);
794 ret
= type
->selftest(type
, tr
);
795 /* the test is responsible for resetting too */
796 current_trace
= saved_tracer
;
798 printk(KERN_CONT
"FAILED!\n");
801 /* Only reset on passing, to avoid touching corrupted buffers */
802 tracing_reset_online_cpus(tr
);
804 /* Shrink the max buffer again */
805 if (ring_buffer_expanded
&& type
->use_max_tr
)
806 ring_buffer_resize(max_tr
.buffer
, 1);
808 printk(KERN_CONT
"PASSED\n");
812 type
->next
= trace_types
;
816 tracing_selftest_running
= false;
817 mutex_unlock(&trace_types_lock
);
819 if (ret
|| !default_bootup_tracer
)
822 if (strncmp(default_bootup_tracer
, type
->name
, MAX_TRACER_SIZE
))
825 printk(KERN_INFO
"Starting tracer '%s'\n", type
->name
);
826 /* Do we want this tracer to start on bootup? */
827 tracing_set_tracer(type
->name
);
828 default_bootup_tracer
= NULL
;
829 /* disable other selftests, since this will break it. */
830 tracing_selftest_disabled
= 1;
831 #ifdef CONFIG_FTRACE_STARTUP_TEST
832 printk(KERN_INFO
"Disabling FTRACE selftests due to running tracer '%s'\n",
840 void unregister_tracer(struct tracer
*type
)
844 mutex_lock(&trace_types_lock
);
845 for (t
= &trace_types
; *t
; t
= &(*t
)->next
) {
849 pr_info("Tracer %s not registered\n", type
->name
);
855 if (type
== current_trace
&& tracer_enabled
) {
858 if (current_trace
->stop
)
859 current_trace
->stop(&global_trace
);
860 current_trace
= &nop_trace
;
863 mutex_unlock(&trace_types_lock
);
866 static void __tracing_reset(struct ring_buffer
*buffer
, int cpu
)
868 ftrace_disable_cpu();
869 ring_buffer_reset_cpu(buffer
, cpu
);
873 void tracing_reset(struct trace_array
*tr
, int cpu
)
875 struct ring_buffer
*buffer
= tr
->buffer
;
877 ring_buffer_record_disable(buffer
);
879 /* Make sure all commits have finished */
881 __tracing_reset(buffer
, cpu
);
883 ring_buffer_record_enable(buffer
);
886 void tracing_reset_online_cpus(struct trace_array
*tr
)
888 struct ring_buffer
*buffer
= tr
->buffer
;
891 ring_buffer_record_disable(buffer
);
893 /* Make sure all commits have finished */
896 tr
->time_start
= ftrace_now(tr
->cpu
);
898 for_each_online_cpu(cpu
)
899 __tracing_reset(buffer
, cpu
);
901 ring_buffer_record_enable(buffer
);
904 void tracing_reset_current(int cpu
)
906 tracing_reset(&global_trace
, cpu
);
909 void tracing_reset_current_online_cpus(void)
911 tracing_reset_online_cpus(&global_trace
);
914 #define SAVED_CMDLINES 128
915 #define NO_CMDLINE_MAP UINT_MAX
916 static unsigned map_pid_to_cmdline
[PID_MAX_DEFAULT
+1];
917 static unsigned map_cmdline_to_pid
[SAVED_CMDLINES
];
918 static char saved_cmdlines
[SAVED_CMDLINES
][TASK_COMM_LEN
];
919 static int cmdline_idx
;
920 static arch_spinlock_t trace_cmdline_lock
= __ARCH_SPIN_LOCK_UNLOCKED
;
922 /* temporary disable recording */
923 static atomic_t trace_record_cmdline_disabled __read_mostly
;
925 static void trace_init_cmdlines(void)
927 memset(&map_pid_to_cmdline
, NO_CMDLINE_MAP
, sizeof(map_pid_to_cmdline
));
928 memset(&map_cmdline_to_pid
, NO_CMDLINE_MAP
, sizeof(map_cmdline_to_pid
));
932 int is_tracing_stopped(void)
934 return trace_stop_count
;
938 * ftrace_off_permanent - disable all ftrace code permanently
940 * This should only be called when a serious anomally has
941 * been detected. This will turn off the function tracing,
942 * ring buffers, and other tracing utilites. It takes no
943 * locks and can be called from any context.
945 void ftrace_off_permanent(void)
947 tracing_disabled
= 1;
949 tracing_off_permanent();
953 * tracing_start - quick start of the tracer
955 * If tracing is enabled but was stopped by tracing_stop,
956 * this will start the tracer back up.
958 void tracing_start(void)
960 struct ring_buffer
*buffer
;
963 if (tracing_disabled
)
966 raw_spin_lock_irqsave(&tracing_start_lock
, flags
);
967 if (--trace_stop_count
) {
968 if (trace_stop_count
< 0) {
969 /* Someone screwed up their debugging */
971 trace_stop_count
= 0;
976 /* Prevent the buffers from switching */
977 arch_spin_lock(&ftrace_max_lock
);
979 buffer
= global_trace
.buffer
;
981 ring_buffer_record_enable(buffer
);
983 buffer
= max_tr
.buffer
;
985 ring_buffer_record_enable(buffer
);
987 arch_spin_unlock(&ftrace_max_lock
);
991 raw_spin_unlock_irqrestore(&tracing_start_lock
, flags
);
995 * tracing_stop - quick stop of the tracer
997 * Light weight way to stop tracing. Use in conjunction with
1000 void tracing_stop(void)
1002 struct ring_buffer
*buffer
;
1003 unsigned long flags
;
1006 raw_spin_lock_irqsave(&tracing_start_lock
, flags
);
1007 if (trace_stop_count
++)
1010 /* Prevent the buffers from switching */
1011 arch_spin_lock(&ftrace_max_lock
);
1013 buffer
= global_trace
.buffer
;
1015 ring_buffer_record_disable(buffer
);
1017 buffer
= max_tr
.buffer
;
1019 ring_buffer_record_disable(buffer
);
1021 arch_spin_unlock(&ftrace_max_lock
);
1024 raw_spin_unlock_irqrestore(&tracing_start_lock
, flags
);
1027 void trace_stop_cmdline_recording(void);
1029 static void trace_save_cmdline(struct task_struct
*tsk
)
1033 if (!tsk
->pid
|| unlikely(tsk
->pid
> PID_MAX_DEFAULT
))
1037 * It's not the end of the world if we don't get
1038 * the lock, but we also don't want to spin
1039 * nor do we want to disable interrupts,
1040 * so if we miss here, then better luck next time.
1042 if (!arch_spin_trylock(&trace_cmdline_lock
))
1045 idx
= map_pid_to_cmdline
[tsk
->pid
];
1046 if (idx
== NO_CMDLINE_MAP
) {
1047 idx
= (cmdline_idx
+ 1) % SAVED_CMDLINES
;
1050 * Check whether the cmdline buffer at idx has a pid
1051 * mapped. We are going to overwrite that entry so we
1052 * need to clear the map_pid_to_cmdline. Otherwise we
1053 * would read the new comm for the old pid.
1055 pid
= map_cmdline_to_pid
[idx
];
1056 if (pid
!= NO_CMDLINE_MAP
)
1057 map_pid_to_cmdline
[pid
] = NO_CMDLINE_MAP
;
1059 map_cmdline_to_pid
[idx
] = tsk
->pid
;
1060 map_pid_to_cmdline
[tsk
->pid
] = idx
;
1065 memcpy(&saved_cmdlines
[idx
], tsk
->comm
, TASK_COMM_LEN
);
1067 arch_spin_unlock(&trace_cmdline_lock
);
1070 void trace_find_cmdline(int pid
, char comm
[])
1075 strcpy(comm
, "<idle>");
1079 if (WARN_ON_ONCE(pid
< 0)) {
1080 strcpy(comm
, "<XXX>");
1084 if (pid
> PID_MAX_DEFAULT
) {
1085 strcpy(comm
, "<...>");
1090 arch_spin_lock(&trace_cmdline_lock
);
1091 map
= map_pid_to_cmdline
[pid
];
1092 if (map
!= NO_CMDLINE_MAP
)
1093 strcpy(comm
, saved_cmdlines
[map
]);
1095 strcpy(comm
, "<...>");
1097 arch_spin_unlock(&trace_cmdline_lock
);
1101 void tracing_record_cmdline(struct task_struct
*tsk
)
1103 if (atomic_read(&trace_record_cmdline_disabled
) || !tracer_enabled
||
1107 trace_save_cmdline(tsk
);
1111 tracing_generic_entry_update(struct trace_entry
*entry
, unsigned long flags
,
1114 struct task_struct
*tsk
= current
;
1116 entry
->preempt_count
= pc
& 0xff;
1117 entry
->pid
= (tsk
) ? tsk
->pid
: 0;
1120 #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
1121 (irqs_disabled_flags(flags
) ? TRACE_FLAG_IRQS_OFF
: 0) |
1123 TRACE_FLAG_IRQS_NOSUPPORT
|
1125 ((pc
& HARDIRQ_MASK
) ? TRACE_FLAG_HARDIRQ
: 0) |
1126 ((pc
& SOFTIRQ_MASK
) ? TRACE_FLAG_SOFTIRQ
: 0) |
1127 (need_resched() ? TRACE_FLAG_NEED_RESCHED
: 0);
1129 EXPORT_SYMBOL_GPL(tracing_generic_entry_update
);
1131 struct ring_buffer_event
*
1132 trace_buffer_lock_reserve(struct ring_buffer
*buffer
,
1135 unsigned long flags
, int pc
)
1137 struct ring_buffer_event
*event
;
1139 event
= ring_buffer_lock_reserve(buffer
, len
);
1140 if (event
!= NULL
) {
1141 struct trace_entry
*ent
= ring_buffer_event_data(event
);
1143 tracing_generic_entry_update(ent
, flags
, pc
);
1151 __trace_buffer_unlock_commit(struct ring_buffer
*buffer
,
1152 struct ring_buffer_event
*event
,
1153 unsigned long flags
, int pc
,
1156 ring_buffer_unlock_commit(buffer
, event
);
1158 ftrace_trace_stack(buffer
, flags
, 6, pc
);
1159 ftrace_trace_userstack(buffer
, flags
, pc
);
1165 void trace_buffer_unlock_commit(struct ring_buffer
*buffer
,
1166 struct ring_buffer_event
*event
,
1167 unsigned long flags
, int pc
)
1169 __trace_buffer_unlock_commit(buffer
, event
, flags
, pc
, 1);
1172 struct ring_buffer_event
*
1173 trace_current_buffer_lock_reserve(struct ring_buffer
**current_rb
,
1174 int type
, unsigned long len
,
1175 unsigned long flags
, int pc
)
1177 *current_rb
= global_trace
.buffer
;
1178 return trace_buffer_lock_reserve(*current_rb
,
1179 type
, len
, flags
, pc
);
1181 EXPORT_SYMBOL_GPL(trace_current_buffer_lock_reserve
);
1183 void trace_current_buffer_unlock_commit(struct ring_buffer
*buffer
,
1184 struct ring_buffer_event
*event
,
1185 unsigned long flags
, int pc
)
1187 __trace_buffer_unlock_commit(buffer
, event
, flags
, pc
, 1);
1189 EXPORT_SYMBOL_GPL(trace_current_buffer_unlock_commit
);
1191 void trace_nowake_buffer_unlock_commit(struct ring_buffer
*buffer
,
1192 struct ring_buffer_event
*event
,
1193 unsigned long flags
, int pc
)
1195 __trace_buffer_unlock_commit(buffer
, event
, flags
, pc
, 0);
1197 EXPORT_SYMBOL_GPL(trace_nowake_buffer_unlock_commit
);
1199 void trace_nowake_buffer_unlock_commit_regs(struct ring_buffer
*buffer
,
1200 struct ring_buffer_event
*event
,
1201 unsigned long flags
, int pc
,
1202 struct pt_regs
*regs
)
1204 ring_buffer_unlock_commit(buffer
, event
);
1206 ftrace_trace_stack_regs(buffer
, flags
, 0, pc
, regs
);
1207 ftrace_trace_userstack(buffer
, flags
, pc
);
1209 EXPORT_SYMBOL_GPL(trace_nowake_buffer_unlock_commit_regs
);
1211 void trace_current_buffer_discard_commit(struct ring_buffer
*buffer
,
1212 struct ring_buffer_event
*event
)
1214 ring_buffer_discard_commit(buffer
, event
);
1216 EXPORT_SYMBOL_GPL(trace_current_buffer_discard_commit
);
1219 trace_function(struct trace_array
*tr
,
1220 unsigned long ip
, unsigned long parent_ip
, unsigned long flags
,
1223 struct ftrace_event_call
*call
= &event_function
;
1224 struct ring_buffer
*buffer
= tr
->buffer
;
1225 struct ring_buffer_event
*event
;
1226 struct ftrace_entry
*entry
;
1228 /* If we are reading the ring buffer, don't trace */
1229 if (unlikely(__this_cpu_read(ftrace_cpu_disabled
)))
1232 event
= trace_buffer_lock_reserve(buffer
, TRACE_FN
, sizeof(*entry
),
1236 entry
= ring_buffer_event_data(event
);
1238 entry
->parent_ip
= parent_ip
;
1240 if (!filter_check_discard(call
, entry
, buffer
, event
))
1241 ring_buffer_unlock_commit(buffer
, event
);
1245 ftrace(struct trace_array
*tr
, struct trace_array_cpu
*data
,
1246 unsigned long ip
, unsigned long parent_ip
, unsigned long flags
,
1249 if (likely(!atomic_read(&data
->disabled
)))
1250 trace_function(tr
, ip
, parent_ip
, flags
, pc
);
1253 #ifdef CONFIG_STACKTRACE
1255 #define FTRACE_STACK_MAX_ENTRIES (PAGE_SIZE / sizeof(unsigned long))
1256 struct ftrace_stack
{
1257 unsigned long calls
[FTRACE_STACK_MAX_ENTRIES
];
1260 static DEFINE_PER_CPU(struct ftrace_stack
, ftrace_stack
);
1261 static DEFINE_PER_CPU(int, ftrace_stack_reserve
);
1263 static void __ftrace_trace_stack(struct ring_buffer
*buffer
,
1264 unsigned long flags
,
1265 int skip
, int pc
, struct pt_regs
*regs
)
1267 struct ftrace_event_call
*call
= &event_kernel_stack
;
1268 struct ring_buffer_event
*event
;
1269 struct stack_entry
*entry
;
1270 struct stack_trace trace
;
1272 int size
= FTRACE_STACK_ENTRIES
;
1274 trace
.nr_entries
= 0;
1278 * Since events can happen in NMIs there's no safe way to
1279 * use the per cpu ftrace_stacks. We reserve it and if an interrupt
1280 * or NMI comes in, it will just have to use the default
1281 * FTRACE_STACK_SIZE.
1283 preempt_disable_notrace();
1285 use_stack
= ++__get_cpu_var(ftrace_stack_reserve
);
1287 * We don't need any atomic variables, just a barrier.
1288 * If an interrupt comes in, we don't care, because it would
1289 * have exited and put the counter back to what we want.
1290 * We just need a barrier to keep gcc from moving things
1294 if (use_stack
== 1) {
1295 trace
.entries
= &__get_cpu_var(ftrace_stack
).calls
[0];
1296 trace
.max_entries
= FTRACE_STACK_MAX_ENTRIES
;
1299 save_stack_trace_regs(regs
, &trace
);
1301 save_stack_trace(&trace
);
1303 if (trace
.nr_entries
> size
)
1304 size
= trace
.nr_entries
;
1306 /* From now on, use_stack is a boolean */
1309 size
*= sizeof(unsigned long);
1311 event
= trace_buffer_lock_reserve(buffer
, TRACE_STACK
,
1312 sizeof(*entry
) + size
, flags
, pc
);
1315 entry
= ring_buffer_event_data(event
);
1317 memset(&entry
->caller
, 0, size
);
1320 memcpy(&entry
->caller
, trace
.entries
,
1321 trace
.nr_entries
* sizeof(unsigned long));
1323 trace
.max_entries
= FTRACE_STACK_ENTRIES
;
1324 trace
.entries
= entry
->caller
;
1326 save_stack_trace_regs(regs
, &trace
);
1328 save_stack_trace(&trace
);
1331 entry
->size
= trace
.nr_entries
;
1333 if (!filter_check_discard(call
, entry
, buffer
, event
))
1334 ring_buffer_unlock_commit(buffer
, event
);
1337 /* Again, don't let gcc optimize things here */
1339 __get_cpu_var(ftrace_stack_reserve
)--;
1340 preempt_enable_notrace();
1344 void ftrace_trace_stack_regs(struct ring_buffer
*buffer
, unsigned long flags
,
1345 int skip
, int pc
, struct pt_regs
*regs
)
1347 if (!(trace_flags
& TRACE_ITER_STACKTRACE
))
1350 __ftrace_trace_stack(buffer
, flags
, skip
, pc
, regs
);
1353 void ftrace_trace_stack(struct ring_buffer
*buffer
, unsigned long flags
,
1356 if (!(trace_flags
& TRACE_ITER_STACKTRACE
))
1359 __ftrace_trace_stack(buffer
, flags
, skip
, pc
, NULL
);
1362 void __trace_stack(struct trace_array
*tr
, unsigned long flags
, int skip
,
1365 __ftrace_trace_stack(tr
->buffer
, flags
, skip
, pc
, NULL
);
1369 * trace_dump_stack - record a stack back trace in the trace buffer
1371 void trace_dump_stack(void)
1373 unsigned long flags
;
1375 if (tracing_disabled
|| tracing_selftest_running
)
1378 local_save_flags(flags
);
1380 /* skipping 3 traces, seems to get us at the caller of this function */
1381 __ftrace_trace_stack(global_trace
.buffer
, flags
, 3, preempt_count(), NULL
);
1384 static DEFINE_PER_CPU(int, user_stack_count
);
1387 ftrace_trace_userstack(struct ring_buffer
*buffer
, unsigned long flags
, int pc
)
1389 struct ftrace_event_call
*call
= &event_user_stack
;
1390 struct ring_buffer_event
*event
;
1391 struct userstack_entry
*entry
;
1392 struct stack_trace trace
;
1394 if (!(trace_flags
& TRACE_ITER_USERSTACKTRACE
))
1398 * NMIs can not handle page faults, even with fix ups.
1399 * The save user stack can (and often does) fault.
1401 if (unlikely(in_nmi()))
1405 * prevent recursion, since the user stack tracing may
1406 * trigger other kernel events.
1409 if (__this_cpu_read(user_stack_count
))
1412 __this_cpu_inc(user_stack_count
);
1414 event
= trace_buffer_lock_reserve(buffer
, TRACE_USER_STACK
,
1415 sizeof(*entry
), flags
, pc
);
1417 goto out_drop_count
;
1418 entry
= ring_buffer_event_data(event
);
1420 entry
->tgid
= current
->tgid
;
1421 memset(&entry
->caller
, 0, sizeof(entry
->caller
));
1423 trace
.nr_entries
= 0;
1424 trace
.max_entries
= FTRACE_STACK_ENTRIES
;
1426 trace
.entries
= entry
->caller
;
1428 save_stack_trace_user(&trace
);
1429 if (!filter_check_discard(call
, entry
, buffer
, event
))
1430 ring_buffer_unlock_commit(buffer
, event
);
1433 __this_cpu_dec(user_stack_count
);
1439 static void __trace_userstack(struct trace_array
*tr
, unsigned long flags
)
1441 ftrace_trace_userstack(tr
, flags
, preempt_count());
1445 #endif /* CONFIG_STACKTRACE */
1448 * trace_vbprintk - write binary msg to tracing buffer
1451 int trace_vbprintk(unsigned long ip
, const char *fmt
, va_list args
)
1453 static arch_spinlock_t trace_buf_lock
=
1454 (arch_spinlock_t
)__ARCH_SPIN_LOCK_UNLOCKED
;
1455 static u32 trace_buf
[TRACE_BUF_SIZE
];
1457 struct ftrace_event_call
*call
= &event_bprint
;
1458 struct ring_buffer_event
*event
;
1459 struct ring_buffer
*buffer
;
1460 struct trace_array
*tr
= &global_trace
;
1461 struct trace_array_cpu
*data
;
1462 struct bprint_entry
*entry
;
1463 unsigned long flags
;
1465 int cpu
, len
= 0, size
, pc
;
1467 if (unlikely(tracing_selftest_running
|| tracing_disabled
))
1470 /* Don't pollute graph traces with trace_vprintk internals */
1471 pause_graph_tracing();
1473 pc
= preempt_count();
1474 preempt_disable_notrace();
1475 cpu
= raw_smp_processor_id();
1476 data
= tr
->data
[cpu
];
1478 disable
= atomic_inc_return(&data
->disabled
);
1479 if (unlikely(disable
!= 1))
1482 /* Lockdep uses trace_printk for lock tracing */
1483 local_irq_save(flags
);
1484 arch_spin_lock(&trace_buf_lock
);
1485 len
= vbin_printf(trace_buf
, TRACE_BUF_SIZE
, fmt
, args
);
1487 if (len
> TRACE_BUF_SIZE
|| len
< 0)
1490 size
= sizeof(*entry
) + sizeof(u32
) * len
;
1491 buffer
= tr
->buffer
;
1492 event
= trace_buffer_lock_reserve(buffer
, TRACE_BPRINT
, size
,
1496 entry
= ring_buffer_event_data(event
);
1500 memcpy(entry
->buf
, trace_buf
, sizeof(u32
) * len
);
1501 if (!filter_check_discard(call
, entry
, buffer
, event
)) {
1502 ring_buffer_unlock_commit(buffer
, event
);
1503 ftrace_trace_stack(buffer
, flags
, 6, pc
);
1507 arch_spin_unlock(&trace_buf_lock
);
1508 local_irq_restore(flags
);
1511 atomic_dec_return(&data
->disabled
);
1512 preempt_enable_notrace();
1513 unpause_graph_tracing();
1517 EXPORT_SYMBOL_GPL(trace_vbprintk
);
1519 int trace_array_printk(struct trace_array
*tr
,
1520 unsigned long ip
, const char *fmt
, ...)
1525 if (!(trace_flags
& TRACE_ITER_PRINTK
))
1529 ret
= trace_array_vprintk(tr
, ip
, fmt
, ap
);
1534 int trace_array_vprintk(struct trace_array
*tr
,
1535 unsigned long ip
, const char *fmt
, va_list args
)
1537 static arch_spinlock_t trace_buf_lock
= __ARCH_SPIN_LOCK_UNLOCKED
;
1538 static char trace_buf
[TRACE_BUF_SIZE
];
1540 struct ftrace_event_call
*call
= &event_print
;
1541 struct ring_buffer_event
*event
;
1542 struct ring_buffer
*buffer
;
1543 struct trace_array_cpu
*data
;
1544 int cpu
, len
= 0, size
, pc
;
1545 struct print_entry
*entry
;
1546 unsigned long irq_flags
;
1549 if (tracing_disabled
|| tracing_selftest_running
)
1552 pc
= preempt_count();
1553 preempt_disable_notrace();
1554 cpu
= raw_smp_processor_id();
1555 data
= tr
->data
[cpu
];
1557 disable
= atomic_inc_return(&data
->disabled
);
1558 if (unlikely(disable
!= 1))
1561 pause_graph_tracing();
1562 raw_local_irq_save(irq_flags
);
1563 arch_spin_lock(&trace_buf_lock
);
1564 len
= vsnprintf(trace_buf
, TRACE_BUF_SIZE
, fmt
, args
);
1566 size
= sizeof(*entry
) + len
+ 1;
1567 buffer
= tr
->buffer
;
1568 event
= trace_buffer_lock_reserve(buffer
, TRACE_PRINT
, size
,
1572 entry
= ring_buffer_event_data(event
);
1575 memcpy(&entry
->buf
, trace_buf
, len
);
1576 entry
->buf
[len
] = '\0';
1577 if (!filter_check_discard(call
, entry
, buffer
, event
)) {
1578 ring_buffer_unlock_commit(buffer
, event
);
1579 ftrace_trace_stack(buffer
, irq_flags
, 6, pc
);
1583 arch_spin_unlock(&trace_buf_lock
);
1584 raw_local_irq_restore(irq_flags
);
1585 unpause_graph_tracing();
1587 atomic_dec_return(&data
->disabled
);
1588 preempt_enable_notrace();
1593 int trace_vprintk(unsigned long ip
, const char *fmt
, va_list args
)
1595 return trace_array_vprintk(&global_trace
, ip
, fmt
, args
);
1597 EXPORT_SYMBOL_GPL(trace_vprintk
);
1599 static void trace_iterator_increment(struct trace_iterator
*iter
)
1601 /* Don't allow ftrace to trace into the ring buffers */
1602 ftrace_disable_cpu();
1605 if (iter
->buffer_iter
[iter
->cpu
])
1606 ring_buffer_read(iter
->buffer_iter
[iter
->cpu
], NULL
);
1608 ftrace_enable_cpu();
1611 static struct trace_entry
*
1612 peek_next_entry(struct trace_iterator
*iter
, int cpu
, u64
*ts
,
1613 unsigned long *lost_events
)
1615 struct ring_buffer_event
*event
;
1616 struct ring_buffer_iter
*buf_iter
= iter
->buffer_iter
[cpu
];
1618 /* Don't allow ftrace to trace into the ring buffers */
1619 ftrace_disable_cpu();
1622 event
= ring_buffer_iter_peek(buf_iter
, ts
);
1624 event
= ring_buffer_peek(iter
->tr
->buffer
, cpu
, ts
,
1627 ftrace_enable_cpu();
1630 iter
->ent_size
= ring_buffer_event_length(event
);
1631 return ring_buffer_event_data(event
);
1637 static struct trace_entry
*
1638 __find_next_entry(struct trace_iterator
*iter
, int *ent_cpu
,
1639 unsigned long *missing_events
, u64
*ent_ts
)
1641 struct ring_buffer
*buffer
= iter
->tr
->buffer
;
1642 struct trace_entry
*ent
, *next
= NULL
;
1643 unsigned long lost_events
= 0, next_lost
= 0;
1644 int cpu_file
= iter
->cpu_file
;
1645 u64 next_ts
= 0, ts
;
1651 * If we are in a per_cpu trace file, don't bother by iterating over
1652 * all cpu and peek directly.
1654 if (cpu_file
> TRACE_PIPE_ALL_CPU
) {
1655 if (ring_buffer_empty_cpu(buffer
, cpu_file
))
1657 ent
= peek_next_entry(iter
, cpu_file
, ent_ts
, missing_events
);
1659 *ent_cpu
= cpu_file
;
1664 for_each_tracing_cpu(cpu
) {
1666 if (ring_buffer_empty_cpu(buffer
, cpu
))
1669 ent
= peek_next_entry(iter
, cpu
, &ts
, &lost_events
);
1672 * Pick the entry with the smallest timestamp:
1674 if (ent
&& (!next
|| ts
< next_ts
)) {
1678 next_lost
= lost_events
;
1679 next_size
= iter
->ent_size
;
1683 iter
->ent_size
= next_size
;
1686 *ent_cpu
= next_cpu
;
1692 *missing_events
= next_lost
;
1697 /* Find the next real entry, without updating the iterator itself */
1698 struct trace_entry
*trace_find_next_entry(struct trace_iterator
*iter
,
1699 int *ent_cpu
, u64
*ent_ts
)
1701 return __find_next_entry(iter
, ent_cpu
, NULL
, ent_ts
);
1704 /* Find the next real entry, and increment the iterator to the next entry */
1705 void *trace_find_next_entry_inc(struct trace_iterator
*iter
)
1707 iter
->ent
= __find_next_entry(iter
, &iter
->cpu
,
1708 &iter
->lost_events
, &iter
->ts
);
1711 trace_iterator_increment(iter
);
1713 return iter
->ent
? iter
: NULL
;
1716 static void trace_consume(struct trace_iterator
*iter
)
1718 /* Don't allow ftrace to trace into the ring buffers */
1719 ftrace_disable_cpu();
1720 ring_buffer_consume(iter
->tr
->buffer
, iter
->cpu
, &iter
->ts
,
1721 &iter
->lost_events
);
1722 ftrace_enable_cpu();
1725 static void *s_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
1727 struct trace_iterator
*iter
= m
->private;
1731 WARN_ON_ONCE(iter
->leftover
);
1735 /* can't go backwards */
1740 ent
= trace_find_next_entry_inc(iter
);
1744 while (ent
&& iter
->idx
< i
)
1745 ent
= trace_find_next_entry_inc(iter
);
1752 void tracing_iter_reset(struct trace_iterator
*iter
, int cpu
)
1754 struct trace_array
*tr
= iter
->tr
;
1755 struct ring_buffer_event
*event
;
1756 struct ring_buffer_iter
*buf_iter
;
1757 unsigned long entries
= 0;
1760 tr
->data
[cpu
]->skipped_entries
= 0;
1762 if (!iter
->buffer_iter
[cpu
])
1765 buf_iter
= iter
->buffer_iter
[cpu
];
1766 ring_buffer_iter_reset(buf_iter
);
1769 * We could have the case with the max latency tracers
1770 * that a reset never took place on a cpu. This is evident
1771 * by the timestamp being before the start of the buffer.
1773 while ((event
= ring_buffer_iter_peek(buf_iter
, &ts
))) {
1774 if (ts
>= iter
->tr
->time_start
)
1777 ring_buffer_read(buf_iter
, NULL
);
1780 tr
->data
[cpu
]->skipped_entries
= entries
;
1784 * The current tracer is copied to avoid a global locking
1787 static void *s_start(struct seq_file
*m
, loff_t
*pos
)
1789 struct trace_iterator
*iter
= m
->private;
1790 static struct tracer
*old_tracer
;
1791 int cpu_file
= iter
->cpu_file
;
1796 /* copy the tracer to avoid using a global lock all around */
1797 mutex_lock(&trace_types_lock
);
1798 if (unlikely(old_tracer
!= current_trace
&& current_trace
)) {
1799 old_tracer
= current_trace
;
1800 *iter
->trace
= *current_trace
;
1802 mutex_unlock(&trace_types_lock
);
1804 atomic_inc(&trace_record_cmdline_disabled
);
1806 if (*pos
!= iter
->pos
) {
1811 ftrace_disable_cpu();
1813 if (cpu_file
== TRACE_PIPE_ALL_CPU
) {
1814 for_each_tracing_cpu(cpu
)
1815 tracing_iter_reset(iter
, cpu
);
1817 tracing_iter_reset(iter
, cpu_file
);
1819 ftrace_enable_cpu();
1822 for (p
= iter
; p
&& l
< *pos
; p
= s_next(m
, p
, &l
))
1827 * If we overflowed the seq_file before, then we want
1828 * to just reuse the trace_seq buffer again.
1834 p
= s_next(m
, p
, &l
);
1838 trace_event_read_lock();
1839 trace_access_lock(cpu_file
);
1843 static void s_stop(struct seq_file
*m
, void *p
)
1845 struct trace_iterator
*iter
= m
->private;
1847 atomic_dec(&trace_record_cmdline_disabled
);
1848 trace_access_unlock(iter
->cpu_file
);
1849 trace_event_read_unlock();
1853 get_total_entries(struct trace_array
*tr
, unsigned long *total
, unsigned long *entries
)
1855 unsigned long count
;
1861 for_each_tracing_cpu(cpu
) {
1862 count
= ring_buffer_entries_cpu(tr
->buffer
, cpu
);
1864 * If this buffer has skipped entries, then we hold all
1865 * entries for the trace and we need to ignore the
1866 * ones before the time stamp.
1868 if (tr
->data
[cpu
]->skipped_entries
) {
1869 count
-= tr
->data
[cpu
]->skipped_entries
;
1870 /* total is the same as the entries */
1874 ring_buffer_overrun_cpu(tr
->buffer
, cpu
);
1879 static void print_lat_help_header(struct seq_file
*m
)
1881 seq_puts(m
, "# _------=> CPU# \n");
1882 seq_puts(m
, "# / _-----=> irqs-off \n");
1883 seq_puts(m
, "# | / _----=> need-resched \n");
1884 seq_puts(m
, "# || / _---=> hardirq/softirq \n");
1885 seq_puts(m
, "# ||| / _--=> preempt-depth \n");
1886 seq_puts(m
, "# |||| / delay \n");
1887 seq_puts(m
, "# cmd pid ||||| time | caller \n");
1888 seq_puts(m
, "# \\ / ||||| \\ | / \n");
1891 static void print_event_info(struct trace_array
*tr
, struct seq_file
*m
)
1893 unsigned long total
;
1894 unsigned long entries
;
1896 get_total_entries(tr
, &total
, &entries
);
1897 seq_printf(m
, "# entries-in-buffer/entries-written: %lu/%lu #P:%d\n",
1898 entries
, total
, num_online_cpus());
1902 static void print_func_help_header(struct trace_array
*tr
, struct seq_file
*m
)
1904 print_event_info(tr
, m
);
1905 seq_puts(m
, "# TASK-PID CPU# TIMESTAMP FUNCTION\n");
1906 seq_puts(m
, "# | | | | |\n");
1909 static void print_func_help_header_irq(struct trace_array
*tr
, struct seq_file
*m
)
1911 print_event_info(tr
, m
);
1912 seq_puts(m
, "# _-----=> irqs-off\n");
1913 seq_puts(m
, "# / _----=> need-resched\n");
1914 seq_puts(m
, "# | / _---=> hardirq/softirq\n");
1915 seq_puts(m
, "# || / _--=> preempt-depth\n");
1916 seq_puts(m
, "# ||| / delay\n");
1917 seq_puts(m
, "# TASK-PID CPU# |||| TIMESTAMP FUNCTION\n");
1918 seq_puts(m
, "# | | | |||| | |\n");
1922 print_trace_header(struct seq_file
*m
, struct trace_iterator
*iter
)
1924 unsigned long sym_flags
= (trace_flags
& TRACE_ITER_SYM_MASK
);
1925 struct trace_array
*tr
= iter
->tr
;
1926 struct trace_array_cpu
*data
= tr
->data
[tr
->cpu
];
1927 struct tracer
*type
= current_trace
;
1928 unsigned long entries
;
1929 unsigned long total
;
1930 const char *name
= "preemption";
1935 get_total_entries(tr
, &total
, &entries
);
1937 seq_printf(m
, "# %s latency trace v1.1.5 on %s\n",
1939 seq_puts(m
, "# -----------------------------------"
1940 "---------------------------------\n");
1941 seq_printf(m
, "# latency: %lu us, #%lu/%lu, CPU#%d |"
1942 " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
1943 nsecs_to_usecs(data
->saved_latency
),
1947 #if defined(CONFIG_PREEMPT_NONE)
1949 #elif defined(CONFIG_PREEMPT_VOLUNTARY)
1951 #elif defined(CONFIG_PREEMPT)
1956 /* These are reserved for later use */
1959 seq_printf(m
, " #P:%d)\n", num_online_cpus());
1963 seq_puts(m
, "# -----------------\n");
1964 seq_printf(m
, "# | task: %.16s-%d "
1965 "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
1966 data
->comm
, data
->pid
, data
->uid
, data
->nice
,
1967 data
->policy
, data
->rt_priority
);
1968 seq_puts(m
, "# -----------------\n");
1970 if (data
->critical_start
) {
1971 seq_puts(m
, "# => started at: ");
1972 seq_print_ip_sym(&iter
->seq
, data
->critical_start
, sym_flags
);
1973 trace_print_seq(m
, &iter
->seq
);
1974 seq_puts(m
, "\n# => ended at: ");
1975 seq_print_ip_sym(&iter
->seq
, data
->critical_end
, sym_flags
);
1976 trace_print_seq(m
, &iter
->seq
);
1977 seq_puts(m
, "\n#\n");
1983 static void test_cpu_buff_start(struct trace_iterator
*iter
)
1985 struct trace_seq
*s
= &iter
->seq
;
1987 if (!(trace_flags
& TRACE_ITER_ANNOTATE
))
1990 if (!(iter
->iter_flags
& TRACE_FILE_ANNOTATE
))
1993 if (cpumask_test_cpu(iter
->cpu
, iter
->started
))
1996 if (iter
->tr
->data
[iter
->cpu
]->skipped_entries
)
1999 cpumask_set_cpu(iter
->cpu
, iter
->started
);
2001 /* Don't print started cpu buffer for the first entry of the trace */
2003 trace_seq_printf(s
, "##### CPU %u buffer started ####\n",
2007 static enum print_line_t
print_trace_fmt(struct trace_iterator
*iter
)
2009 struct trace_seq
*s
= &iter
->seq
;
2010 unsigned long sym_flags
= (trace_flags
& TRACE_ITER_SYM_MASK
);
2011 struct trace_entry
*entry
;
2012 struct trace_event
*event
;
2016 test_cpu_buff_start(iter
);
2018 event
= ftrace_find_event(entry
->type
);
2020 if (trace_flags
& TRACE_ITER_CONTEXT_INFO
) {
2021 if (iter
->iter_flags
& TRACE_FILE_LAT_FMT
) {
2022 if (!trace_print_lat_context(iter
))
2025 if (!trace_print_context(iter
))
2031 return event
->funcs
->trace(iter
, sym_flags
, event
);
2033 if (!trace_seq_printf(s
, "Unknown type %d\n", entry
->type
))
2036 return TRACE_TYPE_HANDLED
;
2038 return TRACE_TYPE_PARTIAL_LINE
;
2041 static enum print_line_t
print_raw_fmt(struct trace_iterator
*iter
)
2043 struct trace_seq
*s
= &iter
->seq
;
2044 struct trace_entry
*entry
;
2045 struct trace_event
*event
;
2049 if (trace_flags
& TRACE_ITER_CONTEXT_INFO
) {
2050 if (!trace_seq_printf(s
, "%d %d %llu ",
2051 entry
->pid
, iter
->cpu
, iter
->ts
))
2055 event
= ftrace_find_event(entry
->type
);
2057 return event
->funcs
->raw(iter
, 0, event
);
2059 if (!trace_seq_printf(s
, "%d ?\n", entry
->type
))
2062 return TRACE_TYPE_HANDLED
;
2064 return TRACE_TYPE_PARTIAL_LINE
;
2067 static enum print_line_t
print_hex_fmt(struct trace_iterator
*iter
)
2069 struct trace_seq
*s
= &iter
->seq
;
2070 unsigned char newline
= '\n';
2071 struct trace_entry
*entry
;
2072 struct trace_event
*event
;
2076 if (trace_flags
& TRACE_ITER_CONTEXT_INFO
) {
2077 SEQ_PUT_HEX_FIELD_RET(s
, entry
->pid
);
2078 SEQ_PUT_HEX_FIELD_RET(s
, iter
->cpu
);
2079 SEQ_PUT_HEX_FIELD_RET(s
, iter
->ts
);
2082 event
= ftrace_find_event(entry
->type
);
2084 enum print_line_t ret
= event
->funcs
->hex(iter
, 0, event
);
2085 if (ret
!= TRACE_TYPE_HANDLED
)
2089 SEQ_PUT_FIELD_RET(s
, newline
);
2091 return TRACE_TYPE_HANDLED
;
2094 static enum print_line_t
print_bin_fmt(struct trace_iterator
*iter
)
2096 struct trace_seq
*s
= &iter
->seq
;
2097 struct trace_entry
*entry
;
2098 struct trace_event
*event
;
2102 if (trace_flags
& TRACE_ITER_CONTEXT_INFO
) {
2103 SEQ_PUT_FIELD_RET(s
, entry
->pid
);
2104 SEQ_PUT_FIELD_RET(s
, iter
->cpu
);
2105 SEQ_PUT_FIELD_RET(s
, iter
->ts
);
2108 event
= ftrace_find_event(entry
->type
);
2109 return event
? event
->funcs
->binary(iter
, 0, event
) :
2113 int trace_empty(struct trace_iterator
*iter
)
2117 /* If we are looking at one CPU buffer, only check that one */
2118 if (iter
->cpu_file
!= TRACE_PIPE_ALL_CPU
) {
2119 cpu
= iter
->cpu_file
;
2120 if (iter
->buffer_iter
[cpu
]) {
2121 if (!ring_buffer_iter_empty(iter
->buffer_iter
[cpu
]))
2124 if (!ring_buffer_empty_cpu(iter
->tr
->buffer
, cpu
))
2130 for_each_tracing_cpu(cpu
) {
2131 if (iter
->buffer_iter
[cpu
]) {
2132 if (!ring_buffer_iter_empty(iter
->buffer_iter
[cpu
]))
2135 if (!ring_buffer_empty_cpu(iter
->tr
->buffer
, cpu
))
2143 /* Called with trace_event_read_lock() held. */
2144 enum print_line_t
print_trace_line(struct trace_iterator
*iter
)
2146 enum print_line_t ret
;
2148 if (iter
->lost_events
&&
2149 !trace_seq_printf(&iter
->seq
, "CPU:%d [LOST %lu EVENTS]\n",
2150 iter
->cpu
, iter
->lost_events
))
2151 return TRACE_TYPE_PARTIAL_LINE
;
2153 if (iter
->trace
&& iter
->trace
->print_line
) {
2154 ret
= iter
->trace
->print_line(iter
);
2155 if (ret
!= TRACE_TYPE_UNHANDLED
)
2159 if (iter
->ent
->type
== TRACE_BPRINT
&&
2160 trace_flags
& TRACE_ITER_PRINTK
&&
2161 trace_flags
& TRACE_ITER_PRINTK_MSGONLY
)
2162 return trace_print_bprintk_msg_only(iter
);
2164 if (iter
->ent
->type
== TRACE_PRINT
&&
2165 trace_flags
& TRACE_ITER_PRINTK
&&
2166 trace_flags
& TRACE_ITER_PRINTK_MSGONLY
)
2167 return trace_print_printk_msg_only(iter
);
2169 if (trace_flags
& TRACE_ITER_BIN
)
2170 return print_bin_fmt(iter
);
2172 if (trace_flags
& TRACE_ITER_HEX
)
2173 return print_hex_fmt(iter
);
2175 if (trace_flags
& TRACE_ITER_RAW
)
2176 return print_raw_fmt(iter
);
2178 return print_trace_fmt(iter
);
2181 void trace_latency_header(struct seq_file
*m
)
2183 struct trace_iterator
*iter
= m
->private;
2185 /* print nothing if the buffers are empty */
2186 if (trace_empty(iter
))
2189 if (iter
->iter_flags
& TRACE_FILE_LAT_FMT
)
2190 print_trace_header(m
, iter
);
2192 if (!(trace_flags
& TRACE_ITER_VERBOSE
))
2193 print_lat_help_header(m
);
2196 void trace_default_header(struct seq_file
*m
)
2198 struct trace_iterator
*iter
= m
->private;
2200 if (!(trace_flags
& TRACE_ITER_CONTEXT_INFO
))
2203 if (iter
->iter_flags
& TRACE_FILE_LAT_FMT
) {
2204 /* print nothing if the buffers are empty */
2205 if (trace_empty(iter
))
2207 print_trace_header(m
, iter
);
2208 if (!(trace_flags
& TRACE_ITER_VERBOSE
))
2209 print_lat_help_header(m
);
2211 if (!(trace_flags
& TRACE_ITER_VERBOSE
)) {
2212 if (trace_flags
& TRACE_ITER_IRQ_INFO
)
2213 print_func_help_header_irq(iter
->tr
, m
);
2215 print_func_help_header(iter
->tr
, m
);
2220 static void test_ftrace_alive(struct seq_file
*m
)
2222 if (!ftrace_is_dead())
2224 seq_printf(m
, "# WARNING: FUNCTION TRACING IS CORRUPTED\n");
2225 seq_printf(m
, "# MAY BE MISSING FUNCTION EVENTS\n");
2228 static int s_show(struct seq_file
*m
, void *v
)
2230 struct trace_iterator
*iter
= v
;
2233 if (iter
->ent
== NULL
) {
2235 seq_printf(m
, "# tracer: %s\n", iter
->trace
->name
);
2237 test_ftrace_alive(m
);
2239 if (iter
->trace
&& iter
->trace
->print_header
)
2240 iter
->trace
->print_header(m
);
2242 trace_default_header(m
);
2244 } else if (iter
->leftover
) {
2246 * If we filled the seq_file buffer earlier, we
2247 * want to just show it now.
2249 ret
= trace_print_seq(m
, &iter
->seq
);
2251 /* ret should this time be zero, but you never know */
2252 iter
->leftover
= ret
;
2255 print_trace_line(iter
);
2256 ret
= trace_print_seq(m
, &iter
->seq
);
2258 * If we overflow the seq_file buffer, then it will
2259 * ask us for this data again at start up.
2261 * ret is 0 if seq_file write succeeded.
2264 iter
->leftover
= ret
;
2270 static const struct seq_operations tracer_seq_ops
= {
2277 static struct trace_iterator
*
2278 __tracing_open(struct inode
*inode
, struct file
*file
)
2280 long cpu_file
= (long) inode
->i_private
;
2281 void *fail_ret
= ERR_PTR(-ENOMEM
);
2282 struct trace_iterator
*iter
;
2286 if (tracing_disabled
)
2287 return ERR_PTR(-ENODEV
);
2289 iter
= kzalloc(sizeof(*iter
), GFP_KERNEL
);
2291 return ERR_PTR(-ENOMEM
);
2294 * We make a copy of the current tracer to avoid concurrent
2295 * changes on it while we are reading.
2297 mutex_lock(&trace_types_lock
);
2298 iter
->trace
= kzalloc(sizeof(*iter
->trace
), GFP_KERNEL
);
2303 *iter
->trace
= *current_trace
;
2305 if (!zalloc_cpumask_var(&iter
->started
, GFP_KERNEL
))
2308 if (current_trace
&& current_trace
->print_max
)
2311 iter
->tr
= &global_trace
;
2313 mutex_init(&iter
->mutex
);
2314 iter
->cpu_file
= cpu_file
;
2316 /* Notify the tracer early; before we stop tracing. */
2317 if (iter
->trace
&& iter
->trace
->open
)
2318 iter
->trace
->open(iter
);
2320 /* Annotate start of buffers if we had overruns */
2321 if (ring_buffer_overruns(iter
->tr
->buffer
))
2322 iter
->iter_flags
|= TRACE_FILE_ANNOTATE
;
2324 /* stop the trace while dumping */
2327 if (iter
->cpu_file
== TRACE_PIPE_ALL_CPU
) {
2328 for_each_tracing_cpu(cpu
) {
2329 iter
->buffer_iter
[cpu
] =
2330 ring_buffer_read_prepare(iter
->tr
->buffer
, cpu
);
2332 ring_buffer_read_prepare_sync();
2333 for_each_tracing_cpu(cpu
) {
2334 ring_buffer_read_start(iter
->buffer_iter
[cpu
]);
2335 tracing_iter_reset(iter
, cpu
);
2338 cpu
= iter
->cpu_file
;
2339 iter
->buffer_iter
[cpu
] =
2340 ring_buffer_read_prepare(iter
->tr
->buffer
, cpu
);
2341 ring_buffer_read_prepare_sync();
2342 ring_buffer_read_start(iter
->buffer_iter
[cpu
]);
2343 tracing_iter_reset(iter
, cpu
);
2346 ret
= seq_open(file
, &tracer_seq_ops
);
2348 fail_ret
= ERR_PTR(ret
);
2352 m
= file
->private_data
;
2355 mutex_unlock(&trace_types_lock
);
2360 for_each_tracing_cpu(cpu
) {
2361 if (iter
->buffer_iter
[cpu
])
2362 ring_buffer_read_finish(iter
->buffer_iter
[cpu
]);
2364 free_cpumask_var(iter
->started
);
2367 mutex_unlock(&trace_types_lock
);
2374 int tracing_open_generic(struct inode
*inode
, struct file
*filp
)
2376 if (tracing_disabled
)
2379 filp
->private_data
= inode
->i_private
;
2383 static int tracing_release(struct inode
*inode
, struct file
*file
)
2385 struct seq_file
*m
= file
->private_data
;
2386 struct trace_iterator
*iter
;
2389 if (!(file
->f_mode
& FMODE_READ
))
2394 mutex_lock(&trace_types_lock
);
2395 for_each_tracing_cpu(cpu
) {
2396 if (iter
->buffer_iter
[cpu
])
2397 ring_buffer_read_finish(iter
->buffer_iter
[cpu
]);
2400 if (iter
->trace
&& iter
->trace
->close
)
2401 iter
->trace
->close(iter
);
2403 /* reenable tracing if it was previously enabled */
2405 mutex_unlock(&trace_types_lock
);
2407 seq_release(inode
, file
);
2408 mutex_destroy(&iter
->mutex
);
2409 free_cpumask_var(iter
->started
);
2415 static int tracing_open(struct inode
*inode
, struct file
*file
)
2417 struct trace_iterator
*iter
;
2420 /* If this file was open for write, then erase contents */
2421 if ((file
->f_mode
& FMODE_WRITE
) &&
2422 (file
->f_flags
& O_TRUNC
)) {
2423 long cpu
= (long) inode
->i_private
;
2425 if (cpu
== TRACE_PIPE_ALL_CPU
)
2426 tracing_reset_online_cpus(&global_trace
);
2428 tracing_reset(&global_trace
, cpu
);
2431 if (file
->f_mode
& FMODE_READ
) {
2432 iter
= __tracing_open(inode
, file
);
2434 ret
= PTR_ERR(iter
);
2435 else if (trace_flags
& TRACE_ITER_LATENCY_FMT
)
2436 iter
->iter_flags
|= TRACE_FILE_LAT_FMT
;
2442 t_next(struct seq_file
*m
, void *v
, loff_t
*pos
)
2444 struct tracer
*t
= v
;
2454 static void *t_start(struct seq_file
*m
, loff_t
*pos
)
2459 mutex_lock(&trace_types_lock
);
2460 for (t
= trace_types
; t
&& l
< *pos
; t
= t_next(m
, t
, &l
))
2466 static void t_stop(struct seq_file
*m
, void *p
)
2468 mutex_unlock(&trace_types_lock
);
2471 static int t_show(struct seq_file
*m
, void *v
)
2473 struct tracer
*t
= v
;
2478 seq_printf(m
, "%s", t
->name
);
2487 static const struct seq_operations show_traces_seq_ops
= {
2494 static int show_traces_open(struct inode
*inode
, struct file
*file
)
2496 if (tracing_disabled
)
2499 return seq_open(file
, &show_traces_seq_ops
);
2503 tracing_write_stub(struct file
*filp
, const char __user
*ubuf
,
2504 size_t count
, loff_t
*ppos
)
2509 static loff_t
tracing_seek(struct file
*file
, loff_t offset
, int origin
)
2511 if (file
->f_mode
& FMODE_READ
)
2512 return seq_lseek(file
, offset
, origin
);
2517 static const struct file_operations tracing_fops
= {
2518 .open
= tracing_open
,
2520 .write
= tracing_write_stub
,
2521 .llseek
= tracing_seek
,
2522 .release
= tracing_release
,
2525 static const struct file_operations show_traces_fops
= {
2526 .open
= show_traces_open
,
2528 .release
= seq_release
,
2529 .llseek
= seq_lseek
,
2533 * Only trace on a CPU if the bitmask is set:
2535 static cpumask_var_t tracing_cpumask
;
2538 * The tracer itself will not take this lock, but still we want
2539 * to provide a consistent cpumask to user-space:
2541 static DEFINE_MUTEX(tracing_cpumask_update_lock
);
2544 * Temporary storage for the character representation of the
2545 * CPU bitmask (and one more byte for the newline):
2547 static char mask_str
[NR_CPUS
+ 1];
2550 tracing_cpumask_read(struct file
*filp
, char __user
*ubuf
,
2551 size_t count
, loff_t
*ppos
)
2555 mutex_lock(&tracing_cpumask_update_lock
);
2557 len
= cpumask_scnprintf(mask_str
, count
, tracing_cpumask
);
2558 if (count
- len
< 2) {
2562 len
+= sprintf(mask_str
+ len
, "\n");
2563 count
= simple_read_from_buffer(ubuf
, count
, ppos
, mask_str
, NR_CPUS
+1);
2566 mutex_unlock(&tracing_cpumask_update_lock
);
2572 tracing_cpumask_write(struct file
*filp
, const char __user
*ubuf
,
2573 size_t count
, loff_t
*ppos
)
2576 cpumask_var_t tracing_cpumask_new
;
2578 if (!alloc_cpumask_var(&tracing_cpumask_new
, GFP_KERNEL
))
2581 err
= cpumask_parse_user(ubuf
, count
, tracing_cpumask_new
);
2585 mutex_lock(&tracing_cpumask_update_lock
);
2587 local_irq_disable();
2588 arch_spin_lock(&ftrace_max_lock
);
2589 for_each_tracing_cpu(cpu
) {
2591 * Increase/decrease the disabled counter if we are
2592 * about to flip a bit in the cpumask:
2594 if (cpumask_test_cpu(cpu
, tracing_cpumask
) &&
2595 !cpumask_test_cpu(cpu
, tracing_cpumask_new
)) {
2596 atomic_inc(&global_trace
.data
[cpu
]->disabled
);
2598 if (!cpumask_test_cpu(cpu
, tracing_cpumask
) &&
2599 cpumask_test_cpu(cpu
, tracing_cpumask_new
)) {
2600 atomic_dec(&global_trace
.data
[cpu
]->disabled
);
2603 arch_spin_unlock(&ftrace_max_lock
);
2606 cpumask_copy(tracing_cpumask
, tracing_cpumask_new
);
2608 mutex_unlock(&tracing_cpumask_update_lock
);
2609 free_cpumask_var(tracing_cpumask_new
);
2614 free_cpumask_var(tracing_cpumask_new
);
2619 static const struct file_operations tracing_cpumask_fops
= {
2620 .open
= tracing_open_generic
,
2621 .read
= tracing_cpumask_read
,
2622 .write
= tracing_cpumask_write
,
2623 .llseek
= generic_file_llseek
,
2626 static int tracing_trace_options_show(struct seq_file
*m
, void *v
)
2628 struct tracer_opt
*trace_opts
;
2632 mutex_lock(&trace_types_lock
);
2633 tracer_flags
= current_trace
->flags
->val
;
2634 trace_opts
= current_trace
->flags
->opts
;
2636 for (i
= 0; trace_options
[i
]; i
++) {
2637 if (trace_flags
& (1 << i
))
2638 seq_printf(m
, "%s\n", trace_options
[i
]);
2640 seq_printf(m
, "no%s\n", trace_options
[i
]);
2643 for (i
= 0; trace_opts
[i
].name
; i
++) {
2644 if (tracer_flags
& trace_opts
[i
].bit
)
2645 seq_printf(m
, "%s\n", trace_opts
[i
].name
);
2647 seq_printf(m
, "no%s\n", trace_opts
[i
].name
);
2649 mutex_unlock(&trace_types_lock
);
2654 static int __set_tracer_option(struct tracer
*trace
,
2655 struct tracer_flags
*tracer_flags
,
2656 struct tracer_opt
*opts
, int neg
)
2660 ret
= trace
->set_flag(tracer_flags
->val
, opts
->bit
, !neg
);
2665 tracer_flags
->val
&= ~opts
->bit
;
2667 tracer_flags
->val
|= opts
->bit
;
2671 /* Try to assign a tracer specific option */
2672 static int set_tracer_option(struct tracer
*trace
, char *cmp
, int neg
)
2674 struct tracer_flags
*tracer_flags
= trace
->flags
;
2675 struct tracer_opt
*opts
= NULL
;
2678 for (i
= 0; tracer_flags
->opts
[i
].name
; i
++) {
2679 opts
= &tracer_flags
->opts
[i
];
2681 if (strcmp(cmp
, opts
->name
) == 0)
2682 return __set_tracer_option(trace
, trace
->flags
,
2689 static void set_tracer_flags(unsigned int mask
, int enabled
)
2691 /* do nothing if flag is already set */
2692 if (!!(trace_flags
& mask
) == !!enabled
)
2696 trace_flags
|= mask
;
2698 trace_flags
&= ~mask
;
2700 if (mask
== TRACE_ITER_RECORD_CMD
)
2701 trace_event_enable_cmd_record(enabled
);
2703 if (mask
== TRACE_ITER_OVERWRITE
)
2704 ring_buffer_change_overwrite(global_trace
.buffer
, enabled
);
2708 tracing_trace_options_write(struct file
*filp
, const char __user
*ubuf
,
2709 size_t cnt
, loff_t
*ppos
)
2717 if (cnt
>= sizeof(buf
))
2720 if (copy_from_user(&buf
, ubuf
, cnt
))
2724 cmp
= strstrip(buf
);
2726 if (strncmp(cmp
, "no", 2) == 0) {
2731 for (i
= 0; trace_options
[i
]; i
++) {
2732 if (strcmp(cmp
, trace_options
[i
]) == 0) {
2733 set_tracer_flags(1 << i
, !neg
);
2738 /* If no option could be set, test the specific tracer options */
2739 if (!trace_options
[i
]) {
2740 mutex_lock(&trace_types_lock
);
2741 ret
= set_tracer_option(current_trace
, cmp
, neg
);
2742 mutex_unlock(&trace_types_lock
);
2752 static int tracing_trace_options_open(struct inode
*inode
, struct file
*file
)
2754 if (tracing_disabled
)
2756 return single_open(file
, tracing_trace_options_show
, NULL
);
2759 static const struct file_operations tracing_iter_fops
= {
2760 .open
= tracing_trace_options_open
,
2762 .llseek
= seq_lseek
,
2763 .release
= single_release
,
2764 .write
= tracing_trace_options_write
,
2767 static const char readme_msg
[] =
2768 "tracing mini-HOWTO:\n\n"
2769 "# mount -t debugfs nodev /sys/kernel/debug\n\n"
2770 "# cat /sys/kernel/debug/tracing/available_tracers\n"
2771 "wakeup preemptirqsoff preemptoff irqsoff function sched_switch nop\n\n"
2772 "# cat /sys/kernel/debug/tracing/current_tracer\n"
2774 "# echo sched_switch > /sys/kernel/debug/tracing/current_tracer\n"
2775 "# cat /sys/kernel/debug/tracing/current_tracer\n"
2777 "# cat /sys/kernel/debug/tracing/trace_options\n"
2778 "noprint-parent nosym-offset nosym-addr noverbose\n"
2779 "# echo print-parent > /sys/kernel/debug/tracing/trace_options\n"
2780 "# echo 1 > /sys/kernel/debug/tracing/tracing_on\n"
2781 "# cat /sys/kernel/debug/tracing/trace > /tmp/trace.txt\n"
2782 "# echo 0 > /sys/kernel/debug/tracing/tracing_on\n"
2786 tracing_readme_read(struct file
*filp
, char __user
*ubuf
,
2787 size_t cnt
, loff_t
*ppos
)
2789 return simple_read_from_buffer(ubuf
, cnt
, ppos
,
2790 readme_msg
, strlen(readme_msg
));
2793 static const struct file_operations tracing_readme_fops
= {
2794 .open
= tracing_open_generic
,
2795 .read
= tracing_readme_read
,
2796 .llseek
= generic_file_llseek
,
2800 tracing_saved_cmdlines_read(struct file
*file
, char __user
*ubuf
,
2801 size_t cnt
, loff_t
*ppos
)
2810 file_buf
= kmalloc(SAVED_CMDLINES
*(16+TASK_COMM_LEN
), GFP_KERNEL
);
2814 buf_comm
= kmalloc(TASK_COMM_LEN
, GFP_KERNEL
);
2822 for (i
= 0; i
< SAVED_CMDLINES
; i
++) {
2825 pid
= map_cmdline_to_pid
[i
];
2826 if (pid
== -1 || pid
== NO_CMDLINE_MAP
)
2829 trace_find_cmdline(pid
, buf_comm
);
2830 r
= sprintf(buf
, "%d %s\n", pid
, buf_comm
);
2835 len
= simple_read_from_buffer(ubuf
, cnt
, ppos
,
2844 static const struct file_operations tracing_saved_cmdlines_fops
= {
2845 .open
= tracing_open_generic
,
2846 .read
= tracing_saved_cmdlines_read
,
2847 .llseek
= generic_file_llseek
,
2851 tracing_ctrl_read(struct file
*filp
, char __user
*ubuf
,
2852 size_t cnt
, loff_t
*ppos
)
2857 r
= sprintf(buf
, "%u\n", tracer_enabled
);
2858 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
2862 tracing_ctrl_write(struct file
*filp
, const char __user
*ubuf
,
2863 size_t cnt
, loff_t
*ppos
)
2865 struct trace_array
*tr
= filp
->private_data
;
2869 ret
= kstrtoul_from_user(ubuf
, cnt
, 10, &val
);
2875 mutex_lock(&trace_types_lock
);
2876 if (tracer_enabled
^ val
) {
2878 /* Only need to warn if this is used to change the state */
2879 WARN_ONCE(1, "tracing_enabled is deprecated. Use tracing_on");
2883 if (current_trace
->start
)
2884 current_trace
->start(tr
);
2889 if (current_trace
->stop
)
2890 current_trace
->stop(tr
);
2893 mutex_unlock(&trace_types_lock
);
2901 tracing_set_trace_read(struct file
*filp
, char __user
*ubuf
,
2902 size_t cnt
, loff_t
*ppos
)
2904 char buf
[MAX_TRACER_SIZE
+2];
2907 mutex_lock(&trace_types_lock
);
2909 r
= sprintf(buf
, "%s\n", current_trace
->name
);
2911 r
= sprintf(buf
, "\n");
2912 mutex_unlock(&trace_types_lock
);
2914 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
2917 int tracer_init(struct tracer
*t
, struct trace_array
*tr
)
2919 tracing_reset_online_cpus(tr
);
2923 static int __tracing_resize_ring_buffer(unsigned long size
)
2928 * If kernel or user changes the size of the ring buffer
2929 * we use the size that was given, and we can forget about
2930 * expanding it later.
2932 ring_buffer_expanded
= 1;
2934 ret
= ring_buffer_resize(global_trace
.buffer
, size
);
2938 if (!current_trace
->use_max_tr
)
2941 ret
= ring_buffer_resize(max_tr
.buffer
, size
);
2945 r
= ring_buffer_resize(global_trace
.buffer
,
2946 global_trace
.entries
);
2949 * AARGH! We are left with different
2950 * size max buffer!!!!
2951 * The max buffer is our "snapshot" buffer.
2952 * When a tracer needs a snapshot (one of the
2953 * latency tracers), it swaps the max buffer
2954 * with the saved snap shot. We succeeded to
2955 * update the size of the main buffer, but failed to
2956 * update the size of the max buffer. But when we tried
2957 * to reset the main buffer to the original size, we
2958 * failed there too. This is very unlikely to
2959 * happen, but if it does, warn and kill all
2963 tracing_disabled
= 1;
2968 max_tr
.entries
= size
;
2970 global_trace
.entries
= size
;
2975 static ssize_t
tracing_resize_ring_buffer(unsigned long size
)
2977 int cpu
, ret
= size
;
2979 mutex_lock(&trace_types_lock
);
2983 /* disable all cpu buffers */
2984 for_each_tracing_cpu(cpu
) {
2985 if (global_trace
.data
[cpu
])
2986 atomic_inc(&global_trace
.data
[cpu
]->disabled
);
2987 if (max_tr
.data
[cpu
])
2988 atomic_inc(&max_tr
.data
[cpu
]->disabled
);
2991 if (size
!= global_trace
.entries
)
2992 ret
= __tracing_resize_ring_buffer(size
);
2997 for_each_tracing_cpu(cpu
) {
2998 if (global_trace
.data
[cpu
])
2999 atomic_dec(&global_trace
.data
[cpu
]->disabled
);
3000 if (max_tr
.data
[cpu
])
3001 atomic_dec(&max_tr
.data
[cpu
]->disabled
);
3005 mutex_unlock(&trace_types_lock
);
3012 * tracing_update_buffers - used by tracing facility to expand ring buffers
3014 * To save on memory when the tracing is never used on a system with it
3015 * configured in. The ring buffers are set to a minimum size. But once
3016 * a user starts to use the tracing facility, then they need to grow
3017 * to their default size.
3019 * This function is to be called when a tracer is about to be used.
3021 int tracing_update_buffers(void)
3025 mutex_lock(&trace_types_lock
);
3026 if (!ring_buffer_expanded
)
3027 ret
= __tracing_resize_ring_buffer(trace_buf_size
);
3028 mutex_unlock(&trace_types_lock
);
3033 struct trace_option_dentry
;
3035 static struct trace_option_dentry
*
3036 create_trace_option_files(struct tracer
*tracer
);
3039 destroy_trace_option_files(struct trace_option_dentry
*topts
);
3041 static int tracing_set_tracer(const char *buf
)
3043 static struct trace_option_dentry
*topts
;
3044 struct trace_array
*tr
= &global_trace
;
3048 mutex_lock(&trace_types_lock
);
3050 if (!ring_buffer_expanded
) {
3051 ret
= __tracing_resize_ring_buffer(trace_buf_size
);
3057 for (t
= trace_types
; t
; t
= t
->next
) {
3058 if (strcmp(t
->name
, buf
) == 0)
3065 if (t
== current_trace
)
3068 trace_branch_disable();
3069 if (current_trace
&& current_trace
->reset
)
3070 current_trace
->reset(tr
);
3071 if (current_trace
&& current_trace
->use_max_tr
) {
3073 * We don't free the ring buffer. instead, resize it because
3074 * The max_tr ring buffer has some state (e.g. ring->clock) and
3075 * we want preserve it.
3077 ring_buffer_resize(max_tr
.buffer
, 1);
3080 destroy_trace_option_files(topts
);
3084 topts
= create_trace_option_files(current_trace
);
3085 if (current_trace
->use_max_tr
) {
3086 ret
= ring_buffer_resize(max_tr
.buffer
, global_trace
.entries
);
3089 max_tr
.entries
= global_trace
.entries
;
3093 ret
= tracer_init(t
, tr
);
3098 trace_branch_enable(tr
);
3100 mutex_unlock(&trace_types_lock
);
3106 tracing_set_trace_write(struct file
*filp
, const char __user
*ubuf
,
3107 size_t cnt
, loff_t
*ppos
)
3109 char buf
[MAX_TRACER_SIZE
+1];
3116 if (cnt
> MAX_TRACER_SIZE
)
3117 cnt
= MAX_TRACER_SIZE
;
3119 if (copy_from_user(&buf
, ubuf
, cnt
))
3124 /* strip ending whitespace. */
3125 for (i
= cnt
- 1; i
> 0 && isspace(buf
[i
]); i
--)
3128 err
= tracing_set_tracer(buf
);
3138 tracing_max_lat_read(struct file
*filp
, char __user
*ubuf
,
3139 size_t cnt
, loff_t
*ppos
)
3141 unsigned long *ptr
= filp
->private_data
;
3145 r
= snprintf(buf
, sizeof(buf
), "%ld\n",
3146 *ptr
== (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr
));
3147 if (r
> sizeof(buf
))
3149 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
3153 tracing_max_lat_write(struct file
*filp
, const char __user
*ubuf
,
3154 size_t cnt
, loff_t
*ppos
)
3156 unsigned long *ptr
= filp
->private_data
;
3160 ret
= kstrtoul_from_user(ubuf
, cnt
, 10, &val
);
3169 static int tracing_open_pipe(struct inode
*inode
, struct file
*filp
)
3171 long cpu_file
= (long) inode
->i_private
;
3172 struct trace_iterator
*iter
;
3175 if (tracing_disabled
)
3178 mutex_lock(&trace_types_lock
);
3180 /* create a buffer to store the information to pass to userspace */
3181 iter
= kzalloc(sizeof(*iter
), GFP_KERNEL
);
3188 * We make a copy of the current tracer to avoid concurrent
3189 * changes on it while we are reading.
3191 iter
->trace
= kmalloc(sizeof(*iter
->trace
), GFP_KERNEL
);
3197 *iter
->trace
= *current_trace
;
3199 if (!alloc_cpumask_var(&iter
->started
, GFP_KERNEL
)) {
3204 /* trace pipe does not show start of buffer */
3205 cpumask_setall(iter
->started
);
3207 if (trace_flags
& TRACE_ITER_LATENCY_FMT
)
3208 iter
->iter_flags
|= TRACE_FILE_LAT_FMT
;
3210 iter
->cpu_file
= cpu_file
;
3211 iter
->tr
= &global_trace
;
3212 mutex_init(&iter
->mutex
);
3213 filp
->private_data
= iter
;
3215 if (iter
->trace
->pipe_open
)
3216 iter
->trace
->pipe_open(iter
);
3218 nonseekable_open(inode
, filp
);
3220 mutex_unlock(&trace_types_lock
);
3226 mutex_unlock(&trace_types_lock
);
3230 static int tracing_release_pipe(struct inode
*inode
, struct file
*file
)
3232 struct trace_iterator
*iter
= file
->private_data
;
3234 mutex_lock(&trace_types_lock
);
3236 if (iter
->trace
->pipe_close
)
3237 iter
->trace
->pipe_close(iter
);
3239 mutex_unlock(&trace_types_lock
);
3241 free_cpumask_var(iter
->started
);
3242 mutex_destroy(&iter
->mutex
);
3250 tracing_poll_pipe(struct file
*filp
, poll_table
*poll_table
)
3252 struct trace_iterator
*iter
= filp
->private_data
;
3254 if (trace_flags
& TRACE_ITER_BLOCK
) {
3256 * Always select as readable when in blocking mode
3258 return POLLIN
| POLLRDNORM
;
3260 if (!trace_empty(iter
))
3261 return POLLIN
| POLLRDNORM
;
3262 poll_wait(filp
, &trace_wait
, poll_table
);
3263 if (!trace_empty(iter
))
3264 return POLLIN
| POLLRDNORM
;
3271 void default_wait_pipe(struct trace_iterator
*iter
)
3275 prepare_to_wait(&trace_wait
, &wait
, TASK_INTERRUPTIBLE
);
3277 if (trace_empty(iter
))
3280 finish_wait(&trace_wait
, &wait
);
3284 * This is a make-shift waitqueue.
3285 * A tracer might use this callback on some rare cases:
3287 * 1) the current tracer might hold the runqueue lock when it wakes up
3288 * a reader, hence a deadlock (sched, function, and function graph tracers)
3289 * 2) the function tracers, trace all functions, we don't want
3290 * the overhead of calling wake_up and friends
3291 * (and tracing them too)
3293 * Anyway, this is really very primitive wakeup.
3295 void poll_wait_pipe(struct trace_iterator
*iter
)
3297 set_current_state(TASK_INTERRUPTIBLE
);
3298 /* sleep for 100 msecs, and try again. */
3299 schedule_timeout(HZ
/ 10);
3302 /* Must be called with trace_types_lock mutex held. */
3303 static int tracing_wait_pipe(struct file
*filp
)
3305 struct trace_iterator
*iter
= filp
->private_data
;
3307 while (trace_empty(iter
)) {
3309 if ((filp
->f_flags
& O_NONBLOCK
)) {
3313 mutex_unlock(&iter
->mutex
);
3315 iter
->trace
->wait_pipe(iter
);
3317 mutex_lock(&iter
->mutex
);
3319 if (signal_pending(current
))
3323 * We block until we read something and tracing is disabled.
3324 * We still block if tracing is disabled, but we have never
3325 * read anything. This allows a user to cat this file, and
3326 * then enable tracing. But after we have read something,
3327 * we give an EOF when tracing is again disabled.
3329 * iter->pos will be 0 if we haven't read anything.
3331 if (!tracer_enabled
&& iter
->pos
)
3342 tracing_read_pipe(struct file
*filp
, char __user
*ubuf
,
3343 size_t cnt
, loff_t
*ppos
)
3345 struct trace_iterator
*iter
= filp
->private_data
;
3346 static struct tracer
*old_tracer
;
3349 /* return any leftover data */
3350 sret
= trace_seq_to_user(&iter
->seq
, ubuf
, cnt
);
3354 trace_seq_init(&iter
->seq
);
3356 /* copy the tracer to avoid using a global lock all around */
3357 mutex_lock(&trace_types_lock
);
3358 if (unlikely(old_tracer
!= current_trace
&& current_trace
)) {
3359 old_tracer
= current_trace
;
3360 *iter
->trace
= *current_trace
;
3362 mutex_unlock(&trace_types_lock
);
3365 * Avoid more than one consumer on a single file descriptor
3366 * This is just a matter of traces coherency, the ring buffer itself
3369 mutex_lock(&iter
->mutex
);
3370 if (iter
->trace
->read
) {
3371 sret
= iter
->trace
->read(iter
, filp
, ubuf
, cnt
, ppos
);
3377 sret
= tracing_wait_pipe(filp
);
3381 /* stop when tracing is finished */
3382 if (trace_empty(iter
)) {
3387 if (cnt
>= PAGE_SIZE
)
3388 cnt
= PAGE_SIZE
- 1;
3390 /* reset all but tr, trace, and overruns */
3391 memset(&iter
->seq
, 0,
3392 sizeof(struct trace_iterator
) -
3393 offsetof(struct trace_iterator
, seq
));
3396 trace_event_read_lock();
3397 trace_access_lock(iter
->cpu_file
);
3398 while (trace_find_next_entry_inc(iter
) != NULL
) {
3399 enum print_line_t ret
;
3400 int len
= iter
->seq
.len
;
3402 ret
= print_trace_line(iter
);
3403 if (ret
== TRACE_TYPE_PARTIAL_LINE
) {
3404 /* don't print partial lines */
3405 iter
->seq
.len
= len
;
3408 if (ret
!= TRACE_TYPE_NO_CONSUME
)
3409 trace_consume(iter
);
3411 if (iter
->seq
.len
>= cnt
)
3415 * Setting the full flag means we reached the trace_seq buffer
3416 * size and we should leave by partial output condition above.
3417 * One of the trace_seq_* functions is not used properly.
3419 WARN_ONCE(iter
->seq
.full
, "full flag set for trace type %d",
3422 trace_access_unlock(iter
->cpu_file
);
3423 trace_event_read_unlock();
3425 /* Now copy what we have to the user */
3426 sret
= trace_seq_to_user(&iter
->seq
, ubuf
, cnt
);
3427 if (iter
->seq
.readpos
>= iter
->seq
.len
)
3428 trace_seq_init(&iter
->seq
);
3431 * If there was nothing to send to user, in spite of consuming trace
3432 * entries, go back to wait for more entries.
3438 mutex_unlock(&iter
->mutex
);
3443 static void tracing_pipe_buf_release(struct pipe_inode_info
*pipe
,
3444 struct pipe_buffer
*buf
)
3446 __free_page(buf
->page
);
3449 static void tracing_spd_release_pipe(struct splice_pipe_desc
*spd
,
3452 __free_page(spd
->pages
[idx
]);
3455 static const struct pipe_buf_operations tracing_pipe_buf_ops
= {
3457 .map
= generic_pipe_buf_map
,
3458 .unmap
= generic_pipe_buf_unmap
,
3459 .confirm
= generic_pipe_buf_confirm
,
3460 .release
= tracing_pipe_buf_release
,
3461 .steal
= generic_pipe_buf_steal
,
3462 .get
= generic_pipe_buf_get
,
3466 tracing_fill_pipe_page(size_t rem
, struct trace_iterator
*iter
)
3471 /* Seq buffer is page-sized, exactly what we need. */
3473 count
= iter
->seq
.len
;
3474 ret
= print_trace_line(iter
);
3475 count
= iter
->seq
.len
- count
;
3478 iter
->seq
.len
-= count
;
3481 if (ret
== TRACE_TYPE_PARTIAL_LINE
) {
3482 iter
->seq
.len
-= count
;
3486 if (ret
!= TRACE_TYPE_NO_CONSUME
)
3487 trace_consume(iter
);
3489 if (!trace_find_next_entry_inc(iter
)) {
3499 static ssize_t
tracing_splice_read_pipe(struct file
*filp
,
3501 struct pipe_inode_info
*pipe
,
3505 struct page
*pages_def
[PIPE_DEF_BUFFERS
];
3506 struct partial_page partial_def
[PIPE_DEF_BUFFERS
];
3507 struct trace_iterator
*iter
= filp
->private_data
;
3508 struct splice_pipe_desc spd
= {
3510 .partial
= partial_def
,
3511 .nr_pages
= 0, /* This gets updated below. */
3513 .ops
= &tracing_pipe_buf_ops
,
3514 .spd_release
= tracing_spd_release_pipe
,
3516 static struct tracer
*old_tracer
;
3521 if (splice_grow_spd(pipe
, &spd
))
3524 /* copy the tracer to avoid using a global lock all around */
3525 mutex_lock(&trace_types_lock
);
3526 if (unlikely(old_tracer
!= current_trace
&& current_trace
)) {
3527 old_tracer
= current_trace
;
3528 *iter
->trace
= *current_trace
;
3530 mutex_unlock(&trace_types_lock
);
3532 mutex_lock(&iter
->mutex
);
3534 if (iter
->trace
->splice_read
) {
3535 ret
= iter
->trace
->splice_read(iter
, filp
,
3536 ppos
, pipe
, len
, flags
);
3541 ret
= tracing_wait_pipe(filp
);
3545 if (!iter
->ent
&& !trace_find_next_entry_inc(iter
)) {
3550 trace_event_read_lock();
3551 trace_access_lock(iter
->cpu_file
);
3553 /* Fill as many pages as possible. */
3554 for (i
= 0, rem
= len
; i
< pipe
->buffers
&& rem
; i
++) {
3555 spd
.pages
[i
] = alloc_page(GFP_KERNEL
);
3559 rem
= tracing_fill_pipe_page(rem
, iter
);
3561 /* Copy the data into the page, so we can start over. */
3562 ret
= trace_seq_to_buffer(&iter
->seq
,
3563 page_address(spd
.pages
[i
]),
3566 __free_page(spd
.pages
[i
]);
3569 spd
.partial
[i
].offset
= 0;
3570 spd
.partial
[i
].len
= iter
->seq
.len
;
3572 trace_seq_init(&iter
->seq
);
3575 trace_access_unlock(iter
->cpu_file
);
3576 trace_event_read_unlock();
3577 mutex_unlock(&iter
->mutex
);
3581 ret
= splice_to_pipe(pipe
, &spd
);
3583 splice_shrink_spd(pipe
, &spd
);
3587 mutex_unlock(&iter
->mutex
);
3592 tracing_entries_read(struct file
*filp
, char __user
*ubuf
,
3593 size_t cnt
, loff_t
*ppos
)
3595 struct trace_array
*tr
= filp
->private_data
;
3599 mutex_lock(&trace_types_lock
);
3600 if (!ring_buffer_expanded
)
3601 r
= sprintf(buf
, "%lu (expanded: %lu)\n",
3603 trace_buf_size
>> 10);
3605 r
= sprintf(buf
, "%lu\n", tr
->entries
>> 10);
3606 mutex_unlock(&trace_types_lock
);
3608 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
3612 tracing_entries_write(struct file
*filp
, const char __user
*ubuf
,
3613 size_t cnt
, loff_t
*ppos
)
3618 ret
= kstrtoul_from_user(ubuf
, cnt
, 10, &val
);
3622 /* must have at least 1 entry */
3626 /* value is in KB */
3629 ret
= tracing_resize_ring_buffer(val
);
3639 tracing_total_entries_read(struct file
*filp
, char __user
*ubuf
,
3640 size_t cnt
, loff_t
*ppos
)
3642 struct trace_array
*tr
= filp
->private_data
;
3645 unsigned long size
= 0, expanded_size
= 0;
3647 mutex_lock(&trace_types_lock
);
3648 for_each_tracing_cpu(cpu
) {
3649 size
+= tr
->entries
>> 10;
3650 if (!ring_buffer_expanded
)
3651 expanded_size
+= trace_buf_size
>> 10;
3653 if (ring_buffer_expanded
)
3654 r
= sprintf(buf
, "%lu\n", size
);
3656 r
= sprintf(buf
, "%lu (expanded: %lu)\n", size
, expanded_size
);
3657 mutex_unlock(&trace_types_lock
);
3659 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
3663 tracing_free_buffer_write(struct file
*filp
, const char __user
*ubuf
,
3664 size_t cnt
, loff_t
*ppos
)
3667 * There is no need to read what the user has written, this function
3668 * is just to make sure that there is no error when "echo" is used
3677 tracing_free_buffer_release(struct inode
*inode
, struct file
*filp
)
3679 /* disable tracing ? */
3680 if (trace_flags
& TRACE_ITER_STOP_ON_FREE
)
3682 /* resize the ring buffer to 0 */
3683 tracing_resize_ring_buffer(0);
3689 tracing_mark_write(struct file
*filp
, const char __user
*ubuf
,
3690 size_t cnt
, loff_t
*fpos
)
3692 unsigned long addr
= (unsigned long)ubuf
;
3693 struct ring_buffer_event
*event
;
3694 struct ring_buffer
*buffer
;
3695 struct print_entry
*entry
;
3696 unsigned long irq_flags
;
3697 struct page
*pages
[2];
3707 if (tracing_disabled
)
3710 if (cnt
> TRACE_BUF_SIZE
)
3711 cnt
= TRACE_BUF_SIZE
;
3714 * Userspace is injecting traces into the kernel trace buffer.
3715 * We want to be as non intrusive as possible.
3716 * To do so, we do not want to allocate any special buffers
3717 * or take any locks, but instead write the userspace data
3718 * straight into the ring buffer.
3720 * First we need to pin the userspace buffer into memory,
3721 * which, most likely it is, because it just referenced it.
3722 * But there's no guarantee that it is. By using get_user_pages_fast()
3723 * and kmap_atomic/kunmap_atomic() we can get access to the
3724 * pages directly. We then write the data directly into the
3727 BUILD_BUG_ON(TRACE_BUF_SIZE
>= PAGE_SIZE
);
3729 /* check if we cross pages */
3730 if ((addr
& PAGE_MASK
) != ((addr
+ cnt
) & PAGE_MASK
))
3733 offset
= addr
& (PAGE_SIZE
- 1);
3736 ret
= get_user_pages_fast(addr
, nr_pages
, 0, pages
);
3737 if (ret
< nr_pages
) {
3739 put_page(pages
[ret
]);
3744 page1
= kmap_atomic(pages
[0]);
3746 page2
= kmap_atomic(pages
[1]);
3748 local_save_flags(irq_flags
);
3749 size
= sizeof(*entry
) + cnt
+ 2; /* possible \n added */
3750 buffer
= global_trace
.buffer
;
3751 event
= trace_buffer_lock_reserve(buffer
, TRACE_PRINT
, size
,
3752 irq_flags
, preempt_count());
3754 /* Ring buffer disabled, return as if not open for write */
3759 entry
= ring_buffer_event_data(event
);
3760 entry
->ip
= _THIS_IP_
;
3762 if (nr_pages
== 2) {
3763 len
= PAGE_SIZE
- offset
;
3764 memcpy(&entry
->buf
, page1
+ offset
, len
);
3765 memcpy(&entry
->buf
[len
], page2
, cnt
- len
);
3767 memcpy(&entry
->buf
, page1
+ offset
, cnt
);
3769 if (entry
->buf
[cnt
- 1] != '\n') {
3770 entry
->buf
[cnt
] = '\n';
3771 entry
->buf
[cnt
+ 1] = '\0';
3773 entry
->buf
[cnt
] = '\0';
3775 ring_buffer_unlock_commit(buffer
, event
);
3783 kunmap_atomic(page2
);
3784 kunmap_atomic(page1
);
3785 while (nr_pages
> 0)
3786 put_page(pages
[--nr_pages
]);
3791 static int tracing_clock_show(struct seq_file
*m
, void *v
)
3795 for (i
= 0; i
< ARRAY_SIZE(trace_clocks
); i
++)
3797 "%s%s%s%s", i
? " " : "",
3798 i
== trace_clock_id
? "[" : "", trace_clocks
[i
].name
,
3799 i
== trace_clock_id
? "]" : "");
3805 static ssize_t
tracing_clock_write(struct file
*filp
, const char __user
*ubuf
,
3806 size_t cnt
, loff_t
*fpos
)
3809 const char *clockstr
;
3812 if (cnt
>= sizeof(buf
))
3815 if (copy_from_user(&buf
, ubuf
, cnt
))
3820 clockstr
= strstrip(buf
);
3822 for (i
= 0; i
< ARRAY_SIZE(trace_clocks
); i
++) {
3823 if (strcmp(trace_clocks
[i
].name
, clockstr
) == 0)
3826 if (i
== ARRAY_SIZE(trace_clocks
))
3831 mutex_lock(&trace_types_lock
);
3833 ring_buffer_set_clock(global_trace
.buffer
, trace_clocks
[i
].func
);
3835 ring_buffer_set_clock(max_tr
.buffer
, trace_clocks
[i
].func
);
3837 mutex_unlock(&trace_types_lock
);
3844 static int tracing_clock_open(struct inode
*inode
, struct file
*file
)
3846 if (tracing_disabled
)
3848 return single_open(file
, tracing_clock_show
, NULL
);
3851 static const struct file_operations tracing_max_lat_fops
= {
3852 .open
= tracing_open_generic
,
3853 .read
= tracing_max_lat_read
,
3854 .write
= tracing_max_lat_write
,
3855 .llseek
= generic_file_llseek
,
3858 static const struct file_operations tracing_ctrl_fops
= {
3859 .open
= tracing_open_generic
,
3860 .read
= tracing_ctrl_read
,
3861 .write
= tracing_ctrl_write
,
3862 .llseek
= generic_file_llseek
,
3865 static const struct file_operations set_tracer_fops
= {
3866 .open
= tracing_open_generic
,
3867 .read
= tracing_set_trace_read
,
3868 .write
= tracing_set_trace_write
,
3869 .llseek
= generic_file_llseek
,
3872 static const struct file_operations tracing_pipe_fops
= {
3873 .open
= tracing_open_pipe
,
3874 .poll
= tracing_poll_pipe
,
3875 .read
= tracing_read_pipe
,
3876 .splice_read
= tracing_splice_read_pipe
,
3877 .release
= tracing_release_pipe
,
3878 .llseek
= no_llseek
,
3881 static const struct file_operations tracing_entries_fops
= {
3882 .open
= tracing_open_generic
,
3883 .read
= tracing_entries_read
,
3884 .write
= tracing_entries_write
,
3885 .llseek
= generic_file_llseek
,
3888 static const struct file_operations tracing_total_entries_fops
= {
3889 .open
= tracing_open_generic
,
3890 .read
= tracing_total_entries_read
,
3891 .llseek
= generic_file_llseek
,
3894 static const struct file_operations tracing_free_buffer_fops
= {
3895 .write
= tracing_free_buffer_write
,
3896 .release
= tracing_free_buffer_release
,
3899 static const struct file_operations tracing_mark_fops
= {
3900 .open
= tracing_open_generic
,
3901 .write
= tracing_mark_write
,
3902 .llseek
= generic_file_llseek
,
3905 static const struct file_operations trace_clock_fops
= {
3906 .open
= tracing_clock_open
,
3908 .llseek
= seq_lseek
,
3909 .release
= single_release
,
3910 .write
= tracing_clock_write
,
3913 struct ftrace_buffer_info
{
3914 struct trace_array
*tr
;
3920 static int tracing_buffers_open(struct inode
*inode
, struct file
*filp
)
3922 int cpu
= (int)(long)inode
->i_private
;
3923 struct ftrace_buffer_info
*info
;
3925 if (tracing_disabled
)
3928 info
= kzalloc(sizeof(*info
), GFP_KERNEL
);
3932 info
->tr
= &global_trace
;
3935 /* Force reading ring buffer for first read */
3936 info
->read
= (unsigned int)-1;
3938 filp
->private_data
= info
;
3940 return nonseekable_open(inode
, filp
);
3944 tracing_buffers_read(struct file
*filp
, char __user
*ubuf
,
3945 size_t count
, loff_t
*ppos
)
3947 struct ftrace_buffer_info
*info
= filp
->private_data
;
3955 info
->spare
= ring_buffer_alloc_read_page(info
->tr
->buffer
, info
->cpu
);
3959 /* Do we have previous read data to read? */
3960 if (info
->read
< PAGE_SIZE
)
3963 trace_access_lock(info
->cpu
);
3964 ret
= ring_buffer_read_page(info
->tr
->buffer
,
3968 trace_access_unlock(info
->cpu
);
3975 size
= PAGE_SIZE
- info
->read
;
3979 ret
= copy_to_user(ubuf
, info
->spare
+ info
->read
, size
);
3990 static int tracing_buffers_release(struct inode
*inode
, struct file
*file
)
3992 struct ftrace_buffer_info
*info
= file
->private_data
;
3995 ring_buffer_free_read_page(info
->tr
->buffer
, info
->spare
);
4002 struct ring_buffer
*buffer
;
4007 static void buffer_pipe_buf_release(struct pipe_inode_info
*pipe
,
4008 struct pipe_buffer
*buf
)
4010 struct buffer_ref
*ref
= (struct buffer_ref
*)buf
->private;
4015 ring_buffer_free_read_page(ref
->buffer
, ref
->page
);
4020 static int buffer_pipe_buf_steal(struct pipe_inode_info
*pipe
,
4021 struct pipe_buffer
*buf
)
4026 static void buffer_pipe_buf_get(struct pipe_inode_info
*pipe
,
4027 struct pipe_buffer
*buf
)
4029 struct buffer_ref
*ref
= (struct buffer_ref
*)buf
->private;
4034 /* Pipe buffer operations for a buffer. */
4035 static const struct pipe_buf_operations buffer_pipe_buf_ops
= {
4037 .map
= generic_pipe_buf_map
,
4038 .unmap
= generic_pipe_buf_unmap
,
4039 .confirm
= generic_pipe_buf_confirm
,
4040 .release
= buffer_pipe_buf_release
,
4041 .steal
= buffer_pipe_buf_steal
,
4042 .get
= buffer_pipe_buf_get
,
4046 * Callback from splice_to_pipe(), if we need to release some pages
4047 * at the end of the spd in case we error'ed out in filling the pipe.
4049 static void buffer_spd_release(struct splice_pipe_desc
*spd
, unsigned int i
)
4051 struct buffer_ref
*ref
=
4052 (struct buffer_ref
*)spd
->partial
[i
].private;
4057 ring_buffer_free_read_page(ref
->buffer
, ref
->page
);
4059 spd
->partial
[i
].private = 0;
4063 tracing_buffers_splice_read(struct file
*file
, loff_t
*ppos
,
4064 struct pipe_inode_info
*pipe
, size_t len
,
4067 struct ftrace_buffer_info
*info
= file
->private_data
;
4068 struct partial_page partial_def
[PIPE_DEF_BUFFERS
];
4069 struct page
*pages_def
[PIPE_DEF_BUFFERS
];
4070 struct splice_pipe_desc spd
= {
4072 .partial
= partial_def
,
4074 .ops
= &buffer_pipe_buf_ops
,
4075 .spd_release
= buffer_spd_release
,
4077 struct buffer_ref
*ref
;
4078 int entries
, size
, i
;
4081 if (splice_grow_spd(pipe
, &spd
))
4084 if (*ppos
& (PAGE_SIZE
- 1)) {
4085 WARN_ONCE(1, "Ftrace: previous read must page-align\n");
4090 if (len
& (PAGE_SIZE
- 1)) {
4091 WARN_ONCE(1, "Ftrace: splice_read should page-align\n");
4092 if (len
< PAGE_SIZE
) {
4099 trace_access_lock(info
->cpu
);
4100 entries
= ring_buffer_entries_cpu(info
->tr
->buffer
, info
->cpu
);
4102 for (i
= 0; i
< pipe
->buffers
&& len
&& entries
; i
++, len
-= PAGE_SIZE
) {
4106 ref
= kzalloc(sizeof(*ref
), GFP_KERNEL
);
4111 ref
->buffer
= info
->tr
->buffer
;
4112 ref
->page
= ring_buffer_alloc_read_page(ref
->buffer
, info
->cpu
);
4118 r
= ring_buffer_read_page(ref
->buffer
, &ref
->page
,
4121 ring_buffer_free_read_page(ref
->buffer
, ref
->page
);
4127 * zero out any left over data, this is going to
4130 size
= ring_buffer_page_len(ref
->page
);
4131 if (size
< PAGE_SIZE
)
4132 memset(ref
->page
+ size
, 0, PAGE_SIZE
- size
);
4134 page
= virt_to_page(ref
->page
);
4136 spd
.pages
[i
] = page
;
4137 spd
.partial
[i
].len
= PAGE_SIZE
;
4138 spd
.partial
[i
].offset
= 0;
4139 spd
.partial
[i
].private = (unsigned long)ref
;
4143 entries
= ring_buffer_entries_cpu(info
->tr
->buffer
, info
->cpu
);
4146 trace_access_unlock(info
->cpu
);
4149 /* did we read anything? */
4150 if (!spd
.nr_pages
) {
4151 if (flags
& SPLICE_F_NONBLOCK
)
4159 ret
= splice_to_pipe(pipe
, &spd
);
4160 splice_shrink_spd(pipe
, &spd
);
4165 static const struct file_operations tracing_buffers_fops
= {
4166 .open
= tracing_buffers_open
,
4167 .read
= tracing_buffers_read
,
4168 .release
= tracing_buffers_release
,
4169 .splice_read
= tracing_buffers_splice_read
,
4170 .llseek
= no_llseek
,
4174 tracing_stats_read(struct file
*filp
, char __user
*ubuf
,
4175 size_t count
, loff_t
*ppos
)
4177 unsigned long cpu
= (unsigned long)filp
->private_data
;
4178 struct trace_array
*tr
= &global_trace
;
4179 struct trace_seq
*s
;
4181 unsigned long long t
;
4182 unsigned long usec_rem
;
4184 s
= kmalloc(sizeof(*s
), GFP_KERNEL
);
4190 cnt
= ring_buffer_entries_cpu(tr
->buffer
, cpu
);
4191 trace_seq_printf(s
, "entries: %ld\n", cnt
);
4193 cnt
= ring_buffer_overrun_cpu(tr
->buffer
, cpu
);
4194 trace_seq_printf(s
, "overrun: %ld\n", cnt
);
4196 cnt
= ring_buffer_commit_overrun_cpu(tr
->buffer
, cpu
);
4197 trace_seq_printf(s
, "commit overrun: %ld\n", cnt
);
4199 cnt
= ring_buffer_bytes_cpu(tr
->buffer
, cpu
);
4200 trace_seq_printf(s
, "bytes: %ld\n", cnt
);
4202 t
= ns2usecs(ring_buffer_oldest_event_ts(tr
->buffer
, cpu
));
4203 usec_rem
= do_div(t
, USEC_PER_SEC
);
4204 trace_seq_printf(s
, "oldest event ts: %5llu.%06lu\n", t
, usec_rem
);
4206 t
= ns2usecs(ring_buffer_time_stamp(tr
->buffer
, cpu
));
4207 usec_rem
= do_div(t
, USEC_PER_SEC
);
4208 trace_seq_printf(s
, "now ts: %5llu.%06lu\n", t
, usec_rem
);
4210 count
= simple_read_from_buffer(ubuf
, count
, ppos
, s
->buffer
, s
->len
);
4217 static const struct file_operations tracing_stats_fops
= {
4218 .open
= tracing_open_generic
,
4219 .read
= tracing_stats_read
,
4220 .llseek
= generic_file_llseek
,
4223 #ifdef CONFIG_DYNAMIC_FTRACE
4225 int __weak
ftrace_arch_read_dyn_info(char *buf
, int size
)
4231 tracing_read_dyn_info(struct file
*filp
, char __user
*ubuf
,
4232 size_t cnt
, loff_t
*ppos
)
4234 static char ftrace_dyn_info_buffer
[1024];
4235 static DEFINE_MUTEX(dyn_info_mutex
);
4236 unsigned long *p
= filp
->private_data
;
4237 char *buf
= ftrace_dyn_info_buffer
;
4238 int size
= ARRAY_SIZE(ftrace_dyn_info_buffer
);
4241 mutex_lock(&dyn_info_mutex
);
4242 r
= sprintf(buf
, "%ld ", *p
);
4244 r
+= ftrace_arch_read_dyn_info(buf
+r
, (size
-1)-r
);
4247 r
= simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, r
);
4249 mutex_unlock(&dyn_info_mutex
);
4254 static const struct file_operations tracing_dyn_info_fops
= {
4255 .open
= tracing_open_generic
,
4256 .read
= tracing_read_dyn_info
,
4257 .llseek
= generic_file_llseek
,
4261 static struct dentry
*d_tracer
;
4263 struct dentry
*tracing_init_dentry(void)
4270 if (!debugfs_initialized())
4273 d_tracer
= debugfs_create_dir("tracing", NULL
);
4275 if (!d_tracer
&& !once
) {
4277 pr_warning("Could not create debugfs directory 'tracing'\n");
4284 static struct dentry
*d_percpu
;
4286 struct dentry
*tracing_dentry_percpu(void)
4289 struct dentry
*d_tracer
;
4294 d_tracer
= tracing_init_dentry();
4299 d_percpu
= debugfs_create_dir("per_cpu", d_tracer
);
4301 if (!d_percpu
&& !once
) {
4303 pr_warning("Could not create debugfs directory 'per_cpu'\n");
4310 static void tracing_init_debugfs_percpu(long cpu
)
4312 struct dentry
*d_percpu
= tracing_dentry_percpu();
4313 struct dentry
*d_cpu
;
4314 char cpu_dir
[30]; /* 30 characters should be more than enough */
4316 snprintf(cpu_dir
, 30, "cpu%ld", cpu
);
4317 d_cpu
= debugfs_create_dir(cpu_dir
, d_percpu
);
4319 pr_warning("Could not create debugfs '%s' entry\n", cpu_dir
);
4323 /* per cpu trace_pipe */
4324 trace_create_file("trace_pipe", 0444, d_cpu
,
4325 (void *) cpu
, &tracing_pipe_fops
);
4328 trace_create_file("trace", 0644, d_cpu
,
4329 (void *) cpu
, &tracing_fops
);
4331 trace_create_file("trace_pipe_raw", 0444, d_cpu
,
4332 (void *) cpu
, &tracing_buffers_fops
);
4334 trace_create_file("stats", 0444, d_cpu
,
4335 (void *) cpu
, &tracing_stats_fops
);
4338 #ifdef CONFIG_FTRACE_SELFTEST
4339 /* Let selftest have access to static functions in this file */
4340 #include "trace_selftest.c"
4343 struct trace_option_dentry
{
4344 struct tracer_opt
*opt
;
4345 struct tracer_flags
*flags
;
4346 struct dentry
*entry
;
4350 trace_options_read(struct file
*filp
, char __user
*ubuf
, size_t cnt
,
4353 struct trace_option_dentry
*topt
= filp
->private_data
;
4356 if (topt
->flags
->val
& topt
->opt
->bit
)
4361 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, 2);
4365 trace_options_write(struct file
*filp
, const char __user
*ubuf
, size_t cnt
,
4368 struct trace_option_dentry
*topt
= filp
->private_data
;
4372 ret
= kstrtoul_from_user(ubuf
, cnt
, 10, &val
);
4376 if (val
!= 0 && val
!= 1)
4379 if (!!(topt
->flags
->val
& topt
->opt
->bit
) != val
) {
4380 mutex_lock(&trace_types_lock
);
4381 ret
= __set_tracer_option(current_trace
, topt
->flags
,
4383 mutex_unlock(&trace_types_lock
);
4394 static const struct file_operations trace_options_fops
= {
4395 .open
= tracing_open_generic
,
4396 .read
= trace_options_read
,
4397 .write
= trace_options_write
,
4398 .llseek
= generic_file_llseek
,
4402 trace_options_core_read(struct file
*filp
, char __user
*ubuf
, size_t cnt
,
4405 long index
= (long)filp
->private_data
;
4408 if (trace_flags
& (1 << index
))
4413 return simple_read_from_buffer(ubuf
, cnt
, ppos
, buf
, 2);
4417 trace_options_core_write(struct file
*filp
, const char __user
*ubuf
, size_t cnt
,
4420 long index
= (long)filp
->private_data
;
4424 ret
= kstrtoul_from_user(ubuf
, cnt
, 10, &val
);
4428 if (val
!= 0 && val
!= 1)
4430 set_tracer_flags(1 << index
, val
);
4437 static const struct file_operations trace_options_core_fops
= {
4438 .open
= tracing_open_generic
,
4439 .read
= trace_options_core_read
,
4440 .write
= trace_options_core_write
,
4441 .llseek
= generic_file_llseek
,
4444 struct dentry
*trace_create_file(const char *name
,
4446 struct dentry
*parent
,
4448 const struct file_operations
*fops
)
4452 ret
= debugfs_create_file(name
, mode
, parent
, data
, fops
);
4454 pr_warning("Could not create debugfs '%s' entry\n", name
);
4460 static struct dentry
*trace_options_init_dentry(void)
4462 struct dentry
*d_tracer
;
4463 static struct dentry
*t_options
;
4468 d_tracer
= tracing_init_dentry();
4472 t_options
= debugfs_create_dir("options", d_tracer
);
4474 pr_warning("Could not create debugfs directory 'options'\n");
4482 create_trace_option_file(struct trace_option_dentry
*topt
,
4483 struct tracer_flags
*flags
,
4484 struct tracer_opt
*opt
)
4486 struct dentry
*t_options
;
4488 t_options
= trace_options_init_dentry();
4492 topt
->flags
= flags
;
4495 topt
->entry
= trace_create_file(opt
->name
, 0644, t_options
, topt
,
4496 &trace_options_fops
);
4500 static struct trace_option_dentry
*
4501 create_trace_option_files(struct tracer
*tracer
)
4503 struct trace_option_dentry
*topts
;
4504 struct tracer_flags
*flags
;
4505 struct tracer_opt
*opts
;
4511 flags
= tracer
->flags
;
4513 if (!flags
|| !flags
->opts
)
4518 for (cnt
= 0; opts
[cnt
].name
; cnt
++)
4521 topts
= kcalloc(cnt
+ 1, sizeof(*topts
), GFP_KERNEL
);
4525 for (cnt
= 0; opts
[cnt
].name
; cnt
++)
4526 create_trace_option_file(&topts
[cnt
], flags
,
4533 destroy_trace_option_files(struct trace_option_dentry
*topts
)
4540 for (cnt
= 0; topts
[cnt
].opt
; cnt
++) {
4541 if (topts
[cnt
].entry
)
4542 debugfs_remove(topts
[cnt
].entry
);
4548 static struct dentry
*
4549 create_trace_option_core_file(const char *option
, long index
)
4551 struct dentry
*t_options
;
4553 t_options
= trace_options_init_dentry();
4557 return trace_create_file(option
, 0644, t_options
, (void *)index
,
4558 &trace_options_core_fops
);
4561 static __init
void create_trace_options_dir(void)
4563 struct dentry
*t_options
;
4566 t_options
= trace_options_init_dentry();
4570 for (i
= 0; trace_options
[i
]; i
++)
4571 create_trace_option_core_file(trace_options
[i
], i
);
4574 static __init
int tracer_init_debugfs(void)
4576 struct dentry
*d_tracer
;
4579 trace_access_lock_init();
4581 d_tracer
= tracing_init_dentry();
4583 trace_create_file("tracing_enabled", 0644, d_tracer
,
4584 &global_trace
, &tracing_ctrl_fops
);
4586 trace_create_file("trace_options", 0644, d_tracer
,
4587 NULL
, &tracing_iter_fops
);
4589 trace_create_file("tracing_cpumask", 0644, d_tracer
,
4590 NULL
, &tracing_cpumask_fops
);
4592 trace_create_file("trace", 0644, d_tracer
,
4593 (void *) TRACE_PIPE_ALL_CPU
, &tracing_fops
);
4595 trace_create_file("available_tracers", 0444, d_tracer
,
4596 &global_trace
, &show_traces_fops
);
4598 trace_create_file("current_tracer", 0644, d_tracer
,
4599 &global_trace
, &set_tracer_fops
);
4601 #ifdef CONFIG_TRACER_MAX_TRACE
4602 trace_create_file("tracing_max_latency", 0644, d_tracer
,
4603 &tracing_max_latency
, &tracing_max_lat_fops
);
4606 trace_create_file("tracing_thresh", 0644, d_tracer
,
4607 &tracing_thresh
, &tracing_max_lat_fops
);
4609 trace_create_file("README", 0444, d_tracer
,
4610 NULL
, &tracing_readme_fops
);
4612 trace_create_file("trace_pipe", 0444, d_tracer
,
4613 (void *) TRACE_PIPE_ALL_CPU
, &tracing_pipe_fops
);
4615 trace_create_file("buffer_size_kb", 0644, d_tracer
,
4616 &global_trace
, &tracing_entries_fops
);
4618 trace_create_file("buffer_total_size_kb", 0444, d_tracer
,
4619 &global_trace
, &tracing_total_entries_fops
);
4621 trace_create_file("free_buffer", 0644, d_tracer
,
4622 &global_trace
, &tracing_free_buffer_fops
);
4624 trace_create_file("trace_marker", 0220, d_tracer
,
4625 NULL
, &tracing_mark_fops
);
4627 trace_create_file("saved_cmdlines", 0444, d_tracer
,
4628 NULL
, &tracing_saved_cmdlines_fops
);
4630 trace_create_file("trace_clock", 0644, d_tracer
, NULL
,
4633 #ifdef CONFIG_DYNAMIC_FTRACE
4634 trace_create_file("dyn_ftrace_total_info", 0444, d_tracer
,
4635 &ftrace_update_tot_cnt
, &tracing_dyn_info_fops
);
4638 create_trace_options_dir();
4640 for_each_tracing_cpu(cpu
)
4641 tracing_init_debugfs_percpu(cpu
);
4646 static int trace_panic_handler(struct notifier_block
*this,
4647 unsigned long event
, void *unused
)
4649 if (ftrace_dump_on_oops
)
4650 ftrace_dump(ftrace_dump_on_oops
);
4654 static struct notifier_block trace_panic_notifier
= {
4655 .notifier_call
= trace_panic_handler
,
4657 .priority
= 150 /* priority: INT_MAX >= x >= 0 */
4660 static int trace_die_handler(struct notifier_block
*self
,
4666 if (ftrace_dump_on_oops
)
4667 ftrace_dump(ftrace_dump_on_oops
);
4675 static struct notifier_block trace_die_notifier
= {
4676 .notifier_call
= trace_die_handler
,
4681 * printk is set to max of 1024, we really don't need it that big.
4682 * Nothing should be printing 1000 characters anyway.
4684 #define TRACE_MAX_PRINT 1000
4687 * Define here KERN_TRACE so that we have one place to modify
4688 * it if we decide to change what log level the ftrace dump
4691 #define KERN_TRACE KERN_EMERG
4694 trace_printk_seq(struct trace_seq
*s
)
4696 /* Probably should print a warning here. */
4700 /* should be zero ended, but we are paranoid. */
4701 s
->buffer
[s
->len
] = 0;
4703 printk(KERN_TRACE
"%s", s
->buffer
);
4708 void trace_init_global_iter(struct trace_iterator
*iter
)
4710 iter
->tr
= &global_trace
;
4711 iter
->trace
= current_trace
;
4712 iter
->cpu_file
= TRACE_PIPE_ALL_CPU
;
4716 __ftrace_dump(bool disable_tracing
, enum ftrace_dump_mode oops_dump_mode
)
4718 static arch_spinlock_t ftrace_dump_lock
=
4719 (arch_spinlock_t
)__ARCH_SPIN_LOCK_UNLOCKED
;
4720 /* use static because iter can be a bit big for the stack */
4721 static struct trace_iterator iter
;
4722 unsigned int old_userobj
;
4723 static int dump_ran
;
4724 unsigned long flags
;
4728 local_irq_save(flags
);
4729 arch_spin_lock(&ftrace_dump_lock
);
4737 /* Did function tracer already get disabled? */
4738 if (ftrace_is_dead()) {
4739 printk("# WARNING: FUNCTION TRACING IS CORRUPTED\n");
4740 printk("# MAY BE MISSING FUNCTION EVENTS\n");
4743 if (disable_tracing
)
4746 trace_init_global_iter(&iter
);
4748 for_each_tracing_cpu(cpu
) {
4749 atomic_inc(&iter
.tr
->data
[cpu
]->disabled
);
4752 old_userobj
= trace_flags
& TRACE_ITER_SYM_USEROBJ
;
4754 /* don't look at user memory in panic mode */
4755 trace_flags
&= ~TRACE_ITER_SYM_USEROBJ
;
4757 /* Simulate the iterator */
4758 iter
.tr
= &global_trace
;
4759 iter
.trace
= current_trace
;
4761 switch (oops_dump_mode
) {
4763 iter
.cpu_file
= TRACE_PIPE_ALL_CPU
;
4766 iter
.cpu_file
= raw_smp_processor_id();
4771 printk(KERN_TRACE
"Bad dumping mode, switching to all CPUs dump\n");
4772 iter
.cpu_file
= TRACE_PIPE_ALL_CPU
;
4775 printk(KERN_TRACE
"Dumping ftrace buffer:\n");
4778 * We need to stop all tracing on all CPUS to read the
4779 * the next buffer. This is a bit expensive, but is
4780 * not done often. We fill all what we can read,
4781 * and then release the locks again.
4784 while (!trace_empty(&iter
)) {
4787 printk(KERN_TRACE
"---------------------------------\n");
4791 /* reset all but tr, trace, and overruns */
4792 memset(&iter
.seq
, 0,
4793 sizeof(struct trace_iterator
) -
4794 offsetof(struct trace_iterator
, seq
));
4795 iter
.iter_flags
|= TRACE_FILE_LAT_FMT
;
4798 if (trace_find_next_entry_inc(&iter
) != NULL
) {
4801 ret
= print_trace_line(&iter
);
4802 if (ret
!= TRACE_TYPE_NO_CONSUME
)
4803 trace_consume(&iter
);
4806 trace_printk_seq(&iter
.seq
);
4810 printk(KERN_TRACE
" (ftrace buffer empty)\n");
4812 printk(KERN_TRACE
"---------------------------------\n");
4815 /* Re-enable tracing if requested */
4816 if (!disable_tracing
) {
4817 trace_flags
|= old_userobj
;
4819 for_each_tracing_cpu(cpu
) {
4820 atomic_dec(&iter
.tr
->data
[cpu
]->disabled
);
4826 arch_spin_unlock(&ftrace_dump_lock
);
4827 local_irq_restore(flags
);
4830 /* By default: disable tracing after the dump */
4831 void ftrace_dump(enum ftrace_dump_mode oops_dump_mode
)
4833 __ftrace_dump(true, oops_dump_mode
);
4835 EXPORT_SYMBOL_GPL(ftrace_dump
);
4837 __init
static int tracer_alloc_buffers(void)
4840 enum ring_buffer_flags rb_flags
;
4845 if (!alloc_cpumask_var(&tracing_buffer_mask
, GFP_KERNEL
))
4848 if (!alloc_cpumask_var(&tracing_cpumask
, GFP_KERNEL
))
4849 goto out_free_buffer_mask
;
4851 /* To save memory, keep the ring buffer size to its minimum */
4852 if (ring_buffer_expanded
)
4853 ring_buf_size
= trace_buf_size
;
4857 rb_flags
= trace_flags
& TRACE_ITER_OVERWRITE
? RB_FL_OVERWRITE
: 0;
4859 cpumask_copy(tracing_buffer_mask
, cpu_possible_mask
);
4860 cpumask_copy(tracing_cpumask
, cpu_all_mask
);
4862 /* TODO: make the number of buffers hot pluggable with CPUS */
4863 global_trace
.buffer
= ring_buffer_alloc(ring_buf_size
, rb_flags
);
4864 if (!global_trace
.buffer
) {
4865 printk(KERN_ERR
"tracer: failed to allocate ring buffer!\n");
4867 goto out_free_cpumask
;
4869 global_trace
.entries
= ring_buffer_size(global_trace
.buffer
);
4872 #ifdef CONFIG_TRACER_MAX_TRACE
4873 max_tr
.buffer
= ring_buffer_alloc(1, rb_flags
);
4874 if (!max_tr
.buffer
) {
4875 printk(KERN_ERR
"tracer: failed to allocate max ring buffer!\n");
4877 ring_buffer_free(global_trace
.buffer
);
4878 goto out_free_cpumask
;
4883 /* Allocate the first page for all buffers */
4884 for_each_tracing_cpu(i
) {
4885 global_trace
.data
[i
] = &per_cpu(global_trace_cpu
, i
);
4886 max_tr
.data
[i
] = &per_cpu(max_tr_data
, i
);
4889 trace_init_cmdlines();
4891 register_tracer(&nop_trace
);
4892 current_trace
= &nop_trace
;
4893 /* All seems OK, enable tracing */
4894 tracing_disabled
= 0;
4896 atomic_notifier_chain_register(&panic_notifier_list
,
4897 &trace_panic_notifier
);
4899 register_die_notifier(&trace_die_notifier
);
4904 free_cpumask_var(tracing_cpumask
);
4905 out_free_buffer_mask
:
4906 free_cpumask_var(tracing_buffer_mask
);
4911 __init
static int clear_boot_tracer(void)
4914 * The default tracer at boot buffer is an init section.
4915 * This function is called in lateinit. If we did not
4916 * find the boot tracer, then clear it out, to prevent
4917 * later registration from accessing the buffer that is
4918 * about to be freed.
4920 if (!default_bootup_tracer
)
4923 printk(KERN_INFO
"ftrace bootup tracer '%s' not registered.\n",
4924 default_bootup_tracer
);
4925 default_bootup_tracer
= NULL
;
4930 early_initcall(tracer_alloc_buffers
);
4931 fs_initcall(tracer_init_debugfs
);
4932 late_initcall(clear_boot_tracer
);