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