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