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