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