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