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