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