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/writeback.h>
35 #include <linux/stacktrace.h>
36 #include <linux/ring_buffer.h>
37 #include <linux/irqflags.h>
41 #define TRACE_BUFFER_FLAGS (RB_FL_OVERWRITE)
43 unsigned long __read_mostly tracing_max_latency = (cycle_t)ULONG_MAX;
44 unsigned long __read_mostly tracing_thresh;
48 * Kill all tracing for good (never come back).
49 * It is initialized to 1 but will turn to zero if the initialization
50 * of the tracer is successful. But that is the only place that sets
53 int tracing_disabled = 1;
55 static DEFINE_PER_CPU(local_t, ftrace_cpu_disabled);
57 static inline void ftrace_disable_cpu(void)
60 local_inc(&__get_cpu_var(ftrace_cpu_disabled));
63 static inline void ftrace_enable_cpu(void)
65 local_dec(&__get_cpu_var(ftrace_cpu_disabled));
69 static cpumask_t __read_mostly tracing_buffer_mask;
71 #define for_each_tracing_cpu(cpu) \
72 for_each_cpu_mask(cpu, tracing_buffer_mask)
75 * ftrace_dump_on_oops - variable to dump ftrace buffer on oops
77 * If there is an oops (or kernel panic) and the ftrace_dump_on_oops
78 * is set, then ftrace_dump is called. This will output the contents
79 * of the ftrace buffers to the console. This is very useful for
80 * capturing traces that lead to crashes and outputing it to a
83 * It is default off, but you can enable it with either specifying
84 * "ftrace_dump_on_oops" in the kernel command line, or setting
85 * /proc/sys/kernel/ftrace_dump_on_oops to true.
87 int ftrace_dump_on_oops;
89 static int tracing_set_tracer(char *buf);
91 static int __init set_ftrace(char *str)
93 tracing_set_tracer(str);
96 __setup("ftrace", set_ftrace);
98 static int __init set_ftrace_dump_on_oops(char *str)
100 ftrace_dump_on_oops = 1;
103 __setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops);
106 ns2usecs(cycle_t nsec)
113 cycle_t ftrace_now(int cpu)
115 u64 ts = ring_buffer_time_stamp(cpu);
116 ring_buffer_normalize_time_stamp(cpu, &ts);
121 * The global_trace is the descriptor that holds the tracing
122 * buffers for the live tracing. For each CPU, it contains
123 * a link list of pages that will store trace entries. The
124 * page descriptor of the pages in the memory is used to hold
125 * the link list by linking the lru item in the page descriptor
126 * to each of the pages in the buffer per CPU.
128 * For each active CPU there is a data field that holds the
129 * pages for the buffer for that CPU. Each CPU has the same number
130 * of pages allocated for its buffer.
132 static struct trace_array global_trace;
134 static DEFINE_PER_CPU(struct trace_array_cpu, global_trace_cpu);
137 * The max_tr is used to snapshot the global_trace when a maximum
138 * latency is reached. Some tracers will use this to store a maximum
139 * trace while it continues examining live traces.
141 * The buffers for the max_tr are set up the same as the global_trace.
142 * When a snapshot is taken, the link list of the max_tr is swapped
143 * with the link list of the global_trace and the buffers are reset for
144 * the global_trace so the tracing can continue.
146 static struct trace_array max_tr;
148 static DEFINE_PER_CPU(struct trace_array_cpu, max_data);
150 /* tracer_enabled is used to toggle activation of a tracer */
151 static int tracer_enabled = 1;
154 * tracing_is_enabled - return tracer_enabled status
156 * This function is used by other tracers to know the status
157 * of the tracer_enabled flag. Tracers may use this function
158 * to know if it should enable their features when starting
159 * up. See irqsoff tracer for an example (start_irqsoff_tracer).
161 int tracing_is_enabled(void)
163 return tracer_enabled;
166 /* function tracing enabled */
167 int ftrace_function_enabled;
170 * trace_buf_size is the size in bytes that is allocated
171 * for a buffer. Note, the number of bytes is always rounded
174 * This number is purposely set to a low number of 16384.
175 * If the dump on oops happens, it will be much appreciated
176 * to not have to wait for all that output. Anyway this can be
177 * boot time and run time configurable.
179 #define TRACE_BUF_SIZE_DEFAULT 1441792UL /* 16384 * 88 (sizeof(entry)) */
181 static unsigned long trace_buf_size = TRACE_BUF_SIZE_DEFAULT;
183 /* trace_types holds a link list of available tracers. */
184 static struct tracer *trace_types __read_mostly;
186 /* current_trace points to the tracer that is currently active */
187 static struct tracer *current_trace __read_mostly;
190 * max_tracer_type_len is used to simplify the allocating of
191 * buffers to read userspace tracer names. We keep track of
192 * the longest tracer name registered.
194 static int max_tracer_type_len;
197 * trace_types_lock is used to protect the trace_types list.
198 * This lock is also used to keep user access serialized.
199 * Accesses from userspace will grab this lock while userspace
200 * activities happen inside the kernel.
202 static DEFINE_MUTEX(trace_types_lock);
204 /* trace_wait is a waitqueue for tasks blocked on trace_poll */
205 static DECLARE_WAIT_QUEUE_HEAD(trace_wait);
207 /* trace_flags holds iter_ctrl options */
208 unsigned long trace_flags = TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK;
211 * trace_wake_up - wake up tasks waiting for trace input
213 * Simply wakes up any task that is blocked on the trace_wait
214 * queue. These is used with trace_poll for tasks polling the trace.
216 void trace_wake_up(void)
219 * The runqueue_is_locked() can fail, but this is the best we
222 if (!(trace_flags & TRACE_ITER_BLOCK) && !runqueue_is_locked())
223 wake_up(&trace_wait);
226 static int __init set_buf_size(char *str)
228 unsigned long buf_size;
233 ret = strict_strtoul(str, 0, &buf_size);
234 /* nr_entries can not be zero */
235 if (ret < 0 || buf_size == 0)
237 trace_buf_size = buf_size;
240 __setup("trace_buf_size=", set_buf_size);
242 unsigned long nsecs_to_usecs(unsigned long nsecs)
247 /* These must match the bit postions in trace_iterator_flags */
248 static const char *trace_options[] = {
261 #ifdef CONFIG_BRANCH_TRACER
268 * ftrace_max_lock is used to protect the swapping of buffers
269 * when taking a max snapshot. The buffers themselves are
270 * protected by per_cpu spinlocks. But the action of the swap
271 * needs its own lock.
273 * This is defined as a raw_spinlock_t in order to help
274 * with performance when lockdep debugging is enabled.
276 static raw_spinlock_t ftrace_max_lock =
277 (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
280 * Copy the new maximum trace into the separate maximum-trace
281 * structure. (this way the maximum trace is permanently saved,
282 * for later retrieval via /debugfs/tracing/latency_trace)
285 __update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
287 struct trace_array_cpu *data = tr->data[cpu];
290 max_tr.time_start = data->preempt_timestamp;
292 data = max_tr.data[cpu];
293 data->saved_latency = tracing_max_latency;
295 memcpy(data->comm, tsk->comm, TASK_COMM_LEN);
296 data->pid = tsk->pid;
297 data->uid = tsk->uid;
298 data->nice = tsk->static_prio - 20 - MAX_RT_PRIO;
299 data->policy = tsk->policy;
300 data->rt_priority = tsk->rt_priority;
302 /* record this tasks comm */
303 tracing_record_cmdline(current);
307 * trace_seq_printf - sequence printing of trace information
308 * @s: trace sequence descriptor
309 * @fmt: printf format string
311 * The tracer may use either sequence operations or its own
312 * copy to user routines. To simplify formating of a trace
313 * trace_seq_printf is used to store strings into a special
314 * buffer (@s). Then the output may be either used by
315 * the sequencer or pulled into another buffer.
318 trace_seq_printf(struct trace_seq *s, const char *fmt, ...)
320 int len = (PAGE_SIZE - 1) - s->len;
328 ret = vsnprintf(s->buffer + s->len, len, fmt, ap);
331 /* If we can't write it all, don't bother writing anything */
341 * trace_seq_puts - trace sequence printing of simple string
342 * @s: trace sequence descriptor
343 * @str: simple string to record
345 * The tracer may use either the sequence operations or its own
346 * copy to user routines. This function records a simple string
347 * into a special buffer (@s) for later retrieval by a sequencer
348 * or other mechanism.
351 trace_seq_puts(struct trace_seq *s, const char *str)
353 int len = strlen(str);
355 if (len > ((PAGE_SIZE - 1) - s->len))
358 memcpy(s->buffer + s->len, str, len);
365 trace_seq_putc(struct trace_seq *s, unsigned char c)
367 if (s->len >= (PAGE_SIZE - 1))
370 s->buffer[s->len++] = c;
376 trace_seq_putmem(struct trace_seq *s, void *mem, size_t len)
378 if (len > ((PAGE_SIZE - 1) - s->len))
381 memcpy(s->buffer + s->len, mem, len);
387 #define MAX_MEMHEX_BYTES 8
388 #define HEX_CHARS (MAX_MEMHEX_BYTES*2 + 1)
391 trace_seq_putmem_hex(struct trace_seq *s, void *mem, size_t len)
393 unsigned char hex[HEX_CHARS];
394 unsigned char *data = mem;
398 for (i = 0, j = 0; i < len; i++) {
400 for (i = len-1, j = 0; i >= 0; i--) {
402 hex[j++] = hex_asc_hi(data[i]);
403 hex[j++] = hex_asc_lo(data[i]);
407 return trace_seq_putmem(s, hex, j);
411 trace_seq_reset(struct trace_seq *s)
417 ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, size_t cnt)
422 if (s->len <= s->readpos)
425 len = s->len - s->readpos;
428 ret = copy_to_user(ubuf, s->buffer + s->readpos, cnt);
437 trace_print_seq(struct seq_file *m, struct trace_seq *s)
439 int len = s->len >= PAGE_SIZE ? PAGE_SIZE - 1 : s->len;
442 seq_puts(m, s->buffer);
448 * update_max_tr - snapshot all trace buffers from global_trace to max_tr
450 * @tsk: the task with the latency
451 * @cpu: The cpu that initiated the trace.
453 * Flip the buffers between the @tr and the max_tr and record information
454 * about which task was the cause of this latency.
457 update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
459 struct ring_buffer *buf = tr->buffer;
461 WARN_ON_ONCE(!irqs_disabled());
462 __raw_spin_lock(&ftrace_max_lock);
464 tr->buffer = max_tr.buffer;
467 ftrace_disable_cpu();
468 ring_buffer_reset(tr->buffer);
471 __update_max_tr(tr, tsk, cpu);
472 __raw_spin_unlock(&ftrace_max_lock);
476 * update_max_tr_single - only copy one trace over, and reset the rest
478 * @tsk - task with the latency
479 * @cpu - the cpu of the buffer to copy.
481 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
484 update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
488 WARN_ON_ONCE(!irqs_disabled());
489 __raw_spin_lock(&ftrace_max_lock);
491 ftrace_disable_cpu();
493 ring_buffer_reset(max_tr.buffer);
494 ret = ring_buffer_swap_cpu(max_tr.buffer, tr->buffer, cpu);
500 __update_max_tr(tr, tsk, cpu);
501 __raw_spin_unlock(&ftrace_max_lock);
505 * register_tracer - register a tracer with the ftrace system.
506 * @type - the plugin for the tracer
508 * Register a new plugin tracer.
510 int register_tracer(struct tracer *type)
517 pr_info("Tracer must have a name\n");
521 mutex_lock(&trace_types_lock);
522 for (t = trace_types; t; t = t->next) {
523 if (strcmp(type->name, t->name) == 0) {
525 pr_info("Trace %s already registered\n",
532 #ifdef CONFIG_FTRACE_STARTUP_TEST
533 if (type->selftest) {
534 struct tracer *saved_tracer = current_trace;
535 struct trace_array *tr = &global_trace;
538 * Run a selftest on this tracer.
539 * Here we reset the trace buffer, and set the current
540 * tracer to be this tracer. The tracer can then run some
541 * internal tracing to verify that everything is in order.
542 * If we fail, we do not register this tracer.
544 for_each_tracing_cpu(i) {
545 tracing_reset(tr, i);
547 current_trace = type;
548 /* the test is responsible for initializing and enabling */
549 pr_info("Testing tracer %s: ", type->name);
550 ret = type->selftest(type, tr);
551 /* the test is responsible for resetting too */
552 current_trace = saved_tracer;
554 printk(KERN_CONT "FAILED!\n");
557 /* Only reset on passing, to avoid touching corrupted buffers */
558 for_each_tracing_cpu(i) {
559 tracing_reset(tr, i);
561 printk(KERN_CONT "PASSED\n");
565 type->next = trace_types;
567 len = strlen(type->name);
568 if (len > max_tracer_type_len)
569 max_tracer_type_len = len;
572 mutex_unlock(&trace_types_lock);
577 void unregister_tracer(struct tracer *type)
582 mutex_lock(&trace_types_lock);
583 for (t = &trace_types; *t; t = &(*t)->next) {
587 pr_info("Trace %s not registered\n", type->name);
592 if (strlen(type->name) != max_tracer_type_len)
595 max_tracer_type_len = 0;
596 for (t = &trace_types; *t; t = &(*t)->next) {
597 len = strlen((*t)->name);
598 if (len > max_tracer_type_len)
599 max_tracer_type_len = len;
602 mutex_unlock(&trace_types_lock);
605 void tracing_reset(struct trace_array *tr, int cpu)
607 ftrace_disable_cpu();
608 ring_buffer_reset_cpu(tr->buffer, cpu);
612 #define SAVED_CMDLINES 128
613 static unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1];
614 static unsigned map_cmdline_to_pid[SAVED_CMDLINES];
615 static char saved_cmdlines[SAVED_CMDLINES][TASK_COMM_LEN];
616 static int cmdline_idx;
617 static DEFINE_SPINLOCK(trace_cmdline_lock);
619 /* temporary disable recording */
620 atomic_t trace_record_cmdline_disabled __read_mostly;
622 static void trace_init_cmdlines(void)
624 memset(&map_pid_to_cmdline, -1, sizeof(map_pid_to_cmdline));
625 memset(&map_cmdline_to_pid, -1, sizeof(map_cmdline_to_pid));
629 static int trace_stop_count;
630 static DEFINE_SPINLOCK(tracing_start_lock);
633 * tracing_start - quick start of the tracer
635 * If tracing is enabled but was stopped by tracing_stop,
636 * this will start the tracer back up.
638 void tracing_start(void)
640 struct ring_buffer *buffer;
643 if (tracing_disabled)
646 spin_lock_irqsave(&tracing_start_lock, flags);
647 if (--trace_stop_count)
650 if (trace_stop_count < 0) {
651 /* Someone screwed up their debugging */
653 trace_stop_count = 0;
658 buffer = global_trace.buffer;
660 ring_buffer_record_enable(buffer);
662 buffer = max_tr.buffer;
664 ring_buffer_record_enable(buffer);
668 spin_unlock_irqrestore(&tracing_start_lock, flags);
672 * tracing_stop - quick stop of the tracer
674 * Light weight way to stop tracing. Use in conjunction with
677 void tracing_stop(void)
679 struct ring_buffer *buffer;
683 spin_lock_irqsave(&tracing_start_lock, flags);
684 if (trace_stop_count++)
687 buffer = global_trace.buffer;
689 ring_buffer_record_disable(buffer);
691 buffer = max_tr.buffer;
693 ring_buffer_record_disable(buffer);
696 spin_unlock_irqrestore(&tracing_start_lock, flags);
699 void trace_stop_cmdline_recording(void);
701 static void trace_save_cmdline(struct task_struct *tsk)
706 if (!tsk->pid || unlikely(tsk->pid > PID_MAX_DEFAULT))
710 * It's not the end of the world if we don't get
711 * the lock, but we also don't want to spin
712 * nor do we want to disable interrupts,
713 * so if we miss here, then better luck next time.
715 if (!spin_trylock(&trace_cmdline_lock))
718 idx = map_pid_to_cmdline[tsk->pid];
719 if (idx >= SAVED_CMDLINES) {
720 idx = (cmdline_idx + 1) % SAVED_CMDLINES;
722 map = map_cmdline_to_pid[idx];
723 if (map <= PID_MAX_DEFAULT)
724 map_pid_to_cmdline[map] = (unsigned)-1;
726 map_pid_to_cmdline[tsk->pid] = idx;
731 memcpy(&saved_cmdlines[idx], tsk->comm, TASK_COMM_LEN);
733 spin_unlock(&trace_cmdline_lock);
736 static char *trace_find_cmdline(int pid)
738 char *cmdline = "<...>";
744 if (pid > PID_MAX_DEFAULT)
747 map = map_pid_to_cmdline[pid];
748 if (map >= SAVED_CMDLINES)
751 cmdline = saved_cmdlines[map];
757 void tracing_record_cmdline(struct task_struct *tsk)
759 if (atomic_read(&trace_record_cmdline_disabled))
762 trace_save_cmdline(tsk);
766 tracing_generic_entry_update(struct trace_entry *entry, unsigned long flags,
769 struct task_struct *tsk = current;
771 entry->preempt_count = pc & 0xff;
772 entry->pid = (tsk) ? tsk->pid : 0;
774 #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
775 (irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) |
777 TRACE_FLAG_IRQS_NOSUPPORT |
779 ((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) |
780 ((pc & SOFTIRQ_MASK) ? TRACE_FLAG_SOFTIRQ : 0) |
781 (need_resched() ? TRACE_FLAG_NEED_RESCHED : 0);
785 trace_function(struct trace_array *tr, struct trace_array_cpu *data,
786 unsigned long ip, unsigned long parent_ip, unsigned long flags,
789 struct ring_buffer_event *event;
790 struct ftrace_entry *entry;
791 unsigned long irq_flags;
793 /* If we are reading the ring buffer, don't trace */
794 if (unlikely(local_read(&__get_cpu_var(ftrace_cpu_disabled))))
797 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
801 entry = ring_buffer_event_data(event);
802 tracing_generic_entry_update(&entry->ent, flags, pc);
803 entry->ent.type = TRACE_FN;
805 entry->parent_ip = parent_ip;
806 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
809 #ifdef CONFIG_FUNCTION_RET_TRACER
810 static void __trace_function_return(struct trace_array *tr,
811 struct trace_array_cpu *data,
812 struct ftrace_retfunc *trace,
816 struct ring_buffer_event *event;
817 struct ftrace_ret_entry *entry;
818 unsigned long irq_flags;
820 if (unlikely(local_read(&__get_cpu_var(ftrace_cpu_disabled))))
823 event = ring_buffer_lock_reserve(global_trace.buffer, sizeof(*entry),
827 entry = ring_buffer_event_data(event);
828 tracing_generic_entry_update(&entry->ent, flags, pc);
829 entry->ent.type = TRACE_FN_RET;
830 entry->ip = trace->func;
831 entry->parent_ip = trace->ret;
832 entry->rettime = trace->rettime;
833 entry->calltime = trace->calltime;
834 ring_buffer_unlock_commit(global_trace.buffer, event, irq_flags);
839 ftrace(struct trace_array *tr, struct trace_array_cpu *data,
840 unsigned long ip, unsigned long parent_ip, unsigned long flags,
843 if (likely(!atomic_read(&data->disabled)))
844 trace_function(tr, data, ip, parent_ip, flags, pc);
847 static void ftrace_trace_stack(struct trace_array *tr,
848 struct trace_array_cpu *data,
852 #ifdef CONFIG_STACKTRACE
853 struct ring_buffer_event *event;
854 struct stack_entry *entry;
855 struct stack_trace trace;
856 unsigned long irq_flags;
858 if (!(trace_flags & TRACE_ITER_STACKTRACE))
861 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
865 entry = ring_buffer_event_data(event);
866 tracing_generic_entry_update(&entry->ent, flags, pc);
867 entry->ent.type = TRACE_STACK;
869 memset(&entry->caller, 0, sizeof(entry->caller));
871 trace.nr_entries = 0;
872 trace.max_entries = FTRACE_STACK_ENTRIES;
874 trace.entries = entry->caller;
876 save_stack_trace(&trace);
877 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
881 void __trace_stack(struct trace_array *tr,
882 struct trace_array_cpu *data,
886 ftrace_trace_stack(tr, data, flags, skip, preempt_count());
890 ftrace_trace_special(void *__tr, void *__data,
891 unsigned long arg1, unsigned long arg2, unsigned long arg3,
894 struct ring_buffer_event *event;
895 struct trace_array_cpu *data = __data;
896 struct trace_array *tr = __tr;
897 struct special_entry *entry;
898 unsigned long irq_flags;
900 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
904 entry = ring_buffer_event_data(event);
905 tracing_generic_entry_update(&entry->ent, 0, pc);
906 entry->ent.type = TRACE_SPECIAL;
910 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
911 ftrace_trace_stack(tr, data, irq_flags, 4, pc);
917 __trace_special(void *__tr, void *__data,
918 unsigned long arg1, unsigned long arg2, unsigned long arg3)
920 ftrace_trace_special(__tr, __data, arg1, arg2, arg3, preempt_count());
924 tracing_sched_switch_trace(struct trace_array *tr,
925 struct trace_array_cpu *data,
926 struct task_struct *prev,
927 struct task_struct *next,
928 unsigned long flags, int pc)
930 struct ring_buffer_event *event;
931 struct ctx_switch_entry *entry;
932 unsigned long irq_flags;
934 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
938 entry = ring_buffer_event_data(event);
939 tracing_generic_entry_update(&entry->ent, flags, pc);
940 entry->ent.type = TRACE_CTX;
941 entry->prev_pid = prev->pid;
942 entry->prev_prio = prev->prio;
943 entry->prev_state = prev->state;
944 entry->next_pid = next->pid;
945 entry->next_prio = next->prio;
946 entry->next_state = next->state;
947 entry->next_cpu = task_cpu(next);
948 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
949 ftrace_trace_stack(tr, data, flags, 5, pc);
953 tracing_sched_wakeup_trace(struct trace_array *tr,
954 struct trace_array_cpu *data,
955 struct task_struct *wakee,
956 struct task_struct *curr,
957 unsigned long flags, int pc)
959 struct ring_buffer_event *event;
960 struct ctx_switch_entry *entry;
961 unsigned long irq_flags;
963 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
967 entry = ring_buffer_event_data(event);
968 tracing_generic_entry_update(&entry->ent, flags, pc);
969 entry->ent.type = TRACE_WAKE;
970 entry->prev_pid = curr->pid;
971 entry->prev_prio = curr->prio;
972 entry->prev_state = curr->state;
973 entry->next_pid = wakee->pid;
974 entry->next_prio = wakee->prio;
975 entry->next_state = wakee->state;
976 entry->next_cpu = task_cpu(wakee);
977 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
978 ftrace_trace_stack(tr, data, flags, 6, pc);
984 ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3)
986 struct trace_array *tr = &global_trace;
987 struct trace_array_cpu *data;
992 if (tracing_disabled)
995 pc = preempt_count();
996 local_irq_save(flags);
997 cpu = raw_smp_processor_id();
998 data = tr->data[cpu];
1000 if (likely(atomic_inc_return(&data->disabled) == 1))
1001 ftrace_trace_special(tr, data, arg1, arg2, arg3, pc);
1003 atomic_dec(&data->disabled);
1004 local_irq_restore(flags);
1007 #ifdef CONFIG_FUNCTION_TRACER
1009 function_trace_call_preempt_only(unsigned long ip, unsigned long parent_ip)
1011 struct trace_array *tr = &global_trace;
1012 struct trace_array_cpu *data;
1013 unsigned long flags;
1018 if (unlikely(!ftrace_function_enabled))
1021 pc = preempt_count();
1022 resched = ftrace_preempt_disable();
1023 local_save_flags(flags);
1024 cpu = raw_smp_processor_id();
1025 data = tr->data[cpu];
1026 disabled = atomic_inc_return(&data->disabled);
1028 if (likely(disabled == 1))
1029 trace_function(tr, data, ip, parent_ip, flags, pc);
1031 atomic_dec(&data->disabled);
1032 ftrace_preempt_enable(resched);
1036 function_trace_call(unsigned long ip, unsigned long parent_ip)
1038 struct trace_array *tr = &global_trace;
1039 struct trace_array_cpu *data;
1040 unsigned long flags;
1045 if (unlikely(!ftrace_function_enabled))
1049 * Need to use raw, since this must be called before the
1050 * recursive protection is performed.
1052 raw_local_irq_save(flags);
1053 cpu = raw_smp_processor_id();
1054 data = tr->data[cpu];
1055 disabled = atomic_inc_return(&data->disabled);
1057 if (likely(disabled == 1)) {
1058 pc = preempt_count();
1059 trace_function(tr, data, ip, parent_ip, flags, pc);
1062 atomic_dec(&data->disabled);
1063 raw_local_irq_restore(flags);
1066 #ifdef CONFIG_FUNCTION_RET_TRACER
1067 void trace_function_return(struct ftrace_retfunc *trace)
1069 struct trace_array *tr = &global_trace;
1070 struct trace_array_cpu *data;
1071 unsigned long flags;
1076 raw_local_irq_save(flags);
1077 cpu = raw_smp_processor_id();
1078 data = tr->data[cpu];
1079 disabled = atomic_inc_return(&data->disabled);
1080 if (likely(disabled == 1)) {
1081 pc = preempt_count();
1082 __trace_function_return(tr, data, trace, flags, pc);
1084 atomic_dec(&data->disabled);
1085 raw_local_irq_restore(flags);
1087 #endif /* CONFIG_FUNCTION_RET_TRACER */
1089 static struct ftrace_ops trace_ops __read_mostly =
1091 .func = function_trace_call,
1094 void tracing_start_function_trace(void)
1096 ftrace_function_enabled = 0;
1098 if (trace_flags & TRACE_ITER_PREEMPTONLY)
1099 trace_ops.func = function_trace_call_preempt_only;
1101 trace_ops.func = function_trace_call;
1103 register_ftrace_function(&trace_ops);
1104 ftrace_function_enabled = 1;
1107 void tracing_stop_function_trace(void)
1109 ftrace_function_enabled = 0;
1110 unregister_ftrace_function(&trace_ops);
1114 enum trace_file_type {
1115 TRACE_FILE_LAT_FMT = 1,
1118 static void trace_iterator_increment(struct trace_iterator *iter, int cpu)
1120 /* Don't allow ftrace to trace into the ring buffers */
1121 ftrace_disable_cpu();
1124 if (iter->buffer_iter[iter->cpu])
1125 ring_buffer_read(iter->buffer_iter[iter->cpu], NULL);
1127 ftrace_enable_cpu();
1130 static struct trace_entry *
1131 peek_next_entry(struct trace_iterator *iter, int cpu, u64 *ts)
1133 struct ring_buffer_event *event;
1134 struct ring_buffer_iter *buf_iter = iter->buffer_iter[cpu];
1136 /* Don't allow ftrace to trace into the ring buffers */
1137 ftrace_disable_cpu();
1140 event = ring_buffer_iter_peek(buf_iter, ts);
1142 event = ring_buffer_peek(iter->tr->buffer, cpu, ts);
1144 ftrace_enable_cpu();
1146 return event ? ring_buffer_event_data(event) : NULL;
1149 static struct trace_entry *
1150 __find_next_entry(struct trace_iterator *iter, int *ent_cpu, u64 *ent_ts)
1152 struct ring_buffer *buffer = iter->tr->buffer;
1153 struct trace_entry *ent, *next = NULL;
1154 u64 next_ts = 0, ts;
1158 for_each_tracing_cpu(cpu) {
1160 if (ring_buffer_empty_cpu(buffer, cpu))
1163 ent = peek_next_entry(iter, cpu, &ts);
1166 * Pick the entry with the smallest timestamp:
1168 if (ent && (!next || ts < next_ts)) {
1176 *ent_cpu = next_cpu;
1184 /* Find the next real entry, without updating the iterator itself */
1185 static struct trace_entry *
1186 find_next_entry(struct trace_iterator *iter, int *ent_cpu, u64 *ent_ts)
1188 return __find_next_entry(iter, ent_cpu, ent_ts);
1191 /* Find the next real entry, and increment the iterator to the next entry */
1192 static void *find_next_entry_inc(struct trace_iterator *iter)
1194 iter->ent = __find_next_entry(iter, &iter->cpu, &iter->ts);
1197 trace_iterator_increment(iter, iter->cpu);
1199 return iter->ent ? iter : NULL;
1202 static void trace_consume(struct trace_iterator *iter)
1204 /* Don't allow ftrace to trace into the ring buffers */
1205 ftrace_disable_cpu();
1206 ring_buffer_consume(iter->tr->buffer, iter->cpu, &iter->ts);
1207 ftrace_enable_cpu();
1210 static void *s_next(struct seq_file *m, void *v, loff_t *pos)
1212 struct trace_iterator *iter = m->private;
1218 /* can't go backwards */
1223 ent = find_next_entry_inc(iter);
1227 while (ent && iter->idx < i)
1228 ent = find_next_entry_inc(iter);
1235 static void *s_start(struct seq_file *m, loff_t *pos)
1237 struct trace_iterator *iter = m->private;
1242 mutex_lock(&trace_types_lock);
1244 if (!current_trace || current_trace != iter->trace) {
1245 mutex_unlock(&trace_types_lock);
1249 atomic_inc(&trace_record_cmdline_disabled);
1251 if (*pos != iter->pos) {
1256 ftrace_disable_cpu();
1258 for_each_tracing_cpu(cpu) {
1259 ring_buffer_iter_reset(iter->buffer_iter[cpu]);
1262 ftrace_enable_cpu();
1264 for (p = iter; p && l < *pos; p = s_next(m, p, &l))
1269 p = s_next(m, p, &l);
1275 static void s_stop(struct seq_file *m, void *p)
1277 atomic_dec(&trace_record_cmdline_disabled);
1278 mutex_unlock(&trace_types_lock);
1281 #ifdef CONFIG_KRETPROBES
1282 static inline const char *kretprobed(const char *name)
1284 static const char tramp_name[] = "kretprobe_trampoline";
1285 int size = sizeof(tramp_name);
1287 if (strncmp(tramp_name, name, size) == 0)
1288 return "[unknown/kretprobe'd]";
1292 static inline const char *kretprobed(const char *name)
1296 #endif /* CONFIG_KRETPROBES */
1299 seq_print_sym_short(struct trace_seq *s, const char *fmt, unsigned long address)
1301 #ifdef CONFIG_KALLSYMS
1302 char str[KSYM_SYMBOL_LEN];
1305 kallsyms_lookup(address, NULL, NULL, NULL, str);
1307 name = kretprobed(str);
1309 return trace_seq_printf(s, fmt, name);
1315 seq_print_sym_offset(struct trace_seq *s, const char *fmt,
1316 unsigned long address)
1318 #ifdef CONFIG_KALLSYMS
1319 char str[KSYM_SYMBOL_LEN];
1322 sprint_symbol(str, address);
1323 name = kretprobed(str);
1325 return trace_seq_printf(s, fmt, name);
1330 #ifndef CONFIG_64BIT
1331 # define IP_FMT "%08lx"
1333 # define IP_FMT "%016lx"
1337 seq_print_ip_sym(struct trace_seq *s, unsigned long ip, unsigned long sym_flags)
1342 return trace_seq_printf(s, "0");
1344 if (sym_flags & TRACE_ITER_SYM_OFFSET)
1345 ret = seq_print_sym_offset(s, "%s", ip);
1347 ret = seq_print_sym_short(s, "%s", ip);
1352 if (sym_flags & TRACE_ITER_SYM_ADDR)
1353 ret = trace_seq_printf(s, " <" IP_FMT ">", ip);
1357 static void print_lat_help_header(struct seq_file *m)
1359 seq_puts(m, "# _------=> CPU# \n");
1360 seq_puts(m, "# / _-----=> irqs-off \n");
1361 seq_puts(m, "# | / _----=> need-resched \n");
1362 seq_puts(m, "# || / _---=> hardirq/softirq \n");
1363 seq_puts(m, "# ||| / _--=> preempt-depth \n");
1364 seq_puts(m, "# |||| / \n");
1365 seq_puts(m, "# ||||| delay \n");
1366 seq_puts(m, "# cmd pid ||||| time | caller \n");
1367 seq_puts(m, "# \\ / ||||| \\ | / \n");
1370 static void print_func_help_header(struct seq_file *m)
1372 seq_puts(m, "# TASK-PID CPU# TIMESTAMP FUNCTION\n");
1373 seq_puts(m, "# | | | | |\n");
1378 print_trace_header(struct seq_file *m, struct trace_iterator *iter)
1380 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1381 struct trace_array *tr = iter->tr;
1382 struct trace_array_cpu *data = tr->data[tr->cpu];
1383 struct tracer *type = current_trace;
1384 unsigned long total;
1385 unsigned long entries;
1386 const char *name = "preemption";
1391 entries = ring_buffer_entries(iter->tr->buffer);
1393 ring_buffer_overruns(iter->tr->buffer);
1395 seq_printf(m, "%s latency trace v1.1.5 on %s\n",
1397 seq_puts(m, "-----------------------------------"
1398 "---------------------------------\n");
1399 seq_printf(m, " latency: %lu us, #%lu/%lu, CPU#%d |"
1400 " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
1401 nsecs_to_usecs(data->saved_latency),
1405 #if defined(CONFIG_PREEMPT_NONE)
1407 #elif defined(CONFIG_PREEMPT_VOLUNTARY)
1409 #elif defined(CONFIG_PREEMPT)
1414 /* These are reserved for later use */
1417 seq_printf(m, " #P:%d)\n", num_online_cpus());
1421 seq_puts(m, " -----------------\n");
1422 seq_printf(m, " | task: %.16s-%d "
1423 "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
1424 data->comm, data->pid, data->uid, data->nice,
1425 data->policy, data->rt_priority);
1426 seq_puts(m, " -----------------\n");
1428 if (data->critical_start) {
1429 seq_puts(m, " => started at: ");
1430 seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags);
1431 trace_print_seq(m, &iter->seq);
1432 seq_puts(m, "\n => ended at: ");
1433 seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags);
1434 trace_print_seq(m, &iter->seq);
1442 lat_print_generic(struct trace_seq *s, struct trace_entry *entry, int cpu)
1444 int hardirq, softirq;
1447 comm = trace_find_cmdline(entry->pid);
1449 trace_seq_printf(s, "%8.8s-%-5d ", comm, entry->pid);
1450 trace_seq_printf(s, "%3d", cpu);
1451 trace_seq_printf(s, "%c%c",
1452 (entry->flags & TRACE_FLAG_IRQS_OFF) ? 'd' :
1453 (entry->flags & TRACE_FLAG_IRQS_NOSUPPORT) ? 'X' : '.',
1454 ((entry->flags & TRACE_FLAG_NEED_RESCHED) ? 'N' : '.'));
1456 hardirq = entry->flags & TRACE_FLAG_HARDIRQ;
1457 softirq = entry->flags & TRACE_FLAG_SOFTIRQ;
1458 if (hardirq && softirq) {
1459 trace_seq_putc(s, 'H');
1462 trace_seq_putc(s, 'h');
1465 trace_seq_putc(s, 's');
1467 trace_seq_putc(s, '.');
1471 if (entry->preempt_count)
1472 trace_seq_printf(s, "%x", entry->preempt_count);
1474 trace_seq_puts(s, ".");
1477 unsigned long preempt_mark_thresh = 100;
1480 lat_print_timestamp(struct trace_seq *s, u64 abs_usecs,
1481 unsigned long rel_usecs)
1483 trace_seq_printf(s, " %4lldus", abs_usecs);
1484 if (rel_usecs > preempt_mark_thresh)
1485 trace_seq_puts(s, "!: ");
1486 else if (rel_usecs > 1)
1487 trace_seq_puts(s, "+: ");
1489 trace_seq_puts(s, " : ");
1492 static const char state_to_char[] = TASK_STATE_TO_CHAR_STR;
1495 * The message is supposed to contain an ending newline.
1496 * If the printing stops prematurely, try to add a newline of our own.
1498 void trace_seq_print_cont(struct trace_seq *s, struct trace_iterator *iter)
1500 struct trace_entry *ent;
1501 struct trace_field_cont *cont;
1504 ent = peek_next_entry(iter, iter->cpu, NULL);
1505 if (!ent || ent->type != TRACE_CONT) {
1506 trace_seq_putc(s, '\n');
1511 cont = (struct trace_field_cont *)ent;
1513 ok = (trace_seq_printf(s, "%s", cont->buf) > 0);
1515 ftrace_disable_cpu();
1517 if (iter->buffer_iter[iter->cpu])
1518 ring_buffer_read(iter->buffer_iter[iter->cpu], NULL);
1520 ring_buffer_consume(iter->tr->buffer, iter->cpu, NULL);
1522 ftrace_enable_cpu();
1524 ent = peek_next_entry(iter, iter->cpu, NULL);
1525 } while (ent && ent->type == TRACE_CONT);
1528 trace_seq_putc(s, '\n');
1531 static void test_cpu_buff_start(struct trace_iterator *iter)
1533 struct trace_seq *s = &iter->seq;
1535 if (cpu_isset(iter->cpu, iter->started))
1538 cpu_set(iter->cpu, iter->started);
1539 trace_seq_printf(s, "##### CPU %u buffer started ####\n", iter->cpu);
1542 static enum print_line_t
1543 print_lat_fmt(struct trace_iterator *iter, unsigned int trace_idx, int cpu)
1545 struct trace_seq *s = &iter->seq;
1546 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1547 struct trace_entry *next_entry;
1548 unsigned long verbose = (trace_flags & TRACE_ITER_VERBOSE);
1549 struct trace_entry *entry = iter->ent;
1550 unsigned long abs_usecs;
1551 unsigned long rel_usecs;
1558 if (entry->type == TRACE_CONT)
1559 return TRACE_TYPE_HANDLED;
1561 test_cpu_buff_start(iter);
1563 next_entry = find_next_entry(iter, NULL, &next_ts);
1566 rel_usecs = ns2usecs(next_ts - iter->ts);
1567 abs_usecs = ns2usecs(iter->ts - iter->tr->time_start);
1570 comm = trace_find_cmdline(entry->pid);
1571 trace_seq_printf(s, "%16s %5d %3d %d %08x %08x [%08lx]"
1572 " %ld.%03ldms (+%ld.%03ldms): ",
1574 entry->pid, cpu, entry->flags,
1575 entry->preempt_count, trace_idx,
1578 abs_usecs % 1000, rel_usecs/1000,
1581 lat_print_generic(s, entry, cpu);
1582 lat_print_timestamp(s, abs_usecs, rel_usecs);
1584 switch (entry->type) {
1586 struct ftrace_entry *field;
1588 trace_assign_type(field, entry);
1590 seq_print_ip_sym(s, field->ip, sym_flags);
1591 trace_seq_puts(s, " (");
1592 seq_print_ip_sym(s, field->parent_ip, sym_flags);
1593 trace_seq_puts(s, ")\n");
1598 struct ctx_switch_entry *field;
1600 trace_assign_type(field, entry);
1602 T = field->next_state < sizeof(state_to_char) ?
1603 state_to_char[field->next_state] : 'X';
1605 state = field->prev_state ?
1606 __ffs(field->prev_state) + 1 : 0;
1607 S = state < sizeof(state_to_char) - 1 ? state_to_char[state] : 'X';
1608 comm = trace_find_cmdline(field->next_pid);
1609 trace_seq_printf(s, " %5d:%3d:%c %s [%03d] %5d:%3d:%c %s\n",
1612 S, entry->type == TRACE_CTX ? "==>" : " +",
1619 case TRACE_SPECIAL: {
1620 struct special_entry *field;
1622 trace_assign_type(field, entry);
1624 trace_seq_printf(s, "# %ld %ld %ld\n",
1631 struct stack_entry *field;
1633 trace_assign_type(field, entry);
1635 for (i = 0; i < FTRACE_STACK_ENTRIES; i++) {
1637 trace_seq_puts(s, " <= ");
1638 seq_print_ip_sym(s, field->caller[i], sym_flags);
1640 trace_seq_puts(s, "\n");
1644 struct print_entry *field;
1646 trace_assign_type(field, entry);
1648 seq_print_ip_sym(s, field->ip, sym_flags);
1649 trace_seq_printf(s, ": %s", field->buf);
1650 if (entry->flags & TRACE_FLAG_CONT)
1651 trace_seq_print_cont(s, iter);
1654 case TRACE_UNLIKELY: {
1655 struct trace_unlikely *field;
1657 trace_assign_type(field, entry);
1659 trace_seq_printf(s, "[%s] %s:%s:%d\n",
1660 field->correct ? " ok " : " MISS ",
1667 trace_seq_printf(s, "Unknown type %d\n", entry->type);
1669 return TRACE_TYPE_HANDLED;
1672 static enum print_line_t print_trace_fmt(struct trace_iterator *iter)
1674 struct trace_seq *s = &iter->seq;
1675 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1676 struct trace_entry *entry;
1677 unsigned long usec_rem;
1678 unsigned long long t;
1687 if (entry->type == TRACE_CONT)
1688 return TRACE_TYPE_HANDLED;
1690 test_cpu_buff_start(iter);
1692 comm = trace_find_cmdline(iter->ent->pid);
1694 t = ns2usecs(iter->ts);
1695 usec_rem = do_div(t, 1000000ULL);
1696 secs = (unsigned long)t;
1698 ret = trace_seq_printf(s, "%16s-%-5d ", comm, entry->pid);
1700 return TRACE_TYPE_PARTIAL_LINE;
1701 ret = trace_seq_printf(s, "[%03d] ", iter->cpu);
1703 return TRACE_TYPE_PARTIAL_LINE;
1704 ret = trace_seq_printf(s, "%5lu.%06lu: ", secs, usec_rem);
1706 return TRACE_TYPE_PARTIAL_LINE;
1708 switch (entry->type) {
1710 struct ftrace_entry *field;
1712 trace_assign_type(field, entry);
1714 ret = seq_print_ip_sym(s, field->ip, sym_flags);
1716 return TRACE_TYPE_PARTIAL_LINE;
1717 if ((sym_flags & TRACE_ITER_PRINT_PARENT) &&
1719 ret = trace_seq_printf(s, " <-");
1721 return TRACE_TYPE_PARTIAL_LINE;
1722 ret = seq_print_ip_sym(s,
1726 return TRACE_TYPE_PARTIAL_LINE;
1728 ret = trace_seq_printf(s, "\n");
1730 return TRACE_TYPE_PARTIAL_LINE;
1735 struct ctx_switch_entry *field;
1737 trace_assign_type(field, entry);
1739 S = field->prev_state < sizeof(state_to_char) ?
1740 state_to_char[field->prev_state] : 'X';
1741 T = field->next_state < sizeof(state_to_char) ?
1742 state_to_char[field->next_state] : 'X';
1743 ret = trace_seq_printf(s, " %5d:%3d:%c %s [%03d] %5d:%3d:%c\n",
1747 entry->type == TRACE_CTX ? "==>" : " +",
1753 return TRACE_TYPE_PARTIAL_LINE;
1756 case TRACE_SPECIAL: {
1757 struct special_entry *field;
1759 trace_assign_type(field, entry);
1761 ret = trace_seq_printf(s, "# %ld %ld %ld\n",
1766 return TRACE_TYPE_PARTIAL_LINE;
1770 struct stack_entry *field;
1772 trace_assign_type(field, entry);
1774 for (i = 0; i < FTRACE_STACK_ENTRIES; i++) {
1776 ret = trace_seq_puts(s, " <= ");
1778 return TRACE_TYPE_PARTIAL_LINE;
1780 ret = seq_print_ip_sym(s, field->caller[i],
1783 return TRACE_TYPE_PARTIAL_LINE;
1785 ret = trace_seq_puts(s, "\n");
1787 return TRACE_TYPE_PARTIAL_LINE;
1791 struct print_entry *field;
1793 trace_assign_type(field, entry);
1795 seq_print_ip_sym(s, field->ip, sym_flags);
1796 trace_seq_printf(s, ": %s", field->buf);
1797 if (entry->flags & TRACE_FLAG_CONT)
1798 trace_seq_print_cont(s, iter);
1801 case TRACE_FN_RET: {
1802 return print_return_function(iter);
1805 case TRACE_UNLIKELY: {
1806 struct trace_unlikely *field;
1808 trace_assign_type(field, entry);
1810 trace_seq_printf(s, "[%s] %s:%s:%d\n",
1811 field->correct ? " ok " : " MISS ",
1818 return TRACE_TYPE_HANDLED;
1821 static enum print_line_t print_raw_fmt(struct trace_iterator *iter)
1823 struct trace_seq *s = &iter->seq;
1824 struct trace_entry *entry;
1830 if (entry->type == TRACE_CONT)
1831 return TRACE_TYPE_HANDLED;
1833 ret = trace_seq_printf(s, "%d %d %llu ",
1834 entry->pid, iter->cpu, iter->ts);
1836 return TRACE_TYPE_PARTIAL_LINE;
1838 switch (entry->type) {
1840 struct ftrace_entry *field;
1842 trace_assign_type(field, entry);
1844 ret = trace_seq_printf(s, "%x %x\n",
1848 return TRACE_TYPE_PARTIAL_LINE;
1853 struct ctx_switch_entry *field;
1855 trace_assign_type(field, entry);
1857 S = field->prev_state < sizeof(state_to_char) ?
1858 state_to_char[field->prev_state] : 'X';
1859 T = field->next_state < sizeof(state_to_char) ?
1860 state_to_char[field->next_state] : 'X';
1861 if (entry->type == TRACE_WAKE)
1863 ret = trace_seq_printf(s, "%d %d %c %d %d %d %c\n",
1872 return TRACE_TYPE_PARTIAL_LINE;
1877 struct special_entry *field;
1879 trace_assign_type(field, entry);
1881 ret = trace_seq_printf(s, "# %ld %ld %ld\n",
1886 return TRACE_TYPE_PARTIAL_LINE;
1890 struct print_entry *field;
1892 trace_assign_type(field, entry);
1894 trace_seq_printf(s, "# %lx %s", field->ip, field->buf);
1895 if (entry->flags & TRACE_FLAG_CONT)
1896 trace_seq_print_cont(s, iter);
1900 return TRACE_TYPE_HANDLED;
1903 #define SEQ_PUT_FIELD_RET(s, x) \
1905 if (!trace_seq_putmem(s, &(x), sizeof(x))) \
1909 #define SEQ_PUT_HEX_FIELD_RET(s, x) \
1911 BUILD_BUG_ON(sizeof(x) > MAX_MEMHEX_BYTES); \
1912 if (!trace_seq_putmem_hex(s, &(x), sizeof(x))) \
1916 static enum print_line_t print_hex_fmt(struct trace_iterator *iter)
1918 struct trace_seq *s = &iter->seq;
1919 unsigned char newline = '\n';
1920 struct trace_entry *entry;
1925 if (entry->type == TRACE_CONT)
1926 return TRACE_TYPE_HANDLED;
1928 SEQ_PUT_HEX_FIELD_RET(s, entry->pid);
1929 SEQ_PUT_HEX_FIELD_RET(s, iter->cpu);
1930 SEQ_PUT_HEX_FIELD_RET(s, iter->ts);
1932 switch (entry->type) {
1934 struct ftrace_entry *field;
1936 trace_assign_type(field, entry);
1938 SEQ_PUT_HEX_FIELD_RET(s, field->ip);
1939 SEQ_PUT_HEX_FIELD_RET(s, field->parent_ip);
1944 struct ctx_switch_entry *field;
1946 trace_assign_type(field, entry);
1948 S = field->prev_state < sizeof(state_to_char) ?
1949 state_to_char[field->prev_state] : 'X';
1950 T = field->next_state < sizeof(state_to_char) ?
1951 state_to_char[field->next_state] : 'X';
1952 if (entry->type == TRACE_WAKE)
1954 SEQ_PUT_HEX_FIELD_RET(s, field->prev_pid);
1955 SEQ_PUT_HEX_FIELD_RET(s, field->prev_prio);
1956 SEQ_PUT_HEX_FIELD_RET(s, S);
1957 SEQ_PUT_HEX_FIELD_RET(s, field->next_cpu);
1958 SEQ_PUT_HEX_FIELD_RET(s, field->next_pid);
1959 SEQ_PUT_HEX_FIELD_RET(s, field->next_prio);
1960 SEQ_PUT_HEX_FIELD_RET(s, T);
1965 struct special_entry *field;
1967 trace_assign_type(field, entry);
1969 SEQ_PUT_HEX_FIELD_RET(s, field->arg1);
1970 SEQ_PUT_HEX_FIELD_RET(s, field->arg2);
1971 SEQ_PUT_HEX_FIELD_RET(s, field->arg3);
1975 SEQ_PUT_FIELD_RET(s, newline);
1977 return TRACE_TYPE_HANDLED;
1980 static enum print_line_t print_bin_fmt(struct trace_iterator *iter)
1982 struct trace_seq *s = &iter->seq;
1983 struct trace_entry *entry;
1987 if (entry->type == TRACE_CONT)
1988 return TRACE_TYPE_HANDLED;
1990 SEQ_PUT_FIELD_RET(s, entry->pid);
1991 SEQ_PUT_FIELD_RET(s, entry->cpu);
1992 SEQ_PUT_FIELD_RET(s, iter->ts);
1994 switch (entry->type) {
1996 struct ftrace_entry *field;
1998 trace_assign_type(field, entry);
2000 SEQ_PUT_FIELD_RET(s, field->ip);
2001 SEQ_PUT_FIELD_RET(s, field->parent_ip);
2005 struct ctx_switch_entry *field;
2007 trace_assign_type(field, entry);
2009 SEQ_PUT_FIELD_RET(s, field->prev_pid);
2010 SEQ_PUT_FIELD_RET(s, field->prev_prio);
2011 SEQ_PUT_FIELD_RET(s, field->prev_state);
2012 SEQ_PUT_FIELD_RET(s, field->next_pid);
2013 SEQ_PUT_FIELD_RET(s, field->next_prio);
2014 SEQ_PUT_FIELD_RET(s, field->next_state);
2019 struct special_entry *field;
2021 trace_assign_type(field, entry);
2023 SEQ_PUT_FIELD_RET(s, field->arg1);
2024 SEQ_PUT_FIELD_RET(s, field->arg2);
2025 SEQ_PUT_FIELD_RET(s, field->arg3);
2032 static int trace_empty(struct trace_iterator *iter)
2036 for_each_tracing_cpu(cpu) {
2037 if (iter->buffer_iter[cpu]) {
2038 if (!ring_buffer_iter_empty(iter->buffer_iter[cpu]))
2041 if (!ring_buffer_empty_cpu(iter->tr->buffer, cpu))
2049 static enum print_line_t print_trace_line(struct trace_iterator *iter)
2051 enum print_line_t ret;
2053 if (iter->trace && iter->trace->print_line) {
2054 ret = iter->trace->print_line(iter);
2055 if (ret != TRACE_TYPE_UNHANDLED)
2059 if (trace_flags & TRACE_ITER_BIN)
2060 return print_bin_fmt(iter);
2062 if (trace_flags & TRACE_ITER_HEX)
2063 return print_hex_fmt(iter);
2065 if (trace_flags & TRACE_ITER_RAW)
2066 return print_raw_fmt(iter);
2068 if (iter->iter_flags & TRACE_FILE_LAT_FMT)
2069 return print_lat_fmt(iter, iter->idx, iter->cpu);
2071 return print_trace_fmt(iter);
2074 static int s_show(struct seq_file *m, void *v)
2076 struct trace_iterator *iter = v;
2078 if (iter->ent == NULL) {
2080 seq_printf(m, "# tracer: %s\n", iter->trace->name);
2083 if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
2084 /* print nothing if the buffers are empty */
2085 if (trace_empty(iter))
2087 print_trace_header(m, iter);
2088 if (!(trace_flags & TRACE_ITER_VERBOSE))
2089 print_lat_help_header(m);
2091 if (!(trace_flags & TRACE_ITER_VERBOSE))
2092 print_func_help_header(m);
2095 print_trace_line(iter);
2096 trace_print_seq(m, &iter->seq);
2102 static struct seq_operations tracer_seq_ops = {
2109 static struct trace_iterator *
2110 __tracing_open(struct inode *inode, struct file *file, int *ret)
2112 struct trace_iterator *iter;
2116 if (tracing_disabled) {
2121 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2127 mutex_lock(&trace_types_lock);
2128 if (current_trace && current_trace->print_max)
2131 iter->tr = inode->i_private;
2132 iter->trace = current_trace;
2135 for_each_tracing_cpu(cpu) {
2137 iter->buffer_iter[cpu] =
2138 ring_buffer_read_start(iter->tr->buffer, cpu);
2140 if (!iter->buffer_iter[cpu])
2144 /* TODO stop tracer */
2145 *ret = seq_open(file, &tracer_seq_ops);
2149 m = file->private_data;
2152 /* stop the trace while dumping */
2155 if (iter->trace && iter->trace->open)
2156 iter->trace->open(iter);
2158 mutex_unlock(&trace_types_lock);
2164 for_each_tracing_cpu(cpu) {
2165 if (iter->buffer_iter[cpu])
2166 ring_buffer_read_finish(iter->buffer_iter[cpu]);
2168 mutex_unlock(&trace_types_lock);
2170 return ERR_PTR(-ENOMEM);
2173 int tracing_open_generic(struct inode *inode, struct file *filp)
2175 if (tracing_disabled)
2178 filp->private_data = inode->i_private;
2182 int tracing_release(struct inode *inode, struct file *file)
2184 struct seq_file *m = (struct seq_file *)file->private_data;
2185 struct trace_iterator *iter = m->private;
2188 mutex_lock(&trace_types_lock);
2189 for_each_tracing_cpu(cpu) {
2190 if (iter->buffer_iter[cpu])
2191 ring_buffer_read_finish(iter->buffer_iter[cpu]);
2194 if (iter->trace && iter->trace->close)
2195 iter->trace->close(iter);
2197 /* reenable tracing if it was previously enabled */
2199 mutex_unlock(&trace_types_lock);
2201 seq_release(inode, file);
2206 static int tracing_open(struct inode *inode, struct file *file)
2210 __tracing_open(inode, file, &ret);
2215 static int tracing_lt_open(struct inode *inode, struct file *file)
2217 struct trace_iterator *iter;
2220 iter = __tracing_open(inode, file, &ret);
2223 iter->iter_flags |= TRACE_FILE_LAT_FMT;
2230 t_next(struct seq_file *m, void *v, loff_t *pos)
2232 struct tracer *t = m->private;
2244 static void *t_start(struct seq_file *m, loff_t *pos)
2246 struct tracer *t = m->private;
2249 mutex_lock(&trace_types_lock);
2250 for (; t && l < *pos; t = t_next(m, t, &l))
2256 static void t_stop(struct seq_file *m, void *p)
2258 mutex_unlock(&trace_types_lock);
2261 static int t_show(struct seq_file *m, void *v)
2263 struct tracer *t = v;
2268 seq_printf(m, "%s", t->name);
2277 static struct seq_operations show_traces_seq_ops = {
2284 static int show_traces_open(struct inode *inode, struct file *file)
2288 if (tracing_disabled)
2291 ret = seq_open(file, &show_traces_seq_ops);
2293 struct seq_file *m = file->private_data;
2294 m->private = trace_types;
2300 static struct file_operations tracing_fops = {
2301 .open = tracing_open,
2303 .llseek = seq_lseek,
2304 .release = tracing_release,
2307 static struct file_operations tracing_lt_fops = {
2308 .open = tracing_lt_open,
2310 .llseek = seq_lseek,
2311 .release = tracing_release,
2314 static struct file_operations show_traces_fops = {
2315 .open = show_traces_open,
2317 .release = seq_release,
2321 * Only trace on a CPU if the bitmask is set:
2323 static cpumask_t tracing_cpumask = CPU_MASK_ALL;
2326 * When tracing/tracing_cpu_mask is modified then this holds
2327 * the new bitmask we are about to install:
2329 static cpumask_t tracing_cpumask_new;
2332 * The tracer itself will not take this lock, but still we want
2333 * to provide a consistent cpumask to user-space:
2335 static DEFINE_MUTEX(tracing_cpumask_update_lock);
2338 * Temporary storage for the character representation of the
2339 * CPU bitmask (and one more byte for the newline):
2341 static char mask_str[NR_CPUS + 1];
2344 tracing_cpumask_read(struct file *filp, char __user *ubuf,
2345 size_t count, loff_t *ppos)
2349 mutex_lock(&tracing_cpumask_update_lock);
2351 len = cpumask_scnprintf(mask_str, count, tracing_cpumask);
2352 if (count - len < 2) {
2356 len += sprintf(mask_str + len, "\n");
2357 count = simple_read_from_buffer(ubuf, count, ppos, mask_str, NR_CPUS+1);
2360 mutex_unlock(&tracing_cpumask_update_lock);
2366 tracing_cpumask_write(struct file *filp, const char __user *ubuf,
2367 size_t count, loff_t *ppos)
2371 mutex_lock(&tracing_cpumask_update_lock);
2372 err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
2376 raw_local_irq_disable();
2377 __raw_spin_lock(&ftrace_max_lock);
2378 for_each_tracing_cpu(cpu) {
2380 * Increase/decrease the disabled counter if we are
2381 * about to flip a bit in the cpumask:
2383 if (cpu_isset(cpu, tracing_cpumask) &&
2384 !cpu_isset(cpu, tracing_cpumask_new)) {
2385 atomic_inc(&global_trace.data[cpu]->disabled);
2387 if (!cpu_isset(cpu, tracing_cpumask) &&
2388 cpu_isset(cpu, tracing_cpumask_new)) {
2389 atomic_dec(&global_trace.data[cpu]->disabled);
2392 __raw_spin_unlock(&ftrace_max_lock);
2393 raw_local_irq_enable();
2395 tracing_cpumask = tracing_cpumask_new;
2397 mutex_unlock(&tracing_cpumask_update_lock);
2402 mutex_unlock(&tracing_cpumask_update_lock);
2407 static struct file_operations tracing_cpumask_fops = {
2408 .open = tracing_open_generic,
2409 .read = tracing_cpumask_read,
2410 .write = tracing_cpumask_write,
2414 tracing_iter_ctrl_read(struct file *filp, char __user *ubuf,
2415 size_t cnt, loff_t *ppos)
2422 /* calulate max size */
2423 for (i = 0; trace_options[i]; i++) {
2424 len += strlen(trace_options[i]);
2425 len += 3; /* "no" and space */
2428 /* +2 for \n and \0 */
2429 buf = kmalloc(len + 2, GFP_KERNEL);
2433 for (i = 0; trace_options[i]; i++) {
2434 if (trace_flags & (1 << i))
2435 r += sprintf(buf + r, "%s ", trace_options[i]);
2437 r += sprintf(buf + r, "no%s ", trace_options[i]);
2440 r += sprintf(buf + r, "\n");
2441 WARN_ON(r >= len + 2);
2443 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2451 tracing_iter_ctrl_write(struct file *filp, const char __user *ubuf,
2452 size_t cnt, loff_t *ppos)
2459 if (cnt >= sizeof(buf))
2462 if (copy_from_user(&buf, ubuf, cnt))
2467 if (strncmp(buf, "no", 2) == 0) {
2472 for (i = 0; trace_options[i]; i++) {
2473 int len = strlen(trace_options[i]);
2475 if (strncmp(cmp, trace_options[i], len) == 0) {
2477 trace_flags &= ~(1 << i);
2479 trace_flags |= (1 << i);
2484 * If no option could be set, return an error:
2486 if (!trace_options[i])
2494 static struct file_operations tracing_iter_fops = {
2495 .open = tracing_open_generic,
2496 .read = tracing_iter_ctrl_read,
2497 .write = tracing_iter_ctrl_write,
2500 static const char readme_msg[] =
2501 "tracing mini-HOWTO:\n\n"
2503 "# mount -t debugfs nodev /debug\n\n"
2504 "# cat /debug/tracing/available_tracers\n"
2505 "wakeup preemptirqsoff preemptoff irqsoff ftrace sched_switch none\n\n"
2506 "# cat /debug/tracing/current_tracer\n"
2508 "# echo sched_switch > /debug/tracing/current_tracer\n"
2509 "# cat /debug/tracing/current_tracer\n"
2511 "# cat /debug/tracing/iter_ctrl\n"
2512 "noprint-parent nosym-offset nosym-addr noverbose\n"
2513 "# echo print-parent > /debug/tracing/iter_ctrl\n"
2514 "# echo 1 > /debug/tracing/tracing_enabled\n"
2515 "# cat /debug/tracing/trace > /tmp/trace.txt\n"
2516 "echo 0 > /debug/tracing/tracing_enabled\n"
2520 tracing_readme_read(struct file *filp, char __user *ubuf,
2521 size_t cnt, loff_t *ppos)
2523 return simple_read_from_buffer(ubuf, cnt, ppos,
2524 readme_msg, strlen(readme_msg));
2527 static struct file_operations tracing_readme_fops = {
2528 .open = tracing_open_generic,
2529 .read = tracing_readme_read,
2533 tracing_ctrl_read(struct file *filp, char __user *ubuf,
2534 size_t cnt, loff_t *ppos)
2539 r = sprintf(buf, "%u\n", tracer_enabled);
2540 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2544 tracing_ctrl_write(struct file *filp, const char __user *ubuf,
2545 size_t cnt, loff_t *ppos)
2547 struct trace_array *tr = filp->private_data;
2552 if (cnt >= sizeof(buf))
2555 if (copy_from_user(&buf, ubuf, cnt))
2560 ret = strict_strtoul(buf, 10, &val);
2566 mutex_lock(&trace_types_lock);
2567 if (tracer_enabled ^ val) {
2570 if (current_trace->start)
2571 current_trace->start(tr);
2576 if (current_trace->stop)
2577 current_trace->stop(tr);
2580 mutex_unlock(&trace_types_lock);
2588 tracing_set_trace_read(struct file *filp, char __user *ubuf,
2589 size_t cnt, loff_t *ppos)
2591 char buf[max_tracer_type_len+2];
2594 mutex_lock(&trace_types_lock);
2596 r = sprintf(buf, "%s\n", current_trace->name);
2598 r = sprintf(buf, "\n");
2599 mutex_unlock(&trace_types_lock);
2601 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2604 static int tracing_set_tracer(char *buf)
2606 struct trace_array *tr = &global_trace;
2610 mutex_lock(&trace_types_lock);
2611 for (t = trace_types; t; t = t->next) {
2612 if (strcmp(t->name, buf) == 0)
2619 if (t == current_trace)
2622 trace_unlikely_disable();
2623 if (current_trace && current_trace->reset)
2624 current_trace->reset(tr);
2630 trace_unlikely_enable(tr);
2632 mutex_unlock(&trace_types_lock);
2638 tracing_set_trace_write(struct file *filp, const char __user *ubuf,
2639 size_t cnt, loff_t *ppos)
2641 char buf[max_tracer_type_len+1];
2645 if (cnt > max_tracer_type_len)
2646 cnt = max_tracer_type_len;
2648 if (copy_from_user(&buf, ubuf, cnt))
2653 /* strip ending whitespace. */
2654 for (i = cnt - 1; i > 0 && isspace(buf[i]); i--)
2657 ret = tracing_set_tracer(buf);
2668 tracing_max_lat_read(struct file *filp, char __user *ubuf,
2669 size_t cnt, loff_t *ppos)
2671 unsigned long *ptr = filp->private_data;
2675 r = snprintf(buf, sizeof(buf), "%ld\n",
2676 *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
2677 if (r > sizeof(buf))
2679 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2683 tracing_max_lat_write(struct file *filp, const char __user *ubuf,
2684 size_t cnt, loff_t *ppos)
2686 long *ptr = filp->private_data;
2691 if (cnt >= sizeof(buf))
2694 if (copy_from_user(&buf, ubuf, cnt))
2699 ret = strict_strtoul(buf, 10, &val);
2708 static atomic_t tracing_reader;
2710 static int tracing_open_pipe(struct inode *inode, struct file *filp)
2712 struct trace_iterator *iter;
2714 if (tracing_disabled)
2717 /* We only allow for reader of the pipe */
2718 if (atomic_inc_return(&tracing_reader) != 1) {
2719 atomic_dec(&tracing_reader);
2723 /* create a buffer to store the information to pass to userspace */
2724 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2728 mutex_lock(&trace_types_lock);
2730 /* trace pipe does not show start of buffer */
2731 cpus_setall(iter->started);
2733 iter->tr = &global_trace;
2734 iter->trace = current_trace;
2735 filp->private_data = iter;
2737 if (iter->trace->pipe_open)
2738 iter->trace->pipe_open(iter);
2739 mutex_unlock(&trace_types_lock);
2744 static int tracing_release_pipe(struct inode *inode, struct file *file)
2746 struct trace_iterator *iter = file->private_data;
2749 atomic_dec(&tracing_reader);
2755 tracing_poll_pipe(struct file *filp, poll_table *poll_table)
2757 struct trace_iterator *iter = filp->private_data;
2759 if (trace_flags & TRACE_ITER_BLOCK) {
2761 * Always select as readable when in blocking mode
2763 return POLLIN | POLLRDNORM;
2765 if (!trace_empty(iter))
2766 return POLLIN | POLLRDNORM;
2767 poll_wait(filp, &trace_wait, poll_table);
2768 if (!trace_empty(iter))
2769 return POLLIN | POLLRDNORM;
2779 tracing_read_pipe(struct file *filp, char __user *ubuf,
2780 size_t cnt, loff_t *ppos)
2782 struct trace_iterator *iter = filp->private_data;
2785 /* return any leftover data */
2786 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
2790 trace_seq_reset(&iter->seq);
2792 mutex_lock(&trace_types_lock);
2793 if (iter->trace->read) {
2794 sret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
2801 while (trace_empty(iter)) {
2803 if ((filp->f_flags & O_NONBLOCK)) {
2809 * This is a make-shift waitqueue. The reason we don't use
2810 * an actual wait queue is because:
2811 * 1) we only ever have one waiter
2812 * 2) the tracing, traces all functions, we don't want
2813 * the overhead of calling wake_up and friends
2814 * (and tracing them too)
2815 * Anyway, this is really very primitive wakeup.
2817 set_current_state(TASK_INTERRUPTIBLE);
2818 iter->tr->waiter = current;
2820 mutex_unlock(&trace_types_lock);
2822 /* sleep for 100 msecs, and try again. */
2823 schedule_timeout(HZ/10);
2825 mutex_lock(&trace_types_lock);
2827 iter->tr->waiter = NULL;
2829 if (signal_pending(current)) {
2834 if (iter->trace != current_trace)
2838 * We block until we read something and tracing is disabled.
2839 * We still block if tracing is disabled, but we have never
2840 * read anything. This allows a user to cat this file, and
2841 * then enable tracing. But after we have read something,
2842 * we give an EOF when tracing is again disabled.
2844 * iter->pos will be 0 if we haven't read anything.
2846 if (!tracer_enabled && iter->pos)
2852 /* stop when tracing is finished */
2853 if (trace_empty(iter))
2856 if (cnt >= PAGE_SIZE)
2857 cnt = PAGE_SIZE - 1;
2859 /* reset all but tr, trace, and overruns */
2860 memset(&iter->seq, 0,
2861 sizeof(struct trace_iterator) -
2862 offsetof(struct trace_iterator, seq));
2865 while (find_next_entry_inc(iter) != NULL) {
2866 enum print_line_t ret;
2867 int len = iter->seq.len;
2869 ret = print_trace_line(iter);
2870 if (ret == TRACE_TYPE_PARTIAL_LINE) {
2871 /* don't print partial lines */
2872 iter->seq.len = len;
2876 trace_consume(iter);
2878 if (iter->seq.len >= cnt)
2882 /* Now copy what we have to the user */
2883 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
2884 if (iter->seq.readpos >= iter->seq.len)
2885 trace_seq_reset(&iter->seq);
2888 * If there was nothing to send to user, inspite of consuming trace
2889 * entries, go back to wait for more entries.
2895 mutex_unlock(&trace_types_lock);
2901 tracing_entries_read(struct file *filp, char __user *ubuf,
2902 size_t cnt, loff_t *ppos)
2904 struct trace_array *tr = filp->private_data;
2908 r = sprintf(buf, "%lu\n", tr->entries);
2909 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2913 tracing_entries_write(struct file *filp, const char __user *ubuf,
2914 size_t cnt, loff_t *ppos)
2920 if (cnt >= sizeof(buf))
2923 if (copy_from_user(&buf, ubuf, cnt))
2928 ret = strict_strtoul(buf, 10, &val);
2932 /* must have at least 1 entry */
2936 mutex_lock(&trace_types_lock);
2940 /* disable all cpu buffers */
2941 for_each_tracing_cpu(cpu) {
2942 if (global_trace.data[cpu])
2943 atomic_inc(&global_trace.data[cpu]->disabled);
2944 if (max_tr.data[cpu])
2945 atomic_inc(&max_tr.data[cpu]->disabled);
2948 if (val != global_trace.entries) {
2949 ret = ring_buffer_resize(global_trace.buffer, val);
2955 ret = ring_buffer_resize(max_tr.buffer, val);
2959 r = ring_buffer_resize(global_trace.buffer,
2960 global_trace.entries);
2962 /* AARGH! We are left with different
2963 * size max buffer!!!! */
2965 tracing_disabled = 1;
2970 global_trace.entries = val;
2975 /* If check pages failed, return ENOMEM */
2976 if (tracing_disabled)
2979 for_each_tracing_cpu(cpu) {
2980 if (global_trace.data[cpu])
2981 atomic_dec(&global_trace.data[cpu]->disabled);
2982 if (max_tr.data[cpu])
2983 atomic_dec(&max_tr.data[cpu]->disabled);
2987 max_tr.entries = global_trace.entries;
2988 mutex_unlock(&trace_types_lock);
2993 static int mark_printk(const char *fmt, ...)
2997 va_start(args, fmt);
2998 ret = trace_vprintk(0, fmt, args);
3004 tracing_mark_write(struct file *filp, const char __user *ubuf,
3005 size_t cnt, loff_t *fpos)
3010 if (tracing_disabled)
3013 if (cnt > TRACE_BUF_SIZE)
3014 cnt = TRACE_BUF_SIZE;
3016 buf = kmalloc(cnt + 1, GFP_KERNEL);
3020 if (copy_from_user(buf, ubuf, cnt)) {
3025 /* Cut from the first nil or newline. */
3027 end = strchr(buf, '\n');
3031 cnt = mark_printk("%s\n", buf);
3038 static struct file_operations tracing_max_lat_fops = {
3039 .open = tracing_open_generic,
3040 .read = tracing_max_lat_read,
3041 .write = tracing_max_lat_write,
3044 static struct file_operations tracing_ctrl_fops = {
3045 .open = tracing_open_generic,
3046 .read = tracing_ctrl_read,
3047 .write = tracing_ctrl_write,
3050 static struct file_operations set_tracer_fops = {
3051 .open = tracing_open_generic,
3052 .read = tracing_set_trace_read,
3053 .write = tracing_set_trace_write,
3056 static struct file_operations tracing_pipe_fops = {
3057 .open = tracing_open_pipe,
3058 .poll = tracing_poll_pipe,
3059 .read = tracing_read_pipe,
3060 .release = tracing_release_pipe,
3063 static struct file_operations tracing_entries_fops = {
3064 .open = tracing_open_generic,
3065 .read = tracing_entries_read,
3066 .write = tracing_entries_write,
3069 static struct file_operations tracing_mark_fops = {
3070 .open = tracing_open_generic,
3071 .write = tracing_mark_write,
3074 #ifdef CONFIG_DYNAMIC_FTRACE
3076 int __weak ftrace_arch_read_dyn_info(char *buf, int size)
3082 tracing_read_dyn_info(struct file *filp, char __user *ubuf,
3083 size_t cnt, loff_t *ppos)
3085 static char ftrace_dyn_info_buffer[1024];
3086 static DEFINE_MUTEX(dyn_info_mutex);
3087 unsigned long *p = filp->private_data;
3088 char *buf = ftrace_dyn_info_buffer;
3089 int size = ARRAY_SIZE(ftrace_dyn_info_buffer);
3092 mutex_lock(&dyn_info_mutex);
3093 r = sprintf(buf, "%ld ", *p);
3095 r += ftrace_arch_read_dyn_info(buf+r, (size-1)-r);
3098 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3100 mutex_unlock(&dyn_info_mutex);
3105 static struct file_operations tracing_dyn_info_fops = {
3106 .open = tracing_open_generic,
3107 .read = tracing_read_dyn_info,
3111 static struct dentry *d_tracer;
3113 struct dentry *tracing_init_dentry(void)
3120 d_tracer = debugfs_create_dir("tracing", NULL);
3122 if (!d_tracer && !once) {
3124 pr_warning("Could not create debugfs directory 'tracing'\n");
3131 #ifdef CONFIG_FTRACE_SELFTEST
3132 /* Let selftest have access to static functions in this file */
3133 #include "trace_selftest.c"
3136 static __init int tracer_init_debugfs(void)
3138 struct dentry *d_tracer;
3139 struct dentry *entry;
3141 d_tracer = tracing_init_dentry();
3143 entry = debugfs_create_file("tracing_enabled", 0644, d_tracer,
3144 &global_trace, &tracing_ctrl_fops);
3146 pr_warning("Could not create debugfs 'tracing_enabled' entry\n");
3148 entry = debugfs_create_file("iter_ctrl", 0644, d_tracer,
3149 NULL, &tracing_iter_fops);
3151 pr_warning("Could not create debugfs 'iter_ctrl' entry\n");
3153 entry = debugfs_create_file("tracing_cpumask", 0644, d_tracer,
3154 NULL, &tracing_cpumask_fops);
3156 pr_warning("Could not create debugfs 'tracing_cpumask' entry\n");
3158 entry = debugfs_create_file("latency_trace", 0444, d_tracer,
3159 &global_trace, &tracing_lt_fops);
3161 pr_warning("Could not create debugfs 'latency_trace' entry\n");
3163 entry = debugfs_create_file("trace", 0444, d_tracer,
3164 &global_trace, &tracing_fops);
3166 pr_warning("Could not create debugfs 'trace' entry\n");
3168 entry = debugfs_create_file("available_tracers", 0444, d_tracer,
3169 &global_trace, &show_traces_fops);
3171 pr_warning("Could not create debugfs 'available_tracers' entry\n");
3173 entry = debugfs_create_file("current_tracer", 0444, d_tracer,
3174 &global_trace, &set_tracer_fops);
3176 pr_warning("Could not create debugfs 'current_tracer' entry\n");
3178 entry = debugfs_create_file("tracing_max_latency", 0644, d_tracer,
3179 &tracing_max_latency,
3180 &tracing_max_lat_fops);
3182 pr_warning("Could not create debugfs "
3183 "'tracing_max_latency' entry\n");
3185 entry = debugfs_create_file("tracing_thresh", 0644, d_tracer,
3186 &tracing_thresh, &tracing_max_lat_fops);
3188 pr_warning("Could not create debugfs "
3189 "'tracing_thresh' entry\n");
3190 entry = debugfs_create_file("README", 0644, d_tracer,
3191 NULL, &tracing_readme_fops);
3193 pr_warning("Could not create debugfs 'README' entry\n");
3195 entry = debugfs_create_file("trace_pipe", 0644, d_tracer,
3196 NULL, &tracing_pipe_fops);
3198 pr_warning("Could not create debugfs "
3199 "'trace_pipe' entry\n");
3201 entry = debugfs_create_file("trace_entries", 0644, d_tracer,
3202 &global_trace, &tracing_entries_fops);
3204 pr_warning("Could not create debugfs "
3205 "'trace_entries' entry\n");
3207 entry = debugfs_create_file("trace_marker", 0220, d_tracer,
3208 NULL, &tracing_mark_fops);
3210 pr_warning("Could not create debugfs "
3211 "'trace_marker' entry\n");
3213 #ifdef CONFIG_DYNAMIC_FTRACE
3214 entry = debugfs_create_file("dyn_ftrace_total_info", 0444, d_tracer,
3215 &ftrace_update_tot_cnt,
3216 &tracing_dyn_info_fops);
3218 pr_warning("Could not create debugfs "
3219 "'dyn_ftrace_total_info' entry\n");
3221 #ifdef CONFIG_SYSPROF_TRACER
3222 init_tracer_sysprof_debugfs(d_tracer);
3227 int trace_vprintk(unsigned long ip, const char *fmt, va_list args)
3229 static DEFINE_SPINLOCK(trace_buf_lock);
3230 static char trace_buf[TRACE_BUF_SIZE];
3232 struct ring_buffer_event *event;
3233 struct trace_array *tr = &global_trace;
3234 struct trace_array_cpu *data;
3235 struct print_entry *entry;
3236 unsigned long flags, irq_flags;
3237 int cpu, len = 0, size, pc;
3239 if (tracing_disabled)
3242 pc = preempt_count();
3243 preempt_disable_notrace();
3244 cpu = raw_smp_processor_id();
3245 data = tr->data[cpu];
3247 if (unlikely(atomic_read(&data->disabled)))
3250 spin_lock_irqsave(&trace_buf_lock, flags);
3251 len = vsnprintf(trace_buf, TRACE_BUF_SIZE, fmt, args);
3253 len = min(len, TRACE_BUF_SIZE-1);
3256 size = sizeof(*entry) + len + 1;
3257 event = ring_buffer_lock_reserve(tr->buffer, size, &irq_flags);
3260 entry = ring_buffer_event_data(event);
3261 tracing_generic_entry_update(&entry->ent, flags, pc);
3262 entry->ent.type = TRACE_PRINT;
3265 memcpy(&entry->buf, trace_buf, len);
3266 entry->buf[len] = 0;
3267 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
3270 spin_unlock_irqrestore(&trace_buf_lock, flags);
3273 preempt_enable_notrace();
3277 EXPORT_SYMBOL_GPL(trace_vprintk);
3279 int __ftrace_printk(unsigned long ip, const char *fmt, ...)
3284 if (!(trace_flags & TRACE_ITER_PRINTK))
3288 ret = trace_vprintk(ip, fmt, ap);
3292 EXPORT_SYMBOL_GPL(__ftrace_printk);
3294 static int trace_panic_handler(struct notifier_block *this,
3295 unsigned long event, void *unused)
3297 if (ftrace_dump_on_oops)
3302 static struct notifier_block trace_panic_notifier = {
3303 .notifier_call = trace_panic_handler,
3305 .priority = 150 /* priority: INT_MAX >= x >= 0 */
3308 static int trace_die_handler(struct notifier_block *self,
3314 if (ftrace_dump_on_oops)
3323 static struct notifier_block trace_die_notifier = {
3324 .notifier_call = trace_die_handler,
3329 * printk is set to max of 1024, we really don't need it that big.
3330 * Nothing should be printing 1000 characters anyway.
3332 #define TRACE_MAX_PRINT 1000
3335 * Define here KERN_TRACE so that we have one place to modify
3336 * it if we decide to change what log level the ftrace dump
3339 #define KERN_TRACE KERN_INFO
3342 trace_printk_seq(struct trace_seq *s)
3344 /* Probably should print a warning here. */
3348 /* should be zero ended, but we are paranoid. */
3349 s->buffer[s->len] = 0;
3351 printk(KERN_TRACE "%s", s->buffer);
3356 void ftrace_dump(void)
3358 static DEFINE_SPINLOCK(ftrace_dump_lock);
3359 /* use static because iter can be a bit big for the stack */
3360 static struct trace_iterator iter;
3361 static cpumask_t mask;
3362 static int dump_ran;
3363 unsigned long flags;
3367 spin_lock_irqsave(&ftrace_dump_lock, flags);
3373 /* No turning back! */
3376 for_each_tracing_cpu(cpu) {
3377 atomic_inc(&global_trace.data[cpu]->disabled);
3380 printk(KERN_TRACE "Dumping ftrace buffer:\n");
3382 iter.tr = &global_trace;
3383 iter.trace = current_trace;
3386 * We need to stop all tracing on all CPUS to read the
3387 * the next buffer. This is a bit expensive, but is
3388 * not done often. We fill all what we can read,
3389 * and then release the locks again.
3394 while (!trace_empty(&iter)) {
3397 printk(KERN_TRACE "---------------------------------\n");
3401 /* reset all but tr, trace, and overruns */
3402 memset(&iter.seq, 0,
3403 sizeof(struct trace_iterator) -
3404 offsetof(struct trace_iterator, seq));
3405 iter.iter_flags |= TRACE_FILE_LAT_FMT;
3408 if (find_next_entry_inc(&iter) != NULL) {
3409 print_trace_line(&iter);
3410 trace_consume(&iter);
3413 trace_printk_seq(&iter.seq);
3417 printk(KERN_TRACE " (ftrace buffer empty)\n");
3419 printk(KERN_TRACE "---------------------------------\n");
3422 spin_unlock_irqrestore(&ftrace_dump_lock, flags);
3425 __init static int tracer_alloc_buffers(void)
3427 struct trace_array_cpu *data;
3430 /* TODO: make the number of buffers hot pluggable with CPUS */
3431 tracing_buffer_mask = cpu_possible_map;
3433 global_trace.buffer = ring_buffer_alloc(trace_buf_size,
3434 TRACE_BUFFER_FLAGS);
3435 if (!global_trace.buffer) {
3436 printk(KERN_ERR "tracer: failed to allocate ring buffer!\n");
3440 global_trace.entries = ring_buffer_size(global_trace.buffer);
3442 #ifdef CONFIG_TRACER_MAX_TRACE
3443 max_tr.buffer = ring_buffer_alloc(trace_buf_size,
3444 TRACE_BUFFER_FLAGS);
3445 if (!max_tr.buffer) {
3446 printk(KERN_ERR "tracer: failed to allocate max ring buffer!\n");
3448 ring_buffer_free(global_trace.buffer);
3451 max_tr.entries = ring_buffer_size(max_tr.buffer);
3452 WARN_ON(max_tr.entries != global_trace.entries);
3455 /* Allocate the first page for all buffers */
3456 for_each_tracing_cpu(i) {
3457 data = global_trace.data[i] = &per_cpu(global_trace_cpu, i);
3458 max_tr.data[i] = &per_cpu(max_data, i);
3461 trace_init_cmdlines();
3463 register_tracer(&nop_trace);
3464 #ifdef CONFIG_BOOT_TRACER
3465 register_tracer(&boot_tracer);
3466 current_trace = &boot_tracer;
3467 current_trace->init(&global_trace);
3469 current_trace = &nop_trace;
3472 /* All seems OK, enable tracing */
3473 tracing_disabled = 0;
3475 atomic_notifier_chain_register(&panic_notifier_list,
3476 &trace_panic_notifier);
3478 register_die_notifier(&trace_die_notifier);
3482 early_initcall(tracer_alloc_buffers);
3483 fs_initcall(tracer_init_debugfs);