]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - kernel/trace/trace.c
tracing: Replace static old_tracer check of tracer name
[mirror_ubuntu-bionic-kernel.git] / kernel / trace / trace.c
CommitLineData
bc0c38d1
SR
1/*
2 * ring buffer based function tracer
3 *
4 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
5 * Copyright (C) 2008 Ingo Molnar <mingo@redhat.com>
6 *
7 * Originally taken from the RT patch by:
8 * Arnaldo Carvalho de Melo <acme@redhat.com>
9 *
10 * Based on code from the latency_tracer, that is:
11 * Copyright (C) 2004-2006 Ingo Molnar
6d49e352 12 * Copyright (C) 2004 Nadia Yvette Chambers
bc0c38d1 13 */
2cadf913 14#include <linux/ring_buffer.h>
273b281f 15#include <generated/utsrelease.h>
2cadf913
SR
16#include <linux/stacktrace.h>
17#include <linux/writeback.h>
bc0c38d1
SR
18#include <linux/kallsyms.h>
19#include <linux/seq_file.h>
3f5a54e3 20#include <linux/notifier.h>
2cadf913 21#include <linux/irqflags.h>
0d5c6e1c 22#include <linux/irq_work.h>
bc0c38d1 23#include <linux/debugfs.h>
4c11d7ae 24#include <linux/pagemap.h>
bc0c38d1
SR
25#include <linux/hardirq.h>
26#include <linux/linkage.h>
27#include <linux/uaccess.h>
2cadf913 28#include <linux/kprobes.h>
bc0c38d1
SR
29#include <linux/ftrace.h>
30#include <linux/module.h>
31#include <linux/percpu.h>
2cadf913 32#include <linux/splice.h>
3f5a54e3 33#include <linux/kdebug.h>
5f0c6c03 34#include <linux/string.h>
7e53bd42 35#include <linux/rwsem.h>
5a0e3ad6 36#include <linux/slab.h>
bc0c38d1
SR
37#include <linux/ctype.h>
38#include <linux/init.h>
2a2cc8f7 39#include <linux/poll.h>
b892e5c8 40#include <linux/nmi.h>
bc0c38d1 41#include <linux/fs.h>
86387f7e 42
bc0c38d1 43#include "trace.h"
f0868d1e 44#include "trace_output.h"
bc0c38d1 45
73c5162a
SR
46/*
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.
49 */
020e5f85 50int ring_buffer_expanded;
73c5162a 51
8e1b82e0
FW
52/*
53 * We need to change this state when a selftest is running.
ff32504f
FW
54 * A selftest will lurk into the ring-buffer to count the
55 * entries inserted during the selftest although some concurrent
5e1607a0 56 * insertions into the ring-buffer such as trace_printk could occurred
ff32504f
FW
57 * at the same time, giving false positive or negative results.
58 */
8e1b82e0 59static bool __read_mostly tracing_selftest_running;
ff32504f 60
b2821ae6
SR
61/*
62 * If a tracer is running, we do not want to run SELFTEST.
63 */
020e5f85 64bool __read_mostly tracing_selftest_disabled;
b2821ae6 65
adf9f195
FW
66/* For tracers that don't implement custom flags */
67static struct tracer_opt dummy_tracer_opt[] = {
68 { }
69};
70
71static struct tracer_flags dummy_tracer_flags = {
72 .val = 0,
73 .opts = dummy_tracer_opt
74};
75
76static int dummy_set_flag(u32 old_flags, u32 bit, int set)
77{
78 return 0;
79}
0f048701 80
7ffbd48d
SR
81/*
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.
85 */
86static DEFINE_PER_CPU(bool, trace_cmdline_save);
87
0d5c6e1c
SR
88/*
89 * When a reader is waiting for data, then this variable is
90 * set to true.
91 */
92static bool trace_wakeup_needed;
93
94static struct irq_work trace_work_wakeup;
95
0f048701
SR
96/*
97 * Kill all tracing for good (never come back).
98 * It is initialized to 1 but will turn to zero if the initialization
99 * of the tracer is successful. But that is the only place that sets
100 * this back to zero.
101 */
4fd27358 102static int tracing_disabled = 1;
0f048701 103
9288f99a 104DEFINE_PER_CPU(int, ftrace_cpu_disabled);
d769041f 105
955b61e5 106cpumask_var_t __read_mostly tracing_buffer_mask;
ab46428c 107
944ac425
SR
108/*
109 * ftrace_dump_on_oops - variable to dump ftrace buffer on oops
110 *
111 * If there is an oops (or kernel panic) and the ftrace_dump_on_oops
112 * is set, then ftrace_dump is called. This will output the contents
113 * of the ftrace buffers to the console. This is very useful for
114 * capturing traces that lead to crashes and outputing it to a
115 * serial console.
116 *
117 * It is default off, but you can enable it with either specifying
118 * "ftrace_dump_on_oops" in the kernel command line, or setting
cecbca96
FW
119 * /proc/sys/kernel/ftrace_dump_on_oops
120 * Set 1 if you want to dump buffers of all CPUs
121 * Set 2 if you want to dump the buffer of the CPU that triggered oops
944ac425 122 */
cecbca96
FW
123
124enum ftrace_dump_mode ftrace_dump_on_oops;
944ac425 125
b2821ae6
SR
126static int tracing_set_tracer(const char *buf);
127
ee6c2c1b
LZ
128#define MAX_TRACER_SIZE 100
129static char bootup_tracer_buf[MAX_TRACER_SIZE] __initdata;
b2821ae6 130static char *default_bootup_tracer;
d9e54076 131
1beee96b 132static int __init set_cmdline_ftrace(char *str)
d9e54076 133{
ee6c2c1b 134 strncpy(bootup_tracer_buf, str, MAX_TRACER_SIZE);
b2821ae6 135 default_bootup_tracer = bootup_tracer_buf;
73c5162a
SR
136 /* We are using ftrace early, expand it */
137 ring_buffer_expanded = 1;
d9e54076
PZ
138 return 1;
139}
1beee96b 140__setup("ftrace=", set_cmdline_ftrace);
d9e54076 141
944ac425
SR
142static int __init set_ftrace_dump_on_oops(char *str)
143{
cecbca96
FW
144 if (*str++ != '=' || !*str) {
145 ftrace_dump_on_oops = DUMP_ALL;
146 return 1;
147 }
148
149 if (!strcmp("orig_cpu", str)) {
150 ftrace_dump_on_oops = DUMP_ORIG;
151 return 1;
152 }
153
154 return 0;
944ac425
SR
155}
156__setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops);
60a11774 157
7bcfaf54
SR
158
159static char trace_boot_options_buf[MAX_TRACER_SIZE] __initdata;
160static char *trace_boot_options __initdata;
161
162static int __init set_trace_boot_options(char *str)
163{
164 strncpy(trace_boot_options_buf, str, MAX_TRACER_SIZE);
165 trace_boot_options = trace_boot_options_buf;
166 return 0;
167}
168__setup("trace_options=", set_trace_boot_options);
169
cf8e3474 170unsigned long long ns2usecs(cycle_t nsec)
bc0c38d1
SR
171{
172 nsec += 500;
173 do_div(nsec, 1000);
174 return nsec;
175}
176
4fcdae83
SR
177/*
178 * The global_trace is the descriptor that holds the tracing
179 * buffers for the live tracing. For each CPU, it contains
180 * a link list of pages that will store trace entries. The
181 * page descriptor of the pages in the memory is used to hold
182 * the link list by linking the lru item in the page descriptor
183 * to each of the pages in the buffer per CPU.
184 *
185 * For each active CPU there is a data field that holds the
186 * pages for the buffer for that CPU. Each CPU has the same number
187 * of pages allocated for its buffer.
188 */
bc0c38d1
SR
189static struct trace_array global_trace;
190
191static DEFINE_PER_CPU(struct trace_array_cpu, global_trace_cpu);
192
e77405ad
SR
193int filter_current_check_discard(struct ring_buffer *buffer,
194 struct ftrace_event_call *call, void *rec,
eb02ce01
TZ
195 struct ring_buffer_event *event)
196{
e77405ad 197 return filter_check_discard(call, rec, buffer, event);
eb02ce01 198}
17c873ec 199EXPORT_SYMBOL_GPL(filter_current_check_discard);
eb02ce01 200
37886f6a
SR
201cycle_t ftrace_now(int cpu)
202{
203 u64 ts;
204
205 /* Early boot up does not have a buffer yet */
206 if (!global_trace.buffer)
207 return trace_clock_local();
208
209 ts = ring_buffer_time_stamp(global_trace.buffer, cpu);
210 ring_buffer_normalize_time_stamp(global_trace.buffer, cpu, &ts);
211
212 return ts;
213}
bc0c38d1 214
4fcdae83
SR
215/*
216 * The max_tr is used to snapshot the global_trace when a maximum
217 * latency is reached. Some tracers will use this to store a maximum
218 * trace while it continues examining live traces.
219 *
220 * The buffers for the max_tr are set up the same as the global_trace.
221 * When a snapshot is taken, the link list of the max_tr is swapped
222 * with the link list of the global_trace and the buffers are reset for
223 * the global_trace so the tracing can continue.
224 */
bc0c38d1
SR
225static struct trace_array max_tr;
226
9705f69e 227static DEFINE_PER_CPU(struct trace_array_cpu, max_tr_data);
bc0c38d1 228
9036990d
SR
229int tracing_is_enabled(void)
230{
0fb9656d 231 return tracing_is_on();
9036990d
SR
232}
233
4fcdae83 234/*
3928a8a2
SR
235 * trace_buf_size is the size in bytes that is allocated
236 * for a buffer. Note, the number of bytes is always rounded
237 * to page size.
3f5a54e3
SR
238 *
239 * This number is purposely set to a low number of 16384.
240 * If the dump on oops happens, it will be much appreciated
241 * to not have to wait for all that output. Anyway this can be
242 * boot time and run time configurable.
4fcdae83 243 */
3928a8a2 244#define TRACE_BUF_SIZE_DEFAULT 1441792UL /* 16384 * 88 (sizeof(entry)) */
3f5a54e3 245
3928a8a2 246static unsigned long trace_buf_size = TRACE_BUF_SIZE_DEFAULT;
bc0c38d1 247
4fcdae83 248/* trace_types holds a link list of available tracers. */
bc0c38d1 249static struct tracer *trace_types __read_mostly;
4fcdae83
SR
250
251/* current_trace points to the tracer that is currently active */
bc0c38d1 252static struct tracer *current_trace __read_mostly;
4fcdae83 253
4fcdae83
SR
254/*
255 * trace_types_lock is used to protect the trace_types list.
4fcdae83 256 */
bc0c38d1 257static DEFINE_MUTEX(trace_types_lock);
4fcdae83 258
7e53bd42
LJ
259/*
260 * serialize the access of the ring buffer
261 *
262 * ring buffer serializes readers, but it is low level protection.
263 * The validity of the events (which returns by ring_buffer_peek() ..etc)
264 * are not protected by ring buffer.
265 *
266 * The content of events may become garbage if we allow other process consumes
267 * these events concurrently:
268 * A) the page of the consumed events may become a normal page
269 * (not reader page) in ring buffer, and this page will be rewrited
270 * by events producer.
271 * B) The page of the consumed events may become a page for splice_read,
272 * and this page will be returned to system.
273 *
274 * These primitives allow multi process access to different cpu ring buffer
275 * concurrently.
276 *
277 * These primitives don't distinguish read-only and read-consume access.
278 * Multi read-only access are also serialized.
279 */
280
281#ifdef CONFIG_SMP
282static DECLARE_RWSEM(all_cpu_access_lock);
283static DEFINE_PER_CPU(struct mutex, cpu_access_lock);
284
285static inline void trace_access_lock(int cpu)
286{
287 if (cpu == TRACE_PIPE_ALL_CPU) {
288 /* gain it for accessing the whole ring buffer. */
289 down_write(&all_cpu_access_lock);
290 } else {
291 /* gain it for accessing a cpu ring buffer. */
292
293 /* Firstly block other trace_access_lock(TRACE_PIPE_ALL_CPU). */
294 down_read(&all_cpu_access_lock);
295
296 /* Secondly block other access to this @cpu ring buffer. */
297 mutex_lock(&per_cpu(cpu_access_lock, cpu));
298 }
299}
300
301static inline void trace_access_unlock(int cpu)
302{
303 if (cpu == TRACE_PIPE_ALL_CPU) {
304 up_write(&all_cpu_access_lock);
305 } else {
306 mutex_unlock(&per_cpu(cpu_access_lock, cpu));
307 up_read(&all_cpu_access_lock);
308 }
309}
310
311static inline void trace_access_lock_init(void)
312{
313 int cpu;
314
315 for_each_possible_cpu(cpu)
316 mutex_init(&per_cpu(cpu_access_lock, cpu));
317}
318
319#else
320
321static DEFINE_MUTEX(access_lock);
322
323static inline void trace_access_lock(int cpu)
324{
325 (void)cpu;
326 mutex_lock(&access_lock);
327}
328
329static inline void trace_access_unlock(int cpu)
330{
331 (void)cpu;
332 mutex_unlock(&access_lock);
333}
334
335static inline void trace_access_lock_init(void)
336{
337}
338
339#endif
340
4fcdae83 341/* trace_wait is a waitqueue for tasks blocked on trace_poll */
4e655519
IM
342static DECLARE_WAIT_QUEUE_HEAD(trace_wait);
343
ee6bce52 344/* trace_flags holds trace_options default values */
12ef7d44 345unsigned long trace_flags = TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK |
a2a16d6a 346 TRACE_ITER_ANNOTATE | TRACE_ITER_CONTEXT_INFO | TRACE_ITER_SLEEP_TIME |
77271ce4 347 TRACE_ITER_GRAPH_TIME | TRACE_ITER_RECORD_CMD | TRACE_ITER_OVERWRITE |
5224c3a3 348 TRACE_ITER_IRQ_INFO | TRACE_ITER_MARKERS;
4e655519 349
b8de7bd1 350static int trace_stop_count;
5389f6fa 351static DEFINE_RAW_SPINLOCK(tracing_start_lock);
b8de7bd1 352
0d5c6e1c
SR
353/**
354 * trace_wake_up - wake up tasks waiting for trace input
355 *
356 * Schedules a delayed work to wake up any task that is blocked on the
357 * trace_wait queue. These is used with trace_poll for tasks polling the
358 * trace.
359 */
360static void trace_wake_up(struct irq_work *work)
e7e2ee89 361{
0d5c6e1c 362 wake_up_all(&trace_wait);
e7e2ee89 363
0d5c6e1c 364}
e7e2ee89 365
499e5470
SR
366/**
367 * tracing_on - enable tracing buffers
368 *
369 * This function enables tracing buffers that may have been
370 * disabled with tracing_off.
371 */
372void tracing_on(void)
373{
374 if (global_trace.buffer)
375 ring_buffer_record_on(global_trace.buffer);
376 /*
377 * This flag is only looked at when buffers haven't been
378 * allocated yet. We don't really care about the race
379 * between setting this flag and actually turning
380 * on the buffer.
381 */
382 global_trace.buffer_disabled = 0;
383}
384EXPORT_SYMBOL_GPL(tracing_on);
385
386/**
387 * tracing_off - turn off tracing buffers
388 *
389 * This function stops the tracing buffers from recording data.
390 * It does not disable any overhead the tracers themselves may
391 * be causing. This function simply causes all recording to
392 * the ring buffers to fail.
393 */
394void tracing_off(void)
395{
396 if (global_trace.buffer)
f2bf1f6f 397 ring_buffer_record_off(global_trace.buffer);
499e5470
SR
398 /*
399 * This flag is only looked at when buffers haven't been
400 * allocated yet. We don't really care about the race
401 * between setting this flag and actually turning
402 * on the buffer.
403 */
404 global_trace.buffer_disabled = 1;
405}
406EXPORT_SYMBOL_GPL(tracing_off);
407
408/**
409 * tracing_is_on - show state of ring buffers enabled
410 */
411int tracing_is_on(void)
412{
413 if (global_trace.buffer)
414 return ring_buffer_record_is_on(global_trace.buffer);
415 return !global_trace.buffer_disabled;
416}
417EXPORT_SYMBOL_GPL(tracing_is_on);
418
3928a8a2 419static int __init set_buf_size(char *str)
bc0c38d1 420{
3928a8a2 421 unsigned long buf_size;
c6caeeb1 422
bc0c38d1
SR
423 if (!str)
424 return 0;
9d612bef 425 buf_size = memparse(str, &str);
c6caeeb1 426 /* nr_entries can not be zero */
9d612bef 427 if (buf_size == 0)
c6caeeb1 428 return 0;
3928a8a2 429 trace_buf_size = buf_size;
bc0c38d1
SR
430 return 1;
431}
3928a8a2 432__setup("trace_buf_size=", set_buf_size);
bc0c38d1 433
0e950173
TB
434static int __init set_tracing_thresh(char *str)
435{
87abb3b1 436 unsigned long threshold;
0e950173
TB
437 int ret;
438
439 if (!str)
440 return 0;
bcd83ea6 441 ret = kstrtoul(str, 0, &threshold);
0e950173
TB
442 if (ret < 0)
443 return 0;
87abb3b1 444 tracing_thresh = threshold * 1000;
0e950173
TB
445 return 1;
446}
447__setup("tracing_thresh=", set_tracing_thresh);
448
57f50be1
SR
449unsigned long nsecs_to_usecs(unsigned long nsecs)
450{
451 return nsecs / 1000;
452}
453
4fcdae83 454/* These must match the bit postions in trace_iterator_flags */
bc0c38d1
SR
455static const char *trace_options[] = {
456 "print-parent",
457 "sym-offset",
458 "sym-addr",
459 "verbose",
f9896bf3 460 "raw",
5e3ca0ec 461 "hex",
cb0f12aa 462 "bin",
2a2cc8f7 463 "block",
86387f7e 464 "stacktrace",
5e1607a0 465 "trace_printk",
b2a866f9 466 "ftrace_preempt",
9f029e83 467 "branch",
12ef7d44 468 "annotate",
02b67518 469 "userstacktrace",
b54d3de9 470 "sym-userobj",
66896a85 471 "printk-msg-only",
c4a8e8be 472 "context-info",
c032ef64 473 "latency-format",
be6f164a 474 "sleep-time",
a2a16d6a 475 "graph-time",
e870e9a1 476 "record-cmd",
750912fa 477 "overwrite",
cf30cf67 478 "disable_on_free",
77271ce4 479 "irq-info",
5224c3a3 480 "markers",
bc0c38d1
SR
481 NULL
482};
483
5079f326
Z
484static struct {
485 u64 (*func)(void);
486 const char *name;
8be0709f 487 int in_ns; /* is this clock in nanoseconds? */
5079f326 488} trace_clocks[] = {
8be0709f
DS
489 { trace_clock_local, "local", 1 },
490 { trace_clock_global, "global", 1 },
491 { trace_clock_counter, "counter", 0 },
8cbd9cc6 492 ARCH_TRACE_CLOCKS
5079f326
Z
493};
494
495int trace_clock_id;
496
b63f39ea 497/*
498 * trace_parser_get_init - gets the buffer for trace parser
499 */
500int trace_parser_get_init(struct trace_parser *parser, int size)
501{
502 memset(parser, 0, sizeof(*parser));
503
504 parser->buffer = kmalloc(size, GFP_KERNEL);
505 if (!parser->buffer)
506 return 1;
507
508 parser->size = size;
509 return 0;
510}
511
512/*
513 * trace_parser_put - frees the buffer for trace parser
514 */
515void trace_parser_put(struct trace_parser *parser)
516{
517 kfree(parser->buffer);
518}
519
520/*
521 * trace_get_user - reads the user input string separated by space
522 * (matched by isspace(ch))
523 *
524 * For each string found the 'struct trace_parser' is updated,
525 * and the function returns.
526 *
527 * Returns number of bytes read.
528 *
529 * See kernel/trace/trace.h for 'struct trace_parser' details.
530 */
531int trace_get_user(struct trace_parser *parser, const char __user *ubuf,
532 size_t cnt, loff_t *ppos)
533{
534 char ch;
535 size_t read = 0;
536 ssize_t ret;
537
538 if (!*ppos)
539 trace_parser_clear(parser);
540
541 ret = get_user(ch, ubuf++);
542 if (ret)
543 goto out;
544
545 read++;
546 cnt--;
547
548 /*
549 * The parser is not finished with the last write,
550 * continue reading the user input without skipping spaces.
551 */
552 if (!parser->cont) {
553 /* skip white space */
554 while (cnt && isspace(ch)) {
555 ret = get_user(ch, ubuf++);
556 if (ret)
557 goto out;
558 read++;
559 cnt--;
560 }
561
562 /* only spaces were written */
563 if (isspace(ch)) {
564 *ppos += read;
565 ret = read;
566 goto out;
567 }
568
569 parser->idx = 0;
570 }
571
572 /* read the non-space input */
573 while (cnt && !isspace(ch)) {
3c235a33 574 if (parser->idx < parser->size - 1)
b63f39ea 575 parser->buffer[parser->idx++] = ch;
576 else {
577 ret = -EINVAL;
578 goto out;
579 }
580 ret = get_user(ch, ubuf++);
581 if (ret)
582 goto out;
583 read++;
584 cnt--;
585 }
586
587 /* We either got finished input or we have to wait for another call. */
588 if (isspace(ch)) {
589 parser->buffer[parser->idx] = 0;
590 parser->cont = false;
591 } else {
592 parser->cont = true;
593 parser->buffer[parser->idx++] = ch;
594 }
595
596 *ppos += read;
597 ret = read;
598
599out:
600 return ret;
601}
602
6c6c2796
PP
603ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, size_t cnt)
604{
605 int len;
606 int ret;
607
2dc5d12b
SR
608 if (!cnt)
609 return 0;
610
6c6c2796
PP
611 if (s->len <= s->readpos)
612 return -EBUSY;
613
614 len = s->len - s->readpos;
615 if (cnt > len)
616 cnt = len;
617 ret = copy_to_user(ubuf, s->buffer + s->readpos, cnt);
2dc5d12b 618 if (ret == cnt)
6c6c2796
PP
619 return -EFAULT;
620
2dc5d12b
SR
621 cnt -= ret;
622
e74da523 623 s->readpos += cnt;
6c6c2796 624 return cnt;
214023c3
SR
625}
626
b8b94265 627static ssize_t trace_seq_to_buffer(struct trace_seq *s, void *buf, size_t cnt)
3c56819b
EGM
628{
629 int len;
3c56819b
EGM
630
631 if (s->len <= s->readpos)
632 return -EBUSY;
633
634 len = s->len - s->readpos;
635 if (cnt > len)
636 cnt = len;
5a26c8f0 637 memcpy(buf, s->buffer + s->readpos, cnt);
3c56819b 638
e74da523 639 s->readpos += cnt;
3c56819b
EGM
640 return cnt;
641}
642
5d4a9dba
SR
643/*
644 * ftrace_max_lock is used to protect the swapping of buffers
645 * when taking a max snapshot. The buffers themselves are
646 * protected by per_cpu spinlocks. But the action of the swap
647 * needs its own lock.
648 *
445c8951 649 * This is defined as a arch_spinlock_t in order to help
5d4a9dba
SR
650 * with performance when lockdep debugging is enabled.
651 *
652 * It is also used in other places outside the update_max_tr
653 * so it needs to be defined outside of the
654 * CONFIG_TRACER_MAX_TRACE.
655 */
445c8951 656static arch_spinlock_t ftrace_max_lock =
edc35bd7 657 (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
5d4a9dba 658
0e950173
TB
659unsigned long __read_mostly tracing_thresh;
660
5d4a9dba
SR
661#ifdef CONFIG_TRACER_MAX_TRACE
662unsigned long __read_mostly tracing_max_latency;
5d4a9dba
SR
663
664/*
665 * Copy the new maximum trace into the separate maximum-trace
666 * structure. (this way the maximum trace is permanently saved,
667 * for later retrieval via /sys/kernel/debug/tracing/latency_trace)
668 */
669static void
670__update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
671{
672 struct trace_array_cpu *data = tr->data[cpu];
1acaa1b2 673 struct trace_array_cpu *max_data;
5d4a9dba
SR
674
675 max_tr.cpu = cpu;
676 max_tr.time_start = data->preempt_timestamp;
677
8248ac05
SR
678 max_data = max_tr.data[cpu];
679 max_data->saved_latency = tracing_max_latency;
680 max_data->critical_start = data->critical_start;
681 max_data->critical_end = data->critical_end;
5d4a9dba 682
1acaa1b2 683 memcpy(max_data->comm, tsk->comm, TASK_COMM_LEN);
8248ac05
SR
684 max_data->pid = tsk->pid;
685 max_data->uid = task_uid(tsk);
686 max_data->nice = tsk->static_prio - 20 - MAX_RT_PRIO;
687 max_data->policy = tsk->policy;
688 max_data->rt_priority = tsk->rt_priority;
5d4a9dba
SR
689
690 /* record this tasks comm */
691 tracing_record_cmdline(tsk);
692}
693
4fcdae83
SR
694/**
695 * update_max_tr - snapshot all trace buffers from global_trace to max_tr
696 * @tr: tracer
697 * @tsk: the task with the latency
698 * @cpu: The cpu that initiated the trace.
699 *
700 * Flip the buffers between the @tr and the max_tr and record information
701 * about which task was the cause of this latency.
702 */
e309b41d 703void
bc0c38d1
SR
704update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
705{
3928a8a2 706 struct ring_buffer *buf = tr->buffer;
bc0c38d1 707
b8de7bd1
SR
708 if (trace_stop_count)
709 return;
710
4c11d7ae 711 WARN_ON_ONCE(!irqs_disabled());
34600f0e
SR
712
713 /* If we disabled the tracer, stop now */
714 if (current_trace == &nop_trace)
ef710e10 715 return;
34600f0e
SR
716
717 if (WARN_ON_ONCE(!current_trace->use_max_tr))
718 return;
719
0199c4e6 720 arch_spin_lock(&ftrace_max_lock);
3928a8a2
SR
721
722 tr->buffer = max_tr.buffer;
723 max_tr.buffer = buf;
724
bc0c38d1 725 __update_max_tr(tr, tsk, cpu);
0199c4e6 726 arch_spin_unlock(&ftrace_max_lock);
bc0c38d1
SR
727}
728
729/**
730 * update_max_tr_single - only copy one trace over, and reset the rest
731 * @tr - tracer
732 * @tsk - task with the latency
733 * @cpu - the cpu of the buffer to copy.
4fcdae83
SR
734 *
735 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
bc0c38d1 736 */
e309b41d 737void
bc0c38d1
SR
738update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
739{
3928a8a2 740 int ret;
bc0c38d1 741
b8de7bd1
SR
742 if (trace_stop_count)
743 return;
744
4c11d7ae 745 WARN_ON_ONCE(!irqs_disabled());
ef710e10
KM
746 if (!current_trace->use_max_tr) {
747 WARN_ON_ONCE(1);
748 return;
749 }
750
0199c4e6 751 arch_spin_lock(&ftrace_max_lock);
bc0c38d1 752
3928a8a2
SR
753 ret = ring_buffer_swap_cpu(max_tr.buffer, tr->buffer, cpu);
754
e8165dbb
SR
755 if (ret == -EBUSY) {
756 /*
757 * We failed to swap the buffer due to a commit taking
758 * place on this CPU. We fail to record, but we reset
759 * the max trace buffer (no one writes directly to it)
760 * and flag that it failed.
761 */
762 trace_array_printk(&max_tr, _THIS_IP_,
763 "Failed to swap buffers due to commit in progress\n");
764 }
765
e8165dbb 766 WARN_ON_ONCE(ret && ret != -EAGAIN && ret != -EBUSY);
bc0c38d1
SR
767
768 __update_max_tr(tr, tsk, cpu);
0199c4e6 769 arch_spin_unlock(&ftrace_max_lock);
bc0c38d1 770}
5d4a9dba 771#endif /* CONFIG_TRACER_MAX_TRACE */
bc0c38d1 772
0d5c6e1c
SR
773static void default_wait_pipe(struct trace_iterator *iter)
774{
775 DEFINE_WAIT(wait);
776
777 prepare_to_wait(&trace_wait, &wait, TASK_INTERRUPTIBLE);
778
779 /*
780 * The events can happen in critical sections where
781 * checking a work queue can cause deadlocks.
782 * After adding a task to the queue, this flag is set
783 * only to notify events to try to wake up the queue
784 * using irq_work.
785 *
786 * We don't clear it even if the buffer is no longer
787 * empty. The flag only causes the next event to run
788 * irq_work to do the work queue wake up. The worse
789 * that can happen if we race with !trace_empty() is that
790 * an event will cause an irq_work to try to wake up
791 * an empty queue.
792 *
793 * There's no reason to protect this flag either, as
794 * the work queue and irq_work logic will do the necessary
795 * synchronization for the wake ups. The only thing
796 * that is necessary is that the wake up happens after
797 * a task has been queued. It's OK for spurious wake ups.
798 */
799 trace_wakeup_needed = true;
800
801 if (trace_empty(iter))
802 schedule();
803
804 finish_wait(&trace_wait, &wait);
805}
806
4fcdae83
SR
807/**
808 * register_tracer - register a tracer with the ftrace system.
809 * @type - the plugin for the tracer
810 *
811 * Register a new plugin tracer.
812 */
bc0c38d1
SR
813int register_tracer(struct tracer *type)
814{
815 struct tracer *t;
bc0c38d1
SR
816 int ret = 0;
817
818 if (!type->name) {
819 pr_info("Tracer must have a name\n");
820 return -1;
821 }
822
24a461d5 823 if (strlen(type->name) >= MAX_TRACER_SIZE) {
ee6c2c1b
LZ
824 pr_info("Tracer has a name longer than %d\n", MAX_TRACER_SIZE);
825 return -1;
826 }
827
bc0c38d1 828 mutex_lock(&trace_types_lock);
86fa2f60 829
8e1b82e0
FW
830 tracing_selftest_running = true;
831
bc0c38d1
SR
832 for (t = trace_types; t; t = t->next) {
833 if (strcmp(type->name, t->name) == 0) {
834 /* already found */
ee6c2c1b 835 pr_info("Tracer %s already registered\n",
bc0c38d1
SR
836 type->name);
837 ret = -1;
838 goto out;
839 }
840 }
841
adf9f195
FW
842 if (!type->set_flag)
843 type->set_flag = &dummy_set_flag;
844 if (!type->flags)
845 type->flags = &dummy_tracer_flags;
846 else
847 if (!type->flags->opts)
848 type->flags->opts = dummy_tracer_opt;
6eaaa5d5
FW
849 if (!type->wait_pipe)
850 type->wait_pipe = default_wait_pipe;
851
adf9f195 852
60a11774 853#ifdef CONFIG_FTRACE_STARTUP_TEST
b2821ae6 854 if (type->selftest && !tracing_selftest_disabled) {
60a11774 855 struct tracer *saved_tracer = current_trace;
60a11774 856 struct trace_array *tr = &global_trace;
ff32504f 857
60a11774
SR
858 /*
859 * Run a selftest on this tracer.
860 * Here we reset the trace buffer, and set the current
861 * tracer to be this tracer. The tracer can then run some
862 * internal tracing to verify that everything is in order.
863 * If we fail, we do not register this tracer.
864 */
76f0d073 865 tracing_reset_online_cpus(tr);
86fa2f60 866
60a11774 867 current_trace = type;
4a0b1665
SR
868
869 /* If we expanded the buffers, make sure the max is expanded too */
870 if (ring_buffer_expanded && type->use_max_tr)
438ced17
VN
871 ring_buffer_resize(max_tr.buffer, trace_buf_size,
872 RING_BUFFER_ALL_CPUS);
4a0b1665 873
60a11774
SR
874 /* the test is responsible for initializing and enabling */
875 pr_info("Testing tracer %s: ", type->name);
876 ret = type->selftest(type, tr);
877 /* the test is responsible for resetting too */
878 current_trace = saved_tracer;
60a11774
SR
879 if (ret) {
880 printk(KERN_CONT "FAILED!\n");
0be61ebc
SR
881 /* Add the warning after printing 'FAILED' */
882 WARN_ON(1);
60a11774
SR
883 goto out;
884 }
1d4db00a 885 /* Only reset on passing, to avoid touching corrupted buffers */
76f0d073 886 tracing_reset_online_cpus(tr);
86fa2f60 887
4a0b1665
SR
888 /* Shrink the max buffer again */
889 if (ring_buffer_expanded && type->use_max_tr)
438ced17
VN
890 ring_buffer_resize(max_tr.buffer, 1,
891 RING_BUFFER_ALL_CPUS);
4a0b1665 892
60a11774
SR
893 printk(KERN_CONT "PASSED\n");
894 }
895#endif
896
bc0c38d1
SR
897 type->next = trace_types;
898 trace_types = type;
60a11774 899
bc0c38d1 900 out:
8e1b82e0 901 tracing_selftest_running = false;
bc0c38d1
SR
902 mutex_unlock(&trace_types_lock);
903
dac74940
SR
904 if (ret || !default_bootup_tracer)
905 goto out_unlock;
906
ee6c2c1b 907 if (strncmp(default_bootup_tracer, type->name, MAX_TRACER_SIZE))
dac74940
SR
908 goto out_unlock;
909
910 printk(KERN_INFO "Starting tracer '%s'\n", type->name);
911 /* Do we want this tracer to start on bootup? */
912 tracing_set_tracer(type->name);
913 default_bootup_tracer = NULL;
914 /* disable other selftests, since this will break it. */
915 tracing_selftest_disabled = 1;
b2821ae6 916#ifdef CONFIG_FTRACE_STARTUP_TEST
dac74940
SR
917 printk(KERN_INFO "Disabling FTRACE selftests due to running tracer '%s'\n",
918 type->name);
b2821ae6 919#endif
b2821ae6 920
dac74940 921 out_unlock:
bc0c38d1
SR
922 return ret;
923}
924
f633903a
SR
925void tracing_reset(struct trace_array *tr, int cpu)
926{
927 struct ring_buffer *buffer = tr->buffer;
928
a5416411
HT
929 if (!buffer)
930 return;
931
f633903a
SR
932 ring_buffer_record_disable(buffer);
933
934 /* Make sure all commits have finished */
935 synchronize_sched();
68179686 936 ring_buffer_reset_cpu(buffer, cpu);
f633903a
SR
937
938 ring_buffer_record_enable(buffer);
939}
940
213cc060
PE
941void tracing_reset_online_cpus(struct trace_array *tr)
942{
621968cd 943 struct ring_buffer *buffer = tr->buffer;
213cc060
PE
944 int cpu;
945
a5416411
HT
946 if (!buffer)
947 return;
948
621968cd
SR
949 ring_buffer_record_disable(buffer);
950
951 /* Make sure all commits have finished */
952 synchronize_sched();
953
213cc060
PE
954 tr->time_start = ftrace_now(tr->cpu);
955
956 for_each_online_cpu(cpu)
68179686 957 ring_buffer_reset_cpu(buffer, cpu);
621968cd
SR
958
959 ring_buffer_record_enable(buffer);
213cc060
PE
960}
961
9456f0fa
SR
962void tracing_reset_current(int cpu)
963{
964 tracing_reset(&global_trace, cpu);
965}
966
967void tracing_reset_current_online_cpus(void)
968{
969 tracing_reset_online_cpus(&global_trace);
970}
971
bc0c38d1 972#define SAVED_CMDLINES 128
2c7eea4c 973#define NO_CMDLINE_MAP UINT_MAX
bc0c38d1
SR
974static unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1];
975static unsigned map_cmdline_to_pid[SAVED_CMDLINES];
976static char saved_cmdlines[SAVED_CMDLINES][TASK_COMM_LEN];
977static int cmdline_idx;
edc35bd7 978static arch_spinlock_t trace_cmdline_lock = __ARCH_SPIN_LOCK_UNLOCKED;
25b0b44a 979
25b0b44a 980/* temporary disable recording */
4fd27358 981static atomic_t trace_record_cmdline_disabled __read_mostly;
bc0c38d1
SR
982
983static void trace_init_cmdlines(void)
984{
2c7eea4c
TG
985 memset(&map_pid_to_cmdline, NO_CMDLINE_MAP, sizeof(map_pid_to_cmdline));
986 memset(&map_cmdline_to_pid, NO_CMDLINE_MAP, sizeof(map_cmdline_to_pid));
bc0c38d1
SR
987 cmdline_idx = 0;
988}
989
b5130b1e
CE
990int is_tracing_stopped(void)
991{
992 return trace_stop_count;
993}
994
69bb54ec
SR
995/**
996 * ftrace_off_permanent - disable all ftrace code permanently
997 *
998 * This should only be called when a serious anomally has
999 * been detected. This will turn off the function tracing,
1000 * ring buffers, and other tracing utilites. It takes no
1001 * locks and can be called from any context.
1002 */
1003void ftrace_off_permanent(void)
1004{
1005 tracing_disabled = 1;
1006 ftrace_stop();
1007 tracing_off_permanent();
1008}
1009
0f048701
SR
1010/**
1011 * tracing_start - quick start of the tracer
1012 *
1013 * If tracing is enabled but was stopped by tracing_stop,
1014 * this will start the tracer back up.
1015 */
1016void tracing_start(void)
1017{
1018 struct ring_buffer *buffer;
1019 unsigned long flags;
1020
1021 if (tracing_disabled)
1022 return;
1023
5389f6fa 1024 raw_spin_lock_irqsave(&tracing_start_lock, flags);
b06a8301
SR
1025 if (--trace_stop_count) {
1026 if (trace_stop_count < 0) {
1027 /* Someone screwed up their debugging */
1028 WARN_ON_ONCE(1);
1029 trace_stop_count = 0;
1030 }
0f048701
SR
1031 goto out;
1032 }
1033
a2f80714
SR
1034 /* Prevent the buffers from switching */
1035 arch_spin_lock(&ftrace_max_lock);
0f048701
SR
1036
1037 buffer = global_trace.buffer;
1038 if (buffer)
1039 ring_buffer_record_enable(buffer);
1040
1041 buffer = max_tr.buffer;
1042 if (buffer)
1043 ring_buffer_record_enable(buffer);
1044
a2f80714
SR
1045 arch_spin_unlock(&ftrace_max_lock);
1046
0f048701
SR
1047 ftrace_start();
1048 out:
5389f6fa 1049 raw_spin_unlock_irqrestore(&tracing_start_lock, flags);
0f048701
SR
1050}
1051
1052/**
1053 * tracing_stop - quick stop of the tracer
1054 *
1055 * Light weight way to stop tracing. Use in conjunction with
1056 * tracing_start.
1057 */
1058void tracing_stop(void)
1059{
1060 struct ring_buffer *buffer;
1061 unsigned long flags;
1062
1063 ftrace_stop();
5389f6fa 1064 raw_spin_lock_irqsave(&tracing_start_lock, flags);
0f048701
SR
1065 if (trace_stop_count++)
1066 goto out;
1067
a2f80714
SR
1068 /* Prevent the buffers from switching */
1069 arch_spin_lock(&ftrace_max_lock);
1070
0f048701
SR
1071 buffer = global_trace.buffer;
1072 if (buffer)
1073 ring_buffer_record_disable(buffer);
1074
1075 buffer = max_tr.buffer;
1076 if (buffer)
1077 ring_buffer_record_disable(buffer);
1078
a2f80714
SR
1079 arch_spin_unlock(&ftrace_max_lock);
1080
0f048701 1081 out:
5389f6fa 1082 raw_spin_unlock_irqrestore(&tracing_start_lock, flags);
0f048701
SR
1083}
1084
e309b41d 1085void trace_stop_cmdline_recording(void);
bc0c38d1 1086
e309b41d 1087static void trace_save_cmdline(struct task_struct *tsk)
bc0c38d1 1088{
a635cf04 1089 unsigned pid, idx;
bc0c38d1
SR
1090
1091 if (!tsk->pid || unlikely(tsk->pid > PID_MAX_DEFAULT))
1092 return;
1093
1094 /*
1095 * It's not the end of the world if we don't get
1096 * the lock, but we also don't want to spin
1097 * nor do we want to disable interrupts,
1098 * so if we miss here, then better luck next time.
1099 */
0199c4e6 1100 if (!arch_spin_trylock(&trace_cmdline_lock))
bc0c38d1
SR
1101 return;
1102
1103 idx = map_pid_to_cmdline[tsk->pid];
2c7eea4c 1104 if (idx == NO_CMDLINE_MAP) {
bc0c38d1
SR
1105 idx = (cmdline_idx + 1) % SAVED_CMDLINES;
1106
a635cf04
CE
1107 /*
1108 * Check whether the cmdline buffer at idx has a pid
1109 * mapped. We are going to overwrite that entry so we
1110 * need to clear the map_pid_to_cmdline. Otherwise we
1111 * would read the new comm for the old pid.
1112 */
1113 pid = map_cmdline_to_pid[idx];
1114 if (pid != NO_CMDLINE_MAP)
1115 map_pid_to_cmdline[pid] = NO_CMDLINE_MAP;
bc0c38d1 1116
a635cf04 1117 map_cmdline_to_pid[idx] = tsk->pid;
bc0c38d1
SR
1118 map_pid_to_cmdline[tsk->pid] = idx;
1119
1120 cmdline_idx = idx;
1121 }
1122
1123 memcpy(&saved_cmdlines[idx], tsk->comm, TASK_COMM_LEN);
1124
0199c4e6 1125 arch_spin_unlock(&trace_cmdline_lock);
bc0c38d1
SR
1126}
1127
4ca53085 1128void trace_find_cmdline(int pid, char comm[])
bc0c38d1 1129{
bc0c38d1
SR
1130 unsigned map;
1131
4ca53085
SR
1132 if (!pid) {
1133 strcpy(comm, "<idle>");
1134 return;
1135 }
bc0c38d1 1136
74bf4076
SR
1137 if (WARN_ON_ONCE(pid < 0)) {
1138 strcpy(comm, "<XXX>");
1139 return;
1140 }
1141
4ca53085
SR
1142 if (pid > PID_MAX_DEFAULT) {
1143 strcpy(comm, "<...>");
1144 return;
1145 }
bc0c38d1 1146
5b6045a9 1147 preempt_disable();
0199c4e6 1148 arch_spin_lock(&trace_cmdline_lock);
bc0c38d1 1149 map = map_pid_to_cmdline[pid];
50d88758
TG
1150 if (map != NO_CMDLINE_MAP)
1151 strcpy(comm, saved_cmdlines[map]);
1152 else
1153 strcpy(comm, "<...>");
bc0c38d1 1154
0199c4e6 1155 arch_spin_unlock(&trace_cmdline_lock);
5b6045a9 1156 preempt_enable();
bc0c38d1
SR
1157}
1158
e309b41d 1159void tracing_record_cmdline(struct task_struct *tsk)
bc0c38d1 1160{
0fb9656d 1161 if (atomic_read(&trace_record_cmdline_disabled) || !tracing_is_on())
bc0c38d1
SR
1162 return;
1163
7ffbd48d
SR
1164 if (!__this_cpu_read(trace_cmdline_save))
1165 return;
1166
1167 __this_cpu_write(trace_cmdline_save, false);
1168
bc0c38d1
SR
1169 trace_save_cmdline(tsk);
1170}
1171
45dcd8b8 1172void
38697053
SR
1173tracing_generic_entry_update(struct trace_entry *entry, unsigned long flags,
1174 int pc)
bc0c38d1
SR
1175{
1176 struct task_struct *tsk = current;
bc0c38d1 1177
777e208d
SR
1178 entry->preempt_count = pc & 0xff;
1179 entry->pid = (tsk) ? tsk->pid : 0;
1180 entry->flags =
9244489a 1181#ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
2e2ca155 1182 (irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) |
9244489a
SR
1183#else
1184 TRACE_FLAG_IRQS_NOSUPPORT |
1185#endif
bc0c38d1
SR
1186 ((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) |
1187 ((pc & SOFTIRQ_MASK) ? TRACE_FLAG_SOFTIRQ : 0) |
1188 (need_resched() ? TRACE_FLAG_NEED_RESCHED : 0);
1189}
f413cdb8 1190EXPORT_SYMBOL_GPL(tracing_generic_entry_update);
bc0c38d1 1191
e77405ad
SR
1192struct ring_buffer_event *
1193trace_buffer_lock_reserve(struct ring_buffer *buffer,
1194 int type,
1195 unsigned long len,
1196 unsigned long flags, int pc)
51a763dd
ACM
1197{
1198 struct ring_buffer_event *event;
1199
e77405ad 1200 event = ring_buffer_lock_reserve(buffer, len);
51a763dd
ACM
1201 if (event != NULL) {
1202 struct trace_entry *ent = ring_buffer_event_data(event);
1203
1204 tracing_generic_entry_update(ent, flags, pc);
1205 ent->type = type;
1206 }
1207
1208 return event;
1209}
51a763dd 1210
7ffbd48d
SR
1211void
1212__buffer_unlock_commit(struct ring_buffer *buffer, struct ring_buffer_event *event)
1213{
1214 __this_cpu_write(trace_cmdline_save, true);
0d5c6e1c
SR
1215 if (trace_wakeup_needed) {
1216 trace_wakeup_needed = false;
1217 /* irq_work_queue() supplies it's own memory barriers */
1218 irq_work_queue(&trace_work_wakeup);
1219 }
7ffbd48d
SR
1220 ring_buffer_unlock_commit(buffer, event);
1221}
1222
e77405ad
SR
1223static inline void
1224__trace_buffer_unlock_commit(struct ring_buffer *buffer,
1225 struct ring_buffer_event *event,
0d5c6e1c 1226 unsigned long flags, int pc)
51a763dd 1227{
7ffbd48d 1228 __buffer_unlock_commit(buffer, event);
51a763dd 1229
e77405ad
SR
1230 ftrace_trace_stack(buffer, flags, 6, pc);
1231 ftrace_trace_userstack(buffer, flags, pc);
07edf712
FW
1232}
1233
e77405ad
SR
1234void trace_buffer_unlock_commit(struct ring_buffer *buffer,
1235 struct ring_buffer_event *event,
1236 unsigned long flags, int pc)
07edf712 1237{
0d5c6e1c 1238 __trace_buffer_unlock_commit(buffer, event, flags, pc);
51a763dd 1239}
0d5c6e1c 1240EXPORT_SYMBOL_GPL(trace_buffer_unlock_commit);
51a763dd 1241
ef5580d0 1242struct ring_buffer_event *
e77405ad
SR
1243trace_current_buffer_lock_reserve(struct ring_buffer **current_rb,
1244 int type, unsigned long len,
ef5580d0
SR
1245 unsigned long flags, int pc)
1246{
e77405ad
SR
1247 *current_rb = global_trace.buffer;
1248 return trace_buffer_lock_reserve(*current_rb,
ef5580d0
SR
1249 type, len, flags, pc);
1250}
94487d6d 1251EXPORT_SYMBOL_GPL(trace_current_buffer_lock_reserve);
ef5580d0 1252
e77405ad
SR
1253void trace_current_buffer_unlock_commit(struct ring_buffer *buffer,
1254 struct ring_buffer_event *event,
ef5580d0
SR
1255 unsigned long flags, int pc)
1256{
0d5c6e1c 1257 __trace_buffer_unlock_commit(buffer, event, flags, pc);
07edf712 1258}
94487d6d 1259EXPORT_SYMBOL_GPL(trace_current_buffer_unlock_commit);
07edf712 1260
0d5c6e1c
SR
1261void trace_buffer_unlock_commit_regs(struct ring_buffer *buffer,
1262 struct ring_buffer_event *event,
1263 unsigned long flags, int pc,
1264 struct pt_regs *regs)
1fd8df2c 1265{
7ffbd48d 1266 __buffer_unlock_commit(buffer, event);
1fd8df2c
MH
1267
1268 ftrace_trace_stack_regs(buffer, flags, 0, pc, regs);
1269 ftrace_trace_userstack(buffer, flags, pc);
1270}
0d5c6e1c 1271EXPORT_SYMBOL_GPL(trace_buffer_unlock_commit_regs);
1fd8df2c 1272
e77405ad
SR
1273void trace_current_buffer_discard_commit(struct ring_buffer *buffer,
1274 struct ring_buffer_event *event)
77d9f465 1275{
e77405ad 1276 ring_buffer_discard_commit(buffer, event);
ef5580d0 1277}
12acd473 1278EXPORT_SYMBOL_GPL(trace_current_buffer_discard_commit);
ef5580d0 1279
e309b41d 1280void
7be42151 1281trace_function(struct trace_array *tr,
38697053
SR
1282 unsigned long ip, unsigned long parent_ip, unsigned long flags,
1283 int pc)
bc0c38d1 1284{
e1112b4d 1285 struct ftrace_event_call *call = &event_function;
e77405ad 1286 struct ring_buffer *buffer = tr->buffer;
3928a8a2 1287 struct ring_buffer_event *event;
777e208d 1288 struct ftrace_entry *entry;
bc0c38d1 1289
d769041f 1290 /* If we are reading the ring buffer, don't trace */
dd17c8f7 1291 if (unlikely(__this_cpu_read(ftrace_cpu_disabled)))
d769041f
SR
1292 return;
1293
e77405ad 1294 event = trace_buffer_lock_reserve(buffer, TRACE_FN, sizeof(*entry),
51a763dd 1295 flags, pc);
3928a8a2
SR
1296 if (!event)
1297 return;
1298 entry = ring_buffer_event_data(event);
777e208d
SR
1299 entry->ip = ip;
1300 entry->parent_ip = parent_ip;
e1112b4d 1301
e77405ad 1302 if (!filter_check_discard(call, entry, buffer, event))
7ffbd48d 1303 __buffer_unlock_commit(buffer, event);
bc0c38d1
SR
1304}
1305
e309b41d 1306void
2e0f5761 1307ftrace(struct trace_array *tr, struct trace_array_cpu *data,
38697053
SR
1308 unsigned long ip, unsigned long parent_ip, unsigned long flags,
1309 int pc)
2e0f5761
IM
1310{
1311 if (likely(!atomic_read(&data->disabled)))
7be42151 1312 trace_function(tr, ip, parent_ip, flags, pc);
2e0f5761
IM
1313}
1314
c0a0d0d3 1315#ifdef CONFIG_STACKTRACE
4a9bd3f1
SR
1316
1317#define FTRACE_STACK_MAX_ENTRIES (PAGE_SIZE / sizeof(unsigned long))
1318struct ftrace_stack {
1319 unsigned long calls[FTRACE_STACK_MAX_ENTRIES];
1320};
1321
1322static DEFINE_PER_CPU(struct ftrace_stack, ftrace_stack);
1323static DEFINE_PER_CPU(int, ftrace_stack_reserve);
1324
e77405ad 1325static void __ftrace_trace_stack(struct ring_buffer *buffer,
53614991 1326 unsigned long flags,
1fd8df2c 1327 int skip, int pc, struct pt_regs *regs)
86387f7e 1328{
e1112b4d 1329 struct ftrace_event_call *call = &event_kernel_stack;
3928a8a2 1330 struct ring_buffer_event *event;
777e208d 1331 struct stack_entry *entry;
86387f7e 1332 struct stack_trace trace;
4a9bd3f1
SR
1333 int use_stack;
1334 int size = FTRACE_STACK_ENTRIES;
1335
1336 trace.nr_entries = 0;
1337 trace.skip = skip;
1338
1339 /*
1340 * Since events can happen in NMIs there's no safe way to
1341 * use the per cpu ftrace_stacks. We reserve it and if an interrupt
1342 * or NMI comes in, it will just have to use the default
1343 * FTRACE_STACK_SIZE.
1344 */
1345 preempt_disable_notrace();
1346
82146529 1347 use_stack = __this_cpu_inc_return(ftrace_stack_reserve);
4a9bd3f1
SR
1348 /*
1349 * We don't need any atomic variables, just a barrier.
1350 * If an interrupt comes in, we don't care, because it would
1351 * have exited and put the counter back to what we want.
1352 * We just need a barrier to keep gcc from moving things
1353 * around.
1354 */
1355 barrier();
1356 if (use_stack == 1) {
1357 trace.entries = &__get_cpu_var(ftrace_stack).calls[0];
1358 trace.max_entries = FTRACE_STACK_MAX_ENTRIES;
1359
1360 if (regs)
1361 save_stack_trace_regs(regs, &trace);
1362 else
1363 save_stack_trace(&trace);
1364
1365 if (trace.nr_entries > size)
1366 size = trace.nr_entries;
1367 } else
1368 /* From now on, use_stack is a boolean */
1369 use_stack = 0;
1370
1371 size *= sizeof(unsigned long);
86387f7e 1372
e77405ad 1373 event = trace_buffer_lock_reserve(buffer, TRACE_STACK,
4a9bd3f1 1374 sizeof(*entry) + size, flags, pc);
3928a8a2 1375 if (!event)
4a9bd3f1
SR
1376 goto out;
1377 entry = ring_buffer_event_data(event);
86387f7e 1378
4a9bd3f1
SR
1379 memset(&entry->caller, 0, size);
1380
1381 if (use_stack)
1382 memcpy(&entry->caller, trace.entries,
1383 trace.nr_entries * sizeof(unsigned long));
1384 else {
1385 trace.max_entries = FTRACE_STACK_ENTRIES;
1386 trace.entries = entry->caller;
1387 if (regs)
1388 save_stack_trace_regs(regs, &trace);
1389 else
1390 save_stack_trace(&trace);
1391 }
1392
1393 entry->size = trace.nr_entries;
86387f7e 1394
e77405ad 1395 if (!filter_check_discard(call, entry, buffer, event))
7ffbd48d 1396 __buffer_unlock_commit(buffer, event);
4a9bd3f1
SR
1397
1398 out:
1399 /* Again, don't let gcc optimize things here */
1400 barrier();
82146529 1401 __this_cpu_dec(ftrace_stack_reserve);
4a9bd3f1
SR
1402 preempt_enable_notrace();
1403
f0a920d5
IM
1404}
1405
1fd8df2c
MH
1406void ftrace_trace_stack_regs(struct ring_buffer *buffer, unsigned long flags,
1407 int skip, int pc, struct pt_regs *regs)
1408{
1409 if (!(trace_flags & TRACE_ITER_STACKTRACE))
1410 return;
1411
1412 __ftrace_trace_stack(buffer, flags, skip, pc, regs);
1413}
1414
e77405ad
SR
1415void ftrace_trace_stack(struct ring_buffer *buffer, unsigned long flags,
1416 int skip, int pc)
53614991
SR
1417{
1418 if (!(trace_flags & TRACE_ITER_STACKTRACE))
1419 return;
1420
1fd8df2c 1421 __ftrace_trace_stack(buffer, flags, skip, pc, NULL);
53614991
SR
1422}
1423
c0a0d0d3
FW
1424void __trace_stack(struct trace_array *tr, unsigned long flags, int skip,
1425 int pc)
38697053 1426{
1fd8df2c 1427 __ftrace_trace_stack(tr->buffer, flags, skip, pc, NULL);
38697053
SR
1428}
1429
03889384
SR
1430/**
1431 * trace_dump_stack - record a stack back trace in the trace buffer
1432 */
1433void trace_dump_stack(void)
1434{
1435 unsigned long flags;
1436
1437 if (tracing_disabled || tracing_selftest_running)
e36c5458 1438 return;
03889384
SR
1439
1440 local_save_flags(flags);
1441
1442 /* skipping 3 traces, seems to get us at the caller of this function */
1fd8df2c 1443 __ftrace_trace_stack(global_trace.buffer, flags, 3, preempt_count(), NULL);
03889384
SR
1444}
1445
91e86e56
SR
1446static DEFINE_PER_CPU(int, user_stack_count);
1447
e77405ad
SR
1448void
1449ftrace_trace_userstack(struct ring_buffer *buffer, unsigned long flags, int pc)
02b67518 1450{
e1112b4d 1451 struct ftrace_event_call *call = &event_user_stack;
8d7c6a96 1452 struct ring_buffer_event *event;
02b67518
TE
1453 struct userstack_entry *entry;
1454 struct stack_trace trace;
02b67518
TE
1455
1456 if (!(trace_flags & TRACE_ITER_USERSTACKTRACE))
1457 return;
1458
b6345879
SR
1459 /*
1460 * NMIs can not handle page faults, even with fix ups.
1461 * The save user stack can (and often does) fault.
1462 */
1463 if (unlikely(in_nmi()))
1464 return;
02b67518 1465
91e86e56
SR
1466 /*
1467 * prevent recursion, since the user stack tracing may
1468 * trigger other kernel events.
1469 */
1470 preempt_disable();
1471 if (__this_cpu_read(user_stack_count))
1472 goto out;
1473
1474 __this_cpu_inc(user_stack_count);
1475
e77405ad 1476 event = trace_buffer_lock_reserve(buffer, TRACE_USER_STACK,
51a763dd 1477 sizeof(*entry), flags, pc);
02b67518 1478 if (!event)
1dbd1951 1479 goto out_drop_count;
02b67518 1480 entry = ring_buffer_event_data(event);
02b67518 1481
48659d31 1482 entry->tgid = current->tgid;
02b67518
TE
1483 memset(&entry->caller, 0, sizeof(entry->caller));
1484
1485 trace.nr_entries = 0;
1486 trace.max_entries = FTRACE_STACK_ENTRIES;
1487 trace.skip = 0;
1488 trace.entries = entry->caller;
1489
1490 save_stack_trace_user(&trace);
e77405ad 1491 if (!filter_check_discard(call, entry, buffer, event))
7ffbd48d 1492 __buffer_unlock_commit(buffer, event);
91e86e56 1493
1dbd1951 1494 out_drop_count:
91e86e56 1495 __this_cpu_dec(user_stack_count);
91e86e56
SR
1496 out:
1497 preempt_enable();
02b67518
TE
1498}
1499
4fd27358
HE
1500#ifdef UNUSED
1501static void __trace_userstack(struct trace_array *tr, unsigned long flags)
02b67518 1502{
7be42151 1503 ftrace_trace_userstack(tr, flags, preempt_count());
02b67518 1504}
4fd27358 1505#endif /* UNUSED */
02b67518 1506
c0a0d0d3
FW
1507#endif /* CONFIG_STACKTRACE */
1508
07d777fe
SR
1509/* created for use with alloc_percpu */
1510struct trace_buffer_struct {
1511 char buffer[TRACE_BUF_SIZE];
1512};
1513
1514static struct trace_buffer_struct *trace_percpu_buffer;
1515static struct trace_buffer_struct *trace_percpu_sirq_buffer;
1516static struct trace_buffer_struct *trace_percpu_irq_buffer;
1517static struct trace_buffer_struct *trace_percpu_nmi_buffer;
1518
1519/*
1520 * The buffer used is dependent on the context. There is a per cpu
1521 * buffer for normal context, softirq contex, hard irq context and
1522 * for NMI context. Thise allows for lockless recording.
1523 *
1524 * Note, if the buffers failed to be allocated, then this returns NULL
1525 */
1526static char *get_trace_buf(void)
1527{
1528 struct trace_buffer_struct *percpu_buffer;
07d777fe
SR
1529
1530 /*
1531 * If we have allocated per cpu buffers, then we do not
1532 * need to do any locking.
1533 */
1534 if (in_nmi())
1535 percpu_buffer = trace_percpu_nmi_buffer;
1536 else if (in_irq())
1537 percpu_buffer = trace_percpu_irq_buffer;
1538 else if (in_softirq())
1539 percpu_buffer = trace_percpu_sirq_buffer;
1540 else
1541 percpu_buffer = trace_percpu_buffer;
1542
1543 if (!percpu_buffer)
1544 return NULL;
1545
d8a0349c 1546 return this_cpu_ptr(&percpu_buffer->buffer[0]);
07d777fe
SR
1547}
1548
1549static int alloc_percpu_trace_buffer(void)
1550{
1551 struct trace_buffer_struct *buffers;
1552 struct trace_buffer_struct *sirq_buffers;
1553 struct trace_buffer_struct *irq_buffers;
1554 struct trace_buffer_struct *nmi_buffers;
1555
1556 buffers = alloc_percpu(struct trace_buffer_struct);
1557 if (!buffers)
1558 goto err_warn;
1559
1560 sirq_buffers = alloc_percpu(struct trace_buffer_struct);
1561 if (!sirq_buffers)
1562 goto err_sirq;
1563
1564 irq_buffers = alloc_percpu(struct trace_buffer_struct);
1565 if (!irq_buffers)
1566 goto err_irq;
1567
1568 nmi_buffers = alloc_percpu(struct trace_buffer_struct);
1569 if (!nmi_buffers)
1570 goto err_nmi;
1571
1572 trace_percpu_buffer = buffers;
1573 trace_percpu_sirq_buffer = sirq_buffers;
1574 trace_percpu_irq_buffer = irq_buffers;
1575 trace_percpu_nmi_buffer = nmi_buffers;
1576
1577 return 0;
1578
1579 err_nmi:
1580 free_percpu(irq_buffers);
1581 err_irq:
1582 free_percpu(sirq_buffers);
1583 err_sirq:
1584 free_percpu(buffers);
1585 err_warn:
1586 WARN(1, "Could not allocate percpu trace_printk buffer");
1587 return -ENOMEM;
1588}
1589
81698831
SR
1590static int buffers_allocated;
1591
07d777fe
SR
1592void trace_printk_init_buffers(void)
1593{
07d777fe
SR
1594 if (buffers_allocated)
1595 return;
1596
1597 if (alloc_percpu_trace_buffer())
1598 return;
1599
1600 pr_info("ftrace: Allocated trace_printk buffers\n");
1601
b382ede6
SR
1602 /* Expand the buffers to set size */
1603 tracing_update_buffers();
1604
07d777fe 1605 buffers_allocated = 1;
81698831
SR
1606
1607 /*
1608 * trace_printk_init_buffers() can be called by modules.
1609 * If that happens, then we need to start cmdline recording
1610 * directly here. If the global_trace.buffer is already
1611 * allocated here, then this was called by module code.
1612 */
1613 if (global_trace.buffer)
1614 tracing_start_cmdline_record();
1615}
1616
1617void trace_printk_start_comm(void)
1618{
1619 /* Start tracing comms if trace printk is set */
1620 if (!buffers_allocated)
1621 return;
1622 tracing_start_cmdline_record();
1623}
1624
1625static void trace_printk_start_stop_comm(int enabled)
1626{
1627 if (!buffers_allocated)
1628 return;
1629
1630 if (enabled)
1631 tracing_start_cmdline_record();
1632 else
1633 tracing_stop_cmdline_record();
07d777fe
SR
1634}
1635
769b0441 1636/**
48ead020 1637 * trace_vbprintk - write binary msg to tracing buffer
769b0441
FW
1638 *
1639 */
40ce74f1 1640int trace_vbprintk(unsigned long ip, const char *fmt, va_list args)
769b0441 1641{
e1112b4d 1642 struct ftrace_event_call *call = &event_bprint;
769b0441 1643 struct ring_buffer_event *event;
e77405ad 1644 struct ring_buffer *buffer;
769b0441 1645 struct trace_array *tr = &global_trace;
48ead020 1646 struct bprint_entry *entry;
769b0441 1647 unsigned long flags;
07d777fe
SR
1648 char *tbuffer;
1649 int len = 0, size, pc;
769b0441
FW
1650
1651 if (unlikely(tracing_selftest_running || tracing_disabled))
1652 return 0;
1653
1654 /* Don't pollute graph traces with trace_vprintk internals */
1655 pause_graph_tracing();
1656
1657 pc = preempt_count();
5168ae50 1658 preempt_disable_notrace();
769b0441 1659
07d777fe
SR
1660 tbuffer = get_trace_buf();
1661 if (!tbuffer) {
1662 len = 0;
769b0441 1663 goto out;
07d777fe 1664 }
769b0441 1665
07d777fe 1666 len = vbin_printf((u32 *)tbuffer, TRACE_BUF_SIZE/sizeof(int), fmt, args);
769b0441 1667
07d777fe
SR
1668 if (len > TRACE_BUF_SIZE/sizeof(int) || len < 0)
1669 goto out;
769b0441 1670
07d777fe 1671 local_save_flags(flags);
769b0441 1672 size = sizeof(*entry) + sizeof(u32) * len;
e77405ad
SR
1673 buffer = tr->buffer;
1674 event = trace_buffer_lock_reserve(buffer, TRACE_BPRINT, size,
1675 flags, pc);
769b0441 1676 if (!event)
07d777fe 1677 goto out;
769b0441
FW
1678 entry = ring_buffer_event_data(event);
1679 entry->ip = ip;
769b0441
FW
1680 entry->fmt = fmt;
1681
07d777fe 1682 memcpy(entry->buf, tbuffer, sizeof(u32) * len);
d931369b 1683 if (!filter_check_discard(call, entry, buffer, event)) {
7ffbd48d 1684 __buffer_unlock_commit(buffer, event);
d931369b
SR
1685 ftrace_trace_stack(buffer, flags, 6, pc);
1686 }
769b0441 1687
769b0441 1688out:
5168ae50 1689 preempt_enable_notrace();
769b0441
FW
1690 unpause_graph_tracing();
1691
1692 return len;
1693}
48ead020
FW
1694EXPORT_SYMBOL_GPL(trace_vbprintk);
1695
659372d3
SR
1696int trace_array_printk(struct trace_array *tr,
1697 unsigned long ip, const char *fmt, ...)
1698{
1699 int ret;
1700 va_list ap;
1701
1702 if (!(trace_flags & TRACE_ITER_PRINTK))
1703 return 0;
1704
1705 va_start(ap, fmt);
1706 ret = trace_array_vprintk(tr, ip, fmt, ap);
1707 va_end(ap);
1708 return ret;
1709}
1710
1711int trace_array_vprintk(struct trace_array *tr,
1712 unsigned long ip, const char *fmt, va_list args)
48ead020 1713{
e1112b4d 1714 struct ftrace_event_call *call = &event_print;
48ead020 1715 struct ring_buffer_event *event;
e77405ad 1716 struct ring_buffer *buffer;
07d777fe 1717 int len = 0, size, pc;
48ead020 1718 struct print_entry *entry;
07d777fe
SR
1719 unsigned long flags;
1720 char *tbuffer;
48ead020
FW
1721
1722 if (tracing_disabled || tracing_selftest_running)
1723 return 0;
1724
07d777fe
SR
1725 /* Don't pollute graph traces with trace_vprintk internals */
1726 pause_graph_tracing();
1727
48ead020
FW
1728 pc = preempt_count();
1729 preempt_disable_notrace();
48ead020 1730
07d777fe
SR
1731
1732 tbuffer = get_trace_buf();
1733 if (!tbuffer) {
1734 len = 0;
48ead020 1735 goto out;
07d777fe 1736 }
48ead020 1737
07d777fe
SR
1738 len = vsnprintf(tbuffer, TRACE_BUF_SIZE, fmt, args);
1739 if (len > TRACE_BUF_SIZE)
1740 goto out;
48ead020 1741
07d777fe 1742 local_save_flags(flags);
48ead020 1743 size = sizeof(*entry) + len + 1;
e77405ad
SR
1744 buffer = tr->buffer;
1745 event = trace_buffer_lock_reserve(buffer, TRACE_PRINT, size,
07d777fe 1746 flags, pc);
48ead020 1747 if (!event)
07d777fe 1748 goto out;
48ead020 1749 entry = ring_buffer_event_data(event);
c13d2f7c 1750 entry->ip = ip;
48ead020 1751
07d777fe 1752 memcpy(&entry->buf, tbuffer, len);
c13d2f7c 1753 entry->buf[len] = '\0';
d931369b 1754 if (!filter_check_discard(call, entry, buffer, event)) {
7ffbd48d 1755 __buffer_unlock_commit(buffer, event);
07d777fe 1756 ftrace_trace_stack(buffer, flags, 6, pc);
d931369b 1757 }
48ead020
FW
1758 out:
1759 preempt_enable_notrace();
07d777fe 1760 unpause_graph_tracing();
48ead020
FW
1761
1762 return len;
1763}
659372d3
SR
1764
1765int trace_vprintk(unsigned long ip, const char *fmt, va_list args)
1766{
a813a159 1767 return trace_array_vprintk(&global_trace, ip, fmt, args);
659372d3 1768}
769b0441
FW
1769EXPORT_SYMBOL_GPL(trace_vprintk);
1770
e2ac8ef5 1771static void trace_iterator_increment(struct trace_iterator *iter)
5a90f577 1772{
6d158a81
SR
1773 struct ring_buffer_iter *buf_iter = trace_buffer_iter(iter, iter->cpu);
1774
5a90f577 1775 iter->idx++;
6d158a81
SR
1776 if (buf_iter)
1777 ring_buffer_read(buf_iter, NULL);
5a90f577
SR
1778}
1779
e309b41d 1780static struct trace_entry *
bc21b478
SR
1781peek_next_entry(struct trace_iterator *iter, int cpu, u64 *ts,
1782 unsigned long *lost_events)
dd0e545f 1783{
3928a8a2 1784 struct ring_buffer_event *event;
6d158a81 1785 struct ring_buffer_iter *buf_iter = trace_buffer_iter(iter, cpu);
dd0e545f 1786
d769041f
SR
1787 if (buf_iter)
1788 event = ring_buffer_iter_peek(buf_iter, ts);
1789 else
bc21b478
SR
1790 event = ring_buffer_peek(iter->tr->buffer, cpu, ts,
1791 lost_events);
d769041f 1792
4a9bd3f1
SR
1793 if (event) {
1794 iter->ent_size = ring_buffer_event_length(event);
1795 return ring_buffer_event_data(event);
1796 }
1797 iter->ent_size = 0;
1798 return NULL;
dd0e545f 1799}
d769041f 1800
dd0e545f 1801static struct trace_entry *
bc21b478
SR
1802__find_next_entry(struct trace_iterator *iter, int *ent_cpu,
1803 unsigned long *missing_events, u64 *ent_ts)
bc0c38d1 1804{
3928a8a2 1805 struct ring_buffer *buffer = iter->tr->buffer;
bc0c38d1 1806 struct trace_entry *ent, *next = NULL;
aa27497c 1807 unsigned long lost_events = 0, next_lost = 0;
b04cc6b1 1808 int cpu_file = iter->cpu_file;
3928a8a2 1809 u64 next_ts = 0, ts;
bc0c38d1 1810 int next_cpu = -1;
12b5da34 1811 int next_size = 0;
bc0c38d1
SR
1812 int cpu;
1813
b04cc6b1
FW
1814 /*
1815 * If we are in a per_cpu trace file, don't bother by iterating over
1816 * all cpu and peek directly.
1817 */
1818 if (cpu_file > TRACE_PIPE_ALL_CPU) {
1819 if (ring_buffer_empty_cpu(buffer, cpu_file))
1820 return NULL;
bc21b478 1821 ent = peek_next_entry(iter, cpu_file, ent_ts, missing_events);
b04cc6b1
FW
1822 if (ent_cpu)
1823 *ent_cpu = cpu_file;
1824
1825 return ent;
1826 }
1827
ab46428c 1828 for_each_tracing_cpu(cpu) {
dd0e545f 1829
3928a8a2
SR
1830 if (ring_buffer_empty_cpu(buffer, cpu))
1831 continue;
dd0e545f 1832
bc21b478 1833 ent = peek_next_entry(iter, cpu, &ts, &lost_events);
dd0e545f 1834
cdd31cd2
IM
1835 /*
1836 * Pick the entry with the smallest timestamp:
1837 */
3928a8a2 1838 if (ent && (!next || ts < next_ts)) {
bc0c38d1
SR
1839 next = ent;
1840 next_cpu = cpu;
3928a8a2 1841 next_ts = ts;
bc21b478 1842 next_lost = lost_events;
12b5da34 1843 next_size = iter->ent_size;
bc0c38d1
SR
1844 }
1845 }
1846
12b5da34
SR
1847 iter->ent_size = next_size;
1848
bc0c38d1
SR
1849 if (ent_cpu)
1850 *ent_cpu = next_cpu;
1851
3928a8a2
SR
1852 if (ent_ts)
1853 *ent_ts = next_ts;
1854
bc21b478
SR
1855 if (missing_events)
1856 *missing_events = next_lost;
1857
bc0c38d1
SR
1858 return next;
1859}
1860
dd0e545f 1861/* Find the next real entry, without updating the iterator itself */
c4a8e8be
FW
1862struct trace_entry *trace_find_next_entry(struct trace_iterator *iter,
1863 int *ent_cpu, u64 *ent_ts)
bc0c38d1 1864{
bc21b478 1865 return __find_next_entry(iter, ent_cpu, NULL, ent_ts);
dd0e545f
SR
1866}
1867
1868/* Find the next real entry, and increment the iterator to the next entry */
955b61e5 1869void *trace_find_next_entry_inc(struct trace_iterator *iter)
dd0e545f 1870{
bc21b478
SR
1871 iter->ent = __find_next_entry(iter, &iter->cpu,
1872 &iter->lost_events, &iter->ts);
dd0e545f 1873
3928a8a2 1874 if (iter->ent)
e2ac8ef5 1875 trace_iterator_increment(iter);
dd0e545f 1876
3928a8a2 1877 return iter->ent ? iter : NULL;
b3806b43 1878}
bc0c38d1 1879
e309b41d 1880static void trace_consume(struct trace_iterator *iter)
b3806b43 1881{
bc21b478
SR
1882 ring_buffer_consume(iter->tr->buffer, iter->cpu, &iter->ts,
1883 &iter->lost_events);
bc0c38d1
SR
1884}
1885
e309b41d 1886static void *s_next(struct seq_file *m, void *v, loff_t *pos)
bc0c38d1
SR
1887{
1888 struct trace_iterator *iter = m->private;
bc0c38d1 1889 int i = (int)*pos;
4e3c3333 1890 void *ent;
bc0c38d1 1891
a63ce5b3
SR
1892 WARN_ON_ONCE(iter->leftover);
1893
bc0c38d1
SR
1894 (*pos)++;
1895
1896 /* can't go backwards */
1897 if (iter->idx > i)
1898 return NULL;
1899
1900 if (iter->idx < 0)
955b61e5 1901 ent = trace_find_next_entry_inc(iter);
bc0c38d1
SR
1902 else
1903 ent = iter;
1904
1905 while (ent && iter->idx < i)
955b61e5 1906 ent = trace_find_next_entry_inc(iter);
bc0c38d1
SR
1907
1908 iter->pos = *pos;
1909
bc0c38d1
SR
1910 return ent;
1911}
1912
955b61e5 1913void tracing_iter_reset(struct trace_iterator *iter, int cpu)
2f26ebd5
SR
1914{
1915 struct trace_array *tr = iter->tr;
1916 struct ring_buffer_event *event;
1917 struct ring_buffer_iter *buf_iter;
1918 unsigned long entries = 0;
1919 u64 ts;
1920
1921 tr->data[cpu]->skipped_entries = 0;
1922
6d158a81
SR
1923 buf_iter = trace_buffer_iter(iter, cpu);
1924 if (!buf_iter)
2f26ebd5
SR
1925 return;
1926
2f26ebd5
SR
1927 ring_buffer_iter_reset(buf_iter);
1928
1929 /*
1930 * We could have the case with the max latency tracers
1931 * that a reset never took place on a cpu. This is evident
1932 * by the timestamp being before the start of the buffer.
1933 */
1934 while ((event = ring_buffer_iter_peek(buf_iter, &ts))) {
1935 if (ts >= iter->tr->time_start)
1936 break;
1937 entries++;
1938 ring_buffer_read(buf_iter, NULL);
1939 }
1940
1941 tr->data[cpu]->skipped_entries = entries;
1942}
1943
d7350c3f 1944/*
d7350c3f
FW
1945 * The current tracer is copied to avoid a global locking
1946 * all around.
1947 */
bc0c38d1
SR
1948static void *s_start(struct seq_file *m, loff_t *pos)
1949{
1950 struct trace_iterator *iter = m->private;
b04cc6b1 1951 int cpu_file = iter->cpu_file;
bc0c38d1
SR
1952 void *p = NULL;
1953 loff_t l = 0;
3928a8a2 1954 int cpu;
bc0c38d1 1955
2fd196ec
HT
1956 /*
1957 * copy the tracer to avoid using a global lock all around.
1958 * iter->trace is a copy of current_trace, the pointer to the
1959 * name may be used instead of a strcmp(), as iter->trace->name
1960 * will point to the same string as current_trace->name.
1961 */
bc0c38d1 1962 mutex_lock(&trace_types_lock);
2fd196ec 1963 if (unlikely(current_trace && iter->trace->name != current_trace->name))
d7350c3f 1964 *iter->trace = *current_trace;
d7350c3f 1965 mutex_unlock(&trace_types_lock);
bc0c38d1
SR
1966
1967 atomic_inc(&trace_record_cmdline_disabled);
1968
bc0c38d1
SR
1969 if (*pos != iter->pos) {
1970 iter->ent = NULL;
1971 iter->cpu = 0;
1972 iter->idx = -1;
1973
b04cc6b1
FW
1974 if (cpu_file == TRACE_PIPE_ALL_CPU) {
1975 for_each_tracing_cpu(cpu)
2f26ebd5 1976 tracing_iter_reset(iter, cpu);
b04cc6b1 1977 } else
2f26ebd5 1978 tracing_iter_reset(iter, cpu_file);
bc0c38d1 1979
ac91d854 1980 iter->leftover = 0;
bc0c38d1
SR
1981 for (p = iter; p && l < *pos; p = s_next(m, p, &l))
1982 ;
1983
1984 } else {
a63ce5b3
SR
1985 /*
1986 * If we overflowed the seq_file before, then we want
1987 * to just reuse the trace_seq buffer again.
1988 */
1989 if (iter->leftover)
1990 p = iter;
1991 else {
1992 l = *pos - 1;
1993 p = s_next(m, p, &l);
1994 }
bc0c38d1
SR
1995 }
1996
4f535968 1997 trace_event_read_lock();
7e53bd42 1998 trace_access_lock(cpu_file);
bc0c38d1
SR
1999 return p;
2000}
2001
2002static void s_stop(struct seq_file *m, void *p)
2003{
7e53bd42
LJ
2004 struct trace_iterator *iter = m->private;
2005
bc0c38d1 2006 atomic_dec(&trace_record_cmdline_disabled);
7e53bd42 2007 trace_access_unlock(iter->cpu_file);
4f535968 2008 trace_event_read_unlock();
bc0c38d1
SR
2009}
2010
39eaf7ef
SR
2011static void
2012get_total_entries(struct trace_array *tr, unsigned long *total, unsigned long *entries)
2013{
2014 unsigned long count;
2015 int cpu;
2016
2017 *total = 0;
2018 *entries = 0;
2019
2020 for_each_tracing_cpu(cpu) {
2021 count = ring_buffer_entries_cpu(tr->buffer, cpu);
2022 /*
2023 * If this buffer has skipped entries, then we hold all
2024 * entries for the trace and we need to ignore the
2025 * ones before the time stamp.
2026 */
2027 if (tr->data[cpu]->skipped_entries) {
2028 count -= tr->data[cpu]->skipped_entries;
2029 /* total is the same as the entries */
2030 *total += count;
2031 } else
2032 *total += count +
2033 ring_buffer_overrun_cpu(tr->buffer, cpu);
2034 *entries += count;
2035 }
2036}
2037
e309b41d 2038static void print_lat_help_header(struct seq_file *m)
bc0c38d1 2039{
a6168353
ME
2040 seq_puts(m, "# _------=> CPU# \n");
2041 seq_puts(m, "# / _-----=> irqs-off \n");
2042 seq_puts(m, "# | / _----=> need-resched \n");
2043 seq_puts(m, "# || / _---=> hardirq/softirq \n");
2044 seq_puts(m, "# ||| / _--=> preempt-depth \n");
e6e1e259
SR
2045 seq_puts(m, "# |||| / delay \n");
2046 seq_puts(m, "# cmd pid ||||| time | caller \n");
2047 seq_puts(m, "# \\ / ||||| \\ | / \n");
bc0c38d1
SR
2048}
2049
39eaf7ef 2050static void print_event_info(struct trace_array *tr, struct seq_file *m)
bc0c38d1 2051{
39eaf7ef
SR
2052 unsigned long total;
2053 unsigned long entries;
2054
2055 get_total_entries(tr, &total, &entries);
2056 seq_printf(m, "# entries-in-buffer/entries-written: %lu/%lu #P:%d\n",
2057 entries, total, num_online_cpus());
2058 seq_puts(m, "#\n");
2059}
2060
2061static void print_func_help_header(struct trace_array *tr, struct seq_file *m)
2062{
2063 print_event_info(tr, m);
77271ce4 2064 seq_puts(m, "# TASK-PID CPU# TIMESTAMP FUNCTION\n");
a6168353 2065 seq_puts(m, "# | | | | |\n");
bc0c38d1
SR
2066}
2067
39eaf7ef 2068static void print_func_help_header_irq(struct trace_array *tr, struct seq_file *m)
77271ce4 2069{
39eaf7ef 2070 print_event_info(tr, m);
77271ce4
SR
2071 seq_puts(m, "# _-----=> irqs-off\n");
2072 seq_puts(m, "# / _----=> need-resched\n");
2073 seq_puts(m, "# | / _---=> hardirq/softirq\n");
2074 seq_puts(m, "# || / _--=> preempt-depth\n");
2075 seq_puts(m, "# ||| / delay\n");
2076 seq_puts(m, "# TASK-PID CPU# |||| TIMESTAMP FUNCTION\n");
2077 seq_puts(m, "# | | | |||| | |\n");
2078}
bc0c38d1 2079
62b915f1 2080void
bc0c38d1
SR
2081print_trace_header(struct seq_file *m, struct trace_iterator *iter)
2082{
2083 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
2084 struct trace_array *tr = iter->tr;
2085 struct trace_array_cpu *data = tr->data[tr->cpu];
2086 struct tracer *type = current_trace;
39eaf7ef
SR
2087 unsigned long entries;
2088 unsigned long total;
bc0c38d1
SR
2089 const char *name = "preemption";
2090
2091 if (type)
2092 name = type->name;
2093
39eaf7ef 2094 get_total_entries(tr, &total, &entries);
bc0c38d1 2095
888b55dc 2096 seq_printf(m, "# %s latency trace v1.1.5 on %s\n",
bc0c38d1 2097 name, UTS_RELEASE);
888b55dc 2098 seq_puts(m, "# -----------------------------------"
bc0c38d1 2099 "---------------------------------\n");
888b55dc 2100 seq_printf(m, "# latency: %lu us, #%lu/%lu, CPU#%d |"
bc0c38d1 2101 " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
57f50be1 2102 nsecs_to_usecs(data->saved_latency),
bc0c38d1 2103 entries,
4c11d7ae 2104 total,
bc0c38d1
SR
2105 tr->cpu,
2106#if defined(CONFIG_PREEMPT_NONE)
2107 "server",
2108#elif defined(CONFIG_PREEMPT_VOLUNTARY)
2109 "desktop",
b5c21b45 2110#elif defined(CONFIG_PREEMPT)
bc0c38d1
SR
2111 "preempt",
2112#else
2113 "unknown",
2114#endif
2115 /* These are reserved for later use */
2116 0, 0, 0, 0);
2117#ifdef CONFIG_SMP
2118 seq_printf(m, " #P:%d)\n", num_online_cpus());
2119#else
2120 seq_puts(m, ")\n");
2121#endif
888b55dc
KM
2122 seq_puts(m, "# -----------------\n");
2123 seq_printf(m, "# | task: %.16s-%d "
bc0c38d1 2124 "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
d20b92ab
EB
2125 data->comm, data->pid,
2126 from_kuid_munged(seq_user_ns(m), data->uid), data->nice,
bc0c38d1 2127 data->policy, data->rt_priority);
888b55dc 2128 seq_puts(m, "# -----------------\n");
bc0c38d1
SR
2129
2130 if (data->critical_start) {
888b55dc 2131 seq_puts(m, "# => started at: ");
214023c3
SR
2132 seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags);
2133 trace_print_seq(m, &iter->seq);
888b55dc 2134 seq_puts(m, "\n# => ended at: ");
214023c3
SR
2135 seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags);
2136 trace_print_seq(m, &iter->seq);
8248ac05 2137 seq_puts(m, "\n#\n");
bc0c38d1
SR
2138 }
2139
888b55dc 2140 seq_puts(m, "#\n");
bc0c38d1
SR
2141}
2142
a309720c
SR
2143static void test_cpu_buff_start(struct trace_iterator *iter)
2144{
2145 struct trace_seq *s = &iter->seq;
2146
12ef7d44
SR
2147 if (!(trace_flags & TRACE_ITER_ANNOTATE))
2148 return;
2149
2150 if (!(iter->iter_flags & TRACE_FILE_ANNOTATE))
2151 return;
2152
4462344e 2153 if (cpumask_test_cpu(iter->cpu, iter->started))
a309720c
SR
2154 return;
2155
2f26ebd5
SR
2156 if (iter->tr->data[iter->cpu]->skipped_entries)
2157 return;
2158
4462344e 2159 cpumask_set_cpu(iter->cpu, iter->started);
b0dfa978
FW
2160
2161 /* Don't print started cpu buffer for the first entry of the trace */
2162 if (iter->idx > 1)
2163 trace_seq_printf(s, "##### CPU %u buffer started ####\n",
2164 iter->cpu);
a309720c
SR
2165}
2166
2c4f035f 2167static enum print_line_t print_trace_fmt(struct trace_iterator *iter)
bc0c38d1 2168{
214023c3 2169 struct trace_seq *s = &iter->seq;
bc0c38d1 2170 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
4e3c3333 2171 struct trace_entry *entry;
f633cef0 2172 struct trace_event *event;
bc0c38d1 2173
4e3c3333 2174 entry = iter->ent;
dd0e545f 2175
a309720c
SR
2176 test_cpu_buff_start(iter);
2177
c4a8e8be 2178 event = ftrace_find_event(entry->type);
bc0c38d1 2179
c4a8e8be 2180 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
27d48be8
SR
2181 if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
2182 if (!trace_print_lat_context(iter))
2183 goto partial;
2184 } else {
2185 if (!trace_print_context(iter))
2186 goto partial;
2187 }
c4a8e8be 2188 }
bc0c38d1 2189
268ccda0 2190 if (event)
a9a57763 2191 return event->funcs->trace(iter, sym_flags, event);
d9793bd8
ACM
2192
2193 if (!trace_seq_printf(s, "Unknown type %d\n", entry->type))
2194 goto partial;
02b67518 2195
2c4f035f 2196 return TRACE_TYPE_HANDLED;
d9793bd8
ACM
2197partial:
2198 return TRACE_TYPE_PARTIAL_LINE;
bc0c38d1
SR
2199}
2200
2c4f035f 2201static enum print_line_t print_raw_fmt(struct trace_iterator *iter)
f9896bf3
IM
2202{
2203 struct trace_seq *s = &iter->seq;
2204 struct trace_entry *entry;
f633cef0 2205 struct trace_event *event;
f9896bf3
IM
2206
2207 entry = iter->ent;
dd0e545f 2208
c4a8e8be 2209 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
d9793bd8
ACM
2210 if (!trace_seq_printf(s, "%d %d %llu ",
2211 entry->pid, iter->cpu, iter->ts))
2212 goto partial;
c4a8e8be 2213 }
f9896bf3 2214
f633cef0 2215 event = ftrace_find_event(entry->type);
268ccda0 2216 if (event)
a9a57763 2217 return event->funcs->raw(iter, 0, event);
d9793bd8
ACM
2218
2219 if (!trace_seq_printf(s, "%d ?\n", entry->type))
2220 goto partial;
777e208d 2221
2c4f035f 2222 return TRACE_TYPE_HANDLED;
d9793bd8
ACM
2223partial:
2224 return TRACE_TYPE_PARTIAL_LINE;
f9896bf3
IM
2225}
2226
2c4f035f 2227static enum print_line_t print_hex_fmt(struct trace_iterator *iter)
5e3ca0ec
IM
2228{
2229 struct trace_seq *s = &iter->seq;
2230 unsigned char newline = '\n';
2231 struct trace_entry *entry;
f633cef0 2232 struct trace_event *event;
5e3ca0ec
IM
2233
2234 entry = iter->ent;
dd0e545f 2235
c4a8e8be
FW
2236 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
2237 SEQ_PUT_HEX_FIELD_RET(s, entry->pid);
2238 SEQ_PUT_HEX_FIELD_RET(s, iter->cpu);
2239 SEQ_PUT_HEX_FIELD_RET(s, iter->ts);
2240 }
5e3ca0ec 2241
f633cef0 2242 event = ftrace_find_event(entry->type);
268ccda0 2243 if (event) {
a9a57763 2244 enum print_line_t ret = event->funcs->hex(iter, 0, event);
d9793bd8
ACM
2245 if (ret != TRACE_TYPE_HANDLED)
2246 return ret;
2247 }
7104f300 2248
5e3ca0ec
IM
2249 SEQ_PUT_FIELD_RET(s, newline);
2250
2c4f035f 2251 return TRACE_TYPE_HANDLED;
5e3ca0ec
IM
2252}
2253
2c4f035f 2254static enum print_line_t print_bin_fmt(struct trace_iterator *iter)
cb0f12aa
IM
2255{
2256 struct trace_seq *s = &iter->seq;
2257 struct trace_entry *entry;
f633cef0 2258 struct trace_event *event;
cb0f12aa
IM
2259
2260 entry = iter->ent;
dd0e545f 2261
c4a8e8be
FW
2262 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
2263 SEQ_PUT_FIELD_RET(s, entry->pid);
1830b52d 2264 SEQ_PUT_FIELD_RET(s, iter->cpu);
c4a8e8be
FW
2265 SEQ_PUT_FIELD_RET(s, iter->ts);
2266 }
cb0f12aa 2267
f633cef0 2268 event = ftrace_find_event(entry->type);
a9a57763
SR
2269 return event ? event->funcs->binary(iter, 0, event) :
2270 TRACE_TYPE_HANDLED;
cb0f12aa
IM
2271}
2272
62b915f1 2273int trace_empty(struct trace_iterator *iter)
bc0c38d1 2274{
6d158a81 2275 struct ring_buffer_iter *buf_iter;
bc0c38d1
SR
2276 int cpu;
2277
9aba60fe
SR
2278 /* If we are looking at one CPU buffer, only check that one */
2279 if (iter->cpu_file != TRACE_PIPE_ALL_CPU) {
2280 cpu = iter->cpu_file;
6d158a81
SR
2281 buf_iter = trace_buffer_iter(iter, cpu);
2282 if (buf_iter) {
2283 if (!ring_buffer_iter_empty(buf_iter))
9aba60fe
SR
2284 return 0;
2285 } else {
2286 if (!ring_buffer_empty_cpu(iter->tr->buffer, cpu))
2287 return 0;
2288 }
2289 return 1;
2290 }
2291
ab46428c 2292 for_each_tracing_cpu(cpu) {
6d158a81
SR
2293 buf_iter = trace_buffer_iter(iter, cpu);
2294 if (buf_iter) {
2295 if (!ring_buffer_iter_empty(buf_iter))
d769041f
SR
2296 return 0;
2297 } else {
2298 if (!ring_buffer_empty_cpu(iter->tr->buffer, cpu))
2299 return 0;
2300 }
bc0c38d1 2301 }
d769041f 2302
797d3712 2303 return 1;
bc0c38d1
SR
2304}
2305
4f535968 2306/* Called with trace_event_read_lock() held. */
955b61e5 2307enum print_line_t print_trace_line(struct trace_iterator *iter)
f9896bf3 2308{
2c4f035f
FW
2309 enum print_line_t ret;
2310
ee5e51f5
JO
2311 if (iter->lost_events &&
2312 !trace_seq_printf(&iter->seq, "CPU:%d [LOST %lu EVENTS]\n",
2313 iter->cpu, iter->lost_events))
2314 return TRACE_TYPE_PARTIAL_LINE;
bc21b478 2315
2c4f035f
FW
2316 if (iter->trace && iter->trace->print_line) {
2317 ret = iter->trace->print_line(iter);
2318 if (ret != TRACE_TYPE_UNHANDLED)
2319 return ret;
2320 }
72829bc3 2321
48ead020
FW
2322 if (iter->ent->type == TRACE_BPRINT &&
2323 trace_flags & TRACE_ITER_PRINTK &&
2324 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
5ef841f6 2325 return trace_print_bprintk_msg_only(iter);
48ead020 2326
66896a85
FW
2327 if (iter->ent->type == TRACE_PRINT &&
2328 trace_flags & TRACE_ITER_PRINTK &&
2329 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
5ef841f6 2330 return trace_print_printk_msg_only(iter);
66896a85 2331
cb0f12aa
IM
2332 if (trace_flags & TRACE_ITER_BIN)
2333 return print_bin_fmt(iter);
2334
5e3ca0ec
IM
2335 if (trace_flags & TRACE_ITER_HEX)
2336 return print_hex_fmt(iter);
2337
f9896bf3
IM
2338 if (trace_flags & TRACE_ITER_RAW)
2339 return print_raw_fmt(iter);
2340
f9896bf3
IM
2341 return print_trace_fmt(iter);
2342}
2343
7e9a49ef
JO
2344void trace_latency_header(struct seq_file *m)
2345{
2346 struct trace_iterator *iter = m->private;
2347
2348 /* print nothing if the buffers are empty */
2349 if (trace_empty(iter))
2350 return;
2351
2352 if (iter->iter_flags & TRACE_FILE_LAT_FMT)
2353 print_trace_header(m, iter);
2354
2355 if (!(trace_flags & TRACE_ITER_VERBOSE))
2356 print_lat_help_header(m);
2357}
2358
62b915f1
JO
2359void trace_default_header(struct seq_file *m)
2360{
2361 struct trace_iterator *iter = m->private;
2362
f56e7f8e
JO
2363 if (!(trace_flags & TRACE_ITER_CONTEXT_INFO))
2364 return;
2365
62b915f1
JO
2366 if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
2367 /* print nothing if the buffers are empty */
2368 if (trace_empty(iter))
2369 return;
2370 print_trace_header(m, iter);
2371 if (!(trace_flags & TRACE_ITER_VERBOSE))
2372 print_lat_help_header(m);
2373 } else {
77271ce4
SR
2374 if (!(trace_flags & TRACE_ITER_VERBOSE)) {
2375 if (trace_flags & TRACE_ITER_IRQ_INFO)
39eaf7ef 2376 print_func_help_header_irq(iter->tr, m);
77271ce4 2377 else
39eaf7ef 2378 print_func_help_header(iter->tr, m);
77271ce4 2379 }
62b915f1
JO
2380 }
2381}
2382
e0a413f6
SR
2383static void test_ftrace_alive(struct seq_file *m)
2384{
2385 if (!ftrace_is_dead())
2386 return;
2387 seq_printf(m, "# WARNING: FUNCTION TRACING IS CORRUPTED\n");
2388 seq_printf(m, "# MAY BE MISSING FUNCTION EVENTS\n");
2389}
2390
bc0c38d1
SR
2391static int s_show(struct seq_file *m, void *v)
2392{
2393 struct trace_iterator *iter = v;
a63ce5b3 2394 int ret;
bc0c38d1
SR
2395
2396 if (iter->ent == NULL) {
2397 if (iter->tr) {
2398 seq_printf(m, "# tracer: %s\n", iter->trace->name);
2399 seq_puts(m, "#\n");
e0a413f6 2400 test_ftrace_alive(m);
bc0c38d1 2401 }
8bba1bf5
MM
2402 if (iter->trace && iter->trace->print_header)
2403 iter->trace->print_header(m);
62b915f1
JO
2404 else
2405 trace_default_header(m);
2406
a63ce5b3
SR
2407 } else if (iter->leftover) {
2408 /*
2409 * If we filled the seq_file buffer earlier, we
2410 * want to just show it now.
2411 */
2412 ret = trace_print_seq(m, &iter->seq);
2413
2414 /* ret should this time be zero, but you never know */
2415 iter->leftover = ret;
2416
bc0c38d1 2417 } else {
f9896bf3 2418 print_trace_line(iter);
a63ce5b3
SR
2419 ret = trace_print_seq(m, &iter->seq);
2420 /*
2421 * If we overflow the seq_file buffer, then it will
2422 * ask us for this data again at start up.
2423 * Use that instead.
2424 * ret is 0 if seq_file write succeeded.
2425 * -1 otherwise.
2426 */
2427 iter->leftover = ret;
bc0c38d1
SR
2428 }
2429
2430 return 0;
2431}
2432
88e9d34c 2433static const struct seq_operations tracer_seq_ops = {
4bf39a94
IM
2434 .start = s_start,
2435 .next = s_next,
2436 .stop = s_stop,
2437 .show = s_show,
bc0c38d1
SR
2438};
2439
e309b41d 2440static struct trace_iterator *
85a2f9b4 2441__tracing_open(struct inode *inode, struct file *file)
bc0c38d1 2442{
b04cc6b1 2443 long cpu_file = (long) inode->i_private;
bc0c38d1 2444 struct trace_iterator *iter;
50e18b94 2445 int cpu;
bc0c38d1 2446
85a2f9b4
SR
2447 if (tracing_disabled)
2448 return ERR_PTR(-ENODEV);
60a11774 2449
50e18b94 2450 iter = __seq_open_private(file, &tracer_seq_ops, sizeof(*iter));
85a2f9b4
SR
2451 if (!iter)
2452 return ERR_PTR(-ENOMEM);
bc0c38d1 2453
6d158a81
SR
2454 iter->buffer_iter = kzalloc(sizeof(*iter->buffer_iter) * num_possible_cpus(),
2455 GFP_KERNEL);
93574fcc
DC
2456 if (!iter->buffer_iter)
2457 goto release;
2458
d7350c3f
FW
2459 /*
2460 * We make a copy of the current tracer to avoid concurrent
2461 * changes on it while we are reading.
2462 */
bc0c38d1 2463 mutex_lock(&trace_types_lock);
d7350c3f 2464 iter->trace = kzalloc(sizeof(*iter->trace), GFP_KERNEL);
85a2f9b4 2465 if (!iter->trace)
d7350c3f 2466 goto fail;
85a2f9b4 2467
d7350c3f
FW
2468 if (current_trace)
2469 *iter->trace = *current_trace;
2470
79f55997 2471 if (!zalloc_cpumask_var(&iter->started, GFP_KERNEL))
b0dfa978
FW
2472 goto fail;
2473
bc0c38d1
SR
2474 if (current_trace && current_trace->print_max)
2475 iter->tr = &max_tr;
2476 else
b04cc6b1 2477 iter->tr = &global_trace;
bc0c38d1 2478 iter->pos = -1;
d7350c3f 2479 mutex_init(&iter->mutex);
b04cc6b1 2480 iter->cpu_file = cpu_file;
bc0c38d1 2481
8bba1bf5
MM
2482 /* Notify the tracer early; before we stop tracing. */
2483 if (iter->trace && iter->trace->open)
a93751ca 2484 iter->trace->open(iter);
8bba1bf5 2485
12ef7d44
SR
2486 /* Annotate start of buffers if we had overruns */
2487 if (ring_buffer_overruns(iter->tr->buffer))
2488 iter->iter_flags |= TRACE_FILE_ANNOTATE;
2489
8be0709f
DS
2490 /* Output in nanoseconds only if we are using a clock in nanoseconds. */
2491 if (trace_clocks[trace_clock_id].in_ns)
2492 iter->iter_flags |= TRACE_FILE_TIME_IN_NS;
2493
2f26ebd5
SR
2494 /* stop the trace while dumping */
2495 tracing_stop();
2496
b04cc6b1
FW
2497 if (iter->cpu_file == TRACE_PIPE_ALL_CPU) {
2498 for_each_tracing_cpu(cpu) {
b04cc6b1 2499 iter->buffer_iter[cpu] =
72c9ddfd
DM
2500 ring_buffer_read_prepare(iter->tr->buffer, cpu);
2501 }
2502 ring_buffer_read_prepare_sync();
2503 for_each_tracing_cpu(cpu) {
2504 ring_buffer_read_start(iter->buffer_iter[cpu]);
2f26ebd5 2505 tracing_iter_reset(iter, cpu);
b04cc6b1
FW
2506 }
2507 } else {
2508 cpu = iter->cpu_file;
3928a8a2 2509 iter->buffer_iter[cpu] =
72c9ddfd
DM
2510 ring_buffer_read_prepare(iter->tr->buffer, cpu);
2511 ring_buffer_read_prepare_sync();
2512 ring_buffer_read_start(iter->buffer_iter[cpu]);
2f26ebd5 2513 tracing_iter_reset(iter, cpu);
3928a8a2
SR
2514 }
2515
bc0c38d1
SR
2516 mutex_unlock(&trace_types_lock);
2517
bc0c38d1 2518 return iter;
3928a8a2 2519
d7350c3f 2520 fail:
3928a8a2 2521 mutex_unlock(&trace_types_lock);
d7350c3f 2522 kfree(iter->trace);
6d158a81 2523 kfree(iter->buffer_iter);
93574fcc 2524release:
50e18b94
JO
2525 seq_release_private(inode, file);
2526 return ERR_PTR(-ENOMEM);
bc0c38d1
SR
2527}
2528
2529int tracing_open_generic(struct inode *inode, struct file *filp)
2530{
60a11774
SR
2531 if (tracing_disabled)
2532 return -ENODEV;
2533
bc0c38d1
SR
2534 filp->private_data = inode->i_private;
2535 return 0;
2536}
2537
4fd27358 2538static int tracing_release(struct inode *inode, struct file *file)
bc0c38d1 2539{
907f2784 2540 struct seq_file *m = file->private_data;
4acd4d00 2541 struct trace_iterator *iter;
3928a8a2 2542 int cpu;
bc0c38d1 2543
4acd4d00
SR
2544 if (!(file->f_mode & FMODE_READ))
2545 return 0;
2546
2547 iter = m->private;
2548
bc0c38d1 2549 mutex_lock(&trace_types_lock);
3928a8a2
SR
2550 for_each_tracing_cpu(cpu) {
2551 if (iter->buffer_iter[cpu])
2552 ring_buffer_read_finish(iter->buffer_iter[cpu]);
2553 }
2554
bc0c38d1
SR
2555 if (iter->trace && iter->trace->close)
2556 iter->trace->close(iter);
2557
2558 /* reenable tracing if it was previously enabled */
9036990d 2559 tracing_start();
bc0c38d1
SR
2560 mutex_unlock(&trace_types_lock);
2561
d7350c3f 2562 mutex_destroy(&iter->mutex);
b0dfa978 2563 free_cpumask_var(iter->started);
d7350c3f 2564 kfree(iter->trace);
6d158a81 2565 kfree(iter->buffer_iter);
50e18b94 2566 seq_release_private(inode, file);
bc0c38d1
SR
2567 return 0;
2568}
2569
2570static int tracing_open(struct inode *inode, struct file *file)
2571{
85a2f9b4
SR
2572 struct trace_iterator *iter;
2573 int ret = 0;
bc0c38d1 2574
4acd4d00
SR
2575 /* If this file was open for write, then erase contents */
2576 if ((file->f_mode & FMODE_WRITE) &&
8650ae32 2577 (file->f_flags & O_TRUNC)) {
4acd4d00 2578 long cpu = (long) inode->i_private;
bc0c38d1 2579
4acd4d00
SR
2580 if (cpu == TRACE_PIPE_ALL_CPU)
2581 tracing_reset_online_cpus(&global_trace);
2582 else
2583 tracing_reset(&global_trace, cpu);
2584 }
bc0c38d1 2585
4acd4d00
SR
2586 if (file->f_mode & FMODE_READ) {
2587 iter = __tracing_open(inode, file);
2588 if (IS_ERR(iter))
2589 ret = PTR_ERR(iter);
2590 else if (trace_flags & TRACE_ITER_LATENCY_FMT)
2591 iter->iter_flags |= TRACE_FILE_LAT_FMT;
2592 }
bc0c38d1
SR
2593 return ret;
2594}
2595
e309b41d 2596static void *
bc0c38d1
SR
2597t_next(struct seq_file *m, void *v, loff_t *pos)
2598{
f129e965 2599 struct tracer *t = v;
bc0c38d1
SR
2600
2601 (*pos)++;
2602
2603 if (t)
2604 t = t->next;
2605
bc0c38d1
SR
2606 return t;
2607}
2608
2609static void *t_start(struct seq_file *m, loff_t *pos)
2610{
f129e965 2611 struct tracer *t;
bc0c38d1
SR
2612 loff_t l = 0;
2613
2614 mutex_lock(&trace_types_lock);
f129e965 2615 for (t = trace_types; t && l < *pos; t = t_next(m, t, &l))
bc0c38d1
SR
2616 ;
2617
2618 return t;
2619}
2620
2621static void t_stop(struct seq_file *m, void *p)
2622{
2623 mutex_unlock(&trace_types_lock);
2624}
2625
2626static int t_show(struct seq_file *m, void *v)
2627{
2628 struct tracer *t = v;
2629
2630 if (!t)
2631 return 0;
2632
2633 seq_printf(m, "%s", t->name);
2634 if (t->next)
2635 seq_putc(m, ' ');
2636 else
2637 seq_putc(m, '\n');
2638
2639 return 0;
2640}
2641
88e9d34c 2642static const struct seq_operations show_traces_seq_ops = {
4bf39a94
IM
2643 .start = t_start,
2644 .next = t_next,
2645 .stop = t_stop,
2646 .show = t_show,
bc0c38d1
SR
2647};
2648
2649static int show_traces_open(struct inode *inode, struct file *file)
2650{
60a11774
SR
2651 if (tracing_disabled)
2652 return -ENODEV;
2653
f129e965 2654 return seq_open(file, &show_traces_seq_ops);
bc0c38d1
SR
2655}
2656
4acd4d00
SR
2657static ssize_t
2658tracing_write_stub(struct file *filp, const char __user *ubuf,
2659 size_t count, loff_t *ppos)
2660{
2661 return count;
2662}
2663
364829b1
SP
2664static loff_t tracing_seek(struct file *file, loff_t offset, int origin)
2665{
2666 if (file->f_mode & FMODE_READ)
2667 return seq_lseek(file, offset, origin);
2668 else
2669 return 0;
2670}
2671
5e2336a0 2672static const struct file_operations tracing_fops = {
4bf39a94
IM
2673 .open = tracing_open,
2674 .read = seq_read,
4acd4d00 2675 .write = tracing_write_stub,
364829b1 2676 .llseek = tracing_seek,
4bf39a94 2677 .release = tracing_release,
bc0c38d1
SR
2678};
2679
5e2336a0 2680static const struct file_operations show_traces_fops = {
c7078de1
IM
2681 .open = show_traces_open,
2682 .read = seq_read,
2683 .release = seq_release,
b444786f 2684 .llseek = seq_lseek,
c7078de1
IM
2685};
2686
36dfe925
IM
2687/*
2688 * Only trace on a CPU if the bitmask is set:
2689 */
9e01c1b7 2690static cpumask_var_t tracing_cpumask;
36dfe925
IM
2691
2692/*
2693 * The tracer itself will not take this lock, but still we want
2694 * to provide a consistent cpumask to user-space:
2695 */
2696static DEFINE_MUTEX(tracing_cpumask_update_lock);
2697
2698/*
2699 * Temporary storage for the character representation of the
2700 * CPU bitmask (and one more byte for the newline):
2701 */
2702static char mask_str[NR_CPUS + 1];
2703
c7078de1
IM
2704static ssize_t
2705tracing_cpumask_read(struct file *filp, char __user *ubuf,
2706 size_t count, loff_t *ppos)
2707{
36dfe925 2708 int len;
c7078de1
IM
2709
2710 mutex_lock(&tracing_cpumask_update_lock);
36dfe925 2711
9e01c1b7 2712 len = cpumask_scnprintf(mask_str, count, tracing_cpumask);
36dfe925
IM
2713 if (count - len < 2) {
2714 count = -EINVAL;
2715 goto out_err;
2716 }
2717 len += sprintf(mask_str + len, "\n");
2718 count = simple_read_from_buffer(ubuf, count, ppos, mask_str, NR_CPUS+1);
2719
2720out_err:
c7078de1
IM
2721 mutex_unlock(&tracing_cpumask_update_lock);
2722
2723 return count;
2724}
2725
2726static ssize_t
2727tracing_cpumask_write(struct file *filp, const char __user *ubuf,
2728 size_t count, loff_t *ppos)
2729{
36dfe925 2730 int err, cpu;
9e01c1b7
RR
2731 cpumask_var_t tracing_cpumask_new;
2732
2733 if (!alloc_cpumask_var(&tracing_cpumask_new, GFP_KERNEL))
2734 return -ENOMEM;
c7078de1 2735
9e01c1b7 2736 err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
c7078de1 2737 if (err)
36dfe925
IM
2738 goto err_unlock;
2739
215368e8
LZ
2740 mutex_lock(&tracing_cpumask_update_lock);
2741
a5e25883 2742 local_irq_disable();
0199c4e6 2743 arch_spin_lock(&ftrace_max_lock);
ab46428c 2744 for_each_tracing_cpu(cpu) {
36dfe925
IM
2745 /*
2746 * Increase/decrease the disabled counter if we are
2747 * about to flip a bit in the cpumask:
2748 */
9e01c1b7
RR
2749 if (cpumask_test_cpu(cpu, tracing_cpumask) &&
2750 !cpumask_test_cpu(cpu, tracing_cpumask_new)) {
36dfe925 2751 atomic_inc(&global_trace.data[cpu]->disabled);
71babb27 2752 ring_buffer_record_disable_cpu(global_trace.buffer, cpu);
36dfe925 2753 }
9e01c1b7
RR
2754 if (!cpumask_test_cpu(cpu, tracing_cpumask) &&
2755 cpumask_test_cpu(cpu, tracing_cpumask_new)) {
36dfe925 2756 atomic_dec(&global_trace.data[cpu]->disabled);
71babb27 2757 ring_buffer_record_enable_cpu(global_trace.buffer, cpu);
36dfe925
IM
2758 }
2759 }
0199c4e6 2760 arch_spin_unlock(&ftrace_max_lock);
a5e25883 2761 local_irq_enable();
36dfe925 2762
9e01c1b7 2763 cpumask_copy(tracing_cpumask, tracing_cpumask_new);
36dfe925
IM
2764
2765 mutex_unlock(&tracing_cpumask_update_lock);
9e01c1b7 2766 free_cpumask_var(tracing_cpumask_new);
c7078de1
IM
2767
2768 return count;
36dfe925
IM
2769
2770err_unlock:
215368e8 2771 free_cpumask_var(tracing_cpumask_new);
36dfe925
IM
2772
2773 return err;
c7078de1
IM
2774}
2775
5e2336a0 2776static const struct file_operations tracing_cpumask_fops = {
c7078de1
IM
2777 .open = tracing_open_generic,
2778 .read = tracing_cpumask_read,
2779 .write = tracing_cpumask_write,
b444786f 2780 .llseek = generic_file_llseek,
bc0c38d1
SR
2781};
2782
fdb372ed 2783static int tracing_trace_options_show(struct seq_file *m, void *v)
bc0c38d1 2784{
d8e83d26
SR
2785 struct tracer_opt *trace_opts;
2786 u32 tracer_flags;
d8e83d26 2787 int i;
adf9f195 2788
d8e83d26
SR
2789 mutex_lock(&trace_types_lock);
2790 tracer_flags = current_trace->flags->val;
2791 trace_opts = current_trace->flags->opts;
2792
bc0c38d1
SR
2793 for (i = 0; trace_options[i]; i++) {
2794 if (trace_flags & (1 << i))
fdb372ed 2795 seq_printf(m, "%s\n", trace_options[i]);
bc0c38d1 2796 else
fdb372ed 2797 seq_printf(m, "no%s\n", trace_options[i]);
bc0c38d1
SR
2798 }
2799
adf9f195
FW
2800 for (i = 0; trace_opts[i].name; i++) {
2801 if (tracer_flags & trace_opts[i].bit)
fdb372ed 2802 seq_printf(m, "%s\n", trace_opts[i].name);
adf9f195 2803 else
fdb372ed 2804 seq_printf(m, "no%s\n", trace_opts[i].name);
adf9f195 2805 }
d8e83d26 2806 mutex_unlock(&trace_types_lock);
adf9f195 2807
fdb372ed 2808 return 0;
bc0c38d1 2809}
bc0c38d1 2810
8d18eaaf
LZ
2811static int __set_tracer_option(struct tracer *trace,
2812 struct tracer_flags *tracer_flags,
2813 struct tracer_opt *opts, int neg)
2814{
2815 int ret;
bc0c38d1 2816
8d18eaaf
LZ
2817 ret = trace->set_flag(tracer_flags->val, opts->bit, !neg);
2818 if (ret)
2819 return ret;
2820
2821 if (neg)
2822 tracer_flags->val &= ~opts->bit;
2823 else
2824 tracer_flags->val |= opts->bit;
2825 return 0;
bc0c38d1
SR
2826}
2827
adf9f195
FW
2828/* Try to assign a tracer specific option */
2829static int set_tracer_option(struct tracer *trace, char *cmp, int neg)
2830{
7770841e 2831 struct tracer_flags *tracer_flags = trace->flags;
adf9f195 2832 struct tracer_opt *opts = NULL;
8d18eaaf 2833 int i;
adf9f195 2834
7770841e
Z
2835 for (i = 0; tracer_flags->opts[i].name; i++) {
2836 opts = &tracer_flags->opts[i];
adf9f195 2837
8d18eaaf
LZ
2838 if (strcmp(cmp, opts->name) == 0)
2839 return __set_tracer_option(trace, trace->flags,
2840 opts, neg);
adf9f195 2841 }
adf9f195 2842
8d18eaaf 2843 return -EINVAL;
adf9f195
FW
2844}
2845
af4617bd
SR
2846static void set_tracer_flags(unsigned int mask, int enabled)
2847{
2848 /* do nothing if flag is already set */
2849 if (!!(trace_flags & mask) == !!enabled)
2850 return;
2851
2852 if (enabled)
2853 trace_flags |= mask;
2854 else
2855 trace_flags &= ~mask;
e870e9a1
LZ
2856
2857 if (mask == TRACE_ITER_RECORD_CMD)
2858 trace_event_enable_cmd_record(enabled);
750912fa
DS
2859
2860 if (mask == TRACE_ITER_OVERWRITE)
2861 ring_buffer_change_overwrite(global_trace.buffer, enabled);
81698831
SR
2862
2863 if (mask == TRACE_ITER_PRINTK)
2864 trace_printk_start_stop_comm(enabled);
af4617bd
SR
2865}
2866
7bcfaf54 2867static int trace_set_options(char *option)
bc0c38d1 2868{
8d18eaaf 2869 char *cmp;
bc0c38d1 2870 int neg = 0;
7bcfaf54 2871 int ret = 0;
bc0c38d1
SR
2872 int i;
2873
7bcfaf54 2874 cmp = strstrip(option);
bc0c38d1 2875
8d18eaaf 2876 if (strncmp(cmp, "no", 2) == 0) {
bc0c38d1
SR
2877 neg = 1;
2878 cmp += 2;
2879 }
2880
2881 for (i = 0; trace_options[i]; i++) {
8d18eaaf 2882 if (strcmp(cmp, trace_options[i]) == 0) {
af4617bd 2883 set_tracer_flags(1 << i, !neg);
bc0c38d1
SR
2884 break;
2885 }
2886 }
adf9f195
FW
2887
2888 /* If no option could be set, test the specific tracer options */
2889 if (!trace_options[i]) {
d8e83d26 2890 mutex_lock(&trace_types_lock);
adf9f195 2891 ret = set_tracer_option(current_trace, cmp, neg);
d8e83d26 2892 mutex_unlock(&trace_types_lock);
adf9f195 2893 }
bc0c38d1 2894
7bcfaf54
SR
2895 return ret;
2896}
2897
2898static ssize_t
2899tracing_trace_options_write(struct file *filp, const char __user *ubuf,
2900 size_t cnt, loff_t *ppos)
2901{
2902 char buf[64];
2903
2904 if (cnt >= sizeof(buf))
2905 return -EINVAL;
2906
2907 if (copy_from_user(&buf, ubuf, cnt))
2908 return -EFAULT;
2909
a8dd2176
SR
2910 buf[cnt] = 0;
2911
7bcfaf54
SR
2912 trace_set_options(buf);
2913
cf8517cf 2914 *ppos += cnt;
bc0c38d1
SR
2915
2916 return cnt;
2917}
2918
fdb372ed
LZ
2919static int tracing_trace_options_open(struct inode *inode, struct file *file)
2920{
2921 if (tracing_disabled)
2922 return -ENODEV;
2923 return single_open(file, tracing_trace_options_show, NULL);
2924}
2925
5e2336a0 2926static const struct file_operations tracing_iter_fops = {
fdb372ed
LZ
2927 .open = tracing_trace_options_open,
2928 .read = seq_read,
2929 .llseek = seq_lseek,
2930 .release = single_release,
ee6bce52 2931 .write = tracing_trace_options_write,
bc0c38d1
SR
2932};
2933
7bd2f24c
IM
2934static const char readme_msg[] =
2935 "tracing mini-HOWTO:\n\n"
156f5a78
GL
2936 "# mount -t debugfs nodev /sys/kernel/debug\n\n"
2937 "# cat /sys/kernel/debug/tracing/available_tracers\n"
1e42e83f 2938 "wakeup wakeup_rt preemptirqsoff preemptoff irqsoff function nop\n\n"
156f5a78 2939 "# cat /sys/kernel/debug/tracing/current_tracer\n"
bc2b6871 2940 "nop\n"
1e42e83f 2941 "# echo wakeup > /sys/kernel/debug/tracing/current_tracer\n"
156f5a78 2942 "# cat /sys/kernel/debug/tracing/current_tracer\n"
1e42e83f 2943 "wakeup\n"
156f5a78 2944 "# cat /sys/kernel/debug/tracing/trace_options\n"
7bd2f24c 2945 "noprint-parent nosym-offset nosym-addr noverbose\n"
156f5a78 2946 "# echo print-parent > /sys/kernel/debug/tracing/trace_options\n"
9b5f8b31 2947 "# echo 1 > /sys/kernel/debug/tracing/tracing_on\n"
156f5a78 2948 "# cat /sys/kernel/debug/tracing/trace > /tmp/trace.txt\n"
9b5f8b31 2949 "# echo 0 > /sys/kernel/debug/tracing/tracing_on\n"
7bd2f24c
IM
2950;
2951
2952static ssize_t
2953tracing_readme_read(struct file *filp, char __user *ubuf,
2954 size_t cnt, loff_t *ppos)
2955{
2956 return simple_read_from_buffer(ubuf, cnt, ppos,
2957 readme_msg, strlen(readme_msg));
2958}
2959
5e2336a0 2960static const struct file_operations tracing_readme_fops = {
c7078de1
IM
2961 .open = tracing_open_generic,
2962 .read = tracing_readme_read,
b444786f 2963 .llseek = generic_file_llseek,
7bd2f24c
IM
2964};
2965
69abe6a5
AP
2966static ssize_t
2967tracing_saved_cmdlines_read(struct file *file, char __user *ubuf,
2968 size_t cnt, loff_t *ppos)
2969{
2970 char *buf_comm;
2971 char *file_buf;
2972 char *buf;
2973 int len = 0;
2974 int pid;
2975 int i;
2976
2977 file_buf = kmalloc(SAVED_CMDLINES*(16+TASK_COMM_LEN), GFP_KERNEL);
2978 if (!file_buf)
2979 return -ENOMEM;
2980
2981 buf_comm = kmalloc(TASK_COMM_LEN, GFP_KERNEL);
2982 if (!buf_comm) {
2983 kfree(file_buf);
2984 return -ENOMEM;
2985 }
2986
2987 buf = file_buf;
2988
2989 for (i = 0; i < SAVED_CMDLINES; i++) {
2990 int r;
2991
2992 pid = map_cmdline_to_pid[i];
2993 if (pid == -1 || pid == NO_CMDLINE_MAP)
2994 continue;
2995
2996 trace_find_cmdline(pid, buf_comm);
2997 r = sprintf(buf, "%d %s\n", pid, buf_comm);
2998 buf += r;
2999 len += r;
3000 }
3001
3002 len = simple_read_from_buffer(ubuf, cnt, ppos,
3003 file_buf, len);
3004
3005 kfree(file_buf);
3006 kfree(buf_comm);
3007
3008 return len;
3009}
3010
3011static const struct file_operations tracing_saved_cmdlines_fops = {
3012 .open = tracing_open_generic,
3013 .read = tracing_saved_cmdlines_read,
b444786f 3014 .llseek = generic_file_llseek,
69abe6a5
AP
3015};
3016
bc0c38d1
SR
3017static ssize_t
3018tracing_set_trace_read(struct file *filp, char __user *ubuf,
3019 size_t cnt, loff_t *ppos)
3020{
ee6c2c1b 3021 char buf[MAX_TRACER_SIZE+2];
bc0c38d1
SR
3022 int r;
3023
3024 mutex_lock(&trace_types_lock);
3025 if (current_trace)
3026 r = sprintf(buf, "%s\n", current_trace->name);
3027 else
3028 r = sprintf(buf, "\n");
3029 mutex_unlock(&trace_types_lock);
3030
4bf39a94 3031 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
bc0c38d1
SR
3032}
3033
b6f11df2
ACM
3034int tracer_init(struct tracer *t, struct trace_array *tr)
3035{
3036 tracing_reset_online_cpus(tr);
3037 return t->init(tr);
3038}
3039
438ced17
VN
3040static void set_buffer_entries(struct trace_array *tr, unsigned long val)
3041{
3042 int cpu;
3043 for_each_tracing_cpu(cpu)
3044 tr->data[cpu]->entries = val;
3045}
3046
d60da506
HT
3047/* resize @tr's buffer to the size of @size_tr's entries */
3048static int resize_buffer_duplicate_size(struct trace_array *tr,
3049 struct trace_array *size_tr, int cpu_id)
3050{
3051 int cpu, ret = 0;
3052
3053 if (cpu_id == RING_BUFFER_ALL_CPUS) {
3054 for_each_tracing_cpu(cpu) {
3055 ret = ring_buffer_resize(tr->buffer,
3056 size_tr->data[cpu]->entries, cpu);
3057 if (ret < 0)
3058 break;
3059 tr->data[cpu]->entries = size_tr->data[cpu]->entries;
3060 }
3061 } else {
3062 ret = ring_buffer_resize(tr->buffer,
3063 size_tr->data[cpu_id]->entries, cpu_id);
3064 if (ret == 0)
3065 tr->data[cpu_id]->entries =
3066 size_tr->data[cpu_id]->entries;
3067 }
3068
3069 return ret;
3070}
3071
438ced17 3072static int __tracing_resize_ring_buffer(unsigned long size, int cpu)
73c5162a
SR
3073{
3074 int ret;
3075
3076 /*
3077 * If kernel or user changes the size of the ring buffer
a123c52b
SR
3078 * we use the size that was given, and we can forget about
3079 * expanding it later.
73c5162a
SR
3080 */
3081 ring_buffer_expanded = 1;
3082
b382ede6
SR
3083 /* May be called before buffers are initialized */
3084 if (!global_trace.buffer)
3085 return 0;
3086
438ced17 3087 ret = ring_buffer_resize(global_trace.buffer, size, cpu);
73c5162a
SR
3088 if (ret < 0)
3089 return ret;
3090
ef710e10
KM
3091 if (!current_trace->use_max_tr)
3092 goto out;
3093
438ced17 3094 ret = ring_buffer_resize(max_tr.buffer, size, cpu);
73c5162a 3095 if (ret < 0) {
d60da506
HT
3096 int r = resize_buffer_duplicate_size(&global_trace,
3097 &global_trace, cpu);
73c5162a 3098 if (r < 0) {
a123c52b
SR
3099 /*
3100 * AARGH! We are left with different
3101 * size max buffer!!!!
3102 * The max buffer is our "snapshot" buffer.
3103 * When a tracer needs a snapshot (one of the
3104 * latency tracers), it swaps the max buffer
3105 * with the saved snap shot. We succeeded to
3106 * update the size of the main buffer, but failed to
3107 * update the size of the max buffer. But when we tried
3108 * to reset the main buffer to the original size, we
3109 * failed there too. This is very unlikely to
3110 * happen, but if it does, warn and kill all
3111 * tracing.
3112 */
73c5162a
SR
3113 WARN_ON(1);
3114 tracing_disabled = 1;
3115 }
3116 return ret;
3117 }
3118
438ced17
VN
3119 if (cpu == RING_BUFFER_ALL_CPUS)
3120 set_buffer_entries(&max_tr, size);
3121 else
3122 max_tr.data[cpu]->entries = size;
3123
ef710e10 3124 out:
438ced17
VN
3125 if (cpu == RING_BUFFER_ALL_CPUS)
3126 set_buffer_entries(&global_trace, size);
3127 else
3128 global_trace.data[cpu]->entries = size;
73c5162a
SR
3129
3130 return ret;
3131}
3132
438ced17 3133static ssize_t tracing_resize_ring_buffer(unsigned long size, int cpu_id)
4f271a2a 3134{
83f40318 3135 int ret = size;
4f271a2a
VN
3136
3137 mutex_lock(&trace_types_lock);
3138
438ced17
VN
3139 if (cpu_id != RING_BUFFER_ALL_CPUS) {
3140 /* make sure, this cpu is enabled in the mask */
3141 if (!cpumask_test_cpu(cpu_id, tracing_buffer_mask)) {
3142 ret = -EINVAL;
3143 goto out;
3144 }
3145 }
4f271a2a 3146
438ced17 3147 ret = __tracing_resize_ring_buffer(size, cpu_id);
4f271a2a
VN
3148 if (ret < 0)
3149 ret = -ENOMEM;
3150
438ced17 3151out:
4f271a2a
VN
3152 mutex_unlock(&trace_types_lock);
3153
3154 return ret;
3155}
3156
ef710e10 3157
1852fcce
SR
3158/**
3159 * tracing_update_buffers - used by tracing facility to expand ring buffers
3160 *
3161 * To save on memory when the tracing is never used on a system with it
3162 * configured in. The ring buffers are set to a minimum size. But once
3163 * a user starts to use the tracing facility, then they need to grow
3164 * to their default size.
3165 *
3166 * This function is to be called when a tracer is about to be used.
3167 */
3168int tracing_update_buffers(void)
3169{
3170 int ret = 0;
3171
1027fcb2 3172 mutex_lock(&trace_types_lock);
1852fcce 3173 if (!ring_buffer_expanded)
438ced17
VN
3174 ret = __tracing_resize_ring_buffer(trace_buf_size,
3175 RING_BUFFER_ALL_CPUS);
1027fcb2 3176 mutex_unlock(&trace_types_lock);
1852fcce
SR
3177
3178 return ret;
3179}
3180
577b785f
SR
3181struct trace_option_dentry;
3182
3183static struct trace_option_dentry *
3184create_trace_option_files(struct tracer *tracer);
3185
3186static void
3187destroy_trace_option_files(struct trace_option_dentry *topts);
3188
b2821ae6 3189static int tracing_set_tracer(const char *buf)
bc0c38d1 3190{
577b785f 3191 static struct trace_option_dentry *topts;
bc0c38d1
SR
3192 struct trace_array *tr = &global_trace;
3193 struct tracer *t;
34600f0e 3194 bool had_max_tr;
d9e54076 3195 int ret = 0;
bc0c38d1 3196
1027fcb2
SR
3197 mutex_lock(&trace_types_lock);
3198
73c5162a 3199 if (!ring_buffer_expanded) {
438ced17
VN
3200 ret = __tracing_resize_ring_buffer(trace_buf_size,
3201 RING_BUFFER_ALL_CPUS);
73c5162a 3202 if (ret < 0)
59f586db 3203 goto out;
73c5162a
SR
3204 ret = 0;
3205 }
3206
bc0c38d1
SR
3207 for (t = trace_types; t; t = t->next) {
3208 if (strcmp(t->name, buf) == 0)
3209 break;
3210 }
c2931e05
FW
3211 if (!t) {
3212 ret = -EINVAL;
3213 goto out;
3214 }
3215 if (t == current_trace)
bc0c38d1
SR
3216 goto out;
3217
9f029e83 3218 trace_branch_disable();
bc0c38d1
SR
3219 if (current_trace && current_trace->reset)
3220 current_trace->reset(tr);
34600f0e
SR
3221
3222 had_max_tr = current_trace && current_trace->use_max_tr;
3223 current_trace = &nop_trace;
3224
3225 if (had_max_tr && !t->use_max_tr) {
3226 /*
3227 * We need to make sure that the update_max_tr sees that
3228 * current_trace changed to nop_trace to keep it from
3229 * swapping the buffers after we resize it.
3230 * The update_max_tr is called from interrupts disabled
3231 * so a synchronized_sched() is sufficient.
3232 */
3233 synchronize_sched();
ef710e10
KM
3234 /*
3235 * We don't free the ring buffer. instead, resize it because
3236 * The max_tr ring buffer has some state (e.g. ring->clock) and
3237 * we want preserve it.
3238 */
438ced17
VN
3239 ring_buffer_resize(max_tr.buffer, 1, RING_BUFFER_ALL_CPUS);
3240 set_buffer_entries(&max_tr, 1);
ef710e10 3241 }
577b785f
SR
3242 destroy_trace_option_files(topts);
3243
b2ad368b 3244 topts = create_trace_option_files(t);
34600f0e 3245 if (t->use_max_tr && !had_max_tr) {
438ced17 3246 /* we need to make per cpu buffer sizes equivalent */
d60da506
HT
3247 ret = resize_buffer_duplicate_size(&max_tr, &global_trace,
3248 RING_BUFFER_ALL_CPUS);
3249 if (ret < 0)
3250 goto out;
ef710e10 3251 }
577b785f 3252
1c80025a 3253 if (t->init) {
b6f11df2 3254 ret = tracer_init(t, tr);
1c80025a
FW
3255 if (ret)
3256 goto out;
3257 }
bc0c38d1 3258
b2ad368b 3259 current_trace = t;
9f029e83 3260 trace_branch_enable(tr);
bc0c38d1
SR
3261 out:
3262 mutex_unlock(&trace_types_lock);
3263
d9e54076
PZ
3264 return ret;
3265}
3266
3267static ssize_t
3268tracing_set_trace_write(struct file *filp, const char __user *ubuf,
3269 size_t cnt, loff_t *ppos)
3270{
ee6c2c1b 3271 char buf[MAX_TRACER_SIZE+1];
d9e54076
PZ
3272 int i;
3273 size_t ret;
e6e7a65a
FW
3274 int err;
3275
3276 ret = cnt;
d9e54076 3277
ee6c2c1b
LZ
3278 if (cnt > MAX_TRACER_SIZE)
3279 cnt = MAX_TRACER_SIZE;
d9e54076
PZ
3280
3281 if (copy_from_user(&buf, ubuf, cnt))
3282 return -EFAULT;
3283
3284 buf[cnt] = 0;
3285
3286 /* strip ending whitespace. */
3287 for (i = cnt - 1; i > 0 && isspace(buf[i]); i--)
3288 buf[i] = 0;
3289
e6e7a65a
FW
3290 err = tracing_set_tracer(buf);
3291 if (err)
3292 return err;
d9e54076 3293
cf8517cf 3294 *ppos += ret;
bc0c38d1 3295
c2931e05 3296 return ret;
bc0c38d1
SR
3297}
3298
3299static ssize_t
3300tracing_max_lat_read(struct file *filp, char __user *ubuf,
3301 size_t cnt, loff_t *ppos)
3302{
3303 unsigned long *ptr = filp->private_data;
3304 char buf[64];
3305 int r;
3306
cffae437 3307 r = snprintf(buf, sizeof(buf), "%ld\n",
bc0c38d1 3308 *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
cffae437
SR
3309 if (r > sizeof(buf))
3310 r = sizeof(buf);
4bf39a94 3311 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
bc0c38d1
SR
3312}
3313
3314static ssize_t
3315tracing_max_lat_write(struct file *filp, const char __user *ubuf,
3316 size_t cnt, loff_t *ppos)
3317{
5e39841c 3318 unsigned long *ptr = filp->private_data;
5e39841c 3319 unsigned long val;
c6caeeb1 3320 int ret;
bc0c38d1 3321
22fe9b54
PH
3322 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
3323 if (ret)
c6caeeb1 3324 return ret;
bc0c38d1
SR
3325
3326 *ptr = val * 1000;
3327
3328 return cnt;
3329}
3330
b3806b43
SR
3331static int tracing_open_pipe(struct inode *inode, struct file *filp)
3332{
b04cc6b1 3333 long cpu_file = (long) inode->i_private;
b3806b43 3334 struct trace_iterator *iter;
b04cc6b1 3335 int ret = 0;
b3806b43
SR
3336
3337 if (tracing_disabled)
3338 return -ENODEV;
3339
b04cc6b1
FW
3340 mutex_lock(&trace_types_lock);
3341
b3806b43
SR
3342 /* create a buffer to store the information to pass to userspace */
3343 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
b04cc6b1
FW
3344 if (!iter) {
3345 ret = -ENOMEM;
3346 goto out;
3347 }
b3806b43 3348
d7350c3f
FW
3349 /*
3350 * We make a copy of the current tracer to avoid concurrent
3351 * changes on it while we are reading.
3352 */
3353 iter->trace = kmalloc(sizeof(*iter->trace), GFP_KERNEL);
3354 if (!iter->trace) {
3355 ret = -ENOMEM;
3356 goto fail;
3357 }
3358 if (current_trace)
3359 *iter->trace = *current_trace;
3360
4462344e 3361 if (!alloc_cpumask_var(&iter->started, GFP_KERNEL)) {
b04cc6b1 3362 ret = -ENOMEM;
d7350c3f 3363 goto fail;
4462344e
RR
3364 }
3365
a309720c 3366 /* trace pipe does not show start of buffer */
4462344e 3367 cpumask_setall(iter->started);
a309720c 3368
112f38a7
SR
3369 if (trace_flags & TRACE_ITER_LATENCY_FMT)
3370 iter->iter_flags |= TRACE_FILE_LAT_FMT;
3371
8be0709f
DS
3372 /* Output in nanoseconds only if we are using a clock in nanoseconds. */
3373 if (trace_clocks[trace_clock_id].in_ns)
3374 iter->iter_flags |= TRACE_FILE_TIME_IN_NS;
3375
b04cc6b1 3376 iter->cpu_file = cpu_file;
b3806b43 3377 iter->tr = &global_trace;
d7350c3f 3378 mutex_init(&iter->mutex);
b3806b43
SR
3379 filp->private_data = iter;
3380
107bad8b
SR
3381 if (iter->trace->pipe_open)
3382 iter->trace->pipe_open(iter);
107bad8b 3383
b444786f 3384 nonseekable_open(inode, filp);
b04cc6b1
FW
3385out:
3386 mutex_unlock(&trace_types_lock);
3387 return ret;
d7350c3f
FW
3388
3389fail:
3390 kfree(iter->trace);
3391 kfree(iter);
3392 mutex_unlock(&trace_types_lock);
3393 return ret;
b3806b43
SR
3394}
3395
3396static int tracing_release_pipe(struct inode *inode, struct file *file)
3397{
3398 struct trace_iterator *iter = file->private_data;
3399
b04cc6b1
FW
3400 mutex_lock(&trace_types_lock);
3401
29bf4a5e 3402 if (iter->trace->pipe_close)
c521efd1
SR
3403 iter->trace->pipe_close(iter);
3404
b04cc6b1
FW
3405 mutex_unlock(&trace_types_lock);
3406
4462344e 3407 free_cpumask_var(iter->started);
d7350c3f
FW
3408 mutex_destroy(&iter->mutex);
3409 kfree(iter->trace);
b3806b43 3410 kfree(iter);
b3806b43
SR
3411
3412 return 0;
3413}
3414
2a2cc8f7
SSP
3415static unsigned int
3416tracing_poll_pipe(struct file *filp, poll_table *poll_table)
3417{
3418 struct trace_iterator *iter = filp->private_data;
3419
3420 if (trace_flags & TRACE_ITER_BLOCK) {
3421 /*
3422 * Always select as readable when in blocking mode
3423 */
3424 return POLLIN | POLLRDNORM;
afc2abc0 3425 } else {
2a2cc8f7
SSP
3426 if (!trace_empty(iter))
3427 return POLLIN | POLLRDNORM;
3428 poll_wait(filp, &trace_wait, poll_table);
3429 if (!trace_empty(iter))
3430 return POLLIN | POLLRDNORM;
3431
3432 return 0;
3433 }
3434}
3435
6eaaa5d5
FW
3436/*
3437 * This is a make-shift waitqueue.
3438 * A tracer might use this callback on some rare cases:
3439 *
3440 * 1) the current tracer might hold the runqueue lock when it wakes up
3441 * a reader, hence a deadlock (sched, function, and function graph tracers)
3442 * 2) the function tracers, trace all functions, we don't want
3443 * the overhead of calling wake_up and friends
3444 * (and tracing them too)
3445 *
3446 * Anyway, this is really very primitive wakeup.
3447 */
3448void poll_wait_pipe(struct trace_iterator *iter)
3449{
3450 set_current_state(TASK_INTERRUPTIBLE);
3451 /* sleep for 100 msecs, and try again. */
3452 schedule_timeout(HZ / 10);
3453}
3454
ff98781b
EGM
3455/* Must be called with trace_types_lock mutex held. */
3456static int tracing_wait_pipe(struct file *filp)
b3806b43
SR
3457{
3458 struct trace_iterator *iter = filp->private_data;
b3806b43 3459
b3806b43 3460 while (trace_empty(iter)) {
2dc8f095 3461
107bad8b 3462 if ((filp->f_flags & O_NONBLOCK)) {
ff98781b 3463 return -EAGAIN;
107bad8b 3464 }
2dc8f095 3465
d7350c3f 3466 mutex_unlock(&iter->mutex);
107bad8b 3467
6eaaa5d5 3468 iter->trace->wait_pipe(iter);
b3806b43 3469
d7350c3f 3470 mutex_lock(&iter->mutex);
107bad8b 3471
6eaaa5d5 3472 if (signal_pending(current))
ff98781b 3473 return -EINTR;
b3806b43
SR
3474
3475 /*
250bfd3d 3476 * We block until we read something and tracing is disabled.
b3806b43
SR
3477 * We still block if tracing is disabled, but we have never
3478 * read anything. This allows a user to cat this file, and
3479 * then enable tracing. But after we have read something,
3480 * we give an EOF when tracing is again disabled.
3481 *
3482 * iter->pos will be 0 if we haven't read anything.
3483 */
250bfd3d 3484 if (!tracing_is_enabled() && iter->pos)
b3806b43 3485 break;
b3806b43
SR
3486 }
3487
ff98781b
EGM
3488 return 1;
3489}
3490
3491/*
3492 * Consumer reader.
3493 */
3494static ssize_t
3495tracing_read_pipe(struct file *filp, char __user *ubuf,
3496 size_t cnt, loff_t *ppos)
3497{
3498 struct trace_iterator *iter = filp->private_data;
3499 ssize_t sret;
3500
3501 /* return any leftover data */
3502 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
3503 if (sret != -EBUSY)
3504 return sret;
3505
f9520750 3506 trace_seq_init(&iter->seq);
ff98781b 3507
d7350c3f 3508 /* copy the tracer to avoid using a global lock all around */
ff98781b 3509 mutex_lock(&trace_types_lock);
2fd196ec 3510 if (unlikely(current_trace && iter->trace->name != current_trace->name))
d7350c3f 3511 *iter->trace = *current_trace;
d7350c3f
FW
3512 mutex_unlock(&trace_types_lock);
3513
3514 /*
3515 * Avoid more than one consumer on a single file descriptor
3516 * This is just a matter of traces coherency, the ring buffer itself
3517 * is protected.
3518 */
3519 mutex_lock(&iter->mutex);
ff98781b
EGM
3520 if (iter->trace->read) {
3521 sret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
3522 if (sret)
3523 goto out;
3524 }
3525
3526waitagain:
3527 sret = tracing_wait_pipe(filp);
3528 if (sret <= 0)
3529 goto out;
3530
b3806b43 3531 /* stop when tracing is finished */
ff98781b
EGM
3532 if (trace_empty(iter)) {
3533 sret = 0;
107bad8b 3534 goto out;
ff98781b 3535 }
b3806b43
SR
3536
3537 if (cnt >= PAGE_SIZE)
3538 cnt = PAGE_SIZE - 1;
3539
53d0aa77 3540 /* reset all but tr, trace, and overruns */
53d0aa77
SR
3541 memset(&iter->seq, 0,
3542 sizeof(struct trace_iterator) -
3543 offsetof(struct trace_iterator, seq));
4823ed7e 3544 iter->pos = -1;
b3806b43 3545
4f535968 3546 trace_event_read_lock();
7e53bd42 3547 trace_access_lock(iter->cpu_file);
955b61e5 3548 while (trace_find_next_entry_inc(iter) != NULL) {
2c4f035f 3549 enum print_line_t ret;
088b1e42
SR
3550 int len = iter->seq.len;
3551
f9896bf3 3552 ret = print_trace_line(iter);
2c4f035f 3553 if (ret == TRACE_TYPE_PARTIAL_LINE) {
088b1e42
SR
3554 /* don't print partial lines */
3555 iter->seq.len = len;
b3806b43 3556 break;
088b1e42 3557 }
b91facc3
FW
3558 if (ret != TRACE_TYPE_NO_CONSUME)
3559 trace_consume(iter);
b3806b43
SR
3560
3561 if (iter->seq.len >= cnt)
3562 break;
ee5e51f5
JO
3563
3564 /*
3565 * Setting the full flag means we reached the trace_seq buffer
3566 * size and we should leave by partial output condition above.
3567 * One of the trace_seq_* functions is not used properly.
3568 */
3569 WARN_ONCE(iter->seq.full, "full flag set for trace type %d",
3570 iter->ent->type);
b3806b43 3571 }
7e53bd42 3572 trace_access_unlock(iter->cpu_file);
4f535968 3573 trace_event_read_unlock();
b3806b43 3574
b3806b43 3575 /* Now copy what we have to the user */
6c6c2796
PP
3576 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
3577 if (iter->seq.readpos >= iter->seq.len)
f9520750 3578 trace_seq_init(&iter->seq);
9ff4b974
PP
3579
3580 /*
25985edc 3581 * If there was nothing to send to user, in spite of consuming trace
9ff4b974
PP
3582 * entries, go back to wait for more entries.
3583 */
6c6c2796 3584 if (sret == -EBUSY)
9ff4b974 3585 goto waitagain;
b3806b43 3586
107bad8b 3587out:
d7350c3f 3588 mutex_unlock(&iter->mutex);
107bad8b 3589
6c6c2796 3590 return sret;
b3806b43
SR
3591}
3592
3c56819b
EGM
3593static void tracing_pipe_buf_release(struct pipe_inode_info *pipe,
3594 struct pipe_buffer *buf)
3595{
3596 __free_page(buf->page);
3597}
3598
3599static void tracing_spd_release_pipe(struct splice_pipe_desc *spd,
3600 unsigned int idx)
3601{
3602 __free_page(spd->pages[idx]);
3603}
3604
28dfef8f 3605static const struct pipe_buf_operations tracing_pipe_buf_ops = {
34cd4998
SR
3606 .can_merge = 0,
3607 .map = generic_pipe_buf_map,
3608 .unmap = generic_pipe_buf_unmap,
3609 .confirm = generic_pipe_buf_confirm,
3610 .release = tracing_pipe_buf_release,
3611 .steal = generic_pipe_buf_steal,
3612 .get = generic_pipe_buf_get,
3c56819b
EGM
3613};
3614
34cd4998 3615static size_t
fa7c7f6e 3616tracing_fill_pipe_page(size_t rem, struct trace_iterator *iter)
34cd4998
SR
3617{
3618 size_t count;
3619 int ret;
3620
3621 /* Seq buffer is page-sized, exactly what we need. */
3622 for (;;) {
3623 count = iter->seq.len;
3624 ret = print_trace_line(iter);
3625 count = iter->seq.len - count;
3626 if (rem < count) {
3627 rem = 0;
3628 iter->seq.len -= count;
3629 break;
3630 }
3631 if (ret == TRACE_TYPE_PARTIAL_LINE) {
3632 iter->seq.len -= count;
3633 break;
3634 }
3635
74e7ff8c
LJ
3636 if (ret != TRACE_TYPE_NO_CONSUME)
3637 trace_consume(iter);
34cd4998 3638 rem -= count;
955b61e5 3639 if (!trace_find_next_entry_inc(iter)) {
34cd4998
SR
3640 rem = 0;
3641 iter->ent = NULL;
3642 break;
3643 }
3644 }
3645
3646 return rem;
3647}
3648
3c56819b
EGM
3649static ssize_t tracing_splice_read_pipe(struct file *filp,
3650 loff_t *ppos,
3651 struct pipe_inode_info *pipe,
3652 size_t len,
3653 unsigned int flags)
3654{
35f3d14d
JA
3655 struct page *pages_def[PIPE_DEF_BUFFERS];
3656 struct partial_page partial_def[PIPE_DEF_BUFFERS];
3c56819b
EGM
3657 struct trace_iterator *iter = filp->private_data;
3658 struct splice_pipe_desc spd = {
35f3d14d
JA
3659 .pages = pages_def,
3660 .partial = partial_def,
34cd4998 3661 .nr_pages = 0, /* This gets updated below. */
047fe360 3662 .nr_pages_max = PIPE_DEF_BUFFERS,
34cd4998
SR
3663 .flags = flags,
3664 .ops = &tracing_pipe_buf_ops,
3665 .spd_release = tracing_spd_release_pipe,
3c56819b
EGM
3666 };
3667 ssize_t ret;
34cd4998 3668 size_t rem;
3c56819b
EGM
3669 unsigned int i;
3670
35f3d14d
JA
3671 if (splice_grow_spd(pipe, &spd))
3672 return -ENOMEM;
3673
d7350c3f 3674 /* copy the tracer to avoid using a global lock all around */
3c56819b 3675 mutex_lock(&trace_types_lock);
2fd196ec 3676 if (unlikely(current_trace && iter->trace->name != current_trace->name))
d7350c3f 3677 *iter->trace = *current_trace;
d7350c3f
FW
3678 mutex_unlock(&trace_types_lock);
3679
3680 mutex_lock(&iter->mutex);
3c56819b
EGM
3681
3682 if (iter->trace->splice_read) {
3683 ret = iter->trace->splice_read(iter, filp,
3684 ppos, pipe, len, flags);
3685 if (ret)
34cd4998 3686 goto out_err;
3c56819b
EGM
3687 }
3688
3689 ret = tracing_wait_pipe(filp);
3690 if (ret <= 0)
34cd4998 3691 goto out_err;
3c56819b 3692
955b61e5 3693 if (!iter->ent && !trace_find_next_entry_inc(iter)) {
3c56819b 3694 ret = -EFAULT;
34cd4998 3695 goto out_err;
3c56819b
EGM
3696 }
3697
4f535968 3698 trace_event_read_lock();
7e53bd42 3699 trace_access_lock(iter->cpu_file);
4f535968 3700
3c56819b 3701 /* Fill as many pages as possible. */
35f3d14d
JA
3702 for (i = 0, rem = len; i < pipe->buffers && rem; i++) {
3703 spd.pages[i] = alloc_page(GFP_KERNEL);
3704 if (!spd.pages[i])
34cd4998 3705 break;
3c56819b 3706
fa7c7f6e 3707 rem = tracing_fill_pipe_page(rem, iter);
3c56819b
EGM
3708
3709 /* Copy the data into the page, so we can start over. */
3710 ret = trace_seq_to_buffer(&iter->seq,
35f3d14d 3711 page_address(spd.pages[i]),
3c56819b
EGM
3712 iter->seq.len);
3713 if (ret < 0) {
35f3d14d 3714 __free_page(spd.pages[i]);
3c56819b
EGM
3715 break;
3716 }
35f3d14d
JA
3717 spd.partial[i].offset = 0;
3718 spd.partial[i].len = iter->seq.len;
3c56819b 3719
f9520750 3720 trace_seq_init(&iter->seq);
3c56819b
EGM
3721 }
3722
7e53bd42 3723 trace_access_unlock(iter->cpu_file);
4f535968 3724 trace_event_read_unlock();
d7350c3f 3725 mutex_unlock(&iter->mutex);
3c56819b
EGM
3726
3727 spd.nr_pages = i;
3728
35f3d14d
JA
3729 ret = splice_to_pipe(pipe, &spd);
3730out:
047fe360 3731 splice_shrink_spd(&spd);
35f3d14d 3732 return ret;
3c56819b 3733
34cd4998 3734out_err:
d7350c3f 3735 mutex_unlock(&iter->mutex);
35f3d14d 3736 goto out;
3c56819b
EGM
3737}
3738
438ced17
VN
3739struct ftrace_entries_info {
3740 struct trace_array *tr;
3741 int cpu;
3742};
3743
3744static int tracing_entries_open(struct inode *inode, struct file *filp)
3745{
3746 struct ftrace_entries_info *info;
3747
3748 if (tracing_disabled)
3749 return -ENODEV;
3750
3751 info = kzalloc(sizeof(*info), GFP_KERNEL);
3752 if (!info)
3753 return -ENOMEM;
3754
3755 info->tr = &global_trace;
3756 info->cpu = (unsigned long)inode->i_private;
3757
3758 filp->private_data = info;
3759
3760 return 0;
3761}
3762
a98a3c3f
SR
3763static ssize_t
3764tracing_entries_read(struct file *filp, char __user *ubuf,
3765 size_t cnt, loff_t *ppos)
3766{
438ced17
VN
3767 struct ftrace_entries_info *info = filp->private_data;
3768 struct trace_array *tr = info->tr;
3769 char buf[64];
3770 int r = 0;
3771 ssize_t ret;
a98a3c3f 3772
db526ca3 3773 mutex_lock(&trace_types_lock);
438ced17
VN
3774
3775 if (info->cpu == RING_BUFFER_ALL_CPUS) {
3776 int cpu, buf_size_same;
3777 unsigned long size;
3778
3779 size = 0;
3780 buf_size_same = 1;
3781 /* check if all cpu sizes are same */
3782 for_each_tracing_cpu(cpu) {
3783 /* fill in the size from first enabled cpu */
3784 if (size == 0)
3785 size = tr->data[cpu]->entries;
3786 if (size != tr->data[cpu]->entries) {
3787 buf_size_same = 0;
3788 break;
3789 }
3790 }
3791
3792 if (buf_size_same) {
3793 if (!ring_buffer_expanded)
3794 r = sprintf(buf, "%lu (expanded: %lu)\n",
3795 size >> 10,
3796 trace_buf_size >> 10);
3797 else
3798 r = sprintf(buf, "%lu\n", size >> 10);
3799 } else
3800 r = sprintf(buf, "X\n");
3801 } else
3802 r = sprintf(buf, "%lu\n", tr->data[info->cpu]->entries >> 10);
3803
db526ca3
SR
3804 mutex_unlock(&trace_types_lock);
3805
438ced17
VN
3806 ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3807 return ret;
a98a3c3f
SR
3808}
3809
3810static ssize_t
3811tracing_entries_write(struct file *filp, const char __user *ubuf,
3812 size_t cnt, loff_t *ppos)
3813{
438ced17 3814 struct ftrace_entries_info *info = filp->private_data;
a98a3c3f 3815 unsigned long val;
4f271a2a 3816 int ret;
a98a3c3f 3817
22fe9b54
PH
3818 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
3819 if (ret)
c6caeeb1 3820 return ret;
a98a3c3f
SR
3821
3822 /* must have at least 1 entry */
3823 if (!val)
3824 return -EINVAL;
3825
1696b2b0
SR
3826 /* value is in KB */
3827 val <<= 10;
3828
438ced17 3829 ret = tracing_resize_ring_buffer(val, info->cpu);
4f271a2a
VN
3830 if (ret < 0)
3831 return ret;
a98a3c3f 3832
cf8517cf 3833 *ppos += cnt;
a98a3c3f 3834
4f271a2a
VN
3835 return cnt;
3836}
bf5e6519 3837
438ced17
VN
3838static int
3839tracing_entries_release(struct inode *inode, struct file *filp)
3840{
3841 struct ftrace_entries_info *info = filp->private_data;
3842
3843 kfree(info);
3844
3845 return 0;
3846}
3847
f81ab074
VN
3848static ssize_t
3849tracing_total_entries_read(struct file *filp, char __user *ubuf,
3850 size_t cnt, loff_t *ppos)
3851{
3852 struct trace_array *tr = filp->private_data;
3853 char buf[64];
3854 int r, cpu;
3855 unsigned long size = 0, expanded_size = 0;
3856
3857 mutex_lock(&trace_types_lock);
3858 for_each_tracing_cpu(cpu) {
438ced17 3859 size += tr->data[cpu]->entries >> 10;
f81ab074
VN
3860 if (!ring_buffer_expanded)
3861 expanded_size += trace_buf_size >> 10;
3862 }
3863 if (ring_buffer_expanded)
3864 r = sprintf(buf, "%lu\n", size);
3865 else
3866 r = sprintf(buf, "%lu (expanded: %lu)\n", size, expanded_size);
3867 mutex_unlock(&trace_types_lock);
3868
3869 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3870}
3871
4f271a2a
VN
3872static ssize_t
3873tracing_free_buffer_write(struct file *filp, const char __user *ubuf,
3874 size_t cnt, loff_t *ppos)
3875{
3876 /*
3877 * There is no need to read what the user has written, this function
3878 * is just to make sure that there is no error when "echo" is used
3879 */
3880
3881 *ppos += cnt;
a98a3c3f
SR
3882
3883 return cnt;
3884}
3885
4f271a2a
VN
3886static int
3887tracing_free_buffer_release(struct inode *inode, struct file *filp)
3888{
cf30cf67
SR
3889 /* disable tracing ? */
3890 if (trace_flags & TRACE_ITER_STOP_ON_FREE)
3891 tracing_off();
4f271a2a 3892 /* resize the ring buffer to 0 */
438ced17 3893 tracing_resize_ring_buffer(0, RING_BUFFER_ALL_CPUS);
4f271a2a
VN
3894
3895 return 0;
3896}
3897
5bf9a1ee
PP
3898static ssize_t
3899tracing_mark_write(struct file *filp, const char __user *ubuf,
3900 size_t cnt, loff_t *fpos)
3901{
d696b58c
SR
3902 unsigned long addr = (unsigned long)ubuf;
3903 struct ring_buffer_event *event;
3904 struct ring_buffer *buffer;
3905 struct print_entry *entry;
3906 unsigned long irq_flags;
3907 struct page *pages[2];
6edb2a8a 3908 void *map_page[2];
d696b58c
SR
3909 int nr_pages = 1;
3910 ssize_t written;
d696b58c
SR
3911 int offset;
3912 int size;
3913 int len;
3914 int ret;
6edb2a8a 3915 int i;
5bf9a1ee 3916
c76f0694 3917 if (tracing_disabled)
5bf9a1ee
PP
3918 return -EINVAL;
3919
5224c3a3
MSB
3920 if (!(trace_flags & TRACE_ITER_MARKERS))
3921 return -EINVAL;
3922
5bf9a1ee
PP
3923 if (cnt > TRACE_BUF_SIZE)
3924 cnt = TRACE_BUF_SIZE;
3925
d696b58c
SR
3926 /*
3927 * Userspace is injecting traces into the kernel trace buffer.
3928 * We want to be as non intrusive as possible.
3929 * To do so, we do not want to allocate any special buffers
3930 * or take any locks, but instead write the userspace data
3931 * straight into the ring buffer.
3932 *
3933 * First we need to pin the userspace buffer into memory,
3934 * which, most likely it is, because it just referenced it.
3935 * But there's no guarantee that it is. By using get_user_pages_fast()
3936 * and kmap_atomic/kunmap_atomic() we can get access to the
3937 * pages directly. We then write the data directly into the
3938 * ring buffer.
3939 */
3940 BUILD_BUG_ON(TRACE_BUF_SIZE >= PAGE_SIZE);
5bf9a1ee 3941
d696b58c
SR
3942 /* check if we cross pages */
3943 if ((addr & PAGE_MASK) != ((addr + cnt) & PAGE_MASK))
3944 nr_pages = 2;
3945
3946 offset = addr & (PAGE_SIZE - 1);
3947 addr &= PAGE_MASK;
3948
3949 ret = get_user_pages_fast(addr, nr_pages, 0, pages);
3950 if (ret < nr_pages) {
3951 while (--ret >= 0)
3952 put_page(pages[ret]);
3953 written = -EFAULT;
3954 goto out;
5bf9a1ee 3955 }
d696b58c 3956
6edb2a8a
SR
3957 for (i = 0; i < nr_pages; i++)
3958 map_page[i] = kmap_atomic(pages[i]);
d696b58c
SR
3959
3960 local_save_flags(irq_flags);
3961 size = sizeof(*entry) + cnt + 2; /* possible \n added */
3962 buffer = global_trace.buffer;
3963 event = trace_buffer_lock_reserve(buffer, TRACE_PRINT, size,
3964 irq_flags, preempt_count());
3965 if (!event) {
3966 /* Ring buffer disabled, return as if not open for write */
3967 written = -EBADF;
3968 goto out_unlock;
5bf9a1ee 3969 }
d696b58c
SR
3970
3971 entry = ring_buffer_event_data(event);
3972 entry->ip = _THIS_IP_;
3973
3974 if (nr_pages == 2) {
3975 len = PAGE_SIZE - offset;
6edb2a8a
SR
3976 memcpy(&entry->buf, map_page[0] + offset, len);
3977 memcpy(&entry->buf[len], map_page[1], cnt - len);
c13d2f7c 3978 } else
6edb2a8a 3979 memcpy(&entry->buf, map_page[0] + offset, cnt);
5bf9a1ee 3980
d696b58c
SR
3981 if (entry->buf[cnt - 1] != '\n') {
3982 entry->buf[cnt] = '\n';
3983 entry->buf[cnt + 1] = '\0';
3984 } else
3985 entry->buf[cnt] = '\0';
3986
7ffbd48d 3987 __buffer_unlock_commit(buffer, event);
5bf9a1ee 3988
d696b58c 3989 written = cnt;
5bf9a1ee 3990
d696b58c 3991 *fpos += written;
1aa54bca 3992
d696b58c 3993 out_unlock:
6edb2a8a
SR
3994 for (i = 0; i < nr_pages; i++){
3995 kunmap_atomic(map_page[i]);
3996 put_page(pages[i]);
3997 }
d696b58c 3998 out:
1aa54bca 3999 return written;
5bf9a1ee
PP
4000}
4001
13f16d20 4002static int tracing_clock_show(struct seq_file *m, void *v)
5079f326 4003{
5079f326
Z
4004 int i;
4005
4006 for (i = 0; i < ARRAY_SIZE(trace_clocks); i++)
13f16d20 4007 seq_printf(m,
5079f326
Z
4008 "%s%s%s%s", i ? " " : "",
4009 i == trace_clock_id ? "[" : "", trace_clocks[i].name,
4010 i == trace_clock_id ? "]" : "");
13f16d20 4011 seq_putc(m, '\n');
5079f326 4012
13f16d20 4013 return 0;
5079f326
Z
4014}
4015
4016static ssize_t tracing_clock_write(struct file *filp, const char __user *ubuf,
4017 size_t cnt, loff_t *fpos)
4018{
4019 char buf[64];
4020 const char *clockstr;
4021 int i;
4022
4023 if (cnt >= sizeof(buf))
4024 return -EINVAL;
4025
4026 if (copy_from_user(&buf, ubuf, cnt))
4027 return -EFAULT;
4028
4029 buf[cnt] = 0;
4030
4031 clockstr = strstrip(buf);
4032
4033 for (i = 0; i < ARRAY_SIZE(trace_clocks); i++) {
4034 if (strcmp(trace_clocks[i].name, clockstr) == 0)
4035 break;
4036 }
4037 if (i == ARRAY_SIZE(trace_clocks))
4038 return -EINVAL;
4039
4040 trace_clock_id = i;
4041
4042 mutex_lock(&trace_types_lock);
4043
4044 ring_buffer_set_clock(global_trace.buffer, trace_clocks[i].func);
4045 if (max_tr.buffer)
4046 ring_buffer_set_clock(max_tr.buffer, trace_clocks[i].func);
4047
60303ed3
DS
4048 /*
4049 * New clock may not be consistent with the previous clock.
4050 * Reset the buffer so that it doesn't have incomparable timestamps.
4051 */
4052 tracing_reset_online_cpus(&global_trace);
84c6cf0d 4053 tracing_reset_online_cpus(&max_tr);
60303ed3 4054
5079f326
Z
4055 mutex_unlock(&trace_types_lock);
4056
4057 *fpos += cnt;
4058
4059 return cnt;
4060}
4061
13f16d20
LZ
4062static int tracing_clock_open(struct inode *inode, struct file *file)
4063{
4064 if (tracing_disabled)
4065 return -ENODEV;
4066 return single_open(file, tracing_clock_show, NULL);
4067}
4068
5e2336a0 4069static const struct file_operations tracing_max_lat_fops = {
4bf39a94
IM
4070 .open = tracing_open_generic,
4071 .read = tracing_max_lat_read,
4072 .write = tracing_max_lat_write,
b444786f 4073 .llseek = generic_file_llseek,
bc0c38d1
SR
4074};
4075
5e2336a0 4076static const struct file_operations set_tracer_fops = {
4bf39a94
IM
4077 .open = tracing_open_generic,
4078 .read = tracing_set_trace_read,
4079 .write = tracing_set_trace_write,
b444786f 4080 .llseek = generic_file_llseek,
bc0c38d1
SR
4081};
4082
5e2336a0 4083static const struct file_operations tracing_pipe_fops = {
4bf39a94 4084 .open = tracing_open_pipe,
2a2cc8f7 4085 .poll = tracing_poll_pipe,
4bf39a94 4086 .read = tracing_read_pipe,
3c56819b 4087 .splice_read = tracing_splice_read_pipe,
4bf39a94 4088 .release = tracing_release_pipe,
b444786f 4089 .llseek = no_llseek,
b3806b43
SR
4090};
4091
5e2336a0 4092static const struct file_operations tracing_entries_fops = {
438ced17 4093 .open = tracing_entries_open,
a98a3c3f
SR
4094 .read = tracing_entries_read,
4095 .write = tracing_entries_write,
438ced17 4096 .release = tracing_entries_release,
b444786f 4097 .llseek = generic_file_llseek,
a98a3c3f
SR
4098};
4099
f81ab074
VN
4100static const struct file_operations tracing_total_entries_fops = {
4101 .open = tracing_open_generic,
4102 .read = tracing_total_entries_read,
4103 .llseek = generic_file_llseek,
4104};
4105
4f271a2a
VN
4106static const struct file_operations tracing_free_buffer_fops = {
4107 .write = tracing_free_buffer_write,
4108 .release = tracing_free_buffer_release,
4109};
4110
5e2336a0 4111static const struct file_operations tracing_mark_fops = {
43a15386 4112 .open = tracing_open_generic,
5bf9a1ee 4113 .write = tracing_mark_write,
b444786f 4114 .llseek = generic_file_llseek,
5bf9a1ee
PP
4115};
4116
5079f326 4117static const struct file_operations trace_clock_fops = {
13f16d20
LZ
4118 .open = tracing_clock_open,
4119 .read = seq_read,
4120 .llseek = seq_lseek,
4121 .release = single_release,
5079f326
Z
4122 .write = tracing_clock_write,
4123};
4124
2cadf913
SR
4125struct ftrace_buffer_info {
4126 struct trace_array *tr;
4127 void *spare;
4128 int cpu;
4129 unsigned int read;
4130};
4131
4132static int tracing_buffers_open(struct inode *inode, struct file *filp)
4133{
4134 int cpu = (int)(long)inode->i_private;
4135 struct ftrace_buffer_info *info;
4136
4137 if (tracing_disabled)
4138 return -ENODEV;
4139
4140 info = kzalloc(sizeof(*info), GFP_KERNEL);
4141 if (!info)
4142 return -ENOMEM;
4143
4144 info->tr = &global_trace;
4145 info->cpu = cpu;
ddd538f3 4146 info->spare = NULL;
2cadf913
SR
4147 /* Force reading ring buffer for first read */
4148 info->read = (unsigned int)-1;
2cadf913
SR
4149
4150 filp->private_data = info;
4151
d1e7e02f 4152 return nonseekable_open(inode, filp);
2cadf913
SR
4153}
4154
4155static ssize_t
4156tracing_buffers_read(struct file *filp, char __user *ubuf,
4157 size_t count, loff_t *ppos)
4158{
4159 struct ftrace_buffer_info *info = filp->private_data;
2cadf913
SR
4160 ssize_t ret;
4161 size_t size;
4162
2dc5d12b
SR
4163 if (!count)
4164 return 0;
4165
ddd538f3 4166 if (!info->spare)
7ea59064 4167 info->spare = ring_buffer_alloc_read_page(info->tr->buffer, info->cpu);
ddd538f3
LJ
4168 if (!info->spare)
4169 return -ENOMEM;
4170
2cadf913
SR
4171 /* Do we have previous read data to read? */
4172 if (info->read < PAGE_SIZE)
4173 goto read;
4174
7e53bd42 4175 trace_access_lock(info->cpu);
2cadf913
SR
4176 ret = ring_buffer_read_page(info->tr->buffer,
4177 &info->spare,
4178 count,
4179 info->cpu, 0);
7e53bd42 4180 trace_access_unlock(info->cpu);
2cadf913
SR
4181 if (ret < 0)
4182 return 0;
4183
436fc280
SR
4184 info->read = 0;
4185
2cadf913
SR
4186read:
4187 size = PAGE_SIZE - info->read;
4188 if (size > count)
4189 size = count;
4190
4191 ret = copy_to_user(ubuf, info->spare + info->read, size);
2dc5d12b 4192 if (ret == size)
2cadf913 4193 return -EFAULT;
2dc5d12b
SR
4194 size -= ret;
4195
2cadf913
SR
4196 *ppos += size;
4197 info->read += size;
4198
4199 return size;
4200}
4201
4202static int tracing_buffers_release(struct inode *inode, struct file *file)
4203{
4204 struct ftrace_buffer_info *info = file->private_data;
4205
ddd538f3
LJ
4206 if (info->spare)
4207 ring_buffer_free_read_page(info->tr->buffer, info->spare);
2cadf913
SR
4208 kfree(info);
4209
4210 return 0;
4211}
4212
4213struct buffer_ref {
4214 struct ring_buffer *buffer;
4215 void *page;
4216 int ref;
4217};
4218
4219static void buffer_pipe_buf_release(struct pipe_inode_info *pipe,
4220 struct pipe_buffer *buf)
4221{
4222 struct buffer_ref *ref = (struct buffer_ref *)buf->private;
4223
4224 if (--ref->ref)
4225 return;
4226
4227 ring_buffer_free_read_page(ref->buffer, ref->page);
4228 kfree(ref);
4229 buf->private = 0;
4230}
4231
2cadf913
SR
4232static void buffer_pipe_buf_get(struct pipe_inode_info *pipe,
4233 struct pipe_buffer *buf)
4234{
4235 struct buffer_ref *ref = (struct buffer_ref *)buf->private;
4236
4237 ref->ref++;
4238}
4239
4240/* Pipe buffer operations for a buffer. */
28dfef8f 4241static const struct pipe_buf_operations buffer_pipe_buf_ops = {
2cadf913
SR
4242 .can_merge = 0,
4243 .map = generic_pipe_buf_map,
4244 .unmap = generic_pipe_buf_unmap,
4245 .confirm = generic_pipe_buf_confirm,
4246 .release = buffer_pipe_buf_release,
d55cb6cf 4247 .steal = generic_pipe_buf_steal,
2cadf913
SR
4248 .get = buffer_pipe_buf_get,
4249};
4250
4251/*
4252 * Callback from splice_to_pipe(), if we need to release some pages
4253 * at the end of the spd in case we error'ed out in filling the pipe.
4254 */
4255static void buffer_spd_release(struct splice_pipe_desc *spd, unsigned int i)
4256{
4257 struct buffer_ref *ref =
4258 (struct buffer_ref *)spd->partial[i].private;
4259
4260 if (--ref->ref)
4261 return;
4262
4263 ring_buffer_free_read_page(ref->buffer, ref->page);
4264 kfree(ref);
4265 spd->partial[i].private = 0;
4266}
4267
4268static ssize_t
4269tracing_buffers_splice_read(struct file *file, loff_t *ppos,
4270 struct pipe_inode_info *pipe, size_t len,
4271 unsigned int flags)
4272{
4273 struct ftrace_buffer_info *info = file->private_data;
35f3d14d
JA
4274 struct partial_page partial_def[PIPE_DEF_BUFFERS];
4275 struct page *pages_def[PIPE_DEF_BUFFERS];
2cadf913 4276 struct splice_pipe_desc spd = {
35f3d14d
JA
4277 .pages = pages_def,
4278 .partial = partial_def,
047fe360 4279 .nr_pages_max = PIPE_DEF_BUFFERS,
2cadf913
SR
4280 .flags = flags,
4281 .ops = &buffer_pipe_buf_ops,
4282 .spd_release = buffer_spd_release,
4283 };
4284 struct buffer_ref *ref;
93459c6c 4285 int entries, size, i;
2cadf913
SR
4286 size_t ret;
4287
35f3d14d
JA
4288 if (splice_grow_spd(pipe, &spd))
4289 return -ENOMEM;
4290
93cfb3c9 4291 if (*ppos & (PAGE_SIZE - 1)) {
35f3d14d
JA
4292 ret = -EINVAL;
4293 goto out;
93cfb3c9
LJ
4294 }
4295
4296 if (len & (PAGE_SIZE - 1)) {
35f3d14d
JA
4297 if (len < PAGE_SIZE) {
4298 ret = -EINVAL;
4299 goto out;
4300 }
93cfb3c9
LJ
4301 len &= PAGE_MASK;
4302 }
4303
7e53bd42 4304 trace_access_lock(info->cpu);
93459c6c
SR
4305 entries = ring_buffer_entries_cpu(info->tr->buffer, info->cpu);
4306
35f3d14d 4307 for (i = 0; i < pipe->buffers && len && entries; i++, len -= PAGE_SIZE) {
2cadf913
SR
4308 struct page *page;
4309 int r;
4310
4311 ref = kzalloc(sizeof(*ref), GFP_KERNEL);
4312 if (!ref)
4313 break;
4314
7267fa68 4315 ref->ref = 1;
2cadf913 4316 ref->buffer = info->tr->buffer;
7ea59064 4317 ref->page = ring_buffer_alloc_read_page(ref->buffer, info->cpu);
2cadf913
SR
4318 if (!ref->page) {
4319 kfree(ref);
4320 break;
4321 }
4322
4323 r = ring_buffer_read_page(ref->buffer, &ref->page,
f2957f1f 4324 len, info->cpu, 1);
2cadf913 4325 if (r < 0) {
7ea59064 4326 ring_buffer_free_read_page(ref->buffer, ref->page);
2cadf913
SR
4327 kfree(ref);
4328 break;
4329 }
4330
4331 /*
4332 * zero out any left over data, this is going to
4333 * user land.
4334 */
4335 size = ring_buffer_page_len(ref->page);
4336 if (size < PAGE_SIZE)
4337 memset(ref->page + size, 0, PAGE_SIZE - size);
4338
4339 page = virt_to_page(ref->page);
4340
4341 spd.pages[i] = page;
4342 spd.partial[i].len = PAGE_SIZE;
4343 spd.partial[i].offset = 0;
4344 spd.partial[i].private = (unsigned long)ref;
4345 spd.nr_pages++;
93cfb3c9 4346 *ppos += PAGE_SIZE;
93459c6c
SR
4347
4348 entries = ring_buffer_entries_cpu(info->tr->buffer, info->cpu);
2cadf913
SR
4349 }
4350
7e53bd42 4351 trace_access_unlock(info->cpu);
2cadf913
SR
4352 spd.nr_pages = i;
4353
4354 /* did we read anything? */
4355 if (!spd.nr_pages) {
4356 if (flags & SPLICE_F_NONBLOCK)
4357 ret = -EAGAIN;
4358 else
4359 ret = 0;
4360 /* TODO: block */
35f3d14d 4361 goto out;
2cadf913
SR
4362 }
4363
4364 ret = splice_to_pipe(pipe, &spd);
047fe360 4365 splice_shrink_spd(&spd);
35f3d14d 4366out:
2cadf913
SR
4367 return ret;
4368}
4369
4370static const struct file_operations tracing_buffers_fops = {
4371 .open = tracing_buffers_open,
4372 .read = tracing_buffers_read,
4373 .release = tracing_buffers_release,
4374 .splice_read = tracing_buffers_splice_read,
4375 .llseek = no_llseek,
4376};
4377
c8d77183
SR
4378static ssize_t
4379tracing_stats_read(struct file *filp, char __user *ubuf,
4380 size_t count, loff_t *ppos)
4381{
4382 unsigned long cpu = (unsigned long)filp->private_data;
4383 struct trace_array *tr = &global_trace;
4384 struct trace_seq *s;
4385 unsigned long cnt;
c64e148a
VN
4386 unsigned long long t;
4387 unsigned long usec_rem;
c8d77183 4388
e4f2d10f 4389 s = kmalloc(sizeof(*s), GFP_KERNEL);
c8d77183 4390 if (!s)
a646365c 4391 return -ENOMEM;
c8d77183
SR
4392
4393 trace_seq_init(s);
4394
4395 cnt = ring_buffer_entries_cpu(tr->buffer, cpu);
4396 trace_seq_printf(s, "entries: %ld\n", cnt);
4397
4398 cnt = ring_buffer_overrun_cpu(tr->buffer, cpu);
4399 trace_seq_printf(s, "overrun: %ld\n", cnt);
4400
4401 cnt = ring_buffer_commit_overrun_cpu(tr->buffer, cpu);
4402 trace_seq_printf(s, "commit overrun: %ld\n", cnt);
4403
c64e148a
VN
4404 cnt = ring_buffer_bytes_cpu(tr->buffer, cpu);
4405 trace_seq_printf(s, "bytes: %ld\n", cnt);
4406
11043d8b
YY
4407 if (trace_clocks[trace_clock_id].in_ns) {
4408 /* local or global for trace_clock */
4409 t = ns2usecs(ring_buffer_oldest_event_ts(tr->buffer, cpu));
4410 usec_rem = do_div(t, USEC_PER_SEC);
4411 trace_seq_printf(s, "oldest event ts: %5llu.%06lu\n",
4412 t, usec_rem);
4413
4414 t = ns2usecs(ring_buffer_time_stamp(tr->buffer, cpu));
4415 usec_rem = do_div(t, USEC_PER_SEC);
4416 trace_seq_printf(s, "now ts: %5llu.%06lu\n", t, usec_rem);
4417 } else {
4418 /* counter or tsc mode for trace_clock */
4419 trace_seq_printf(s, "oldest event ts: %llu\n",
4420 ring_buffer_oldest_event_ts(tr->buffer, cpu));
c64e148a 4421
11043d8b
YY
4422 trace_seq_printf(s, "now ts: %llu\n",
4423 ring_buffer_time_stamp(tr->buffer, cpu));
4424 }
c64e148a 4425
884bfe89
SP
4426 cnt = ring_buffer_dropped_events_cpu(tr->buffer, cpu);
4427 trace_seq_printf(s, "dropped events: %ld\n", cnt);
4428
ad964704
SRRH
4429 cnt = ring_buffer_read_events_cpu(tr->buffer, cpu);
4430 trace_seq_printf(s, "read events: %ld\n", cnt);
4431
c8d77183
SR
4432 count = simple_read_from_buffer(ubuf, count, ppos, s->buffer, s->len);
4433
4434 kfree(s);
4435
4436 return count;
4437}
4438
4439static const struct file_operations tracing_stats_fops = {
4440 .open = tracing_open_generic,
4441 .read = tracing_stats_read,
b444786f 4442 .llseek = generic_file_llseek,
c8d77183
SR
4443};
4444
bc0c38d1
SR
4445#ifdef CONFIG_DYNAMIC_FTRACE
4446
b807c3d0
SR
4447int __weak ftrace_arch_read_dyn_info(char *buf, int size)
4448{
4449 return 0;
4450}
4451
bc0c38d1 4452static ssize_t
b807c3d0 4453tracing_read_dyn_info(struct file *filp, char __user *ubuf,
bc0c38d1
SR
4454 size_t cnt, loff_t *ppos)
4455{
a26a2a27
SR
4456 static char ftrace_dyn_info_buffer[1024];
4457 static DEFINE_MUTEX(dyn_info_mutex);
bc0c38d1 4458 unsigned long *p = filp->private_data;
b807c3d0 4459 char *buf = ftrace_dyn_info_buffer;
a26a2a27 4460 int size = ARRAY_SIZE(ftrace_dyn_info_buffer);
bc0c38d1
SR
4461 int r;
4462
b807c3d0
SR
4463 mutex_lock(&dyn_info_mutex);
4464 r = sprintf(buf, "%ld ", *p);
4bf39a94 4465
a26a2a27 4466 r += ftrace_arch_read_dyn_info(buf+r, (size-1)-r);
b807c3d0
SR
4467 buf[r++] = '\n';
4468
4469 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
4470
4471 mutex_unlock(&dyn_info_mutex);
4472
4473 return r;
bc0c38d1
SR
4474}
4475
5e2336a0 4476static const struct file_operations tracing_dyn_info_fops = {
4bf39a94 4477 .open = tracing_open_generic,
b807c3d0 4478 .read = tracing_read_dyn_info,
b444786f 4479 .llseek = generic_file_llseek,
bc0c38d1
SR
4480};
4481#endif
4482
4483static struct dentry *d_tracer;
4484
4485struct dentry *tracing_init_dentry(void)
4486{
4487 static int once;
4488
4489 if (d_tracer)
4490 return d_tracer;
4491
3e1f60b8
FW
4492 if (!debugfs_initialized())
4493 return NULL;
4494
bc0c38d1
SR
4495 d_tracer = debugfs_create_dir("tracing", NULL);
4496
4497 if (!d_tracer && !once) {
4498 once = 1;
4499 pr_warning("Could not create debugfs directory 'tracing'\n");
4500 return NULL;
4501 }
4502
4503 return d_tracer;
4504}
4505
b04cc6b1
FW
4506static struct dentry *d_percpu;
4507
b736f48b 4508static struct dentry *tracing_dentry_percpu(void)
b04cc6b1
FW
4509{
4510 static int once;
4511 struct dentry *d_tracer;
4512
4513 if (d_percpu)
4514 return d_percpu;
4515
4516 d_tracer = tracing_init_dentry();
4517
4518 if (!d_tracer)
4519 return NULL;
4520
4521 d_percpu = debugfs_create_dir("per_cpu", d_tracer);
4522
4523 if (!d_percpu && !once) {
4524 once = 1;
4525 pr_warning("Could not create debugfs directory 'per_cpu'\n");
4526 return NULL;
4527 }
4528
4529 return d_percpu;
4530}
4531
4532static void tracing_init_debugfs_percpu(long cpu)
4533{
4534 struct dentry *d_percpu = tracing_dentry_percpu();
5452af66 4535 struct dentry *d_cpu;
dd49a38c 4536 char cpu_dir[30]; /* 30 characters should be more than enough */
b04cc6b1 4537
0a3d7ce7
NK
4538 if (!d_percpu)
4539 return;
4540
dd49a38c 4541 snprintf(cpu_dir, 30, "cpu%ld", cpu);
8656e7a2
FW
4542 d_cpu = debugfs_create_dir(cpu_dir, d_percpu);
4543 if (!d_cpu) {
4544 pr_warning("Could not create debugfs '%s' entry\n", cpu_dir);
4545 return;
4546 }
b04cc6b1 4547
8656e7a2 4548 /* per cpu trace_pipe */
5452af66
FW
4549 trace_create_file("trace_pipe", 0444, d_cpu,
4550 (void *) cpu, &tracing_pipe_fops);
b04cc6b1
FW
4551
4552 /* per cpu trace */
5452af66
FW
4553 trace_create_file("trace", 0644, d_cpu,
4554 (void *) cpu, &tracing_fops);
7f96f93f 4555
5452af66
FW
4556 trace_create_file("trace_pipe_raw", 0444, d_cpu,
4557 (void *) cpu, &tracing_buffers_fops);
7f96f93f 4558
c8d77183
SR
4559 trace_create_file("stats", 0444, d_cpu,
4560 (void *) cpu, &tracing_stats_fops);
438ced17
VN
4561
4562 trace_create_file("buffer_size_kb", 0444, d_cpu,
4563 (void *) cpu, &tracing_entries_fops);
b04cc6b1
FW
4564}
4565
60a11774
SR
4566#ifdef CONFIG_FTRACE_SELFTEST
4567/* Let selftest have access to static functions in this file */
4568#include "trace_selftest.c"
4569#endif
4570
577b785f
SR
4571struct trace_option_dentry {
4572 struct tracer_opt *opt;
4573 struct tracer_flags *flags;
4574 struct dentry *entry;
4575};
4576
4577static ssize_t
4578trace_options_read(struct file *filp, char __user *ubuf, size_t cnt,
4579 loff_t *ppos)
4580{
4581 struct trace_option_dentry *topt = filp->private_data;
4582 char *buf;
4583
4584 if (topt->flags->val & topt->opt->bit)
4585 buf = "1\n";
4586 else
4587 buf = "0\n";
4588
4589 return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
4590}
4591
4592static ssize_t
4593trace_options_write(struct file *filp, const char __user *ubuf, size_t cnt,
4594 loff_t *ppos)
4595{
4596 struct trace_option_dentry *topt = filp->private_data;
4597 unsigned long val;
577b785f
SR
4598 int ret;
4599
22fe9b54
PH
4600 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
4601 if (ret)
577b785f
SR
4602 return ret;
4603
8d18eaaf
LZ
4604 if (val != 0 && val != 1)
4605 return -EINVAL;
577b785f 4606
8d18eaaf 4607 if (!!(topt->flags->val & topt->opt->bit) != val) {
577b785f 4608 mutex_lock(&trace_types_lock);
8d18eaaf 4609 ret = __set_tracer_option(current_trace, topt->flags,
c757bea9 4610 topt->opt, !val);
577b785f
SR
4611 mutex_unlock(&trace_types_lock);
4612 if (ret)
4613 return ret;
577b785f
SR
4614 }
4615
4616 *ppos += cnt;
4617
4618 return cnt;
4619}
4620
4621
4622static const struct file_operations trace_options_fops = {
4623 .open = tracing_open_generic,
4624 .read = trace_options_read,
4625 .write = trace_options_write,
b444786f 4626 .llseek = generic_file_llseek,
577b785f
SR
4627};
4628
a8259075
SR
4629static ssize_t
4630trace_options_core_read(struct file *filp, char __user *ubuf, size_t cnt,
4631 loff_t *ppos)
4632{
4633 long index = (long)filp->private_data;
4634 char *buf;
4635
4636 if (trace_flags & (1 << index))
4637 buf = "1\n";
4638 else
4639 buf = "0\n";
4640
4641 return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
4642}
4643
4644static ssize_t
4645trace_options_core_write(struct file *filp, const char __user *ubuf, size_t cnt,
4646 loff_t *ppos)
4647{
4648 long index = (long)filp->private_data;
a8259075
SR
4649 unsigned long val;
4650 int ret;
4651
22fe9b54
PH
4652 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
4653 if (ret)
a8259075
SR
4654 return ret;
4655
f2d84b65 4656 if (val != 0 && val != 1)
a8259075 4657 return -EINVAL;
f2d84b65 4658 set_tracer_flags(1 << index, val);
a8259075
SR
4659
4660 *ppos += cnt;
4661
4662 return cnt;
4663}
4664
a8259075
SR
4665static const struct file_operations trace_options_core_fops = {
4666 .open = tracing_open_generic,
4667 .read = trace_options_core_read,
4668 .write = trace_options_core_write,
b444786f 4669 .llseek = generic_file_llseek,
a8259075
SR
4670};
4671
5452af66 4672struct dentry *trace_create_file(const char *name,
f4ae40a6 4673 umode_t mode,
5452af66
FW
4674 struct dentry *parent,
4675 void *data,
4676 const struct file_operations *fops)
4677{
4678 struct dentry *ret;
4679
4680 ret = debugfs_create_file(name, mode, parent, data, fops);
4681 if (!ret)
4682 pr_warning("Could not create debugfs '%s' entry\n", name);
4683
4684 return ret;
4685}
4686
4687
a8259075
SR
4688static struct dentry *trace_options_init_dentry(void)
4689{
4690 struct dentry *d_tracer;
4691 static struct dentry *t_options;
4692
4693 if (t_options)
4694 return t_options;
4695
4696 d_tracer = tracing_init_dentry();
4697 if (!d_tracer)
4698 return NULL;
4699
4700 t_options = debugfs_create_dir("options", d_tracer);
4701 if (!t_options) {
4702 pr_warning("Could not create debugfs directory 'options'\n");
4703 return NULL;
4704 }
4705
4706 return t_options;
4707}
4708
577b785f
SR
4709static void
4710create_trace_option_file(struct trace_option_dentry *topt,
4711 struct tracer_flags *flags,
4712 struct tracer_opt *opt)
4713{
4714 struct dentry *t_options;
577b785f
SR
4715
4716 t_options = trace_options_init_dentry();
4717 if (!t_options)
4718 return;
4719
4720 topt->flags = flags;
4721 topt->opt = opt;
4722
5452af66 4723 topt->entry = trace_create_file(opt->name, 0644, t_options, topt,
577b785f
SR
4724 &trace_options_fops);
4725
577b785f
SR
4726}
4727
4728static struct trace_option_dentry *
4729create_trace_option_files(struct tracer *tracer)
4730{
4731 struct trace_option_dentry *topts;
4732 struct tracer_flags *flags;
4733 struct tracer_opt *opts;
4734 int cnt;
4735
4736 if (!tracer)
4737 return NULL;
4738
4739 flags = tracer->flags;
4740
4741 if (!flags || !flags->opts)
4742 return NULL;
4743
4744 opts = flags->opts;
4745
4746 for (cnt = 0; opts[cnt].name; cnt++)
4747 ;
4748
0cfe8245 4749 topts = kcalloc(cnt + 1, sizeof(*topts), GFP_KERNEL);
577b785f
SR
4750 if (!topts)
4751 return NULL;
4752
4753 for (cnt = 0; opts[cnt].name; cnt++)
4754 create_trace_option_file(&topts[cnt], flags,
4755 &opts[cnt]);
4756
4757 return topts;
4758}
4759
4760static void
4761destroy_trace_option_files(struct trace_option_dentry *topts)
4762{
4763 int cnt;
4764
4765 if (!topts)
4766 return;
4767
4768 for (cnt = 0; topts[cnt].opt; cnt++) {
4769 if (topts[cnt].entry)
4770 debugfs_remove(topts[cnt].entry);
4771 }
4772
4773 kfree(topts);
4774}
4775
a8259075
SR
4776static struct dentry *
4777create_trace_option_core_file(const char *option, long index)
4778{
4779 struct dentry *t_options;
a8259075
SR
4780
4781 t_options = trace_options_init_dentry();
4782 if (!t_options)
4783 return NULL;
4784
5452af66 4785 return trace_create_file(option, 0644, t_options, (void *)index,
a8259075 4786 &trace_options_core_fops);
a8259075
SR
4787}
4788
4789static __init void create_trace_options_dir(void)
4790{
4791 struct dentry *t_options;
a8259075
SR
4792 int i;
4793
4794 t_options = trace_options_init_dentry();
4795 if (!t_options)
4796 return;
4797
5452af66
FW
4798 for (i = 0; trace_options[i]; i++)
4799 create_trace_option_core_file(trace_options[i], i);
a8259075
SR
4800}
4801
499e5470
SR
4802static ssize_t
4803rb_simple_read(struct file *filp, char __user *ubuf,
4804 size_t cnt, loff_t *ppos)
4805{
348f0fc2
SR
4806 struct trace_array *tr = filp->private_data;
4807 struct ring_buffer *buffer = tr->buffer;
499e5470
SR
4808 char buf[64];
4809 int r;
4810
4811 if (buffer)
4812 r = ring_buffer_record_is_on(buffer);
4813 else
4814 r = 0;
4815
4816 r = sprintf(buf, "%d\n", r);
4817
4818 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
4819}
4820
4821static ssize_t
4822rb_simple_write(struct file *filp, const char __user *ubuf,
4823 size_t cnt, loff_t *ppos)
4824{
348f0fc2
SR
4825 struct trace_array *tr = filp->private_data;
4826 struct ring_buffer *buffer = tr->buffer;
499e5470
SR
4827 unsigned long val;
4828 int ret;
4829
4830 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
4831 if (ret)
4832 return ret;
4833
4834 if (buffer) {
2df8f8a6
SR
4835 mutex_lock(&trace_types_lock);
4836 if (val) {
499e5470 4837 ring_buffer_record_on(buffer);
2df8f8a6
SR
4838 if (current_trace->start)
4839 current_trace->start(tr);
4840 } else {
499e5470 4841 ring_buffer_record_off(buffer);
2df8f8a6
SR
4842 if (current_trace->stop)
4843 current_trace->stop(tr);
4844 }
4845 mutex_unlock(&trace_types_lock);
499e5470
SR
4846 }
4847
4848 (*ppos)++;
4849
4850 return cnt;
4851}
4852
4853static const struct file_operations rb_simple_fops = {
4854 .open = tracing_open_generic,
4855 .read = rb_simple_read,
4856 .write = rb_simple_write,
4857 .llseek = default_llseek,
4858};
4859
b5ad384e 4860static __init int tracer_init_debugfs(void)
bc0c38d1
SR
4861{
4862 struct dentry *d_tracer;
b04cc6b1 4863 int cpu;
bc0c38d1 4864
7e53bd42
LJ
4865 trace_access_lock_init();
4866
bc0c38d1
SR
4867 d_tracer = tracing_init_dentry();
4868
5452af66
FW
4869 trace_create_file("trace_options", 0644, d_tracer,
4870 NULL, &tracing_iter_fops);
bc0c38d1 4871
5452af66
FW
4872 trace_create_file("tracing_cpumask", 0644, d_tracer,
4873 NULL, &tracing_cpumask_fops);
4874
4875 trace_create_file("trace", 0644, d_tracer,
4876 (void *) TRACE_PIPE_ALL_CPU, &tracing_fops);
a8259075 4877
5452af66
FW
4878 trace_create_file("available_tracers", 0444, d_tracer,
4879 &global_trace, &show_traces_fops);
4880
339ae5d3 4881 trace_create_file("current_tracer", 0644, d_tracer,
5452af66
FW
4882 &global_trace, &set_tracer_fops);
4883
5d4a9dba 4884#ifdef CONFIG_TRACER_MAX_TRACE
5452af66
FW
4885 trace_create_file("tracing_max_latency", 0644, d_tracer,
4886 &tracing_max_latency, &tracing_max_lat_fops);
0e950173 4887#endif
5452af66
FW
4888
4889 trace_create_file("tracing_thresh", 0644, d_tracer,
4890 &tracing_thresh, &tracing_max_lat_fops);
a8259075 4891
339ae5d3 4892 trace_create_file("README", 0444, d_tracer,
5452af66
FW
4893 NULL, &tracing_readme_fops);
4894
4895 trace_create_file("trace_pipe", 0444, d_tracer,
b04cc6b1 4896 (void *) TRACE_PIPE_ALL_CPU, &tracing_pipe_fops);
5452af66
FW
4897
4898 trace_create_file("buffer_size_kb", 0644, d_tracer,
438ced17 4899 (void *) RING_BUFFER_ALL_CPUS, &tracing_entries_fops);
5452af66 4900
f81ab074
VN
4901 trace_create_file("buffer_total_size_kb", 0444, d_tracer,
4902 &global_trace, &tracing_total_entries_fops);
4903
4f271a2a
VN
4904 trace_create_file("free_buffer", 0644, d_tracer,
4905 &global_trace, &tracing_free_buffer_fops);
4906
5452af66
FW
4907 trace_create_file("trace_marker", 0220, d_tracer,
4908 NULL, &tracing_mark_fops);
5bf9a1ee 4909
69abe6a5
AP
4910 trace_create_file("saved_cmdlines", 0444, d_tracer,
4911 NULL, &tracing_saved_cmdlines_fops);
5bf9a1ee 4912
5079f326
Z
4913 trace_create_file("trace_clock", 0644, d_tracer, NULL,
4914 &trace_clock_fops);
4915
499e5470 4916 trace_create_file("tracing_on", 0644, d_tracer,
348f0fc2 4917 &global_trace, &rb_simple_fops);
499e5470 4918
bc0c38d1 4919#ifdef CONFIG_DYNAMIC_FTRACE
5452af66
FW
4920 trace_create_file("dyn_ftrace_total_info", 0444, d_tracer,
4921 &ftrace_update_tot_cnt, &tracing_dyn_info_fops);
bc0c38d1 4922#endif
b04cc6b1 4923
5452af66
FW
4924 create_trace_options_dir();
4925
b04cc6b1
FW
4926 for_each_tracing_cpu(cpu)
4927 tracing_init_debugfs_percpu(cpu);
4928
b5ad384e 4929 return 0;
bc0c38d1
SR
4930}
4931
3f5a54e3
SR
4932static int trace_panic_handler(struct notifier_block *this,
4933 unsigned long event, void *unused)
4934{
944ac425 4935 if (ftrace_dump_on_oops)
cecbca96 4936 ftrace_dump(ftrace_dump_on_oops);
3f5a54e3
SR
4937 return NOTIFY_OK;
4938}
4939
4940static struct notifier_block trace_panic_notifier = {
4941 .notifier_call = trace_panic_handler,
4942 .next = NULL,
4943 .priority = 150 /* priority: INT_MAX >= x >= 0 */
4944};
4945
4946static int trace_die_handler(struct notifier_block *self,
4947 unsigned long val,
4948 void *data)
4949{
4950 switch (val) {
4951 case DIE_OOPS:
944ac425 4952 if (ftrace_dump_on_oops)
cecbca96 4953 ftrace_dump(ftrace_dump_on_oops);
3f5a54e3
SR
4954 break;
4955 default:
4956 break;
4957 }
4958 return NOTIFY_OK;
4959}
4960
4961static struct notifier_block trace_die_notifier = {
4962 .notifier_call = trace_die_handler,
4963 .priority = 200
4964};
4965
4966/*
4967 * printk is set to max of 1024, we really don't need it that big.
4968 * Nothing should be printing 1000 characters anyway.
4969 */
4970#define TRACE_MAX_PRINT 1000
4971
4972/*
4973 * Define here KERN_TRACE so that we have one place to modify
4974 * it if we decide to change what log level the ftrace dump
4975 * should be at.
4976 */
428aee14 4977#define KERN_TRACE KERN_EMERG
3f5a54e3 4978
955b61e5 4979void
3f5a54e3
SR
4980trace_printk_seq(struct trace_seq *s)
4981{
4982 /* Probably should print a warning here. */
4983 if (s->len >= 1000)
4984 s->len = 1000;
4985
4986 /* should be zero ended, but we are paranoid. */
4987 s->buffer[s->len] = 0;
4988
4989 printk(KERN_TRACE "%s", s->buffer);
4990
f9520750 4991 trace_seq_init(s);
3f5a54e3
SR
4992}
4993
955b61e5
JW
4994void trace_init_global_iter(struct trace_iterator *iter)
4995{
4996 iter->tr = &global_trace;
4997 iter->trace = current_trace;
4998 iter->cpu_file = TRACE_PIPE_ALL_CPU;
4999}
5000
cecbca96
FW
5001static void
5002__ftrace_dump(bool disable_tracing, enum ftrace_dump_mode oops_dump_mode)
3f5a54e3 5003{
445c8951 5004 static arch_spinlock_t ftrace_dump_lock =
edc35bd7 5005 (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
3f5a54e3
SR
5006 /* use static because iter can be a bit big for the stack */
5007 static struct trace_iterator iter;
cf586b61 5008 unsigned int old_userobj;
3f5a54e3 5009 static int dump_ran;
d769041f
SR
5010 unsigned long flags;
5011 int cnt = 0, cpu;
3f5a54e3
SR
5012
5013 /* only one dump */
cd891ae0 5014 local_irq_save(flags);
0199c4e6 5015 arch_spin_lock(&ftrace_dump_lock);
3f5a54e3
SR
5016 if (dump_ran)
5017 goto out;
5018
5019 dump_ran = 1;
5020
0ee6b6cf 5021 tracing_off();
cf586b61 5022
e0a413f6
SR
5023 /* Did function tracer already get disabled? */
5024 if (ftrace_is_dead()) {
5025 printk("# WARNING: FUNCTION TRACING IS CORRUPTED\n");
5026 printk("# MAY BE MISSING FUNCTION EVENTS\n");
5027 }
5028
cf586b61
FW
5029 if (disable_tracing)
5030 ftrace_kill();
3f5a54e3 5031
38dbe0b1 5032 /* Simulate the iterator */
955b61e5
JW
5033 trace_init_global_iter(&iter);
5034
d769041f 5035 for_each_tracing_cpu(cpu) {
955b61e5 5036 atomic_inc(&iter.tr->data[cpu]->disabled);
d769041f
SR
5037 }
5038
cf586b61
FW
5039 old_userobj = trace_flags & TRACE_ITER_SYM_USEROBJ;
5040
b54d3de9
TE
5041 /* don't look at user memory in panic mode */
5042 trace_flags &= ~TRACE_ITER_SYM_USEROBJ;
5043
cecbca96
FW
5044 switch (oops_dump_mode) {
5045 case DUMP_ALL:
5046 iter.cpu_file = TRACE_PIPE_ALL_CPU;
5047 break;
5048 case DUMP_ORIG:
5049 iter.cpu_file = raw_smp_processor_id();
5050 break;
5051 case DUMP_NONE:
5052 goto out_enable;
5053 default:
5054 printk(KERN_TRACE "Bad dumping mode, switching to all CPUs dump\n");
5055 iter.cpu_file = TRACE_PIPE_ALL_CPU;
5056 }
5057
5058 printk(KERN_TRACE "Dumping ftrace buffer:\n");
3f5a54e3
SR
5059
5060 /*
5061 * We need to stop all tracing on all CPUS to read the
5062 * the next buffer. This is a bit expensive, but is
5063 * not done often. We fill all what we can read,
5064 * and then release the locks again.
5065 */
5066
3f5a54e3
SR
5067 while (!trace_empty(&iter)) {
5068
5069 if (!cnt)
5070 printk(KERN_TRACE "---------------------------------\n");
5071
5072 cnt++;
5073
5074 /* reset all but tr, trace, and overruns */
5075 memset(&iter.seq, 0,
5076 sizeof(struct trace_iterator) -
5077 offsetof(struct trace_iterator, seq));
5078 iter.iter_flags |= TRACE_FILE_LAT_FMT;
5079 iter.pos = -1;
5080
955b61e5 5081 if (trace_find_next_entry_inc(&iter) != NULL) {
74e7ff8c
LJ
5082 int ret;
5083
5084 ret = print_trace_line(&iter);
5085 if (ret != TRACE_TYPE_NO_CONSUME)
5086 trace_consume(&iter);
3f5a54e3 5087 }
b892e5c8 5088 touch_nmi_watchdog();
3f5a54e3
SR
5089
5090 trace_printk_seq(&iter.seq);
5091 }
5092
5093 if (!cnt)
5094 printk(KERN_TRACE " (ftrace buffer empty)\n");
5095 else
5096 printk(KERN_TRACE "---------------------------------\n");
5097
cecbca96 5098 out_enable:
cf586b61
FW
5099 /* Re-enable tracing if requested */
5100 if (!disable_tracing) {
5101 trace_flags |= old_userobj;
5102
5103 for_each_tracing_cpu(cpu) {
955b61e5 5104 atomic_dec(&iter.tr->data[cpu]->disabled);
cf586b61
FW
5105 }
5106 tracing_on();
5107 }
5108
3f5a54e3 5109 out:
0199c4e6 5110 arch_spin_unlock(&ftrace_dump_lock);
cd891ae0 5111 local_irq_restore(flags);
3f5a54e3
SR
5112}
5113
cf586b61 5114/* By default: disable tracing after the dump */
cecbca96 5115void ftrace_dump(enum ftrace_dump_mode oops_dump_mode)
cf586b61 5116{
cecbca96 5117 __ftrace_dump(true, oops_dump_mode);
cf586b61 5118}
a8eecf22 5119EXPORT_SYMBOL_GPL(ftrace_dump);
cf586b61 5120
3928a8a2 5121__init static int tracer_alloc_buffers(void)
bc0c38d1 5122{
73c5162a 5123 int ring_buf_size;
750912fa 5124 enum ring_buffer_flags rb_flags;
4c11d7ae 5125 int i;
9e01c1b7 5126 int ret = -ENOMEM;
4c11d7ae 5127
750912fa 5128
9e01c1b7
RR
5129 if (!alloc_cpumask_var(&tracing_buffer_mask, GFP_KERNEL))
5130 goto out;
5131
5132 if (!alloc_cpumask_var(&tracing_cpumask, GFP_KERNEL))
5133 goto out_free_buffer_mask;
4c11d7ae 5134
07d777fe
SR
5135 /* Only allocate trace_printk buffers if a trace_printk exists */
5136 if (__stop___trace_bprintk_fmt != __start___trace_bprintk_fmt)
81698831 5137 /* Must be called before global_trace.buffer is allocated */
07d777fe
SR
5138 trace_printk_init_buffers();
5139
73c5162a
SR
5140 /* To save memory, keep the ring buffer size to its minimum */
5141 if (ring_buffer_expanded)
5142 ring_buf_size = trace_buf_size;
5143 else
5144 ring_buf_size = 1;
5145
750912fa
DS
5146 rb_flags = trace_flags & TRACE_ITER_OVERWRITE ? RB_FL_OVERWRITE : 0;
5147
9e01c1b7
RR
5148 cpumask_copy(tracing_buffer_mask, cpu_possible_mask);
5149 cpumask_copy(tracing_cpumask, cpu_all_mask);
5150
5151 /* TODO: make the number of buffers hot pluggable with CPUS */
750912fa 5152 global_trace.buffer = ring_buffer_alloc(ring_buf_size, rb_flags);
3928a8a2
SR
5153 if (!global_trace.buffer) {
5154 printk(KERN_ERR "tracer: failed to allocate ring buffer!\n");
5155 WARN_ON(1);
9e01c1b7 5156 goto out_free_cpumask;
4c11d7ae 5157 }
499e5470
SR
5158 if (global_trace.buffer_disabled)
5159 tracing_off();
4c11d7ae 5160
9e01c1b7 5161
4c11d7ae 5162#ifdef CONFIG_TRACER_MAX_TRACE
750912fa 5163 max_tr.buffer = ring_buffer_alloc(1, rb_flags);
3928a8a2
SR
5164 if (!max_tr.buffer) {
5165 printk(KERN_ERR "tracer: failed to allocate max ring buffer!\n");
5166 WARN_ON(1);
5167 ring_buffer_free(global_trace.buffer);
9e01c1b7 5168 goto out_free_cpumask;
4c11d7ae 5169 }
a98a3c3f 5170#endif
ab46428c 5171
4c11d7ae 5172 /* Allocate the first page for all buffers */
ab46428c 5173 for_each_tracing_cpu(i) {
566b0aaf 5174 global_trace.data[i] = &per_cpu(global_trace_cpu, i);
9705f69e 5175 max_tr.data[i] = &per_cpu(max_tr_data, i);
4c11d7ae 5176 }
438ced17 5177
a591c73f
VN
5178 set_buffer_entries(&global_trace,
5179 ring_buffer_size(global_trace.buffer, 0));
438ced17
VN
5180#ifdef CONFIG_TRACER_MAX_TRACE
5181 set_buffer_entries(&max_tr, 1);
5182#endif
bc0c38d1 5183
bc0c38d1 5184 trace_init_cmdlines();
0d5c6e1c 5185 init_irq_work(&trace_work_wakeup, trace_wake_up);
bc0c38d1 5186
43a15386 5187 register_tracer(&nop_trace);
79fb0768 5188 current_trace = &nop_trace;
60a11774
SR
5189 /* All seems OK, enable tracing */
5190 tracing_disabled = 0;
3928a8a2 5191
3f5a54e3
SR
5192 atomic_notifier_chain_register(&panic_notifier_list,
5193 &trace_panic_notifier);
5194
5195 register_die_notifier(&trace_die_notifier);
2fc1dfbe 5196
7bcfaf54
SR
5197 while (trace_boot_options) {
5198 char *option;
5199
5200 option = strsep(&trace_boot_options, ",");
5201 trace_set_options(option);
5202 }
5203
2fc1dfbe 5204 return 0;
3f5a54e3 5205
9e01c1b7
RR
5206out_free_cpumask:
5207 free_cpumask_var(tracing_cpumask);
5208out_free_buffer_mask:
5209 free_cpumask_var(tracing_buffer_mask);
5210out:
5211 return ret;
bc0c38d1 5212}
b2821ae6
SR
5213
5214__init static int clear_boot_tracer(void)
5215{
5216 /*
5217 * The default tracer at boot buffer is an init section.
5218 * This function is called in lateinit. If we did not
5219 * find the boot tracer, then clear it out, to prevent
5220 * later registration from accessing the buffer that is
5221 * about to be freed.
5222 */
5223 if (!default_bootup_tracer)
5224 return 0;
5225
5226 printk(KERN_INFO "ftrace bootup tracer '%s' not registered.\n",
5227 default_bootup_tracer);
5228 default_bootup_tracer = NULL;
5229
5230 return 0;
5231}
5232
b5ad384e
FW
5233early_initcall(tracer_alloc_buffers);
5234fs_initcall(tracer_init_debugfs);
b2821ae6 5235late_initcall(clear_boot_tracer);