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