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