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/utsrelease.h>
15 #include <linux/kallsyms.h>
16 #include <linux/seq_file.h>
17 #include <linux/notifier.h>
18 #include <linux/debugfs.h>
19 #include <linux/pagemap.h>
20 #include <linux/hardirq.h>
21 #include <linux/linkage.h>
22 #include <linux/uaccess.h>
23 #include <linux/ftrace.h>
24 #include <linux/module.h>
25 #include <linux/percpu.h>
26 #include <linux/kdebug.h>
27 #include <linux/ctype.h>
28 #include <linux/init.h>
29 #include <linux/poll.h>
30 #include <linux/gfp.h>
32 #include <linux/kprobes.h>
33 #include <linux/seq_file.h>
34 #include <linux/writeback.h>
36 #include <linux/stacktrace.h>
37 #include <linux/ring_buffer.h>
38 #include <linux/irqflags.h>
42 #define TRACE_BUFFER_FLAGS (RB_FL_OVERWRITE)
44 unsigned long __read_mostly tracing_max_latency = (cycle_t)ULONG_MAX;
45 unsigned long __read_mostly tracing_thresh;
47 /* For tracers that don't implement custom flags */
48 static struct tracer_opt dummy_tracer_opt[] = {
52 static struct tracer_flags dummy_tracer_flags = {
54 .opts = dummy_tracer_opt
57 static int dummy_set_flag(u32 old_flags, u32 bit, int set)
63 * Kill all tracing for good (never come back).
64 * It is initialized to 1 but will turn to zero if the initialization
65 * of the tracer is successful. But that is the only place that sets
68 int tracing_disabled = 1;
70 static DEFINE_PER_CPU(local_t, ftrace_cpu_disabled);
72 static inline void ftrace_disable_cpu(void)
75 local_inc(&__get_cpu_var(ftrace_cpu_disabled));
78 static inline void ftrace_enable_cpu(void)
80 local_dec(&__get_cpu_var(ftrace_cpu_disabled));
84 static cpumask_t __read_mostly tracing_buffer_mask;
86 #define for_each_tracing_cpu(cpu) \
87 for_each_cpu_mask(cpu, tracing_buffer_mask)
90 * ftrace_dump_on_oops - variable to dump ftrace buffer on oops
92 * If there is an oops (or kernel panic) and the ftrace_dump_on_oops
93 * is set, then ftrace_dump is called. This will output the contents
94 * of the ftrace buffers to the console. This is very useful for
95 * capturing traces that lead to crashes and outputing it to a
98 * It is default off, but you can enable it with either specifying
99 * "ftrace_dump_on_oops" in the kernel command line, or setting
100 * /proc/sys/kernel/ftrace_dump_on_oops to true.
102 int ftrace_dump_on_oops;
104 static int tracing_set_tracer(char *buf);
106 static int __init set_ftrace(char *str)
108 tracing_set_tracer(str);
111 __setup("ftrace", set_ftrace);
113 static int __init set_ftrace_dump_on_oops(char *str)
115 ftrace_dump_on_oops = 1;
118 __setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops);
121 ns2usecs(cycle_t nsec)
128 cycle_t ftrace_now(int cpu)
130 u64 ts = ring_buffer_time_stamp(cpu);
131 ring_buffer_normalize_time_stamp(cpu, &ts);
136 * The global_trace is the descriptor that holds the tracing
137 * buffers for the live tracing. For each CPU, it contains
138 * a link list of pages that will store trace entries. The
139 * page descriptor of the pages in the memory is used to hold
140 * the link list by linking the lru item in the page descriptor
141 * to each of the pages in the buffer per CPU.
143 * For each active CPU there is a data field that holds the
144 * pages for the buffer for that CPU. Each CPU has the same number
145 * of pages allocated for its buffer.
147 static struct trace_array global_trace;
149 static DEFINE_PER_CPU(struct trace_array_cpu, global_trace_cpu);
152 * The max_tr is used to snapshot the global_trace when a maximum
153 * latency is reached. Some tracers will use this to store a maximum
154 * trace while it continues examining live traces.
156 * The buffers for the max_tr are set up the same as the global_trace.
157 * When a snapshot is taken, the link list of the max_tr is swapped
158 * with the link list of the global_trace and the buffers are reset for
159 * the global_trace so the tracing can continue.
161 static struct trace_array max_tr;
163 static DEFINE_PER_CPU(struct trace_array_cpu, max_data);
165 /* tracer_enabled is used to toggle activation of a tracer */
166 static int tracer_enabled = 1;
169 * tracing_is_enabled - return tracer_enabled status
171 * This function is used by other tracers to know the status
172 * of the tracer_enabled flag. Tracers may use this function
173 * to know if it should enable their features when starting
174 * up. See irqsoff tracer for an example (start_irqsoff_tracer).
176 int tracing_is_enabled(void)
178 return tracer_enabled;
181 /* function tracing enabled */
182 int ftrace_function_enabled;
185 * trace_buf_size is the size in bytes that is allocated
186 * for a buffer. Note, the number of bytes is always rounded
189 * This number is purposely set to a low number of 16384.
190 * If the dump on oops happens, it will be much appreciated
191 * to not have to wait for all that output. Anyway this can be
192 * boot time and run time configurable.
194 #define TRACE_BUF_SIZE_DEFAULT 1441792UL /* 16384 * 88 (sizeof(entry)) */
196 static unsigned long trace_buf_size = TRACE_BUF_SIZE_DEFAULT;
198 /* trace_types holds a link list of available tracers. */
199 static struct tracer *trace_types __read_mostly;
201 /* current_trace points to the tracer that is currently active */
202 static struct tracer *current_trace __read_mostly;
205 * max_tracer_type_len is used to simplify the allocating of
206 * buffers to read userspace tracer names. We keep track of
207 * the longest tracer name registered.
209 static int max_tracer_type_len;
212 * trace_types_lock is used to protect the trace_types list.
213 * This lock is also used to keep user access serialized.
214 * Accesses from userspace will grab this lock while userspace
215 * activities happen inside the kernel.
217 static DEFINE_MUTEX(trace_types_lock);
219 /* trace_wait is a waitqueue for tasks blocked on trace_poll */
220 static DECLARE_WAIT_QUEUE_HEAD(trace_wait);
222 /* trace_flags holds trace_options default values */
223 unsigned long trace_flags = TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK |
227 * trace_wake_up - wake up tasks waiting for trace input
229 * Simply wakes up any task that is blocked on the trace_wait
230 * queue. These is used with trace_poll for tasks polling the trace.
232 void trace_wake_up(void)
235 * The runqueue_is_locked() can fail, but this is the best we
238 if (!(trace_flags & TRACE_ITER_BLOCK) && !runqueue_is_locked())
239 wake_up(&trace_wait);
242 static int __init set_buf_size(char *str)
244 unsigned long buf_size;
249 ret = strict_strtoul(str, 0, &buf_size);
250 /* nr_entries can not be zero */
251 if (ret < 0 || buf_size == 0)
253 trace_buf_size = buf_size;
256 __setup("trace_buf_size=", set_buf_size);
258 unsigned long nsecs_to_usecs(unsigned long nsecs)
263 /* These must match the bit postions in trace_iterator_flags */
264 static const char *trace_options[] = {
285 * ftrace_max_lock is used to protect the swapping of buffers
286 * when taking a max snapshot. The buffers themselves are
287 * protected by per_cpu spinlocks. But the action of the swap
288 * needs its own lock.
290 * This is defined as a raw_spinlock_t in order to help
291 * with performance when lockdep debugging is enabled.
293 static raw_spinlock_t ftrace_max_lock =
294 (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
297 * Copy the new maximum trace into the separate maximum-trace
298 * structure. (this way the maximum trace is permanently saved,
299 * for later retrieval via /debugfs/tracing/latency_trace)
302 __update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
304 struct trace_array_cpu *data = tr->data[cpu];
307 max_tr.time_start = data->preempt_timestamp;
309 data = max_tr.data[cpu];
310 data->saved_latency = tracing_max_latency;
312 memcpy(data->comm, tsk->comm, TASK_COMM_LEN);
313 data->pid = tsk->pid;
314 data->uid = tsk->uid;
315 data->nice = tsk->static_prio - 20 - MAX_RT_PRIO;
316 data->policy = tsk->policy;
317 data->rt_priority = tsk->rt_priority;
319 /* record this tasks comm */
320 tracing_record_cmdline(current);
324 * trace_seq_printf - sequence printing of trace information
325 * @s: trace sequence descriptor
326 * @fmt: printf format string
328 * The tracer may use either sequence operations or its own
329 * copy to user routines. To simplify formating of a trace
330 * trace_seq_printf is used to store strings into a special
331 * buffer (@s). Then the output may be either used by
332 * the sequencer or pulled into another buffer.
335 trace_seq_printf(struct trace_seq *s, const char *fmt, ...)
337 int len = (PAGE_SIZE - 1) - s->len;
345 ret = vsnprintf(s->buffer + s->len, len, fmt, ap);
348 /* If we can't write it all, don't bother writing anything */
358 * trace_seq_puts - trace sequence printing of simple string
359 * @s: trace sequence descriptor
360 * @str: simple string to record
362 * The tracer may use either the sequence operations or its own
363 * copy to user routines. This function records a simple string
364 * into a special buffer (@s) for later retrieval by a sequencer
365 * or other mechanism.
368 trace_seq_puts(struct trace_seq *s, const char *str)
370 int len = strlen(str);
372 if (len > ((PAGE_SIZE - 1) - s->len))
375 memcpy(s->buffer + s->len, str, len);
382 trace_seq_putc(struct trace_seq *s, unsigned char c)
384 if (s->len >= (PAGE_SIZE - 1))
387 s->buffer[s->len++] = c;
393 trace_seq_putmem(struct trace_seq *s, void *mem, size_t len)
395 if (len > ((PAGE_SIZE - 1) - s->len))
398 memcpy(s->buffer + s->len, mem, len);
404 #define MAX_MEMHEX_BYTES 8
405 #define HEX_CHARS (MAX_MEMHEX_BYTES*2 + 1)
408 trace_seq_putmem_hex(struct trace_seq *s, void *mem, size_t len)
410 unsigned char hex[HEX_CHARS];
411 unsigned char *data = mem;
415 for (i = 0, j = 0; i < len; i++) {
417 for (i = len-1, j = 0; i >= 0; i--) {
419 hex[j++] = hex_asc_hi(data[i]);
420 hex[j++] = hex_asc_lo(data[i]);
424 return trace_seq_putmem(s, hex, j);
428 trace_seq_path(struct trace_seq *s, struct path *path)
432 if (s->len >= (PAGE_SIZE - 1))
434 p = d_path(path, s->buffer + s->len, PAGE_SIZE - s->len);
436 p = mangle_path(s->buffer + s->len, p, "\n");
438 s->len = p - s->buffer;
442 s->buffer[s->len++] = '?';
450 trace_seq_reset(struct trace_seq *s)
456 ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, size_t cnt)
461 if (s->len <= s->readpos)
464 len = s->len - s->readpos;
467 ret = copy_to_user(ubuf, s->buffer + s->readpos, cnt);
476 trace_print_seq(struct seq_file *m, struct trace_seq *s)
478 int len = s->len >= PAGE_SIZE ? PAGE_SIZE - 1 : s->len;
481 seq_puts(m, s->buffer);
487 * update_max_tr - snapshot all trace buffers from global_trace to max_tr
489 * @tsk: the task with the latency
490 * @cpu: The cpu that initiated the trace.
492 * Flip the buffers between the @tr and the max_tr and record information
493 * about which task was the cause of this latency.
496 update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
498 struct ring_buffer *buf = tr->buffer;
500 WARN_ON_ONCE(!irqs_disabled());
501 __raw_spin_lock(&ftrace_max_lock);
503 tr->buffer = max_tr.buffer;
506 ftrace_disable_cpu();
507 ring_buffer_reset(tr->buffer);
510 __update_max_tr(tr, tsk, cpu);
511 __raw_spin_unlock(&ftrace_max_lock);
515 * update_max_tr_single - only copy one trace over, and reset the rest
517 * @tsk - task with the latency
518 * @cpu - the cpu of the buffer to copy.
520 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
523 update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
527 WARN_ON_ONCE(!irqs_disabled());
528 __raw_spin_lock(&ftrace_max_lock);
530 ftrace_disable_cpu();
532 ring_buffer_reset(max_tr.buffer);
533 ret = ring_buffer_swap_cpu(max_tr.buffer, tr->buffer, cpu);
539 __update_max_tr(tr, tsk, cpu);
540 __raw_spin_unlock(&ftrace_max_lock);
544 * register_tracer - register a tracer with the ftrace system.
545 * @type - the plugin for the tracer
547 * Register a new plugin tracer.
549 int register_tracer(struct tracer *type)
556 pr_info("Tracer must have a name\n");
561 * When this gets called we hold the BKL which means that
562 * preemption is disabled. Various trace selftests however
563 * need to disable and enable preemption for successful tests.
564 * So we drop the BKL here and grab it after the tests again.
567 mutex_lock(&trace_types_lock);
569 for (t = trace_types; t; t = t->next) {
570 if (strcmp(type->name, t->name) == 0) {
572 pr_info("Trace %s already registered\n",
580 type->set_flag = &dummy_set_flag;
582 type->flags = &dummy_tracer_flags;
584 if (!type->flags->opts)
585 type->flags->opts = dummy_tracer_opt;
587 #ifdef CONFIG_FTRACE_STARTUP_TEST
588 if (type->selftest) {
589 struct tracer *saved_tracer = current_trace;
590 struct trace_array *tr = &global_trace;
593 * Run a selftest on this tracer.
594 * Here we reset the trace buffer, and set the current
595 * tracer to be this tracer. The tracer can then run some
596 * internal tracing to verify that everything is in order.
597 * If we fail, we do not register this tracer.
599 for_each_tracing_cpu(i)
600 tracing_reset(tr, i);
602 current_trace = type;
603 /* the test is responsible for initializing and enabling */
604 pr_info("Testing tracer %s: ", type->name);
605 ret = type->selftest(type, tr);
606 /* the test is responsible for resetting too */
607 current_trace = saved_tracer;
609 printk(KERN_CONT "FAILED!\n");
612 /* Only reset on passing, to avoid touching corrupted buffers */
613 for_each_tracing_cpu(i)
614 tracing_reset(tr, i);
616 printk(KERN_CONT "PASSED\n");
620 type->next = trace_types;
622 len = strlen(type->name);
623 if (len > max_tracer_type_len)
624 max_tracer_type_len = len;
627 mutex_unlock(&trace_types_lock);
633 void unregister_tracer(struct tracer *type)
638 mutex_lock(&trace_types_lock);
639 for (t = &trace_types; *t; t = &(*t)->next) {
643 pr_info("Trace %s not registered\n", type->name);
648 if (strlen(type->name) != max_tracer_type_len)
651 max_tracer_type_len = 0;
652 for (t = &trace_types; *t; t = &(*t)->next) {
653 len = strlen((*t)->name);
654 if (len > max_tracer_type_len)
655 max_tracer_type_len = len;
658 mutex_unlock(&trace_types_lock);
661 void tracing_reset(struct trace_array *tr, int cpu)
663 ftrace_disable_cpu();
664 ring_buffer_reset_cpu(tr->buffer, cpu);
668 #define SAVED_CMDLINES 128
669 static unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1];
670 static unsigned map_cmdline_to_pid[SAVED_CMDLINES];
671 static char saved_cmdlines[SAVED_CMDLINES][TASK_COMM_LEN];
672 static int cmdline_idx;
673 static DEFINE_SPINLOCK(trace_cmdline_lock);
675 /* temporary disable recording */
676 atomic_t trace_record_cmdline_disabled __read_mostly;
678 static void trace_init_cmdlines(void)
680 memset(&map_pid_to_cmdline, -1, sizeof(map_pid_to_cmdline));
681 memset(&map_cmdline_to_pid, -1, sizeof(map_cmdline_to_pid));
685 static int trace_stop_count;
686 static DEFINE_SPINLOCK(tracing_start_lock);
689 * ftrace_off_permanent - disable all ftrace code permanently
691 * This should only be called when a serious anomally has
692 * been detected. This will turn off the function tracing,
693 * ring buffers, and other tracing utilites. It takes no
694 * locks and can be called from any context.
696 void ftrace_off_permanent(void)
698 tracing_disabled = 1;
700 tracing_off_permanent();
704 * tracing_start - quick start of the tracer
706 * If tracing is enabled but was stopped by tracing_stop,
707 * this will start the tracer back up.
709 void tracing_start(void)
711 struct ring_buffer *buffer;
714 if (tracing_disabled)
717 spin_lock_irqsave(&tracing_start_lock, flags);
718 if (--trace_stop_count)
721 if (trace_stop_count < 0) {
722 /* Someone screwed up their debugging */
724 trace_stop_count = 0;
729 buffer = global_trace.buffer;
731 ring_buffer_record_enable(buffer);
733 buffer = max_tr.buffer;
735 ring_buffer_record_enable(buffer);
739 spin_unlock_irqrestore(&tracing_start_lock, flags);
743 * tracing_stop - quick stop of the tracer
745 * Light weight way to stop tracing. Use in conjunction with
748 void tracing_stop(void)
750 struct ring_buffer *buffer;
754 spin_lock_irqsave(&tracing_start_lock, flags);
755 if (trace_stop_count++)
758 buffer = global_trace.buffer;
760 ring_buffer_record_disable(buffer);
762 buffer = max_tr.buffer;
764 ring_buffer_record_disable(buffer);
767 spin_unlock_irqrestore(&tracing_start_lock, flags);
770 void trace_stop_cmdline_recording(void);
772 static void trace_save_cmdline(struct task_struct *tsk)
777 if (!tsk->pid || unlikely(tsk->pid > PID_MAX_DEFAULT))
781 * It's not the end of the world if we don't get
782 * the lock, but we also don't want to spin
783 * nor do we want to disable interrupts,
784 * so if we miss here, then better luck next time.
786 if (!spin_trylock(&trace_cmdline_lock))
789 idx = map_pid_to_cmdline[tsk->pid];
790 if (idx >= SAVED_CMDLINES) {
791 idx = (cmdline_idx + 1) % SAVED_CMDLINES;
793 map = map_cmdline_to_pid[idx];
794 if (map <= PID_MAX_DEFAULT)
795 map_pid_to_cmdline[map] = (unsigned)-1;
797 map_pid_to_cmdline[tsk->pid] = idx;
802 memcpy(&saved_cmdlines[idx], tsk->comm, TASK_COMM_LEN);
804 spin_unlock(&trace_cmdline_lock);
807 char *trace_find_cmdline(int pid)
809 char *cmdline = "<...>";
815 if (pid > PID_MAX_DEFAULT)
818 map = map_pid_to_cmdline[pid];
819 if (map >= SAVED_CMDLINES)
822 cmdline = saved_cmdlines[map];
828 void tracing_record_cmdline(struct task_struct *tsk)
830 if (atomic_read(&trace_record_cmdline_disabled))
833 trace_save_cmdline(tsk);
837 tracing_generic_entry_update(struct trace_entry *entry, unsigned long flags,
840 struct task_struct *tsk = current;
842 entry->preempt_count = pc & 0xff;
843 entry->pid = (tsk) ? tsk->pid : 0;
844 entry->tgid = (tsk) ? tsk->tgid : 0;
846 #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
847 (irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) |
849 TRACE_FLAG_IRQS_NOSUPPORT |
851 ((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) |
852 ((pc & SOFTIRQ_MASK) ? TRACE_FLAG_SOFTIRQ : 0) |
853 (need_resched() ? TRACE_FLAG_NEED_RESCHED : 0);
857 trace_function(struct trace_array *tr, struct trace_array_cpu *data,
858 unsigned long ip, unsigned long parent_ip, unsigned long flags,
861 struct ring_buffer_event *event;
862 struct ftrace_entry *entry;
863 unsigned long irq_flags;
865 /* If we are reading the ring buffer, don't trace */
866 if (unlikely(local_read(&__get_cpu_var(ftrace_cpu_disabled))))
869 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
873 entry = ring_buffer_event_data(event);
874 tracing_generic_entry_update(&entry->ent, flags, pc);
875 entry->ent.type = TRACE_FN;
877 entry->parent_ip = parent_ip;
878 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
881 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
882 static void __trace_graph_entry(struct trace_array *tr,
883 struct trace_array_cpu *data,
884 struct ftrace_graph_ent *trace,
888 struct ring_buffer_event *event;
889 struct ftrace_graph_ent_entry *entry;
890 unsigned long irq_flags;
892 if (unlikely(local_read(&__get_cpu_var(ftrace_cpu_disabled))))
895 event = ring_buffer_lock_reserve(global_trace.buffer, sizeof(*entry),
899 entry = ring_buffer_event_data(event);
900 tracing_generic_entry_update(&entry->ent, flags, pc);
901 entry->ent.type = TRACE_GRAPH_ENT;
902 entry->graph_ent = *trace;
903 ring_buffer_unlock_commit(global_trace.buffer, event, irq_flags);
906 static void __trace_graph_return(struct trace_array *tr,
907 struct trace_array_cpu *data,
908 struct ftrace_graph_ret *trace,
912 struct ring_buffer_event *event;
913 struct ftrace_graph_ret_entry *entry;
914 unsigned long irq_flags;
916 if (unlikely(local_read(&__get_cpu_var(ftrace_cpu_disabled))))
919 event = ring_buffer_lock_reserve(global_trace.buffer, sizeof(*entry),
923 entry = ring_buffer_event_data(event);
924 tracing_generic_entry_update(&entry->ent, flags, pc);
925 entry->ent.type = TRACE_GRAPH_RET;
927 ring_buffer_unlock_commit(global_trace.buffer, event, irq_flags);
932 ftrace(struct trace_array *tr, struct trace_array_cpu *data,
933 unsigned long ip, unsigned long parent_ip, unsigned long flags,
936 if (likely(!atomic_read(&data->disabled)))
937 trace_function(tr, data, ip, parent_ip, flags, pc);
940 static void ftrace_trace_stack(struct trace_array *tr,
941 struct trace_array_cpu *data,
945 #ifdef CONFIG_STACKTRACE
946 struct ring_buffer_event *event;
947 struct stack_entry *entry;
948 struct stack_trace trace;
949 unsigned long irq_flags;
951 if (!(trace_flags & TRACE_ITER_STACKTRACE))
954 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
958 entry = ring_buffer_event_data(event);
959 tracing_generic_entry_update(&entry->ent, flags, pc);
960 entry->ent.type = TRACE_STACK;
962 memset(&entry->caller, 0, sizeof(entry->caller));
964 trace.nr_entries = 0;
965 trace.max_entries = FTRACE_STACK_ENTRIES;
967 trace.entries = entry->caller;
969 save_stack_trace(&trace);
970 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
974 void __trace_stack(struct trace_array *tr,
975 struct trace_array_cpu *data,
979 ftrace_trace_stack(tr, data, flags, skip, preempt_count());
982 static void ftrace_trace_userstack(struct trace_array *tr,
983 struct trace_array_cpu *data,
984 unsigned long flags, int pc)
986 #ifdef CONFIG_STACKTRACE
987 struct ring_buffer_event *event;
988 struct userstack_entry *entry;
989 struct stack_trace trace;
990 unsigned long irq_flags;
992 if (!(trace_flags & TRACE_ITER_USERSTACKTRACE))
995 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
999 entry = ring_buffer_event_data(event);
1000 tracing_generic_entry_update(&entry->ent, flags, pc);
1001 entry->ent.type = TRACE_USER_STACK;
1003 memset(&entry->caller, 0, sizeof(entry->caller));
1005 trace.nr_entries = 0;
1006 trace.max_entries = FTRACE_STACK_ENTRIES;
1008 trace.entries = entry->caller;
1010 save_stack_trace_user(&trace);
1011 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
1015 void __trace_userstack(struct trace_array *tr,
1016 struct trace_array_cpu *data,
1017 unsigned long flags)
1019 ftrace_trace_userstack(tr, data, flags, preempt_count());
1023 ftrace_trace_special(void *__tr, void *__data,
1024 unsigned long arg1, unsigned long arg2, unsigned long arg3,
1027 struct ring_buffer_event *event;
1028 struct trace_array_cpu *data = __data;
1029 struct trace_array *tr = __tr;
1030 struct special_entry *entry;
1031 unsigned long irq_flags;
1033 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
1037 entry = ring_buffer_event_data(event);
1038 tracing_generic_entry_update(&entry->ent, 0, pc);
1039 entry->ent.type = TRACE_SPECIAL;
1043 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
1044 ftrace_trace_stack(tr, data, irq_flags, 4, pc);
1045 ftrace_trace_userstack(tr, data, irq_flags, pc);
1051 __trace_special(void *__tr, void *__data,
1052 unsigned long arg1, unsigned long arg2, unsigned long arg3)
1054 ftrace_trace_special(__tr, __data, arg1, arg2, arg3, preempt_count());
1058 tracing_sched_switch_trace(struct trace_array *tr,
1059 struct trace_array_cpu *data,
1060 struct task_struct *prev,
1061 struct task_struct *next,
1062 unsigned long flags, int pc)
1064 struct ring_buffer_event *event;
1065 struct ctx_switch_entry *entry;
1066 unsigned long irq_flags;
1068 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
1072 entry = ring_buffer_event_data(event);
1073 tracing_generic_entry_update(&entry->ent, flags, pc);
1074 entry->ent.type = TRACE_CTX;
1075 entry->prev_pid = prev->pid;
1076 entry->prev_prio = prev->prio;
1077 entry->prev_state = prev->state;
1078 entry->next_pid = next->pid;
1079 entry->next_prio = next->prio;
1080 entry->next_state = next->state;
1081 entry->next_cpu = task_cpu(next);
1082 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
1083 ftrace_trace_stack(tr, data, flags, 5, pc);
1084 ftrace_trace_userstack(tr, data, flags, pc);
1088 tracing_sched_wakeup_trace(struct trace_array *tr,
1089 struct trace_array_cpu *data,
1090 struct task_struct *wakee,
1091 struct task_struct *curr,
1092 unsigned long flags, int pc)
1094 struct ring_buffer_event *event;
1095 struct ctx_switch_entry *entry;
1096 unsigned long irq_flags;
1098 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
1102 entry = ring_buffer_event_data(event);
1103 tracing_generic_entry_update(&entry->ent, flags, pc);
1104 entry->ent.type = TRACE_WAKE;
1105 entry->prev_pid = curr->pid;
1106 entry->prev_prio = curr->prio;
1107 entry->prev_state = curr->state;
1108 entry->next_pid = wakee->pid;
1109 entry->next_prio = wakee->prio;
1110 entry->next_state = wakee->state;
1111 entry->next_cpu = task_cpu(wakee);
1112 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
1113 ftrace_trace_stack(tr, data, flags, 6, pc);
1114 ftrace_trace_userstack(tr, data, flags, pc);
1120 ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3)
1122 struct trace_array *tr = &global_trace;
1123 struct trace_array_cpu *data;
1124 unsigned long flags;
1128 if (tracing_disabled)
1131 pc = preempt_count();
1132 local_irq_save(flags);
1133 cpu = raw_smp_processor_id();
1134 data = tr->data[cpu];
1136 if (likely(atomic_inc_return(&data->disabled) == 1))
1137 ftrace_trace_special(tr, data, arg1, arg2, arg3, pc);
1139 atomic_dec(&data->disabled);
1140 local_irq_restore(flags);
1143 #ifdef CONFIG_FUNCTION_TRACER
1145 function_trace_call_preempt_only(unsigned long ip, unsigned long parent_ip)
1147 struct trace_array *tr = &global_trace;
1148 struct trace_array_cpu *data;
1149 unsigned long flags;
1154 if (unlikely(!ftrace_function_enabled))
1157 pc = preempt_count();
1158 resched = ftrace_preempt_disable();
1159 local_save_flags(flags);
1160 cpu = raw_smp_processor_id();
1161 data = tr->data[cpu];
1162 disabled = atomic_inc_return(&data->disabled);
1164 if (likely(disabled == 1))
1165 trace_function(tr, data, ip, parent_ip, flags, pc);
1167 atomic_dec(&data->disabled);
1168 ftrace_preempt_enable(resched);
1172 function_trace_call(unsigned long ip, unsigned long parent_ip)
1174 struct trace_array *tr = &global_trace;
1175 struct trace_array_cpu *data;
1176 unsigned long flags;
1181 if (unlikely(!ftrace_function_enabled))
1185 * Need to use raw, since this must be called before the
1186 * recursive protection is performed.
1188 local_irq_save(flags);
1189 cpu = raw_smp_processor_id();
1190 data = tr->data[cpu];
1191 disabled = atomic_inc_return(&data->disabled);
1193 if (likely(disabled == 1)) {
1194 pc = preempt_count();
1195 trace_function(tr, data, ip, parent_ip, flags, pc);
1198 atomic_dec(&data->disabled);
1199 local_irq_restore(flags);
1202 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
1203 int trace_graph_entry(struct ftrace_graph_ent *trace)
1205 struct trace_array *tr = &global_trace;
1206 struct trace_array_cpu *data;
1207 unsigned long flags;
1212 if (!ftrace_trace_task(current))
1215 if (!ftrace_graph_addr(trace->func))
1218 local_irq_save(flags);
1219 cpu = raw_smp_processor_id();
1220 data = tr->data[cpu];
1221 disabled = atomic_inc_return(&data->disabled);
1222 if (likely(disabled == 1)) {
1223 pc = preempt_count();
1224 __trace_graph_entry(tr, data, trace, flags, pc);
1226 /* Only do the atomic if it is not already set */
1227 if (!test_tsk_trace_graph(current))
1228 set_tsk_trace_graph(current);
1229 atomic_dec(&data->disabled);
1230 local_irq_restore(flags);
1235 void trace_graph_return(struct ftrace_graph_ret *trace)
1237 struct trace_array *tr = &global_trace;
1238 struct trace_array_cpu *data;
1239 unsigned long flags;
1244 local_irq_save(flags);
1245 cpu = raw_smp_processor_id();
1246 data = tr->data[cpu];
1247 disabled = atomic_inc_return(&data->disabled);
1248 if (likely(disabled == 1)) {
1249 pc = preempt_count();
1250 __trace_graph_return(tr, data, trace, flags, pc);
1253 clear_tsk_trace_graph(current);
1254 atomic_dec(&data->disabled);
1255 local_irq_restore(flags);
1257 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
1259 static struct ftrace_ops trace_ops __read_mostly =
1261 .func = function_trace_call,
1264 void tracing_start_function_trace(void)
1266 ftrace_function_enabled = 0;
1268 if (trace_flags & TRACE_ITER_PREEMPTONLY)
1269 trace_ops.func = function_trace_call_preempt_only;
1271 trace_ops.func = function_trace_call;
1273 register_ftrace_function(&trace_ops);
1274 ftrace_function_enabled = 1;
1277 void tracing_stop_function_trace(void)
1279 ftrace_function_enabled = 0;
1280 unregister_ftrace_function(&trace_ops);
1284 enum trace_file_type {
1285 TRACE_FILE_LAT_FMT = 1,
1286 TRACE_FILE_ANNOTATE = 2,
1289 static void trace_iterator_increment(struct trace_iterator *iter, int cpu)
1291 /* Don't allow ftrace to trace into the ring buffers */
1292 ftrace_disable_cpu();
1295 if (iter->buffer_iter[iter->cpu])
1296 ring_buffer_read(iter->buffer_iter[iter->cpu], NULL);
1298 ftrace_enable_cpu();
1301 static struct trace_entry *
1302 peek_next_entry(struct trace_iterator *iter, int cpu, u64 *ts)
1304 struct ring_buffer_event *event;
1305 struct ring_buffer_iter *buf_iter = iter->buffer_iter[cpu];
1307 /* Don't allow ftrace to trace into the ring buffers */
1308 ftrace_disable_cpu();
1311 event = ring_buffer_iter_peek(buf_iter, ts);
1313 event = ring_buffer_peek(iter->tr->buffer, cpu, ts);
1315 ftrace_enable_cpu();
1317 return event ? ring_buffer_event_data(event) : NULL;
1320 static struct trace_entry *
1321 __find_next_entry(struct trace_iterator *iter, int *ent_cpu, u64 *ent_ts)
1323 struct ring_buffer *buffer = iter->tr->buffer;
1324 struct trace_entry *ent, *next = NULL;
1325 u64 next_ts = 0, ts;
1329 for_each_tracing_cpu(cpu) {
1331 if (ring_buffer_empty_cpu(buffer, cpu))
1334 ent = peek_next_entry(iter, cpu, &ts);
1337 * Pick the entry with the smallest timestamp:
1339 if (ent && (!next || ts < next_ts)) {
1347 *ent_cpu = next_cpu;
1355 /* Find the next real entry, without updating the iterator itself */
1356 static struct trace_entry *
1357 find_next_entry(struct trace_iterator *iter, int *ent_cpu, u64 *ent_ts)
1359 return __find_next_entry(iter, ent_cpu, ent_ts);
1362 /* Find the next real entry, and increment the iterator to the next entry */
1363 static void *find_next_entry_inc(struct trace_iterator *iter)
1365 iter->ent = __find_next_entry(iter, &iter->cpu, &iter->ts);
1368 trace_iterator_increment(iter, iter->cpu);
1370 return iter->ent ? iter : NULL;
1373 static void trace_consume(struct trace_iterator *iter)
1375 /* Don't allow ftrace to trace into the ring buffers */
1376 ftrace_disable_cpu();
1377 ring_buffer_consume(iter->tr->buffer, iter->cpu, &iter->ts);
1378 ftrace_enable_cpu();
1381 static void *s_next(struct seq_file *m, void *v, loff_t *pos)
1383 struct trace_iterator *iter = m->private;
1389 /* can't go backwards */
1394 ent = find_next_entry_inc(iter);
1398 while (ent && iter->idx < i)
1399 ent = find_next_entry_inc(iter);
1406 static void *s_start(struct seq_file *m, loff_t *pos)
1408 struct trace_iterator *iter = m->private;
1413 mutex_lock(&trace_types_lock);
1415 if (!current_trace || current_trace != iter->trace) {
1416 mutex_unlock(&trace_types_lock);
1420 atomic_inc(&trace_record_cmdline_disabled);
1422 if (*pos != iter->pos) {
1427 ftrace_disable_cpu();
1429 for_each_tracing_cpu(cpu) {
1430 ring_buffer_iter_reset(iter->buffer_iter[cpu]);
1433 ftrace_enable_cpu();
1435 for (p = iter; p && l < *pos; p = s_next(m, p, &l))
1440 p = s_next(m, p, &l);
1446 static void s_stop(struct seq_file *m, void *p)
1448 atomic_dec(&trace_record_cmdline_disabled);
1449 mutex_unlock(&trace_types_lock);
1452 #ifdef CONFIG_KRETPROBES
1453 static inline const char *kretprobed(const char *name)
1455 static const char tramp_name[] = "kretprobe_trampoline";
1456 int size = sizeof(tramp_name);
1458 if (strncmp(tramp_name, name, size) == 0)
1459 return "[unknown/kretprobe'd]";
1463 static inline const char *kretprobed(const char *name)
1467 #endif /* CONFIG_KRETPROBES */
1470 seq_print_sym_short(struct trace_seq *s, const char *fmt, unsigned long address)
1472 #ifdef CONFIG_KALLSYMS
1473 char str[KSYM_SYMBOL_LEN];
1476 kallsyms_lookup(address, NULL, NULL, NULL, str);
1478 name = kretprobed(str);
1480 return trace_seq_printf(s, fmt, name);
1486 seq_print_sym_offset(struct trace_seq *s, const char *fmt,
1487 unsigned long address)
1489 #ifdef CONFIG_KALLSYMS
1490 char str[KSYM_SYMBOL_LEN];
1493 sprint_symbol(str, address);
1494 name = kretprobed(str);
1496 return trace_seq_printf(s, fmt, name);
1501 #ifndef CONFIG_64BIT
1502 # define IP_FMT "%08lx"
1504 # define IP_FMT "%016lx"
1508 seq_print_ip_sym(struct trace_seq *s, unsigned long ip, unsigned long sym_flags)
1513 return trace_seq_printf(s, "0");
1515 if (sym_flags & TRACE_ITER_SYM_OFFSET)
1516 ret = seq_print_sym_offset(s, "%s", ip);
1518 ret = seq_print_sym_short(s, "%s", ip);
1523 if (sym_flags & TRACE_ITER_SYM_ADDR)
1524 ret = trace_seq_printf(s, " <" IP_FMT ">", ip);
1528 static inline int seq_print_user_ip(struct trace_seq *s, struct mm_struct *mm,
1529 unsigned long ip, unsigned long sym_flags)
1531 struct file *file = NULL;
1532 unsigned long vmstart = 0;
1536 const struct vm_area_struct *vma;
1538 down_read(&mm->mmap_sem);
1539 vma = find_vma(mm, ip);
1541 file = vma->vm_file;
1542 vmstart = vma->vm_start;
1545 ret = trace_seq_path(s, &file->f_path);
1547 ret = trace_seq_printf(s, "[+0x%lx]", ip - vmstart);
1549 up_read(&mm->mmap_sem);
1551 if (ret && ((sym_flags & TRACE_ITER_SYM_ADDR) || !file))
1552 ret = trace_seq_printf(s, " <" IP_FMT ">", ip);
1557 seq_print_userip_objs(const struct userstack_entry *entry, struct trace_seq *s,
1558 unsigned long sym_flags)
1560 struct mm_struct *mm = NULL;
1564 if (trace_flags & TRACE_ITER_SYM_USEROBJ) {
1565 struct task_struct *task;
1567 * we do the lookup on the thread group leader,
1568 * since individual threads might have already quit!
1571 task = find_task_by_vpid(entry->ent.tgid);
1573 mm = get_task_mm(task);
1577 for (i = 0; i < FTRACE_STACK_ENTRIES; i++) {
1578 unsigned long ip = entry->caller[i];
1580 if (ip == ULONG_MAX || !ret)
1583 ret = trace_seq_puts(s, " <- ");
1586 ret = trace_seq_puts(s, "??");
1592 ret = seq_print_user_ip(s, mm, ip, sym_flags);
1600 static void print_lat_help_header(struct seq_file *m)
1602 seq_puts(m, "# _------=> CPU# \n");
1603 seq_puts(m, "# / _-----=> irqs-off \n");
1604 seq_puts(m, "# | / _----=> need-resched \n");
1605 seq_puts(m, "# || / _---=> hardirq/softirq \n");
1606 seq_puts(m, "# ||| / _--=> preempt-depth \n");
1607 seq_puts(m, "# |||| / \n");
1608 seq_puts(m, "# ||||| delay \n");
1609 seq_puts(m, "# cmd pid ||||| time | caller \n");
1610 seq_puts(m, "# \\ / ||||| \\ | / \n");
1613 static void print_func_help_header(struct seq_file *m)
1615 seq_puts(m, "# TASK-PID CPU# TIMESTAMP FUNCTION\n");
1616 seq_puts(m, "# | | | | |\n");
1621 print_trace_header(struct seq_file *m, struct trace_iterator *iter)
1623 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1624 struct trace_array *tr = iter->tr;
1625 struct trace_array_cpu *data = tr->data[tr->cpu];
1626 struct tracer *type = current_trace;
1627 unsigned long total;
1628 unsigned long entries;
1629 const char *name = "preemption";
1634 entries = ring_buffer_entries(iter->tr->buffer);
1636 ring_buffer_overruns(iter->tr->buffer);
1638 seq_printf(m, "%s latency trace v1.1.5 on %s\n",
1640 seq_puts(m, "-----------------------------------"
1641 "---------------------------------\n");
1642 seq_printf(m, " latency: %lu us, #%lu/%lu, CPU#%d |"
1643 " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
1644 nsecs_to_usecs(data->saved_latency),
1648 #if defined(CONFIG_PREEMPT_NONE)
1650 #elif defined(CONFIG_PREEMPT_VOLUNTARY)
1652 #elif defined(CONFIG_PREEMPT)
1657 /* These are reserved for later use */
1660 seq_printf(m, " #P:%d)\n", num_online_cpus());
1664 seq_puts(m, " -----------------\n");
1665 seq_printf(m, " | task: %.16s-%d "
1666 "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
1667 data->comm, data->pid, data->uid, data->nice,
1668 data->policy, data->rt_priority);
1669 seq_puts(m, " -----------------\n");
1671 if (data->critical_start) {
1672 seq_puts(m, " => started at: ");
1673 seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags);
1674 trace_print_seq(m, &iter->seq);
1675 seq_puts(m, "\n => ended at: ");
1676 seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags);
1677 trace_print_seq(m, &iter->seq);
1685 lat_print_generic(struct trace_seq *s, struct trace_entry *entry, int cpu)
1687 int hardirq, softirq;
1690 comm = trace_find_cmdline(entry->pid);
1692 trace_seq_printf(s, "%8.8s-%-5d ", comm, entry->pid);
1693 trace_seq_printf(s, "%3d", cpu);
1694 trace_seq_printf(s, "%c%c",
1695 (entry->flags & TRACE_FLAG_IRQS_OFF) ? 'd' :
1696 (entry->flags & TRACE_FLAG_IRQS_NOSUPPORT) ? 'X' : '.',
1697 ((entry->flags & TRACE_FLAG_NEED_RESCHED) ? 'N' : '.'));
1699 hardirq = entry->flags & TRACE_FLAG_HARDIRQ;
1700 softirq = entry->flags & TRACE_FLAG_SOFTIRQ;
1701 if (hardirq && softirq) {
1702 trace_seq_putc(s, 'H');
1705 trace_seq_putc(s, 'h');
1708 trace_seq_putc(s, 's');
1710 trace_seq_putc(s, '.');
1714 if (entry->preempt_count)
1715 trace_seq_printf(s, "%x", entry->preempt_count);
1717 trace_seq_puts(s, ".");
1720 unsigned long preempt_mark_thresh = 100;
1723 lat_print_timestamp(struct trace_seq *s, u64 abs_usecs,
1724 unsigned long rel_usecs)
1726 trace_seq_printf(s, " %4lldus", abs_usecs);
1727 if (rel_usecs > preempt_mark_thresh)
1728 trace_seq_puts(s, "!: ");
1729 else if (rel_usecs > 1)
1730 trace_seq_puts(s, "+: ");
1732 trace_seq_puts(s, " : ");
1735 static const char state_to_char[] = TASK_STATE_TO_CHAR_STR;
1738 * The message is supposed to contain an ending newline.
1739 * If the printing stops prematurely, try to add a newline of our own.
1741 void trace_seq_print_cont(struct trace_seq *s, struct trace_iterator *iter)
1743 struct trace_entry *ent;
1744 struct trace_field_cont *cont;
1747 ent = peek_next_entry(iter, iter->cpu, NULL);
1748 if (!ent || ent->type != TRACE_CONT) {
1749 trace_seq_putc(s, '\n');
1754 cont = (struct trace_field_cont *)ent;
1756 ok = (trace_seq_printf(s, "%s", cont->buf) > 0);
1758 ftrace_disable_cpu();
1760 if (iter->buffer_iter[iter->cpu])
1761 ring_buffer_read(iter->buffer_iter[iter->cpu], NULL);
1763 ring_buffer_consume(iter->tr->buffer, iter->cpu, NULL);
1765 ftrace_enable_cpu();
1767 ent = peek_next_entry(iter, iter->cpu, NULL);
1768 } while (ent && ent->type == TRACE_CONT);
1771 trace_seq_putc(s, '\n');
1774 static void test_cpu_buff_start(struct trace_iterator *iter)
1776 struct trace_seq *s = &iter->seq;
1778 if (!(trace_flags & TRACE_ITER_ANNOTATE))
1781 if (!(iter->iter_flags & TRACE_FILE_ANNOTATE))
1784 if (cpu_isset(iter->cpu, iter->started))
1787 cpu_set(iter->cpu, iter->started);
1788 trace_seq_printf(s, "##### CPU %u buffer started ####\n", iter->cpu);
1791 static enum print_line_t
1792 print_lat_fmt(struct trace_iterator *iter, unsigned int trace_idx, int cpu)
1794 struct trace_seq *s = &iter->seq;
1795 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1796 struct trace_entry *next_entry;
1797 unsigned long verbose = (trace_flags & TRACE_ITER_VERBOSE);
1798 struct trace_entry *entry = iter->ent;
1799 unsigned long abs_usecs;
1800 unsigned long rel_usecs;
1807 if (entry->type == TRACE_CONT)
1808 return TRACE_TYPE_HANDLED;
1810 test_cpu_buff_start(iter);
1812 next_entry = find_next_entry(iter, NULL, &next_ts);
1815 rel_usecs = ns2usecs(next_ts - iter->ts);
1816 abs_usecs = ns2usecs(iter->ts - iter->tr->time_start);
1819 comm = trace_find_cmdline(entry->pid);
1820 trace_seq_printf(s, "%16s %5d %3d %d %08x %08x [%08lx]"
1821 " %ld.%03ldms (+%ld.%03ldms): ",
1823 entry->pid, cpu, entry->flags,
1824 entry->preempt_count, trace_idx,
1827 abs_usecs % 1000, rel_usecs/1000,
1830 lat_print_generic(s, entry, cpu);
1831 lat_print_timestamp(s, abs_usecs, rel_usecs);
1833 switch (entry->type) {
1835 struct ftrace_entry *field;
1837 trace_assign_type(field, entry);
1839 seq_print_ip_sym(s, field->ip, sym_flags);
1840 trace_seq_puts(s, " (");
1841 seq_print_ip_sym(s, field->parent_ip, sym_flags);
1842 trace_seq_puts(s, ")\n");
1847 struct ctx_switch_entry *field;
1849 trace_assign_type(field, entry);
1851 T = field->next_state < sizeof(state_to_char) ?
1852 state_to_char[field->next_state] : 'X';
1854 state = field->prev_state ?
1855 __ffs(field->prev_state) + 1 : 0;
1856 S = state < sizeof(state_to_char) - 1 ? state_to_char[state] : 'X';
1857 comm = trace_find_cmdline(field->next_pid);
1858 trace_seq_printf(s, " %5d:%3d:%c %s [%03d] %5d:%3d:%c %s\n",
1861 S, entry->type == TRACE_CTX ? "==>" : " +",
1868 case TRACE_SPECIAL: {
1869 struct special_entry *field;
1871 trace_assign_type(field, entry);
1873 trace_seq_printf(s, "# %ld %ld %ld\n",
1880 struct stack_entry *field;
1882 trace_assign_type(field, entry);
1884 for (i = 0; i < FTRACE_STACK_ENTRIES; i++) {
1886 trace_seq_puts(s, " <= ");
1887 seq_print_ip_sym(s, field->caller[i], sym_flags);
1889 trace_seq_puts(s, "\n");
1893 struct print_entry *field;
1895 trace_assign_type(field, entry);
1897 seq_print_ip_sym(s, field->ip, sym_flags);
1898 trace_seq_printf(s, ": %s", field->buf);
1899 if (entry->flags & TRACE_FLAG_CONT)
1900 trace_seq_print_cont(s, iter);
1903 case TRACE_BRANCH: {
1904 struct trace_branch *field;
1906 trace_assign_type(field, entry);
1908 trace_seq_printf(s, "[%s] %s:%s:%d\n",
1909 field->correct ? " ok " : " MISS ",
1915 case TRACE_USER_STACK: {
1916 struct userstack_entry *field;
1918 trace_assign_type(field, entry);
1920 seq_print_userip_objs(field, s, sym_flags);
1921 trace_seq_putc(s, '\n');
1925 trace_seq_printf(s, "Unknown type %d\n", entry->type);
1927 return TRACE_TYPE_HANDLED;
1930 static enum print_line_t print_trace_fmt(struct trace_iterator *iter)
1932 struct trace_seq *s = &iter->seq;
1933 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1934 struct trace_entry *entry;
1935 unsigned long usec_rem;
1936 unsigned long long t;
1945 if (entry->type == TRACE_CONT)
1946 return TRACE_TYPE_HANDLED;
1948 test_cpu_buff_start(iter);
1950 comm = trace_find_cmdline(iter->ent->pid);
1952 t = ns2usecs(iter->ts);
1953 usec_rem = do_div(t, 1000000ULL);
1954 secs = (unsigned long)t;
1956 ret = trace_seq_printf(s, "%16s-%-5d ", comm, entry->pid);
1958 return TRACE_TYPE_PARTIAL_LINE;
1959 ret = trace_seq_printf(s, "[%03d] ", iter->cpu);
1961 return TRACE_TYPE_PARTIAL_LINE;
1962 ret = trace_seq_printf(s, "%5lu.%06lu: ", secs, usec_rem);
1964 return TRACE_TYPE_PARTIAL_LINE;
1966 switch (entry->type) {
1968 struct ftrace_entry *field;
1970 trace_assign_type(field, entry);
1972 ret = seq_print_ip_sym(s, field->ip, sym_flags);
1974 return TRACE_TYPE_PARTIAL_LINE;
1975 if ((sym_flags & TRACE_ITER_PRINT_PARENT) &&
1977 ret = trace_seq_printf(s, " <-");
1979 return TRACE_TYPE_PARTIAL_LINE;
1980 ret = seq_print_ip_sym(s,
1984 return TRACE_TYPE_PARTIAL_LINE;
1986 ret = trace_seq_printf(s, "\n");
1988 return TRACE_TYPE_PARTIAL_LINE;
1993 struct ctx_switch_entry *field;
1995 trace_assign_type(field, entry);
1997 S = field->prev_state < sizeof(state_to_char) ?
1998 state_to_char[field->prev_state] : 'X';
1999 T = field->next_state < sizeof(state_to_char) ?
2000 state_to_char[field->next_state] : 'X';
2001 ret = trace_seq_printf(s, " %5d:%3d:%c %s [%03d] %5d:%3d:%c\n",
2005 entry->type == TRACE_CTX ? "==>" : " +",
2011 return TRACE_TYPE_PARTIAL_LINE;
2014 case TRACE_SPECIAL: {
2015 struct special_entry *field;
2017 trace_assign_type(field, entry);
2019 ret = trace_seq_printf(s, "# %ld %ld %ld\n",
2024 return TRACE_TYPE_PARTIAL_LINE;
2028 struct stack_entry *field;
2030 trace_assign_type(field, entry);
2032 for (i = 0; i < FTRACE_STACK_ENTRIES; i++) {
2034 ret = trace_seq_puts(s, " <= ");
2036 return TRACE_TYPE_PARTIAL_LINE;
2038 ret = seq_print_ip_sym(s, field->caller[i],
2041 return TRACE_TYPE_PARTIAL_LINE;
2043 ret = trace_seq_puts(s, "\n");
2045 return TRACE_TYPE_PARTIAL_LINE;
2049 struct print_entry *field;
2051 trace_assign_type(field, entry);
2053 seq_print_ip_sym(s, field->ip, sym_flags);
2054 trace_seq_printf(s, ": %s", field->buf);
2055 if (entry->flags & TRACE_FLAG_CONT)
2056 trace_seq_print_cont(s, iter);
2059 case TRACE_GRAPH_RET: {
2060 return print_graph_function(iter);
2062 case TRACE_GRAPH_ENT: {
2063 return print_graph_function(iter);
2065 case TRACE_BRANCH: {
2066 struct trace_branch *field;
2068 trace_assign_type(field, entry);
2070 trace_seq_printf(s, "[%s] %s:%s:%d\n",
2071 field->correct ? " ok " : " MISS ",
2077 case TRACE_USER_STACK: {
2078 struct userstack_entry *field;
2080 trace_assign_type(field, entry);
2082 ret = seq_print_userip_objs(field, s, sym_flags);
2084 return TRACE_TYPE_PARTIAL_LINE;
2085 ret = trace_seq_putc(s, '\n');
2087 return TRACE_TYPE_PARTIAL_LINE;
2091 return TRACE_TYPE_HANDLED;
2094 static enum print_line_t print_raw_fmt(struct trace_iterator *iter)
2096 struct trace_seq *s = &iter->seq;
2097 struct trace_entry *entry;
2103 if (entry->type == TRACE_CONT)
2104 return TRACE_TYPE_HANDLED;
2106 ret = trace_seq_printf(s, "%d %d %llu ",
2107 entry->pid, iter->cpu, iter->ts);
2109 return TRACE_TYPE_PARTIAL_LINE;
2111 switch (entry->type) {
2113 struct ftrace_entry *field;
2115 trace_assign_type(field, entry);
2117 ret = trace_seq_printf(s, "%x %x\n",
2121 return TRACE_TYPE_PARTIAL_LINE;
2126 struct ctx_switch_entry *field;
2128 trace_assign_type(field, entry);
2130 S = field->prev_state < sizeof(state_to_char) ?
2131 state_to_char[field->prev_state] : 'X';
2132 T = field->next_state < sizeof(state_to_char) ?
2133 state_to_char[field->next_state] : 'X';
2134 if (entry->type == TRACE_WAKE)
2136 ret = trace_seq_printf(s, "%d %d %c %d %d %d %c\n",
2145 return TRACE_TYPE_PARTIAL_LINE;
2149 case TRACE_USER_STACK:
2151 struct special_entry *field;
2153 trace_assign_type(field, entry);
2155 ret = trace_seq_printf(s, "# %ld %ld %ld\n",
2160 return TRACE_TYPE_PARTIAL_LINE;
2164 struct print_entry *field;
2166 trace_assign_type(field, entry);
2168 trace_seq_printf(s, "# %lx %s", field->ip, field->buf);
2169 if (entry->flags & TRACE_FLAG_CONT)
2170 trace_seq_print_cont(s, iter);
2174 return TRACE_TYPE_HANDLED;
2177 #define SEQ_PUT_FIELD_RET(s, x) \
2179 if (!trace_seq_putmem(s, &(x), sizeof(x))) \
2183 #define SEQ_PUT_HEX_FIELD_RET(s, x) \
2185 BUILD_BUG_ON(sizeof(x) > MAX_MEMHEX_BYTES); \
2186 if (!trace_seq_putmem_hex(s, &(x), sizeof(x))) \
2190 static enum print_line_t print_hex_fmt(struct trace_iterator *iter)
2192 struct trace_seq *s = &iter->seq;
2193 unsigned char newline = '\n';
2194 struct trace_entry *entry;
2199 if (entry->type == TRACE_CONT)
2200 return TRACE_TYPE_HANDLED;
2202 SEQ_PUT_HEX_FIELD_RET(s, entry->pid);
2203 SEQ_PUT_HEX_FIELD_RET(s, iter->cpu);
2204 SEQ_PUT_HEX_FIELD_RET(s, iter->ts);
2206 switch (entry->type) {
2208 struct ftrace_entry *field;
2210 trace_assign_type(field, entry);
2212 SEQ_PUT_HEX_FIELD_RET(s, field->ip);
2213 SEQ_PUT_HEX_FIELD_RET(s, field->parent_ip);
2218 struct ctx_switch_entry *field;
2220 trace_assign_type(field, entry);
2222 S = field->prev_state < sizeof(state_to_char) ?
2223 state_to_char[field->prev_state] : 'X';
2224 T = field->next_state < sizeof(state_to_char) ?
2225 state_to_char[field->next_state] : 'X';
2226 if (entry->type == TRACE_WAKE)
2228 SEQ_PUT_HEX_FIELD_RET(s, field->prev_pid);
2229 SEQ_PUT_HEX_FIELD_RET(s, field->prev_prio);
2230 SEQ_PUT_HEX_FIELD_RET(s, S);
2231 SEQ_PUT_HEX_FIELD_RET(s, field->next_cpu);
2232 SEQ_PUT_HEX_FIELD_RET(s, field->next_pid);
2233 SEQ_PUT_HEX_FIELD_RET(s, field->next_prio);
2234 SEQ_PUT_HEX_FIELD_RET(s, T);
2238 case TRACE_USER_STACK:
2240 struct special_entry *field;
2242 trace_assign_type(field, entry);
2244 SEQ_PUT_HEX_FIELD_RET(s, field->arg1);
2245 SEQ_PUT_HEX_FIELD_RET(s, field->arg2);
2246 SEQ_PUT_HEX_FIELD_RET(s, field->arg3);
2250 SEQ_PUT_FIELD_RET(s, newline);
2252 return TRACE_TYPE_HANDLED;
2255 static enum print_line_t print_bin_fmt(struct trace_iterator *iter)
2257 struct trace_seq *s = &iter->seq;
2258 struct trace_entry *entry;
2262 if (entry->type == TRACE_CONT)
2263 return TRACE_TYPE_HANDLED;
2265 SEQ_PUT_FIELD_RET(s, entry->pid);
2266 SEQ_PUT_FIELD_RET(s, entry->cpu);
2267 SEQ_PUT_FIELD_RET(s, iter->ts);
2269 switch (entry->type) {
2271 struct ftrace_entry *field;
2273 trace_assign_type(field, entry);
2275 SEQ_PUT_FIELD_RET(s, field->ip);
2276 SEQ_PUT_FIELD_RET(s, field->parent_ip);
2280 struct ctx_switch_entry *field;
2282 trace_assign_type(field, entry);
2284 SEQ_PUT_FIELD_RET(s, field->prev_pid);
2285 SEQ_PUT_FIELD_RET(s, field->prev_prio);
2286 SEQ_PUT_FIELD_RET(s, field->prev_state);
2287 SEQ_PUT_FIELD_RET(s, field->next_pid);
2288 SEQ_PUT_FIELD_RET(s, field->next_prio);
2289 SEQ_PUT_FIELD_RET(s, field->next_state);
2293 case TRACE_USER_STACK:
2295 struct special_entry *field;
2297 trace_assign_type(field, entry);
2299 SEQ_PUT_FIELD_RET(s, field->arg1);
2300 SEQ_PUT_FIELD_RET(s, field->arg2);
2301 SEQ_PUT_FIELD_RET(s, field->arg3);
2308 static int trace_empty(struct trace_iterator *iter)
2312 for_each_tracing_cpu(cpu) {
2313 if (iter->buffer_iter[cpu]) {
2314 if (!ring_buffer_iter_empty(iter->buffer_iter[cpu]))
2317 if (!ring_buffer_empty_cpu(iter->tr->buffer, cpu))
2325 static enum print_line_t print_trace_line(struct trace_iterator *iter)
2327 enum print_line_t ret;
2329 if (iter->trace && iter->trace->print_line) {
2330 ret = iter->trace->print_line(iter);
2331 if (ret != TRACE_TYPE_UNHANDLED)
2335 if (trace_flags & TRACE_ITER_BIN)
2336 return print_bin_fmt(iter);
2338 if (trace_flags & TRACE_ITER_HEX)
2339 return print_hex_fmt(iter);
2341 if (trace_flags & TRACE_ITER_RAW)
2342 return print_raw_fmt(iter);
2344 if (iter->iter_flags & TRACE_FILE_LAT_FMT)
2345 return print_lat_fmt(iter, iter->idx, iter->cpu);
2347 return print_trace_fmt(iter);
2350 static int s_show(struct seq_file *m, void *v)
2352 struct trace_iterator *iter = v;
2354 if (iter->ent == NULL) {
2356 seq_printf(m, "# tracer: %s\n", iter->trace->name);
2359 if (iter->trace && iter->trace->print_header)
2360 iter->trace->print_header(m);
2361 else if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
2362 /* print nothing if the buffers are empty */
2363 if (trace_empty(iter))
2365 print_trace_header(m, iter);
2366 if (!(trace_flags & TRACE_ITER_VERBOSE))
2367 print_lat_help_header(m);
2369 if (!(trace_flags & TRACE_ITER_VERBOSE))
2370 print_func_help_header(m);
2373 print_trace_line(iter);
2374 trace_print_seq(m, &iter->seq);
2380 static struct seq_operations tracer_seq_ops = {
2387 static struct trace_iterator *
2388 __tracing_open(struct inode *inode, struct file *file, int *ret)
2390 struct trace_iterator *iter;
2394 if (tracing_disabled) {
2399 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2405 mutex_lock(&trace_types_lock);
2406 if (current_trace && current_trace->print_max)
2409 iter->tr = inode->i_private;
2410 iter->trace = current_trace;
2413 /* Notify the tracer early; before we stop tracing. */
2414 if (iter->trace && iter->trace->open)
2415 iter->trace->open(iter);
2417 /* Annotate start of buffers if we had overruns */
2418 if (ring_buffer_overruns(iter->tr->buffer))
2419 iter->iter_flags |= TRACE_FILE_ANNOTATE;
2422 for_each_tracing_cpu(cpu) {
2424 iter->buffer_iter[cpu] =
2425 ring_buffer_read_start(iter->tr->buffer, cpu);
2427 if (!iter->buffer_iter[cpu])
2431 /* TODO stop tracer */
2432 *ret = seq_open(file, &tracer_seq_ops);
2436 m = file->private_data;
2439 /* stop the trace while dumping */
2442 mutex_unlock(&trace_types_lock);
2448 for_each_tracing_cpu(cpu) {
2449 if (iter->buffer_iter[cpu])
2450 ring_buffer_read_finish(iter->buffer_iter[cpu]);
2452 mutex_unlock(&trace_types_lock);
2455 return ERR_PTR(-ENOMEM);
2458 int tracing_open_generic(struct inode *inode, struct file *filp)
2460 if (tracing_disabled)
2463 filp->private_data = inode->i_private;
2467 int tracing_release(struct inode *inode, struct file *file)
2469 struct seq_file *m = (struct seq_file *)file->private_data;
2470 struct trace_iterator *iter = m->private;
2473 mutex_lock(&trace_types_lock);
2474 for_each_tracing_cpu(cpu) {
2475 if (iter->buffer_iter[cpu])
2476 ring_buffer_read_finish(iter->buffer_iter[cpu]);
2479 if (iter->trace && iter->trace->close)
2480 iter->trace->close(iter);
2482 /* reenable tracing if it was previously enabled */
2484 mutex_unlock(&trace_types_lock);
2486 seq_release(inode, file);
2491 static int tracing_open(struct inode *inode, struct file *file)
2495 __tracing_open(inode, file, &ret);
2500 static int tracing_lt_open(struct inode *inode, struct file *file)
2502 struct trace_iterator *iter;
2505 iter = __tracing_open(inode, file, &ret);
2508 iter->iter_flags |= TRACE_FILE_LAT_FMT;
2515 t_next(struct seq_file *m, void *v, loff_t *pos)
2517 struct tracer *t = m->private;
2529 static void *t_start(struct seq_file *m, loff_t *pos)
2531 struct tracer *t = m->private;
2534 mutex_lock(&trace_types_lock);
2535 for (; t && l < *pos; t = t_next(m, t, &l))
2541 static void t_stop(struct seq_file *m, void *p)
2543 mutex_unlock(&trace_types_lock);
2546 static int t_show(struct seq_file *m, void *v)
2548 struct tracer *t = v;
2553 seq_printf(m, "%s", t->name);
2562 static struct seq_operations show_traces_seq_ops = {
2569 static int show_traces_open(struct inode *inode, struct file *file)
2573 if (tracing_disabled)
2576 ret = seq_open(file, &show_traces_seq_ops);
2578 struct seq_file *m = file->private_data;
2579 m->private = trace_types;
2585 static struct file_operations tracing_fops = {
2586 .open = tracing_open,
2588 .llseek = seq_lseek,
2589 .release = tracing_release,
2592 static struct file_operations tracing_lt_fops = {
2593 .open = tracing_lt_open,
2595 .llseek = seq_lseek,
2596 .release = tracing_release,
2599 static struct file_operations show_traces_fops = {
2600 .open = show_traces_open,
2602 .release = seq_release,
2606 * Only trace on a CPU if the bitmask is set:
2608 static cpumask_t tracing_cpumask = CPU_MASK_ALL;
2611 * When tracing/tracing_cpu_mask is modified then this holds
2612 * the new bitmask we are about to install:
2614 static cpumask_t tracing_cpumask_new;
2617 * The tracer itself will not take this lock, but still we want
2618 * to provide a consistent cpumask to user-space:
2620 static DEFINE_MUTEX(tracing_cpumask_update_lock);
2623 * Temporary storage for the character representation of the
2624 * CPU bitmask (and one more byte for the newline):
2626 static char mask_str[NR_CPUS + 1];
2629 tracing_cpumask_read(struct file *filp, char __user *ubuf,
2630 size_t count, loff_t *ppos)
2634 mutex_lock(&tracing_cpumask_update_lock);
2636 len = cpumask_scnprintf(mask_str, count, tracing_cpumask);
2637 if (count - len < 2) {
2641 len += sprintf(mask_str + len, "\n");
2642 count = simple_read_from_buffer(ubuf, count, ppos, mask_str, NR_CPUS+1);
2645 mutex_unlock(&tracing_cpumask_update_lock);
2651 tracing_cpumask_write(struct file *filp, const char __user *ubuf,
2652 size_t count, loff_t *ppos)
2656 mutex_lock(&tracing_cpumask_update_lock);
2657 err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
2661 local_irq_disable();
2662 __raw_spin_lock(&ftrace_max_lock);
2663 for_each_tracing_cpu(cpu) {
2665 * Increase/decrease the disabled counter if we are
2666 * about to flip a bit in the cpumask:
2668 if (cpu_isset(cpu, tracing_cpumask) &&
2669 !cpu_isset(cpu, tracing_cpumask_new)) {
2670 atomic_inc(&global_trace.data[cpu]->disabled);
2672 if (!cpu_isset(cpu, tracing_cpumask) &&
2673 cpu_isset(cpu, tracing_cpumask_new)) {
2674 atomic_dec(&global_trace.data[cpu]->disabled);
2677 __raw_spin_unlock(&ftrace_max_lock);
2680 tracing_cpumask = tracing_cpumask_new;
2682 mutex_unlock(&tracing_cpumask_update_lock);
2687 mutex_unlock(&tracing_cpumask_update_lock);
2692 static struct file_operations tracing_cpumask_fops = {
2693 .open = tracing_open_generic,
2694 .read = tracing_cpumask_read,
2695 .write = tracing_cpumask_write,
2699 tracing_trace_options_read(struct file *filp, char __user *ubuf,
2700 size_t cnt, loff_t *ppos)
2706 u32 tracer_flags = current_trace->flags->val;
2707 struct tracer_opt *trace_opts = current_trace->flags->opts;
2710 /* calulate max size */
2711 for (i = 0; trace_options[i]; i++) {
2712 len += strlen(trace_options[i]);
2713 len += 3; /* "no" and space */
2717 * Increase the size with names of options specific
2718 * of the current tracer.
2720 for (i = 0; trace_opts[i].name; i++) {
2721 len += strlen(trace_opts[i].name);
2722 len += 3; /* "no" and space */
2725 /* +2 for \n and \0 */
2726 buf = kmalloc(len + 2, GFP_KERNEL);
2730 for (i = 0; trace_options[i]; i++) {
2731 if (trace_flags & (1 << i))
2732 r += sprintf(buf + r, "%s ", trace_options[i]);
2734 r += sprintf(buf + r, "no%s ", trace_options[i]);
2737 for (i = 0; trace_opts[i].name; i++) {
2738 if (tracer_flags & trace_opts[i].bit)
2739 r += sprintf(buf + r, "%s ",
2740 trace_opts[i].name);
2742 r += sprintf(buf + r, "no%s ",
2743 trace_opts[i].name);
2746 r += sprintf(buf + r, "\n");
2747 WARN_ON(r >= len + 2);
2749 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2756 /* Try to assign a tracer specific option */
2757 static int set_tracer_option(struct tracer *trace, char *cmp, int neg)
2759 struct tracer_flags *trace_flags = trace->flags;
2760 struct tracer_opt *opts = NULL;
2764 for (i = 0; trace_flags->opts[i].name; i++) {
2765 opts = &trace_flags->opts[i];
2766 len = strlen(opts->name);
2768 if (strncmp(cmp, opts->name, len) == 0) {
2769 ret = trace->set_flag(trace_flags->val,
2775 if (!trace_flags->opts[i].name)
2778 /* Refused to handle */
2783 trace_flags->val &= ~opts->bit;
2785 trace_flags->val |= opts->bit;
2791 tracing_trace_options_write(struct file *filp, const char __user *ubuf,
2792 size_t cnt, loff_t *ppos)
2800 if (cnt >= sizeof(buf))
2803 if (copy_from_user(&buf, ubuf, cnt))
2808 if (strncmp(buf, "no", 2) == 0) {
2813 for (i = 0; trace_options[i]; i++) {
2814 int len = strlen(trace_options[i]);
2816 if (strncmp(cmp, trace_options[i], len) == 0) {
2818 trace_flags &= ~(1 << i);
2820 trace_flags |= (1 << i);
2825 /* If no option could be set, test the specific tracer options */
2826 if (!trace_options[i]) {
2827 ret = set_tracer_option(current_trace, cmp, neg);
2837 static struct file_operations tracing_iter_fops = {
2838 .open = tracing_open_generic,
2839 .read = tracing_trace_options_read,
2840 .write = tracing_trace_options_write,
2843 static const char readme_msg[] =
2844 "tracing mini-HOWTO:\n\n"
2846 "# mount -t debugfs nodev /debug\n\n"
2847 "# cat /debug/tracing/available_tracers\n"
2848 "wakeup preemptirqsoff preemptoff irqsoff ftrace sched_switch none\n\n"
2849 "# cat /debug/tracing/current_tracer\n"
2851 "# echo sched_switch > /debug/tracing/current_tracer\n"
2852 "# cat /debug/tracing/current_tracer\n"
2854 "# cat /debug/tracing/trace_options\n"
2855 "noprint-parent nosym-offset nosym-addr noverbose\n"
2856 "# echo print-parent > /debug/tracing/trace_options\n"
2857 "# echo 1 > /debug/tracing/tracing_enabled\n"
2858 "# cat /debug/tracing/trace > /tmp/trace.txt\n"
2859 "echo 0 > /debug/tracing/tracing_enabled\n"
2863 tracing_readme_read(struct file *filp, char __user *ubuf,
2864 size_t cnt, loff_t *ppos)
2866 return simple_read_from_buffer(ubuf, cnt, ppos,
2867 readme_msg, strlen(readme_msg));
2870 static struct file_operations tracing_readme_fops = {
2871 .open = tracing_open_generic,
2872 .read = tracing_readme_read,
2876 tracing_ctrl_read(struct file *filp, char __user *ubuf,
2877 size_t cnt, loff_t *ppos)
2882 r = sprintf(buf, "%u\n", tracer_enabled);
2883 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2887 tracing_ctrl_write(struct file *filp, const char __user *ubuf,
2888 size_t cnt, loff_t *ppos)
2890 struct trace_array *tr = filp->private_data;
2895 if (cnt >= sizeof(buf))
2898 if (copy_from_user(&buf, ubuf, cnt))
2903 ret = strict_strtoul(buf, 10, &val);
2909 mutex_lock(&trace_types_lock);
2910 if (tracer_enabled ^ val) {
2913 if (current_trace->start)
2914 current_trace->start(tr);
2919 if (current_trace->stop)
2920 current_trace->stop(tr);
2923 mutex_unlock(&trace_types_lock);
2931 tracing_set_trace_read(struct file *filp, char __user *ubuf,
2932 size_t cnt, loff_t *ppos)
2934 char buf[max_tracer_type_len+2];
2937 mutex_lock(&trace_types_lock);
2939 r = sprintf(buf, "%s\n", current_trace->name);
2941 r = sprintf(buf, "\n");
2942 mutex_unlock(&trace_types_lock);
2944 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2947 static int tracing_set_tracer(char *buf)
2949 struct trace_array *tr = &global_trace;
2953 mutex_lock(&trace_types_lock);
2954 for (t = trace_types; t; t = t->next) {
2955 if (strcmp(t->name, buf) == 0)
2962 if (t == current_trace)
2965 trace_branch_disable();
2966 if (current_trace && current_trace->reset)
2967 current_trace->reset(tr);
2976 trace_branch_enable(tr);
2978 mutex_unlock(&trace_types_lock);
2984 tracing_set_trace_write(struct file *filp, const char __user *ubuf,
2985 size_t cnt, loff_t *ppos)
2987 char buf[max_tracer_type_len+1];
2994 if (cnt > max_tracer_type_len)
2995 cnt = max_tracer_type_len;
2997 if (copy_from_user(&buf, ubuf, cnt))
3002 /* strip ending whitespace. */
3003 for (i = cnt - 1; i > 0 && isspace(buf[i]); i--)
3006 err = tracing_set_tracer(buf);
3016 tracing_max_lat_read(struct file *filp, char __user *ubuf,
3017 size_t cnt, loff_t *ppos)
3019 unsigned long *ptr = filp->private_data;
3023 r = snprintf(buf, sizeof(buf), "%ld\n",
3024 *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
3025 if (r > sizeof(buf))
3027 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3031 tracing_max_lat_write(struct file *filp, const char __user *ubuf,
3032 size_t cnt, loff_t *ppos)
3034 long *ptr = filp->private_data;
3039 if (cnt >= sizeof(buf))
3042 if (copy_from_user(&buf, ubuf, cnt))
3047 ret = strict_strtoul(buf, 10, &val);
3056 static atomic_t tracing_reader;
3058 static int tracing_open_pipe(struct inode *inode, struct file *filp)
3060 struct trace_iterator *iter;
3062 if (tracing_disabled)
3065 /* We only allow for reader of the pipe */
3066 if (atomic_inc_return(&tracing_reader) != 1) {
3067 atomic_dec(&tracing_reader);
3071 /* create a buffer to store the information to pass to userspace */
3072 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
3076 mutex_lock(&trace_types_lock);
3078 /* trace pipe does not show start of buffer */
3079 cpus_setall(iter->started);
3081 iter->tr = &global_trace;
3082 iter->trace = current_trace;
3083 filp->private_data = iter;
3085 if (iter->trace->pipe_open)
3086 iter->trace->pipe_open(iter);
3087 mutex_unlock(&trace_types_lock);
3092 static int tracing_release_pipe(struct inode *inode, struct file *file)
3094 struct trace_iterator *iter = file->private_data;
3097 atomic_dec(&tracing_reader);
3103 tracing_poll_pipe(struct file *filp, poll_table *poll_table)
3105 struct trace_iterator *iter = filp->private_data;
3107 if (trace_flags & TRACE_ITER_BLOCK) {
3109 * Always select as readable when in blocking mode
3111 return POLLIN | POLLRDNORM;
3113 if (!trace_empty(iter))
3114 return POLLIN | POLLRDNORM;
3115 poll_wait(filp, &trace_wait, poll_table);
3116 if (!trace_empty(iter))
3117 return POLLIN | POLLRDNORM;
3127 tracing_read_pipe(struct file *filp, char __user *ubuf,
3128 size_t cnt, loff_t *ppos)
3130 struct trace_iterator *iter = filp->private_data;
3133 /* return any leftover data */
3134 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
3138 trace_seq_reset(&iter->seq);
3140 mutex_lock(&trace_types_lock);
3141 if (iter->trace->read) {
3142 sret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
3149 while (trace_empty(iter)) {
3151 if ((filp->f_flags & O_NONBLOCK)) {
3157 * This is a make-shift waitqueue. The reason we don't use
3158 * an actual wait queue is because:
3159 * 1) we only ever have one waiter
3160 * 2) the tracing, traces all functions, we don't want
3161 * the overhead of calling wake_up and friends
3162 * (and tracing them too)
3163 * Anyway, this is really very primitive wakeup.
3165 set_current_state(TASK_INTERRUPTIBLE);
3166 iter->tr->waiter = current;
3168 mutex_unlock(&trace_types_lock);
3170 /* sleep for 100 msecs, and try again. */
3171 schedule_timeout(HZ/10);
3173 mutex_lock(&trace_types_lock);
3175 iter->tr->waiter = NULL;
3177 if (signal_pending(current)) {
3182 if (iter->trace != current_trace)
3186 * We block until we read something and tracing is disabled.
3187 * We still block if tracing is disabled, but we have never
3188 * read anything. This allows a user to cat this file, and
3189 * then enable tracing. But after we have read something,
3190 * we give an EOF when tracing is again disabled.
3192 * iter->pos will be 0 if we haven't read anything.
3194 if (!tracer_enabled && iter->pos)
3200 /* stop when tracing is finished */
3201 if (trace_empty(iter))
3204 if (cnt >= PAGE_SIZE)
3205 cnt = PAGE_SIZE - 1;
3207 /* reset all but tr, trace, and overruns */
3208 memset(&iter->seq, 0,
3209 sizeof(struct trace_iterator) -
3210 offsetof(struct trace_iterator, seq));
3213 while (find_next_entry_inc(iter) != NULL) {
3214 enum print_line_t ret;
3215 int len = iter->seq.len;
3217 ret = print_trace_line(iter);
3218 if (ret == TRACE_TYPE_PARTIAL_LINE) {
3219 /* don't print partial lines */
3220 iter->seq.len = len;
3224 trace_consume(iter);
3226 if (iter->seq.len >= cnt)
3230 /* Now copy what we have to the user */
3231 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
3232 if (iter->seq.readpos >= iter->seq.len)
3233 trace_seq_reset(&iter->seq);
3236 * If there was nothing to send to user, inspite of consuming trace
3237 * entries, go back to wait for more entries.
3243 mutex_unlock(&trace_types_lock);
3249 tracing_entries_read(struct file *filp, char __user *ubuf,
3250 size_t cnt, loff_t *ppos)
3252 struct trace_array *tr = filp->private_data;
3256 r = sprintf(buf, "%lu\n", tr->entries >> 10);
3257 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3261 tracing_entries_write(struct file *filp, const char __user *ubuf,
3262 size_t cnt, loff_t *ppos)
3268 if (cnt >= sizeof(buf))
3271 if (copy_from_user(&buf, ubuf, cnt))
3276 ret = strict_strtoul(buf, 10, &val);
3280 /* must have at least 1 entry */
3284 mutex_lock(&trace_types_lock);
3288 /* disable all cpu buffers */
3289 for_each_tracing_cpu(cpu) {
3290 if (global_trace.data[cpu])
3291 atomic_inc(&global_trace.data[cpu]->disabled);
3292 if (max_tr.data[cpu])
3293 atomic_inc(&max_tr.data[cpu]->disabled);
3296 /* value is in KB */
3299 if (val != global_trace.entries) {
3300 ret = ring_buffer_resize(global_trace.buffer, val);
3306 ret = ring_buffer_resize(max_tr.buffer, val);
3310 r = ring_buffer_resize(global_trace.buffer,
3311 global_trace.entries);
3313 /* AARGH! We are left with different
3314 * size max buffer!!!! */
3316 tracing_disabled = 1;
3321 global_trace.entries = val;
3326 /* If check pages failed, return ENOMEM */
3327 if (tracing_disabled)
3330 for_each_tracing_cpu(cpu) {
3331 if (global_trace.data[cpu])
3332 atomic_dec(&global_trace.data[cpu]->disabled);
3333 if (max_tr.data[cpu])
3334 atomic_dec(&max_tr.data[cpu]->disabled);
3338 max_tr.entries = global_trace.entries;
3339 mutex_unlock(&trace_types_lock);
3344 static int mark_printk(const char *fmt, ...)
3348 va_start(args, fmt);
3349 ret = trace_vprintk(0, fmt, args);
3355 tracing_mark_write(struct file *filp, const char __user *ubuf,
3356 size_t cnt, loff_t *fpos)
3361 if (tracing_disabled)
3364 if (cnt > TRACE_BUF_SIZE)
3365 cnt = TRACE_BUF_SIZE;
3367 buf = kmalloc(cnt + 1, GFP_KERNEL);
3371 if (copy_from_user(buf, ubuf, cnt)) {
3376 /* Cut from the first nil or newline. */
3378 end = strchr(buf, '\n');
3382 cnt = mark_printk("%s\n", buf);
3389 static struct file_operations tracing_max_lat_fops = {
3390 .open = tracing_open_generic,
3391 .read = tracing_max_lat_read,
3392 .write = tracing_max_lat_write,
3395 static struct file_operations tracing_ctrl_fops = {
3396 .open = tracing_open_generic,
3397 .read = tracing_ctrl_read,
3398 .write = tracing_ctrl_write,
3401 static struct file_operations set_tracer_fops = {
3402 .open = tracing_open_generic,
3403 .read = tracing_set_trace_read,
3404 .write = tracing_set_trace_write,
3407 static struct file_operations tracing_pipe_fops = {
3408 .open = tracing_open_pipe,
3409 .poll = tracing_poll_pipe,
3410 .read = tracing_read_pipe,
3411 .release = tracing_release_pipe,
3414 static struct file_operations tracing_entries_fops = {
3415 .open = tracing_open_generic,
3416 .read = tracing_entries_read,
3417 .write = tracing_entries_write,
3420 static struct file_operations tracing_mark_fops = {
3421 .open = tracing_open_generic,
3422 .write = tracing_mark_write,
3425 #ifdef CONFIG_DYNAMIC_FTRACE
3427 int __weak ftrace_arch_read_dyn_info(char *buf, int size)
3433 tracing_read_dyn_info(struct file *filp, char __user *ubuf,
3434 size_t cnt, loff_t *ppos)
3436 static char ftrace_dyn_info_buffer[1024];
3437 static DEFINE_MUTEX(dyn_info_mutex);
3438 unsigned long *p = filp->private_data;
3439 char *buf = ftrace_dyn_info_buffer;
3440 int size = ARRAY_SIZE(ftrace_dyn_info_buffer);
3443 mutex_lock(&dyn_info_mutex);
3444 r = sprintf(buf, "%ld ", *p);
3446 r += ftrace_arch_read_dyn_info(buf+r, (size-1)-r);
3449 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3451 mutex_unlock(&dyn_info_mutex);
3456 static struct file_operations tracing_dyn_info_fops = {
3457 .open = tracing_open_generic,
3458 .read = tracing_read_dyn_info,
3462 static struct dentry *d_tracer;
3464 struct dentry *tracing_init_dentry(void)
3471 d_tracer = debugfs_create_dir("tracing", NULL);
3473 if (!d_tracer && !once) {
3475 pr_warning("Could not create debugfs directory 'tracing'\n");
3482 #ifdef CONFIG_FTRACE_SELFTEST
3483 /* Let selftest have access to static functions in this file */
3484 #include "trace_selftest.c"
3487 static __init int tracer_init_debugfs(void)
3489 struct dentry *d_tracer;
3490 struct dentry *entry;
3492 d_tracer = tracing_init_dentry();
3494 entry = debugfs_create_file("tracing_enabled", 0644, d_tracer,
3495 &global_trace, &tracing_ctrl_fops);
3497 pr_warning("Could not create debugfs 'tracing_enabled' entry\n");
3499 entry = debugfs_create_file("trace_options", 0644, d_tracer,
3500 NULL, &tracing_iter_fops);
3502 pr_warning("Could not create debugfs 'trace_options' entry\n");
3504 entry = debugfs_create_file("tracing_cpumask", 0644, d_tracer,
3505 NULL, &tracing_cpumask_fops);
3507 pr_warning("Could not create debugfs 'tracing_cpumask' entry\n");
3509 entry = debugfs_create_file("latency_trace", 0444, d_tracer,
3510 &global_trace, &tracing_lt_fops);
3512 pr_warning("Could not create debugfs 'latency_trace' entry\n");
3514 entry = debugfs_create_file("trace", 0444, d_tracer,
3515 &global_trace, &tracing_fops);
3517 pr_warning("Could not create debugfs 'trace' entry\n");
3519 entry = debugfs_create_file("available_tracers", 0444, d_tracer,
3520 &global_trace, &show_traces_fops);
3522 pr_warning("Could not create debugfs 'available_tracers' entry\n");
3524 entry = debugfs_create_file("current_tracer", 0444, d_tracer,
3525 &global_trace, &set_tracer_fops);
3527 pr_warning("Could not create debugfs 'current_tracer' entry\n");
3529 entry = debugfs_create_file("tracing_max_latency", 0644, d_tracer,
3530 &tracing_max_latency,
3531 &tracing_max_lat_fops);
3533 pr_warning("Could not create debugfs "
3534 "'tracing_max_latency' entry\n");
3536 entry = debugfs_create_file("tracing_thresh", 0644, d_tracer,
3537 &tracing_thresh, &tracing_max_lat_fops);
3539 pr_warning("Could not create debugfs "
3540 "'tracing_thresh' entry\n");
3541 entry = debugfs_create_file("README", 0644, d_tracer,
3542 NULL, &tracing_readme_fops);
3544 pr_warning("Could not create debugfs 'README' entry\n");
3546 entry = debugfs_create_file("trace_pipe", 0644, d_tracer,
3547 NULL, &tracing_pipe_fops);
3549 pr_warning("Could not create debugfs "
3550 "'trace_pipe' entry\n");
3552 entry = debugfs_create_file("buffer_size_kb", 0644, d_tracer,
3553 &global_trace, &tracing_entries_fops);
3555 pr_warning("Could not create debugfs "
3556 "'buffer_size_kb' entry\n");
3558 entry = debugfs_create_file("trace_marker", 0220, d_tracer,
3559 NULL, &tracing_mark_fops);
3561 pr_warning("Could not create debugfs "
3562 "'trace_marker' entry\n");
3564 #ifdef CONFIG_DYNAMIC_FTRACE
3565 entry = debugfs_create_file("dyn_ftrace_total_info", 0444, d_tracer,
3566 &ftrace_update_tot_cnt,
3567 &tracing_dyn_info_fops);
3569 pr_warning("Could not create debugfs "
3570 "'dyn_ftrace_total_info' entry\n");
3572 #ifdef CONFIG_SYSPROF_TRACER
3573 init_tracer_sysprof_debugfs(d_tracer);
3578 int trace_vprintk(unsigned long ip, const char *fmt, va_list args)
3580 static DEFINE_SPINLOCK(trace_buf_lock);
3581 static char trace_buf[TRACE_BUF_SIZE];
3583 struct ring_buffer_event *event;
3584 struct trace_array *tr = &global_trace;
3585 struct trace_array_cpu *data;
3586 struct print_entry *entry;
3587 unsigned long flags, irq_flags;
3588 int cpu, len = 0, size, pc;
3590 if (tracing_disabled)
3593 pc = preempt_count();
3594 preempt_disable_notrace();
3595 cpu = raw_smp_processor_id();
3596 data = tr->data[cpu];
3598 if (unlikely(atomic_read(&data->disabled)))
3601 spin_lock_irqsave(&trace_buf_lock, flags);
3602 len = vsnprintf(trace_buf, TRACE_BUF_SIZE, fmt, args);
3604 len = min(len, TRACE_BUF_SIZE-1);
3607 size = sizeof(*entry) + len + 1;
3608 event = ring_buffer_lock_reserve(tr->buffer, size, &irq_flags);
3611 entry = ring_buffer_event_data(event);
3612 tracing_generic_entry_update(&entry->ent, flags, pc);
3613 entry->ent.type = TRACE_PRINT;
3616 memcpy(&entry->buf, trace_buf, len);
3617 entry->buf[len] = 0;
3618 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
3621 spin_unlock_irqrestore(&trace_buf_lock, flags);
3624 preempt_enable_notrace();
3628 EXPORT_SYMBOL_GPL(trace_vprintk);
3630 int __ftrace_printk(unsigned long ip, const char *fmt, ...)
3635 if (!(trace_flags & TRACE_ITER_PRINTK))
3639 ret = trace_vprintk(ip, fmt, ap);
3643 EXPORT_SYMBOL_GPL(__ftrace_printk);
3645 static int trace_panic_handler(struct notifier_block *this,
3646 unsigned long event, void *unused)
3648 if (ftrace_dump_on_oops)
3653 static struct notifier_block trace_panic_notifier = {
3654 .notifier_call = trace_panic_handler,
3656 .priority = 150 /* priority: INT_MAX >= x >= 0 */
3659 static int trace_die_handler(struct notifier_block *self,
3665 if (ftrace_dump_on_oops)
3674 static struct notifier_block trace_die_notifier = {
3675 .notifier_call = trace_die_handler,
3680 * printk is set to max of 1024, we really don't need it that big.
3681 * Nothing should be printing 1000 characters anyway.
3683 #define TRACE_MAX_PRINT 1000
3686 * Define here KERN_TRACE so that we have one place to modify
3687 * it if we decide to change what log level the ftrace dump
3690 #define KERN_TRACE KERN_INFO
3693 trace_printk_seq(struct trace_seq *s)
3695 /* Probably should print a warning here. */
3699 /* should be zero ended, but we are paranoid. */
3700 s->buffer[s->len] = 0;
3702 printk(KERN_TRACE "%s", s->buffer);
3707 void ftrace_dump(void)
3709 static DEFINE_SPINLOCK(ftrace_dump_lock);
3710 /* use static because iter can be a bit big for the stack */
3711 static struct trace_iterator iter;
3712 static cpumask_t mask;
3713 static int dump_ran;
3714 unsigned long flags;
3718 spin_lock_irqsave(&ftrace_dump_lock, flags);
3724 /* No turning back! */
3727 for_each_tracing_cpu(cpu) {
3728 atomic_inc(&global_trace.data[cpu]->disabled);
3731 /* don't look at user memory in panic mode */
3732 trace_flags &= ~TRACE_ITER_SYM_USEROBJ;
3734 printk(KERN_TRACE "Dumping ftrace buffer:\n");
3736 iter.tr = &global_trace;
3737 iter.trace = current_trace;
3740 * We need to stop all tracing on all CPUS to read the
3741 * the next buffer. This is a bit expensive, but is
3742 * not done often. We fill all what we can read,
3743 * and then release the locks again.
3748 while (!trace_empty(&iter)) {
3751 printk(KERN_TRACE "---------------------------------\n");
3755 /* reset all but tr, trace, and overruns */
3756 memset(&iter.seq, 0,
3757 sizeof(struct trace_iterator) -
3758 offsetof(struct trace_iterator, seq));
3759 iter.iter_flags |= TRACE_FILE_LAT_FMT;
3762 if (find_next_entry_inc(&iter) != NULL) {
3763 print_trace_line(&iter);
3764 trace_consume(&iter);
3767 trace_printk_seq(&iter.seq);
3771 printk(KERN_TRACE " (ftrace buffer empty)\n");
3773 printk(KERN_TRACE "---------------------------------\n");
3776 spin_unlock_irqrestore(&ftrace_dump_lock, flags);
3779 __init static int tracer_alloc_buffers(void)
3781 struct trace_array_cpu *data;
3784 /* TODO: make the number of buffers hot pluggable with CPUS */
3785 tracing_buffer_mask = cpu_possible_map;
3787 global_trace.buffer = ring_buffer_alloc(trace_buf_size,
3788 TRACE_BUFFER_FLAGS);
3789 if (!global_trace.buffer) {
3790 printk(KERN_ERR "tracer: failed to allocate ring buffer!\n");
3794 global_trace.entries = ring_buffer_size(global_trace.buffer);
3796 #ifdef CONFIG_TRACER_MAX_TRACE
3797 max_tr.buffer = ring_buffer_alloc(trace_buf_size,
3798 TRACE_BUFFER_FLAGS);
3799 if (!max_tr.buffer) {
3800 printk(KERN_ERR "tracer: failed to allocate max ring buffer!\n");
3802 ring_buffer_free(global_trace.buffer);
3805 max_tr.entries = ring_buffer_size(max_tr.buffer);
3806 WARN_ON(max_tr.entries != global_trace.entries);
3809 /* Allocate the first page for all buffers */
3810 for_each_tracing_cpu(i) {
3811 data = global_trace.data[i] = &per_cpu(global_trace_cpu, i);
3812 max_tr.data[i] = &per_cpu(max_data, i);
3815 trace_init_cmdlines();
3817 register_tracer(&nop_trace);
3818 #ifdef CONFIG_BOOT_TRACER
3819 register_tracer(&boot_tracer);
3820 current_trace = &boot_tracer;
3821 current_trace->init(&global_trace);
3823 current_trace = &nop_trace;
3826 /* All seems OK, enable tracing */
3827 tracing_disabled = 0;
3829 atomic_notifier_chain_register(&panic_notifier_list,
3830 &trace_panic_notifier);
3832 register_die_notifier(&trace_die_notifier);
3836 early_initcall(tracer_alloc_buffers);
3837 fs_initcall(tracer_init_debugfs);