tracing: Introduce trace_create_cpu_file() and tracing_get_cpu()
[linux-2.6.git] / kernel / trace / trace.c
blobcfff63c2148af0a65294f5593f970bd1e0c6eeb8
1 /*
2 * ring buffer based function tracer
4 * Copyright (C) 2007-2012 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 Nadia Yvette Chambers
14 #include <linux/ring_buffer.h>
15 #include <generated/utsrelease.h>
16 #include <linux/stacktrace.h>
17 #include <linux/writeback.h>
18 #include <linux/kallsyms.h>
19 #include <linux/seq_file.h>
20 #include <linux/notifier.h>
21 #include <linux/irqflags.h>
22 #include <linux/debugfs.h>
23 #include <linux/pagemap.h>
24 #include <linux/hardirq.h>
25 #include <linux/linkage.h>
26 #include <linux/uaccess.h>
27 #include <linux/kprobes.h>
28 #include <linux/ftrace.h>
29 #include <linux/module.h>
30 #include <linux/percpu.h>
31 #include <linux/splice.h>
32 #include <linux/kdebug.h>
33 #include <linux/string.h>
34 #include <linux/rwsem.h>
35 #include <linux/slab.h>
36 #include <linux/ctype.h>
37 #include <linux/init.h>
38 #include <linux/poll.h>
39 #include <linux/nmi.h>
40 #include <linux/fs.h>
41 #include <linux/sched/rt.h>
43 #include "trace.h"
44 #include "trace_output.h"
47 * On boot up, the ring buffer is set to the minimum size, so that
48 * we do not waste memory on systems that are not using tracing.
50 bool ring_buffer_expanded;
53 * We need to change this state when a selftest is running.
54 * A selftest will lurk into the ring-buffer to count the
55 * entries inserted during the selftest although some concurrent
56 * insertions into the ring-buffer such as trace_printk could occurred
57 * at the same time, giving false positive or negative results.
59 static bool __read_mostly tracing_selftest_running;
62 * If a tracer is running, we do not want to run SELFTEST.
64 bool __read_mostly tracing_selftest_disabled;
66 /* For tracers that don't implement custom flags */
67 static struct tracer_opt dummy_tracer_opt[] = {
68 { }
71 static struct tracer_flags dummy_tracer_flags = {
72 .val = 0,
73 .opts = dummy_tracer_opt
76 static int dummy_set_flag(u32 old_flags, u32 bit, int set)
78 return 0;
82 * To prevent the comm cache from being overwritten when no
83 * tracing is active, only save the comm when a trace event
84 * occurred.
86 static DEFINE_PER_CPU(bool, trace_cmdline_save);
89 * Kill all tracing for good (never come back).
90 * It is initialized to 1 but will turn to zero if the initialization
91 * of the tracer is successful. But that is the only place that sets
92 * this back to zero.
94 static int tracing_disabled = 1;
96 DEFINE_PER_CPU(int, ftrace_cpu_disabled);
98 cpumask_var_t __read_mostly tracing_buffer_mask;
101 * ftrace_dump_on_oops - variable to dump ftrace buffer on oops
103 * If there is an oops (or kernel panic) and the ftrace_dump_on_oops
104 * is set, then ftrace_dump is called. This will output the contents
105 * of the ftrace buffers to the console. This is very useful for
106 * capturing traces that lead to crashes and outputing it to a
107 * serial console.
109 * It is default off, but you can enable it with either specifying
110 * "ftrace_dump_on_oops" in the kernel command line, or setting
111 * /proc/sys/kernel/ftrace_dump_on_oops
112 * Set 1 if you want to dump buffers of all CPUs
113 * Set 2 if you want to dump the buffer of the CPU that triggered oops
116 enum ftrace_dump_mode ftrace_dump_on_oops;
118 /* When set, tracing will stop when a WARN*() is hit */
119 int __disable_trace_on_warning;
121 static int tracing_set_tracer(const char *buf);
123 #define MAX_TRACER_SIZE 100
124 static char bootup_tracer_buf[MAX_TRACER_SIZE] __initdata;
125 static char *default_bootup_tracer;
127 static bool allocate_snapshot;
129 static int __init set_cmdline_ftrace(char *str)
131 strlcpy(bootup_tracer_buf, str, MAX_TRACER_SIZE);
132 default_bootup_tracer = bootup_tracer_buf;
133 /* We are using ftrace early, expand it */
134 ring_buffer_expanded = true;
135 return 1;
137 __setup("ftrace=", set_cmdline_ftrace);
139 static int __init set_ftrace_dump_on_oops(char *str)
141 if (*str++ != '=' || !*str) {
142 ftrace_dump_on_oops = DUMP_ALL;
143 return 1;
146 if (!strcmp("orig_cpu", str)) {
147 ftrace_dump_on_oops = DUMP_ORIG;
148 return 1;
151 return 0;
153 __setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops);
155 static int __init stop_trace_on_warning(char *str)
157 __disable_trace_on_warning = 1;
158 return 1;
160 __setup("traceoff_on_warning=", stop_trace_on_warning);
162 static int __init boot_alloc_snapshot(char *str)
164 allocate_snapshot = true;
165 /* We also need the main ring buffer expanded */
166 ring_buffer_expanded = true;
167 return 1;
169 __setup("alloc_snapshot", boot_alloc_snapshot);
172 static char trace_boot_options_buf[MAX_TRACER_SIZE] __initdata;
173 static char *trace_boot_options __initdata;
175 static int __init set_trace_boot_options(char *str)
177 strlcpy(trace_boot_options_buf, str, MAX_TRACER_SIZE);
178 trace_boot_options = trace_boot_options_buf;
179 return 0;
181 __setup("trace_options=", set_trace_boot_options);
184 unsigned long long ns2usecs(cycle_t nsec)
186 nsec += 500;
187 do_div(nsec, 1000);
188 return nsec;
192 * The global_trace is the descriptor that holds the tracing
193 * buffers for the live tracing. For each CPU, it contains
194 * a link list of pages that will store trace entries. The
195 * page descriptor of the pages in the memory is used to hold
196 * the link list by linking the lru item in the page descriptor
197 * to each of the pages in the buffer per CPU.
199 * For each active CPU there is a data field that holds the
200 * pages for the buffer for that CPU. Each CPU has the same number
201 * of pages allocated for its buffer.
203 static struct trace_array global_trace;
205 LIST_HEAD(ftrace_trace_arrays);
207 int trace_array_get(struct trace_array *this_tr)
209 struct trace_array *tr;
210 int ret = -ENODEV;
212 mutex_lock(&trace_types_lock);
213 list_for_each_entry(tr, &ftrace_trace_arrays, list) {
214 if (tr == this_tr) {
215 tr->ref++;
216 ret = 0;
217 break;
220 mutex_unlock(&trace_types_lock);
222 return ret;
225 static void __trace_array_put(struct trace_array *this_tr)
227 WARN_ON(!this_tr->ref);
228 this_tr->ref--;
231 void trace_array_put(struct trace_array *this_tr)
233 mutex_lock(&trace_types_lock);
234 __trace_array_put(this_tr);
235 mutex_unlock(&trace_types_lock);
238 int filter_current_check_discard(struct ring_buffer *buffer,
239 struct ftrace_event_call *call, void *rec,
240 struct ring_buffer_event *event)
242 return filter_check_discard(call, rec, buffer, event);
244 EXPORT_SYMBOL_GPL(filter_current_check_discard);
246 cycle_t ftrace_now(int cpu)
248 u64 ts;
250 /* Early boot up does not have a buffer yet */
251 if (!global_trace.trace_buffer.buffer)
252 return trace_clock_local();
254 ts = ring_buffer_time_stamp(global_trace.trace_buffer.buffer, cpu);
255 ring_buffer_normalize_time_stamp(global_trace.trace_buffer.buffer, cpu, &ts);
257 return ts;
261 * tracing_is_enabled - Show if global_trace has been disabled
263 * Shows if the global trace has been enabled or not. It uses the
264 * mirror flag "buffer_disabled" to be used in fast paths such as for
265 * the irqsoff tracer. But it may be inaccurate due to races. If you
266 * need to know the accurate state, use tracing_is_on() which is a little
267 * slower, but accurate.
269 int tracing_is_enabled(void)
272 * For quick access (irqsoff uses this in fast path), just
273 * return the mirror variable of the state of the ring buffer.
274 * It's a little racy, but we don't really care.
276 smp_rmb();
277 return !global_trace.buffer_disabled;
281 * trace_buf_size is the size in bytes that is allocated
282 * for a buffer. Note, the number of bytes is always rounded
283 * to page size.
285 * This number is purposely set to a low number of 16384.
286 * If the dump on oops happens, it will be much appreciated
287 * to not have to wait for all that output. Anyway this can be
288 * boot time and run time configurable.
290 #define TRACE_BUF_SIZE_DEFAULT 1441792UL /* 16384 * 88 (sizeof(entry)) */
292 static unsigned long trace_buf_size = TRACE_BUF_SIZE_DEFAULT;
294 /* trace_types holds a link list of available tracers. */
295 static struct tracer *trace_types __read_mostly;
298 * trace_types_lock is used to protect the trace_types list.
300 DEFINE_MUTEX(trace_types_lock);
303 * serialize the access of the ring buffer
305 * ring buffer serializes readers, but it is low level protection.
306 * The validity of the events (which returns by ring_buffer_peek() ..etc)
307 * are not protected by ring buffer.
309 * The content of events may become garbage if we allow other process consumes
310 * these events concurrently:
311 * A) the page of the consumed events may become a normal page
312 * (not reader page) in ring buffer, and this page will be rewrited
313 * by events producer.
314 * B) The page of the consumed events may become a page for splice_read,
315 * and this page will be returned to system.
317 * These primitives allow multi process access to different cpu ring buffer
318 * concurrently.
320 * These primitives don't distinguish read-only and read-consume access.
321 * Multi read-only access are also serialized.
324 #ifdef CONFIG_SMP
325 static DECLARE_RWSEM(all_cpu_access_lock);
326 static DEFINE_PER_CPU(struct mutex, cpu_access_lock);
328 static inline void trace_access_lock(int cpu)
330 if (cpu == RING_BUFFER_ALL_CPUS) {
331 /* gain it for accessing the whole ring buffer. */
332 down_write(&all_cpu_access_lock);
333 } else {
334 /* gain it for accessing a cpu ring buffer. */
336 /* Firstly block other trace_access_lock(RING_BUFFER_ALL_CPUS). */
337 down_read(&all_cpu_access_lock);
339 /* Secondly block other access to this @cpu ring buffer. */
340 mutex_lock(&per_cpu(cpu_access_lock, cpu));
344 static inline void trace_access_unlock(int cpu)
346 if (cpu == RING_BUFFER_ALL_CPUS) {
347 up_write(&all_cpu_access_lock);
348 } else {
349 mutex_unlock(&per_cpu(cpu_access_lock, cpu));
350 up_read(&all_cpu_access_lock);
354 static inline void trace_access_lock_init(void)
356 int cpu;
358 for_each_possible_cpu(cpu)
359 mutex_init(&per_cpu(cpu_access_lock, cpu));
362 #else
364 static DEFINE_MUTEX(access_lock);
366 static inline void trace_access_lock(int cpu)
368 (void)cpu;
369 mutex_lock(&access_lock);
372 static inline void trace_access_unlock(int cpu)
374 (void)cpu;
375 mutex_unlock(&access_lock);
378 static inline void trace_access_lock_init(void)
382 #endif
384 /* trace_flags holds trace_options default values */
385 unsigned long trace_flags = TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK |
386 TRACE_ITER_ANNOTATE | TRACE_ITER_CONTEXT_INFO | TRACE_ITER_SLEEP_TIME |
387 TRACE_ITER_GRAPH_TIME | TRACE_ITER_RECORD_CMD | TRACE_ITER_OVERWRITE |
388 TRACE_ITER_IRQ_INFO | TRACE_ITER_MARKERS | TRACE_ITER_FUNCTION;
390 static void tracer_tracing_on(struct trace_array *tr)
392 if (tr->trace_buffer.buffer)
393 ring_buffer_record_on(tr->trace_buffer.buffer);
395 * This flag is looked at when buffers haven't been allocated
396 * yet, or by some tracers (like irqsoff), that just want to
397 * know if the ring buffer has been disabled, but it can handle
398 * races of where it gets disabled but we still do a record.
399 * As the check is in the fast path of the tracers, it is more
400 * important to be fast than accurate.
402 tr->buffer_disabled = 0;
403 /* Make the flag seen by readers */
404 smp_wmb();
408 * tracing_on - enable tracing buffers
410 * This function enables tracing buffers that may have been
411 * disabled with tracing_off.
413 void tracing_on(void)
415 tracer_tracing_on(&global_trace);
417 EXPORT_SYMBOL_GPL(tracing_on);
420 * __trace_puts - write a constant string into the trace buffer.
421 * @ip: The address of the caller
422 * @str: The constant string to write
423 * @size: The size of the string.
425 int __trace_puts(unsigned long ip, const char *str, int size)
427 struct ring_buffer_event *event;
428 struct ring_buffer *buffer;
429 struct print_entry *entry;
430 unsigned long irq_flags;
431 int alloc;
433 alloc = sizeof(*entry) + size + 2; /* possible \n added */
435 local_save_flags(irq_flags);
436 buffer = global_trace.trace_buffer.buffer;
437 event = trace_buffer_lock_reserve(buffer, TRACE_PRINT, alloc,
438 irq_flags, preempt_count());
439 if (!event)
440 return 0;
442 entry = ring_buffer_event_data(event);
443 entry->ip = ip;
445 memcpy(&entry->buf, str, size);
447 /* Add a newline if necessary */
448 if (entry->buf[size - 1] != '\n') {
449 entry->buf[size] = '\n';
450 entry->buf[size + 1] = '\0';
451 } else
452 entry->buf[size] = '\0';
454 __buffer_unlock_commit(buffer, event);
456 return size;
458 EXPORT_SYMBOL_GPL(__trace_puts);
461 * __trace_bputs - write the pointer to a constant string into trace buffer
462 * @ip: The address of the caller
463 * @str: The constant string to write to the buffer to
465 int __trace_bputs(unsigned long ip, const char *str)
467 struct ring_buffer_event *event;
468 struct ring_buffer *buffer;
469 struct bputs_entry *entry;
470 unsigned long irq_flags;
471 int size = sizeof(struct bputs_entry);
473 local_save_flags(irq_flags);
474 buffer = global_trace.trace_buffer.buffer;
475 event = trace_buffer_lock_reserve(buffer, TRACE_BPUTS, size,
476 irq_flags, preempt_count());
477 if (!event)
478 return 0;
480 entry = ring_buffer_event_data(event);
481 entry->ip = ip;
482 entry->str = str;
484 __buffer_unlock_commit(buffer, event);
486 return 1;
488 EXPORT_SYMBOL_GPL(__trace_bputs);
490 #ifdef CONFIG_TRACER_SNAPSHOT
492 * trace_snapshot - take a snapshot of the current buffer.
494 * This causes a swap between the snapshot buffer and the current live
495 * tracing buffer. You can use this to take snapshots of the live
496 * trace when some condition is triggered, but continue to trace.
498 * Note, make sure to allocate the snapshot with either
499 * a tracing_snapshot_alloc(), or by doing it manually
500 * with: echo 1 > /sys/kernel/debug/tracing/snapshot
502 * If the snapshot buffer is not allocated, it will stop tracing.
503 * Basically making a permanent snapshot.
505 void tracing_snapshot(void)
507 struct trace_array *tr = &global_trace;
508 struct tracer *tracer = tr->current_trace;
509 unsigned long flags;
511 if (in_nmi()) {
512 internal_trace_puts("*** SNAPSHOT CALLED FROM NMI CONTEXT ***\n");
513 internal_trace_puts("*** snapshot is being ignored ***\n");
514 return;
517 if (!tr->allocated_snapshot) {
518 internal_trace_puts("*** SNAPSHOT NOT ALLOCATED ***\n");
519 internal_trace_puts("*** stopping trace here! ***\n");
520 tracing_off();
521 return;
524 /* Note, snapshot can not be used when the tracer uses it */
525 if (tracer->use_max_tr) {
526 internal_trace_puts("*** LATENCY TRACER ACTIVE ***\n");
527 internal_trace_puts("*** Can not use snapshot (sorry) ***\n");
528 return;
531 local_irq_save(flags);
532 update_max_tr(tr, current, smp_processor_id());
533 local_irq_restore(flags);
535 EXPORT_SYMBOL_GPL(tracing_snapshot);
537 static int resize_buffer_duplicate_size(struct trace_buffer *trace_buf,
538 struct trace_buffer *size_buf, int cpu_id);
539 static void set_buffer_entries(struct trace_buffer *buf, unsigned long val);
541 static int alloc_snapshot(struct trace_array *tr)
543 int ret;
545 if (!tr->allocated_snapshot) {
547 /* allocate spare buffer */
548 ret = resize_buffer_duplicate_size(&tr->max_buffer,
549 &tr->trace_buffer, RING_BUFFER_ALL_CPUS);
550 if (ret < 0)
551 return ret;
553 tr->allocated_snapshot = true;
556 return 0;
559 void free_snapshot(struct trace_array *tr)
562 * We don't free the ring buffer. instead, resize it because
563 * The max_tr ring buffer has some state (e.g. ring->clock) and
564 * we want preserve it.
566 ring_buffer_resize(tr->max_buffer.buffer, 1, RING_BUFFER_ALL_CPUS);
567 set_buffer_entries(&tr->max_buffer, 1);
568 tracing_reset_online_cpus(&tr->max_buffer);
569 tr->allocated_snapshot = false;
573 * trace_snapshot_alloc - allocate and take a snapshot of the current buffer.
575 * This is similar to trace_snapshot(), but it will allocate the
576 * snapshot buffer if it isn't already allocated. Use this only
577 * where it is safe to sleep, as the allocation may sleep.
579 * This causes a swap between the snapshot buffer and the current live
580 * tracing buffer. You can use this to take snapshots of the live
581 * trace when some condition is triggered, but continue to trace.
583 void tracing_snapshot_alloc(void)
585 struct trace_array *tr = &global_trace;
586 int ret;
588 ret = alloc_snapshot(tr);
589 if (WARN_ON(ret < 0))
590 return;
592 tracing_snapshot();
594 EXPORT_SYMBOL_GPL(tracing_snapshot_alloc);
595 #else
596 void tracing_snapshot(void)
598 WARN_ONCE(1, "Snapshot feature not enabled, but internal snapshot used");
600 EXPORT_SYMBOL_GPL(tracing_snapshot);
601 void tracing_snapshot_alloc(void)
603 /* Give warning */
604 tracing_snapshot();
606 EXPORT_SYMBOL_GPL(tracing_snapshot_alloc);
607 #endif /* CONFIG_TRACER_SNAPSHOT */
609 static void tracer_tracing_off(struct trace_array *tr)
611 if (tr->trace_buffer.buffer)
612 ring_buffer_record_off(tr->trace_buffer.buffer);
614 * This flag is looked at when buffers haven't been allocated
615 * yet, or by some tracers (like irqsoff), that just want to
616 * know if the ring buffer has been disabled, but it can handle
617 * races of where it gets disabled but we still do a record.
618 * As the check is in the fast path of the tracers, it is more
619 * important to be fast than accurate.
621 tr->buffer_disabled = 1;
622 /* Make the flag seen by readers */
623 smp_wmb();
627 * tracing_off - turn off tracing buffers
629 * This function stops the tracing buffers from recording data.
630 * It does not disable any overhead the tracers themselves may
631 * be causing. This function simply causes all recording to
632 * the ring buffers to fail.
634 void tracing_off(void)
636 tracer_tracing_off(&global_trace);
638 EXPORT_SYMBOL_GPL(tracing_off);
640 void disable_trace_on_warning(void)
642 if (__disable_trace_on_warning)
643 tracing_off();
647 * tracer_tracing_is_on - show real state of ring buffer enabled
648 * @tr : the trace array to know if ring buffer is enabled
650 * Shows real state of the ring buffer if it is enabled or not.
652 static int tracer_tracing_is_on(struct trace_array *tr)
654 if (tr->trace_buffer.buffer)
655 return ring_buffer_record_is_on(tr->trace_buffer.buffer);
656 return !tr->buffer_disabled;
660 * tracing_is_on - show state of ring buffers enabled
662 int tracing_is_on(void)
664 return tracer_tracing_is_on(&global_trace);
666 EXPORT_SYMBOL_GPL(tracing_is_on);
668 static int __init set_buf_size(char *str)
670 unsigned long buf_size;
672 if (!str)
673 return 0;
674 buf_size = memparse(str, &str);
675 /* nr_entries can not be zero */
676 if (buf_size == 0)
677 return 0;
678 trace_buf_size = buf_size;
679 return 1;
681 __setup("trace_buf_size=", set_buf_size);
683 static int __init set_tracing_thresh(char *str)
685 unsigned long threshold;
686 int ret;
688 if (!str)
689 return 0;
690 ret = kstrtoul(str, 0, &threshold);
691 if (ret < 0)
692 return 0;
693 tracing_thresh = threshold * 1000;
694 return 1;
696 __setup("tracing_thresh=", set_tracing_thresh);
698 unsigned long nsecs_to_usecs(unsigned long nsecs)
700 return nsecs / 1000;
703 /* These must match the bit postions in trace_iterator_flags */
704 static const char *trace_options[] = {
705 "print-parent",
706 "sym-offset",
707 "sym-addr",
708 "verbose",
709 "raw",
710 "hex",
711 "bin",
712 "block",
713 "stacktrace",
714 "trace_printk",
715 "ftrace_preempt",
716 "branch",
717 "annotate",
718 "userstacktrace",
719 "sym-userobj",
720 "printk-msg-only",
721 "context-info",
722 "latency-format",
723 "sleep-time",
724 "graph-time",
725 "record-cmd",
726 "overwrite",
727 "disable_on_free",
728 "irq-info",
729 "markers",
730 "function-trace",
731 NULL
734 static struct {
735 u64 (*func)(void);
736 const char *name;
737 int in_ns; /* is this clock in nanoseconds? */
738 } trace_clocks[] = {
739 { trace_clock_local, "local", 1 },
740 { trace_clock_global, "global", 1 },
741 { trace_clock_counter, "counter", 0 },
742 { trace_clock_jiffies, "uptime", 1 },
743 { trace_clock, "perf", 1 },
744 ARCH_TRACE_CLOCKS
748 * trace_parser_get_init - gets the buffer for trace parser
750 int trace_parser_get_init(struct trace_parser *parser, int size)
752 memset(parser, 0, sizeof(*parser));
754 parser->buffer = kmalloc(size, GFP_KERNEL);
755 if (!parser->buffer)
756 return 1;
758 parser->size = size;
759 return 0;
763 * trace_parser_put - frees the buffer for trace parser
765 void trace_parser_put(struct trace_parser *parser)
767 kfree(parser->buffer);
771 * trace_get_user - reads the user input string separated by space
772 * (matched by isspace(ch))
774 * For each string found the 'struct trace_parser' is updated,
775 * and the function returns.
777 * Returns number of bytes read.
779 * See kernel/trace/trace.h for 'struct trace_parser' details.
781 int trace_get_user(struct trace_parser *parser, const char __user *ubuf,
782 size_t cnt, loff_t *ppos)
784 char ch;
785 size_t read = 0;
786 ssize_t ret;
788 if (!*ppos)
789 trace_parser_clear(parser);
791 ret = get_user(ch, ubuf++);
792 if (ret)
793 goto out;
795 read++;
796 cnt--;
799 * The parser is not finished with the last write,
800 * continue reading the user input without skipping spaces.
802 if (!parser->cont) {
803 /* skip white space */
804 while (cnt && isspace(ch)) {
805 ret = get_user(ch, ubuf++);
806 if (ret)
807 goto out;
808 read++;
809 cnt--;
812 /* only spaces were written */
813 if (isspace(ch)) {
814 *ppos += read;
815 ret = read;
816 goto out;
819 parser->idx = 0;
822 /* read the non-space input */
823 while (cnt && !isspace(ch)) {
824 if (parser->idx < parser->size - 1)
825 parser->buffer[parser->idx++] = ch;
826 else {
827 ret = -EINVAL;
828 goto out;
830 ret = get_user(ch, ubuf++);
831 if (ret)
832 goto out;
833 read++;
834 cnt--;
837 /* We either got finished input or we have to wait for another call. */
838 if (isspace(ch)) {
839 parser->buffer[parser->idx] = 0;
840 parser->cont = false;
841 } else {
842 parser->cont = true;
843 parser->buffer[parser->idx++] = ch;
846 *ppos += read;
847 ret = read;
849 out:
850 return ret;
853 ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, size_t cnt)
855 int len;
856 int ret;
858 if (!cnt)
859 return 0;
861 if (s->len <= s->readpos)
862 return -EBUSY;
864 len = s->len - s->readpos;
865 if (cnt > len)
866 cnt = len;
867 ret = copy_to_user(ubuf, s->buffer + s->readpos, cnt);
868 if (ret == cnt)
869 return -EFAULT;
871 cnt -= ret;
873 s->readpos += cnt;
874 return cnt;
877 static ssize_t trace_seq_to_buffer(struct trace_seq *s, void *buf, size_t cnt)
879 int len;
881 if (s->len <= s->readpos)
882 return -EBUSY;
884 len = s->len - s->readpos;
885 if (cnt > len)
886 cnt = len;
887 memcpy(buf, s->buffer + s->readpos, cnt);
889 s->readpos += cnt;
890 return cnt;
894 * ftrace_max_lock is used to protect the swapping of buffers
895 * when taking a max snapshot. The buffers themselves are
896 * protected by per_cpu spinlocks. But the action of the swap
897 * needs its own lock.
899 * This is defined as a arch_spinlock_t in order to help
900 * with performance when lockdep debugging is enabled.
902 * It is also used in other places outside the update_max_tr
903 * so it needs to be defined outside of the
904 * CONFIG_TRACER_MAX_TRACE.
906 static arch_spinlock_t ftrace_max_lock =
907 (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
909 unsigned long __read_mostly tracing_thresh;
911 #ifdef CONFIG_TRACER_MAX_TRACE
912 unsigned long __read_mostly tracing_max_latency;
915 * Copy the new maximum trace into the separate maximum-trace
916 * structure. (this way the maximum trace is permanently saved,
917 * for later retrieval via /sys/kernel/debug/tracing/latency_trace)
919 static void
920 __update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
922 struct trace_buffer *trace_buf = &tr->trace_buffer;
923 struct trace_buffer *max_buf = &tr->max_buffer;
924 struct trace_array_cpu *data = per_cpu_ptr(trace_buf->data, cpu);
925 struct trace_array_cpu *max_data = per_cpu_ptr(max_buf->data, cpu);
927 max_buf->cpu = cpu;
928 max_buf->time_start = data->preempt_timestamp;
930 max_data->saved_latency = tracing_max_latency;
931 max_data->critical_start = data->critical_start;
932 max_data->critical_end = data->critical_end;
934 memcpy(max_data->comm, tsk->comm, TASK_COMM_LEN);
935 max_data->pid = tsk->pid;
937 * If tsk == current, then use current_uid(), as that does not use
938 * RCU. The irq tracer can be called out of RCU scope.
940 if (tsk == current)
941 max_data->uid = current_uid();
942 else
943 max_data->uid = task_uid(tsk);
945 max_data->nice = tsk->static_prio - 20 - MAX_RT_PRIO;
946 max_data->policy = tsk->policy;
947 max_data->rt_priority = tsk->rt_priority;
949 /* record this tasks comm */
950 tracing_record_cmdline(tsk);
954 * update_max_tr - snapshot all trace buffers from global_trace to max_tr
955 * @tr: tracer
956 * @tsk: the task with the latency
957 * @cpu: The cpu that initiated the trace.
959 * Flip the buffers between the @tr and the max_tr and record information
960 * about which task was the cause of this latency.
962 void
963 update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
965 struct ring_buffer *buf;
967 if (tr->stop_count)
968 return;
970 WARN_ON_ONCE(!irqs_disabled());
972 if (!tr->allocated_snapshot) {
973 /* Only the nop tracer should hit this when disabling */
974 WARN_ON_ONCE(tr->current_trace != &nop_trace);
975 return;
978 arch_spin_lock(&ftrace_max_lock);
980 buf = tr->trace_buffer.buffer;
981 tr->trace_buffer.buffer = tr->max_buffer.buffer;
982 tr->max_buffer.buffer = buf;
984 __update_max_tr(tr, tsk, cpu);
985 arch_spin_unlock(&ftrace_max_lock);
989 * update_max_tr_single - only copy one trace over, and reset the rest
990 * @tr - tracer
991 * @tsk - task with the latency
992 * @cpu - the cpu of the buffer to copy.
994 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
996 void
997 update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
999 int ret;
1001 if (tr->stop_count)
1002 return;
1004 WARN_ON_ONCE(!irqs_disabled());
1005 if (!tr->allocated_snapshot) {
1006 /* Only the nop tracer should hit this when disabling */
1007 WARN_ON_ONCE(tr->current_trace != &nop_trace);
1008 return;
1011 arch_spin_lock(&ftrace_max_lock);
1013 ret = ring_buffer_swap_cpu(tr->max_buffer.buffer, tr->trace_buffer.buffer, cpu);
1015 if (ret == -EBUSY) {
1017 * We failed to swap the buffer due to a commit taking
1018 * place on this CPU. We fail to record, but we reset
1019 * the max trace buffer (no one writes directly to it)
1020 * and flag that it failed.
1022 trace_array_printk_buf(tr->max_buffer.buffer, _THIS_IP_,
1023 "Failed to swap buffers due to commit in progress\n");
1026 WARN_ON_ONCE(ret && ret != -EAGAIN && ret != -EBUSY);
1028 __update_max_tr(tr, tsk, cpu);
1029 arch_spin_unlock(&ftrace_max_lock);
1031 #endif /* CONFIG_TRACER_MAX_TRACE */
1033 static void default_wait_pipe(struct trace_iterator *iter)
1035 /* Iterators are static, they should be filled or empty */
1036 if (trace_buffer_iter(iter, iter->cpu_file))
1037 return;
1039 ring_buffer_wait(iter->trace_buffer->buffer, iter->cpu_file);
1042 #ifdef CONFIG_FTRACE_STARTUP_TEST
1043 static int run_tracer_selftest(struct tracer *type)
1045 struct trace_array *tr = &global_trace;
1046 struct tracer *saved_tracer = tr->current_trace;
1047 int ret;
1049 if (!type->selftest || tracing_selftest_disabled)
1050 return 0;
1053 * Run a selftest on this tracer.
1054 * Here we reset the trace buffer, and set the current
1055 * tracer to be this tracer. The tracer can then run some
1056 * internal tracing to verify that everything is in order.
1057 * If we fail, we do not register this tracer.
1059 tracing_reset_online_cpus(&tr->trace_buffer);
1061 tr->current_trace = type;
1063 #ifdef CONFIG_TRACER_MAX_TRACE
1064 if (type->use_max_tr) {
1065 /* If we expanded the buffers, make sure the max is expanded too */
1066 if (ring_buffer_expanded)
1067 ring_buffer_resize(tr->max_buffer.buffer, trace_buf_size,
1068 RING_BUFFER_ALL_CPUS);
1069 tr->allocated_snapshot = true;
1071 #endif
1073 /* the test is responsible for initializing and enabling */
1074 pr_info("Testing tracer %s: ", type->name);
1075 ret = type->selftest(type, tr);
1076 /* the test is responsible for resetting too */
1077 tr->current_trace = saved_tracer;
1078 if (ret) {
1079 printk(KERN_CONT "FAILED!\n");
1080 /* Add the warning after printing 'FAILED' */
1081 WARN_ON(1);
1082 return -1;
1084 /* Only reset on passing, to avoid touching corrupted buffers */
1085 tracing_reset_online_cpus(&tr->trace_buffer);
1087 #ifdef CONFIG_TRACER_MAX_TRACE
1088 if (type->use_max_tr) {
1089 tr->allocated_snapshot = false;
1091 /* Shrink the max buffer again */
1092 if (ring_buffer_expanded)
1093 ring_buffer_resize(tr->max_buffer.buffer, 1,
1094 RING_BUFFER_ALL_CPUS);
1096 #endif
1098 printk(KERN_CONT "PASSED\n");
1099 return 0;
1101 #else
1102 static inline int run_tracer_selftest(struct tracer *type)
1104 return 0;
1106 #endif /* CONFIG_FTRACE_STARTUP_TEST */
1109 * register_tracer - register a tracer with the ftrace system.
1110 * @type - the plugin for the tracer
1112 * Register a new plugin tracer.
1114 int register_tracer(struct tracer *type)
1116 struct tracer *t;
1117 int ret = 0;
1119 if (!type->name) {
1120 pr_info("Tracer must have a name\n");
1121 return -1;
1124 if (strlen(type->name) >= MAX_TRACER_SIZE) {
1125 pr_info("Tracer has a name longer than %d\n", MAX_TRACER_SIZE);
1126 return -1;
1129 mutex_lock(&trace_types_lock);
1131 tracing_selftest_running = true;
1133 for (t = trace_types; t; t = t->next) {
1134 if (strcmp(type->name, t->name) == 0) {
1135 /* already found */
1136 pr_info("Tracer %s already registered\n",
1137 type->name);
1138 ret = -1;
1139 goto out;
1143 if (!type->set_flag)
1144 type->set_flag = &dummy_set_flag;
1145 if (!type->flags)
1146 type->flags = &dummy_tracer_flags;
1147 else
1148 if (!type->flags->opts)
1149 type->flags->opts = dummy_tracer_opt;
1150 if (!type->wait_pipe)
1151 type->wait_pipe = default_wait_pipe;
1153 ret = run_tracer_selftest(type);
1154 if (ret < 0)
1155 goto out;
1157 type->next = trace_types;
1158 trace_types = type;
1160 out:
1161 tracing_selftest_running = false;
1162 mutex_unlock(&trace_types_lock);
1164 if (ret || !default_bootup_tracer)
1165 goto out_unlock;
1167 if (strncmp(default_bootup_tracer, type->name, MAX_TRACER_SIZE))
1168 goto out_unlock;
1170 printk(KERN_INFO "Starting tracer '%s'\n", type->name);
1171 /* Do we want this tracer to start on bootup? */
1172 tracing_set_tracer(type->name);
1173 default_bootup_tracer = NULL;
1174 /* disable other selftests, since this will break it. */
1175 tracing_selftest_disabled = true;
1176 #ifdef CONFIG_FTRACE_STARTUP_TEST
1177 printk(KERN_INFO "Disabling FTRACE selftests due to running tracer '%s'\n",
1178 type->name);
1179 #endif
1181 out_unlock:
1182 return ret;
1185 void tracing_reset(struct trace_buffer *buf, int cpu)
1187 struct ring_buffer *buffer = buf->buffer;
1189 if (!buffer)
1190 return;
1192 ring_buffer_record_disable(buffer);
1194 /* Make sure all commits have finished */
1195 synchronize_sched();
1196 ring_buffer_reset_cpu(buffer, cpu);
1198 ring_buffer_record_enable(buffer);
1201 void tracing_reset_online_cpus(struct trace_buffer *buf)
1203 struct ring_buffer *buffer = buf->buffer;
1204 int cpu;
1206 if (!buffer)
1207 return;
1209 ring_buffer_record_disable(buffer);
1211 /* Make sure all commits have finished */
1212 synchronize_sched();
1214 buf->time_start = ftrace_now(buf->cpu);
1216 for_each_online_cpu(cpu)
1217 ring_buffer_reset_cpu(buffer, cpu);
1219 ring_buffer_record_enable(buffer);
1222 void tracing_reset_current(int cpu)
1224 tracing_reset(&global_trace.trace_buffer, cpu);
1227 void tracing_reset_all_online_cpus(void)
1229 struct trace_array *tr;
1231 mutex_lock(&trace_types_lock);
1232 list_for_each_entry(tr, &ftrace_trace_arrays, list) {
1233 tracing_reset_online_cpus(&tr->trace_buffer);
1234 #ifdef CONFIG_TRACER_MAX_TRACE
1235 tracing_reset_online_cpus(&tr->max_buffer);
1236 #endif
1238 mutex_unlock(&trace_types_lock);
1241 #define SAVED_CMDLINES 128
1242 #define NO_CMDLINE_MAP UINT_MAX
1243 static unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1];
1244 static unsigned map_cmdline_to_pid[SAVED_CMDLINES];
1245 static char saved_cmdlines[SAVED_CMDLINES][TASK_COMM_LEN];
1246 static int cmdline_idx;
1247 static arch_spinlock_t trace_cmdline_lock = __ARCH_SPIN_LOCK_UNLOCKED;
1249 /* temporary disable recording */
1250 static atomic_t trace_record_cmdline_disabled __read_mostly;
1252 static void trace_init_cmdlines(void)
1254 memset(&map_pid_to_cmdline, NO_CMDLINE_MAP, sizeof(map_pid_to_cmdline));
1255 memset(&map_cmdline_to_pid, NO_CMDLINE_MAP, sizeof(map_cmdline_to_pid));
1256 cmdline_idx = 0;
1259 int is_tracing_stopped(void)
1261 return global_trace.stop_count;
1265 * ftrace_off_permanent - disable all ftrace code permanently
1267 * This should only be called when a serious anomally has
1268 * been detected. This will turn off the function tracing,
1269 * ring buffers, and other tracing utilites. It takes no
1270 * locks and can be called from any context.
1272 void ftrace_off_permanent(void)
1274 tracing_disabled = 1;
1275 ftrace_stop();
1276 tracing_off_permanent();
1280 * tracing_start - quick start of the tracer
1282 * If tracing is enabled but was stopped by tracing_stop,
1283 * this will start the tracer back up.
1285 void tracing_start(void)
1287 struct ring_buffer *buffer;
1288 unsigned long flags;
1290 if (tracing_disabled)
1291 return;
1293 raw_spin_lock_irqsave(&global_trace.start_lock, flags);
1294 if (--global_trace.stop_count) {
1295 if (global_trace.stop_count < 0) {
1296 /* Someone screwed up their debugging */
1297 WARN_ON_ONCE(1);
1298 global_trace.stop_count = 0;
1300 goto out;
1303 /* Prevent the buffers from switching */
1304 arch_spin_lock(&ftrace_max_lock);
1306 buffer = global_trace.trace_buffer.buffer;
1307 if (buffer)
1308 ring_buffer_record_enable(buffer);
1310 #ifdef CONFIG_TRACER_MAX_TRACE
1311 buffer = global_trace.max_buffer.buffer;
1312 if (buffer)
1313 ring_buffer_record_enable(buffer);
1314 #endif
1316 arch_spin_unlock(&ftrace_max_lock);
1318 ftrace_start();
1319 out:
1320 raw_spin_unlock_irqrestore(&global_trace.start_lock, flags);
1323 static void tracing_start_tr(struct trace_array *tr)
1325 struct ring_buffer *buffer;
1326 unsigned long flags;
1328 if (tracing_disabled)
1329 return;
1331 /* If global, we need to also start the max tracer */
1332 if (tr->flags & TRACE_ARRAY_FL_GLOBAL)
1333 return tracing_start();
1335 raw_spin_lock_irqsave(&tr->start_lock, flags);
1337 if (--tr->stop_count) {
1338 if (tr->stop_count < 0) {
1339 /* Someone screwed up their debugging */
1340 WARN_ON_ONCE(1);
1341 tr->stop_count = 0;
1343 goto out;
1346 buffer = tr->trace_buffer.buffer;
1347 if (buffer)
1348 ring_buffer_record_enable(buffer);
1350 out:
1351 raw_spin_unlock_irqrestore(&tr->start_lock, flags);
1355 * tracing_stop - quick stop of the tracer
1357 * Light weight way to stop tracing. Use in conjunction with
1358 * tracing_start.
1360 void tracing_stop(void)
1362 struct ring_buffer *buffer;
1363 unsigned long flags;
1365 ftrace_stop();
1366 raw_spin_lock_irqsave(&global_trace.start_lock, flags);
1367 if (global_trace.stop_count++)
1368 goto out;
1370 /* Prevent the buffers from switching */
1371 arch_spin_lock(&ftrace_max_lock);
1373 buffer = global_trace.trace_buffer.buffer;
1374 if (buffer)
1375 ring_buffer_record_disable(buffer);
1377 #ifdef CONFIG_TRACER_MAX_TRACE
1378 buffer = global_trace.max_buffer.buffer;
1379 if (buffer)
1380 ring_buffer_record_disable(buffer);
1381 #endif
1383 arch_spin_unlock(&ftrace_max_lock);
1385 out:
1386 raw_spin_unlock_irqrestore(&global_trace.start_lock, flags);
1389 static void tracing_stop_tr(struct trace_array *tr)
1391 struct ring_buffer *buffer;
1392 unsigned long flags;
1394 /* If global, we need to also stop the max tracer */
1395 if (tr->flags & TRACE_ARRAY_FL_GLOBAL)
1396 return tracing_stop();
1398 raw_spin_lock_irqsave(&tr->start_lock, flags);
1399 if (tr->stop_count++)
1400 goto out;
1402 buffer = tr->trace_buffer.buffer;
1403 if (buffer)
1404 ring_buffer_record_disable(buffer);
1406 out:
1407 raw_spin_unlock_irqrestore(&tr->start_lock, flags);
1410 void trace_stop_cmdline_recording(void);
1412 static void trace_save_cmdline(struct task_struct *tsk)
1414 unsigned pid, idx;
1416 if (!tsk->pid || unlikely(tsk->pid > PID_MAX_DEFAULT))
1417 return;
1420 * It's not the end of the world if we don't get
1421 * the lock, but we also don't want to spin
1422 * nor do we want to disable interrupts,
1423 * so if we miss here, then better luck next time.
1425 if (!arch_spin_trylock(&trace_cmdline_lock))
1426 return;
1428 idx = map_pid_to_cmdline[tsk->pid];
1429 if (idx == NO_CMDLINE_MAP) {
1430 idx = (cmdline_idx + 1) % SAVED_CMDLINES;
1433 * Check whether the cmdline buffer at idx has a pid
1434 * mapped. We are going to overwrite that entry so we
1435 * need to clear the map_pid_to_cmdline. Otherwise we
1436 * would read the new comm for the old pid.
1438 pid = map_cmdline_to_pid[idx];
1439 if (pid != NO_CMDLINE_MAP)
1440 map_pid_to_cmdline[pid] = NO_CMDLINE_MAP;
1442 map_cmdline_to_pid[idx] = tsk->pid;
1443 map_pid_to_cmdline[tsk->pid] = idx;
1445 cmdline_idx = idx;
1448 memcpy(&saved_cmdlines[idx], tsk->comm, TASK_COMM_LEN);
1450 arch_spin_unlock(&trace_cmdline_lock);
1453 void trace_find_cmdline(int pid, char comm[])
1455 unsigned map;
1457 if (!pid) {
1458 strcpy(comm, "<idle>");
1459 return;
1462 if (WARN_ON_ONCE(pid < 0)) {
1463 strcpy(comm, "<XXX>");
1464 return;
1467 if (pid > PID_MAX_DEFAULT) {
1468 strcpy(comm, "<...>");
1469 return;
1472 preempt_disable();
1473 arch_spin_lock(&trace_cmdline_lock);
1474 map = map_pid_to_cmdline[pid];
1475 if (map != NO_CMDLINE_MAP)
1476 strcpy(comm, saved_cmdlines[map]);
1477 else
1478 strcpy(comm, "<...>");
1480 arch_spin_unlock(&trace_cmdline_lock);
1481 preempt_enable();
1484 void tracing_record_cmdline(struct task_struct *tsk)
1486 if (atomic_read(&trace_record_cmdline_disabled) || !tracing_is_on())
1487 return;
1489 if (!__this_cpu_read(trace_cmdline_save))
1490 return;
1492 __this_cpu_write(trace_cmdline_save, false);
1494 trace_save_cmdline(tsk);
1497 void
1498 tracing_generic_entry_update(struct trace_entry *entry, unsigned long flags,
1499 int pc)
1501 struct task_struct *tsk = current;
1503 entry->preempt_count = pc & 0xff;
1504 entry->pid = (tsk) ? tsk->pid : 0;
1505 entry->flags =
1506 #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
1507 (irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) |
1508 #else
1509 TRACE_FLAG_IRQS_NOSUPPORT |
1510 #endif
1511 ((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) |
1512 ((pc & SOFTIRQ_MASK) ? TRACE_FLAG_SOFTIRQ : 0) |
1513 (need_resched() ? TRACE_FLAG_NEED_RESCHED : 0);
1515 EXPORT_SYMBOL_GPL(tracing_generic_entry_update);
1517 struct ring_buffer_event *
1518 trace_buffer_lock_reserve(struct ring_buffer *buffer,
1519 int type,
1520 unsigned long len,
1521 unsigned long flags, int pc)
1523 struct ring_buffer_event *event;
1525 event = ring_buffer_lock_reserve(buffer, len);
1526 if (event != NULL) {
1527 struct trace_entry *ent = ring_buffer_event_data(event);
1529 tracing_generic_entry_update(ent, flags, pc);
1530 ent->type = type;
1533 return event;
1536 void
1537 __buffer_unlock_commit(struct ring_buffer *buffer, struct ring_buffer_event *event)
1539 __this_cpu_write(trace_cmdline_save, true);
1540 ring_buffer_unlock_commit(buffer, event);
1543 static inline void
1544 __trace_buffer_unlock_commit(struct ring_buffer *buffer,
1545 struct ring_buffer_event *event,
1546 unsigned long flags, int pc)
1548 __buffer_unlock_commit(buffer, event);
1550 ftrace_trace_stack(buffer, flags, 6, pc);
1551 ftrace_trace_userstack(buffer, flags, pc);
1554 void trace_buffer_unlock_commit(struct ring_buffer *buffer,
1555 struct ring_buffer_event *event,
1556 unsigned long flags, int pc)
1558 __trace_buffer_unlock_commit(buffer, event, flags, pc);
1560 EXPORT_SYMBOL_GPL(trace_buffer_unlock_commit);
1562 struct ring_buffer_event *
1563 trace_event_buffer_lock_reserve(struct ring_buffer **current_rb,
1564 struct ftrace_event_file *ftrace_file,
1565 int type, unsigned long len,
1566 unsigned long flags, int pc)
1568 *current_rb = ftrace_file->tr->trace_buffer.buffer;
1569 return trace_buffer_lock_reserve(*current_rb,
1570 type, len, flags, pc);
1572 EXPORT_SYMBOL_GPL(trace_event_buffer_lock_reserve);
1574 struct ring_buffer_event *
1575 trace_current_buffer_lock_reserve(struct ring_buffer **current_rb,
1576 int type, unsigned long len,
1577 unsigned long flags, int pc)
1579 *current_rb = global_trace.trace_buffer.buffer;
1580 return trace_buffer_lock_reserve(*current_rb,
1581 type, len, flags, pc);
1583 EXPORT_SYMBOL_GPL(trace_current_buffer_lock_reserve);
1585 void trace_current_buffer_unlock_commit(struct ring_buffer *buffer,
1586 struct ring_buffer_event *event,
1587 unsigned long flags, int pc)
1589 __trace_buffer_unlock_commit(buffer, event, flags, pc);
1591 EXPORT_SYMBOL_GPL(trace_current_buffer_unlock_commit);
1593 void trace_buffer_unlock_commit_regs(struct ring_buffer *buffer,
1594 struct ring_buffer_event *event,
1595 unsigned long flags, int pc,
1596 struct pt_regs *regs)
1598 __buffer_unlock_commit(buffer, event);
1600 ftrace_trace_stack_regs(buffer, flags, 0, pc, regs);
1601 ftrace_trace_userstack(buffer, flags, pc);
1603 EXPORT_SYMBOL_GPL(trace_buffer_unlock_commit_regs);
1605 void trace_current_buffer_discard_commit(struct ring_buffer *buffer,
1606 struct ring_buffer_event *event)
1608 ring_buffer_discard_commit(buffer, event);
1610 EXPORT_SYMBOL_GPL(trace_current_buffer_discard_commit);
1612 void
1613 trace_function(struct trace_array *tr,
1614 unsigned long ip, unsigned long parent_ip, unsigned long flags,
1615 int pc)
1617 struct ftrace_event_call *call = &event_function;
1618 struct ring_buffer *buffer = tr->trace_buffer.buffer;
1619 struct ring_buffer_event *event;
1620 struct ftrace_entry *entry;
1622 /* If we are reading the ring buffer, don't trace */
1623 if (unlikely(__this_cpu_read(ftrace_cpu_disabled)))
1624 return;
1626 event = trace_buffer_lock_reserve(buffer, TRACE_FN, sizeof(*entry),
1627 flags, pc);
1628 if (!event)
1629 return;
1630 entry = ring_buffer_event_data(event);
1631 entry->ip = ip;
1632 entry->parent_ip = parent_ip;
1634 if (!filter_check_discard(call, entry, buffer, event))
1635 __buffer_unlock_commit(buffer, event);
1638 #ifdef CONFIG_STACKTRACE
1640 #define FTRACE_STACK_MAX_ENTRIES (PAGE_SIZE / sizeof(unsigned long))
1641 struct ftrace_stack {
1642 unsigned long calls[FTRACE_STACK_MAX_ENTRIES];
1645 static DEFINE_PER_CPU(struct ftrace_stack, ftrace_stack);
1646 static DEFINE_PER_CPU(int, ftrace_stack_reserve);
1648 static void __ftrace_trace_stack(struct ring_buffer *buffer,
1649 unsigned long flags,
1650 int skip, int pc, struct pt_regs *regs)
1652 struct ftrace_event_call *call = &event_kernel_stack;
1653 struct ring_buffer_event *event;
1654 struct stack_entry *entry;
1655 struct stack_trace trace;
1656 int use_stack;
1657 int size = FTRACE_STACK_ENTRIES;
1659 trace.nr_entries = 0;
1660 trace.skip = skip;
1663 * Since events can happen in NMIs there's no safe way to
1664 * use the per cpu ftrace_stacks. We reserve it and if an interrupt
1665 * or NMI comes in, it will just have to use the default
1666 * FTRACE_STACK_SIZE.
1668 preempt_disable_notrace();
1670 use_stack = __this_cpu_inc_return(ftrace_stack_reserve);
1672 * We don't need any atomic variables, just a barrier.
1673 * If an interrupt comes in, we don't care, because it would
1674 * have exited and put the counter back to what we want.
1675 * We just need a barrier to keep gcc from moving things
1676 * around.
1678 barrier();
1679 if (use_stack == 1) {
1680 trace.entries = &__get_cpu_var(ftrace_stack).calls[0];
1681 trace.max_entries = FTRACE_STACK_MAX_ENTRIES;
1683 if (regs)
1684 save_stack_trace_regs(regs, &trace);
1685 else
1686 save_stack_trace(&trace);
1688 if (trace.nr_entries > size)
1689 size = trace.nr_entries;
1690 } else
1691 /* From now on, use_stack is a boolean */
1692 use_stack = 0;
1694 size *= sizeof(unsigned long);
1696 event = trace_buffer_lock_reserve(buffer, TRACE_STACK,
1697 sizeof(*entry) + size, flags, pc);
1698 if (!event)
1699 goto out;
1700 entry = ring_buffer_event_data(event);
1702 memset(&entry->caller, 0, size);
1704 if (use_stack)
1705 memcpy(&entry->caller, trace.entries,
1706 trace.nr_entries * sizeof(unsigned long));
1707 else {
1708 trace.max_entries = FTRACE_STACK_ENTRIES;
1709 trace.entries = entry->caller;
1710 if (regs)
1711 save_stack_trace_regs(regs, &trace);
1712 else
1713 save_stack_trace(&trace);
1716 entry->size = trace.nr_entries;
1718 if (!filter_check_discard(call, entry, buffer, event))
1719 __buffer_unlock_commit(buffer, event);
1721 out:
1722 /* Again, don't let gcc optimize things here */
1723 barrier();
1724 __this_cpu_dec(ftrace_stack_reserve);
1725 preempt_enable_notrace();
1729 void ftrace_trace_stack_regs(struct ring_buffer *buffer, unsigned long flags,
1730 int skip, int pc, struct pt_regs *regs)
1732 if (!(trace_flags & TRACE_ITER_STACKTRACE))
1733 return;
1735 __ftrace_trace_stack(buffer, flags, skip, pc, regs);
1738 void ftrace_trace_stack(struct ring_buffer *buffer, unsigned long flags,
1739 int skip, int pc)
1741 if (!(trace_flags & TRACE_ITER_STACKTRACE))
1742 return;
1744 __ftrace_trace_stack(buffer, flags, skip, pc, NULL);
1747 void __trace_stack(struct trace_array *tr, unsigned long flags, int skip,
1748 int pc)
1750 __ftrace_trace_stack(tr->trace_buffer.buffer, flags, skip, pc, NULL);
1754 * trace_dump_stack - record a stack back trace in the trace buffer
1755 * @skip: Number of functions to skip (helper handlers)
1757 void trace_dump_stack(int skip)
1759 unsigned long flags;
1761 if (tracing_disabled || tracing_selftest_running)
1762 return;
1764 local_save_flags(flags);
1767 * Skip 3 more, seems to get us at the caller of
1768 * this function.
1770 skip += 3;
1771 __ftrace_trace_stack(global_trace.trace_buffer.buffer,
1772 flags, skip, preempt_count(), NULL);
1775 static DEFINE_PER_CPU(int, user_stack_count);
1777 void
1778 ftrace_trace_userstack(struct ring_buffer *buffer, unsigned long flags, int pc)
1780 struct ftrace_event_call *call = &event_user_stack;
1781 struct ring_buffer_event *event;
1782 struct userstack_entry *entry;
1783 struct stack_trace trace;
1785 if (!(trace_flags & TRACE_ITER_USERSTACKTRACE))
1786 return;
1789 * NMIs can not handle page faults, even with fix ups.
1790 * The save user stack can (and often does) fault.
1792 if (unlikely(in_nmi()))
1793 return;
1796 * prevent recursion, since the user stack tracing may
1797 * trigger other kernel events.
1799 preempt_disable();
1800 if (__this_cpu_read(user_stack_count))
1801 goto out;
1803 __this_cpu_inc(user_stack_count);
1805 event = trace_buffer_lock_reserve(buffer, TRACE_USER_STACK,
1806 sizeof(*entry), flags, pc);
1807 if (!event)
1808 goto out_drop_count;
1809 entry = ring_buffer_event_data(event);
1811 entry->tgid = current->tgid;
1812 memset(&entry->caller, 0, sizeof(entry->caller));
1814 trace.nr_entries = 0;
1815 trace.max_entries = FTRACE_STACK_ENTRIES;
1816 trace.skip = 0;
1817 trace.entries = entry->caller;
1819 save_stack_trace_user(&trace);
1820 if (!filter_check_discard(call, entry, buffer, event))
1821 __buffer_unlock_commit(buffer, event);
1823 out_drop_count:
1824 __this_cpu_dec(user_stack_count);
1825 out:
1826 preempt_enable();
1829 #ifdef UNUSED
1830 static void __trace_userstack(struct trace_array *tr, unsigned long flags)
1832 ftrace_trace_userstack(tr, flags, preempt_count());
1834 #endif /* UNUSED */
1836 #endif /* CONFIG_STACKTRACE */
1838 /* created for use with alloc_percpu */
1839 struct trace_buffer_struct {
1840 char buffer[TRACE_BUF_SIZE];
1843 static struct trace_buffer_struct *trace_percpu_buffer;
1844 static struct trace_buffer_struct *trace_percpu_sirq_buffer;
1845 static struct trace_buffer_struct *trace_percpu_irq_buffer;
1846 static struct trace_buffer_struct *trace_percpu_nmi_buffer;
1849 * The buffer used is dependent on the context. There is a per cpu
1850 * buffer for normal context, softirq contex, hard irq context and
1851 * for NMI context. Thise allows for lockless recording.
1853 * Note, if the buffers failed to be allocated, then this returns NULL
1855 static char *get_trace_buf(void)
1857 struct trace_buffer_struct *percpu_buffer;
1860 * If we have allocated per cpu buffers, then we do not
1861 * need to do any locking.
1863 if (in_nmi())
1864 percpu_buffer = trace_percpu_nmi_buffer;
1865 else if (in_irq())
1866 percpu_buffer = trace_percpu_irq_buffer;
1867 else if (in_softirq())
1868 percpu_buffer = trace_percpu_sirq_buffer;
1869 else
1870 percpu_buffer = trace_percpu_buffer;
1872 if (!percpu_buffer)
1873 return NULL;
1875 return this_cpu_ptr(&percpu_buffer->buffer[0]);
1878 static int alloc_percpu_trace_buffer(void)
1880 struct trace_buffer_struct *buffers;
1881 struct trace_buffer_struct *sirq_buffers;
1882 struct trace_buffer_struct *irq_buffers;
1883 struct trace_buffer_struct *nmi_buffers;
1885 buffers = alloc_percpu(struct trace_buffer_struct);
1886 if (!buffers)
1887 goto err_warn;
1889 sirq_buffers = alloc_percpu(struct trace_buffer_struct);
1890 if (!sirq_buffers)
1891 goto err_sirq;
1893 irq_buffers = alloc_percpu(struct trace_buffer_struct);
1894 if (!irq_buffers)
1895 goto err_irq;
1897 nmi_buffers = alloc_percpu(struct trace_buffer_struct);
1898 if (!nmi_buffers)
1899 goto err_nmi;
1901 trace_percpu_buffer = buffers;
1902 trace_percpu_sirq_buffer = sirq_buffers;
1903 trace_percpu_irq_buffer = irq_buffers;
1904 trace_percpu_nmi_buffer = nmi_buffers;
1906 return 0;
1908 err_nmi:
1909 free_percpu(irq_buffers);
1910 err_irq:
1911 free_percpu(sirq_buffers);
1912 err_sirq:
1913 free_percpu(buffers);
1914 err_warn:
1915 WARN(1, "Could not allocate percpu trace_printk buffer");
1916 return -ENOMEM;
1919 static int buffers_allocated;
1921 void trace_printk_init_buffers(void)
1923 if (buffers_allocated)
1924 return;
1926 if (alloc_percpu_trace_buffer())
1927 return;
1929 pr_info("ftrace: Allocated trace_printk buffers\n");
1931 /* Expand the buffers to set size */
1932 tracing_update_buffers();
1934 buffers_allocated = 1;
1937 * trace_printk_init_buffers() can be called by modules.
1938 * If that happens, then we need to start cmdline recording
1939 * directly here. If the global_trace.buffer is already
1940 * allocated here, then this was called by module code.
1942 if (global_trace.trace_buffer.buffer)
1943 tracing_start_cmdline_record();
1946 void trace_printk_start_comm(void)
1948 /* Start tracing comms if trace printk is set */
1949 if (!buffers_allocated)
1950 return;
1951 tracing_start_cmdline_record();
1954 static void trace_printk_start_stop_comm(int enabled)
1956 if (!buffers_allocated)
1957 return;
1959 if (enabled)
1960 tracing_start_cmdline_record();
1961 else
1962 tracing_stop_cmdline_record();
1966 * trace_vbprintk - write binary msg to tracing buffer
1969 int trace_vbprintk(unsigned long ip, const char *fmt, va_list args)
1971 struct ftrace_event_call *call = &event_bprint;
1972 struct ring_buffer_event *event;
1973 struct ring_buffer *buffer;
1974 struct trace_array *tr = &global_trace;
1975 struct bprint_entry *entry;
1976 unsigned long flags;
1977 char *tbuffer;
1978 int len = 0, size, pc;
1980 if (unlikely(tracing_selftest_running || tracing_disabled))
1981 return 0;
1983 /* Don't pollute graph traces with trace_vprintk internals */
1984 pause_graph_tracing();
1986 pc = preempt_count();
1987 preempt_disable_notrace();
1989 tbuffer = get_trace_buf();
1990 if (!tbuffer) {
1991 len = 0;
1992 goto out;
1995 len = vbin_printf((u32 *)tbuffer, TRACE_BUF_SIZE/sizeof(int), fmt, args);
1997 if (len > TRACE_BUF_SIZE/sizeof(int) || len < 0)
1998 goto out;
2000 local_save_flags(flags);
2001 size = sizeof(*entry) + sizeof(u32) * len;
2002 buffer = tr->trace_buffer.buffer;
2003 event = trace_buffer_lock_reserve(buffer, TRACE_BPRINT, size,
2004 flags, pc);
2005 if (!event)
2006 goto out;
2007 entry = ring_buffer_event_data(event);
2008 entry->ip = ip;
2009 entry->fmt = fmt;
2011 memcpy(entry->buf, tbuffer, sizeof(u32) * len);
2012 if (!filter_check_discard(call, entry, buffer, event)) {
2013 __buffer_unlock_commit(buffer, event);
2014 ftrace_trace_stack(buffer, flags, 6, pc);
2017 out:
2018 preempt_enable_notrace();
2019 unpause_graph_tracing();
2021 return len;
2023 EXPORT_SYMBOL_GPL(trace_vbprintk);
2025 static int
2026 __trace_array_vprintk(struct ring_buffer *buffer,
2027 unsigned long ip, const char *fmt, va_list args)
2029 struct ftrace_event_call *call = &event_print;
2030 struct ring_buffer_event *event;
2031 int len = 0, size, pc;
2032 struct print_entry *entry;
2033 unsigned long flags;
2034 char *tbuffer;
2036 if (tracing_disabled || tracing_selftest_running)
2037 return 0;
2039 /* Don't pollute graph traces with trace_vprintk internals */
2040 pause_graph_tracing();
2042 pc = preempt_count();
2043 preempt_disable_notrace();
2046 tbuffer = get_trace_buf();
2047 if (!tbuffer) {
2048 len = 0;
2049 goto out;
2052 len = vsnprintf(tbuffer, TRACE_BUF_SIZE, fmt, args);
2053 if (len > TRACE_BUF_SIZE)
2054 goto out;
2056 local_save_flags(flags);
2057 size = sizeof(*entry) + len + 1;
2058 event = trace_buffer_lock_reserve(buffer, TRACE_PRINT, size,
2059 flags, pc);
2060 if (!event)
2061 goto out;
2062 entry = ring_buffer_event_data(event);
2063 entry->ip = ip;
2065 memcpy(&entry->buf, tbuffer, len);
2066 entry->buf[len] = '\0';
2067 if (!filter_check_discard(call, entry, buffer, event)) {
2068 __buffer_unlock_commit(buffer, event);
2069 ftrace_trace_stack(buffer, flags, 6, pc);
2071 out:
2072 preempt_enable_notrace();
2073 unpause_graph_tracing();
2075 return len;
2078 int trace_array_vprintk(struct trace_array *tr,
2079 unsigned long ip, const char *fmt, va_list args)
2081 return __trace_array_vprintk(tr->trace_buffer.buffer, ip, fmt, args);
2084 int trace_array_printk(struct trace_array *tr,
2085 unsigned long ip, const char *fmt, ...)
2087 int ret;
2088 va_list ap;
2090 if (!(trace_flags & TRACE_ITER_PRINTK))
2091 return 0;
2093 va_start(ap, fmt);
2094 ret = trace_array_vprintk(tr, ip, fmt, ap);
2095 va_end(ap);
2096 return ret;
2099 int trace_array_printk_buf(struct ring_buffer *buffer,
2100 unsigned long ip, const char *fmt, ...)
2102 int ret;
2103 va_list ap;
2105 if (!(trace_flags & TRACE_ITER_PRINTK))
2106 return 0;
2108 va_start(ap, fmt);
2109 ret = __trace_array_vprintk(buffer, ip, fmt, ap);
2110 va_end(ap);
2111 return ret;
2114 int trace_vprintk(unsigned long ip, const char *fmt, va_list args)
2116 return trace_array_vprintk(&global_trace, ip, fmt, args);
2118 EXPORT_SYMBOL_GPL(trace_vprintk);
2120 static void trace_iterator_increment(struct trace_iterator *iter)
2122 struct ring_buffer_iter *buf_iter = trace_buffer_iter(iter, iter->cpu);
2124 iter->idx++;
2125 if (buf_iter)
2126 ring_buffer_read(buf_iter, NULL);
2129 static struct trace_entry *
2130 peek_next_entry(struct trace_iterator *iter, int cpu, u64 *ts,
2131 unsigned long *lost_events)
2133 struct ring_buffer_event *event;
2134 struct ring_buffer_iter *buf_iter = trace_buffer_iter(iter, cpu);
2136 if (buf_iter)
2137 event = ring_buffer_iter_peek(buf_iter, ts);
2138 else
2139 event = ring_buffer_peek(iter->trace_buffer->buffer, cpu, ts,
2140 lost_events);
2142 if (event) {
2143 iter->ent_size = ring_buffer_event_length(event);
2144 return ring_buffer_event_data(event);
2146 iter->ent_size = 0;
2147 return NULL;
2150 static struct trace_entry *
2151 __find_next_entry(struct trace_iterator *iter, int *ent_cpu,
2152 unsigned long *missing_events, u64 *ent_ts)
2154 struct ring_buffer *buffer = iter->trace_buffer->buffer;
2155 struct trace_entry *ent, *next = NULL;
2156 unsigned long lost_events = 0, next_lost = 0;
2157 int cpu_file = iter->cpu_file;
2158 u64 next_ts = 0, ts;
2159 int next_cpu = -1;
2160 int next_size = 0;
2161 int cpu;
2164 * If we are in a per_cpu trace file, don't bother by iterating over
2165 * all cpu and peek directly.
2167 if (cpu_file > RING_BUFFER_ALL_CPUS) {
2168 if (ring_buffer_empty_cpu(buffer, cpu_file))
2169 return NULL;
2170 ent = peek_next_entry(iter, cpu_file, ent_ts, missing_events);
2171 if (ent_cpu)
2172 *ent_cpu = cpu_file;
2174 return ent;
2177 for_each_tracing_cpu(cpu) {
2179 if (ring_buffer_empty_cpu(buffer, cpu))
2180 continue;
2182 ent = peek_next_entry(iter, cpu, &ts, &lost_events);
2185 * Pick the entry with the smallest timestamp:
2187 if (ent && (!next || ts < next_ts)) {
2188 next = ent;
2189 next_cpu = cpu;
2190 next_ts = ts;
2191 next_lost = lost_events;
2192 next_size = iter->ent_size;
2196 iter->ent_size = next_size;
2198 if (ent_cpu)
2199 *ent_cpu = next_cpu;
2201 if (ent_ts)
2202 *ent_ts = next_ts;
2204 if (missing_events)
2205 *missing_events = next_lost;
2207 return next;
2210 /* Find the next real entry, without updating the iterator itself */
2211 struct trace_entry *trace_find_next_entry(struct trace_iterator *iter,
2212 int *ent_cpu, u64 *ent_ts)
2214 return __find_next_entry(iter, ent_cpu, NULL, ent_ts);
2217 /* Find the next real entry, and increment the iterator to the next entry */
2218 void *trace_find_next_entry_inc(struct trace_iterator *iter)
2220 iter->ent = __find_next_entry(iter, &iter->cpu,
2221 &iter->lost_events, &iter->ts);
2223 if (iter->ent)
2224 trace_iterator_increment(iter);
2226 return iter->ent ? iter : NULL;
2229 static void trace_consume(struct trace_iterator *iter)
2231 ring_buffer_consume(iter->trace_buffer->buffer, iter->cpu, &iter->ts,
2232 &iter->lost_events);
2235 static void *s_next(struct seq_file *m, void *v, loff_t *pos)
2237 struct trace_iterator *iter = m->private;
2238 int i = (int)*pos;
2239 void *ent;
2241 WARN_ON_ONCE(iter->leftover);
2243 (*pos)++;
2245 /* can't go backwards */
2246 if (iter->idx > i)
2247 return NULL;
2249 if (iter->idx < 0)
2250 ent = trace_find_next_entry_inc(iter);
2251 else
2252 ent = iter;
2254 while (ent && iter->idx < i)
2255 ent = trace_find_next_entry_inc(iter);
2257 iter->pos = *pos;
2259 return ent;
2262 void tracing_iter_reset(struct trace_iterator *iter, int cpu)
2264 struct ring_buffer_event *event;
2265 struct ring_buffer_iter *buf_iter;
2266 unsigned long entries = 0;
2267 u64 ts;
2269 per_cpu_ptr(iter->trace_buffer->data, cpu)->skipped_entries = 0;
2271 buf_iter = trace_buffer_iter(iter, cpu);
2272 if (!buf_iter)
2273 return;
2275 ring_buffer_iter_reset(buf_iter);
2278 * We could have the case with the max latency tracers
2279 * that a reset never took place on a cpu. This is evident
2280 * by the timestamp being before the start of the buffer.
2282 while ((event = ring_buffer_iter_peek(buf_iter, &ts))) {
2283 if (ts >= iter->trace_buffer->time_start)
2284 break;
2285 entries++;
2286 ring_buffer_read(buf_iter, NULL);
2289 per_cpu_ptr(iter->trace_buffer->data, cpu)->skipped_entries = entries;
2293 * The current tracer is copied to avoid a global locking
2294 * all around.
2296 static void *s_start(struct seq_file *m, loff_t *pos)
2298 struct trace_iterator *iter = m->private;
2299 struct trace_array *tr = iter->tr;
2300 int cpu_file = iter->cpu_file;
2301 void *p = NULL;
2302 loff_t l = 0;
2303 int cpu;
2306 * copy the tracer to avoid using a global lock all around.
2307 * iter->trace is a copy of current_trace, the pointer to the
2308 * name may be used instead of a strcmp(), as iter->trace->name
2309 * will point to the same string as current_trace->name.
2311 mutex_lock(&trace_types_lock);
2312 if (unlikely(tr->current_trace && iter->trace->name != tr->current_trace->name))
2313 *iter->trace = *tr->current_trace;
2314 mutex_unlock(&trace_types_lock);
2316 #ifdef CONFIG_TRACER_MAX_TRACE
2317 if (iter->snapshot && iter->trace->use_max_tr)
2318 return ERR_PTR(-EBUSY);
2319 #endif
2321 if (!iter->snapshot)
2322 atomic_inc(&trace_record_cmdline_disabled);
2324 if (*pos != iter->pos) {
2325 iter->ent = NULL;
2326 iter->cpu = 0;
2327 iter->idx = -1;
2329 if (cpu_file == RING_BUFFER_ALL_CPUS) {
2330 for_each_tracing_cpu(cpu)
2331 tracing_iter_reset(iter, cpu);
2332 } else
2333 tracing_iter_reset(iter, cpu_file);
2335 iter->leftover = 0;
2336 for (p = iter; p && l < *pos; p = s_next(m, p, &l))
2339 } else {
2341 * If we overflowed the seq_file before, then we want
2342 * to just reuse the trace_seq buffer again.
2344 if (iter->leftover)
2345 p = iter;
2346 else {
2347 l = *pos - 1;
2348 p = s_next(m, p, &l);
2352 trace_event_read_lock();
2353 trace_access_lock(cpu_file);
2354 return p;
2357 static void s_stop(struct seq_file *m, void *p)
2359 struct trace_iterator *iter = m->private;
2361 #ifdef CONFIG_TRACER_MAX_TRACE
2362 if (iter->snapshot && iter->trace->use_max_tr)
2363 return;
2364 #endif
2366 if (!iter->snapshot)
2367 atomic_dec(&trace_record_cmdline_disabled);
2369 trace_access_unlock(iter->cpu_file);
2370 trace_event_read_unlock();
2373 static void
2374 get_total_entries(struct trace_buffer *buf,
2375 unsigned long *total, unsigned long *entries)
2377 unsigned long count;
2378 int cpu;
2380 *total = 0;
2381 *entries = 0;
2383 for_each_tracing_cpu(cpu) {
2384 count = ring_buffer_entries_cpu(buf->buffer, cpu);
2386 * If this buffer has skipped entries, then we hold all
2387 * entries for the trace and we need to ignore the
2388 * ones before the time stamp.
2390 if (per_cpu_ptr(buf->data, cpu)->skipped_entries) {
2391 count -= per_cpu_ptr(buf->data, cpu)->skipped_entries;
2392 /* total is the same as the entries */
2393 *total += count;
2394 } else
2395 *total += count +
2396 ring_buffer_overrun_cpu(buf->buffer, cpu);
2397 *entries += count;
2401 static void print_lat_help_header(struct seq_file *m)
2403 seq_puts(m, "# _------=> CPU# \n");
2404 seq_puts(m, "# / _-----=> irqs-off \n");
2405 seq_puts(m, "# | / _----=> need-resched \n");
2406 seq_puts(m, "# || / _---=> hardirq/softirq \n");
2407 seq_puts(m, "# ||| / _--=> preempt-depth \n");
2408 seq_puts(m, "# |||| / delay \n");
2409 seq_puts(m, "# cmd pid ||||| time | caller \n");
2410 seq_puts(m, "# \\ / ||||| \\ | / \n");
2413 static void print_event_info(struct trace_buffer *buf, struct seq_file *m)
2415 unsigned long total;
2416 unsigned long entries;
2418 get_total_entries(buf, &total, &entries);
2419 seq_printf(m, "# entries-in-buffer/entries-written: %lu/%lu #P:%d\n",
2420 entries, total, num_online_cpus());
2421 seq_puts(m, "#\n");
2424 static void print_func_help_header(struct trace_buffer *buf, struct seq_file *m)
2426 print_event_info(buf, m);
2427 seq_puts(m, "# TASK-PID CPU# TIMESTAMP FUNCTION\n");
2428 seq_puts(m, "# | | | | |\n");
2431 static void print_func_help_header_irq(struct trace_buffer *buf, struct seq_file *m)
2433 print_event_info(buf, m);
2434 seq_puts(m, "# _-----=> irqs-off\n");
2435 seq_puts(m, "# / _----=> need-resched\n");
2436 seq_puts(m, "# | / _---=> hardirq/softirq\n");
2437 seq_puts(m, "# || / _--=> preempt-depth\n");
2438 seq_puts(m, "# ||| / delay\n");
2439 seq_puts(m, "# TASK-PID CPU# |||| TIMESTAMP FUNCTION\n");
2440 seq_puts(m, "# | | | |||| | |\n");
2443 void
2444 print_trace_header(struct seq_file *m, struct trace_iterator *iter)
2446 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
2447 struct trace_buffer *buf = iter->trace_buffer;
2448 struct trace_array_cpu *data = per_cpu_ptr(buf->data, buf->cpu);
2449 struct tracer *type = iter->trace;
2450 unsigned long entries;
2451 unsigned long total;
2452 const char *name = "preemption";
2454 name = type->name;
2456 get_total_entries(buf, &total, &entries);
2458 seq_printf(m, "# %s latency trace v1.1.5 on %s\n",
2459 name, UTS_RELEASE);
2460 seq_puts(m, "# -----------------------------------"
2461 "---------------------------------\n");
2462 seq_printf(m, "# latency: %lu us, #%lu/%lu, CPU#%d |"
2463 " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
2464 nsecs_to_usecs(data->saved_latency),
2465 entries,
2466 total,
2467 buf->cpu,
2468 #if defined(CONFIG_PREEMPT_NONE)
2469 "server",
2470 #elif defined(CONFIG_PREEMPT_VOLUNTARY)
2471 "desktop",
2472 #elif defined(CONFIG_PREEMPT)
2473 "preempt",
2474 #else
2475 "unknown",
2476 #endif
2477 /* These are reserved for later use */
2478 0, 0, 0, 0);
2479 #ifdef CONFIG_SMP
2480 seq_printf(m, " #P:%d)\n", num_online_cpus());
2481 #else
2482 seq_puts(m, ")\n");
2483 #endif
2484 seq_puts(m, "# -----------------\n");
2485 seq_printf(m, "# | task: %.16s-%d "
2486 "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
2487 data->comm, data->pid,
2488 from_kuid_munged(seq_user_ns(m), data->uid), data->nice,
2489 data->policy, data->rt_priority);
2490 seq_puts(m, "# -----------------\n");
2492 if (data->critical_start) {
2493 seq_puts(m, "# => started at: ");
2494 seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags);
2495 trace_print_seq(m, &iter->seq);
2496 seq_puts(m, "\n# => ended at: ");
2497 seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags);
2498 trace_print_seq(m, &iter->seq);
2499 seq_puts(m, "\n#\n");
2502 seq_puts(m, "#\n");
2505 static void test_cpu_buff_start(struct trace_iterator *iter)
2507 struct trace_seq *s = &iter->seq;
2509 if (!(trace_flags & TRACE_ITER_ANNOTATE))
2510 return;
2512 if (!(iter->iter_flags & TRACE_FILE_ANNOTATE))
2513 return;
2515 if (cpumask_test_cpu(iter->cpu, iter->started))
2516 return;
2518 if (per_cpu_ptr(iter->trace_buffer->data, iter->cpu)->skipped_entries)
2519 return;
2521 cpumask_set_cpu(iter->cpu, iter->started);
2523 /* Don't print started cpu buffer for the first entry of the trace */
2524 if (iter->idx > 1)
2525 trace_seq_printf(s, "##### CPU %u buffer started ####\n",
2526 iter->cpu);
2529 static enum print_line_t print_trace_fmt(struct trace_iterator *iter)
2531 struct trace_seq *s = &iter->seq;
2532 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
2533 struct trace_entry *entry;
2534 struct trace_event *event;
2536 entry = iter->ent;
2538 test_cpu_buff_start(iter);
2540 event = ftrace_find_event(entry->type);
2542 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
2543 if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
2544 if (!trace_print_lat_context(iter))
2545 goto partial;
2546 } else {
2547 if (!trace_print_context(iter))
2548 goto partial;
2552 if (event)
2553 return event->funcs->trace(iter, sym_flags, event);
2555 if (!trace_seq_printf(s, "Unknown type %d\n", entry->type))
2556 goto partial;
2558 return TRACE_TYPE_HANDLED;
2559 partial:
2560 return TRACE_TYPE_PARTIAL_LINE;
2563 static enum print_line_t print_raw_fmt(struct trace_iterator *iter)
2565 struct trace_seq *s = &iter->seq;
2566 struct trace_entry *entry;
2567 struct trace_event *event;
2569 entry = iter->ent;
2571 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
2572 if (!trace_seq_printf(s, "%d %d %llu ",
2573 entry->pid, iter->cpu, iter->ts))
2574 goto partial;
2577 event = ftrace_find_event(entry->type);
2578 if (event)
2579 return event->funcs->raw(iter, 0, event);
2581 if (!trace_seq_printf(s, "%d ?\n", entry->type))
2582 goto partial;
2584 return TRACE_TYPE_HANDLED;
2585 partial:
2586 return TRACE_TYPE_PARTIAL_LINE;
2589 static enum print_line_t print_hex_fmt(struct trace_iterator *iter)
2591 struct trace_seq *s = &iter->seq;
2592 unsigned char newline = '\n';
2593 struct trace_entry *entry;
2594 struct trace_event *event;
2596 entry = iter->ent;
2598 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
2599 SEQ_PUT_HEX_FIELD_RET(s, entry->pid);
2600 SEQ_PUT_HEX_FIELD_RET(s, iter->cpu);
2601 SEQ_PUT_HEX_FIELD_RET(s, iter->ts);
2604 event = ftrace_find_event(entry->type);
2605 if (event) {
2606 enum print_line_t ret = event->funcs->hex(iter, 0, event);
2607 if (ret != TRACE_TYPE_HANDLED)
2608 return ret;
2611 SEQ_PUT_FIELD_RET(s, newline);
2613 return TRACE_TYPE_HANDLED;
2616 static enum print_line_t print_bin_fmt(struct trace_iterator *iter)
2618 struct trace_seq *s = &iter->seq;
2619 struct trace_entry *entry;
2620 struct trace_event *event;
2622 entry = iter->ent;
2624 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
2625 SEQ_PUT_FIELD_RET(s, entry->pid);
2626 SEQ_PUT_FIELD_RET(s, iter->cpu);
2627 SEQ_PUT_FIELD_RET(s, iter->ts);
2630 event = ftrace_find_event(entry->type);
2631 return event ? event->funcs->binary(iter, 0, event) :
2632 TRACE_TYPE_HANDLED;
2635 int trace_empty(struct trace_iterator *iter)
2637 struct ring_buffer_iter *buf_iter;
2638 int cpu;
2640 /* If we are looking at one CPU buffer, only check that one */
2641 if (iter->cpu_file != RING_BUFFER_ALL_CPUS) {
2642 cpu = iter->cpu_file;
2643 buf_iter = trace_buffer_iter(iter, cpu);
2644 if (buf_iter) {
2645 if (!ring_buffer_iter_empty(buf_iter))
2646 return 0;
2647 } else {
2648 if (!ring_buffer_empty_cpu(iter->trace_buffer->buffer, cpu))
2649 return 0;
2651 return 1;
2654 for_each_tracing_cpu(cpu) {
2655 buf_iter = trace_buffer_iter(iter, cpu);
2656 if (buf_iter) {
2657 if (!ring_buffer_iter_empty(buf_iter))
2658 return 0;
2659 } else {
2660 if (!ring_buffer_empty_cpu(iter->trace_buffer->buffer, cpu))
2661 return 0;
2665 return 1;
2668 /* Called with trace_event_read_lock() held. */
2669 enum print_line_t print_trace_line(struct trace_iterator *iter)
2671 enum print_line_t ret;
2673 if (iter->lost_events &&
2674 !trace_seq_printf(&iter->seq, "CPU:%d [LOST %lu EVENTS]\n",
2675 iter->cpu, iter->lost_events))
2676 return TRACE_TYPE_PARTIAL_LINE;
2678 if (iter->trace && iter->trace->print_line) {
2679 ret = iter->trace->print_line(iter);
2680 if (ret != TRACE_TYPE_UNHANDLED)
2681 return ret;
2684 if (iter->ent->type == TRACE_BPUTS &&
2685 trace_flags & TRACE_ITER_PRINTK &&
2686 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
2687 return trace_print_bputs_msg_only(iter);
2689 if (iter->ent->type == TRACE_BPRINT &&
2690 trace_flags & TRACE_ITER_PRINTK &&
2691 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
2692 return trace_print_bprintk_msg_only(iter);
2694 if (iter->ent->type == TRACE_PRINT &&
2695 trace_flags & TRACE_ITER_PRINTK &&
2696 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
2697 return trace_print_printk_msg_only(iter);
2699 if (trace_flags & TRACE_ITER_BIN)
2700 return print_bin_fmt(iter);
2702 if (trace_flags & TRACE_ITER_HEX)
2703 return print_hex_fmt(iter);
2705 if (trace_flags & TRACE_ITER_RAW)
2706 return print_raw_fmt(iter);
2708 return print_trace_fmt(iter);
2711 void trace_latency_header(struct seq_file *m)
2713 struct trace_iterator *iter = m->private;
2715 /* print nothing if the buffers are empty */
2716 if (trace_empty(iter))
2717 return;
2719 if (iter->iter_flags & TRACE_FILE_LAT_FMT)
2720 print_trace_header(m, iter);
2722 if (!(trace_flags & TRACE_ITER_VERBOSE))
2723 print_lat_help_header(m);
2726 void trace_default_header(struct seq_file *m)
2728 struct trace_iterator *iter = m->private;
2730 if (!(trace_flags & TRACE_ITER_CONTEXT_INFO))
2731 return;
2733 if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
2734 /* print nothing if the buffers are empty */
2735 if (trace_empty(iter))
2736 return;
2737 print_trace_header(m, iter);
2738 if (!(trace_flags & TRACE_ITER_VERBOSE))
2739 print_lat_help_header(m);
2740 } else {
2741 if (!(trace_flags & TRACE_ITER_VERBOSE)) {
2742 if (trace_flags & TRACE_ITER_IRQ_INFO)
2743 print_func_help_header_irq(iter->trace_buffer, m);
2744 else
2745 print_func_help_header(iter->trace_buffer, m);
2750 static void test_ftrace_alive(struct seq_file *m)
2752 if (!ftrace_is_dead())
2753 return;
2754 seq_printf(m, "# WARNING: FUNCTION TRACING IS CORRUPTED\n");
2755 seq_printf(m, "# MAY BE MISSING FUNCTION EVENTS\n");
2758 #ifdef CONFIG_TRACER_MAX_TRACE
2759 static void show_snapshot_main_help(struct seq_file *m)
2761 seq_printf(m, "# echo 0 > snapshot : Clears and frees snapshot buffer\n");
2762 seq_printf(m, "# echo 1 > snapshot : Allocates snapshot buffer, if not already allocated.\n");
2763 seq_printf(m, "# Takes a snapshot of the main buffer.\n");
2764 seq_printf(m, "# echo 2 > snapshot : Clears snapshot buffer (but does not allocate)\n");
2765 seq_printf(m, "# (Doesn't have to be '2' works with any number that\n");
2766 seq_printf(m, "# is not a '0' or '1')\n");
2769 static void show_snapshot_percpu_help(struct seq_file *m)
2771 seq_printf(m, "# echo 0 > snapshot : Invalid for per_cpu snapshot file.\n");
2772 #ifdef CONFIG_RING_BUFFER_ALLOW_SWAP
2773 seq_printf(m, "# echo 1 > snapshot : Allocates snapshot buffer, if not already allocated.\n");
2774 seq_printf(m, "# Takes a snapshot of the main buffer for this cpu.\n");
2775 #else
2776 seq_printf(m, "# echo 1 > snapshot : Not supported with this kernel.\n");
2777 seq_printf(m, "# Must use main snapshot file to allocate.\n");
2778 #endif
2779 seq_printf(m, "# echo 2 > snapshot : Clears this cpu's snapshot buffer (but does not allocate)\n");
2780 seq_printf(m, "# (Doesn't have to be '2' works with any number that\n");
2781 seq_printf(m, "# is not a '0' or '1')\n");
2784 static void print_snapshot_help(struct seq_file *m, struct trace_iterator *iter)
2786 if (iter->tr->allocated_snapshot)
2787 seq_printf(m, "#\n# * Snapshot is allocated *\n#\n");
2788 else
2789 seq_printf(m, "#\n# * Snapshot is freed *\n#\n");
2791 seq_printf(m, "# Snapshot commands:\n");
2792 if (iter->cpu_file == RING_BUFFER_ALL_CPUS)
2793 show_snapshot_main_help(m);
2794 else
2795 show_snapshot_percpu_help(m);
2797 #else
2798 /* Should never be called */
2799 static inline void print_snapshot_help(struct seq_file *m, struct trace_iterator *iter) { }
2800 #endif
2802 static int s_show(struct seq_file *m, void *v)
2804 struct trace_iterator *iter = v;
2805 int ret;
2807 if (iter->ent == NULL) {
2808 if (iter->tr) {
2809 seq_printf(m, "# tracer: %s\n", iter->trace->name);
2810 seq_puts(m, "#\n");
2811 test_ftrace_alive(m);
2813 if (iter->snapshot && trace_empty(iter))
2814 print_snapshot_help(m, iter);
2815 else if (iter->trace && iter->trace->print_header)
2816 iter->trace->print_header(m);
2817 else
2818 trace_default_header(m);
2820 } else if (iter->leftover) {
2822 * If we filled the seq_file buffer earlier, we
2823 * want to just show it now.
2825 ret = trace_print_seq(m, &iter->seq);
2827 /* ret should this time be zero, but you never know */
2828 iter->leftover = ret;
2830 } else {
2831 print_trace_line(iter);
2832 ret = trace_print_seq(m, &iter->seq);
2834 * If we overflow the seq_file buffer, then it will
2835 * ask us for this data again at start up.
2836 * Use that instead.
2837 * ret is 0 if seq_file write succeeded.
2838 * -1 otherwise.
2840 iter->leftover = ret;
2843 return 0;
2847 * Should be used after trace_array_get(), trace_types_lock
2848 * ensures that i_cdev was already initialized.
2850 static inline int tracing_get_cpu(struct inode *inode)
2852 if (inode->i_cdev) /* See trace_create_cpu_file() */
2853 return (long)inode->i_cdev - 1;
2854 return RING_BUFFER_ALL_CPUS;
2857 static const struct seq_operations tracer_seq_ops = {
2858 .start = s_start,
2859 .next = s_next,
2860 .stop = s_stop,
2861 .show = s_show,
2864 static struct trace_iterator *
2865 __tracing_open(struct trace_array *tr, struct trace_cpu *tc,
2866 struct inode *inode, struct file *file, bool snapshot)
2868 struct trace_iterator *iter;
2869 int cpu;
2871 if (tracing_disabled)
2872 return ERR_PTR(-ENODEV);
2874 iter = __seq_open_private(file, &tracer_seq_ops, sizeof(*iter));
2875 if (!iter)
2876 return ERR_PTR(-ENOMEM);
2878 iter->buffer_iter = kzalloc(sizeof(*iter->buffer_iter) * num_possible_cpus(),
2879 GFP_KERNEL);
2880 if (!iter->buffer_iter)
2881 goto release;
2884 * We make a copy of the current tracer to avoid concurrent
2885 * changes on it while we are reading.
2887 mutex_lock(&trace_types_lock);
2888 iter->trace = kzalloc(sizeof(*iter->trace), GFP_KERNEL);
2889 if (!iter->trace)
2890 goto fail;
2892 *iter->trace = *tr->current_trace;
2894 if (!zalloc_cpumask_var(&iter->started, GFP_KERNEL))
2895 goto fail;
2897 iter->tr = tr;
2899 #ifdef CONFIG_TRACER_MAX_TRACE
2900 /* Currently only the top directory has a snapshot */
2901 if (tr->current_trace->print_max || snapshot)
2902 iter->trace_buffer = &tr->max_buffer;
2903 else
2904 #endif
2905 iter->trace_buffer = &tr->trace_buffer;
2906 iter->snapshot = snapshot;
2907 iter->pos = -1;
2908 mutex_init(&iter->mutex);
2909 iter->cpu_file = tc->cpu;
2911 /* Notify the tracer early; before we stop tracing. */
2912 if (iter->trace && iter->trace->open)
2913 iter->trace->open(iter);
2915 /* Annotate start of buffers if we had overruns */
2916 if (ring_buffer_overruns(iter->trace_buffer->buffer))
2917 iter->iter_flags |= TRACE_FILE_ANNOTATE;
2919 /* Output in nanoseconds only if we are using a clock in nanoseconds. */
2920 if (trace_clocks[tr->clock_id].in_ns)
2921 iter->iter_flags |= TRACE_FILE_TIME_IN_NS;
2923 /* stop the trace while dumping if we are not opening "snapshot" */
2924 if (!iter->snapshot)
2925 tracing_stop_tr(tr);
2927 if (iter->cpu_file == RING_BUFFER_ALL_CPUS) {
2928 for_each_tracing_cpu(cpu) {
2929 iter->buffer_iter[cpu] =
2930 ring_buffer_read_prepare(iter->trace_buffer->buffer, cpu);
2932 ring_buffer_read_prepare_sync();
2933 for_each_tracing_cpu(cpu) {
2934 ring_buffer_read_start(iter->buffer_iter[cpu]);
2935 tracing_iter_reset(iter, cpu);
2937 } else {
2938 cpu = iter->cpu_file;
2939 iter->buffer_iter[cpu] =
2940 ring_buffer_read_prepare(iter->trace_buffer->buffer, cpu);
2941 ring_buffer_read_prepare_sync();
2942 ring_buffer_read_start(iter->buffer_iter[cpu]);
2943 tracing_iter_reset(iter, cpu);
2946 mutex_unlock(&trace_types_lock);
2948 return iter;
2950 fail:
2951 mutex_unlock(&trace_types_lock);
2952 kfree(iter->trace);
2953 kfree(iter->buffer_iter);
2954 release:
2955 seq_release_private(inode, file);
2956 return ERR_PTR(-ENOMEM);
2959 int tracing_open_generic(struct inode *inode, struct file *filp)
2961 if (tracing_disabled)
2962 return -ENODEV;
2964 filp->private_data = inode->i_private;
2965 return 0;
2969 * Open and update trace_array ref count.
2970 * Must have the current trace_array passed to it.
2972 static int tracing_open_generic_tr(struct inode *inode, struct file *filp)
2974 struct trace_array *tr = inode->i_private;
2976 if (tracing_disabled)
2977 return -ENODEV;
2979 if (trace_array_get(tr) < 0)
2980 return -ENODEV;
2982 filp->private_data = inode->i_private;
2984 return 0;
2988 static int tracing_open_generic_tc(struct inode *inode, struct file *filp)
2990 struct trace_cpu *tc = inode->i_private;
2991 struct trace_array *tr = tc->tr;
2993 if (tracing_disabled)
2994 return -ENODEV;
2996 if (trace_array_get(tr) < 0)
2997 return -ENODEV;
2999 filp->private_data = inode->i_private;
3001 return 0;
3005 static int tracing_release(struct inode *inode, struct file *file)
3007 struct seq_file *m = file->private_data;
3008 struct trace_iterator *iter;
3009 struct trace_array *tr;
3010 int cpu;
3012 /* Writes do not use seq_file, need to grab tr from inode */
3013 if (!(file->f_mode & FMODE_READ)) {
3014 struct trace_cpu *tc = inode->i_private;
3016 trace_array_put(tc->tr);
3017 return 0;
3020 iter = m->private;
3021 tr = iter->tr;
3023 mutex_lock(&trace_types_lock);
3025 for_each_tracing_cpu(cpu) {
3026 if (iter->buffer_iter[cpu])
3027 ring_buffer_read_finish(iter->buffer_iter[cpu]);
3030 if (iter->trace && iter->trace->close)
3031 iter->trace->close(iter);
3033 if (!iter->snapshot)
3034 /* reenable tracing if it was previously enabled */
3035 tracing_start_tr(tr);
3037 __trace_array_put(tr);
3039 mutex_unlock(&trace_types_lock);
3041 mutex_destroy(&iter->mutex);
3042 free_cpumask_var(iter->started);
3043 kfree(iter->trace);
3044 kfree(iter->buffer_iter);
3045 seq_release_private(inode, file);
3047 return 0;
3050 static int tracing_release_generic_tr(struct inode *inode, struct file *file)
3052 struct trace_array *tr = inode->i_private;
3054 trace_array_put(tr);
3055 return 0;
3058 static int tracing_release_generic_tc(struct inode *inode, struct file *file)
3060 struct trace_cpu *tc = inode->i_private;
3061 struct trace_array *tr = tc->tr;
3063 trace_array_put(tr);
3064 return 0;
3067 static int tracing_single_release_tr(struct inode *inode, struct file *file)
3069 struct trace_array *tr = inode->i_private;
3071 trace_array_put(tr);
3073 return single_release(inode, file);
3076 static int tracing_open(struct inode *inode, struct file *file)
3078 struct trace_cpu *tc = inode->i_private;
3079 struct trace_array *tr = tc->tr;
3080 struct trace_iterator *iter;
3081 int ret = 0;
3083 if (trace_array_get(tr) < 0)
3084 return -ENODEV;
3086 /* If this file was open for write, then erase contents */
3087 if ((file->f_mode & FMODE_WRITE) &&
3088 (file->f_flags & O_TRUNC)) {
3089 if (tc->cpu == RING_BUFFER_ALL_CPUS)
3090 tracing_reset_online_cpus(&tr->trace_buffer);
3091 else
3092 tracing_reset(&tr->trace_buffer, tc->cpu);
3095 if (file->f_mode & FMODE_READ) {
3096 iter = __tracing_open(tr, tc, inode, file, false);
3097 if (IS_ERR(iter))
3098 ret = PTR_ERR(iter);
3099 else if (trace_flags & TRACE_ITER_LATENCY_FMT)
3100 iter->iter_flags |= TRACE_FILE_LAT_FMT;
3103 if (ret < 0)
3104 trace_array_put(tr);
3106 return ret;
3109 static void *
3110 t_next(struct seq_file *m, void *v, loff_t *pos)
3112 struct tracer *t = v;
3114 (*pos)++;
3116 if (t)
3117 t = t->next;
3119 return t;
3122 static void *t_start(struct seq_file *m, loff_t *pos)
3124 struct tracer *t;
3125 loff_t l = 0;
3127 mutex_lock(&trace_types_lock);
3128 for (t = trace_types; t && l < *pos; t = t_next(m, t, &l))
3131 return t;
3134 static void t_stop(struct seq_file *m, void *p)
3136 mutex_unlock(&trace_types_lock);
3139 static int t_show(struct seq_file *m, void *v)
3141 struct tracer *t = v;
3143 if (!t)
3144 return 0;
3146 seq_printf(m, "%s", t->name);
3147 if (t->next)
3148 seq_putc(m, ' ');
3149 else
3150 seq_putc(m, '\n');
3152 return 0;
3155 static const struct seq_operations show_traces_seq_ops = {
3156 .start = t_start,
3157 .next = t_next,
3158 .stop = t_stop,
3159 .show = t_show,
3162 static int show_traces_open(struct inode *inode, struct file *file)
3164 if (tracing_disabled)
3165 return -ENODEV;
3167 return seq_open(file, &show_traces_seq_ops);
3170 static ssize_t
3171 tracing_write_stub(struct file *filp, const char __user *ubuf,
3172 size_t count, loff_t *ppos)
3174 return count;
3177 static loff_t tracing_seek(struct file *file, loff_t offset, int origin)
3179 if (file->f_mode & FMODE_READ)
3180 return seq_lseek(file, offset, origin);
3181 else
3182 return 0;
3185 static const struct file_operations tracing_fops = {
3186 .open = tracing_open,
3187 .read = seq_read,
3188 .write = tracing_write_stub,
3189 .llseek = tracing_seek,
3190 .release = tracing_release,
3193 static const struct file_operations show_traces_fops = {
3194 .open = show_traces_open,
3195 .read = seq_read,
3196 .release = seq_release,
3197 .llseek = seq_lseek,
3201 * Only trace on a CPU if the bitmask is set:
3203 static cpumask_var_t tracing_cpumask;
3206 * The tracer itself will not take this lock, but still we want
3207 * to provide a consistent cpumask to user-space:
3209 static DEFINE_MUTEX(tracing_cpumask_update_lock);
3212 * Temporary storage for the character representation of the
3213 * CPU bitmask (and one more byte for the newline):
3215 static char mask_str[NR_CPUS + 1];
3217 static ssize_t
3218 tracing_cpumask_read(struct file *filp, char __user *ubuf,
3219 size_t count, loff_t *ppos)
3221 int len;
3223 mutex_lock(&tracing_cpumask_update_lock);
3225 len = cpumask_scnprintf(mask_str, count, tracing_cpumask);
3226 if (count - len < 2) {
3227 count = -EINVAL;
3228 goto out_err;
3230 len += sprintf(mask_str + len, "\n");
3231 count = simple_read_from_buffer(ubuf, count, ppos, mask_str, NR_CPUS+1);
3233 out_err:
3234 mutex_unlock(&tracing_cpumask_update_lock);
3236 return count;
3239 static ssize_t
3240 tracing_cpumask_write(struct file *filp, const char __user *ubuf,
3241 size_t count, loff_t *ppos)
3243 struct trace_array *tr = filp->private_data;
3244 cpumask_var_t tracing_cpumask_new;
3245 int err, cpu;
3247 if (!alloc_cpumask_var(&tracing_cpumask_new, GFP_KERNEL))
3248 return -ENOMEM;
3250 err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
3251 if (err)
3252 goto err_unlock;
3254 mutex_lock(&tracing_cpumask_update_lock);
3256 local_irq_disable();
3257 arch_spin_lock(&ftrace_max_lock);
3258 for_each_tracing_cpu(cpu) {
3260 * Increase/decrease the disabled counter if we are
3261 * about to flip a bit in the cpumask:
3263 if (cpumask_test_cpu(cpu, tracing_cpumask) &&
3264 !cpumask_test_cpu(cpu, tracing_cpumask_new)) {
3265 atomic_inc(&per_cpu_ptr(tr->trace_buffer.data, cpu)->disabled);
3266 ring_buffer_record_disable_cpu(tr->trace_buffer.buffer, cpu);
3268 if (!cpumask_test_cpu(cpu, tracing_cpumask) &&
3269 cpumask_test_cpu(cpu, tracing_cpumask_new)) {
3270 atomic_dec(&per_cpu_ptr(tr->trace_buffer.data, cpu)->disabled);
3271 ring_buffer_record_enable_cpu(tr->trace_buffer.buffer, cpu);
3274 arch_spin_unlock(&ftrace_max_lock);
3275 local_irq_enable();
3277 cpumask_copy(tracing_cpumask, tracing_cpumask_new);
3279 mutex_unlock(&tracing_cpumask_update_lock);
3280 free_cpumask_var(tracing_cpumask_new);
3282 return count;
3284 err_unlock:
3285 free_cpumask_var(tracing_cpumask_new);
3287 return err;
3290 static const struct file_operations tracing_cpumask_fops = {
3291 .open = tracing_open_generic,
3292 .read = tracing_cpumask_read,
3293 .write = tracing_cpumask_write,
3294 .llseek = generic_file_llseek,
3297 static int tracing_trace_options_show(struct seq_file *m, void *v)
3299 struct tracer_opt *trace_opts;
3300 struct trace_array *tr = m->private;
3301 u32 tracer_flags;
3302 int i;
3304 mutex_lock(&trace_types_lock);
3305 tracer_flags = tr->current_trace->flags->val;
3306 trace_opts = tr->current_trace->flags->opts;
3308 for (i = 0; trace_options[i]; i++) {
3309 if (trace_flags & (1 << i))
3310 seq_printf(m, "%s\n", trace_options[i]);
3311 else
3312 seq_printf(m, "no%s\n", trace_options[i]);
3315 for (i = 0; trace_opts[i].name; i++) {
3316 if (tracer_flags & trace_opts[i].bit)
3317 seq_printf(m, "%s\n", trace_opts[i].name);
3318 else
3319 seq_printf(m, "no%s\n", trace_opts[i].name);
3321 mutex_unlock(&trace_types_lock);
3323 return 0;
3326 static int __set_tracer_option(struct tracer *trace,
3327 struct tracer_flags *tracer_flags,
3328 struct tracer_opt *opts, int neg)
3330 int ret;
3332 ret = trace->set_flag(tracer_flags->val, opts->bit, !neg);
3333 if (ret)
3334 return ret;
3336 if (neg)
3337 tracer_flags->val &= ~opts->bit;
3338 else
3339 tracer_flags->val |= opts->bit;
3340 return 0;
3343 /* Try to assign a tracer specific option */
3344 static int set_tracer_option(struct tracer *trace, char *cmp, int neg)
3346 struct tracer_flags *tracer_flags = trace->flags;
3347 struct tracer_opt *opts = NULL;
3348 int i;
3350 for (i = 0; tracer_flags->opts[i].name; i++) {
3351 opts = &tracer_flags->opts[i];
3353 if (strcmp(cmp, opts->name) == 0)
3354 return __set_tracer_option(trace, trace->flags,
3355 opts, neg);
3358 return -EINVAL;
3361 /* Some tracers require overwrite to stay enabled */
3362 int trace_keep_overwrite(struct tracer *tracer, u32 mask, int set)
3364 if (tracer->enabled && (mask & TRACE_ITER_OVERWRITE) && !set)
3365 return -1;
3367 return 0;
3370 int set_tracer_flag(struct trace_array *tr, unsigned int mask, int enabled)
3372 /* do nothing if flag is already set */
3373 if (!!(trace_flags & mask) == !!enabled)
3374 return 0;
3376 /* Give the tracer a chance to approve the change */
3377 if (tr->current_trace->flag_changed)
3378 if (tr->current_trace->flag_changed(tr->current_trace, mask, !!enabled))
3379 return -EINVAL;
3381 if (enabled)
3382 trace_flags |= mask;
3383 else
3384 trace_flags &= ~mask;
3386 if (mask == TRACE_ITER_RECORD_CMD)
3387 trace_event_enable_cmd_record(enabled);
3389 if (mask == TRACE_ITER_OVERWRITE) {
3390 ring_buffer_change_overwrite(tr->trace_buffer.buffer, enabled);
3391 #ifdef CONFIG_TRACER_MAX_TRACE
3392 ring_buffer_change_overwrite(tr->max_buffer.buffer, enabled);
3393 #endif
3396 if (mask == TRACE_ITER_PRINTK)
3397 trace_printk_start_stop_comm(enabled);
3399 return 0;
3402 static int trace_set_options(struct trace_array *tr, char *option)
3404 char *cmp;
3405 int neg = 0;
3406 int ret = -ENODEV;
3407 int i;
3409 cmp = strstrip(option);
3411 if (strncmp(cmp, "no", 2) == 0) {
3412 neg = 1;
3413 cmp += 2;
3416 mutex_lock(&trace_types_lock);
3418 for (i = 0; trace_options[i]; i++) {
3419 if (strcmp(cmp, trace_options[i]) == 0) {
3420 ret = set_tracer_flag(tr, 1 << i, !neg);
3421 break;
3425 /* If no option could be set, test the specific tracer options */
3426 if (!trace_options[i])
3427 ret = set_tracer_option(tr->current_trace, cmp, neg);
3429 mutex_unlock(&trace_types_lock);
3431 return ret;
3434 static ssize_t
3435 tracing_trace_options_write(struct file *filp, const char __user *ubuf,
3436 size_t cnt, loff_t *ppos)
3438 struct seq_file *m = filp->private_data;
3439 struct trace_array *tr = m->private;
3440 char buf[64];
3441 int ret;
3443 if (cnt >= sizeof(buf))
3444 return -EINVAL;
3446 if (copy_from_user(&buf, ubuf, cnt))
3447 return -EFAULT;
3449 buf[cnt] = 0;
3451 ret = trace_set_options(tr, buf);
3452 if (ret < 0)
3453 return ret;
3455 *ppos += cnt;
3457 return cnt;
3460 static int tracing_trace_options_open(struct inode *inode, struct file *file)
3462 struct trace_array *tr = inode->i_private;
3463 int ret;
3465 if (tracing_disabled)
3466 return -ENODEV;
3468 if (trace_array_get(tr) < 0)
3469 return -ENODEV;
3471 ret = single_open(file, tracing_trace_options_show, inode->i_private);
3472 if (ret < 0)
3473 trace_array_put(tr);
3475 return ret;
3478 static const struct file_operations tracing_iter_fops = {
3479 .open = tracing_trace_options_open,
3480 .read = seq_read,
3481 .llseek = seq_lseek,
3482 .release = tracing_single_release_tr,
3483 .write = tracing_trace_options_write,
3486 static const char readme_msg[] =
3487 "tracing mini-HOWTO:\n\n"
3488 "# echo 0 > tracing_on : quick way to disable tracing\n"
3489 "# echo 1 > tracing_on : quick way to re-enable tracing\n\n"
3490 " Important files:\n"
3491 " trace\t\t\t- The static contents of the buffer\n"
3492 "\t\t\t To clear the buffer write into this file: echo > trace\n"
3493 " trace_pipe\t\t- A consuming read to see the contents of the buffer\n"
3494 " current_tracer\t- function and latency tracers\n"
3495 " available_tracers\t- list of configured tracers for current_tracer\n"
3496 " buffer_size_kb\t- view and modify size of per cpu buffer\n"
3497 " buffer_total_size_kb - view total size of all cpu buffers\n\n"
3498 " trace_clock\t\t-change the clock used to order events\n"
3499 " local: Per cpu clock but may not be synced across CPUs\n"
3500 " global: Synced across CPUs but slows tracing down.\n"
3501 " counter: Not a clock, but just an increment\n"
3502 " uptime: Jiffy counter from time of boot\n"
3503 " perf: Same clock that perf events use\n"
3504 #ifdef CONFIG_X86_64
3505 " x86-tsc: TSC cycle counter\n"
3506 #endif
3507 "\n trace_marker\t\t- Writes into this file writes into the kernel buffer\n"
3508 " tracing_cpumask\t- Limit which CPUs to trace\n"
3509 " instances\t\t- Make sub-buffers with: mkdir instances/foo\n"
3510 "\t\t\t Remove sub-buffer with rmdir\n"
3511 " trace_options\t\t- Set format or modify how tracing happens\n"
3512 "\t\t\t Disable an option by adding a suffix 'no' to the option name\n"
3513 #ifdef CONFIG_DYNAMIC_FTRACE
3514 "\n available_filter_functions - list of functions that can be filtered on\n"
3515 " set_ftrace_filter\t- echo function name in here to only trace these functions\n"
3516 " accepts: func_full_name, *func_end, func_begin*, *func_middle*\n"
3517 " modules: Can select a group via module\n"
3518 " Format: :mod:<module-name>\n"
3519 " example: echo :mod:ext3 > set_ftrace_filter\n"
3520 " triggers: a command to perform when function is hit\n"
3521 " Format: <function>:<trigger>[:count]\n"
3522 " trigger: traceon, traceoff\n"
3523 " enable_event:<system>:<event>\n"
3524 " disable_event:<system>:<event>\n"
3525 #ifdef CONFIG_STACKTRACE
3526 " stacktrace\n"
3527 #endif
3528 #ifdef CONFIG_TRACER_SNAPSHOT
3529 " snapshot\n"
3530 #endif
3531 " example: echo do_fault:traceoff > set_ftrace_filter\n"
3532 " echo do_trap:traceoff:3 > set_ftrace_filter\n"
3533 " The first one will disable tracing every time do_fault is hit\n"
3534 " The second will disable tracing at most 3 times when do_trap is hit\n"
3535 " The first time do trap is hit and it disables tracing, the counter\n"
3536 " will decrement to 2. If tracing is already disabled, the counter\n"
3537 " will not decrement. It only decrements when the trigger did work\n"
3538 " To remove trigger without count:\n"
3539 " echo '!<function>:<trigger> > set_ftrace_filter\n"
3540 " To remove trigger with a count:\n"
3541 " echo '!<function>:<trigger>:0 > set_ftrace_filter\n"
3542 " set_ftrace_notrace\t- echo function name in here to never trace.\n"
3543 " accepts: func_full_name, *func_end, func_begin*, *func_middle*\n"
3544 " modules: Can select a group via module command :mod:\n"
3545 " Does not accept triggers\n"
3546 #endif /* CONFIG_DYNAMIC_FTRACE */
3547 #ifdef CONFIG_FUNCTION_TRACER
3548 " set_ftrace_pid\t- Write pid(s) to only function trace those pids (function)\n"
3549 #endif
3550 #ifdef CONFIG_FUNCTION_GRAPH_TRACER
3551 " set_graph_function\t- Trace the nested calls of a function (function_graph)\n"
3552 " max_graph_depth\t- Trace a limited depth of nested calls (0 is unlimited)\n"
3553 #endif
3554 #ifdef CONFIG_TRACER_SNAPSHOT
3555 "\n snapshot\t\t- Like 'trace' but shows the content of the static snapshot buffer\n"
3556 "\t\t\t Read the contents for more information\n"
3557 #endif
3558 #ifdef CONFIG_STACK_TRACER
3559 " stack_trace\t\t- Shows the max stack trace when active\n"
3560 " stack_max_size\t- Shows current max stack size that was traced\n"
3561 "\t\t\t Write into this file to reset the max size (trigger a new trace)\n"
3562 #ifdef CONFIG_DYNAMIC_FTRACE
3563 " stack_trace_filter\t- Like set_ftrace_filter but limits what stack_trace traces\n"
3564 #endif
3565 #endif /* CONFIG_STACK_TRACER */
3568 static ssize_t
3569 tracing_readme_read(struct file *filp, char __user *ubuf,
3570 size_t cnt, loff_t *ppos)
3572 return simple_read_from_buffer(ubuf, cnt, ppos,
3573 readme_msg, strlen(readme_msg));
3576 static const struct file_operations tracing_readme_fops = {
3577 .open = tracing_open_generic,
3578 .read = tracing_readme_read,
3579 .llseek = generic_file_llseek,
3582 static ssize_t
3583 tracing_saved_cmdlines_read(struct file *file, char __user *ubuf,
3584 size_t cnt, loff_t *ppos)
3586 char *buf_comm;
3587 char *file_buf;
3588 char *buf;
3589 int len = 0;
3590 int pid;
3591 int i;
3593 file_buf = kmalloc(SAVED_CMDLINES*(16+TASK_COMM_LEN), GFP_KERNEL);
3594 if (!file_buf)
3595 return -ENOMEM;
3597 buf_comm = kmalloc(TASK_COMM_LEN, GFP_KERNEL);
3598 if (!buf_comm) {
3599 kfree(file_buf);
3600 return -ENOMEM;
3603 buf = file_buf;
3605 for (i = 0; i < SAVED_CMDLINES; i++) {
3606 int r;
3608 pid = map_cmdline_to_pid[i];
3609 if (pid == -1 || pid == NO_CMDLINE_MAP)
3610 continue;
3612 trace_find_cmdline(pid, buf_comm);
3613 r = sprintf(buf, "%d %s\n", pid, buf_comm);
3614 buf += r;
3615 len += r;
3618 len = simple_read_from_buffer(ubuf, cnt, ppos,
3619 file_buf, len);
3621 kfree(file_buf);
3622 kfree(buf_comm);
3624 return len;
3627 static const struct file_operations tracing_saved_cmdlines_fops = {
3628 .open = tracing_open_generic,
3629 .read = tracing_saved_cmdlines_read,
3630 .llseek = generic_file_llseek,
3633 static ssize_t
3634 tracing_set_trace_read(struct file *filp, char __user *ubuf,
3635 size_t cnt, loff_t *ppos)
3637 struct trace_array *tr = filp->private_data;
3638 char buf[MAX_TRACER_SIZE+2];
3639 int r;
3641 mutex_lock(&trace_types_lock);
3642 r = sprintf(buf, "%s\n", tr->current_trace->name);
3643 mutex_unlock(&trace_types_lock);
3645 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3648 int tracer_init(struct tracer *t, struct trace_array *tr)
3650 tracing_reset_online_cpus(&tr->trace_buffer);
3651 return t->init(tr);
3654 static void set_buffer_entries(struct trace_buffer *buf, unsigned long val)
3656 int cpu;
3658 for_each_tracing_cpu(cpu)
3659 per_cpu_ptr(buf->data, cpu)->entries = val;
3662 #ifdef CONFIG_TRACER_MAX_TRACE
3663 /* resize @tr's buffer to the size of @size_tr's entries */
3664 static int resize_buffer_duplicate_size(struct trace_buffer *trace_buf,
3665 struct trace_buffer *size_buf, int cpu_id)
3667 int cpu, ret = 0;
3669 if (cpu_id == RING_BUFFER_ALL_CPUS) {
3670 for_each_tracing_cpu(cpu) {
3671 ret = ring_buffer_resize(trace_buf->buffer,
3672 per_cpu_ptr(size_buf->data, cpu)->entries, cpu);
3673 if (ret < 0)
3674 break;
3675 per_cpu_ptr(trace_buf->data, cpu)->entries =
3676 per_cpu_ptr(size_buf->data, cpu)->entries;
3678 } else {
3679 ret = ring_buffer_resize(trace_buf->buffer,
3680 per_cpu_ptr(size_buf->data, cpu_id)->entries, cpu_id);
3681 if (ret == 0)
3682 per_cpu_ptr(trace_buf->data, cpu_id)->entries =
3683 per_cpu_ptr(size_buf->data, cpu_id)->entries;
3686 return ret;
3688 #endif /* CONFIG_TRACER_MAX_TRACE */
3690 static int __tracing_resize_ring_buffer(struct trace_array *tr,
3691 unsigned long size, int cpu)
3693 int ret;
3696 * If kernel or user changes the size of the ring buffer
3697 * we use the size that was given, and we can forget about
3698 * expanding it later.
3700 ring_buffer_expanded = true;
3702 /* May be called before buffers are initialized */
3703 if (!tr->trace_buffer.buffer)
3704 return 0;
3706 ret = ring_buffer_resize(tr->trace_buffer.buffer, size, cpu);
3707 if (ret < 0)
3708 return ret;
3710 #ifdef CONFIG_TRACER_MAX_TRACE
3711 if (!(tr->flags & TRACE_ARRAY_FL_GLOBAL) ||
3712 !tr->current_trace->use_max_tr)
3713 goto out;
3715 ret = ring_buffer_resize(tr->max_buffer.buffer, size, cpu);
3716 if (ret < 0) {
3717 int r = resize_buffer_duplicate_size(&tr->trace_buffer,
3718 &tr->trace_buffer, cpu);
3719 if (r < 0) {
3721 * AARGH! We are left with different
3722 * size max buffer!!!!
3723 * The max buffer is our "snapshot" buffer.
3724 * When a tracer needs a snapshot (one of the
3725 * latency tracers), it swaps the max buffer
3726 * with the saved snap shot. We succeeded to
3727 * update the size of the main buffer, but failed to
3728 * update the size of the max buffer. But when we tried
3729 * to reset the main buffer to the original size, we
3730 * failed there too. This is very unlikely to
3731 * happen, but if it does, warn and kill all
3732 * tracing.
3734 WARN_ON(1);
3735 tracing_disabled = 1;
3737 return ret;
3740 if (cpu == RING_BUFFER_ALL_CPUS)
3741 set_buffer_entries(&tr->max_buffer, size);
3742 else
3743 per_cpu_ptr(tr->max_buffer.data, cpu)->entries = size;
3745 out:
3746 #endif /* CONFIG_TRACER_MAX_TRACE */
3748 if (cpu == RING_BUFFER_ALL_CPUS)
3749 set_buffer_entries(&tr->trace_buffer, size);
3750 else
3751 per_cpu_ptr(tr->trace_buffer.data, cpu)->entries = size;
3753 return ret;
3756 static ssize_t tracing_resize_ring_buffer(struct trace_array *tr,
3757 unsigned long size, int cpu_id)
3759 int ret = size;
3761 mutex_lock(&trace_types_lock);
3763 if (cpu_id != RING_BUFFER_ALL_CPUS) {
3764 /* make sure, this cpu is enabled in the mask */
3765 if (!cpumask_test_cpu(cpu_id, tracing_buffer_mask)) {
3766 ret = -EINVAL;
3767 goto out;
3771 ret = __tracing_resize_ring_buffer(tr, size, cpu_id);
3772 if (ret < 0)
3773 ret = -ENOMEM;
3775 out:
3776 mutex_unlock(&trace_types_lock);
3778 return ret;
3783 * tracing_update_buffers - used by tracing facility to expand ring buffers
3785 * To save on memory when the tracing is never used on a system with it
3786 * configured in. The ring buffers are set to a minimum size. But once
3787 * a user starts to use the tracing facility, then they need to grow
3788 * to their default size.
3790 * This function is to be called when a tracer is about to be used.
3792 int tracing_update_buffers(void)
3794 int ret = 0;
3796 mutex_lock(&trace_types_lock);
3797 if (!ring_buffer_expanded)
3798 ret = __tracing_resize_ring_buffer(&global_trace, trace_buf_size,
3799 RING_BUFFER_ALL_CPUS);
3800 mutex_unlock(&trace_types_lock);
3802 return ret;
3805 struct trace_option_dentry;
3807 static struct trace_option_dentry *
3808 create_trace_option_files(struct trace_array *tr, struct tracer *tracer);
3810 static void
3811 destroy_trace_option_files(struct trace_option_dentry *topts);
3813 static int tracing_set_tracer(const char *buf)
3815 static struct trace_option_dentry *topts;
3816 struct trace_array *tr = &global_trace;
3817 struct tracer *t;
3818 #ifdef CONFIG_TRACER_MAX_TRACE
3819 bool had_max_tr;
3820 #endif
3821 int ret = 0;
3823 mutex_lock(&trace_types_lock);
3825 if (!ring_buffer_expanded) {
3826 ret = __tracing_resize_ring_buffer(tr, trace_buf_size,
3827 RING_BUFFER_ALL_CPUS);
3828 if (ret < 0)
3829 goto out;
3830 ret = 0;
3833 for (t = trace_types; t; t = t->next) {
3834 if (strcmp(t->name, buf) == 0)
3835 break;
3837 if (!t) {
3838 ret = -EINVAL;
3839 goto out;
3841 if (t == tr->current_trace)
3842 goto out;
3844 trace_branch_disable();
3846 tr->current_trace->enabled = false;
3848 if (tr->current_trace->reset)
3849 tr->current_trace->reset(tr);
3851 /* Current trace needs to be nop_trace before synchronize_sched */
3852 tr->current_trace = &nop_trace;
3854 #ifdef CONFIG_TRACER_MAX_TRACE
3855 had_max_tr = tr->allocated_snapshot;
3857 if (had_max_tr && !t->use_max_tr) {
3859 * We need to make sure that the update_max_tr sees that
3860 * current_trace changed to nop_trace to keep it from
3861 * swapping the buffers after we resize it.
3862 * The update_max_tr is called from interrupts disabled
3863 * so a synchronized_sched() is sufficient.
3865 synchronize_sched();
3866 free_snapshot(tr);
3868 #endif
3869 destroy_trace_option_files(topts);
3871 topts = create_trace_option_files(tr, t);
3873 #ifdef CONFIG_TRACER_MAX_TRACE
3874 if (t->use_max_tr && !had_max_tr) {
3875 ret = alloc_snapshot(tr);
3876 if (ret < 0)
3877 goto out;
3879 #endif
3881 if (t->init) {
3882 ret = tracer_init(t, tr);
3883 if (ret)
3884 goto out;
3887 tr->current_trace = t;
3888 tr->current_trace->enabled = true;
3889 trace_branch_enable(tr);
3890 out:
3891 mutex_unlock(&trace_types_lock);
3893 return ret;
3896 static ssize_t
3897 tracing_set_trace_write(struct file *filp, const char __user *ubuf,
3898 size_t cnt, loff_t *ppos)
3900 char buf[MAX_TRACER_SIZE+1];
3901 int i;
3902 size_t ret;
3903 int err;
3905 ret = cnt;
3907 if (cnt > MAX_TRACER_SIZE)
3908 cnt = MAX_TRACER_SIZE;
3910 if (copy_from_user(&buf, ubuf, cnt))
3911 return -EFAULT;
3913 buf[cnt] = 0;
3915 /* strip ending whitespace. */
3916 for (i = cnt - 1; i > 0 && isspace(buf[i]); i--)
3917 buf[i] = 0;
3919 err = tracing_set_tracer(buf);
3920 if (err)
3921 return err;
3923 *ppos += ret;
3925 return ret;
3928 static ssize_t
3929 tracing_max_lat_read(struct file *filp, char __user *ubuf,
3930 size_t cnt, loff_t *ppos)
3932 unsigned long *ptr = filp->private_data;
3933 char buf[64];
3934 int r;
3936 r = snprintf(buf, sizeof(buf), "%ld\n",
3937 *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
3938 if (r > sizeof(buf))
3939 r = sizeof(buf);
3940 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3943 static ssize_t
3944 tracing_max_lat_write(struct file *filp, const char __user *ubuf,
3945 size_t cnt, loff_t *ppos)
3947 unsigned long *ptr = filp->private_data;
3948 unsigned long val;
3949 int ret;
3951 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
3952 if (ret)
3953 return ret;
3955 *ptr = val * 1000;
3957 return cnt;
3960 static int tracing_open_pipe(struct inode *inode, struct file *filp)
3962 struct trace_cpu *tc = inode->i_private;
3963 struct trace_array *tr = tc->tr;
3964 struct trace_iterator *iter;
3965 int ret = 0;
3967 if (tracing_disabled)
3968 return -ENODEV;
3970 if (trace_array_get(tr) < 0)
3971 return -ENODEV;
3973 mutex_lock(&trace_types_lock);
3975 /* create a buffer to store the information to pass to userspace */
3976 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
3977 if (!iter) {
3978 ret = -ENOMEM;
3979 __trace_array_put(tr);
3980 goto out;
3984 * We make a copy of the current tracer to avoid concurrent
3985 * changes on it while we are reading.
3987 iter->trace = kmalloc(sizeof(*iter->trace), GFP_KERNEL);
3988 if (!iter->trace) {
3989 ret = -ENOMEM;
3990 goto fail;
3992 *iter->trace = *tr->current_trace;
3994 if (!alloc_cpumask_var(&iter->started, GFP_KERNEL)) {
3995 ret = -ENOMEM;
3996 goto fail;
3999 /* trace pipe does not show start of buffer */
4000 cpumask_setall(iter->started);
4002 if (trace_flags & TRACE_ITER_LATENCY_FMT)
4003 iter->iter_flags |= TRACE_FILE_LAT_FMT;
4005 /* Output in nanoseconds only if we are using a clock in nanoseconds. */
4006 if (trace_clocks[tr->clock_id].in_ns)
4007 iter->iter_flags |= TRACE_FILE_TIME_IN_NS;
4009 iter->cpu_file = tc->cpu;
4010 iter->tr = tc->tr;
4011 iter->trace_buffer = &tc->tr->trace_buffer;
4012 mutex_init(&iter->mutex);
4013 filp->private_data = iter;
4015 if (iter->trace->pipe_open)
4016 iter->trace->pipe_open(iter);
4018 nonseekable_open(inode, filp);
4019 out:
4020 mutex_unlock(&trace_types_lock);
4021 return ret;
4023 fail:
4024 kfree(iter->trace);
4025 kfree(iter);
4026 __trace_array_put(tr);
4027 mutex_unlock(&trace_types_lock);
4028 return ret;
4031 static int tracing_release_pipe(struct inode *inode, struct file *file)
4033 struct trace_iterator *iter = file->private_data;
4034 struct trace_cpu *tc = inode->i_private;
4035 struct trace_array *tr = tc->tr;
4037 mutex_lock(&trace_types_lock);
4039 if (iter->trace->pipe_close)
4040 iter->trace->pipe_close(iter);
4042 mutex_unlock(&trace_types_lock);
4044 free_cpumask_var(iter->started);
4045 mutex_destroy(&iter->mutex);
4046 kfree(iter->trace);
4047 kfree(iter);
4049 trace_array_put(tr);
4051 return 0;
4054 static unsigned int
4055 trace_poll(struct trace_iterator *iter, struct file *filp, poll_table *poll_table)
4057 /* Iterators are static, they should be filled or empty */
4058 if (trace_buffer_iter(iter, iter->cpu_file))
4059 return POLLIN | POLLRDNORM;
4061 if (trace_flags & TRACE_ITER_BLOCK)
4063 * Always select as readable when in blocking mode
4065 return POLLIN | POLLRDNORM;
4066 else
4067 return ring_buffer_poll_wait(iter->trace_buffer->buffer, iter->cpu_file,
4068 filp, poll_table);
4071 static unsigned int
4072 tracing_poll_pipe(struct file *filp, poll_table *poll_table)
4074 struct trace_iterator *iter = filp->private_data;
4076 return trace_poll(iter, filp, poll_table);
4080 * This is a make-shift waitqueue.
4081 * A tracer might use this callback on some rare cases:
4083 * 1) the current tracer might hold the runqueue lock when it wakes up
4084 * a reader, hence a deadlock (sched, function, and function graph tracers)
4085 * 2) the function tracers, trace all functions, we don't want
4086 * the overhead of calling wake_up and friends
4087 * (and tracing them too)
4089 * Anyway, this is really very primitive wakeup.
4091 void poll_wait_pipe(struct trace_iterator *iter)
4093 set_current_state(TASK_INTERRUPTIBLE);
4094 /* sleep for 100 msecs, and try again. */
4095 schedule_timeout(HZ / 10);
4098 /* Must be called with trace_types_lock mutex held. */
4099 static int tracing_wait_pipe(struct file *filp)
4101 struct trace_iterator *iter = filp->private_data;
4103 while (trace_empty(iter)) {
4105 if ((filp->f_flags & O_NONBLOCK)) {
4106 return -EAGAIN;
4109 mutex_unlock(&iter->mutex);
4111 iter->trace->wait_pipe(iter);
4113 mutex_lock(&iter->mutex);
4115 if (signal_pending(current))
4116 return -EINTR;
4119 * We block until we read something and tracing is disabled.
4120 * We still block if tracing is disabled, but we have never
4121 * read anything. This allows a user to cat this file, and
4122 * then enable tracing. But after we have read something,
4123 * we give an EOF when tracing is again disabled.
4125 * iter->pos will be 0 if we haven't read anything.
4127 if (!tracing_is_on() && iter->pos)
4128 break;
4131 return 1;
4135 * Consumer reader.
4137 static ssize_t
4138 tracing_read_pipe(struct file *filp, char __user *ubuf,
4139 size_t cnt, loff_t *ppos)
4141 struct trace_iterator *iter = filp->private_data;
4142 struct trace_array *tr = iter->tr;
4143 ssize_t sret;
4145 /* return any leftover data */
4146 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
4147 if (sret != -EBUSY)
4148 return sret;
4150 trace_seq_init(&iter->seq);
4152 /* copy the tracer to avoid using a global lock all around */
4153 mutex_lock(&trace_types_lock);
4154 if (unlikely(iter->trace->name != tr->current_trace->name))
4155 *iter->trace = *tr->current_trace;
4156 mutex_unlock(&trace_types_lock);
4159 * Avoid more than one consumer on a single file descriptor
4160 * This is just a matter of traces coherency, the ring buffer itself
4161 * is protected.
4163 mutex_lock(&iter->mutex);
4164 if (iter->trace->read) {
4165 sret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
4166 if (sret)
4167 goto out;
4170 waitagain:
4171 sret = tracing_wait_pipe(filp);
4172 if (sret <= 0)
4173 goto out;
4175 /* stop when tracing is finished */
4176 if (trace_empty(iter)) {
4177 sret = 0;
4178 goto out;
4181 if (cnt >= PAGE_SIZE)
4182 cnt = PAGE_SIZE - 1;
4184 /* reset all but tr, trace, and overruns */
4185 memset(&iter->seq, 0,
4186 sizeof(struct trace_iterator) -
4187 offsetof(struct trace_iterator, seq));
4188 iter->pos = -1;
4190 trace_event_read_lock();
4191 trace_access_lock(iter->cpu_file);
4192 while (trace_find_next_entry_inc(iter) != NULL) {
4193 enum print_line_t ret;
4194 int len = iter->seq.len;
4196 ret = print_trace_line(iter);
4197 if (ret == TRACE_TYPE_PARTIAL_LINE) {
4198 /* don't print partial lines */
4199 iter->seq.len = len;
4200 break;
4202 if (ret != TRACE_TYPE_NO_CONSUME)
4203 trace_consume(iter);
4205 if (iter->seq.len >= cnt)
4206 break;
4209 * Setting the full flag means we reached the trace_seq buffer
4210 * size and we should leave by partial output condition above.
4211 * One of the trace_seq_* functions is not used properly.
4213 WARN_ONCE(iter->seq.full, "full flag set for trace type %d",
4214 iter->ent->type);
4216 trace_access_unlock(iter->cpu_file);
4217 trace_event_read_unlock();
4219 /* Now copy what we have to the user */
4220 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
4221 if (iter->seq.readpos >= iter->seq.len)
4222 trace_seq_init(&iter->seq);
4225 * If there was nothing to send to user, in spite of consuming trace
4226 * entries, go back to wait for more entries.
4228 if (sret == -EBUSY)
4229 goto waitagain;
4231 out:
4232 mutex_unlock(&iter->mutex);
4234 return sret;
4237 static void tracing_pipe_buf_release(struct pipe_inode_info *pipe,
4238 struct pipe_buffer *buf)
4240 __free_page(buf->page);
4243 static void tracing_spd_release_pipe(struct splice_pipe_desc *spd,
4244 unsigned int idx)
4246 __free_page(spd->pages[idx]);
4249 static const struct pipe_buf_operations tracing_pipe_buf_ops = {
4250 .can_merge = 0,
4251 .map = generic_pipe_buf_map,
4252 .unmap = generic_pipe_buf_unmap,
4253 .confirm = generic_pipe_buf_confirm,
4254 .release = tracing_pipe_buf_release,
4255 .steal = generic_pipe_buf_steal,
4256 .get = generic_pipe_buf_get,
4259 static size_t
4260 tracing_fill_pipe_page(size_t rem, struct trace_iterator *iter)
4262 size_t count;
4263 int ret;
4265 /* Seq buffer is page-sized, exactly what we need. */
4266 for (;;) {
4267 count = iter->seq.len;
4268 ret = print_trace_line(iter);
4269 count = iter->seq.len - count;
4270 if (rem < count) {
4271 rem = 0;
4272 iter->seq.len -= count;
4273 break;
4275 if (ret == TRACE_TYPE_PARTIAL_LINE) {
4276 iter->seq.len -= count;
4277 break;
4280 if (ret != TRACE_TYPE_NO_CONSUME)
4281 trace_consume(iter);
4282 rem -= count;
4283 if (!trace_find_next_entry_inc(iter)) {
4284 rem = 0;
4285 iter->ent = NULL;
4286 break;
4290 return rem;
4293 static ssize_t tracing_splice_read_pipe(struct file *filp,
4294 loff_t *ppos,
4295 struct pipe_inode_info *pipe,
4296 size_t len,
4297 unsigned int flags)
4299 struct page *pages_def[PIPE_DEF_BUFFERS];
4300 struct partial_page partial_def[PIPE_DEF_BUFFERS];
4301 struct trace_iterator *iter = filp->private_data;
4302 struct splice_pipe_desc spd = {
4303 .pages = pages_def,
4304 .partial = partial_def,
4305 .nr_pages = 0, /* This gets updated below. */
4306 .nr_pages_max = PIPE_DEF_BUFFERS,
4307 .flags = flags,
4308 .ops = &tracing_pipe_buf_ops,
4309 .spd_release = tracing_spd_release_pipe,
4311 struct trace_array *tr = iter->tr;
4312 ssize_t ret;
4313 size_t rem;
4314 unsigned int i;
4316 if (splice_grow_spd(pipe, &spd))
4317 return -ENOMEM;
4319 /* copy the tracer to avoid using a global lock all around */
4320 mutex_lock(&trace_types_lock);
4321 if (unlikely(iter->trace->name != tr->current_trace->name))
4322 *iter->trace = *tr->current_trace;
4323 mutex_unlock(&trace_types_lock);
4325 mutex_lock(&iter->mutex);
4327 if (iter->trace->splice_read) {
4328 ret = iter->trace->splice_read(iter, filp,
4329 ppos, pipe, len, flags);
4330 if (ret)
4331 goto out_err;
4334 ret = tracing_wait_pipe(filp);
4335 if (ret <= 0)
4336 goto out_err;
4338 if (!iter->ent && !trace_find_next_entry_inc(iter)) {
4339 ret = -EFAULT;
4340 goto out_err;
4343 trace_event_read_lock();
4344 trace_access_lock(iter->cpu_file);
4346 /* Fill as many pages as possible. */
4347 for (i = 0, rem = len; i < pipe->buffers && rem; i++) {
4348 spd.pages[i] = alloc_page(GFP_KERNEL);
4349 if (!spd.pages[i])
4350 break;
4352 rem = tracing_fill_pipe_page(rem, iter);
4354 /* Copy the data into the page, so we can start over. */
4355 ret = trace_seq_to_buffer(&iter->seq,
4356 page_address(spd.pages[i]),
4357 iter->seq.len);
4358 if (ret < 0) {
4359 __free_page(spd.pages[i]);
4360 break;
4362 spd.partial[i].offset = 0;
4363 spd.partial[i].len = iter->seq.len;
4365 trace_seq_init(&iter->seq);
4368 trace_access_unlock(iter->cpu_file);
4369 trace_event_read_unlock();
4370 mutex_unlock(&iter->mutex);
4372 spd.nr_pages = i;
4374 ret = splice_to_pipe(pipe, &spd);
4375 out:
4376 splice_shrink_spd(&spd);
4377 return ret;
4379 out_err:
4380 mutex_unlock(&iter->mutex);
4381 goto out;
4384 static ssize_t
4385 tracing_entries_read(struct file *filp, char __user *ubuf,
4386 size_t cnt, loff_t *ppos)
4388 struct trace_cpu *tc = filp->private_data;
4389 struct trace_array *tr = tc->tr;
4390 char buf[64];
4391 int r = 0;
4392 ssize_t ret;
4394 mutex_lock(&trace_types_lock);
4396 if (tc->cpu == RING_BUFFER_ALL_CPUS) {
4397 int cpu, buf_size_same;
4398 unsigned long size;
4400 size = 0;
4401 buf_size_same = 1;
4402 /* check if all cpu sizes are same */
4403 for_each_tracing_cpu(cpu) {
4404 /* fill in the size from first enabled cpu */
4405 if (size == 0)
4406 size = per_cpu_ptr(tr->trace_buffer.data, cpu)->entries;
4407 if (size != per_cpu_ptr(tr->trace_buffer.data, cpu)->entries) {
4408 buf_size_same = 0;
4409 break;
4413 if (buf_size_same) {
4414 if (!ring_buffer_expanded)
4415 r = sprintf(buf, "%lu (expanded: %lu)\n",
4416 size >> 10,
4417 trace_buf_size >> 10);
4418 else
4419 r = sprintf(buf, "%lu\n", size >> 10);
4420 } else
4421 r = sprintf(buf, "X\n");
4422 } else
4423 r = sprintf(buf, "%lu\n", per_cpu_ptr(tr->trace_buffer.data, tc->cpu)->entries >> 10);
4425 mutex_unlock(&trace_types_lock);
4427 ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
4428 return ret;
4431 static ssize_t
4432 tracing_entries_write(struct file *filp, const char __user *ubuf,
4433 size_t cnt, loff_t *ppos)
4435 struct trace_cpu *tc = filp->private_data;
4436 unsigned long val;
4437 int ret;
4439 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
4440 if (ret)
4441 return ret;
4443 /* must have at least 1 entry */
4444 if (!val)
4445 return -EINVAL;
4447 /* value is in KB */
4448 val <<= 10;
4450 ret = tracing_resize_ring_buffer(tc->tr, val, tc->cpu);
4451 if (ret < 0)
4452 return ret;
4454 *ppos += cnt;
4456 return cnt;
4459 static ssize_t
4460 tracing_total_entries_read(struct file *filp, char __user *ubuf,
4461 size_t cnt, loff_t *ppos)
4463 struct trace_array *tr = filp->private_data;
4464 char buf[64];
4465 int r, cpu;
4466 unsigned long size = 0, expanded_size = 0;
4468 mutex_lock(&trace_types_lock);
4469 for_each_tracing_cpu(cpu) {
4470 size += per_cpu_ptr(tr->trace_buffer.data, cpu)->entries >> 10;
4471 if (!ring_buffer_expanded)
4472 expanded_size += trace_buf_size >> 10;
4474 if (ring_buffer_expanded)
4475 r = sprintf(buf, "%lu\n", size);
4476 else
4477 r = sprintf(buf, "%lu (expanded: %lu)\n", size, expanded_size);
4478 mutex_unlock(&trace_types_lock);
4480 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
4483 static ssize_t
4484 tracing_free_buffer_write(struct file *filp, const char __user *ubuf,
4485 size_t cnt, loff_t *ppos)
4488 * There is no need to read what the user has written, this function
4489 * is just to make sure that there is no error when "echo" is used
4492 *ppos += cnt;
4494 return cnt;
4497 static int
4498 tracing_free_buffer_release(struct inode *inode, struct file *filp)
4500 struct trace_array *tr = inode->i_private;
4502 /* disable tracing ? */
4503 if (trace_flags & TRACE_ITER_STOP_ON_FREE)
4504 tracing_off();
4505 /* resize the ring buffer to 0 */
4506 tracing_resize_ring_buffer(tr, 0, RING_BUFFER_ALL_CPUS);
4508 trace_array_put(tr);
4510 return 0;
4513 static ssize_t
4514 tracing_mark_write(struct file *filp, const char __user *ubuf,
4515 size_t cnt, loff_t *fpos)
4517 unsigned long addr = (unsigned long)ubuf;
4518 struct trace_array *tr = filp->private_data;
4519 struct ring_buffer_event *event;
4520 struct ring_buffer *buffer;
4521 struct print_entry *entry;
4522 unsigned long irq_flags;
4523 struct page *pages[2];
4524 void *map_page[2];
4525 int nr_pages = 1;
4526 ssize_t written;
4527 int offset;
4528 int size;
4529 int len;
4530 int ret;
4531 int i;
4533 if (tracing_disabled)
4534 return -EINVAL;
4536 if (!(trace_flags & TRACE_ITER_MARKERS))
4537 return -EINVAL;
4539 if (cnt > TRACE_BUF_SIZE)
4540 cnt = TRACE_BUF_SIZE;
4543 * Userspace is injecting traces into the kernel trace buffer.
4544 * We want to be as non intrusive as possible.
4545 * To do so, we do not want to allocate any special buffers
4546 * or take any locks, but instead write the userspace data
4547 * straight into the ring buffer.
4549 * First we need to pin the userspace buffer into memory,
4550 * which, most likely it is, because it just referenced it.
4551 * But there's no guarantee that it is. By using get_user_pages_fast()
4552 * and kmap_atomic/kunmap_atomic() we can get access to the
4553 * pages directly. We then write the data directly into the
4554 * ring buffer.
4556 BUILD_BUG_ON(TRACE_BUF_SIZE >= PAGE_SIZE);
4558 /* check if we cross pages */
4559 if ((addr & PAGE_MASK) != ((addr + cnt) & PAGE_MASK))
4560 nr_pages = 2;
4562 offset = addr & (PAGE_SIZE - 1);
4563 addr &= PAGE_MASK;
4565 ret = get_user_pages_fast(addr, nr_pages, 0, pages);
4566 if (ret < nr_pages) {
4567 while (--ret >= 0)
4568 put_page(pages[ret]);
4569 written = -EFAULT;
4570 goto out;
4573 for (i = 0; i < nr_pages; i++)
4574 map_page[i] = kmap_atomic(pages[i]);
4576 local_save_flags(irq_flags);
4577 size = sizeof(*entry) + cnt + 2; /* possible \n added */
4578 buffer = tr->trace_buffer.buffer;
4579 event = trace_buffer_lock_reserve(buffer, TRACE_PRINT, size,
4580 irq_flags, preempt_count());
4581 if (!event) {
4582 /* Ring buffer disabled, return as if not open for write */
4583 written = -EBADF;
4584 goto out_unlock;
4587 entry = ring_buffer_event_data(event);
4588 entry->ip = _THIS_IP_;
4590 if (nr_pages == 2) {
4591 len = PAGE_SIZE - offset;
4592 memcpy(&entry->buf, map_page[0] + offset, len);
4593 memcpy(&entry->buf[len], map_page[1], cnt - len);
4594 } else
4595 memcpy(&entry->buf, map_page[0] + offset, cnt);
4597 if (entry->buf[cnt - 1] != '\n') {
4598 entry->buf[cnt] = '\n';
4599 entry->buf[cnt + 1] = '\0';
4600 } else
4601 entry->buf[cnt] = '\0';
4603 __buffer_unlock_commit(buffer, event);
4605 written = cnt;
4607 *fpos += written;
4609 out_unlock:
4610 for (i = 0; i < nr_pages; i++){
4611 kunmap_atomic(map_page[i]);
4612 put_page(pages[i]);
4614 out:
4615 return written;
4618 static int tracing_clock_show(struct seq_file *m, void *v)
4620 struct trace_array *tr = m->private;
4621 int i;
4623 for (i = 0; i < ARRAY_SIZE(trace_clocks); i++)
4624 seq_printf(m,
4625 "%s%s%s%s", i ? " " : "",
4626 i == tr->clock_id ? "[" : "", trace_clocks[i].name,
4627 i == tr->clock_id ? "]" : "");
4628 seq_putc(m, '\n');
4630 return 0;
4633 static ssize_t tracing_clock_write(struct file *filp, const char __user *ubuf,
4634 size_t cnt, loff_t *fpos)
4636 struct seq_file *m = filp->private_data;
4637 struct trace_array *tr = m->private;
4638 char buf[64];
4639 const char *clockstr;
4640 int i;
4642 if (cnt >= sizeof(buf))
4643 return -EINVAL;
4645 if (copy_from_user(&buf, ubuf, cnt))
4646 return -EFAULT;
4648 buf[cnt] = 0;
4650 clockstr = strstrip(buf);
4652 for (i = 0; i < ARRAY_SIZE(trace_clocks); i++) {
4653 if (strcmp(trace_clocks[i].name, clockstr) == 0)
4654 break;
4656 if (i == ARRAY_SIZE(trace_clocks))
4657 return -EINVAL;
4659 mutex_lock(&trace_types_lock);
4661 tr->clock_id = i;
4663 ring_buffer_set_clock(tr->trace_buffer.buffer, trace_clocks[i].func);
4666 * New clock may not be consistent with the previous clock.
4667 * Reset the buffer so that it doesn't have incomparable timestamps.
4669 tracing_reset_online_cpus(&global_trace.trace_buffer);
4671 #ifdef CONFIG_TRACER_MAX_TRACE
4672 if (tr->flags & TRACE_ARRAY_FL_GLOBAL && tr->max_buffer.buffer)
4673 ring_buffer_set_clock(tr->max_buffer.buffer, trace_clocks[i].func);
4674 tracing_reset_online_cpus(&global_trace.max_buffer);
4675 #endif
4677 mutex_unlock(&trace_types_lock);
4679 *fpos += cnt;
4681 return cnt;
4684 static int tracing_clock_open(struct inode *inode, struct file *file)
4686 struct trace_array *tr = inode->i_private;
4687 int ret;
4689 if (tracing_disabled)
4690 return -ENODEV;
4692 if (trace_array_get(tr))
4693 return -ENODEV;
4695 ret = single_open(file, tracing_clock_show, inode->i_private);
4696 if (ret < 0)
4697 trace_array_put(tr);
4699 return ret;
4702 struct ftrace_buffer_info {
4703 struct trace_iterator iter;
4704 void *spare;
4705 unsigned int read;
4708 #ifdef CONFIG_TRACER_SNAPSHOT
4709 static int tracing_snapshot_open(struct inode *inode, struct file *file)
4711 struct trace_cpu *tc = inode->i_private;
4712 struct trace_array *tr = tc->tr;
4713 struct trace_iterator *iter;
4714 struct seq_file *m;
4715 int ret = 0;
4717 if (trace_array_get(tr) < 0)
4718 return -ENODEV;
4720 if (file->f_mode & FMODE_READ) {
4721 iter = __tracing_open(tr, tc, inode, file, true);
4722 if (IS_ERR(iter))
4723 ret = PTR_ERR(iter);
4724 } else {
4725 /* Writes still need the seq_file to hold the private data */
4726 ret = -ENOMEM;
4727 m = kzalloc(sizeof(*m), GFP_KERNEL);
4728 if (!m)
4729 goto out;
4730 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
4731 if (!iter) {
4732 kfree(m);
4733 goto out;
4735 ret = 0;
4737 iter->tr = tr;
4738 iter->trace_buffer = &tc->tr->max_buffer;
4739 iter->cpu_file = tc->cpu;
4740 m->private = iter;
4741 file->private_data = m;
4743 out:
4744 if (ret < 0)
4745 trace_array_put(tr);
4747 return ret;
4750 static ssize_t
4751 tracing_snapshot_write(struct file *filp, const char __user *ubuf, size_t cnt,
4752 loff_t *ppos)
4754 struct seq_file *m = filp->private_data;
4755 struct trace_iterator *iter = m->private;
4756 struct trace_array *tr = iter->tr;
4757 unsigned long val;
4758 int ret;
4760 ret = tracing_update_buffers();
4761 if (ret < 0)
4762 return ret;
4764 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
4765 if (ret)
4766 return ret;
4768 mutex_lock(&trace_types_lock);
4770 if (tr->current_trace->use_max_tr) {
4771 ret = -EBUSY;
4772 goto out;
4775 switch (val) {
4776 case 0:
4777 if (iter->cpu_file != RING_BUFFER_ALL_CPUS) {
4778 ret = -EINVAL;
4779 break;
4781 if (tr->allocated_snapshot)
4782 free_snapshot(tr);
4783 break;
4784 case 1:
4785 /* Only allow per-cpu swap if the ring buffer supports it */
4786 #ifndef CONFIG_RING_BUFFER_ALLOW_SWAP
4787 if (iter->cpu_file != RING_BUFFER_ALL_CPUS) {
4788 ret = -EINVAL;
4789 break;
4791 #endif
4792 if (!tr->allocated_snapshot) {
4793 ret = alloc_snapshot(tr);
4794 if (ret < 0)
4795 break;
4797 local_irq_disable();
4798 /* Now, we're going to swap */
4799 if (iter->cpu_file == RING_BUFFER_ALL_CPUS)
4800 update_max_tr(tr, current, smp_processor_id());
4801 else
4802 update_max_tr_single(tr, current, iter->cpu_file);
4803 local_irq_enable();
4804 break;
4805 default:
4806 if (tr->allocated_snapshot) {
4807 if (iter->cpu_file == RING_BUFFER_ALL_CPUS)
4808 tracing_reset_online_cpus(&tr->max_buffer);
4809 else
4810 tracing_reset(&tr->max_buffer, iter->cpu_file);
4812 break;
4815 if (ret >= 0) {
4816 *ppos += cnt;
4817 ret = cnt;
4819 out:
4820 mutex_unlock(&trace_types_lock);
4821 return ret;
4824 static int tracing_snapshot_release(struct inode *inode, struct file *file)
4826 struct seq_file *m = file->private_data;
4827 int ret;
4829 ret = tracing_release(inode, file);
4831 if (file->f_mode & FMODE_READ)
4832 return ret;
4834 /* If write only, the seq_file is just a stub */
4835 if (m)
4836 kfree(m->private);
4837 kfree(m);
4839 return 0;
4842 static int tracing_buffers_open(struct inode *inode, struct file *filp);
4843 static ssize_t tracing_buffers_read(struct file *filp, char __user *ubuf,
4844 size_t count, loff_t *ppos);
4845 static int tracing_buffers_release(struct inode *inode, struct file *file);
4846 static ssize_t tracing_buffers_splice_read(struct file *file, loff_t *ppos,
4847 struct pipe_inode_info *pipe, size_t len, unsigned int flags);
4849 static int snapshot_raw_open(struct inode *inode, struct file *filp)
4851 struct ftrace_buffer_info *info;
4852 int ret;
4854 ret = tracing_buffers_open(inode, filp);
4855 if (ret < 0)
4856 return ret;
4858 info = filp->private_data;
4860 if (info->iter.trace->use_max_tr) {
4861 tracing_buffers_release(inode, filp);
4862 return -EBUSY;
4865 info->iter.snapshot = true;
4866 info->iter.trace_buffer = &info->iter.tr->max_buffer;
4868 return ret;
4871 #endif /* CONFIG_TRACER_SNAPSHOT */
4874 static const struct file_operations tracing_max_lat_fops = {
4875 .open = tracing_open_generic,
4876 .read = tracing_max_lat_read,
4877 .write = tracing_max_lat_write,
4878 .llseek = generic_file_llseek,
4881 static const struct file_operations set_tracer_fops = {
4882 .open = tracing_open_generic,
4883 .read = tracing_set_trace_read,
4884 .write = tracing_set_trace_write,
4885 .llseek = generic_file_llseek,
4888 static const struct file_operations tracing_pipe_fops = {
4889 .open = tracing_open_pipe,
4890 .poll = tracing_poll_pipe,
4891 .read = tracing_read_pipe,
4892 .splice_read = tracing_splice_read_pipe,
4893 .release = tracing_release_pipe,
4894 .llseek = no_llseek,
4897 static const struct file_operations tracing_entries_fops = {
4898 .open = tracing_open_generic_tc,
4899 .read = tracing_entries_read,
4900 .write = tracing_entries_write,
4901 .llseek = generic_file_llseek,
4902 .release = tracing_release_generic_tc,
4905 static const struct file_operations tracing_total_entries_fops = {
4906 .open = tracing_open_generic_tr,
4907 .read = tracing_total_entries_read,
4908 .llseek = generic_file_llseek,
4909 .release = tracing_release_generic_tr,
4912 static const struct file_operations tracing_free_buffer_fops = {
4913 .open = tracing_open_generic_tr,
4914 .write = tracing_free_buffer_write,
4915 .release = tracing_free_buffer_release,
4918 static const struct file_operations tracing_mark_fops = {
4919 .open = tracing_open_generic_tr,
4920 .write = tracing_mark_write,
4921 .llseek = generic_file_llseek,
4922 .release = tracing_release_generic_tr,
4925 static const struct file_operations trace_clock_fops = {
4926 .open = tracing_clock_open,
4927 .read = seq_read,
4928 .llseek = seq_lseek,
4929 .release = tracing_single_release_tr,
4930 .write = tracing_clock_write,
4933 #ifdef CONFIG_TRACER_SNAPSHOT
4934 static const struct file_operations snapshot_fops = {
4935 .open = tracing_snapshot_open,
4936 .read = seq_read,
4937 .write = tracing_snapshot_write,
4938 .llseek = tracing_seek,
4939 .release = tracing_snapshot_release,
4942 static const struct file_operations snapshot_raw_fops = {
4943 .open = snapshot_raw_open,
4944 .read = tracing_buffers_read,
4945 .release = tracing_buffers_release,
4946 .splice_read = tracing_buffers_splice_read,
4947 .llseek = no_llseek,
4950 #endif /* CONFIG_TRACER_SNAPSHOT */
4952 static int tracing_buffers_open(struct inode *inode, struct file *filp)
4954 struct trace_cpu *tc = inode->i_private;
4955 struct trace_array *tr = tc->tr;
4956 struct ftrace_buffer_info *info;
4957 int ret;
4959 if (tracing_disabled)
4960 return -ENODEV;
4962 if (trace_array_get(tr) < 0)
4963 return -ENODEV;
4965 info = kzalloc(sizeof(*info), GFP_KERNEL);
4966 if (!info) {
4967 trace_array_put(tr);
4968 return -ENOMEM;
4971 mutex_lock(&trace_types_lock);
4973 info->iter.tr = tr;
4974 info->iter.cpu_file = tc->cpu;
4975 info->iter.trace = tr->current_trace;
4976 info->iter.trace_buffer = &tr->trace_buffer;
4977 info->spare = NULL;
4978 /* Force reading ring buffer for first read */
4979 info->read = (unsigned int)-1;
4981 filp->private_data = info;
4983 mutex_unlock(&trace_types_lock);
4985 ret = nonseekable_open(inode, filp);
4986 if (ret < 0)
4987 trace_array_put(tr);
4989 return ret;
4992 static unsigned int
4993 tracing_buffers_poll(struct file *filp, poll_table *poll_table)
4995 struct ftrace_buffer_info *info = filp->private_data;
4996 struct trace_iterator *iter = &info->iter;
4998 return trace_poll(iter, filp, poll_table);
5001 static ssize_t
5002 tracing_buffers_read(struct file *filp, char __user *ubuf,
5003 size_t count, loff_t *ppos)
5005 struct ftrace_buffer_info *info = filp->private_data;
5006 struct trace_iterator *iter = &info->iter;
5007 ssize_t ret;
5008 ssize_t size;
5010 if (!count)
5011 return 0;
5013 mutex_lock(&trace_types_lock);
5015 #ifdef CONFIG_TRACER_MAX_TRACE
5016 if (iter->snapshot && iter->tr->current_trace->use_max_tr) {
5017 size = -EBUSY;
5018 goto out_unlock;
5020 #endif
5022 if (!info->spare)
5023 info->spare = ring_buffer_alloc_read_page(iter->trace_buffer->buffer,
5024 iter->cpu_file);
5025 size = -ENOMEM;
5026 if (!info->spare)
5027 goto out_unlock;
5029 /* Do we have previous read data to read? */
5030 if (info->read < PAGE_SIZE)
5031 goto read;
5033 again:
5034 trace_access_lock(iter->cpu_file);
5035 ret = ring_buffer_read_page(iter->trace_buffer->buffer,
5036 &info->spare,
5037 count,
5038 iter->cpu_file, 0);
5039 trace_access_unlock(iter->cpu_file);
5041 if (ret < 0) {
5042 if (trace_empty(iter)) {
5043 if ((filp->f_flags & O_NONBLOCK)) {
5044 size = -EAGAIN;
5045 goto out_unlock;
5047 mutex_unlock(&trace_types_lock);
5048 iter->trace->wait_pipe(iter);
5049 mutex_lock(&trace_types_lock);
5050 if (signal_pending(current)) {
5051 size = -EINTR;
5052 goto out_unlock;
5054 goto again;
5056 size = 0;
5057 goto out_unlock;
5060 info->read = 0;
5061 read:
5062 size = PAGE_SIZE - info->read;
5063 if (size > count)
5064 size = count;
5066 ret = copy_to_user(ubuf, info->spare + info->read, size);
5067 if (ret == size) {
5068 size = -EFAULT;
5069 goto out_unlock;
5071 size -= ret;
5073 *ppos += size;
5074 info->read += size;
5076 out_unlock:
5077 mutex_unlock(&trace_types_lock);
5079 return size;
5082 static int tracing_buffers_release(struct inode *inode, struct file *file)
5084 struct ftrace_buffer_info *info = file->private_data;
5085 struct trace_iterator *iter = &info->iter;
5087 mutex_lock(&trace_types_lock);
5089 __trace_array_put(iter->tr);
5091 if (info->spare)
5092 ring_buffer_free_read_page(iter->trace_buffer->buffer, info->spare);
5093 kfree(info);
5095 mutex_unlock(&trace_types_lock);
5097 return 0;
5100 struct buffer_ref {
5101 struct ring_buffer *buffer;
5102 void *page;
5103 int ref;
5106 static void buffer_pipe_buf_release(struct pipe_inode_info *pipe,
5107 struct pipe_buffer *buf)
5109 struct buffer_ref *ref = (struct buffer_ref *)buf->private;
5111 if (--ref->ref)
5112 return;
5114 ring_buffer_free_read_page(ref->buffer, ref->page);
5115 kfree(ref);
5116 buf->private = 0;
5119 static void buffer_pipe_buf_get(struct pipe_inode_info *pipe,
5120 struct pipe_buffer *buf)
5122 struct buffer_ref *ref = (struct buffer_ref *)buf->private;
5124 ref->ref++;
5127 /* Pipe buffer operations for a buffer. */
5128 static const struct pipe_buf_operations buffer_pipe_buf_ops = {
5129 .can_merge = 0,
5130 .map = generic_pipe_buf_map,
5131 .unmap = generic_pipe_buf_unmap,
5132 .confirm = generic_pipe_buf_confirm,
5133 .release = buffer_pipe_buf_release,
5134 .steal = generic_pipe_buf_steal,
5135 .get = buffer_pipe_buf_get,
5139 * Callback from splice_to_pipe(), if we need to release some pages
5140 * at the end of the spd in case we error'ed out in filling the pipe.
5142 static void buffer_spd_release(struct splice_pipe_desc *spd, unsigned int i)
5144 struct buffer_ref *ref =
5145 (struct buffer_ref *)spd->partial[i].private;
5147 if (--ref->ref)
5148 return;
5150 ring_buffer_free_read_page(ref->buffer, ref->page);
5151 kfree(ref);
5152 spd->partial[i].private = 0;
5155 static ssize_t
5156 tracing_buffers_splice_read(struct file *file, loff_t *ppos,
5157 struct pipe_inode_info *pipe, size_t len,
5158 unsigned int flags)
5160 struct ftrace_buffer_info *info = file->private_data;
5161 struct trace_iterator *iter = &info->iter;
5162 struct partial_page partial_def[PIPE_DEF_BUFFERS];
5163 struct page *pages_def[PIPE_DEF_BUFFERS];
5164 struct splice_pipe_desc spd = {
5165 .pages = pages_def,
5166 .partial = partial_def,
5167 .nr_pages_max = PIPE_DEF_BUFFERS,
5168 .flags = flags,
5169 .ops = &buffer_pipe_buf_ops,
5170 .spd_release = buffer_spd_release,
5172 struct buffer_ref *ref;
5173 int entries, size, i;
5174 ssize_t ret;
5176 mutex_lock(&trace_types_lock);
5178 #ifdef CONFIG_TRACER_MAX_TRACE
5179 if (iter->snapshot && iter->tr->current_trace->use_max_tr) {
5180 ret = -EBUSY;
5181 goto out;
5183 #endif
5185 if (splice_grow_spd(pipe, &spd)) {
5186 ret = -ENOMEM;
5187 goto out;
5190 if (*ppos & (PAGE_SIZE - 1)) {
5191 ret = -EINVAL;
5192 goto out;
5195 if (len & (PAGE_SIZE - 1)) {
5196 if (len < PAGE_SIZE) {
5197 ret = -EINVAL;
5198 goto out;
5200 len &= PAGE_MASK;
5203 again:
5204 trace_access_lock(iter->cpu_file);
5205 entries = ring_buffer_entries_cpu(iter->trace_buffer->buffer, iter->cpu_file);
5207 for (i = 0; i < pipe->buffers && len && entries; i++, len -= PAGE_SIZE) {
5208 struct page *page;
5209 int r;
5211 ref = kzalloc(sizeof(*ref), GFP_KERNEL);
5212 if (!ref)
5213 break;
5215 ref->ref = 1;
5216 ref->buffer = iter->trace_buffer->buffer;
5217 ref->page = ring_buffer_alloc_read_page(ref->buffer, iter->cpu_file);
5218 if (!ref->page) {
5219 kfree(ref);
5220 break;
5223 r = ring_buffer_read_page(ref->buffer, &ref->page,
5224 len, iter->cpu_file, 1);
5225 if (r < 0) {
5226 ring_buffer_free_read_page(ref->buffer, ref->page);
5227 kfree(ref);
5228 break;
5232 * zero out any left over data, this is going to
5233 * user land.
5235 size = ring_buffer_page_len(ref->page);
5236 if (size < PAGE_SIZE)
5237 memset(ref->page + size, 0, PAGE_SIZE - size);
5239 page = virt_to_page(ref->page);
5241 spd.pages[i] = page;
5242 spd.partial[i].len = PAGE_SIZE;
5243 spd.partial[i].offset = 0;
5244 spd.partial[i].private = (unsigned long)ref;
5245 spd.nr_pages++;
5246 *ppos += PAGE_SIZE;
5248 entries = ring_buffer_entries_cpu(iter->trace_buffer->buffer, iter->cpu_file);
5251 trace_access_unlock(iter->cpu_file);
5252 spd.nr_pages = i;
5254 /* did we read anything? */
5255 if (!spd.nr_pages) {
5256 if ((file->f_flags & O_NONBLOCK) || (flags & SPLICE_F_NONBLOCK)) {
5257 ret = -EAGAIN;
5258 goto out;
5260 mutex_unlock(&trace_types_lock);
5261 iter->trace->wait_pipe(iter);
5262 mutex_lock(&trace_types_lock);
5263 if (signal_pending(current)) {
5264 ret = -EINTR;
5265 goto out;
5267 goto again;
5270 ret = splice_to_pipe(pipe, &spd);
5271 splice_shrink_spd(&spd);
5272 out:
5273 mutex_unlock(&trace_types_lock);
5275 return ret;
5278 static const struct file_operations tracing_buffers_fops = {
5279 .open = tracing_buffers_open,
5280 .read = tracing_buffers_read,
5281 .poll = tracing_buffers_poll,
5282 .release = tracing_buffers_release,
5283 .splice_read = tracing_buffers_splice_read,
5284 .llseek = no_llseek,
5287 static ssize_t
5288 tracing_stats_read(struct file *filp, char __user *ubuf,
5289 size_t count, loff_t *ppos)
5291 struct trace_cpu *tc = filp->private_data;
5292 struct trace_array *tr = tc->tr;
5293 struct trace_buffer *trace_buf = &tr->trace_buffer;
5294 struct trace_seq *s;
5295 unsigned long cnt;
5296 unsigned long long t;
5297 unsigned long usec_rem;
5298 int cpu = tc->cpu;
5300 s = kmalloc(sizeof(*s), GFP_KERNEL);
5301 if (!s)
5302 return -ENOMEM;
5304 trace_seq_init(s);
5306 cnt = ring_buffer_entries_cpu(trace_buf->buffer, cpu);
5307 trace_seq_printf(s, "entries: %ld\n", cnt);
5309 cnt = ring_buffer_overrun_cpu(trace_buf->buffer, cpu);
5310 trace_seq_printf(s, "overrun: %ld\n", cnt);
5312 cnt = ring_buffer_commit_overrun_cpu(trace_buf->buffer, cpu);
5313 trace_seq_printf(s, "commit overrun: %ld\n", cnt);
5315 cnt = ring_buffer_bytes_cpu(trace_buf->buffer, cpu);
5316 trace_seq_printf(s, "bytes: %ld\n", cnt);
5318 if (trace_clocks[tr->clock_id].in_ns) {
5319 /* local or global for trace_clock */
5320 t = ns2usecs(ring_buffer_oldest_event_ts(trace_buf->buffer, cpu));
5321 usec_rem = do_div(t, USEC_PER_SEC);
5322 trace_seq_printf(s, "oldest event ts: %5llu.%06lu\n",
5323 t, usec_rem);
5325 t = ns2usecs(ring_buffer_time_stamp(trace_buf->buffer, cpu));
5326 usec_rem = do_div(t, USEC_PER_SEC);
5327 trace_seq_printf(s, "now ts: %5llu.%06lu\n", t, usec_rem);
5328 } else {
5329 /* counter or tsc mode for trace_clock */
5330 trace_seq_printf(s, "oldest event ts: %llu\n",
5331 ring_buffer_oldest_event_ts(trace_buf->buffer, cpu));
5333 trace_seq_printf(s, "now ts: %llu\n",
5334 ring_buffer_time_stamp(trace_buf->buffer, cpu));
5337 cnt = ring_buffer_dropped_events_cpu(trace_buf->buffer, cpu);
5338 trace_seq_printf(s, "dropped events: %ld\n", cnt);
5340 cnt = ring_buffer_read_events_cpu(trace_buf->buffer, cpu);
5341 trace_seq_printf(s, "read events: %ld\n", cnt);
5343 count = simple_read_from_buffer(ubuf, count, ppos, s->buffer, s->len);
5345 kfree(s);
5347 return count;
5350 static const struct file_operations tracing_stats_fops = {
5351 .open = tracing_open_generic_tc,
5352 .read = tracing_stats_read,
5353 .llseek = generic_file_llseek,
5354 .release = tracing_release_generic_tc,
5357 #ifdef CONFIG_DYNAMIC_FTRACE
5359 int __weak ftrace_arch_read_dyn_info(char *buf, int size)
5361 return 0;
5364 static ssize_t
5365 tracing_read_dyn_info(struct file *filp, char __user *ubuf,
5366 size_t cnt, loff_t *ppos)
5368 static char ftrace_dyn_info_buffer[1024];
5369 static DEFINE_MUTEX(dyn_info_mutex);
5370 unsigned long *p = filp->private_data;
5371 char *buf = ftrace_dyn_info_buffer;
5372 int size = ARRAY_SIZE(ftrace_dyn_info_buffer);
5373 int r;
5375 mutex_lock(&dyn_info_mutex);
5376 r = sprintf(buf, "%ld ", *p);
5378 r += ftrace_arch_read_dyn_info(buf+r, (size-1)-r);
5379 buf[r++] = '\n';
5381 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
5383 mutex_unlock(&dyn_info_mutex);
5385 return r;
5388 static const struct file_operations tracing_dyn_info_fops = {
5389 .open = tracing_open_generic,
5390 .read = tracing_read_dyn_info,
5391 .llseek = generic_file_llseek,
5393 #endif /* CONFIG_DYNAMIC_FTRACE */
5395 #if defined(CONFIG_TRACER_SNAPSHOT) && defined(CONFIG_DYNAMIC_FTRACE)
5396 static void
5397 ftrace_snapshot(unsigned long ip, unsigned long parent_ip, void **data)
5399 tracing_snapshot();
5402 static void
5403 ftrace_count_snapshot(unsigned long ip, unsigned long parent_ip, void **data)
5405 unsigned long *count = (long *)data;
5407 if (!*count)
5408 return;
5410 if (*count != -1)
5411 (*count)--;
5413 tracing_snapshot();
5416 static int
5417 ftrace_snapshot_print(struct seq_file *m, unsigned long ip,
5418 struct ftrace_probe_ops *ops, void *data)
5420 long count = (long)data;
5422 seq_printf(m, "%ps:", (void *)ip);
5424 seq_printf(m, "snapshot");
5426 if (count == -1)
5427 seq_printf(m, ":unlimited\n");
5428 else
5429 seq_printf(m, ":count=%ld\n", count);
5431 return 0;
5434 static struct ftrace_probe_ops snapshot_probe_ops = {
5435 .func = ftrace_snapshot,
5436 .print = ftrace_snapshot_print,
5439 static struct ftrace_probe_ops snapshot_count_probe_ops = {
5440 .func = ftrace_count_snapshot,
5441 .print = ftrace_snapshot_print,
5444 static int
5445 ftrace_trace_snapshot_callback(struct ftrace_hash *hash,
5446 char *glob, char *cmd, char *param, int enable)
5448 struct ftrace_probe_ops *ops;
5449 void *count = (void *)-1;
5450 char *number;
5451 int ret;
5453 /* hash funcs only work with set_ftrace_filter */
5454 if (!enable)
5455 return -EINVAL;
5457 ops = param ? &snapshot_count_probe_ops : &snapshot_probe_ops;
5459 if (glob[0] == '!') {
5460 unregister_ftrace_function_probe_func(glob+1, ops);
5461 return 0;
5464 if (!param)
5465 goto out_reg;
5467 number = strsep(&param, ":");
5469 if (!strlen(number))
5470 goto out_reg;
5473 * We use the callback data field (which is a pointer)
5474 * as our counter.
5476 ret = kstrtoul(number, 0, (unsigned long *)&count);
5477 if (ret)
5478 return ret;
5480 out_reg:
5481 ret = register_ftrace_function_probe(glob, ops, count);
5483 if (ret >= 0)
5484 alloc_snapshot(&global_trace);
5486 return ret < 0 ? ret : 0;
5489 static struct ftrace_func_command ftrace_snapshot_cmd = {
5490 .name = "snapshot",
5491 .func = ftrace_trace_snapshot_callback,
5494 static int register_snapshot_cmd(void)
5496 return register_ftrace_command(&ftrace_snapshot_cmd);
5498 #else
5499 static inline int register_snapshot_cmd(void) { return 0; }
5500 #endif /* defined(CONFIG_TRACER_SNAPSHOT) && defined(CONFIG_DYNAMIC_FTRACE) */
5502 struct dentry *tracing_init_dentry_tr(struct trace_array *tr)
5504 if (tr->dir)
5505 return tr->dir;
5507 if (!debugfs_initialized())
5508 return NULL;
5510 if (tr->flags & TRACE_ARRAY_FL_GLOBAL)
5511 tr->dir = debugfs_create_dir("tracing", NULL);
5513 if (!tr->dir)
5514 pr_warn_once("Could not create debugfs directory 'tracing'\n");
5516 return tr->dir;
5519 struct dentry *tracing_init_dentry(void)
5521 return tracing_init_dentry_tr(&global_trace);
5524 static struct dentry *tracing_dentry_percpu(struct trace_array *tr, int cpu)
5526 struct dentry *d_tracer;
5528 if (tr->percpu_dir)
5529 return tr->percpu_dir;
5531 d_tracer = tracing_init_dentry_tr(tr);
5532 if (!d_tracer)
5533 return NULL;
5535 tr->percpu_dir = debugfs_create_dir("per_cpu", d_tracer);
5537 WARN_ONCE(!tr->percpu_dir,
5538 "Could not create debugfs directory 'per_cpu/%d'\n", cpu);
5540 return tr->percpu_dir;
5543 static struct dentry *
5544 trace_create_cpu_file(const char *name, umode_t mode, struct dentry *parent,
5545 void *data, long cpu, const struct file_operations *fops)
5547 struct dentry *ret = trace_create_file(name, mode, parent, data, fops);
5549 if (ret) /* See tracing_get_cpu() */
5550 ret->d_inode->i_cdev = (void *)(cpu + 1);
5551 return ret;
5554 static void
5555 tracing_init_debugfs_percpu(struct trace_array *tr, long cpu)
5557 struct trace_array_cpu *data = per_cpu_ptr(tr->trace_buffer.data, cpu);
5558 struct dentry *d_percpu = tracing_dentry_percpu(tr, cpu);
5559 struct dentry *d_cpu;
5560 char cpu_dir[30]; /* 30 characters should be more than enough */
5562 if (!d_percpu)
5563 return;
5565 snprintf(cpu_dir, 30, "cpu%ld", cpu);
5566 d_cpu = debugfs_create_dir(cpu_dir, d_percpu);
5567 if (!d_cpu) {
5568 pr_warning("Could not create debugfs '%s' entry\n", cpu_dir);
5569 return;
5572 /* per cpu trace_pipe */
5573 trace_create_cpu_file("trace_pipe", 0444, d_cpu,
5574 &data->trace_cpu, cpu, &tracing_pipe_fops);
5576 /* per cpu trace */
5577 trace_create_cpu_file("trace", 0644, d_cpu,
5578 &data->trace_cpu, cpu, &tracing_fops);
5580 trace_create_cpu_file("trace_pipe_raw", 0444, d_cpu,
5581 &data->trace_cpu, cpu, &tracing_buffers_fops);
5583 trace_create_cpu_file("stats", 0444, d_cpu,
5584 &data->trace_cpu, cpu, &tracing_stats_fops);
5586 trace_create_cpu_file("buffer_size_kb", 0444, d_cpu,
5587 &data->trace_cpu, cpu, &tracing_entries_fops);
5589 #ifdef CONFIG_TRACER_SNAPSHOT
5590 trace_create_cpu_file("snapshot", 0644, d_cpu,
5591 &data->trace_cpu, cpu, &snapshot_fops);
5593 trace_create_cpu_file("snapshot_raw", 0444, d_cpu,
5594 &data->trace_cpu, cpu, &snapshot_raw_fops);
5595 #endif
5598 #ifdef CONFIG_FTRACE_SELFTEST
5599 /* Let selftest have access to static functions in this file */
5600 #include "trace_selftest.c"
5601 #endif
5603 struct trace_option_dentry {
5604 struct tracer_opt *opt;
5605 struct tracer_flags *flags;
5606 struct trace_array *tr;
5607 struct dentry *entry;
5610 static ssize_t
5611 trace_options_read(struct file *filp, char __user *ubuf, size_t cnt,
5612 loff_t *ppos)
5614 struct trace_option_dentry *topt = filp->private_data;
5615 char *buf;
5617 if (topt->flags->val & topt->opt->bit)
5618 buf = "1\n";
5619 else
5620 buf = "0\n";
5622 return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
5625 static ssize_t
5626 trace_options_write(struct file *filp, const char __user *ubuf, size_t cnt,
5627 loff_t *ppos)
5629 struct trace_option_dentry *topt = filp->private_data;
5630 unsigned long val;
5631 int ret;
5633 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
5634 if (ret)
5635 return ret;
5637 if (val != 0 && val != 1)
5638 return -EINVAL;
5640 if (!!(topt->flags->val & topt->opt->bit) != val) {
5641 mutex_lock(&trace_types_lock);
5642 ret = __set_tracer_option(topt->tr->current_trace, topt->flags,
5643 topt->opt, !val);
5644 mutex_unlock(&trace_types_lock);
5645 if (ret)
5646 return ret;
5649 *ppos += cnt;
5651 return cnt;
5655 static const struct file_operations trace_options_fops = {
5656 .open = tracing_open_generic,
5657 .read = trace_options_read,
5658 .write = trace_options_write,
5659 .llseek = generic_file_llseek,
5662 static ssize_t
5663 trace_options_core_read(struct file *filp, char __user *ubuf, size_t cnt,
5664 loff_t *ppos)
5666 long index = (long)filp->private_data;
5667 char *buf;
5669 if (trace_flags & (1 << index))
5670 buf = "1\n";
5671 else
5672 buf = "0\n";
5674 return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
5677 static ssize_t
5678 trace_options_core_write(struct file *filp, const char __user *ubuf, size_t cnt,
5679 loff_t *ppos)
5681 struct trace_array *tr = &global_trace;
5682 long index = (long)filp->private_data;
5683 unsigned long val;
5684 int ret;
5686 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
5687 if (ret)
5688 return ret;
5690 if (val != 0 && val != 1)
5691 return -EINVAL;
5693 mutex_lock(&trace_types_lock);
5694 ret = set_tracer_flag(tr, 1 << index, val);
5695 mutex_unlock(&trace_types_lock);
5697 if (ret < 0)
5698 return ret;
5700 *ppos += cnt;
5702 return cnt;
5705 static const struct file_operations trace_options_core_fops = {
5706 .open = tracing_open_generic,
5707 .read = trace_options_core_read,
5708 .write = trace_options_core_write,
5709 .llseek = generic_file_llseek,
5712 struct dentry *trace_create_file(const char *name,
5713 umode_t mode,
5714 struct dentry *parent,
5715 void *data,
5716 const struct file_operations *fops)
5718 struct dentry *ret;
5720 ret = debugfs_create_file(name, mode, parent, data, fops);
5721 if (!ret)
5722 pr_warning("Could not create debugfs '%s' entry\n", name);
5724 return ret;
5728 static struct dentry *trace_options_init_dentry(struct trace_array *tr)
5730 struct dentry *d_tracer;
5732 if (tr->options)
5733 return tr->options;
5735 d_tracer = tracing_init_dentry_tr(tr);
5736 if (!d_tracer)
5737 return NULL;
5739 tr->options = debugfs_create_dir("options", d_tracer);
5740 if (!tr->options) {
5741 pr_warning("Could not create debugfs directory 'options'\n");
5742 return NULL;
5745 return tr->options;
5748 static void
5749 create_trace_option_file(struct trace_array *tr,
5750 struct trace_option_dentry *topt,
5751 struct tracer_flags *flags,
5752 struct tracer_opt *opt)
5754 struct dentry *t_options;
5756 t_options = trace_options_init_dentry(tr);
5757 if (!t_options)
5758 return;
5760 topt->flags = flags;
5761 topt->opt = opt;
5762 topt->tr = tr;
5764 topt->entry = trace_create_file(opt->name, 0644, t_options, topt,
5765 &trace_options_fops);
5769 static struct trace_option_dentry *
5770 create_trace_option_files(struct trace_array *tr, struct tracer *tracer)
5772 struct trace_option_dentry *topts;
5773 struct tracer_flags *flags;
5774 struct tracer_opt *opts;
5775 int cnt;
5777 if (!tracer)
5778 return NULL;
5780 flags = tracer->flags;
5782 if (!flags || !flags->opts)
5783 return NULL;
5785 opts = flags->opts;
5787 for (cnt = 0; opts[cnt].name; cnt++)
5790 topts = kcalloc(cnt + 1, sizeof(*topts), GFP_KERNEL);
5791 if (!topts)
5792 return NULL;
5794 for (cnt = 0; opts[cnt].name; cnt++)
5795 create_trace_option_file(tr, &topts[cnt], flags,
5796 &opts[cnt]);
5798 return topts;
5801 static void
5802 destroy_trace_option_files(struct trace_option_dentry *topts)
5804 int cnt;
5806 if (!topts)
5807 return;
5809 for (cnt = 0; topts[cnt].opt; cnt++) {
5810 if (topts[cnt].entry)
5811 debugfs_remove(topts[cnt].entry);
5814 kfree(topts);
5817 static struct dentry *
5818 create_trace_option_core_file(struct trace_array *tr,
5819 const char *option, long index)
5821 struct dentry *t_options;
5823 t_options = trace_options_init_dentry(tr);
5824 if (!t_options)
5825 return NULL;
5827 return trace_create_file(option, 0644, t_options, (void *)index,
5828 &trace_options_core_fops);
5831 static __init void create_trace_options_dir(struct trace_array *tr)
5833 struct dentry *t_options;
5834 int i;
5836 t_options = trace_options_init_dentry(tr);
5837 if (!t_options)
5838 return;
5840 for (i = 0; trace_options[i]; i++)
5841 create_trace_option_core_file(tr, trace_options[i], i);
5844 static ssize_t
5845 rb_simple_read(struct file *filp, char __user *ubuf,
5846 size_t cnt, loff_t *ppos)
5848 struct trace_array *tr = filp->private_data;
5849 char buf[64];
5850 int r;
5852 r = tracer_tracing_is_on(tr);
5853 r = sprintf(buf, "%d\n", r);
5855 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
5858 static ssize_t
5859 rb_simple_write(struct file *filp, const char __user *ubuf,
5860 size_t cnt, loff_t *ppos)
5862 struct trace_array *tr = filp->private_data;
5863 struct ring_buffer *buffer = tr->trace_buffer.buffer;
5864 unsigned long val;
5865 int ret;
5867 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
5868 if (ret)
5869 return ret;
5871 if (buffer) {
5872 mutex_lock(&trace_types_lock);
5873 if (val) {
5874 tracer_tracing_on(tr);
5875 if (tr->current_trace->start)
5876 tr->current_trace->start(tr);
5877 } else {
5878 tracer_tracing_off(tr);
5879 if (tr->current_trace->stop)
5880 tr->current_trace->stop(tr);
5882 mutex_unlock(&trace_types_lock);
5885 (*ppos)++;
5887 return cnt;
5890 static const struct file_operations rb_simple_fops = {
5891 .open = tracing_open_generic_tr,
5892 .read = rb_simple_read,
5893 .write = rb_simple_write,
5894 .release = tracing_release_generic_tr,
5895 .llseek = default_llseek,
5898 struct dentry *trace_instance_dir;
5900 static void
5901 init_tracer_debugfs(struct trace_array *tr, struct dentry *d_tracer);
5903 static void init_trace_buffers(struct trace_array *tr, struct trace_buffer *buf)
5905 int cpu;
5907 for_each_tracing_cpu(cpu) {
5908 memset(per_cpu_ptr(buf->data, cpu), 0, sizeof(struct trace_array_cpu));
5909 per_cpu_ptr(buf->data, cpu)->trace_cpu.cpu = cpu;
5910 per_cpu_ptr(buf->data, cpu)->trace_cpu.tr = tr;
5914 static int
5915 allocate_trace_buffer(struct trace_array *tr, struct trace_buffer *buf, int size)
5917 enum ring_buffer_flags rb_flags;
5919 rb_flags = trace_flags & TRACE_ITER_OVERWRITE ? RB_FL_OVERWRITE : 0;
5921 buf->buffer = ring_buffer_alloc(size, rb_flags);
5922 if (!buf->buffer)
5923 return -ENOMEM;
5925 buf->data = alloc_percpu(struct trace_array_cpu);
5926 if (!buf->data) {
5927 ring_buffer_free(buf->buffer);
5928 return -ENOMEM;
5931 init_trace_buffers(tr, buf);
5933 /* Allocate the first page for all buffers */
5934 set_buffer_entries(&tr->trace_buffer,
5935 ring_buffer_size(tr->trace_buffer.buffer, 0));
5937 return 0;
5940 static int allocate_trace_buffers(struct trace_array *tr, int size)
5942 int ret;
5944 ret = allocate_trace_buffer(tr, &tr->trace_buffer, size);
5945 if (ret)
5946 return ret;
5948 #ifdef CONFIG_TRACER_MAX_TRACE
5949 ret = allocate_trace_buffer(tr, &tr->max_buffer,
5950 allocate_snapshot ? size : 1);
5951 if (WARN_ON(ret)) {
5952 ring_buffer_free(tr->trace_buffer.buffer);
5953 free_percpu(tr->trace_buffer.data);
5954 return -ENOMEM;
5956 tr->allocated_snapshot = allocate_snapshot;
5959 * Only the top level trace array gets its snapshot allocated
5960 * from the kernel command line.
5962 allocate_snapshot = false;
5963 #endif
5964 return 0;
5967 static int new_instance_create(const char *name)
5969 struct trace_array *tr;
5970 int ret;
5972 mutex_lock(&trace_types_lock);
5974 ret = -EEXIST;
5975 list_for_each_entry(tr, &ftrace_trace_arrays, list) {
5976 if (tr->name && strcmp(tr->name, name) == 0)
5977 goto out_unlock;
5980 ret = -ENOMEM;
5981 tr = kzalloc(sizeof(*tr), GFP_KERNEL);
5982 if (!tr)
5983 goto out_unlock;
5985 tr->name = kstrdup(name, GFP_KERNEL);
5986 if (!tr->name)
5987 goto out_free_tr;
5989 raw_spin_lock_init(&tr->start_lock);
5991 tr->current_trace = &nop_trace;
5993 INIT_LIST_HEAD(&tr->systems);
5994 INIT_LIST_HEAD(&tr->events);
5996 if (allocate_trace_buffers(tr, trace_buf_size) < 0)
5997 goto out_free_tr;
5999 /* Holder for file callbacks */
6000 tr->trace_cpu.cpu = RING_BUFFER_ALL_CPUS;
6001 tr->trace_cpu.tr = tr;
6003 tr->dir = debugfs_create_dir(name, trace_instance_dir);
6004 if (!tr->dir)
6005 goto out_free_tr;
6007 ret = event_trace_add_tracer(tr->dir, tr);
6008 if (ret) {
6009 debugfs_remove_recursive(tr->dir);
6010 goto out_free_tr;
6013 init_tracer_debugfs(tr, tr->dir);
6015 list_add(&tr->list, &ftrace_trace_arrays);
6017 mutex_unlock(&trace_types_lock);
6019 return 0;
6021 out_free_tr:
6022 if (tr->trace_buffer.buffer)
6023 ring_buffer_free(tr->trace_buffer.buffer);
6024 kfree(tr->name);
6025 kfree(tr);
6027 out_unlock:
6028 mutex_unlock(&trace_types_lock);
6030 return ret;
6034 static int instance_delete(const char *name)
6036 struct trace_array *tr;
6037 int found = 0;
6038 int ret;
6040 mutex_lock(&trace_types_lock);
6042 ret = -ENODEV;
6043 list_for_each_entry(tr, &ftrace_trace_arrays, list) {
6044 if (tr->name && strcmp(tr->name, name) == 0) {
6045 found = 1;
6046 break;
6049 if (!found)
6050 goto out_unlock;
6052 ret = -EBUSY;
6053 if (tr->ref)
6054 goto out_unlock;
6056 list_del(&tr->list);
6058 event_trace_del_tracer(tr);
6059 debugfs_remove_recursive(tr->dir);
6060 free_percpu(tr->trace_buffer.data);
6061 ring_buffer_free(tr->trace_buffer.buffer);
6063 kfree(tr->name);
6064 kfree(tr);
6066 ret = 0;
6068 out_unlock:
6069 mutex_unlock(&trace_types_lock);
6071 return ret;
6074 static int instance_mkdir (struct inode *inode, struct dentry *dentry, umode_t mode)
6076 struct dentry *parent;
6077 int ret;
6079 /* Paranoid: Make sure the parent is the "instances" directory */
6080 parent = hlist_entry(inode->i_dentry.first, struct dentry, d_alias);
6081 if (WARN_ON_ONCE(parent != trace_instance_dir))
6082 return -ENOENT;
6085 * The inode mutex is locked, but debugfs_create_dir() will also
6086 * take the mutex. As the instances directory can not be destroyed
6087 * or changed in any other way, it is safe to unlock it, and
6088 * let the dentry try. If two users try to make the same dir at
6089 * the same time, then the new_instance_create() will determine the
6090 * winner.
6092 mutex_unlock(&inode->i_mutex);
6094 ret = new_instance_create(dentry->d_iname);
6096 mutex_lock(&inode->i_mutex);
6098 return ret;
6101 static int instance_rmdir(struct inode *inode, struct dentry *dentry)
6103 struct dentry *parent;
6104 int ret;
6106 /* Paranoid: Make sure the parent is the "instances" directory */
6107 parent = hlist_entry(inode->i_dentry.first, struct dentry, d_alias);
6108 if (WARN_ON_ONCE(parent != trace_instance_dir))
6109 return -ENOENT;
6111 /* The caller did a dget() on dentry */
6112 mutex_unlock(&dentry->d_inode->i_mutex);
6115 * The inode mutex is locked, but debugfs_create_dir() will also
6116 * take the mutex. As the instances directory can not be destroyed
6117 * or changed in any other way, it is safe to unlock it, and
6118 * let the dentry try. If two users try to make the same dir at
6119 * the same time, then the instance_delete() will determine the
6120 * winner.
6122 mutex_unlock(&inode->i_mutex);
6124 ret = instance_delete(dentry->d_iname);
6126 mutex_lock_nested(&inode->i_mutex, I_MUTEX_PARENT);
6127 mutex_lock(&dentry->d_inode->i_mutex);
6129 return ret;
6132 static const struct inode_operations instance_dir_inode_operations = {
6133 .lookup = simple_lookup,
6134 .mkdir = instance_mkdir,
6135 .rmdir = instance_rmdir,
6138 static __init void create_trace_instances(struct dentry *d_tracer)
6140 trace_instance_dir = debugfs_create_dir("instances", d_tracer);
6141 if (WARN_ON(!trace_instance_dir))
6142 return;
6144 /* Hijack the dir inode operations, to allow mkdir */
6145 trace_instance_dir->d_inode->i_op = &instance_dir_inode_operations;
6148 static void
6149 init_tracer_debugfs(struct trace_array *tr, struct dentry *d_tracer)
6151 int cpu;
6153 trace_create_file("trace_options", 0644, d_tracer,
6154 tr, &tracing_iter_fops);
6156 trace_create_file("trace", 0644, d_tracer,
6157 (void *)&tr->trace_cpu, &tracing_fops);
6159 trace_create_file("trace_pipe", 0444, d_tracer,
6160 (void *)&tr->trace_cpu, &tracing_pipe_fops);
6162 trace_create_file("buffer_size_kb", 0644, d_tracer,
6163 (void *)&tr->trace_cpu, &tracing_entries_fops);
6165 trace_create_file("buffer_total_size_kb", 0444, d_tracer,
6166 tr, &tracing_total_entries_fops);
6168 trace_create_file("free_buffer", 0200, d_tracer,
6169 tr, &tracing_free_buffer_fops);
6171 trace_create_file("trace_marker", 0220, d_tracer,
6172 tr, &tracing_mark_fops);
6174 trace_create_file("trace_clock", 0644, d_tracer, tr,
6175 &trace_clock_fops);
6177 trace_create_file("tracing_on", 0644, d_tracer,
6178 tr, &rb_simple_fops);
6180 #ifdef CONFIG_TRACER_SNAPSHOT
6181 trace_create_file("snapshot", 0644, d_tracer,
6182 (void *)&tr->trace_cpu, &snapshot_fops);
6183 #endif
6185 for_each_tracing_cpu(cpu)
6186 tracing_init_debugfs_percpu(tr, cpu);
6190 static __init int tracer_init_debugfs(void)
6192 struct dentry *d_tracer;
6194 trace_access_lock_init();
6196 d_tracer = tracing_init_dentry();
6197 if (!d_tracer)
6198 return 0;
6200 init_tracer_debugfs(&global_trace, d_tracer);
6202 trace_create_file("tracing_cpumask", 0644, d_tracer,
6203 &global_trace, &tracing_cpumask_fops);
6205 trace_create_file("available_tracers", 0444, d_tracer,
6206 &global_trace, &show_traces_fops);
6208 trace_create_file("current_tracer", 0644, d_tracer,
6209 &global_trace, &set_tracer_fops);
6211 #ifdef CONFIG_TRACER_MAX_TRACE
6212 trace_create_file("tracing_max_latency", 0644, d_tracer,
6213 &tracing_max_latency, &tracing_max_lat_fops);
6214 #endif
6216 trace_create_file("tracing_thresh", 0644, d_tracer,
6217 &tracing_thresh, &tracing_max_lat_fops);
6219 trace_create_file("README", 0444, d_tracer,
6220 NULL, &tracing_readme_fops);
6222 trace_create_file("saved_cmdlines", 0444, d_tracer,
6223 NULL, &tracing_saved_cmdlines_fops);
6225 #ifdef CONFIG_DYNAMIC_FTRACE
6226 trace_create_file("dyn_ftrace_total_info", 0444, d_tracer,
6227 &ftrace_update_tot_cnt, &tracing_dyn_info_fops);
6228 #endif
6230 create_trace_instances(d_tracer);
6232 create_trace_options_dir(&global_trace);
6234 return 0;
6237 static int trace_panic_handler(struct notifier_block *this,
6238 unsigned long event, void *unused)
6240 if (ftrace_dump_on_oops)
6241 ftrace_dump(ftrace_dump_on_oops);
6242 return NOTIFY_OK;
6245 static struct notifier_block trace_panic_notifier = {
6246 .notifier_call = trace_panic_handler,
6247 .next = NULL,
6248 .priority = 150 /* priority: INT_MAX >= x >= 0 */
6251 static int trace_die_handler(struct notifier_block *self,
6252 unsigned long val,
6253 void *data)
6255 switch (val) {
6256 case DIE_OOPS:
6257 if (ftrace_dump_on_oops)
6258 ftrace_dump(ftrace_dump_on_oops);
6259 break;
6260 default:
6261 break;
6263 return NOTIFY_OK;
6266 static struct notifier_block trace_die_notifier = {
6267 .notifier_call = trace_die_handler,
6268 .priority = 200
6272 * printk is set to max of 1024, we really don't need it that big.
6273 * Nothing should be printing 1000 characters anyway.
6275 #define TRACE_MAX_PRINT 1000
6278 * Define here KERN_TRACE so that we have one place to modify
6279 * it if we decide to change what log level the ftrace dump
6280 * should be at.
6282 #define KERN_TRACE KERN_EMERG
6284 void
6285 trace_printk_seq(struct trace_seq *s)
6287 /* Probably should print a warning here. */
6288 if (s->len >= TRACE_MAX_PRINT)
6289 s->len = TRACE_MAX_PRINT;
6291 /* should be zero ended, but we are paranoid. */
6292 s->buffer[s->len] = 0;
6294 printk(KERN_TRACE "%s", s->buffer);
6296 trace_seq_init(s);
6299 void trace_init_global_iter(struct trace_iterator *iter)
6301 iter->tr = &global_trace;
6302 iter->trace = iter->tr->current_trace;
6303 iter->cpu_file = RING_BUFFER_ALL_CPUS;
6304 iter->trace_buffer = &global_trace.trace_buffer;
6307 void ftrace_dump(enum ftrace_dump_mode oops_dump_mode)
6309 /* use static because iter can be a bit big for the stack */
6310 static struct trace_iterator iter;
6311 static atomic_t dump_running;
6312 unsigned int old_userobj;
6313 unsigned long flags;
6314 int cnt = 0, cpu;
6316 /* Only allow one dump user at a time. */
6317 if (atomic_inc_return(&dump_running) != 1) {
6318 atomic_dec(&dump_running);
6319 return;
6323 * Always turn off tracing when we dump.
6324 * We don't need to show trace output of what happens
6325 * between multiple crashes.
6327 * If the user does a sysrq-z, then they can re-enable
6328 * tracing with echo 1 > tracing_on.
6330 tracing_off();
6332 local_irq_save(flags);
6334 /* Simulate the iterator */
6335 trace_init_global_iter(&iter);
6337 for_each_tracing_cpu(cpu) {
6338 atomic_inc(&per_cpu_ptr(iter.tr->trace_buffer.data, cpu)->disabled);
6341 old_userobj = trace_flags & TRACE_ITER_SYM_USEROBJ;
6343 /* don't look at user memory in panic mode */
6344 trace_flags &= ~TRACE_ITER_SYM_USEROBJ;
6346 switch (oops_dump_mode) {
6347 case DUMP_ALL:
6348 iter.cpu_file = RING_BUFFER_ALL_CPUS;
6349 break;
6350 case DUMP_ORIG:
6351 iter.cpu_file = raw_smp_processor_id();
6352 break;
6353 case DUMP_NONE:
6354 goto out_enable;
6355 default:
6356 printk(KERN_TRACE "Bad dumping mode, switching to all CPUs dump\n");
6357 iter.cpu_file = RING_BUFFER_ALL_CPUS;
6360 printk(KERN_TRACE "Dumping ftrace buffer:\n");
6362 /* Did function tracer already get disabled? */
6363 if (ftrace_is_dead()) {
6364 printk("# WARNING: FUNCTION TRACING IS CORRUPTED\n");
6365 printk("# MAY BE MISSING FUNCTION EVENTS\n");
6369 * We need to stop all tracing on all CPUS to read the
6370 * the next buffer. This is a bit expensive, but is
6371 * not done often. We fill all what we can read,
6372 * and then release the locks again.
6375 while (!trace_empty(&iter)) {
6377 if (!cnt)
6378 printk(KERN_TRACE "---------------------------------\n");
6380 cnt++;
6382 /* reset all but tr, trace, and overruns */
6383 memset(&iter.seq, 0,
6384 sizeof(struct trace_iterator) -
6385 offsetof(struct trace_iterator, seq));
6386 iter.iter_flags |= TRACE_FILE_LAT_FMT;
6387 iter.pos = -1;
6389 if (trace_find_next_entry_inc(&iter) != NULL) {
6390 int ret;
6392 ret = print_trace_line(&iter);
6393 if (ret != TRACE_TYPE_NO_CONSUME)
6394 trace_consume(&iter);
6396 touch_nmi_watchdog();
6398 trace_printk_seq(&iter.seq);
6401 if (!cnt)
6402 printk(KERN_TRACE " (ftrace buffer empty)\n");
6403 else
6404 printk(KERN_TRACE "---------------------------------\n");
6406 out_enable:
6407 trace_flags |= old_userobj;
6409 for_each_tracing_cpu(cpu) {
6410 atomic_dec(&per_cpu_ptr(iter.trace_buffer->data, cpu)->disabled);
6412 atomic_dec(&dump_running);
6413 local_irq_restore(flags);
6415 EXPORT_SYMBOL_GPL(ftrace_dump);
6417 __init static int tracer_alloc_buffers(void)
6419 int ring_buf_size;
6420 int ret = -ENOMEM;
6423 if (!alloc_cpumask_var(&tracing_buffer_mask, GFP_KERNEL))
6424 goto out;
6426 if (!alloc_cpumask_var(&tracing_cpumask, GFP_KERNEL))
6427 goto out_free_buffer_mask;
6429 /* Only allocate trace_printk buffers if a trace_printk exists */
6430 if (__stop___trace_bprintk_fmt != __start___trace_bprintk_fmt)
6431 /* Must be called before global_trace.buffer is allocated */
6432 trace_printk_init_buffers();
6434 /* To save memory, keep the ring buffer size to its minimum */
6435 if (ring_buffer_expanded)
6436 ring_buf_size = trace_buf_size;
6437 else
6438 ring_buf_size = 1;
6440 cpumask_copy(tracing_buffer_mask, cpu_possible_mask);
6441 cpumask_copy(tracing_cpumask, cpu_all_mask);
6443 raw_spin_lock_init(&global_trace.start_lock);
6445 /* TODO: make the number of buffers hot pluggable with CPUS */
6446 if (allocate_trace_buffers(&global_trace, ring_buf_size) < 0) {
6447 printk(KERN_ERR "tracer: failed to allocate ring buffer!\n");
6448 WARN_ON(1);
6449 goto out_free_cpumask;
6452 if (global_trace.buffer_disabled)
6453 tracing_off();
6455 trace_init_cmdlines();
6458 * register_tracer() might reference current_trace, so it
6459 * needs to be set before we register anything. This is
6460 * just a bootstrap of current_trace anyway.
6462 global_trace.current_trace = &nop_trace;
6464 register_tracer(&nop_trace);
6466 /* All seems OK, enable tracing */
6467 tracing_disabled = 0;
6469 atomic_notifier_chain_register(&panic_notifier_list,
6470 &trace_panic_notifier);
6472 register_die_notifier(&trace_die_notifier);
6474 global_trace.flags = TRACE_ARRAY_FL_GLOBAL;
6476 /* Holder for file callbacks */
6477 global_trace.trace_cpu.cpu = RING_BUFFER_ALL_CPUS;
6478 global_trace.trace_cpu.tr = &global_trace;
6480 INIT_LIST_HEAD(&global_trace.systems);
6481 INIT_LIST_HEAD(&global_trace.events);
6482 list_add(&global_trace.list, &ftrace_trace_arrays);
6484 while (trace_boot_options) {
6485 char *option;
6487 option = strsep(&trace_boot_options, ",");
6488 trace_set_options(&global_trace, option);
6491 register_snapshot_cmd();
6493 return 0;
6495 out_free_cpumask:
6496 free_percpu(global_trace.trace_buffer.data);
6497 #ifdef CONFIG_TRACER_MAX_TRACE
6498 free_percpu(global_trace.max_buffer.data);
6499 #endif
6500 free_cpumask_var(tracing_cpumask);
6501 out_free_buffer_mask:
6502 free_cpumask_var(tracing_buffer_mask);
6503 out:
6504 return ret;
6507 __init static int clear_boot_tracer(void)
6510 * The default tracer at boot buffer is an init section.
6511 * This function is called in lateinit. If we did not
6512 * find the boot tracer, then clear it out, to prevent
6513 * later registration from accessing the buffer that is
6514 * about to be freed.
6516 if (!default_bootup_tracer)
6517 return 0;
6519 printk(KERN_INFO "ftrace bootup tracer '%s' not registered.\n",
6520 default_bootup_tracer);
6521 default_bootup_tracer = NULL;
6523 return 0;
6526 early_initcall(tracer_alloc_buffers);
6527 fs_initcall(tracer_init_debugfs);
6528 late_initcall(clear_boot_tracer);