2 * ring buffer based function tracer
7 * Originally taken from the RT patch by:
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>
40 #include "trace_output.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;
48 * We need to change this state when a selftest is running.
49 * A selftest will lurk into the ring-buffer to count the
50 * entries inserted during the selftest although some concurrent
51 * insertions into the ring-buffer such as ftrace_printk could occurred
52 * at the same time, giving false positive or negative results.
54 static bool __read_mostly tracing_selftest_running;
56 /* For tracers that don't implement custom flags */
57 static struct tracer_opt dummy_tracer_opt[] = {
61 static struct tracer_flags dummy_tracer_flags = {
63 .opts = dummy_tracer_opt
66 static int dummy_set_flag(u32 old_flags, u32 bit, int set)
72 * Kill all tracing for good (never come back).
73 * It is initialized to 1 but will turn to zero if the initialization
74 * of the tracer is successful. But that is the only place that sets
77 int tracing_disabled = 1;
79 static DEFINE_PER_CPU(local_t, ftrace_cpu_disabled);
81 static inline void ftrace_disable_cpu(void)
84 local_inc(&__get_cpu_var(ftrace_cpu_disabled));
87 static inline void ftrace_enable_cpu(void)
89 local_dec(&__get_cpu_var(ftrace_cpu_disabled));
93 static cpumask_var_t __read_mostly tracing_buffer_mask;
95 #define for_each_tracing_cpu(cpu) \
96 for_each_cpu(cpu, tracing_buffer_mask)
99 * ftrace_dump_on_oops - variable to dump ftrace buffer on oops
101 * If there is an oops (or kernel panic) and the ftrace_dump_on_oops
102 * is set, then ftrace_dump is called. This will output the contents
103 * of the ftrace buffers to the console. This is very useful for
104 * capturing traces that lead to crashes and outputing it to a
107 * It is default off, but you can enable it with either specifying
108 * "ftrace_dump_on_oops" in the kernel command line, or setting
109 * /proc/sys/kernel/ftrace_dump_on_oops to true.
111 int ftrace_dump_on_oops;
113 static int tracing_set_tracer(char *buf);
115 static int __init set_ftrace(char *str)
117 tracing_set_tracer(str);
120 __setup("ftrace", set_ftrace);
122 static int __init set_ftrace_dump_on_oops(char *str)
124 ftrace_dump_on_oops = 1;
127 __setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops);
130 ns2usecs(cycle_t nsec)
137 cycle_t ftrace_now(int cpu)
139 u64 ts = ring_buffer_time_stamp(cpu);
140 ring_buffer_normalize_time_stamp(cpu, &ts);
145 * The global_trace is the descriptor that holds the tracing
146 * buffers for the live tracing. For each CPU, it contains
147 * a link list of pages that will store trace entries. The
148 * page descriptor of the pages in the memory is used to hold
149 * the link list by linking the lru item in the page descriptor
150 * to each of the pages in the buffer per CPU.
152 * For each active CPU there is a data field that holds the
153 * pages for the buffer for that CPU. Each CPU has the same number
154 * of pages allocated for its buffer.
156 static struct trace_array global_trace;
158 static DEFINE_PER_CPU(struct trace_array_cpu, global_trace_cpu);
161 * The max_tr is used to snapshot the global_trace when a maximum
162 * latency is reached. Some tracers will use this to store a maximum
163 * trace while it continues examining live traces.
165 * The buffers for the max_tr are set up the same as the global_trace.
166 * When a snapshot is taken, the link list of the max_tr is swapped
167 * with the link list of the global_trace and the buffers are reset for
168 * the global_trace so the tracing can continue.
170 static struct trace_array max_tr;
172 static DEFINE_PER_CPU(struct trace_array_cpu, max_data);
174 /* tracer_enabled is used to toggle activation of a tracer */
175 static int tracer_enabled = 1;
178 * tracing_is_enabled - return tracer_enabled status
180 * This function is used by other tracers to know the status
181 * of the tracer_enabled flag. Tracers may use this function
182 * to know if it should enable their features when starting
183 * up. See irqsoff tracer for an example (start_irqsoff_tracer).
185 int tracing_is_enabled(void)
187 return tracer_enabled;
190 /* function tracing enabled */
191 int ftrace_function_enabled;
194 * trace_buf_size is the size in bytes that is allocated
195 * for a buffer. Note, the number of bytes is always rounded
198 * This number is purposely set to a low number of 16384.
199 * If the dump on oops happens, it will be much appreciated
200 * to not have to wait for all that output. Anyway this can be
201 * boot time and run time configurable.
203 #define TRACE_BUF_SIZE_DEFAULT 1441792UL /* 16384 * 88 (sizeof(entry)) */
205 static unsigned long trace_buf_size = TRACE_BUF_SIZE_DEFAULT;
207 /* trace_types holds a link list of available tracers. */
208 static struct tracer *trace_types __read_mostly;
210 /* current_trace points to the tracer that is currently active */
211 static struct tracer *current_trace __read_mostly;
214 * max_tracer_type_len is used to simplify the allocating of
215 * buffers to read userspace tracer names. We keep track of
216 * the longest tracer name registered.
218 static int max_tracer_type_len;
221 * trace_types_lock is used to protect the trace_types list.
222 * This lock is also used to keep user access serialized.
223 * Accesses from userspace will grab this lock while userspace
224 * activities happen inside the kernel.
226 static DEFINE_MUTEX(trace_types_lock);
228 /* trace_wait is a waitqueue for tasks blocked on trace_poll */
229 static DECLARE_WAIT_QUEUE_HEAD(trace_wait);
231 /* trace_flags holds trace_options default values */
232 unsigned long trace_flags = TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK |
236 * trace_wake_up - wake up tasks waiting for trace input
238 * Simply wakes up any task that is blocked on the trace_wait
239 * queue. These is used with trace_poll for tasks polling the trace.
241 void trace_wake_up(void)
244 * The runqueue_is_locked() can fail, but this is the best we
247 if (!(trace_flags & TRACE_ITER_BLOCK) && !runqueue_is_locked())
248 wake_up(&trace_wait);
251 static int __init set_buf_size(char *str)
253 unsigned long buf_size;
258 ret = strict_strtoul(str, 0, &buf_size);
259 /* nr_entries can not be zero */
260 if (ret < 0 || buf_size == 0)
262 trace_buf_size = buf_size;
265 __setup("trace_buf_size=", set_buf_size);
267 unsigned long nsecs_to_usecs(unsigned long nsecs)
272 /* These must match the bit postions in trace_iterator_flags */
273 static const char *trace_options[] = {
295 * ftrace_max_lock is used to protect the swapping of buffers
296 * when taking a max snapshot. The buffers themselves are
297 * protected by per_cpu spinlocks. But the action of the swap
298 * needs its own lock.
300 * This is defined as a raw_spinlock_t in order to help
301 * with performance when lockdep debugging is enabled.
303 static raw_spinlock_t ftrace_max_lock =
304 (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
307 * Copy the new maximum trace into the separate maximum-trace
308 * structure. (this way the maximum trace is permanently saved,
309 * for later retrieval via /debugfs/tracing/latency_trace)
312 __update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
314 struct trace_array_cpu *data = tr->data[cpu];
317 max_tr.time_start = data->preempt_timestamp;
319 data = max_tr.data[cpu];
320 data->saved_latency = tracing_max_latency;
322 memcpy(data->comm, tsk->comm, TASK_COMM_LEN);
323 data->pid = tsk->pid;
324 data->uid = task_uid(tsk);
325 data->nice = tsk->static_prio - 20 - MAX_RT_PRIO;
326 data->policy = tsk->policy;
327 data->rt_priority = tsk->rt_priority;
329 /* record this tasks comm */
330 tracing_record_cmdline(current);
334 trace_seq_reset(struct trace_seq *s)
340 ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, size_t cnt)
345 if (s->len <= s->readpos)
348 len = s->len - s->readpos;
351 ret = copy_to_user(ubuf, s->buffer + s->readpos, cnt);
360 trace_print_seq(struct seq_file *m, struct trace_seq *s)
362 int len = s->len >= PAGE_SIZE ? PAGE_SIZE - 1 : s->len;
365 seq_puts(m, s->buffer);
371 * update_max_tr - snapshot all trace buffers from global_trace to max_tr
373 * @tsk: the task with the latency
374 * @cpu: The cpu that initiated the trace.
376 * Flip the buffers between the @tr and the max_tr and record information
377 * about which task was the cause of this latency.
380 update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
382 struct ring_buffer *buf = tr->buffer;
384 WARN_ON_ONCE(!irqs_disabled());
385 __raw_spin_lock(&ftrace_max_lock);
387 tr->buffer = max_tr.buffer;
390 ftrace_disable_cpu();
391 ring_buffer_reset(tr->buffer);
394 __update_max_tr(tr, tsk, cpu);
395 __raw_spin_unlock(&ftrace_max_lock);
399 * update_max_tr_single - only copy one trace over, and reset the rest
401 * @tsk - task with the latency
402 * @cpu - the cpu of the buffer to copy.
404 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
407 update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
411 WARN_ON_ONCE(!irqs_disabled());
412 __raw_spin_lock(&ftrace_max_lock);
414 ftrace_disable_cpu();
416 ring_buffer_reset(max_tr.buffer);
417 ret = ring_buffer_swap_cpu(max_tr.buffer, tr->buffer, cpu);
423 __update_max_tr(tr, tsk, cpu);
424 __raw_spin_unlock(&ftrace_max_lock);
428 * register_tracer - register a tracer with the ftrace system.
429 * @type - the plugin for the tracer
431 * Register a new plugin tracer.
433 int register_tracer(struct tracer *type)
440 pr_info("Tracer must have a name\n");
445 * When this gets called we hold the BKL which means that
446 * preemption is disabled. Various trace selftests however
447 * need to disable and enable preemption for successful tests.
448 * So we drop the BKL here and grab it after the tests again.
451 mutex_lock(&trace_types_lock);
453 tracing_selftest_running = true;
455 for (t = trace_types; t; t = t->next) {
456 if (strcmp(type->name, t->name) == 0) {
458 pr_info("Trace %s already registered\n",
466 type->set_flag = &dummy_set_flag;
468 type->flags = &dummy_tracer_flags;
470 if (!type->flags->opts)
471 type->flags->opts = dummy_tracer_opt;
473 #ifdef CONFIG_FTRACE_STARTUP_TEST
474 if (type->selftest) {
475 struct tracer *saved_tracer = current_trace;
476 struct trace_array *tr = &global_trace;
480 * Run a selftest on this tracer.
481 * Here we reset the trace buffer, and set the current
482 * tracer to be this tracer. The tracer can then run some
483 * internal tracing to verify that everything is in order.
484 * If we fail, we do not register this tracer.
486 for_each_tracing_cpu(i)
487 tracing_reset(tr, i);
489 current_trace = type;
490 /* the test is responsible for initializing and enabling */
491 pr_info("Testing tracer %s: ", type->name);
492 ret = type->selftest(type, tr);
493 /* the test is responsible for resetting too */
494 current_trace = saved_tracer;
496 printk(KERN_CONT "FAILED!\n");
499 /* Only reset on passing, to avoid touching corrupted buffers */
500 for_each_tracing_cpu(i)
501 tracing_reset(tr, i);
503 printk(KERN_CONT "PASSED\n");
507 type->next = trace_types;
509 len = strlen(type->name);
510 if (len > max_tracer_type_len)
511 max_tracer_type_len = len;
514 tracing_selftest_running = false;
515 mutex_unlock(&trace_types_lock);
521 void unregister_tracer(struct tracer *type)
526 mutex_lock(&trace_types_lock);
527 for (t = &trace_types; *t; t = &(*t)->next) {
531 pr_info("Trace %s not registered\n", type->name);
536 if (strlen(type->name) != max_tracer_type_len)
539 max_tracer_type_len = 0;
540 for (t = &trace_types; *t; t = &(*t)->next) {
541 len = strlen((*t)->name);
542 if (len > max_tracer_type_len)
543 max_tracer_type_len = len;
546 mutex_unlock(&trace_types_lock);
549 void tracing_reset(struct trace_array *tr, int cpu)
551 ftrace_disable_cpu();
552 ring_buffer_reset_cpu(tr->buffer, cpu);
556 void tracing_reset_online_cpus(struct trace_array *tr)
560 tr->time_start = ftrace_now(tr->cpu);
562 for_each_online_cpu(cpu)
563 tracing_reset(tr, cpu);
566 #define SAVED_CMDLINES 128
567 static unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1];
568 static unsigned map_cmdline_to_pid[SAVED_CMDLINES];
569 static char saved_cmdlines[SAVED_CMDLINES][TASK_COMM_LEN];
570 static int cmdline_idx;
571 static DEFINE_SPINLOCK(trace_cmdline_lock);
573 /* temporary disable recording */
574 atomic_t trace_record_cmdline_disabled __read_mostly;
576 static void trace_init_cmdlines(void)
578 memset(&map_pid_to_cmdline, -1, sizeof(map_pid_to_cmdline));
579 memset(&map_cmdline_to_pid, -1, sizeof(map_cmdline_to_pid));
583 static int trace_stop_count;
584 static DEFINE_SPINLOCK(tracing_start_lock);
587 * ftrace_off_permanent - disable all ftrace code permanently
589 * This should only be called when a serious anomally has
590 * been detected. This will turn off the function tracing,
591 * ring buffers, and other tracing utilites. It takes no
592 * locks and can be called from any context.
594 void ftrace_off_permanent(void)
596 tracing_disabled = 1;
598 tracing_off_permanent();
602 * tracing_start - quick start of the tracer
604 * If tracing is enabled but was stopped by tracing_stop,
605 * this will start the tracer back up.
607 void tracing_start(void)
609 struct ring_buffer *buffer;
612 if (tracing_disabled)
615 spin_lock_irqsave(&tracing_start_lock, flags);
616 if (--trace_stop_count)
619 if (trace_stop_count < 0) {
620 /* Someone screwed up their debugging */
622 trace_stop_count = 0;
627 buffer = global_trace.buffer;
629 ring_buffer_record_enable(buffer);
631 buffer = max_tr.buffer;
633 ring_buffer_record_enable(buffer);
637 spin_unlock_irqrestore(&tracing_start_lock, flags);
641 * tracing_stop - quick stop of the tracer
643 * Light weight way to stop tracing. Use in conjunction with
646 void tracing_stop(void)
648 struct ring_buffer *buffer;
652 spin_lock_irqsave(&tracing_start_lock, flags);
653 if (trace_stop_count++)
656 buffer = global_trace.buffer;
658 ring_buffer_record_disable(buffer);
660 buffer = max_tr.buffer;
662 ring_buffer_record_disable(buffer);
665 spin_unlock_irqrestore(&tracing_start_lock, flags);
668 void trace_stop_cmdline_recording(void);
670 static void trace_save_cmdline(struct task_struct *tsk)
675 if (!tsk->pid || unlikely(tsk->pid > PID_MAX_DEFAULT))
679 * It's not the end of the world if we don't get
680 * the lock, but we also don't want to spin
681 * nor do we want to disable interrupts,
682 * so if we miss here, then better luck next time.
684 if (!spin_trylock(&trace_cmdline_lock))
687 idx = map_pid_to_cmdline[tsk->pid];
688 if (idx >= SAVED_CMDLINES) {
689 idx = (cmdline_idx + 1) % SAVED_CMDLINES;
691 map = map_cmdline_to_pid[idx];
692 if (map <= PID_MAX_DEFAULT)
693 map_pid_to_cmdline[map] = (unsigned)-1;
695 map_pid_to_cmdline[tsk->pid] = idx;
700 memcpy(&saved_cmdlines[idx], tsk->comm, TASK_COMM_LEN);
702 spin_unlock(&trace_cmdline_lock);
705 char *trace_find_cmdline(int pid)
707 char *cmdline = "<...>";
713 if (pid > PID_MAX_DEFAULT)
716 map = map_pid_to_cmdline[pid];
717 if (map >= SAVED_CMDLINES)
720 cmdline = saved_cmdlines[map];
726 void tracing_record_cmdline(struct task_struct *tsk)
728 if (atomic_read(&trace_record_cmdline_disabled))
731 trace_save_cmdline(tsk);
735 tracing_generic_entry_update(struct trace_entry *entry, unsigned long flags,
738 struct task_struct *tsk = current;
740 entry->preempt_count = pc & 0xff;
741 entry->pid = (tsk) ? tsk->pid : 0;
742 entry->tgid = (tsk) ? tsk->tgid : 0;
744 #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
745 (irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) |
747 TRACE_FLAG_IRQS_NOSUPPORT |
749 ((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) |
750 ((pc & SOFTIRQ_MASK) ? TRACE_FLAG_SOFTIRQ : 0) |
751 (need_resched() ? TRACE_FLAG_NEED_RESCHED : 0);
755 trace_function(struct trace_array *tr, struct trace_array_cpu *data,
756 unsigned long ip, unsigned long parent_ip, unsigned long flags,
759 struct ring_buffer_event *event;
760 struct ftrace_entry *entry;
761 unsigned long irq_flags;
763 /* If we are reading the ring buffer, don't trace */
764 if (unlikely(local_read(&__get_cpu_var(ftrace_cpu_disabled))))
767 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
771 entry = ring_buffer_event_data(event);
772 tracing_generic_entry_update(&entry->ent, flags, pc);
773 entry->ent.type = TRACE_FN;
775 entry->parent_ip = parent_ip;
776 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
779 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
780 static void __trace_graph_entry(struct trace_array *tr,
781 struct trace_array_cpu *data,
782 struct ftrace_graph_ent *trace,
786 struct ring_buffer_event *event;
787 struct ftrace_graph_ent_entry *entry;
788 unsigned long irq_flags;
790 if (unlikely(local_read(&__get_cpu_var(ftrace_cpu_disabled))))
793 event = ring_buffer_lock_reserve(global_trace.buffer, sizeof(*entry),
797 entry = ring_buffer_event_data(event);
798 tracing_generic_entry_update(&entry->ent, flags, pc);
799 entry->ent.type = TRACE_GRAPH_ENT;
800 entry->graph_ent = *trace;
801 ring_buffer_unlock_commit(global_trace.buffer, event, irq_flags);
804 static void __trace_graph_return(struct trace_array *tr,
805 struct trace_array_cpu *data,
806 struct ftrace_graph_ret *trace,
810 struct ring_buffer_event *event;
811 struct ftrace_graph_ret_entry *entry;
812 unsigned long irq_flags;
814 if (unlikely(local_read(&__get_cpu_var(ftrace_cpu_disabled))))
817 event = ring_buffer_lock_reserve(global_trace.buffer, sizeof(*entry),
821 entry = ring_buffer_event_data(event);
822 tracing_generic_entry_update(&entry->ent, flags, pc);
823 entry->ent.type = TRACE_GRAPH_RET;
825 ring_buffer_unlock_commit(global_trace.buffer, event, irq_flags);
830 ftrace(struct trace_array *tr, struct trace_array_cpu *data,
831 unsigned long ip, unsigned long parent_ip, unsigned long flags,
834 if (likely(!atomic_read(&data->disabled)))
835 trace_function(tr, data, ip, parent_ip, flags, pc);
838 static void __ftrace_trace_stack(struct trace_array *tr,
839 struct trace_array_cpu *data,
843 #ifdef CONFIG_STACKTRACE
844 struct ring_buffer_event *event;
845 struct stack_entry *entry;
846 struct stack_trace trace;
847 unsigned long irq_flags;
849 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
853 entry = ring_buffer_event_data(event);
854 tracing_generic_entry_update(&entry->ent, flags, pc);
855 entry->ent.type = TRACE_STACK;
857 memset(&entry->caller, 0, sizeof(entry->caller));
859 trace.nr_entries = 0;
860 trace.max_entries = FTRACE_STACK_ENTRIES;
862 trace.entries = entry->caller;
864 save_stack_trace(&trace);
865 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
869 static void ftrace_trace_stack(struct trace_array *tr,
870 struct trace_array_cpu *data,
874 if (!(trace_flags & TRACE_ITER_STACKTRACE))
877 __ftrace_trace_stack(tr, data, flags, skip, pc);
880 void __trace_stack(struct trace_array *tr,
881 struct trace_array_cpu *data,
885 __ftrace_trace_stack(tr, data, flags, skip, pc);
888 static void ftrace_trace_userstack(struct trace_array *tr,
889 struct trace_array_cpu *data,
890 unsigned long flags, int pc)
892 #ifdef CONFIG_STACKTRACE
893 struct ring_buffer_event *event;
894 struct userstack_entry *entry;
895 struct stack_trace trace;
896 unsigned long irq_flags;
898 if (!(trace_flags & TRACE_ITER_USERSTACKTRACE))
901 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
905 entry = ring_buffer_event_data(event);
906 tracing_generic_entry_update(&entry->ent, flags, pc);
907 entry->ent.type = TRACE_USER_STACK;
909 memset(&entry->caller, 0, sizeof(entry->caller));
911 trace.nr_entries = 0;
912 trace.max_entries = FTRACE_STACK_ENTRIES;
914 trace.entries = entry->caller;
916 save_stack_trace_user(&trace);
917 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
921 void __trace_userstack(struct trace_array *tr,
922 struct trace_array_cpu *data,
925 ftrace_trace_userstack(tr, data, flags, preempt_count());
929 ftrace_trace_special(void *__tr, void *__data,
930 unsigned long arg1, unsigned long arg2, unsigned long arg3,
933 struct ring_buffer_event *event;
934 struct trace_array_cpu *data = __data;
935 struct trace_array *tr = __tr;
936 struct special_entry *entry;
937 unsigned long irq_flags;
939 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
943 entry = ring_buffer_event_data(event);
944 tracing_generic_entry_update(&entry->ent, 0, pc);
945 entry->ent.type = TRACE_SPECIAL;
949 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
950 ftrace_trace_stack(tr, data, irq_flags, 4, pc);
951 ftrace_trace_userstack(tr, data, irq_flags, pc);
957 __trace_special(void *__tr, void *__data,
958 unsigned long arg1, unsigned long arg2, unsigned long arg3)
960 ftrace_trace_special(__tr, __data, arg1, arg2, arg3, preempt_count());
964 tracing_sched_switch_trace(struct trace_array *tr,
965 struct trace_array_cpu *data,
966 struct task_struct *prev,
967 struct task_struct *next,
968 unsigned long flags, int pc)
970 struct ring_buffer_event *event;
971 struct ctx_switch_entry *entry;
972 unsigned long irq_flags;
974 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
978 entry = ring_buffer_event_data(event);
979 tracing_generic_entry_update(&entry->ent, flags, pc);
980 entry->ent.type = TRACE_CTX;
981 entry->prev_pid = prev->pid;
982 entry->prev_prio = prev->prio;
983 entry->prev_state = prev->state;
984 entry->next_pid = next->pid;
985 entry->next_prio = next->prio;
986 entry->next_state = next->state;
987 entry->next_cpu = task_cpu(next);
988 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
989 ftrace_trace_stack(tr, data, flags, 5, pc);
990 ftrace_trace_userstack(tr, data, flags, pc);
994 tracing_sched_wakeup_trace(struct trace_array *tr,
995 struct trace_array_cpu *data,
996 struct task_struct *wakee,
997 struct task_struct *curr,
998 unsigned long flags, int pc)
1000 struct ring_buffer_event *event;
1001 struct ctx_switch_entry *entry;
1002 unsigned long irq_flags;
1004 event = ring_buffer_lock_reserve(tr->buffer, sizeof(*entry),
1008 entry = ring_buffer_event_data(event);
1009 tracing_generic_entry_update(&entry->ent, flags, pc);
1010 entry->ent.type = TRACE_WAKE;
1011 entry->prev_pid = curr->pid;
1012 entry->prev_prio = curr->prio;
1013 entry->prev_state = curr->state;
1014 entry->next_pid = wakee->pid;
1015 entry->next_prio = wakee->prio;
1016 entry->next_state = wakee->state;
1017 entry->next_cpu = task_cpu(wakee);
1018 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
1019 ftrace_trace_stack(tr, data, flags, 6, pc);
1020 ftrace_trace_userstack(tr, data, flags, pc);
1026 ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3)
1028 struct trace_array *tr = &global_trace;
1029 struct trace_array_cpu *data;
1030 unsigned long flags;
1034 if (tracing_disabled)
1037 pc = preempt_count();
1038 local_irq_save(flags);
1039 cpu = raw_smp_processor_id();
1040 data = tr->data[cpu];
1042 if (likely(atomic_inc_return(&data->disabled) == 1))
1043 ftrace_trace_special(tr, data, arg1, arg2, arg3, pc);
1045 atomic_dec(&data->disabled);
1046 local_irq_restore(flags);
1049 #ifdef CONFIG_FUNCTION_TRACER
1051 function_trace_call_preempt_only(unsigned long ip, unsigned long parent_ip)
1053 struct trace_array *tr = &global_trace;
1054 struct trace_array_cpu *data;
1055 unsigned long flags;
1060 if (unlikely(!ftrace_function_enabled))
1063 pc = preempt_count();
1064 resched = ftrace_preempt_disable();
1065 local_save_flags(flags);
1066 cpu = raw_smp_processor_id();
1067 data = tr->data[cpu];
1068 disabled = atomic_inc_return(&data->disabled);
1070 if (likely(disabled == 1))
1071 trace_function(tr, data, ip, parent_ip, flags, pc);
1073 atomic_dec(&data->disabled);
1074 ftrace_preempt_enable(resched);
1078 function_trace_call(unsigned long ip, unsigned long parent_ip)
1080 struct trace_array *tr = &global_trace;
1081 struct trace_array_cpu *data;
1082 unsigned long flags;
1087 if (unlikely(!ftrace_function_enabled))
1091 * Need to use raw, since this must be called before the
1092 * recursive protection is performed.
1094 local_irq_save(flags);
1095 cpu = raw_smp_processor_id();
1096 data = tr->data[cpu];
1097 disabled = atomic_inc_return(&data->disabled);
1099 if (likely(disabled == 1)) {
1100 pc = preempt_count();
1101 trace_function(tr, data, ip, parent_ip, flags, pc);
1104 atomic_dec(&data->disabled);
1105 local_irq_restore(flags);
1108 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
1109 int trace_graph_entry(struct ftrace_graph_ent *trace)
1111 struct trace_array *tr = &global_trace;
1112 struct trace_array_cpu *data;
1113 unsigned long flags;
1118 if (!ftrace_trace_task(current))
1121 if (!ftrace_graph_addr(trace->func))
1124 local_irq_save(flags);
1125 cpu = raw_smp_processor_id();
1126 data = tr->data[cpu];
1127 disabled = atomic_inc_return(&data->disabled);
1128 if (likely(disabled == 1)) {
1129 pc = preempt_count();
1130 __trace_graph_entry(tr, data, trace, flags, pc);
1132 /* Only do the atomic if it is not already set */
1133 if (!test_tsk_trace_graph(current))
1134 set_tsk_trace_graph(current);
1135 atomic_dec(&data->disabled);
1136 local_irq_restore(flags);
1141 void trace_graph_return(struct ftrace_graph_ret *trace)
1143 struct trace_array *tr = &global_trace;
1144 struct trace_array_cpu *data;
1145 unsigned long flags;
1150 local_irq_save(flags);
1151 cpu = raw_smp_processor_id();
1152 data = tr->data[cpu];
1153 disabled = atomic_inc_return(&data->disabled);
1154 if (likely(disabled == 1)) {
1155 pc = preempt_count();
1156 __trace_graph_return(tr, data, trace, flags, pc);
1159 clear_tsk_trace_graph(current);
1160 atomic_dec(&data->disabled);
1161 local_irq_restore(flags);
1163 #endif /* CONFIG_FUNCTION_GRAPH_TRACER */
1165 static struct ftrace_ops trace_ops __read_mostly =
1167 .func = function_trace_call,
1170 void tracing_start_function_trace(void)
1172 ftrace_function_enabled = 0;
1174 if (trace_flags & TRACE_ITER_PREEMPTONLY)
1175 trace_ops.func = function_trace_call_preempt_only;
1177 trace_ops.func = function_trace_call;
1179 register_ftrace_function(&trace_ops);
1180 ftrace_function_enabled = 1;
1183 void tracing_stop_function_trace(void)
1185 ftrace_function_enabled = 0;
1186 unregister_ftrace_function(&trace_ops);
1190 enum trace_file_type {
1191 TRACE_FILE_LAT_FMT = 1,
1192 TRACE_FILE_ANNOTATE = 2,
1195 static void trace_iterator_increment(struct trace_iterator *iter)
1197 /* Don't allow ftrace to trace into the ring buffers */
1198 ftrace_disable_cpu();
1201 if (iter->buffer_iter[iter->cpu])
1202 ring_buffer_read(iter->buffer_iter[iter->cpu], NULL);
1204 ftrace_enable_cpu();
1207 static struct trace_entry *
1208 peek_next_entry(struct trace_iterator *iter, int cpu, u64 *ts)
1210 struct ring_buffer_event *event;
1211 struct ring_buffer_iter *buf_iter = iter->buffer_iter[cpu];
1213 /* Don't allow ftrace to trace into the ring buffers */
1214 ftrace_disable_cpu();
1217 event = ring_buffer_iter_peek(buf_iter, ts);
1219 event = ring_buffer_peek(iter->tr->buffer, cpu, ts);
1221 ftrace_enable_cpu();
1223 return event ? ring_buffer_event_data(event) : NULL;
1226 static struct trace_entry *
1227 __find_next_entry(struct trace_iterator *iter, int *ent_cpu, u64 *ent_ts)
1229 struct ring_buffer *buffer = iter->tr->buffer;
1230 struct trace_entry *ent, *next = NULL;
1231 u64 next_ts = 0, ts;
1235 for_each_tracing_cpu(cpu) {
1237 if (ring_buffer_empty_cpu(buffer, cpu))
1240 ent = peek_next_entry(iter, cpu, &ts);
1243 * Pick the entry with the smallest timestamp:
1245 if (ent && (!next || ts < next_ts)) {
1253 *ent_cpu = next_cpu;
1261 /* Find the next real entry, without updating the iterator itself */
1262 static struct trace_entry *
1263 find_next_entry(struct trace_iterator *iter, int *ent_cpu, u64 *ent_ts)
1265 return __find_next_entry(iter, ent_cpu, ent_ts);
1268 /* Find the next real entry, and increment the iterator to the next entry */
1269 static void *find_next_entry_inc(struct trace_iterator *iter)
1271 iter->ent = __find_next_entry(iter, &iter->cpu, &iter->ts);
1274 trace_iterator_increment(iter);
1276 return iter->ent ? iter : NULL;
1279 static void trace_consume(struct trace_iterator *iter)
1281 /* Don't allow ftrace to trace into the ring buffers */
1282 ftrace_disable_cpu();
1283 ring_buffer_consume(iter->tr->buffer, iter->cpu, &iter->ts);
1284 ftrace_enable_cpu();
1287 static void *s_next(struct seq_file *m, void *v, loff_t *pos)
1289 struct trace_iterator *iter = m->private;
1295 /* can't go backwards */
1300 ent = find_next_entry_inc(iter);
1304 while (ent && iter->idx < i)
1305 ent = find_next_entry_inc(iter);
1312 static void *s_start(struct seq_file *m, loff_t *pos)
1314 struct trace_iterator *iter = m->private;
1319 mutex_lock(&trace_types_lock);
1321 if (!current_trace || current_trace != iter->trace) {
1322 mutex_unlock(&trace_types_lock);
1326 atomic_inc(&trace_record_cmdline_disabled);
1328 if (*pos != iter->pos) {
1333 ftrace_disable_cpu();
1335 for_each_tracing_cpu(cpu) {
1336 ring_buffer_iter_reset(iter->buffer_iter[cpu]);
1339 ftrace_enable_cpu();
1341 for (p = iter; p && l < *pos; p = s_next(m, p, &l))
1346 p = s_next(m, p, &l);
1352 static void s_stop(struct seq_file *m, void *p)
1354 atomic_dec(&trace_record_cmdline_disabled);
1355 mutex_unlock(&trace_types_lock);
1358 static void print_lat_help_header(struct seq_file *m)
1360 seq_puts(m, "# _------=> CPU# \n");
1361 seq_puts(m, "# / _-----=> irqs-off \n");
1362 seq_puts(m, "# | / _----=> need-resched \n");
1363 seq_puts(m, "# || / _---=> hardirq/softirq \n");
1364 seq_puts(m, "# ||| / _--=> preempt-depth \n");
1365 seq_puts(m, "# |||| / \n");
1366 seq_puts(m, "# ||||| delay \n");
1367 seq_puts(m, "# cmd pid ||||| time | caller \n");
1368 seq_puts(m, "# \\ / ||||| \\ | / \n");
1371 static void print_func_help_header(struct seq_file *m)
1373 seq_puts(m, "# TASK-PID CPU# TIMESTAMP FUNCTION\n");
1374 seq_puts(m, "# | | | | |\n");
1379 print_trace_header(struct seq_file *m, struct trace_iterator *iter)
1381 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1382 struct trace_array *tr = iter->tr;
1383 struct trace_array_cpu *data = tr->data[tr->cpu];
1384 struct tracer *type = current_trace;
1385 unsigned long total;
1386 unsigned long entries;
1387 const char *name = "preemption";
1392 entries = ring_buffer_entries(iter->tr->buffer);
1394 ring_buffer_overruns(iter->tr->buffer);
1396 seq_printf(m, "%s latency trace v1.1.5 on %s\n",
1398 seq_puts(m, "-----------------------------------"
1399 "---------------------------------\n");
1400 seq_printf(m, " latency: %lu us, #%lu/%lu, CPU#%d |"
1401 " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
1402 nsecs_to_usecs(data->saved_latency),
1406 #if defined(CONFIG_PREEMPT_NONE)
1408 #elif defined(CONFIG_PREEMPT_VOLUNTARY)
1410 #elif defined(CONFIG_PREEMPT)
1415 /* These are reserved for later use */
1418 seq_printf(m, " #P:%d)\n", num_online_cpus());
1422 seq_puts(m, " -----------------\n");
1423 seq_printf(m, " | task: %.16s-%d "
1424 "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
1425 data->comm, data->pid, data->uid, data->nice,
1426 data->policy, data->rt_priority);
1427 seq_puts(m, " -----------------\n");
1429 if (data->critical_start) {
1430 seq_puts(m, " => started at: ");
1431 seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags);
1432 trace_print_seq(m, &iter->seq);
1433 seq_puts(m, "\n => ended at: ");
1434 seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags);
1435 trace_print_seq(m, &iter->seq);
1443 lat_print_generic(struct trace_seq *s, struct trace_entry *entry, int cpu)
1445 int hardirq, softirq;
1448 comm = trace_find_cmdline(entry->pid);
1450 trace_seq_printf(s, "%8.8s-%-5d ", comm, entry->pid);
1451 trace_seq_printf(s, "%3d", cpu);
1452 trace_seq_printf(s, "%c%c",
1453 (entry->flags & TRACE_FLAG_IRQS_OFF) ? 'd' :
1454 (entry->flags & TRACE_FLAG_IRQS_NOSUPPORT) ? 'X' : '.',
1455 ((entry->flags & TRACE_FLAG_NEED_RESCHED) ? 'N' : '.'));
1457 hardirq = entry->flags & TRACE_FLAG_HARDIRQ;
1458 softirq = entry->flags & TRACE_FLAG_SOFTIRQ;
1459 if (hardirq && softirq) {
1460 trace_seq_putc(s, 'H');
1463 trace_seq_putc(s, 'h');
1466 trace_seq_putc(s, 's');
1468 trace_seq_putc(s, '.');
1472 if (entry->preempt_count)
1473 trace_seq_printf(s, "%x", entry->preempt_count);
1475 trace_seq_puts(s, ".");
1478 unsigned long preempt_mark_thresh = 100;
1481 lat_print_timestamp(struct trace_seq *s, u64 abs_usecs,
1482 unsigned long rel_usecs)
1484 trace_seq_printf(s, " %4lldus", abs_usecs);
1485 if (rel_usecs > preempt_mark_thresh)
1486 trace_seq_puts(s, "!: ");
1487 else if (rel_usecs > 1)
1488 trace_seq_puts(s, "+: ");
1490 trace_seq_puts(s, " : ");
1493 static void test_cpu_buff_start(struct trace_iterator *iter)
1495 struct trace_seq *s = &iter->seq;
1497 if (!(trace_flags & TRACE_ITER_ANNOTATE))
1500 if (!(iter->iter_flags & TRACE_FILE_ANNOTATE))
1503 if (cpumask_test_cpu(iter->cpu, iter->started))
1506 cpumask_set_cpu(iter->cpu, iter->started);
1507 trace_seq_printf(s, "##### CPU %u buffer started ####\n", iter->cpu);
1510 static enum print_line_t
1511 print_lat_fmt(struct trace_iterator *iter, unsigned int trace_idx, int cpu)
1513 struct trace_seq *s = &iter->seq;
1514 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1515 struct trace_entry *next_entry;
1516 struct trace_event *event;
1517 unsigned long verbose = (trace_flags & TRACE_ITER_VERBOSE);
1518 struct trace_entry *entry = iter->ent;
1519 unsigned long abs_usecs;
1520 unsigned long rel_usecs;
1525 test_cpu_buff_start(iter);
1527 next_entry = find_next_entry(iter, NULL, &next_ts);
1530 rel_usecs = ns2usecs(next_ts - iter->ts);
1531 abs_usecs = ns2usecs(iter->ts - iter->tr->time_start);
1534 comm = trace_find_cmdline(entry->pid);
1535 trace_seq_printf(s, "%16s %5d %3d %d %08x %08x [%08lx]"
1536 " %ld.%03ldms (+%ld.%03ldms): ",
1538 entry->pid, cpu, entry->flags,
1539 entry->preempt_count, trace_idx,
1542 abs_usecs % 1000, rel_usecs/1000,
1545 lat_print_generic(s, entry, cpu);
1546 lat_print_timestamp(s, abs_usecs, rel_usecs);
1549 event = ftrace_find_event(entry->type);
1550 if (event && event->latency_trace) {
1551 ret = event->latency_trace(s, entry, sym_flags);
1554 return TRACE_TYPE_HANDLED;
1557 trace_seq_printf(s, "Unknown type %d\n", entry->type);
1558 return TRACE_TYPE_HANDLED;
1561 static enum print_line_t print_trace_fmt(struct trace_iterator *iter)
1563 struct trace_seq *s = &iter->seq;
1564 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1565 struct trace_entry *entry;
1566 struct trace_event *event;
1567 unsigned long usec_rem;
1568 unsigned long long t;
1575 test_cpu_buff_start(iter);
1577 comm = trace_find_cmdline(iter->ent->pid);
1579 t = ns2usecs(iter->ts);
1580 usec_rem = do_div(t, 1000000ULL);
1581 secs = (unsigned long)t;
1583 ret = trace_seq_printf(s, "%16s-%-5d ", comm, entry->pid);
1585 return TRACE_TYPE_PARTIAL_LINE;
1586 ret = trace_seq_printf(s, "[%03d] ", iter->cpu);
1588 return TRACE_TYPE_PARTIAL_LINE;
1589 ret = trace_seq_printf(s, "%5lu.%06lu: ", secs, usec_rem);
1591 return TRACE_TYPE_PARTIAL_LINE;
1593 event = ftrace_find_event(entry->type);
1594 if (event && event->trace) {
1595 ret = event->trace(s, entry, sym_flags);
1598 return TRACE_TYPE_HANDLED;
1600 ret = trace_seq_printf(s, "Unknown type %d\n", entry->type);
1602 return TRACE_TYPE_PARTIAL_LINE;
1604 return TRACE_TYPE_HANDLED;
1607 static enum print_line_t print_raw_fmt(struct trace_iterator *iter)
1609 struct trace_seq *s = &iter->seq;
1610 struct trace_entry *entry;
1611 struct trace_event *event;
1616 ret = trace_seq_printf(s, "%d %d %llu ",
1617 entry->pid, iter->cpu, iter->ts);
1619 return TRACE_TYPE_PARTIAL_LINE;
1621 event = ftrace_find_event(entry->type);
1622 if (event && event->raw) {
1623 ret = event->raw(s, entry, 0);
1626 return TRACE_TYPE_HANDLED;
1628 ret = trace_seq_printf(s, "%d ?\n", entry->type);
1630 return TRACE_TYPE_PARTIAL_LINE;
1632 return TRACE_TYPE_HANDLED;
1635 static enum print_line_t print_hex_fmt(struct trace_iterator *iter)
1637 struct trace_seq *s = &iter->seq;
1638 unsigned char newline = '\n';
1639 struct trace_entry *entry;
1640 struct trace_event *event;
1644 SEQ_PUT_HEX_FIELD_RET(s, entry->pid);
1645 SEQ_PUT_HEX_FIELD_RET(s, iter->cpu);
1646 SEQ_PUT_HEX_FIELD_RET(s, iter->ts);
1648 event = ftrace_find_event(entry->type);
1649 if (event && event->hex)
1650 event->hex(s, entry, 0);
1652 SEQ_PUT_FIELD_RET(s, newline);
1654 return TRACE_TYPE_HANDLED;
1657 static enum print_line_t print_printk_msg_only(struct trace_iterator *iter)
1659 struct trace_seq *s = &iter->seq;
1660 struct trace_entry *entry = iter->ent;
1661 struct print_entry *field;
1664 trace_assign_type(field, entry);
1666 ret = trace_seq_printf(s, field->buf);
1668 return TRACE_TYPE_PARTIAL_LINE;
1670 return TRACE_TYPE_HANDLED;
1673 static enum print_line_t print_bin_fmt(struct trace_iterator *iter)
1675 struct trace_seq *s = &iter->seq;
1676 struct trace_entry *entry;
1677 struct trace_event *event;
1681 SEQ_PUT_FIELD_RET(s, entry->pid);
1682 SEQ_PUT_FIELD_RET(s, entry->cpu);
1683 SEQ_PUT_FIELD_RET(s, iter->ts);
1685 event = ftrace_find_event(entry->type);
1686 if (event && event->binary)
1687 event->binary(s, entry, 0);
1689 return TRACE_TYPE_HANDLED;
1692 static int trace_empty(struct trace_iterator *iter)
1696 for_each_tracing_cpu(cpu) {
1697 if (iter->buffer_iter[cpu]) {
1698 if (!ring_buffer_iter_empty(iter->buffer_iter[cpu]))
1701 if (!ring_buffer_empty_cpu(iter->tr->buffer, cpu))
1709 static enum print_line_t print_trace_line(struct trace_iterator *iter)
1711 enum print_line_t ret;
1713 if (iter->trace && iter->trace->print_line) {
1714 ret = iter->trace->print_line(iter);
1715 if (ret != TRACE_TYPE_UNHANDLED)
1719 if (iter->ent->type == TRACE_PRINT &&
1720 trace_flags & TRACE_ITER_PRINTK &&
1721 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
1722 return print_printk_msg_only(iter);
1724 if (trace_flags & TRACE_ITER_BIN)
1725 return print_bin_fmt(iter);
1727 if (trace_flags & TRACE_ITER_HEX)
1728 return print_hex_fmt(iter);
1730 if (trace_flags & TRACE_ITER_RAW)
1731 return print_raw_fmt(iter);
1733 if (iter->iter_flags & TRACE_FILE_LAT_FMT)
1734 return print_lat_fmt(iter, iter->idx, iter->cpu);
1736 return print_trace_fmt(iter);
1739 static int s_show(struct seq_file *m, void *v)
1741 struct trace_iterator *iter = v;
1743 if (iter->ent == NULL) {
1745 seq_printf(m, "# tracer: %s\n", iter->trace->name);
1748 if (iter->trace && iter->trace->print_header)
1749 iter->trace->print_header(m);
1750 else if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
1751 /* print nothing if the buffers are empty */
1752 if (trace_empty(iter))
1754 print_trace_header(m, iter);
1755 if (!(trace_flags & TRACE_ITER_VERBOSE))
1756 print_lat_help_header(m);
1758 if (!(trace_flags & TRACE_ITER_VERBOSE))
1759 print_func_help_header(m);
1762 print_trace_line(iter);
1763 trace_print_seq(m, &iter->seq);
1769 static struct seq_operations tracer_seq_ops = {
1776 static struct trace_iterator *
1777 __tracing_open(struct inode *inode, struct file *file, int *ret)
1779 struct trace_iterator *iter;
1783 if (tracing_disabled) {
1788 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
1794 mutex_lock(&trace_types_lock);
1795 if (current_trace && current_trace->print_max)
1798 iter->tr = inode->i_private;
1799 iter->trace = current_trace;
1802 /* Notify the tracer early; before we stop tracing. */
1803 if (iter->trace && iter->trace->open)
1804 iter->trace->open(iter);
1806 /* Annotate start of buffers if we had overruns */
1807 if (ring_buffer_overruns(iter->tr->buffer))
1808 iter->iter_flags |= TRACE_FILE_ANNOTATE;
1811 for_each_tracing_cpu(cpu) {
1813 iter->buffer_iter[cpu] =
1814 ring_buffer_read_start(iter->tr->buffer, cpu);
1816 if (!iter->buffer_iter[cpu])
1820 /* TODO stop tracer */
1821 *ret = seq_open(file, &tracer_seq_ops);
1825 m = file->private_data;
1828 /* stop the trace while dumping */
1831 mutex_unlock(&trace_types_lock);
1837 for_each_tracing_cpu(cpu) {
1838 if (iter->buffer_iter[cpu])
1839 ring_buffer_read_finish(iter->buffer_iter[cpu]);
1841 mutex_unlock(&trace_types_lock);
1844 return ERR_PTR(-ENOMEM);
1847 int tracing_open_generic(struct inode *inode, struct file *filp)
1849 if (tracing_disabled)
1852 filp->private_data = inode->i_private;
1856 int tracing_release(struct inode *inode, struct file *file)
1858 struct seq_file *m = (struct seq_file *)file->private_data;
1859 struct trace_iterator *iter = m->private;
1862 mutex_lock(&trace_types_lock);
1863 for_each_tracing_cpu(cpu) {
1864 if (iter->buffer_iter[cpu])
1865 ring_buffer_read_finish(iter->buffer_iter[cpu]);
1868 if (iter->trace && iter->trace->close)
1869 iter->trace->close(iter);
1871 /* reenable tracing if it was previously enabled */
1873 mutex_unlock(&trace_types_lock);
1875 seq_release(inode, file);
1880 static int tracing_open(struct inode *inode, struct file *file)
1884 __tracing_open(inode, file, &ret);
1889 static int tracing_lt_open(struct inode *inode, struct file *file)
1891 struct trace_iterator *iter;
1894 iter = __tracing_open(inode, file, &ret);
1897 iter->iter_flags |= TRACE_FILE_LAT_FMT;
1904 t_next(struct seq_file *m, void *v, loff_t *pos)
1906 struct tracer *t = m->private;
1918 static void *t_start(struct seq_file *m, loff_t *pos)
1920 struct tracer *t = m->private;
1923 mutex_lock(&trace_types_lock);
1924 for (; t && l < *pos; t = t_next(m, t, &l))
1930 static void t_stop(struct seq_file *m, void *p)
1932 mutex_unlock(&trace_types_lock);
1935 static int t_show(struct seq_file *m, void *v)
1937 struct tracer *t = v;
1942 seq_printf(m, "%s", t->name);
1951 static struct seq_operations show_traces_seq_ops = {
1958 static int show_traces_open(struct inode *inode, struct file *file)
1962 if (tracing_disabled)
1965 ret = seq_open(file, &show_traces_seq_ops);
1967 struct seq_file *m = file->private_data;
1968 m->private = trace_types;
1974 static struct file_operations tracing_fops = {
1975 .open = tracing_open,
1977 .llseek = seq_lseek,
1978 .release = tracing_release,
1981 static struct file_operations tracing_lt_fops = {
1982 .open = tracing_lt_open,
1984 .llseek = seq_lseek,
1985 .release = tracing_release,
1988 static struct file_operations show_traces_fops = {
1989 .open = show_traces_open,
1991 .release = seq_release,
1995 * Only trace on a CPU if the bitmask is set:
1997 static cpumask_var_t tracing_cpumask;
2000 * The tracer itself will not take this lock, but still we want
2001 * to provide a consistent cpumask to user-space:
2003 static DEFINE_MUTEX(tracing_cpumask_update_lock);
2006 * Temporary storage for the character representation of the
2007 * CPU bitmask (and one more byte for the newline):
2009 static char mask_str[NR_CPUS + 1];
2012 tracing_cpumask_read(struct file *filp, char __user *ubuf,
2013 size_t count, loff_t *ppos)
2017 mutex_lock(&tracing_cpumask_update_lock);
2019 len = cpumask_scnprintf(mask_str, count, tracing_cpumask);
2020 if (count - len < 2) {
2024 len += sprintf(mask_str + len, "\n");
2025 count = simple_read_from_buffer(ubuf, count, ppos, mask_str, NR_CPUS+1);
2028 mutex_unlock(&tracing_cpumask_update_lock);
2034 tracing_cpumask_write(struct file *filp, const char __user *ubuf,
2035 size_t count, loff_t *ppos)
2038 cpumask_var_t tracing_cpumask_new;
2040 if (!alloc_cpumask_var(&tracing_cpumask_new, GFP_KERNEL))
2043 mutex_lock(&tracing_cpumask_update_lock);
2044 err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
2048 local_irq_disable();
2049 __raw_spin_lock(&ftrace_max_lock);
2050 for_each_tracing_cpu(cpu) {
2052 * Increase/decrease the disabled counter if we are
2053 * about to flip a bit in the cpumask:
2055 if (cpumask_test_cpu(cpu, tracing_cpumask) &&
2056 !cpumask_test_cpu(cpu, tracing_cpumask_new)) {
2057 atomic_inc(&global_trace.data[cpu]->disabled);
2059 if (!cpumask_test_cpu(cpu, tracing_cpumask) &&
2060 cpumask_test_cpu(cpu, tracing_cpumask_new)) {
2061 atomic_dec(&global_trace.data[cpu]->disabled);
2064 __raw_spin_unlock(&ftrace_max_lock);
2067 cpumask_copy(tracing_cpumask, tracing_cpumask_new);
2069 mutex_unlock(&tracing_cpumask_update_lock);
2070 free_cpumask_var(tracing_cpumask_new);
2075 mutex_unlock(&tracing_cpumask_update_lock);
2076 free_cpumask_var(tracing_cpumask);
2081 static struct file_operations tracing_cpumask_fops = {
2082 .open = tracing_open_generic,
2083 .read = tracing_cpumask_read,
2084 .write = tracing_cpumask_write,
2088 tracing_trace_options_read(struct file *filp, char __user *ubuf,
2089 size_t cnt, loff_t *ppos)
2095 u32 tracer_flags = current_trace->flags->val;
2096 struct tracer_opt *trace_opts = current_trace->flags->opts;
2099 /* calulate max size */
2100 for (i = 0; trace_options[i]; i++) {
2101 len += strlen(trace_options[i]);
2102 len += 3; /* "no" and space */
2106 * Increase the size with names of options specific
2107 * of the current tracer.
2109 for (i = 0; trace_opts[i].name; i++) {
2110 len += strlen(trace_opts[i].name);
2111 len += 3; /* "no" and space */
2114 /* +2 for \n and \0 */
2115 buf = kmalloc(len + 2, GFP_KERNEL);
2119 for (i = 0; trace_options[i]; i++) {
2120 if (trace_flags & (1 << i))
2121 r += sprintf(buf + r, "%s ", trace_options[i]);
2123 r += sprintf(buf + r, "no%s ", trace_options[i]);
2126 for (i = 0; trace_opts[i].name; i++) {
2127 if (tracer_flags & trace_opts[i].bit)
2128 r += sprintf(buf + r, "%s ",
2129 trace_opts[i].name);
2131 r += sprintf(buf + r, "no%s ",
2132 trace_opts[i].name);
2135 r += sprintf(buf + r, "\n");
2136 WARN_ON(r >= len + 2);
2138 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2145 /* Try to assign a tracer specific option */
2146 static int set_tracer_option(struct tracer *trace, char *cmp, int neg)
2148 struct tracer_flags *trace_flags = trace->flags;
2149 struct tracer_opt *opts = NULL;
2153 for (i = 0; trace_flags->opts[i].name; i++) {
2154 opts = &trace_flags->opts[i];
2155 len = strlen(opts->name);
2157 if (strncmp(cmp, opts->name, len) == 0) {
2158 ret = trace->set_flag(trace_flags->val,
2164 if (!trace_flags->opts[i].name)
2167 /* Refused to handle */
2172 trace_flags->val &= ~opts->bit;
2174 trace_flags->val |= opts->bit;
2180 tracing_trace_options_write(struct file *filp, const char __user *ubuf,
2181 size_t cnt, loff_t *ppos)
2189 if (cnt >= sizeof(buf))
2192 if (copy_from_user(&buf, ubuf, cnt))
2197 if (strncmp(buf, "no", 2) == 0) {
2202 for (i = 0; trace_options[i]; i++) {
2203 int len = strlen(trace_options[i]);
2205 if (strncmp(cmp, trace_options[i], len) == 0) {
2207 trace_flags &= ~(1 << i);
2209 trace_flags |= (1 << i);
2214 /* If no option could be set, test the specific tracer options */
2215 if (!trace_options[i]) {
2216 ret = set_tracer_option(current_trace, cmp, neg);
2226 static struct file_operations tracing_iter_fops = {
2227 .open = tracing_open_generic,
2228 .read = tracing_trace_options_read,
2229 .write = tracing_trace_options_write,
2232 static const char readme_msg[] =
2233 "tracing mini-HOWTO:\n\n"
2235 "# mount -t debugfs nodev /debug\n\n"
2236 "# cat /debug/tracing/available_tracers\n"
2237 "wakeup preemptirqsoff preemptoff irqsoff ftrace sched_switch none\n\n"
2238 "# cat /debug/tracing/current_tracer\n"
2240 "# echo sched_switch > /debug/tracing/current_tracer\n"
2241 "# cat /debug/tracing/current_tracer\n"
2243 "# cat /debug/tracing/trace_options\n"
2244 "noprint-parent nosym-offset nosym-addr noverbose\n"
2245 "# echo print-parent > /debug/tracing/trace_options\n"
2246 "# echo 1 > /debug/tracing/tracing_enabled\n"
2247 "# cat /debug/tracing/trace > /tmp/trace.txt\n"
2248 "echo 0 > /debug/tracing/tracing_enabled\n"
2252 tracing_readme_read(struct file *filp, char __user *ubuf,
2253 size_t cnt, loff_t *ppos)
2255 return simple_read_from_buffer(ubuf, cnt, ppos,
2256 readme_msg, strlen(readme_msg));
2259 static struct file_operations tracing_readme_fops = {
2260 .open = tracing_open_generic,
2261 .read = tracing_readme_read,
2265 tracing_ctrl_read(struct file *filp, char __user *ubuf,
2266 size_t cnt, loff_t *ppos)
2271 r = sprintf(buf, "%u\n", tracer_enabled);
2272 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2276 tracing_ctrl_write(struct file *filp, const char __user *ubuf,
2277 size_t cnt, loff_t *ppos)
2279 struct trace_array *tr = filp->private_data;
2284 if (cnt >= sizeof(buf))
2287 if (copy_from_user(&buf, ubuf, cnt))
2292 ret = strict_strtoul(buf, 10, &val);
2298 mutex_lock(&trace_types_lock);
2299 if (tracer_enabled ^ val) {
2302 if (current_trace->start)
2303 current_trace->start(tr);
2308 if (current_trace->stop)
2309 current_trace->stop(tr);
2312 mutex_unlock(&trace_types_lock);
2320 tracing_set_trace_read(struct file *filp, char __user *ubuf,
2321 size_t cnt, loff_t *ppos)
2323 char buf[max_tracer_type_len+2];
2326 mutex_lock(&trace_types_lock);
2328 r = sprintf(buf, "%s\n", current_trace->name);
2330 r = sprintf(buf, "\n");
2331 mutex_unlock(&trace_types_lock);
2333 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2336 static int tracing_set_tracer(char *buf)
2338 struct trace_array *tr = &global_trace;
2342 mutex_lock(&trace_types_lock);
2343 for (t = trace_types; t; t = t->next) {
2344 if (strcmp(t->name, buf) == 0)
2351 if (t == current_trace)
2354 trace_branch_disable();
2355 if (current_trace && current_trace->reset)
2356 current_trace->reset(tr);
2365 trace_branch_enable(tr);
2367 mutex_unlock(&trace_types_lock);
2373 tracing_set_trace_write(struct file *filp, const char __user *ubuf,
2374 size_t cnt, loff_t *ppos)
2376 char buf[max_tracer_type_len+1];
2383 if (cnt > max_tracer_type_len)
2384 cnt = max_tracer_type_len;
2386 if (copy_from_user(&buf, ubuf, cnt))
2391 /* strip ending whitespace. */
2392 for (i = cnt - 1; i > 0 && isspace(buf[i]); i--)
2395 err = tracing_set_tracer(buf);
2405 tracing_max_lat_read(struct file *filp, char __user *ubuf,
2406 size_t cnt, loff_t *ppos)
2408 unsigned long *ptr = filp->private_data;
2412 r = snprintf(buf, sizeof(buf), "%ld\n",
2413 *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
2414 if (r > sizeof(buf))
2416 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2420 tracing_max_lat_write(struct file *filp, const char __user *ubuf,
2421 size_t cnt, loff_t *ppos)
2423 long *ptr = filp->private_data;
2428 if (cnt >= sizeof(buf))
2431 if (copy_from_user(&buf, ubuf, cnt))
2436 ret = strict_strtoul(buf, 10, &val);
2445 static atomic_t tracing_reader;
2447 static int tracing_open_pipe(struct inode *inode, struct file *filp)
2449 struct trace_iterator *iter;
2451 if (tracing_disabled)
2454 /* We only allow for reader of the pipe */
2455 if (atomic_inc_return(&tracing_reader) != 1) {
2456 atomic_dec(&tracing_reader);
2460 /* create a buffer to store the information to pass to userspace */
2461 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2465 if (!alloc_cpumask_var(&iter->started, GFP_KERNEL)) {
2470 mutex_lock(&trace_types_lock);
2472 /* trace pipe does not show start of buffer */
2473 cpumask_setall(iter->started);
2475 iter->tr = &global_trace;
2476 iter->trace = current_trace;
2477 filp->private_data = iter;
2479 if (iter->trace->pipe_open)
2480 iter->trace->pipe_open(iter);
2481 mutex_unlock(&trace_types_lock);
2486 static int tracing_release_pipe(struct inode *inode, struct file *file)
2488 struct trace_iterator *iter = file->private_data;
2490 free_cpumask_var(iter->started);
2492 atomic_dec(&tracing_reader);
2498 tracing_poll_pipe(struct file *filp, poll_table *poll_table)
2500 struct trace_iterator *iter = filp->private_data;
2502 if (trace_flags & TRACE_ITER_BLOCK) {
2504 * Always select as readable when in blocking mode
2506 return POLLIN | POLLRDNORM;
2508 if (!trace_empty(iter))
2509 return POLLIN | POLLRDNORM;
2510 poll_wait(filp, &trace_wait, poll_table);
2511 if (!trace_empty(iter))
2512 return POLLIN | POLLRDNORM;
2522 tracing_read_pipe(struct file *filp, char __user *ubuf,
2523 size_t cnt, loff_t *ppos)
2525 struct trace_iterator *iter = filp->private_data;
2528 /* return any leftover data */
2529 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
2533 trace_seq_reset(&iter->seq);
2535 mutex_lock(&trace_types_lock);
2536 if (iter->trace->read) {
2537 sret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
2544 while (trace_empty(iter)) {
2546 if ((filp->f_flags & O_NONBLOCK)) {
2552 * This is a make-shift waitqueue. The reason we don't use
2553 * an actual wait queue is because:
2554 * 1) we only ever have one waiter
2555 * 2) the tracing, traces all functions, we don't want
2556 * the overhead of calling wake_up and friends
2557 * (and tracing them too)
2558 * Anyway, this is really very primitive wakeup.
2560 set_current_state(TASK_INTERRUPTIBLE);
2561 iter->tr->waiter = current;
2563 mutex_unlock(&trace_types_lock);
2565 /* sleep for 100 msecs, and try again. */
2566 schedule_timeout(HZ/10);
2568 mutex_lock(&trace_types_lock);
2570 iter->tr->waiter = NULL;
2572 if (signal_pending(current)) {
2577 if (iter->trace != current_trace)
2581 * We block until we read something and tracing is disabled.
2582 * We still block if tracing is disabled, but we have never
2583 * read anything. This allows a user to cat this file, and
2584 * then enable tracing. But after we have read something,
2585 * we give an EOF when tracing is again disabled.
2587 * iter->pos will be 0 if we haven't read anything.
2589 if (!tracer_enabled && iter->pos)
2595 /* stop when tracing is finished */
2596 if (trace_empty(iter))
2599 if (cnt >= PAGE_SIZE)
2600 cnt = PAGE_SIZE - 1;
2602 /* reset all but tr, trace, and overruns */
2603 memset(&iter->seq, 0,
2604 sizeof(struct trace_iterator) -
2605 offsetof(struct trace_iterator, seq));
2608 while (find_next_entry_inc(iter) != NULL) {
2609 enum print_line_t ret;
2610 int len = iter->seq.len;
2612 ret = print_trace_line(iter);
2613 if (ret == TRACE_TYPE_PARTIAL_LINE) {
2614 /* don't print partial lines */
2615 iter->seq.len = len;
2619 trace_consume(iter);
2621 if (iter->seq.len >= cnt)
2625 /* Now copy what we have to the user */
2626 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
2627 if (iter->seq.readpos >= iter->seq.len)
2628 trace_seq_reset(&iter->seq);
2631 * If there was nothing to send to user, inspite of consuming trace
2632 * entries, go back to wait for more entries.
2638 mutex_unlock(&trace_types_lock);
2644 tracing_entries_read(struct file *filp, char __user *ubuf,
2645 size_t cnt, loff_t *ppos)
2647 struct trace_array *tr = filp->private_data;
2651 r = sprintf(buf, "%lu\n", tr->entries >> 10);
2652 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2656 tracing_entries_write(struct file *filp, const char __user *ubuf,
2657 size_t cnt, loff_t *ppos)
2663 if (cnt >= sizeof(buf))
2666 if (copy_from_user(&buf, ubuf, cnt))
2671 ret = strict_strtoul(buf, 10, &val);
2675 /* must have at least 1 entry */
2679 mutex_lock(&trace_types_lock);
2683 /* disable all cpu buffers */
2684 for_each_tracing_cpu(cpu) {
2685 if (global_trace.data[cpu])
2686 atomic_inc(&global_trace.data[cpu]->disabled);
2687 if (max_tr.data[cpu])
2688 atomic_inc(&max_tr.data[cpu]->disabled);
2691 /* value is in KB */
2694 if (val != global_trace.entries) {
2695 ret = ring_buffer_resize(global_trace.buffer, val);
2701 ret = ring_buffer_resize(max_tr.buffer, val);
2705 r = ring_buffer_resize(global_trace.buffer,
2706 global_trace.entries);
2708 /* AARGH! We are left with different
2709 * size max buffer!!!! */
2711 tracing_disabled = 1;
2716 global_trace.entries = val;
2721 /* If check pages failed, return ENOMEM */
2722 if (tracing_disabled)
2725 for_each_tracing_cpu(cpu) {
2726 if (global_trace.data[cpu])
2727 atomic_dec(&global_trace.data[cpu]->disabled);
2728 if (max_tr.data[cpu])
2729 atomic_dec(&max_tr.data[cpu]->disabled);
2733 max_tr.entries = global_trace.entries;
2734 mutex_unlock(&trace_types_lock);
2739 static int mark_printk(const char *fmt, ...)
2743 va_start(args, fmt);
2744 ret = trace_vprintk(0, -1, fmt, args);
2750 tracing_mark_write(struct file *filp, const char __user *ubuf,
2751 size_t cnt, loff_t *fpos)
2756 if (tracing_disabled)
2759 if (cnt > TRACE_BUF_SIZE)
2760 cnt = TRACE_BUF_SIZE;
2762 buf = kmalloc(cnt + 1, GFP_KERNEL);
2766 if (copy_from_user(buf, ubuf, cnt)) {
2771 /* Cut from the first nil or newline. */
2773 end = strchr(buf, '\n');
2777 cnt = mark_printk("%s\n", buf);
2784 static struct file_operations tracing_max_lat_fops = {
2785 .open = tracing_open_generic,
2786 .read = tracing_max_lat_read,
2787 .write = tracing_max_lat_write,
2790 static struct file_operations tracing_ctrl_fops = {
2791 .open = tracing_open_generic,
2792 .read = tracing_ctrl_read,
2793 .write = tracing_ctrl_write,
2796 static struct file_operations set_tracer_fops = {
2797 .open = tracing_open_generic,
2798 .read = tracing_set_trace_read,
2799 .write = tracing_set_trace_write,
2802 static struct file_operations tracing_pipe_fops = {
2803 .open = tracing_open_pipe,
2804 .poll = tracing_poll_pipe,
2805 .read = tracing_read_pipe,
2806 .release = tracing_release_pipe,
2809 static struct file_operations tracing_entries_fops = {
2810 .open = tracing_open_generic,
2811 .read = tracing_entries_read,
2812 .write = tracing_entries_write,
2815 static struct file_operations tracing_mark_fops = {
2816 .open = tracing_open_generic,
2817 .write = tracing_mark_write,
2820 #ifdef CONFIG_DYNAMIC_FTRACE
2822 int __weak ftrace_arch_read_dyn_info(char *buf, int size)
2828 tracing_read_dyn_info(struct file *filp, char __user *ubuf,
2829 size_t cnt, loff_t *ppos)
2831 static char ftrace_dyn_info_buffer[1024];
2832 static DEFINE_MUTEX(dyn_info_mutex);
2833 unsigned long *p = filp->private_data;
2834 char *buf = ftrace_dyn_info_buffer;
2835 int size = ARRAY_SIZE(ftrace_dyn_info_buffer);
2838 mutex_lock(&dyn_info_mutex);
2839 r = sprintf(buf, "%ld ", *p);
2841 r += ftrace_arch_read_dyn_info(buf+r, (size-1)-r);
2844 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2846 mutex_unlock(&dyn_info_mutex);
2851 static struct file_operations tracing_dyn_info_fops = {
2852 .open = tracing_open_generic,
2853 .read = tracing_read_dyn_info,
2857 static struct dentry *d_tracer;
2859 struct dentry *tracing_init_dentry(void)
2866 d_tracer = debugfs_create_dir("tracing", NULL);
2868 if (!d_tracer && !once) {
2870 pr_warning("Could not create debugfs directory 'tracing'\n");
2877 #ifdef CONFIG_FTRACE_SELFTEST
2878 /* Let selftest have access to static functions in this file */
2879 #include "trace_selftest.c"
2882 static __init int tracer_init_debugfs(void)
2884 struct dentry *d_tracer;
2885 struct dentry *entry;
2887 d_tracer = tracing_init_dentry();
2889 entry = debugfs_create_file("tracing_enabled", 0644, d_tracer,
2890 &global_trace, &tracing_ctrl_fops);
2892 pr_warning("Could not create debugfs 'tracing_enabled' entry\n");
2894 entry = debugfs_create_file("trace_options", 0644, d_tracer,
2895 NULL, &tracing_iter_fops);
2897 pr_warning("Could not create debugfs 'trace_options' entry\n");
2899 entry = debugfs_create_file("tracing_cpumask", 0644, d_tracer,
2900 NULL, &tracing_cpumask_fops);
2902 pr_warning("Could not create debugfs 'tracing_cpumask' entry\n");
2904 entry = debugfs_create_file("latency_trace", 0444, d_tracer,
2905 &global_trace, &tracing_lt_fops);
2907 pr_warning("Could not create debugfs 'latency_trace' entry\n");
2909 entry = debugfs_create_file("trace", 0444, d_tracer,
2910 &global_trace, &tracing_fops);
2912 pr_warning("Could not create debugfs 'trace' entry\n");
2914 entry = debugfs_create_file("available_tracers", 0444, d_tracer,
2915 &global_trace, &show_traces_fops);
2917 pr_warning("Could not create debugfs 'available_tracers' entry\n");
2919 entry = debugfs_create_file("current_tracer", 0444, d_tracer,
2920 &global_trace, &set_tracer_fops);
2922 pr_warning("Could not create debugfs 'current_tracer' entry\n");
2924 entry = debugfs_create_file("tracing_max_latency", 0644, d_tracer,
2925 &tracing_max_latency,
2926 &tracing_max_lat_fops);
2928 pr_warning("Could not create debugfs "
2929 "'tracing_max_latency' entry\n");
2931 entry = debugfs_create_file("tracing_thresh", 0644, d_tracer,
2932 &tracing_thresh, &tracing_max_lat_fops);
2934 pr_warning("Could not create debugfs "
2935 "'tracing_thresh' entry\n");
2936 entry = debugfs_create_file("README", 0644, d_tracer,
2937 NULL, &tracing_readme_fops);
2939 pr_warning("Could not create debugfs 'README' entry\n");
2941 entry = debugfs_create_file("trace_pipe", 0644, d_tracer,
2942 NULL, &tracing_pipe_fops);
2944 pr_warning("Could not create debugfs "
2945 "'trace_pipe' entry\n");
2947 entry = debugfs_create_file("buffer_size_kb", 0644, d_tracer,
2948 &global_trace, &tracing_entries_fops);
2950 pr_warning("Could not create debugfs "
2951 "'buffer_size_kb' entry\n");
2953 entry = debugfs_create_file("trace_marker", 0220, d_tracer,
2954 NULL, &tracing_mark_fops);
2956 pr_warning("Could not create debugfs "
2957 "'trace_marker' entry\n");
2959 #ifdef CONFIG_DYNAMIC_FTRACE
2960 entry = debugfs_create_file("dyn_ftrace_total_info", 0444, d_tracer,
2961 &ftrace_update_tot_cnt,
2962 &tracing_dyn_info_fops);
2964 pr_warning("Could not create debugfs "
2965 "'dyn_ftrace_total_info' entry\n");
2967 #ifdef CONFIG_SYSPROF_TRACER
2968 init_tracer_sysprof_debugfs(d_tracer);
2973 int trace_vprintk(unsigned long ip, int depth, const char *fmt, va_list args)
2975 static DEFINE_SPINLOCK(trace_buf_lock);
2976 static char trace_buf[TRACE_BUF_SIZE];
2978 struct ring_buffer_event *event;
2979 struct trace_array *tr = &global_trace;
2980 struct trace_array_cpu *data;
2981 int cpu, len = 0, size, pc;
2982 struct print_entry *entry;
2983 unsigned long irq_flags;
2985 if (tracing_disabled || tracing_selftest_running)
2988 pc = preempt_count();
2989 preempt_disable_notrace();
2990 cpu = raw_smp_processor_id();
2991 data = tr->data[cpu];
2993 if (unlikely(atomic_read(&data->disabled)))
2996 pause_graph_tracing();
2997 spin_lock_irqsave(&trace_buf_lock, irq_flags);
2998 len = vsnprintf(trace_buf, TRACE_BUF_SIZE, fmt, args);
3000 len = min(len, TRACE_BUF_SIZE-1);
3003 size = sizeof(*entry) + len + 1;
3004 event = ring_buffer_lock_reserve(tr->buffer, size, &irq_flags);
3007 entry = ring_buffer_event_data(event);
3008 tracing_generic_entry_update(&entry->ent, irq_flags, pc);
3009 entry->ent.type = TRACE_PRINT;
3011 entry->depth = depth;
3013 memcpy(&entry->buf, trace_buf, len);
3014 entry->buf[len] = 0;
3015 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
3018 spin_unlock_irqrestore(&trace_buf_lock, irq_flags);
3019 unpause_graph_tracing();
3021 preempt_enable_notrace();
3025 EXPORT_SYMBOL_GPL(trace_vprintk);
3027 int __ftrace_printk(unsigned long ip, const char *fmt, ...)
3032 if (!(trace_flags & TRACE_ITER_PRINTK))
3036 ret = trace_vprintk(ip, task_curr_ret_stack(current), fmt, ap);
3040 EXPORT_SYMBOL_GPL(__ftrace_printk);
3042 static int trace_panic_handler(struct notifier_block *this,
3043 unsigned long event, void *unused)
3045 if (ftrace_dump_on_oops)
3050 static struct notifier_block trace_panic_notifier = {
3051 .notifier_call = trace_panic_handler,
3053 .priority = 150 /* priority: INT_MAX >= x >= 0 */
3056 static int trace_die_handler(struct notifier_block *self,
3062 if (ftrace_dump_on_oops)
3071 static struct notifier_block trace_die_notifier = {
3072 .notifier_call = trace_die_handler,
3077 * printk is set to max of 1024, we really don't need it that big.
3078 * Nothing should be printing 1000 characters anyway.
3080 #define TRACE_MAX_PRINT 1000
3083 * Define here KERN_TRACE so that we have one place to modify
3084 * it if we decide to change what log level the ftrace dump
3087 #define KERN_TRACE KERN_EMERG
3090 trace_printk_seq(struct trace_seq *s)
3092 /* Probably should print a warning here. */
3096 /* should be zero ended, but we are paranoid. */
3097 s->buffer[s->len] = 0;
3099 printk(KERN_TRACE "%s", s->buffer);
3104 void ftrace_dump(void)
3106 static DEFINE_SPINLOCK(ftrace_dump_lock);
3107 /* use static because iter can be a bit big for the stack */
3108 static struct trace_iterator iter;
3109 static int dump_ran;
3110 unsigned long flags;
3114 spin_lock_irqsave(&ftrace_dump_lock, flags);
3120 /* No turning back! */
3124 for_each_tracing_cpu(cpu) {
3125 atomic_inc(&global_trace.data[cpu]->disabled);
3128 /* don't look at user memory in panic mode */
3129 trace_flags &= ~TRACE_ITER_SYM_USEROBJ;
3131 printk(KERN_TRACE "Dumping ftrace buffer:\n");
3133 iter.tr = &global_trace;
3134 iter.trace = current_trace;
3137 * We need to stop all tracing on all CPUS to read the
3138 * the next buffer. This is a bit expensive, but is
3139 * not done often. We fill all what we can read,
3140 * and then release the locks again.
3143 while (!trace_empty(&iter)) {
3146 printk(KERN_TRACE "---------------------------------\n");
3150 /* reset all but tr, trace, and overruns */
3151 memset(&iter.seq, 0,
3152 sizeof(struct trace_iterator) -
3153 offsetof(struct trace_iterator, seq));
3154 iter.iter_flags |= TRACE_FILE_LAT_FMT;
3157 if (find_next_entry_inc(&iter) != NULL) {
3158 print_trace_line(&iter);
3159 trace_consume(&iter);
3162 trace_printk_seq(&iter.seq);
3166 printk(KERN_TRACE " (ftrace buffer empty)\n");
3168 printk(KERN_TRACE "---------------------------------\n");
3171 spin_unlock_irqrestore(&ftrace_dump_lock, flags);
3174 __init static int tracer_alloc_buffers(void)
3176 struct trace_array_cpu *data;
3180 if (!alloc_cpumask_var(&tracing_buffer_mask, GFP_KERNEL))
3183 if (!alloc_cpumask_var(&tracing_cpumask, GFP_KERNEL))
3184 goto out_free_buffer_mask;
3186 cpumask_copy(tracing_buffer_mask, cpu_possible_mask);
3187 cpumask_copy(tracing_cpumask, cpu_all_mask);
3189 /* TODO: make the number of buffers hot pluggable with CPUS */
3190 global_trace.buffer = ring_buffer_alloc(trace_buf_size,
3191 TRACE_BUFFER_FLAGS);
3192 if (!global_trace.buffer) {
3193 printk(KERN_ERR "tracer: failed to allocate ring buffer!\n");
3195 goto out_free_cpumask;
3197 global_trace.entries = ring_buffer_size(global_trace.buffer);
3200 #ifdef CONFIG_TRACER_MAX_TRACE
3201 max_tr.buffer = ring_buffer_alloc(trace_buf_size,
3202 TRACE_BUFFER_FLAGS);
3203 if (!max_tr.buffer) {
3204 printk(KERN_ERR "tracer: failed to allocate max ring buffer!\n");
3206 ring_buffer_free(global_trace.buffer);
3207 goto out_free_cpumask;
3209 max_tr.entries = ring_buffer_size(max_tr.buffer);
3210 WARN_ON(max_tr.entries != global_trace.entries);
3213 /* Allocate the first page for all buffers */
3214 for_each_tracing_cpu(i) {
3215 data = global_trace.data[i] = &per_cpu(global_trace_cpu, i);
3216 max_tr.data[i] = &per_cpu(max_data, i);
3219 trace_init_cmdlines();
3221 register_tracer(&nop_trace);
3222 #ifdef CONFIG_BOOT_TRACER
3223 register_tracer(&boot_tracer);
3224 current_trace = &boot_tracer;
3225 current_trace->init(&global_trace);
3227 current_trace = &nop_trace;
3229 /* All seems OK, enable tracing */
3230 tracing_disabled = 0;
3232 atomic_notifier_chain_register(&panic_notifier_list,
3233 &trace_panic_notifier);
3235 register_die_notifier(&trace_die_notifier);
3239 free_cpumask_var(tracing_cpumask);
3240 out_free_buffer_mask:
3241 free_cpumask_var(tracing_buffer_mask);
3245 early_initcall(tracer_alloc_buffers);
3246 fs_initcall(tracer_init_debugfs);