2 * ring buffer based function tracer
4 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
5 * Copyright (C) 2008 Ingo Molnar <mingo@redhat.com>
7 * Originally taken from the RT patch by:
8 * Arnaldo Carvalho de Melo <acme@redhat.com>
10 * Based on code from the latency_tracer, that is:
11 * Copyright (C) 2004-2006 Ingo Molnar
12 * Copyright (C) 2004 William Lee Irwin III
14 #include <linux/ring_buffer.h>
15 #include <linux/utsrelease.h>
16 #include <linux/stacktrace.h>
17 #include <linux/writeback.h>
18 #include <linux/kallsyms.h>
19 #include <linux/seq_file.h>
20 #include <linux/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/ctype.h>
34 #include <linux/init.h>
35 #include <linux/poll.h>
36 #include <linux/gfp.h>
40 #include "trace_output.h"
42 #define TRACE_BUFFER_FLAGS (RB_FL_OVERWRITE)
44 unsigned long __read_mostly tracing_max_latency;
45 unsigned long __read_mostly tracing_thresh;
48 * We need to change this state when a selftest is running.
49 * A selftest will lurk into the ring-buffer to count the
50 * entries inserted during the selftest although some concurrent
51 * insertions into the ring-buffer such as trace_printk could occurred
52 * at the same time, giving false positive or negative results.
54 static bool __read_mostly tracing_selftest_running;
57 * If a tracer is running, we do not want to run SELFTEST.
59 static bool __read_mostly tracing_selftest_disabled;
61 /* For tracers that don't implement custom flags */
62 static struct tracer_opt dummy_tracer_opt[] = {
66 static struct tracer_flags dummy_tracer_flags = {
68 .opts = dummy_tracer_opt
71 static int dummy_set_flag(u32 old_flags, u32 bit, int set)
77 * Kill all tracing for good (never come back).
78 * It is initialized to 1 but will turn to zero if the initialization
79 * of the tracer is successful. But that is the only place that sets
82 static int tracing_disabled = 1;
84 static DEFINE_PER_CPU(local_t, ftrace_cpu_disabled);
86 static inline void ftrace_disable_cpu(void)
89 local_inc(&__get_cpu_var(ftrace_cpu_disabled));
92 static inline void ftrace_enable_cpu(void)
94 local_dec(&__get_cpu_var(ftrace_cpu_disabled));
98 static cpumask_var_t __read_mostly tracing_buffer_mask;
100 /* Define which cpu buffers are currently read in trace_pipe */
101 static cpumask_var_t tracing_reader_cpumask;
103 #define for_each_tracing_cpu(cpu) \
104 for_each_cpu(cpu, tracing_buffer_mask)
107 * ftrace_dump_on_oops - variable to dump ftrace buffer on oops
109 * If there is an oops (or kernel panic) and the ftrace_dump_on_oops
110 * is set, then ftrace_dump is called. This will output the contents
111 * of the ftrace buffers to the console. This is very useful for
112 * capturing traces that lead to crashes and outputing it to a
115 * It is default off, but you can enable it with either specifying
116 * "ftrace_dump_on_oops" in the kernel command line, or setting
117 * /proc/sys/kernel/ftrace_dump_on_oops to true.
119 int ftrace_dump_on_oops;
121 static int tracing_set_tracer(const char *buf);
123 #define BOOTUP_TRACER_SIZE 100
124 static char bootup_tracer_buf[BOOTUP_TRACER_SIZE] __initdata;
125 static char *default_bootup_tracer;
127 static int __init set_ftrace(char *str)
129 strncpy(bootup_tracer_buf, str, BOOTUP_TRACER_SIZE);
130 default_bootup_tracer = bootup_tracer_buf;
133 __setup("ftrace=", set_ftrace);
135 static int __init set_ftrace_dump_on_oops(char *str)
137 ftrace_dump_on_oops = 1;
140 __setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops);
143 ns2usecs(cycle_t nsec)
150 cycle_t ftrace_now(int cpu)
152 u64 ts = ring_buffer_time_stamp(cpu);
153 ring_buffer_normalize_time_stamp(cpu, &ts);
158 * The global_trace is the descriptor that holds the tracing
159 * buffers for the live tracing. For each CPU, it contains
160 * a link list of pages that will store trace entries. The
161 * page descriptor of the pages in the memory is used to hold
162 * the link list by linking the lru item in the page descriptor
163 * to each of the pages in the buffer per CPU.
165 * For each active CPU there is a data field that holds the
166 * pages for the buffer for that CPU. Each CPU has the same number
167 * of pages allocated for its buffer.
169 static struct trace_array global_trace;
171 static DEFINE_PER_CPU(struct trace_array_cpu, global_trace_cpu);
174 * The max_tr is used to snapshot the global_trace when a maximum
175 * latency is reached. Some tracers will use this to store a maximum
176 * trace while it continues examining live traces.
178 * The buffers for the max_tr are set up the same as the global_trace.
179 * When a snapshot is taken, the link list of the max_tr is swapped
180 * with the link list of the global_trace and the buffers are reset for
181 * the global_trace so the tracing can continue.
183 static struct trace_array max_tr;
185 static DEFINE_PER_CPU(struct trace_array_cpu, max_data);
187 /* tracer_enabled is used to toggle activation of a tracer */
188 static int tracer_enabled = 1;
191 * tracing_is_enabled - return tracer_enabled status
193 * This function is used by other tracers to know the status
194 * of the tracer_enabled flag. Tracers may use this function
195 * to know if it should enable their features when starting
196 * up. See irqsoff tracer for an example (start_irqsoff_tracer).
198 int tracing_is_enabled(void)
200 return tracer_enabled;
204 * trace_buf_size is the size in bytes that is allocated
205 * for a buffer. Note, the number of bytes is always rounded
208 * This number is purposely set to a low number of 16384.
209 * If the dump on oops happens, it will be much appreciated
210 * to not have to wait for all that output. Anyway this can be
211 * boot time and run time configurable.
213 #define TRACE_BUF_SIZE_DEFAULT 1441792UL /* 16384 * 88 (sizeof(entry)) */
215 static unsigned long trace_buf_size = TRACE_BUF_SIZE_DEFAULT;
217 /* trace_types holds a link list of available tracers. */
218 static struct tracer *trace_types __read_mostly;
220 /* current_trace points to the tracer that is currently active */
221 static struct tracer *current_trace __read_mostly;
224 * max_tracer_type_len is used to simplify the allocating of
225 * buffers to read userspace tracer names. We keep track of
226 * the longest tracer name registered.
228 static int max_tracer_type_len;
231 * trace_types_lock is used to protect the trace_types list.
232 * This lock is also used to keep user access serialized.
233 * Accesses from userspace will grab this lock while userspace
234 * activities happen inside the kernel.
236 static DEFINE_MUTEX(trace_types_lock);
238 /* trace_wait is a waitqueue for tasks blocked on trace_poll */
239 static DECLARE_WAIT_QUEUE_HEAD(trace_wait);
241 /* trace_flags holds trace_options default values */
242 unsigned long trace_flags = TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK |
243 TRACE_ITER_ANNOTATE | TRACE_ITER_CONTEXT_INFO;
246 * trace_wake_up - wake up tasks waiting for trace input
248 * Simply wakes up any task that is blocked on the trace_wait
249 * queue. These is used with trace_poll for tasks polling the trace.
251 void trace_wake_up(void)
254 * The runqueue_is_locked() can fail, but this is the best we
257 if (!(trace_flags & TRACE_ITER_BLOCK) && !runqueue_is_locked())
258 wake_up(&trace_wait);
261 static int __init set_buf_size(char *str)
263 unsigned long buf_size;
268 ret = strict_strtoul(str, 0, &buf_size);
269 /* nr_entries can not be zero */
270 if (ret < 0 || buf_size == 0)
272 trace_buf_size = buf_size;
275 __setup("trace_buf_size=", set_buf_size);
277 unsigned long nsecs_to_usecs(unsigned long nsecs)
282 /* These must match the bit postions in trace_iterator_flags */
283 static const char *trace_options[] = {
307 * ftrace_max_lock is used to protect the swapping of buffers
308 * when taking a max snapshot. The buffers themselves are
309 * protected by per_cpu spinlocks. But the action of the swap
310 * needs its own lock.
312 * This is defined as a raw_spinlock_t in order to help
313 * with performance when lockdep debugging is enabled.
315 static raw_spinlock_t ftrace_max_lock =
316 (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
319 * Copy the new maximum trace into the separate maximum-trace
320 * structure. (this way the maximum trace is permanently saved,
321 * for later retrieval via /debugfs/tracing/latency_trace)
324 __update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
326 struct trace_array_cpu *data = tr->data[cpu];
329 max_tr.time_start = data->preempt_timestamp;
331 data = max_tr.data[cpu];
332 data->saved_latency = tracing_max_latency;
334 memcpy(data->comm, tsk->comm, TASK_COMM_LEN);
335 data->pid = tsk->pid;
336 data->uid = task_uid(tsk);
337 data->nice = tsk->static_prio - 20 - MAX_RT_PRIO;
338 data->policy = tsk->policy;
339 data->rt_priority = tsk->rt_priority;
341 /* record this tasks comm */
342 tracing_record_cmdline(tsk);
345 ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, size_t cnt)
353 if (s->len <= s->readpos)
356 len = s->len - s->readpos;
359 ret = copy_to_user(ubuf, s->buffer + s->readpos, cnt);
369 ssize_t trace_seq_to_buffer(struct trace_seq *s, void *buf, size_t cnt)
374 if (s->len <= s->readpos)
377 len = s->len - s->readpos;
380 ret = memcpy(buf, s->buffer + s->readpos, cnt);
389 trace_print_seq(struct seq_file *m, struct trace_seq *s)
391 int len = s->len >= PAGE_SIZE ? PAGE_SIZE - 1 : s->len;
394 seq_puts(m, s->buffer);
400 * update_max_tr - snapshot all trace buffers from global_trace to max_tr
402 * @tsk: the task with the latency
403 * @cpu: The cpu that initiated the trace.
405 * Flip the buffers between the @tr and the max_tr and record information
406 * about which task was the cause of this latency.
409 update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
411 struct ring_buffer *buf = tr->buffer;
413 WARN_ON_ONCE(!irqs_disabled());
414 __raw_spin_lock(&ftrace_max_lock);
416 tr->buffer = max_tr.buffer;
419 ftrace_disable_cpu();
420 ring_buffer_reset(tr->buffer);
423 __update_max_tr(tr, tsk, cpu);
424 __raw_spin_unlock(&ftrace_max_lock);
428 * update_max_tr_single - only copy one trace over, and reset the rest
430 * @tsk - task with the latency
431 * @cpu - the cpu of the buffer to copy.
433 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
436 update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
440 WARN_ON_ONCE(!irqs_disabled());
441 __raw_spin_lock(&ftrace_max_lock);
443 ftrace_disable_cpu();
445 ring_buffer_reset(max_tr.buffer);
446 ret = ring_buffer_swap_cpu(max_tr.buffer, tr->buffer, cpu);
450 WARN_ON_ONCE(ret && ret != -EAGAIN);
452 __update_max_tr(tr, tsk, cpu);
453 __raw_spin_unlock(&ftrace_max_lock);
457 * register_tracer - register a tracer with the ftrace system.
458 * @type - the plugin for the tracer
460 * Register a new plugin tracer.
462 int register_tracer(struct tracer *type)
463 __releases(kernel_lock)
464 __acquires(kernel_lock)
471 pr_info("Tracer must have a name\n");
476 * When this gets called we hold the BKL which means that
477 * preemption is disabled. Various trace selftests however
478 * need to disable and enable preemption for successful tests.
479 * So we drop the BKL here and grab it after the tests again.
482 mutex_lock(&trace_types_lock);
484 tracing_selftest_running = true;
486 for (t = trace_types; t; t = t->next) {
487 if (strcmp(type->name, t->name) == 0) {
489 pr_info("Trace %s already registered\n",
497 type->set_flag = &dummy_set_flag;
499 type->flags = &dummy_tracer_flags;
501 if (!type->flags->opts)
502 type->flags->opts = dummy_tracer_opt;
503 if (!type->wait_pipe)
504 type->wait_pipe = default_wait_pipe;
507 #ifdef CONFIG_FTRACE_STARTUP_TEST
508 if (type->selftest && !tracing_selftest_disabled) {
509 struct tracer *saved_tracer = current_trace;
510 struct trace_array *tr = &global_trace;
514 * Run a selftest on this tracer.
515 * Here we reset the trace buffer, and set the current
516 * tracer to be this tracer. The tracer can then run some
517 * internal tracing to verify that everything is in order.
518 * If we fail, we do not register this tracer.
520 for_each_tracing_cpu(i)
521 tracing_reset(tr, i);
523 current_trace = type;
524 /* the test is responsible for initializing and enabling */
525 pr_info("Testing tracer %s: ", type->name);
526 ret = type->selftest(type, tr);
527 /* the test is responsible for resetting too */
528 current_trace = saved_tracer;
530 printk(KERN_CONT "FAILED!\n");
533 /* Only reset on passing, to avoid touching corrupted buffers */
534 for_each_tracing_cpu(i)
535 tracing_reset(tr, i);
537 printk(KERN_CONT "PASSED\n");
541 type->next = trace_types;
543 len = strlen(type->name);
544 if (len > max_tracer_type_len)
545 max_tracer_type_len = len;
548 tracing_selftest_running = false;
549 mutex_unlock(&trace_types_lock);
551 if (ret || !default_bootup_tracer)
554 if (strncmp(default_bootup_tracer, type->name, BOOTUP_TRACER_SIZE))
557 printk(KERN_INFO "Starting tracer '%s'\n", type->name);
558 /* Do we want this tracer to start on bootup? */
559 tracing_set_tracer(type->name);
560 default_bootup_tracer = NULL;
561 /* disable other selftests, since this will break it. */
562 tracing_selftest_disabled = 1;
563 #ifdef CONFIG_FTRACE_STARTUP_TEST
564 printk(KERN_INFO "Disabling FTRACE selftests due to running tracer '%s'\n",
573 void unregister_tracer(struct tracer *type)
578 mutex_lock(&trace_types_lock);
579 for (t = &trace_types; *t; t = &(*t)->next) {
583 pr_info("Trace %s not registered\n", type->name);
589 if (type == current_trace && tracer_enabled) {
592 if (current_trace->stop)
593 current_trace->stop(&global_trace);
594 current_trace = &nop_trace;
597 if (strlen(type->name) != max_tracer_type_len)
600 max_tracer_type_len = 0;
601 for (t = &trace_types; *t; t = &(*t)->next) {
602 len = strlen((*t)->name);
603 if (len > max_tracer_type_len)
604 max_tracer_type_len = len;
607 mutex_unlock(&trace_types_lock);
610 void tracing_reset(struct trace_array *tr, int cpu)
612 ftrace_disable_cpu();
613 ring_buffer_reset_cpu(tr->buffer, cpu);
617 void tracing_reset_online_cpus(struct trace_array *tr)
621 tr->time_start = ftrace_now(tr->cpu);
623 for_each_online_cpu(cpu)
624 tracing_reset(tr, cpu);
627 #define SAVED_CMDLINES 128
628 static unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1];
629 static unsigned map_cmdline_to_pid[SAVED_CMDLINES];
630 static char saved_cmdlines[SAVED_CMDLINES][TASK_COMM_LEN];
631 static int cmdline_idx;
632 static raw_spinlock_t trace_cmdline_lock = __RAW_SPIN_LOCK_UNLOCKED;
634 /* temporary disable recording */
635 static atomic_t trace_record_cmdline_disabled __read_mostly;
637 static void trace_init_cmdlines(void)
639 memset(&map_pid_to_cmdline, -1, sizeof(map_pid_to_cmdline));
640 memset(&map_cmdline_to_pid, -1, sizeof(map_cmdline_to_pid));
644 static int trace_stop_count;
645 static DEFINE_SPINLOCK(tracing_start_lock);
648 * ftrace_off_permanent - disable all ftrace code permanently
650 * This should only be called when a serious anomally has
651 * been detected. This will turn off the function tracing,
652 * ring buffers, and other tracing utilites. It takes no
653 * locks and can be called from any context.
655 void ftrace_off_permanent(void)
657 tracing_disabled = 1;
659 tracing_off_permanent();
663 * tracing_start - quick start of the tracer
665 * If tracing is enabled but was stopped by tracing_stop,
666 * this will start the tracer back up.
668 void tracing_start(void)
670 struct ring_buffer *buffer;
673 if (tracing_disabled)
676 spin_lock_irqsave(&tracing_start_lock, flags);
677 if (--trace_stop_count) {
678 if (trace_stop_count < 0) {
679 /* Someone screwed up their debugging */
681 trace_stop_count = 0;
687 buffer = global_trace.buffer;
689 ring_buffer_record_enable(buffer);
691 buffer = max_tr.buffer;
693 ring_buffer_record_enable(buffer);
697 spin_unlock_irqrestore(&tracing_start_lock, flags);
701 * tracing_stop - quick stop of the tracer
703 * Light weight way to stop tracing. Use in conjunction with
706 void tracing_stop(void)
708 struct ring_buffer *buffer;
712 spin_lock_irqsave(&tracing_start_lock, flags);
713 if (trace_stop_count++)
716 buffer = global_trace.buffer;
718 ring_buffer_record_disable(buffer);
720 buffer = max_tr.buffer;
722 ring_buffer_record_disable(buffer);
725 spin_unlock_irqrestore(&tracing_start_lock, flags);
728 void trace_stop_cmdline_recording(void);
730 static void trace_save_cmdline(struct task_struct *tsk)
735 if (!tsk->pid || unlikely(tsk->pid > PID_MAX_DEFAULT))
739 * It's not the end of the world if we don't get
740 * the lock, but we also don't want to spin
741 * nor do we want to disable interrupts,
742 * so if we miss here, then better luck next time.
744 if (!__raw_spin_trylock(&trace_cmdline_lock))
747 idx = map_pid_to_cmdline[tsk->pid];
748 if (idx >= SAVED_CMDLINES) {
749 idx = (cmdline_idx + 1) % SAVED_CMDLINES;
751 map = map_cmdline_to_pid[idx];
752 if (map <= PID_MAX_DEFAULT)
753 map_pid_to_cmdline[map] = (unsigned)-1;
755 map_pid_to_cmdline[tsk->pid] = idx;
760 memcpy(&saved_cmdlines[idx], tsk->comm, TASK_COMM_LEN);
762 __raw_spin_unlock(&trace_cmdline_lock);
765 char *trace_find_cmdline(int pid)
767 char *cmdline = "<...>";
773 if (pid > PID_MAX_DEFAULT)
776 map = map_pid_to_cmdline[pid];
777 if (map >= SAVED_CMDLINES)
780 cmdline = saved_cmdlines[map];
786 void tracing_record_cmdline(struct task_struct *tsk)
788 if (atomic_read(&trace_record_cmdline_disabled))
791 trace_save_cmdline(tsk);
795 tracing_generic_entry_update(struct trace_entry *entry, unsigned long flags,
798 struct task_struct *tsk = current;
800 entry->preempt_count = pc & 0xff;
801 entry->pid = (tsk) ? tsk->pid : 0;
802 entry->tgid = (tsk) ? tsk->tgid : 0;
804 #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
805 (irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) |
807 TRACE_FLAG_IRQS_NOSUPPORT |
809 ((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) |
810 ((pc & SOFTIRQ_MASK) ? TRACE_FLAG_SOFTIRQ : 0) |
811 (need_resched() ? TRACE_FLAG_NEED_RESCHED : 0);
814 struct ring_buffer_event *trace_buffer_lock_reserve(struct trace_array *tr,
817 unsigned long flags, int pc)
819 struct ring_buffer_event *event;
821 event = ring_buffer_lock_reserve(tr->buffer, len);
823 struct trace_entry *ent = ring_buffer_event_data(event);
825 tracing_generic_entry_update(ent, flags, pc);
831 static void ftrace_trace_stack(struct trace_array *tr,
832 unsigned long flags, int skip, int pc);
833 static void ftrace_trace_userstack(struct trace_array *tr,
834 unsigned long flags, int pc);
836 void trace_buffer_unlock_commit(struct trace_array *tr,
837 struct ring_buffer_event *event,
838 unsigned long flags, int pc)
840 ring_buffer_unlock_commit(tr->buffer, event);
842 ftrace_trace_stack(tr, flags, 6, pc);
843 ftrace_trace_userstack(tr, flags, pc);
847 struct ring_buffer_event *
848 trace_current_buffer_lock_reserve(unsigned char type, unsigned long len,
849 unsigned long flags, int pc)
851 return trace_buffer_lock_reserve(&global_trace,
852 type, len, flags, pc);
855 void trace_current_buffer_unlock_commit(struct ring_buffer_event *event,
856 unsigned long flags, int pc)
858 return trace_buffer_unlock_commit(&global_trace, event, flags, pc);
862 trace_function(struct trace_array *tr,
863 unsigned long ip, unsigned long parent_ip, unsigned long flags,
866 struct ring_buffer_event *event;
867 struct ftrace_entry *entry;
869 /* If we are reading the ring buffer, don't trace */
870 if (unlikely(local_read(&__get_cpu_var(ftrace_cpu_disabled))))
873 event = trace_buffer_lock_reserve(tr, TRACE_FN, sizeof(*entry),
877 entry = ring_buffer_event_data(event);
879 entry->parent_ip = parent_ip;
880 ring_buffer_unlock_commit(tr->buffer, event);
883 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
884 static void __trace_graph_entry(struct trace_array *tr,
885 struct ftrace_graph_ent *trace,
889 struct ring_buffer_event *event;
890 struct ftrace_graph_ent_entry *entry;
892 if (unlikely(local_read(&__get_cpu_var(ftrace_cpu_disabled))))
895 event = trace_buffer_lock_reserve(&global_trace, TRACE_GRAPH_ENT,
896 sizeof(*entry), flags, pc);
899 entry = ring_buffer_event_data(event);
900 entry->graph_ent = *trace;
901 ring_buffer_unlock_commit(global_trace.buffer, event);
904 static void __trace_graph_return(struct trace_array *tr,
905 struct ftrace_graph_ret *trace,
909 struct ring_buffer_event *event;
910 struct ftrace_graph_ret_entry *entry;
912 if (unlikely(local_read(&__get_cpu_var(ftrace_cpu_disabled))))
915 event = trace_buffer_lock_reserve(&global_trace, TRACE_GRAPH_RET,
916 sizeof(*entry), flags, pc);
919 entry = ring_buffer_event_data(event);
921 ring_buffer_unlock_commit(global_trace.buffer, event);
926 ftrace(struct trace_array *tr, struct trace_array_cpu *data,
927 unsigned long ip, unsigned long parent_ip, unsigned long flags,
930 if (likely(!atomic_read(&data->disabled)))
931 trace_function(tr, ip, parent_ip, flags, pc);
934 static void __ftrace_trace_stack(struct trace_array *tr,
938 #ifdef CONFIG_STACKTRACE
939 struct ring_buffer_event *event;
940 struct stack_entry *entry;
941 struct stack_trace trace;
943 event = trace_buffer_lock_reserve(tr, TRACE_STACK,
944 sizeof(*entry), flags, pc);
947 entry = ring_buffer_event_data(event);
948 memset(&entry->caller, 0, sizeof(entry->caller));
950 trace.nr_entries = 0;
951 trace.max_entries = FTRACE_STACK_ENTRIES;
953 trace.entries = entry->caller;
955 save_stack_trace(&trace);
956 ring_buffer_unlock_commit(tr->buffer, event);
960 static void ftrace_trace_stack(struct trace_array *tr,
964 if (!(trace_flags & TRACE_ITER_STACKTRACE))
967 __ftrace_trace_stack(tr, flags, skip, pc);
970 void __trace_stack(struct trace_array *tr,
974 __ftrace_trace_stack(tr, flags, skip, pc);
977 static void ftrace_trace_userstack(struct trace_array *tr,
978 unsigned long flags, int pc)
980 #ifdef CONFIG_STACKTRACE
981 struct ring_buffer_event *event;
982 struct userstack_entry *entry;
983 struct stack_trace trace;
985 if (!(trace_flags & TRACE_ITER_USERSTACKTRACE))
988 event = trace_buffer_lock_reserve(tr, TRACE_USER_STACK,
989 sizeof(*entry), flags, pc);
992 entry = ring_buffer_event_data(event);
994 memset(&entry->caller, 0, sizeof(entry->caller));
996 trace.nr_entries = 0;
997 trace.max_entries = FTRACE_STACK_ENTRIES;
999 trace.entries = entry->caller;
1001 save_stack_trace_user(&trace);
1002 ring_buffer_unlock_commit(tr->buffer, event);
1007 static void __trace_userstack(struct trace_array *tr, unsigned long flags)
1009 ftrace_trace_userstack(tr, flags, preempt_count());
1014 ftrace_trace_special(void *__tr,
1015 unsigned long arg1, unsigned long arg2, unsigned long arg3,
1018 struct ring_buffer_event *event;
1019 struct trace_array *tr = __tr;
1020 struct special_entry *entry;
1022 event = trace_buffer_lock_reserve(tr, TRACE_SPECIAL,
1023 sizeof(*entry), 0, pc);
1026 entry = ring_buffer_event_data(event);
1030 trace_buffer_unlock_commit(tr, event, 0, pc);
1034 __trace_special(void *__tr, void *__data,
1035 unsigned long arg1, unsigned long arg2, unsigned long arg3)
1037 ftrace_trace_special(__tr, arg1, arg2, arg3, preempt_count());
1041 tracing_sched_switch_trace(struct trace_array *tr,
1042 struct task_struct *prev,
1043 struct task_struct *next,
1044 unsigned long flags, int pc)
1046 struct ring_buffer_event *event;
1047 struct ctx_switch_entry *entry;
1049 event = trace_buffer_lock_reserve(tr, TRACE_CTX,
1050 sizeof(*entry), flags, pc);
1053 entry = ring_buffer_event_data(event);
1054 entry->prev_pid = prev->pid;
1055 entry->prev_prio = prev->prio;
1056 entry->prev_state = prev->state;
1057 entry->next_pid = next->pid;
1058 entry->next_prio = next->prio;
1059 entry->next_state = next->state;
1060 entry->next_cpu = task_cpu(next);
1061 trace_buffer_unlock_commit(tr, event, flags, pc);
1065 tracing_sched_wakeup_trace(struct trace_array *tr,
1066 struct task_struct *wakee,
1067 struct task_struct *curr,
1068 unsigned long flags, int pc)
1070 struct ring_buffer_event *event;
1071 struct ctx_switch_entry *entry;
1073 event = trace_buffer_lock_reserve(tr, TRACE_WAKE,
1074 sizeof(*entry), flags, pc);
1077 entry = ring_buffer_event_data(event);
1078 entry->prev_pid = curr->pid;
1079 entry->prev_prio = curr->prio;
1080 entry->prev_state = curr->state;
1081 entry->next_pid = wakee->pid;
1082 entry->next_prio = wakee->prio;
1083 entry->next_state = wakee->state;
1084 entry->next_cpu = task_cpu(wakee);
1086 ring_buffer_unlock_commit(tr->buffer, event);
1087 ftrace_trace_stack(tr, flags, 6, pc);
1088 ftrace_trace_userstack(tr, flags, pc);
1092 ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3)
1094 struct trace_array *tr = &global_trace;
1095 struct trace_array_cpu *data;
1096 unsigned long flags;
1100 if (tracing_disabled)
1103 pc = preempt_count();
1104 local_irq_save(flags);
1105 cpu = raw_smp_processor_id();
1106 data = tr->data[cpu];
1108 if (likely(atomic_inc_return(&data->disabled) == 1))
1109 ftrace_trace_special(tr, arg1, arg2, arg3, pc);
1111 atomic_dec(&data->disabled);
1112 local_irq_restore(flags);
1115 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
1116 int trace_graph_entry(struct ftrace_graph_ent *trace)
1118 struct trace_array *tr = &global_trace;
1119 struct trace_array_cpu *data;
1120 unsigned long flags;
1125 if (!ftrace_trace_task(current))
1128 if (!ftrace_graph_addr(trace->func))
1131 local_irq_save(flags);
1132 cpu = raw_smp_processor_id();
1133 data = tr->data[cpu];
1134 disabled = atomic_inc_return(&data->disabled);
1135 if (likely(disabled == 1)) {
1136 pc = preempt_count();
1137 __trace_graph_entry(tr, trace, flags, pc);
1139 /* Only do the atomic if it is not already set */
1140 if (!test_tsk_trace_graph(current))
1141 set_tsk_trace_graph(current);
1142 atomic_dec(&data->disabled);
1143 local_irq_restore(flags);
1148 void trace_graph_return(struct ftrace_graph_ret *trace)
1150 struct trace_array *tr = &global_trace;
1151 struct trace_array_cpu *data;
1152 unsigned long flags;
1157 local_irq_save(flags);
1158 cpu = raw_smp_processor_id();
1159 data = tr->data[cpu];
1160 disabled = atomic_inc_return(&data->disabled);
1161 if (likely(disabled == 1)) {
1162 pc = preempt_count();
1163 __trace_graph_return(tr, trace, flags, pc);
1166 clear_tsk_trace_graph(current);
1167 atomic_dec(&data->disabled);
1168 local_irq_restore(flags);
1170 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
1174 * trace_vprintk - write binary msg to tracing buffer
1177 int trace_vprintk(unsigned long ip, int depth, const char *fmt, va_list args)
1179 static DEFINE_SPINLOCK(trace_buf_lock);
1180 static u32 trace_buf[TRACE_BUF_SIZE];
1182 struct ring_buffer_event *event;
1183 struct trace_array *tr = &global_trace;
1184 struct trace_array_cpu *data;
1185 struct print_entry *entry;
1186 unsigned long flags;
1188 int cpu, len = 0, size, pc;
1190 if (unlikely(tracing_selftest_running || tracing_disabled))
1193 /* Don't pollute graph traces with trace_vprintk internals */
1194 pause_graph_tracing();
1196 pc = preempt_count();
1197 resched = ftrace_preempt_disable();
1198 cpu = raw_smp_processor_id();
1199 data = tr->data[cpu];
1201 if (unlikely(atomic_read(&data->disabled)))
1204 spin_lock_irqsave(&trace_buf_lock, flags);
1205 len = vbin_printf(trace_buf, TRACE_BUF_SIZE, fmt, args);
1207 if (len > TRACE_BUF_SIZE || len < 0)
1210 size = sizeof(*entry) + sizeof(u32) * len;
1211 event = trace_buffer_lock_reserve(tr, TRACE_PRINT, size, flags, pc);
1214 entry = ring_buffer_event_data(event);
1216 entry->depth = depth;
1219 memcpy(entry->buf, trace_buf, sizeof(u32) * len);
1220 ring_buffer_unlock_commit(tr->buffer, event);
1223 spin_unlock_irqrestore(&trace_buf_lock, flags);
1226 ftrace_preempt_enable(resched);
1227 unpause_graph_tracing();
1231 EXPORT_SYMBOL_GPL(trace_vprintk);
1233 enum trace_file_type {
1234 TRACE_FILE_LAT_FMT = 1,
1235 TRACE_FILE_ANNOTATE = 2,
1238 static void trace_iterator_increment(struct trace_iterator *iter)
1240 /* Don't allow ftrace to trace into the ring buffers */
1241 ftrace_disable_cpu();
1244 if (iter->buffer_iter[iter->cpu])
1245 ring_buffer_read(iter->buffer_iter[iter->cpu], NULL);
1247 ftrace_enable_cpu();
1250 static struct trace_entry *
1251 peek_next_entry(struct trace_iterator *iter, int cpu, u64 *ts)
1253 struct ring_buffer_event *event;
1254 struct ring_buffer_iter *buf_iter = iter->buffer_iter[cpu];
1256 /* Don't allow ftrace to trace into the ring buffers */
1257 ftrace_disable_cpu();
1260 event = ring_buffer_iter_peek(buf_iter, ts);
1262 event = ring_buffer_peek(iter->tr->buffer, cpu, ts);
1264 ftrace_enable_cpu();
1266 return event ? ring_buffer_event_data(event) : NULL;
1269 static struct trace_entry *
1270 __find_next_entry(struct trace_iterator *iter, int *ent_cpu, u64 *ent_ts)
1272 struct ring_buffer *buffer = iter->tr->buffer;
1273 struct trace_entry *ent, *next = NULL;
1274 int cpu_file = iter->cpu_file;
1275 u64 next_ts = 0, ts;
1280 * If we are in a per_cpu trace file, don't bother by iterating over
1281 * all cpu and peek directly.
1283 if (cpu_file > TRACE_PIPE_ALL_CPU) {
1284 if (ring_buffer_empty_cpu(buffer, cpu_file))
1286 ent = peek_next_entry(iter, cpu_file, ent_ts);
1288 *ent_cpu = cpu_file;
1293 for_each_tracing_cpu(cpu) {
1295 if (ring_buffer_empty_cpu(buffer, cpu))
1298 ent = peek_next_entry(iter, cpu, &ts);
1301 * Pick the entry with the smallest timestamp:
1303 if (ent && (!next || ts < next_ts)) {
1311 *ent_cpu = next_cpu;
1319 /* Find the next real entry, without updating the iterator itself */
1320 struct trace_entry *trace_find_next_entry(struct trace_iterator *iter,
1321 int *ent_cpu, u64 *ent_ts)
1323 return __find_next_entry(iter, ent_cpu, ent_ts);
1326 /* Find the next real entry, and increment the iterator to the next entry */
1327 static void *find_next_entry_inc(struct trace_iterator *iter)
1329 iter->ent = __find_next_entry(iter, &iter->cpu, &iter->ts);
1332 trace_iterator_increment(iter);
1334 return iter->ent ? iter : NULL;
1337 static void trace_consume(struct trace_iterator *iter)
1339 /* Don't allow ftrace to trace into the ring buffers */
1340 ftrace_disable_cpu();
1341 ring_buffer_consume(iter->tr->buffer, iter->cpu, &iter->ts);
1342 ftrace_enable_cpu();
1345 static void *s_next(struct seq_file *m, void *v, loff_t *pos)
1347 struct trace_iterator *iter = m->private;
1353 /* can't go backwards */
1358 ent = find_next_entry_inc(iter);
1362 while (ent && iter->idx < i)
1363 ent = find_next_entry_inc(iter);
1371 * No necessary locking here. The worst thing which can
1372 * happen is loosing events consumed at the same time
1373 * by a trace_pipe reader.
1374 * Other than that, we don't risk to crash the ring buffer
1375 * because it serializes the readers.
1377 * The current tracer is copied to avoid a global locking
1380 static void *s_start(struct seq_file *m, loff_t *pos)
1382 struct trace_iterator *iter = m->private;
1383 static struct tracer *old_tracer;
1384 int cpu_file = iter->cpu_file;
1389 /* copy the tracer to avoid using a global lock all around */
1390 mutex_lock(&trace_types_lock);
1391 if (unlikely(old_tracer != current_trace && current_trace)) {
1392 old_tracer = current_trace;
1393 *iter->trace = *current_trace;
1395 mutex_unlock(&trace_types_lock);
1397 atomic_inc(&trace_record_cmdline_disabled);
1399 if (*pos != iter->pos) {
1404 ftrace_disable_cpu();
1406 if (cpu_file == TRACE_PIPE_ALL_CPU) {
1407 for_each_tracing_cpu(cpu)
1408 ring_buffer_iter_reset(iter->buffer_iter[cpu]);
1410 ring_buffer_iter_reset(iter->buffer_iter[cpu_file]);
1413 ftrace_enable_cpu();
1415 for (p = iter; p && l < *pos; p = s_next(m, p, &l))
1420 p = s_next(m, p, &l);
1426 static void s_stop(struct seq_file *m, void *p)
1428 atomic_dec(&trace_record_cmdline_disabled);
1431 static void print_lat_help_header(struct seq_file *m)
1433 seq_puts(m, "# _------=> CPU# \n");
1434 seq_puts(m, "# / _-----=> irqs-off \n");
1435 seq_puts(m, "# | / _----=> need-resched \n");
1436 seq_puts(m, "# || / _---=> hardirq/softirq \n");
1437 seq_puts(m, "# ||| / _--=> preempt-depth \n");
1438 seq_puts(m, "# |||| / \n");
1439 seq_puts(m, "# ||||| delay \n");
1440 seq_puts(m, "# cmd pid ||||| time | caller \n");
1441 seq_puts(m, "# \\ / ||||| \\ | / \n");
1444 static void print_func_help_header(struct seq_file *m)
1446 seq_puts(m, "# TASK-PID CPU# TIMESTAMP FUNCTION\n");
1447 seq_puts(m, "# | | | | |\n");
1452 print_trace_header(struct seq_file *m, struct trace_iterator *iter)
1454 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1455 struct trace_array *tr = iter->tr;
1456 struct trace_array_cpu *data = tr->data[tr->cpu];
1457 struct tracer *type = current_trace;
1458 unsigned long total;
1459 unsigned long entries;
1460 const char *name = "preemption";
1465 entries = ring_buffer_entries(iter->tr->buffer);
1467 ring_buffer_overruns(iter->tr->buffer);
1469 seq_printf(m, "# %s latency trace v1.1.5 on %s\n",
1471 seq_puts(m, "# -----------------------------------"
1472 "---------------------------------\n");
1473 seq_printf(m, "# latency: %lu us, #%lu/%lu, CPU#%d |"
1474 " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
1475 nsecs_to_usecs(data->saved_latency),
1479 #if defined(CONFIG_PREEMPT_NONE)
1481 #elif defined(CONFIG_PREEMPT_VOLUNTARY)
1483 #elif defined(CONFIG_PREEMPT)
1488 /* These are reserved for later use */
1491 seq_printf(m, " #P:%d)\n", num_online_cpus());
1495 seq_puts(m, "# -----------------\n");
1496 seq_printf(m, "# | task: %.16s-%d "
1497 "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
1498 data->comm, data->pid, data->uid, data->nice,
1499 data->policy, data->rt_priority);
1500 seq_puts(m, "# -----------------\n");
1502 if (data->critical_start) {
1503 seq_puts(m, "# => started at: ");
1504 seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags);
1505 trace_print_seq(m, &iter->seq);
1506 seq_puts(m, "\n# => ended at: ");
1507 seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags);
1508 trace_print_seq(m, &iter->seq);
1515 static void test_cpu_buff_start(struct trace_iterator *iter)
1517 struct trace_seq *s = &iter->seq;
1519 if (!(trace_flags & TRACE_ITER_ANNOTATE))
1522 if (!(iter->iter_flags & TRACE_FILE_ANNOTATE))
1525 if (cpumask_test_cpu(iter->cpu, iter->started))
1528 cpumask_set_cpu(iter->cpu, iter->started);
1529 trace_seq_printf(s, "##### CPU %u buffer started ####\n", iter->cpu);
1532 static enum print_line_t print_trace_fmt(struct trace_iterator *iter)
1534 struct trace_seq *s = &iter->seq;
1535 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1536 struct trace_entry *entry;
1537 struct trace_event *event;
1541 test_cpu_buff_start(iter);
1543 event = ftrace_find_event(entry->type);
1545 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
1546 if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
1547 if (!trace_print_lat_context(iter))
1550 if (!trace_print_context(iter))
1556 return event->trace(iter, sym_flags);
1558 if (!trace_seq_printf(s, "Unknown type %d\n", entry->type))
1561 return TRACE_TYPE_HANDLED;
1563 return TRACE_TYPE_PARTIAL_LINE;
1566 static enum print_line_t print_raw_fmt(struct trace_iterator *iter)
1568 struct trace_seq *s = &iter->seq;
1569 struct trace_entry *entry;
1570 struct trace_event *event;
1574 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
1575 if (!trace_seq_printf(s, "%d %d %llu ",
1576 entry->pid, iter->cpu, iter->ts))
1580 event = ftrace_find_event(entry->type);
1582 return event->raw(iter, 0);
1584 if (!trace_seq_printf(s, "%d ?\n", entry->type))
1587 return TRACE_TYPE_HANDLED;
1589 return TRACE_TYPE_PARTIAL_LINE;
1592 static enum print_line_t print_hex_fmt(struct trace_iterator *iter)
1594 struct trace_seq *s = &iter->seq;
1595 unsigned char newline = '\n';
1596 struct trace_entry *entry;
1597 struct trace_event *event;
1601 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
1602 SEQ_PUT_HEX_FIELD_RET(s, entry->pid);
1603 SEQ_PUT_HEX_FIELD_RET(s, iter->cpu);
1604 SEQ_PUT_HEX_FIELD_RET(s, iter->ts);
1607 event = ftrace_find_event(entry->type);
1609 enum print_line_t ret = event->hex(iter, 0);
1610 if (ret != TRACE_TYPE_HANDLED)
1614 SEQ_PUT_FIELD_RET(s, newline);
1616 return TRACE_TYPE_HANDLED;
1619 static enum print_line_t print_printk_msg_only(struct trace_iterator *iter)
1621 struct trace_seq *s = &iter->seq;
1622 struct trace_entry *entry = iter->ent;
1623 struct print_entry *field;
1626 trace_assign_type(field, entry);
1628 ret = trace_seq_bprintf(s, field->fmt, field->buf);
1630 return TRACE_TYPE_PARTIAL_LINE;
1632 return TRACE_TYPE_HANDLED;
1635 static enum print_line_t print_bin_fmt(struct trace_iterator *iter)
1637 struct trace_seq *s = &iter->seq;
1638 struct trace_entry *entry;
1639 struct trace_event *event;
1643 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
1644 SEQ_PUT_FIELD_RET(s, entry->pid);
1645 SEQ_PUT_FIELD_RET(s, iter->cpu);
1646 SEQ_PUT_FIELD_RET(s, iter->ts);
1649 event = ftrace_find_event(entry->type);
1650 return event ? event->binary(iter, 0) : TRACE_TYPE_HANDLED;
1653 static int trace_empty(struct trace_iterator *iter)
1657 for_each_tracing_cpu(cpu) {
1658 if (iter->buffer_iter[cpu]) {
1659 if (!ring_buffer_iter_empty(iter->buffer_iter[cpu]))
1662 if (!ring_buffer_empty_cpu(iter->tr->buffer, cpu))
1670 static enum print_line_t print_trace_line(struct trace_iterator *iter)
1672 enum print_line_t ret;
1674 if (iter->trace && iter->trace->print_line) {
1675 ret = iter->trace->print_line(iter);
1676 if (ret != TRACE_TYPE_UNHANDLED)
1680 if (iter->ent->type == TRACE_PRINT &&
1681 trace_flags & TRACE_ITER_PRINTK &&
1682 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
1683 return print_printk_msg_only(iter);
1685 if (trace_flags & TRACE_ITER_BIN)
1686 return print_bin_fmt(iter);
1688 if (trace_flags & TRACE_ITER_HEX)
1689 return print_hex_fmt(iter);
1691 if (trace_flags & TRACE_ITER_RAW)
1692 return print_raw_fmt(iter);
1694 return print_trace_fmt(iter);
1697 static int s_show(struct seq_file *m, void *v)
1699 struct trace_iterator *iter = v;
1701 if (iter->ent == NULL) {
1703 seq_printf(m, "# tracer: %s\n", iter->trace->name);
1706 if (iter->trace && iter->trace->print_header)
1707 iter->trace->print_header(m);
1708 else if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
1709 /* print nothing if the buffers are empty */
1710 if (trace_empty(iter))
1712 print_trace_header(m, iter);
1713 if (!(trace_flags & TRACE_ITER_VERBOSE))
1714 print_lat_help_header(m);
1716 if (!(trace_flags & TRACE_ITER_VERBOSE))
1717 print_func_help_header(m);
1720 print_trace_line(iter);
1721 trace_print_seq(m, &iter->seq);
1727 static struct seq_operations tracer_seq_ops = {
1734 static struct trace_iterator *
1735 __tracing_open(struct inode *inode, struct file *file)
1737 long cpu_file = (long) inode->i_private;
1738 void *fail_ret = ERR_PTR(-ENOMEM);
1739 struct trace_iterator *iter;
1743 if (tracing_disabled)
1744 return ERR_PTR(-ENODEV);
1746 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
1748 return ERR_PTR(-ENOMEM);
1751 * We make a copy of the current tracer to avoid concurrent
1752 * changes on it while we are reading.
1754 mutex_lock(&trace_types_lock);
1755 iter->trace = kzalloc(sizeof(*iter->trace), GFP_KERNEL);
1760 *iter->trace = *current_trace;
1762 if (current_trace && current_trace->print_max)
1765 iter->tr = &global_trace;
1767 mutex_init(&iter->mutex);
1768 iter->cpu_file = cpu_file;
1770 /* Notify the tracer early; before we stop tracing. */
1771 if (iter->trace && iter->trace->open)
1772 iter->trace->open(iter);
1774 /* Annotate start of buffers if we had overruns */
1775 if (ring_buffer_overruns(iter->tr->buffer))
1776 iter->iter_flags |= TRACE_FILE_ANNOTATE;
1778 if (iter->cpu_file == TRACE_PIPE_ALL_CPU) {
1779 for_each_tracing_cpu(cpu) {
1781 iter->buffer_iter[cpu] =
1782 ring_buffer_read_start(iter->tr->buffer, cpu);
1784 if (!iter->buffer_iter[cpu])
1788 cpu = iter->cpu_file;
1789 iter->buffer_iter[cpu] =
1790 ring_buffer_read_start(iter->tr->buffer, cpu);
1792 if (!iter->buffer_iter[cpu])
1796 /* TODO stop tracer */
1797 ret = seq_open(file, &tracer_seq_ops);
1799 fail_ret = ERR_PTR(ret);
1803 m = file->private_data;
1806 /* stop the trace while dumping */
1809 mutex_unlock(&trace_types_lock);
1814 for_each_tracing_cpu(cpu) {
1815 if (iter->buffer_iter[cpu])
1816 ring_buffer_read_finish(iter->buffer_iter[cpu]);
1819 mutex_unlock(&trace_types_lock);
1826 int tracing_open_generic(struct inode *inode, struct file *filp)
1828 if (tracing_disabled)
1831 filp->private_data = inode->i_private;
1835 static int tracing_release(struct inode *inode, struct file *file)
1837 struct seq_file *m = (struct seq_file *)file->private_data;
1838 struct trace_iterator *iter = m->private;
1841 mutex_lock(&trace_types_lock);
1842 for_each_tracing_cpu(cpu) {
1843 if (iter->buffer_iter[cpu])
1844 ring_buffer_read_finish(iter->buffer_iter[cpu]);
1847 if (iter->trace && iter->trace->close)
1848 iter->trace->close(iter);
1850 /* reenable tracing if it was previously enabled */
1852 mutex_unlock(&trace_types_lock);
1854 seq_release(inode, file);
1855 mutex_destroy(&iter->mutex);
1861 static int tracing_open(struct inode *inode, struct file *file)
1863 struct trace_iterator *iter;
1866 iter = __tracing_open(inode, file);
1868 ret = PTR_ERR(iter);
1869 else if (trace_flags & TRACE_ITER_LATENCY_FMT)
1870 iter->iter_flags |= TRACE_FILE_LAT_FMT;
1876 t_next(struct seq_file *m, void *v, loff_t *pos)
1878 struct tracer *t = m->private;
1890 static void *t_start(struct seq_file *m, loff_t *pos)
1892 struct tracer *t = m->private;
1895 mutex_lock(&trace_types_lock);
1896 for (; t && l < *pos; t = t_next(m, t, &l))
1902 static void t_stop(struct seq_file *m, void *p)
1904 mutex_unlock(&trace_types_lock);
1907 static int t_show(struct seq_file *m, void *v)
1909 struct tracer *t = v;
1914 seq_printf(m, "%s", t->name);
1923 static struct seq_operations show_traces_seq_ops = {
1930 static int show_traces_open(struct inode *inode, struct file *file)
1934 if (tracing_disabled)
1937 ret = seq_open(file, &show_traces_seq_ops);
1939 struct seq_file *m = file->private_data;
1940 m->private = trace_types;
1946 static const struct file_operations tracing_fops = {
1947 .open = tracing_open,
1949 .llseek = seq_lseek,
1950 .release = tracing_release,
1953 static const struct file_operations show_traces_fops = {
1954 .open = show_traces_open,
1956 .release = seq_release,
1960 * Only trace on a CPU if the bitmask is set:
1962 static cpumask_var_t tracing_cpumask;
1965 * The tracer itself will not take this lock, but still we want
1966 * to provide a consistent cpumask to user-space:
1968 static DEFINE_MUTEX(tracing_cpumask_update_lock);
1971 * Temporary storage for the character representation of the
1972 * CPU bitmask (and one more byte for the newline):
1974 static char mask_str[NR_CPUS + 1];
1977 tracing_cpumask_read(struct file *filp, char __user *ubuf,
1978 size_t count, loff_t *ppos)
1982 mutex_lock(&tracing_cpumask_update_lock);
1984 len = cpumask_scnprintf(mask_str, count, tracing_cpumask);
1985 if (count - len < 2) {
1989 len += sprintf(mask_str + len, "\n");
1990 count = simple_read_from_buffer(ubuf, count, ppos, mask_str, NR_CPUS+1);
1993 mutex_unlock(&tracing_cpumask_update_lock);
1999 tracing_cpumask_write(struct file *filp, const char __user *ubuf,
2000 size_t count, loff_t *ppos)
2003 cpumask_var_t tracing_cpumask_new;
2005 if (!alloc_cpumask_var(&tracing_cpumask_new, GFP_KERNEL))
2008 mutex_lock(&tracing_cpumask_update_lock);
2009 err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
2013 local_irq_disable();
2014 __raw_spin_lock(&ftrace_max_lock);
2015 for_each_tracing_cpu(cpu) {
2017 * Increase/decrease the disabled counter if we are
2018 * about to flip a bit in the cpumask:
2020 if (cpumask_test_cpu(cpu, tracing_cpumask) &&
2021 !cpumask_test_cpu(cpu, tracing_cpumask_new)) {
2022 atomic_inc(&global_trace.data[cpu]->disabled);
2024 if (!cpumask_test_cpu(cpu, tracing_cpumask) &&
2025 cpumask_test_cpu(cpu, tracing_cpumask_new)) {
2026 atomic_dec(&global_trace.data[cpu]->disabled);
2029 __raw_spin_unlock(&ftrace_max_lock);
2032 cpumask_copy(tracing_cpumask, tracing_cpumask_new);
2034 mutex_unlock(&tracing_cpumask_update_lock);
2035 free_cpumask_var(tracing_cpumask_new);
2040 mutex_unlock(&tracing_cpumask_update_lock);
2041 free_cpumask_var(tracing_cpumask);
2046 static const struct file_operations tracing_cpumask_fops = {
2047 .open = tracing_open_generic,
2048 .read = tracing_cpumask_read,
2049 .write = tracing_cpumask_write,
2053 tracing_trace_options_read(struct file *filp, char __user *ubuf,
2054 size_t cnt, loff_t *ppos)
2056 struct tracer_opt *trace_opts;
2064 /* calculate max size */
2065 for (i = 0; trace_options[i]; i++) {
2066 len += strlen(trace_options[i]);
2067 len += 3; /* "no" and newline */
2070 mutex_lock(&trace_types_lock);
2071 tracer_flags = current_trace->flags->val;
2072 trace_opts = current_trace->flags->opts;
2075 * Increase the size with names of options specific
2076 * of the current tracer.
2078 for (i = 0; trace_opts[i].name; i++) {
2079 len += strlen(trace_opts[i].name);
2080 len += 3; /* "no" and newline */
2083 /* +2 for \n and \0 */
2084 buf = kmalloc(len + 2, GFP_KERNEL);
2086 mutex_unlock(&trace_types_lock);
2090 for (i = 0; trace_options[i]; i++) {
2091 if (trace_flags & (1 << i))
2092 r += sprintf(buf + r, "%s\n", trace_options[i]);
2094 r += sprintf(buf + r, "no%s\n", trace_options[i]);
2097 for (i = 0; trace_opts[i].name; i++) {
2098 if (tracer_flags & trace_opts[i].bit)
2099 r += sprintf(buf + r, "%s\n",
2100 trace_opts[i].name);
2102 r += sprintf(buf + r, "no%s\n",
2103 trace_opts[i].name);
2105 mutex_unlock(&trace_types_lock);
2107 WARN_ON(r >= len + 2);
2109 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2115 /* Try to assign a tracer specific option */
2116 static int set_tracer_option(struct tracer *trace, char *cmp, int neg)
2118 struct tracer_flags *trace_flags = trace->flags;
2119 struct tracer_opt *opts = NULL;
2123 for (i = 0; trace_flags->opts[i].name; i++) {
2124 opts = &trace_flags->opts[i];
2125 len = strlen(opts->name);
2127 if (strncmp(cmp, opts->name, len) == 0) {
2128 ret = trace->set_flag(trace_flags->val,
2134 if (!trace_flags->opts[i].name)
2137 /* Refused to handle */
2142 trace_flags->val &= ~opts->bit;
2144 trace_flags->val |= opts->bit;
2150 tracing_trace_options_write(struct file *filp, const char __user *ubuf,
2151 size_t cnt, loff_t *ppos)
2159 if (cnt >= sizeof(buf))
2162 if (copy_from_user(&buf, ubuf, cnt))
2167 if (strncmp(buf, "no", 2) == 0) {
2172 for (i = 0; trace_options[i]; i++) {
2173 int len = strlen(trace_options[i]);
2175 if (strncmp(cmp, trace_options[i], len) == 0) {
2177 trace_flags &= ~(1 << i);
2179 trace_flags |= (1 << i);
2184 /* If no option could be set, test the specific tracer options */
2185 if (!trace_options[i]) {
2186 mutex_lock(&trace_types_lock);
2187 ret = set_tracer_option(current_trace, cmp, neg);
2188 mutex_unlock(&trace_types_lock);
2198 static const struct file_operations tracing_iter_fops = {
2199 .open = tracing_open_generic,
2200 .read = tracing_trace_options_read,
2201 .write = tracing_trace_options_write,
2204 static const char readme_msg[] =
2205 "tracing mini-HOWTO:\n\n"
2207 "# mount -t debugfs nodev /debug\n\n"
2208 "# cat /debug/tracing/available_tracers\n"
2209 "wakeup preemptirqsoff preemptoff irqsoff ftrace sched_switch none\n\n"
2210 "# cat /debug/tracing/current_tracer\n"
2212 "# echo sched_switch > /debug/tracing/current_tracer\n"
2213 "# cat /debug/tracing/current_tracer\n"
2215 "# cat /debug/tracing/trace_options\n"
2216 "noprint-parent nosym-offset nosym-addr noverbose\n"
2217 "# echo print-parent > /debug/tracing/trace_options\n"
2218 "# echo 1 > /debug/tracing/tracing_enabled\n"
2219 "# cat /debug/tracing/trace > /tmp/trace.txt\n"
2220 "echo 0 > /debug/tracing/tracing_enabled\n"
2224 tracing_readme_read(struct file *filp, char __user *ubuf,
2225 size_t cnt, loff_t *ppos)
2227 return simple_read_from_buffer(ubuf, cnt, ppos,
2228 readme_msg, strlen(readme_msg));
2231 static const struct file_operations tracing_readme_fops = {
2232 .open = tracing_open_generic,
2233 .read = tracing_readme_read,
2237 tracing_ctrl_read(struct file *filp, char __user *ubuf,
2238 size_t cnt, loff_t *ppos)
2243 r = sprintf(buf, "%u\n", tracer_enabled);
2244 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2248 tracing_ctrl_write(struct file *filp, const char __user *ubuf,
2249 size_t cnt, loff_t *ppos)
2251 struct trace_array *tr = filp->private_data;
2256 if (cnt >= sizeof(buf))
2259 if (copy_from_user(&buf, ubuf, cnt))
2264 ret = strict_strtoul(buf, 10, &val);
2270 mutex_lock(&trace_types_lock);
2271 if (tracer_enabled ^ val) {
2274 if (current_trace->start)
2275 current_trace->start(tr);
2280 if (current_trace->stop)
2281 current_trace->stop(tr);
2284 mutex_unlock(&trace_types_lock);
2292 tracing_set_trace_read(struct file *filp, char __user *ubuf,
2293 size_t cnt, loff_t *ppos)
2295 char buf[max_tracer_type_len+2];
2298 mutex_lock(&trace_types_lock);
2300 r = sprintf(buf, "%s\n", current_trace->name);
2302 r = sprintf(buf, "\n");
2303 mutex_unlock(&trace_types_lock);
2305 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2308 int tracer_init(struct tracer *t, struct trace_array *tr)
2310 tracing_reset_online_cpus(tr);
2314 struct trace_option_dentry;
2316 static struct trace_option_dentry *
2317 create_trace_option_files(struct tracer *tracer);
2320 destroy_trace_option_files(struct trace_option_dentry *topts);
2322 static int tracing_set_tracer(const char *buf)
2324 static struct trace_option_dentry *topts;
2325 struct trace_array *tr = &global_trace;
2329 mutex_lock(&trace_types_lock);
2330 for (t = trace_types; t; t = t->next) {
2331 if (strcmp(t->name, buf) == 0)
2338 if (t == current_trace)
2341 trace_branch_disable();
2342 if (current_trace && current_trace->reset)
2343 current_trace->reset(tr);
2345 destroy_trace_option_files(topts);
2349 topts = create_trace_option_files(current_trace);
2352 ret = tracer_init(t, tr);
2357 trace_branch_enable(tr);
2359 mutex_unlock(&trace_types_lock);
2365 tracing_set_trace_write(struct file *filp, const char __user *ubuf,
2366 size_t cnt, loff_t *ppos)
2368 char buf[max_tracer_type_len+1];
2375 if (cnt > max_tracer_type_len)
2376 cnt = max_tracer_type_len;
2378 if (copy_from_user(&buf, ubuf, cnt))
2383 /* strip ending whitespace. */
2384 for (i = cnt - 1; i > 0 && isspace(buf[i]); i--)
2387 err = tracing_set_tracer(buf);
2397 tracing_max_lat_read(struct file *filp, char __user *ubuf,
2398 size_t cnt, loff_t *ppos)
2400 unsigned long *ptr = filp->private_data;
2404 r = snprintf(buf, sizeof(buf), "%ld\n",
2405 *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
2406 if (r > sizeof(buf))
2408 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2412 tracing_max_lat_write(struct file *filp, const char __user *ubuf,
2413 size_t cnt, loff_t *ppos)
2415 unsigned long *ptr = filp->private_data;
2420 if (cnt >= sizeof(buf))
2423 if (copy_from_user(&buf, ubuf, cnt))
2428 ret = strict_strtoul(buf, 10, &val);
2437 static int tracing_open_pipe(struct inode *inode, struct file *filp)
2439 long cpu_file = (long) inode->i_private;
2440 struct trace_iterator *iter;
2443 if (tracing_disabled)
2446 mutex_lock(&trace_types_lock);
2448 /* We only allow one reader per cpu */
2449 if (cpu_file == TRACE_PIPE_ALL_CPU) {
2450 if (!cpumask_empty(tracing_reader_cpumask)) {
2454 cpumask_setall(tracing_reader_cpumask);
2456 if (!cpumask_test_cpu(cpu_file, tracing_reader_cpumask))
2457 cpumask_set_cpu(cpu_file, tracing_reader_cpumask);
2464 /* create a buffer to store the information to pass to userspace */
2465 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2472 * We make a copy of the current tracer to avoid concurrent
2473 * changes on it while we are reading.
2475 iter->trace = kmalloc(sizeof(*iter->trace), GFP_KERNEL);
2481 *iter->trace = *current_trace;
2483 if (!alloc_cpumask_var(&iter->started, GFP_KERNEL)) {
2488 /* trace pipe does not show start of buffer */
2489 cpumask_setall(iter->started);
2491 iter->cpu_file = cpu_file;
2492 iter->tr = &global_trace;
2493 mutex_init(&iter->mutex);
2494 filp->private_data = iter;
2496 if (iter->trace->pipe_open)
2497 iter->trace->pipe_open(iter);
2500 mutex_unlock(&trace_types_lock);
2506 mutex_unlock(&trace_types_lock);
2510 static int tracing_release_pipe(struct inode *inode, struct file *file)
2512 struct trace_iterator *iter = file->private_data;
2514 mutex_lock(&trace_types_lock);
2516 if (iter->cpu_file == TRACE_PIPE_ALL_CPU)
2517 cpumask_clear(tracing_reader_cpumask);
2519 cpumask_clear_cpu(iter->cpu_file, tracing_reader_cpumask);
2521 mutex_unlock(&trace_types_lock);
2523 free_cpumask_var(iter->started);
2524 mutex_destroy(&iter->mutex);
2532 tracing_poll_pipe(struct file *filp, poll_table *poll_table)
2534 struct trace_iterator *iter = filp->private_data;
2536 if (trace_flags & TRACE_ITER_BLOCK) {
2538 * Always select as readable when in blocking mode
2540 return POLLIN | POLLRDNORM;
2542 if (!trace_empty(iter))
2543 return POLLIN | POLLRDNORM;
2544 poll_wait(filp, &trace_wait, poll_table);
2545 if (!trace_empty(iter))
2546 return POLLIN | POLLRDNORM;
2553 void default_wait_pipe(struct trace_iterator *iter)
2557 prepare_to_wait(&trace_wait, &wait, TASK_INTERRUPTIBLE);
2559 if (trace_empty(iter))
2562 finish_wait(&trace_wait, &wait);
2566 * This is a make-shift waitqueue.
2567 * A tracer might use this callback on some rare cases:
2569 * 1) the current tracer might hold the runqueue lock when it wakes up
2570 * a reader, hence a deadlock (sched, function, and function graph tracers)
2571 * 2) the function tracers, trace all functions, we don't want
2572 * the overhead of calling wake_up and friends
2573 * (and tracing them too)
2575 * Anyway, this is really very primitive wakeup.
2577 void poll_wait_pipe(struct trace_iterator *iter)
2579 set_current_state(TASK_INTERRUPTIBLE);
2580 /* sleep for 100 msecs, and try again. */
2581 schedule_timeout(HZ / 10);
2584 /* Must be called with trace_types_lock mutex held. */
2585 static int tracing_wait_pipe(struct file *filp)
2587 struct trace_iterator *iter = filp->private_data;
2589 while (trace_empty(iter)) {
2591 if ((filp->f_flags & O_NONBLOCK)) {
2595 mutex_unlock(&iter->mutex);
2597 iter->trace->wait_pipe(iter);
2599 mutex_lock(&iter->mutex);
2601 if (signal_pending(current))
2605 * We block until we read something and tracing is disabled.
2606 * We still block if tracing is disabled, but we have never
2607 * read anything. This allows a user to cat this file, and
2608 * then enable tracing. But after we have read something,
2609 * we give an EOF when tracing is again disabled.
2611 * iter->pos will be 0 if we haven't read anything.
2613 if (!tracer_enabled && iter->pos)
2624 tracing_read_pipe(struct file *filp, char __user *ubuf,
2625 size_t cnt, loff_t *ppos)
2627 struct trace_iterator *iter = filp->private_data;
2628 static struct tracer *old_tracer;
2631 /* return any leftover data */
2632 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
2636 trace_seq_init(&iter->seq);
2638 /* copy the tracer to avoid using a global lock all around */
2639 mutex_lock(&trace_types_lock);
2640 if (unlikely(old_tracer != current_trace && current_trace)) {
2641 old_tracer = current_trace;
2642 *iter->trace = *current_trace;
2644 mutex_unlock(&trace_types_lock);
2647 * Avoid more than one consumer on a single file descriptor
2648 * This is just a matter of traces coherency, the ring buffer itself
2651 mutex_lock(&iter->mutex);
2652 if (iter->trace->read) {
2653 sret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
2659 sret = tracing_wait_pipe(filp);
2663 /* stop when tracing is finished */
2664 if (trace_empty(iter)) {
2669 if (cnt >= PAGE_SIZE)
2670 cnt = PAGE_SIZE - 1;
2672 /* reset all but tr, trace, and overruns */
2673 memset(&iter->seq, 0,
2674 sizeof(struct trace_iterator) -
2675 offsetof(struct trace_iterator, seq));
2678 while (find_next_entry_inc(iter) != NULL) {
2679 enum print_line_t ret;
2680 int len = iter->seq.len;
2682 ret = print_trace_line(iter);
2683 if (ret == TRACE_TYPE_PARTIAL_LINE) {
2684 /* don't print partial lines */
2685 iter->seq.len = len;
2688 if (ret != TRACE_TYPE_NO_CONSUME)
2689 trace_consume(iter);
2691 if (iter->seq.len >= cnt)
2695 /* Now copy what we have to the user */
2696 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
2697 if (iter->seq.readpos >= iter->seq.len)
2698 trace_seq_init(&iter->seq);
2701 * If there was nothing to send to user, inspite of consuming trace
2702 * entries, go back to wait for more entries.
2708 mutex_unlock(&iter->mutex);
2713 static void tracing_pipe_buf_release(struct pipe_inode_info *pipe,
2714 struct pipe_buffer *buf)
2716 __free_page(buf->page);
2719 static void tracing_spd_release_pipe(struct splice_pipe_desc *spd,
2722 __free_page(spd->pages[idx]);
2725 static struct pipe_buf_operations tracing_pipe_buf_ops = {
2727 .map = generic_pipe_buf_map,
2728 .unmap = generic_pipe_buf_unmap,
2729 .confirm = generic_pipe_buf_confirm,
2730 .release = tracing_pipe_buf_release,
2731 .steal = generic_pipe_buf_steal,
2732 .get = generic_pipe_buf_get,
2736 tracing_fill_pipe_page(size_t rem, struct trace_iterator *iter)
2741 /* Seq buffer is page-sized, exactly what we need. */
2743 count = iter->seq.len;
2744 ret = print_trace_line(iter);
2745 count = iter->seq.len - count;
2748 iter->seq.len -= count;
2751 if (ret == TRACE_TYPE_PARTIAL_LINE) {
2752 iter->seq.len -= count;
2756 trace_consume(iter);
2758 if (!find_next_entry_inc(iter)) {
2768 static ssize_t tracing_splice_read_pipe(struct file *filp,
2770 struct pipe_inode_info *pipe,
2774 struct page *pages[PIPE_BUFFERS];
2775 struct partial_page partial[PIPE_BUFFERS];
2776 struct trace_iterator *iter = filp->private_data;
2777 struct splice_pipe_desc spd = {
2780 .nr_pages = 0, /* This gets updated below. */
2782 .ops = &tracing_pipe_buf_ops,
2783 .spd_release = tracing_spd_release_pipe,
2785 static struct tracer *old_tracer;
2790 /* copy the tracer to avoid using a global lock all around */
2791 mutex_lock(&trace_types_lock);
2792 if (unlikely(old_tracer != current_trace && current_trace)) {
2793 old_tracer = current_trace;
2794 *iter->trace = *current_trace;
2796 mutex_unlock(&trace_types_lock);
2798 mutex_lock(&iter->mutex);
2800 if (iter->trace->splice_read) {
2801 ret = iter->trace->splice_read(iter, filp,
2802 ppos, pipe, len, flags);
2807 ret = tracing_wait_pipe(filp);
2811 if (!iter->ent && !find_next_entry_inc(iter)) {
2816 /* Fill as many pages as possible. */
2817 for (i = 0, rem = len; i < PIPE_BUFFERS && rem; i++) {
2818 pages[i] = alloc_page(GFP_KERNEL);
2822 rem = tracing_fill_pipe_page(rem, iter);
2824 /* Copy the data into the page, so we can start over. */
2825 ret = trace_seq_to_buffer(&iter->seq,
2826 page_address(pages[i]),
2829 __free_page(pages[i]);
2832 partial[i].offset = 0;
2833 partial[i].len = iter->seq.len;
2835 trace_seq_init(&iter->seq);
2838 mutex_unlock(&iter->mutex);
2842 return splice_to_pipe(pipe, &spd);
2845 mutex_unlock(&iter->mutex);
2851 tracing_entries_read(struct file *filp, char __user *ubuf,
2852 size_t cnt, loff_t *ppos)
2854 struct trace_array *tr = filp->private_data;
2858 r = sprintf(buf, "%lu\n", tr->entries >> 10);
2859 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2863 tracing_entries_write(struct file *filp, const char __user *ubuf,
2864 size_t cnt, loff_t *ppos)
2870 if (cnt >= sizeof(buf))
2873 if (copy_from_user(&buf, ubuf, cnt))
2878 ret = strict_strtoul(buf, 10, &val);
2882 /* must have at least 1 entry */
2886 mutex_lock(&trace_types_lock);
2890 /* disable all cpu buffers */
2891 for_each_tracing_cpu(cpu) {
2892 if (global_trace.data[cpu])
2893 atomic_inc(&global_trace.data[cpu]->disabled);
2894 if (max_tr.data[cpu])
2895 atomic_inc(&max_tr.data[cpu]->disabled);
2898 /* value is in KB */
2901 if (val != global_trace.entries) {
2902 ret = ring_buffer_resize(global_trace.buffer, val);
2908 ret = ring_buffer_resize(max_tr.buffer, val);
2912 r = ring_buffer_resize(global_trace.buffer,
2913 global_trace.entries);
2915 /* AARGH! We are left with different
2916 * size max buffer!!!! */
2918 tracing_disabled = 1;
2923 global_trace.entries = val;
2928 /* If check pages failed, return ENOMEM */
2929 if (tracing_disabled)
2932 for_each_tracing_cpu(cpu) {
2933 if (global_trace.data[cpu])
2934 atomic_dec(&global_trace.data[cpu]->disabled);
2935 if (max_tr.data[cpu])
2936 atomic_dec(&max_tr.data[cpu]->disabled);
2940 max_tr.entries = global_trace.entries;
2941 mutex_unlock(&trace_types_lock);
2946 static int mark_printk(const char *fmt, ...)
2950 va_start(args, fmt);
2951 ret = trace_vprintk(0, -1, fmt, args);
2957 tracing_mark_write(struct file *filp, const char __user *ubuf,
2958 size_t cnt, loff_t *fpos)
2963 if (tracing_disabled)
2966 if (cnt > TRACE_BUF_SIZE)
2967 cnt = TRACE_BUF_SIZE;
2969 buf = kmalloc(cnt + 1, GFP_KERNEL);
2973 if (copy_from_user(buf, ubuf, cnt)) {
2978 /* Cut from the first nil or newline. */
2980 end = strchr(buf, '\n');
2984 cnt = mark_printk("%s\n", buf);
2991 static const struct file_operations tracing_max_lat_fops = {
2992 .open = tracing_open_generic,
2993 .read = tracing_max_lat_read,
2994 .write = tracing_max_lat_write,
2997 static const struct file_operations tracing_ctrl_fops = {
2998 .open = tracing_open_generic,
2999 .read = tracing_ctrl_read,
3000 .write = tracing_ctrl_write,
3003 static const struct file_operations set_tracer_fops = {
3004 .open = tracing_open_generic,
3005 .read = tracing_set_trace_read,
3006 .write = tracing_set_trace_write,
3009 static const struct file_operations tracing_pipe_fops = {
3010 .open = tracing_open_pipe,
3011 .poll = tracing_poll_pipe,
3012 .read = tracing_read_pipe,
3013 .splice_read = tracing_splice_read_pipe,
3014 .release = tracing_release_pipe,
3017 static const struct file_operations tracing_entries_fops = {
3018 .open = tracing_open_generic,
3019 .read = tracing_entries_read,
3020 .write = tracing_entries_write,
3023 static const struct file_operations tracing_mark_fops = {
3024 .open = tracing_open_generic,
3025 .write = tracing_mark_write,
3028 struct ftrace_buffer_info {
3029 struct trace_array *tr;
3035 static int tracing_buffers_open(struct inode *inode, struct file *filp)
3037 int cpu = (int)(long)inode->i_private;
3038 struct ftrace_buffer_info *info;
3040 if (tracing_disabled)
3043 info = kzalloc(sizeof(*info), GFP_KERNEL);
3047 info->tr = &global_trace;
3049 info->spare = ring_buffer_alloc_read_page(info->tr->buffer);
3050 /* Force reading ring buffer for first read */
3051 info->read = (unsigned int)-1;
3055 filp->private_data = info;
3065 tracing_buffers_read(struct file *filp, char __user *ubuf,
3066 size_t count, loff_t *ppos)
3068 struct ftrace_buffer_info *info = filp->private_data;
3076 /* Do we have previous read data to read? */
3077 if (info->read < PAGE_SIZE)
3082 ret = ring_buffer_read_page(info->tr->buffer,
3089 pos = ring_buffer_page_len(info->spare);
3091 if (pos < PAGE_SIZE)
3092 memset(info->spare + pos, 0, PAGE_SIZE - pos);
3095 size = PAGE_SIZE - info->read;
3099 ret = copy_to_user(ubuf, info->spare + info->read, size);
3110 static int tracing_buffers_release(struct inode *inode, struct file *file)
3112 struct ftrace_buffer_info *info = file->private_data;
3114 ring_buffer_free_read_page(info->tr->buffer, info->spare);
3121 struct ring_buffer *buffer;
3126 static void buffer_pipe_buf_release(struct pipe_inode_info *pipe,
3127 struct pipe_buffer *buf)
3129 struct buffer_ref *ref = (struct buffer_ref *)buf->private;
3134 ring_buffer_free_read_page(ref->buffer, ref->page);
3139 static int buffer_pipe_buf_steal(struct pipe_inode_info *pipe,
3140 struct pipe_buffer *buf)
3145 static void buffer_pipe_buf_get(struct pipe_inode_info *pipe,
3146 struct pipe_buffer *buf)
3148 struct buffer_ref *ref = (struct buffer_ref *)buf->private;
3153 /* Pipe buffer operations for a buffer. */
3154 static struct pipe_buf_operations buffer_pipe_buf_ops = {
3156 .map = generic_pipe_buf_map,
3157 .unmap = generic_pipe_buf_unmap,
3158 .confirm = generic_pipe_buf_confirm,
3159 .release = buffer_pipe_buf_release,
3160 .steal = buffer_pipe_buf_steal,
3161 .get = buffer_pipe_buf_get,
3165 * Callback from splice_to_pipe(), if we need to release some pages
3166 * at the end of the spd in case we error'ed out in filling the pipe.
3168 static void buffer_spd_release(struct splice_pipe_desc *spd, unsigned int i)
3170 struct buffer_ref *ref =
3171 (struct buffer_ref *)spd->partial[i].private;
3176 ring_buffer_free_read_page(ref->buffer, ref->page);
3178 spd->partial[i].private = 0;
3182 tracing_buffers_splice_read(struct file *file, loff_t *ppos,
3183 struct pipe_inode_info *pipe, size_t len,
3186 struct ftrace_buffer_info *info = file->private_data;
3187 struct partial_page partial[PIPE_BUFFERS];
3188 struct page *pages[PIPE_BUFFERS];
3189 struct splice_pipe_desc spd = {
3193 .ops = &buffer_pipe_buf_ops,
3194 .spd_release = buffer_spd_release,
3196 struct buffer_ref *ref;
3201 * We can't seek on a buffer input
3203 if (unlikely(*ppos))
3207 for (i = 0; i < PIPE_BUFFERS && len; i++, len -= size) {
3211 ref = kzalloc(sizeof(*ref), GFP_KERNEL);
3215 ref->buffer = info->tr->buffer;
3216 ref->page = ring_buffer_alloc_read_page(ref->buffer);
3222 r = ring_buffer_read_page(ref->buffer, &ref->page,
3225 ring_buffer_free_read_page(ref->buffer,
3232 * zero out any left over data, this is going to
3235 size = ring_buffer_page_len(ref->page);
3236 if (size < PAGE_SIZE)
3237 memset(ref->page + size, 0, PAGE_SIZE - size);
3239 page = virt_to_page(ref->page);
3241 spd.pages[i] = page;
3242 spd.partial[i].len = PAGE_SIZE;
3243 spd.partial[i].offset = 0;
3244 spd.partial[i].private = (unsigned long)ref;
3250 /* did we read anything? */
3251 if (!spd.nr_pages) {
3252 if (flags & SPLICE_F_NONBLOCK)
3260 ret = splice_to_pipe(pipe, &spd);
3265 static const struct file_operations tracing_buffers_fops = {
3266 .open = tracing_buffers_open,
3267 .read = tracing_buffers_read,
3268 .release = tracing_buffers_release,
3269 .splice_read = tracing_buffers_splice_read,
3270 .llseek = no_llseek,
3273 #ifdef CONFIG_DYNAMIC_FTRACE
3275 int __weak ftrace_arch_read_dyn_info(char *buf, int size)
3281 tracing_read_dyn_info(struct file *filp, char __user *ubuf,
3282 size_t cnt, loff_t *ppos)
3284 static char ftrace_dyn_info_buffer[1024];
3285 static DEFINE_MUTEX(dyn_info_mutex);
3286 unsigned long *p = filp->private_data;
3287 char *buf = ftrace_dyn_info_buffer;
3288 int size = ARRAY_SIZE(ftrace_dyn_info_buffer);
3291 mutex_lock(&dyn_info_mutex);
3292 r = sprintf(buf, "%ld ", *p);
3294 r += ftrace_arch_read_dyn_info(buf+r, (size-1)-r);
3297 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3299 mutex_unlock(&dyn_info_mutex);
3304 static const struct file_operations tracing_dyn_info_fops = {
3305 .open = tracing_open_generic,
3306 .read = tracing_read_dyn_info,
3310 static struct dentry *d_tracer;
3312 struct dentry *tracing_init_dentry(void)
3319 d_tracer = debugfs_create_dir("tracing", NULL);
3321 if (!d_tracer && !once) {
3323 pr_warning("Could not create debugfs directory 'tracing'\n");
3330 static struct dentry *d_percpu;
3332 struct dentry *tracing_dentry_percpu(void)
3335 struct dentry *d_tracer;
3340 d_tracer = tracing_init_dentry();
3345 d_percpu = debugfs_create_dir("per_cpu", d_tracer);
3347 if (!d_percpu && !once) {
3349 pr_warning("Could not create debugfs directory 'per_cpu'\n");
3356 static void tracing_init_debugfs_percpu(long cpu)
3358 struct dentry *d_percpu = tracing_dentry_percpu();
3359 struct dentry *entry, *d_cpu;
3360 /* strlen(cpu) + MAX(log10(cpu)) + '\0' */
3363 if (cpu > 999 || cpu < 0)
3366 sprintf(cpu_dir, "cpu%ld", cpu);
3367 d_cpu = debugfs_create_dir(cpu_dir, d_percpu);
3369 pr_warning("Could not create debugfs '%s' entry\n", cpu_dir);
3373 /* per cpu trace_pipe */
3374 entry = debugfs_create_file("trace_pipe", 0444, d_cpu,
3375 (void *) cpu, &tracing_pipe_fops);
3377 pr_warning("Could not create debugfs 'trace_pipe' entry\n");
3380 entry = debugfs_create_file("trace", 0444, d_cpu,
3381 (void *) cpu, &tracing_fops);
3383 pr_warning("Could not create debugfs 'trace' entry\n");
3386 #ifdef CONFIG_FTRACE_SELFTEST
3387 /* Let selftest have access to static functions in this file */
3388 #include "trace_selftest.c"
3391 struct trace_option_dentry {
3392 struct tracer_opt *opt;
3393 struct tracer_flags *flags;
3394 struct dentry *entry;
3398 trace_options_read(struct file *filp, char __user *ubuf, size_t cnt,
3401 struct trace_option_dentry *topt = filp->private_data;
3404 if (topt->flags->val & topt->opt->bit)
3409 return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
3413 trace_options_write(struct file *filp, const char __user *ubuf, size_t cnt,
3416 struct trace_option_dentry *topt = filp->private_data;
3421 if (cnt >= sizeof(buf))
3424 if (copy_from_user(&buf, ubuf, cnt))
3429 ret = strict_strtoul(buf, 10, &val);
3436 /* do nothing if already cleared */
3437 if (!(topt->flags->val & topt->opt->bit))
3440 mutex_lock(&trace_types_lock);
3441 if (current_trace->set_flag)
3442 ret = current_trace->set_flag(topt->flags->val,
3444 mutex_unlock(&trace_types_lock);
3447 topt->flags->val &= ~topt->opt->bit;
3450 /* do nothing if already set */
3451 if (topt->flags->val & topt->opt->bit)
3454 mutex_lock(&trace_types_lock);
3455 if (current_trace->set_flag)
3456 ret = current_trace->set_flag(topt->flags->val,
3458 mutex_unlock(&trace_types_lock);
3461 topt->flags->val |= topt->opt->bit;
3474 static const struct file_operations trace_options_fops = {
3475 .open = tracing_open_generic,
3476 .read = trace_options_read,
3477 .write = trace_options_write,
3481 trace_options_core_read(struct file *filp, char __user *ubuf, size_t cnt,
3484 long index = (long)filp->private_data;
3487 if (trace_flags & (1 << index))
3492 return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
3496 trace_options_core_write(struct file *filp, const char __user *ubuf, size_t cnt,
3499 long index = (long)filp->private_data;
3504 if (cnt >= sizeof(buf))
3507 if (copy_from_user(&buf, ubuf, cnt))
3512 ret = strict_strtoul(buf, 10, &val);
3518 trace_flags &= ~(1 << index);
3521 trace_flags |= 1 << index;
3533 static const struct file_operations trace_options_core_fops = {
3534 .open = tracing_open_generic,
3535 .read = trace_options_core_read,
3536 .write = trace_options_core_write,
3539 static struct dentry *trace_options_init_dentry(void)
3541 struct dentry *d_tracer;
3542 static struct dentry *t_options;
3547 d_tracer = tracing_init_dentry();
3551 t_options = debugfs_create_dir("options", d_tracer);
3553 pr_warning("Could not create debugfs directory 'options'\n");
3561 create_trace_option_file(struct trace_option_dentry *topt,
3562 struct tracer_flags *flags,
3563 struct tracer_opt *opt)
3565 struct dentry *t_options;
3566 struct dentry *entry;
3568 t_options = trace_options_init_dentry();
3572 topt->flags = flags;
3575 entry = debugfs_create_file(opt->name, 0644, t_options, topt,
3576 &trace_options_fops);
3578 topt->entry = entry;
3582 static struct trace_option_dentry *
3583 create_trace_option_files(struct tracer *tracer)
3585 struct trace_option_dentry *topts;
3586 struct tracer_flags *flags;
3587 struct tracer_opt *opts;
3593 flags = tracer->flags;
3595 if (!flags || !flags->opts)
3600 for (cnt = 0; opts[cnt].name; cnt++)
3603 topts = kcalloc(cnt + 1, sizeof(*topts), GFP_KERNEL);
3607 for (cnt = 0; opts[cnt].name; cnt++)
3608 create_trace_option_file(&topts[cnt], flags,
3615 destroy_trace_option_files(struct trace_option_dentry *topts)
3622 for (cnt = 0; topts[cnt].opt; cnt++) {
3623 if (topts[cnt].entry)
3624 debugfs_remove(topts[cnt].entry);
3630 static struct dentry *
3631 create_trace_option_core_file(const char *option, long index)
3633 struct dentry *t_options;
3634 struct dentry *entry;
3636 t_options = trace_options_init_dentry();
3640 entry = debugfs_create_file(option, 0644, t_options, (void *)index,
3641 &trace_options_core_fops);
3646 static __init void create_trace_options_dir(void)
3648 struct dentry *t_options;
3649 struct dentry *entry;
3652 t_options = trace_options_init_dentry();
3656 for (i = 0; trace_options[i]; i++) {
3657 entry = create_trace_option_core_file(trace_options[i], i);
3659 pr_warning("Could not create debugfs %s entry\n",
3664 static __init int tracer_init_debugfs(void)
3666 struct dentry *d_tracer;
3667 struct dentry *buffers;
3668 struct dentry *entry;
3671 d_tracer = tracing_init_dentry();
3673 entry = debugfs_create_file("tracing_enabled", 0644, d_tracer,
3674 &global_trace, &tracing_ctrl_fops);
3676 pr_warning("Could not create debugfs 'tracing_enabled' entry\n");
3678 entry = debugfs_create_file("trace_options", 0644, d_tracer,
3679 NULL, &tracing_iter_fops);
3681 pr_warning("Could not create debugfs 'trace_options' entry\n");
3683 create_trace_options_dir();
3685 entry = debugfs_create_file("tracing_cpumask", 0644, d_tracer,
3686 NULL, &tracing_cpumask_fops);
3688 pr_warning("Could not create debugfs 'tracing_cpumask' entry\n");
3690 entry = debugfs_create_file("trace", 0444, d_tracer,
3691 (void *) TRACE_PIPE_ALL_CPU, &tracing_fops);
3693 pr_warning("Could not create debugfs 'trace' entry\n");
3695 entry = debugfs_create_file("available_tracers", 0444, d_tracer,
3696 &global_trace, &show_traces_fops);
3698 pr_warning("Could not create debugfs 'available_tracers' entry\n");
3700 entry = debugfs_create_file("current_tracer", 0444, d_tracer,
3701 &global_trace, &set_tracer_fops);
3703 pr_warning("Could not create debugfs 'current_tracer' entry\n");
3705 entry = debugfs_create_file("tracing_max_latency", 0644, d_tracer,
3706 &tracing_max_latency,
3707 &tracing_max_lat_fops);
3709 pr_warning("Could not create debugfs "
3710 "'tracing_max_latency' entry\n");
3712 entry = debugfs_create_file("tracing_thresh", 0644, d_tracer,
3713 &tracing_thresh, &tracing_max_lat_fops);
3715 pr_warning("Could not create debugfs "
3716 "'tracing_thresh' entry\n");
3717 entry = debugfs_create_file("README", 0644, d_tracer,
3718 NULL, &tracing_readme_fops);
3720 pr_warning("Could not create debugfs 'README' entry\n");
3722 entry = debugfs_create_file("trace_pipe", 0444, d_tracer,
3723 (void *) TRACE_PIPE_ALL_CPU, &tracing_pipe_fops);
3725 pr_warning("Could not create debugfs "
3726 "'trace_pipe' entry\n");
3728 entry = debugfs_create_file("buffer_size_kb", 0644, d_tracer,
3729 &global_trace, &tracing_entries_fops);
3731 pr_warning("Could not create debugfs "
3732 "'buffer_size_kb' entry\n");
3734 entry = debugfs_create_file("trace_marker", 0220, d_tracer,
3735 NULL, &tracing_mark_fops);
3737 pr_warning("Could not create debugfs "
3738 "'trace_marker' entry\n");
3740 buffers = debugfs_create_dir("binary_buffers", d_tracer);
3743 pr_warning("Could not create buffers directory\n");
3748 for_each_tracing_cpu(cpu) {
3749 sprintf(buf, "%d", cpu);
3751 entry = debugfs_create_file(buf, 0444, buffers,
3753 &tracing_buffers_fops);
3755 pr_warning("Could not create debugfs buffers "
3756 "'%s' entry\n", buf);
3760 #ifdef CONFIG_DYNAMIC_FTRACE
3761 entry = debugfs_create_file("dyn_ftrace_total_info", 0444, d_tracer,
3762 &ftrace_update_tot_cnt,
3763 &tracing_dyn_info_fops);
3765 pr_warning("Could not create debugfs "
3766 "'dyn_ftrace_total_info' entry\n");
3768 #ifdef CONFIG_SYSPROF_TRACER
3769 init_tracer_sysprof_debugfs(d_tracer);
3772 for_each_tracing_cpu(cpu)
3773 tracing_init_debugfs_percpu(cpu);
3778 static int trace_panic_handler(struct notifier_block *this,
3779 unsigned long event, void *unused)
3781 if (ftrace_dump_on_oops)
3786 static struct notifier_block trace_panic_notifier = {
3787 .notifier_call = trace_panic_handler,
3789 .priority = 150 /* priority: INT_MAX >= x >= 0 */
3792 static int trace_die_handler(struct notifier_block *self,
3798 if (ftrace_dump_on_oops)
3807 static struct notifier_block trace_die_notifier = {
3808 .notifier_call = trace_die_handler,
3813 * printk is set to max of 1024, we really don't need it that big.
3814 * Nothing should be printing 1000 characters anyway.
3816 #define TRACE_MAX_PRINT 1000
3819 * Define here KERN_TRACE so that we have one place to modify
3820 * it if we decide to change what log level the ftrace dump
3823 #define KERN_TRACE KERN_EMERG
3826 trace_printk_seq(struct trace_seq *s)
3828 /* Probably should print a warning here. */
3832 /* should be zero ended, but we are paranoid. */
3833 s->buffer[s->len] = 0;
3835 printk(KERN_TRACE "%s", s->buffer);
3840 void ftrace_dump(void)
3842 static DEFINE_SPINLOCK(ftrace_dump_lock);
3843 /* use static because iter can be a bit big for the stack */
3844 static struct trace_iterator iter;
3845 static int dump_ran;
3846 unsigned long flags;
3850 spin_lock_irqsave(&ftrace_dump_lock, flags);
3856 /* No turning back! */
3860 for_each_tracing_cpu(cpu) {
3861 atomic_inc(&global_trace.data[cpu]->disabled);
3864 /* don't look at user memory in panic mode */
3865 trace_flags &= ~TRACE_ITER_SYM_USEROBJ;
3867 printk(KERN_TRACE "Dumping ftrace buffer:\n");
3869 /* Simulate the iterator */
3870 iter.tr = &global_trace;
3871 iter.trace = current_trace;
3872 iter.cpu_file = TRACE_PIPE_ALL_CPU;
3875 * We need to stop all tracing on all CPUS to read the
3876 * the next buffer. This is a bit expensive, but is
3877 * not done often. We fill all what we can read,
3878 * and then release the locks again.
3881 while (!trace_empty(&iter)) {
3884 printk(KERN_TRACE "---------------------------------\n");
3888 /* reset all but tr, trace, and overruns */
3889 memset(&iter.seq, 0,
3890 sizeof(struct trace_iterator) -
3891 offsetof(struct trace_iterator, seq));
3892 iter.iter_flags |= TRACE_FILE_LAT_FMT;
3895 if (find_next_entry_inc(&iter) != NULL) {
3896 print_trace_line(&iter);
3897 trace_consume(&iter);
3900 trace_printk_seq(&iter.seq);
3904 printk(KERN_TRACE " (ftrace buffer empty)\n");
3906 printk(KERN_TRACE "---------------------------------\n");
3909 spin_unlock_irqrestore(&ftrace_dump_lock, flags);
3912 __init static int tracer_alloc_buffers(void)
3914 struct trace_array_cpu *data;
3918 if (!alloc_cpumask_var(&tracing_buffer_mask, GFP_KERNEL))
3921 if (!alloc_cpumask_var(&tracing_cpumask, GFP_KERNEL))
3922 goto out_free_buffer_mask;
3924 if (!alloc_cpumask_var(&tracing_reader_cpumask, GFP_KERNEL))
3925 goto out_free_tracing_cpumask;
3927 cpumask_copy(tracing_buffer_mask, cpu_possible_mask);
3928 cpumask_copy(tracing_cpumask, cpu_all_mask);
3929 cpumask_clear(tracing_reader_cpumask);
3931 /* TODO: make the number of buffers hot pluggable with CPUS */
3932 global_trace.buffer = ring_buffer_alloc(trace_buf_size,
3933 TRACE_BUFFER_FLAGS);
3934 if (!global_trace.buffer) {
3935 printk(KERN_ERR "tracer: failed to allocate ring buffer!\n");
3937 goto out_free_cpumask;
3939 global_trace.entries = ring_buffer_size(global_trace.buffer);
3942 #ifdef CONFIG_TRACER_MAX_TRACE
3943 max_tr.buffer = ring_buffer_alloc(trace_buf_size,
3944 TRACE_BUFFER_FLAGS);
3945 if (!max_tr.buffer) {
3946 printk(KERN_ERR "tracer: failed to allocate max ring buffer!\n");
3948 ring_buffer_free(global_trace.buffer);
3949 goto out_free_cpumask;
3951 max_tr.entries = ring_buffer_size(max_tr.buffer);
3952 WARN_ON(max_tr.entries != global_trace.entries);
3955 /* Allocate the first page for all buffers */
3956 for_each_tracing_cpu(i) {
3957 data = global_trace.data[i] = &per_cpu(global_trace_cpu, i);
3958 max_tr.data[i] = &per_cpu(max_data, i);
3961 trace_init_cmdlines();
3963 register_tracer(&nop_trace);
3964 current_trace = &nop_trace;
3965 #ifdef CONFIG_BOOT_TRACER
3966 register_tracer(&boot_tracer);
3968 /* All seems OK, enable tracing */
3969 tracing_disabled = 0;
3971 atomic_notifier_chain_register(&panic_notifier_list,
3972 &trace_panic_notifier);
3974 register_die_notifier(&trace_die_notifier);
3978 free_cpumask_var(tracing_reader_cpumask);
3979 out_free_tracing_cpumask:
3980 free_cpumask_var(tracing_cpumask);
3981 out_free_buffer_mask:
3982 free_cpumask_var(tracing_buffer_mask);
3987 __init static int clear_boot_tracer(void)
3990 * The default tracer at boot buffer is an init section.
3991 * This function is called in lateinit. If we did not
3992 * find the boot tracer, then clear it out, to prevent
3993 * later registration from accessing the buffer that is
3994 * about to be freed.
3996 if (!default_bootup_tracer)
3999 printk(KERN_INFO "ftrace bootup tracer '%s' not registered.\n",
4000 default_bootup_tracer);
4001 default_bootup_tracer = NULL;
4006 early_initcall(tracer_alloc_buffers);
4007 fs_initcall(tracer_init_debugfs);
4008 late_initcall(clear_boot_tracer);