Merge tag 'v3.10.71' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / kernel / trace / trace.c
1 /*
2 * ring buffer based function tracer
3 *
4 * Copyright (C) 2007-2012 Steven Rostedt <srostedt@redhat.com>
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
12 * Copyright (C) 2004 Nadia Yvette Chambers
13 */
14 #include <linux/ring_buffer.h>
15 #include <generated/utsrelease.h>
16 #include <linux/stacktrace.h>
17 #include <linux/writeback.h>
18 #include <linux/kallsyms.h>
19 #include <linux/seq_file.h>
20 #include <linux/notifier.h>
21 #include <linux/irqflags.h>
22 #include <linux/debugfs.h>
23 #include <linux/pagemap.h>
24 #include <linux/hardirq.h>
25 #include <linux/linkage.h>
26 #include <linux/uaccess.h>
27 #include <linux/kprobes.h>
28 #include <linux/ftrace.h>
29 #include <linux/module.h>
30 #include <linux/percpu.h>
31 #include <linux/splice.h>
32 #include <linux/kdebug.h>
33 #include <linux/string.h>
34 #include <linux/rwsem.h>
35 #include <linux/slab.h>
36 #include <linux/ctype.h>
37 #include <linux/init.h>
38 #include <linux/poll.h>
39 #include <linux/nmi.h>
40 #include <linux/fs.h>
41
42 #include <linux/sched/rt.h>
43
44 #include "trace.h"
45 #include "trace_output.h"
46
47 #ifdef CONFIG_MTK_SCHED_TRACERS
48 #include <linux/mtk_ftrace.h>
49 #define CREATE_TRACE_POINTS
50 #include <trace/events/mtk_events.h>
51 EXPORT_TRACEPOINT_SYMBOL(gpu_freq);
52 #endif
53
54 #ifdef CONFIG_MTK_EXTMEM
55 #include <linux/vmalloc.h>
56 #endif
57
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 */
62 bool ring_buffer_expanded;
63
64 /*
65 * We need to change this state when a selftest is running.
66 * A selftest will lurk into the ring-buffer to count the
67 * entries inserted during the selftest although some concurrent
68 * insertions into the ring-buffer such as trace_printk could occurred
69 * at the same time, giving false positive or negative results.
70 */
71 static bool __read_mostly tracing_selftest_running;
72
73 /*
74 * If a tracer is running, we do not want to run SELFTEST.
75 */
76 bool __read_mostly tracing_selftest_disabled;
77
78 /* For tracers that don't implement custom flags */
79 static struct tracer_opt dummy_tracer_opt[] = {
80 { }
81 };
82
83 static struct tracer_flags dummy_tracer_flags = {
84 .val = 0,
85 .opts = dummy_tracer_opt
86 };
87
88 static int dummy_set_flag(u32 old_flags, u32 bit, int set)
89 {
90 return 0;
91 }
92
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 */
98 static DEFINE_PER_CPU(bool, trace_cmdline_save);
99
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 */
106 static int tracing_disabled = 1;
107
108 DEFINE_PER_CPU(int, ftrace_cpu_disabled);
109
110 cpumask_var_t __read_mostly tracing_buffer_mask;
111
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
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
126 */
127
128 enum ftrace_dump_mode ftrace_dump_on_oops;
129
130 static int tracing_set_tracer(const char *buf);
131
132 #define MAX_TRACER_SIZE 100
133 static char bootup_tracer_buf[MAX_TRACER_SIZE] __initdata;
134 static char *default_bootup_tracer;
135
136 static bool allocate_snapshot;
137
138 static int __init set_cmdline_ftrace(char *str)
139 {
140 strlcpy(bootup_tracer_buf, str, MAX_TRACER_SIZE);
141 default_bootup_tracer = bootup_tracer_buf;
142 /* We are using ftrace early, expand it */
143 ring_buffer_expanded = true;
144 return 1;
145 }
146 __setup("ftrace=", set_cmdline_ftrace);
147
148 static int __init set_ftrace_dump_on_oops(char *str)
149 {
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;
161 }
162 __setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops);
163
164 static int __init boot_alloc_snapshot(char *str)
165 {
166 allocate_snapshot = true;
167 /* We also need the main ring buffer expanded */
168 ring_buffer_expanded = true;
169 return 1;
170 }
171 __setup("alloc_snapshot", boot_alloc_snapshot);
172
173
174 static char trace_boot_options_buf[MAX_TRACER_SIZE] __initdata;
175 static char *trace_boot_options __initdata;
176
177 static int __init set_trace_boot_options(char *str)
178 {
179 strlcpy(trace_boot_options_buf, str, MAX_TRACER_SIZE);
180 trace_boot_options = trace_boot_options_buf;
181 return 0;
182 }
183 __setup("trace_options=", set_trace_boot_options);
184
185 unsigned long long ns2usecs(cycle_t nsec)
186 {
187 nsec += 500;
188 do_div(nsec, 1000);
189 return nsec;
190 }
191
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 */
204 static struct trace_array global_trace;
205
206 LIST_HEAD(ftrace_trace_arrays);
207
208 int 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
226 static void __trace_array_put(struct trace_array *this_tr)
227 {
228 WARN_ON(!this_tr->ref);
229 this_tr->ref--;
230 }
231
232 void 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
239 int filter_current_check_discard(struct ring_buffer *buffer,
240 struct ftrace_event_call *call, void *rec,
241 struct ring_buffer_event *event)
242 {
243 return filter_check_discard(call, rec, buffer, event);
244 }
245 EXPORT_SYMBOL_GPL(filter_current_check_discard);
246
247 cycle_t buffer_ftrace_now(struct trace_buffer *buf, int cpu)
248 {
249 u64 ts;
250
251 /* Early boot up does not have a buffer yet */
252 if (!buf->buffer)
253 return trace_clock_local();
254
255 ts = ring_buffer_time_stamp(buf->buffer, cpu);
256 ring_buffer_normalize_time_stamp(buf->buffer, cpu, &ts);
257
258 return ts;
259 }
260
261 cycle_t ftrace_now(int cpu)
262 {
263 return buffer_ftrace_now(&global_trace.trace_buffer, cpu);
264 }
265
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 */
275 int tracing_is_enabled(void)
276 {
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;
284 }
285
286 /*
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.
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.
295 */
296 #define TRACE_BUF_SIZE_DEFAULT 1441792UL /* 16384 * 88 (sizeof(entry)) */
297
298 static unsigned long trace_buf_size = TRACE_BUF_SIZE_DEFAULT;
299
300 #ifdef CONFIG_MTK_SCHED_TRACERS
301 #define CPUX_TRACE_BUF_SIZE_DEFAULT 4194304UL
302 #define CPU0_to_CPUX_RATIO (1.2)
303 extern unsigned int get_max_DRAM_size (void);
304 static unsigned long trace_buf_size_cpu0 = (CPUX_TRACE_BUF_SIZE_DEFAULT * CPU0_to_CPUX_RATIO);
305 static unsigned long trace_buf_size_cpuX = CPUX_TRACE_BUF_SIZE_DEFAULT;
306 static unsigned int trace_buf_size_updated_from_cmdline = 0;
307 #endif
308
309 /* trace_types holds a link list of available tracers. */
310 static struct tracer *trace_types __read_mostly;
311
312 /*
313 * trace_types_lock is used to protect the trace_types list.
314 */
315 DEFINE_MUTEX(trace_types_lock);
316
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
340 static DECLARE_RWSEM(all_cpu_access_lock);
341 static DEFINE_PER_CPU(struct mutex, cpu_access_lock);
342
343 static inline void trace_access_lock(int cpu)
344 {
345 if (cpu == RING_BUFFER_ALL_CPUS) {
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
351 /* Firstly block other trace_access_lock(RING_BUFFER_ALL_CPUS). */
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
359 static inline void trace_access_unlock(int cpu)
360 {
361 if (cpu == RING_BUFFER_ALL_CPUS) {
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
369 static 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
379 static DEFINE_MUTEX(access_lock);
380
381 static inline void trace_access_lock(int cpu)
382 {
383 (void)cpu;
384 mutex_lock(&access_lock);
385 }
386
387 static inline void trace_access_unlock(int cpu)
388 {
389 (void)cpu;
390 mutex_unlock(&access_lock);
391 }
392
393 static inline void trace_access_lock_init(void)
394 {
395 }
396
397 #endif
398
399 /* trace_flags holds trace_options default values */
400 #ifdef CONFIG_MTK_FTRACE_DEFAULT_ENABLE
401 unsigned 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
406 unsigned long trace_flags = TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK |
407 TRACE_ITER_ANNOTATE | TRACE_ITER_CONTEXT_INFO | TRACE_ITER_SLEEP_TIME |
408 TRACE_ITER_GRAPH_TIME | TRACE_ITER_RECORD_CMD | TRACE_ITER_OVERWRITE |
409 TRACE_ITER_IRQ_INFO | TRACE_ITER_MARKERS | TRACE_ITER_FUNCTION;
410 #endif
411
412 void 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
429 /**
430 * tracing_on - enable tracing buffers
431 *
432 * This function enables tracing buffers that may have been
433 * disabled with tracing_off.
434 */
435 void tracing_on(void)
436 {
437 tracer_tracing_on(&global_trace);
438 #ifdef CONFIG_MTK_SCHED_TRACERS
439 trace_tracing_on(1, CALLER_ADDR0);
440 #endif
441 }
442 EXPORT_SYMBOL_GPL(tracing_on);
443
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 */
450 int __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;
457 int pc;
458
459 pc = preempt_count();
460
461 if (unlikely(tracing_selftest_running || tracing_disabled))
462 return 0;
463
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,
469 irq_flags, pc);
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);
486 ftrace_trace_stack(buffer, irq_flags, 4, pc);
487
488 return size;
489 }
490 EXPORT_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 */
497 int __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);
504 int pc;
505
506 pc = preempt_count();
507
508 if (unlikely(tracing_selftest_running || tracing_disabled))
509 return 0;
510
511 local_save_flags(irq_flags);
512 buffer = global_trace.trace_buffer.buffer;
513 event = trace_buffer_lock_reserve(buffer, TRACE_BPUTS, size,
514 irq_flags, pc);
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);
523 ftrace_trace_stack(buffer, irq_flags, 4, pc);
524
525 return 1;
526 }
527 EXPORT_SYMBOL_GPL(__trace_bputs);
528
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 */
544 void tracing_snapshot(void)
545 {
546 struct trace_array *tr = &global_trace;
547 struct tracer *tracer = tr->current_trace;
548 unsigned long flags;
549
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
556 if (!tr->allocated_snapshot) {
557 internal_trace_puts("*** SNAPSHOT NOT ALLOCATED ***\n");
558 internal_trace_puts("*** stopping trace here! ***\n");
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) {
565 internal_trace_puts("*** LATENCY TRACER ACTIVE ***\n");
566 internal_trace_puts("*** Can not use snapshot (sorry) ***\n");
567 return;
568 }
569
570 local_irq_save(flags);
571 update_max_tr(tr, current, smp_processor_id());
572 local_irq_restore(flags);
573 }
574 EXPORT_SYMBOL_GPL(tracing_snapshot);
575
576 static int resize_buffer_duplicate_size(struct trace_buffer *trace_buf,
577 struct trace_buffer *size_buf, int cpu_id);
578 static void set_buffer_entries(struct trace_buffer *buf, unsigned long val);
579
580 static 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
598 void 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 }
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 */
622 void tracing_snapshot_alloc(void)
623 {
624 struct trace_array *tr = &global_trace;
625 int ret;
626
627 ret = alloc_snapshot(tr);
628 if (WARN_ON(ret < 0))
629 return;
630
631 tracing_snapshot();
632 }
633 EXPORT_SYMBOL_GPL(tracing_snapshot_alloc);
634 #else
635 void tracing_snapshot(void)
636 {
637 WARN_ONCE(1, "Snapshot feature not enabled, but internal snapshot used");
638 }
639 EXPORT_SYMBOL_GPL(tracing_snapshot);
640 void tracing_snapshot_alloc(void)
641 {
642 /* Give warning */
643 tracing_snapshot();
644 }
645 EXPORT_SYMBOL_GPL(tracing_snapshot_alloc);
646 #endif /* CONFIG_TRACER_SNAPSHOT */
647
648 void 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
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 */
673 void tracing_off(void)
674 {
675 #ifdef CONFIG_MTK_SCHED_TRACERS
676 trace_tracing_on(0, CALLER_ADDR0);
677 #endif
678 tracer_tracing_off(&global_trace);
679 }
680 EXPORT_SYMBOL_GPL(tracing_off);
681
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 */
688 int 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
695 /**
696 * tracing_is_on - show state of ring buffers enabled
697 */
698 int tracing_is_on(void)
699 {
700 return tracer_tracing_is_on(&global_trace);
701 }
702 EXPORT_SYMBOL_GPL(tracing_is_on);
703
704 static int __init set_buf_size(char *str)
705 {
706 unsigned long buf_size;
707
708 if (!str)
709 return 0;
710 buf_size = memparse(str, &str);
711 /* nr_entries can not be zero */
712 if (buf_size == 0)
713 return 0;
714 trace_buf_size = buf_size;
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
720 return 1;
721 }
722 __setup("trace_buf_size=", set_buf_size);
723
724 static int __init set_tracing_thresh(char *str)
725 {
726 unsigned long threshold;
727 int ret;
728
729 if (!str)
730 return 0;
731 ret = kstrtoul(str, 0, &threshold);
732 if (ret < 0)
733 return 0;
734 tracing_thresh = threshold * 1000;
735 return 1;
736 }
737 __setup("tracing_thresh=", set_tracing_thresh);
738
739 unsigned long nsecs_to_usecs(unsigned long nsecs)
740 {
741 return nsecs / 1000;
742 }
743
744 /* These must match the bit postions in trace_iterator_flags */
745 static const char *trace_options[] = {
746 "print-parent",
747 "sym-offset",
748 "sym-addr",
749 "verbose",
750 "raw",
751 "hex",
752 "bin",
753 "block",
754 "stacktrace",
755 "trace_printk",
756 "ftrace_preempt",
757 "branch",
758 "annotate",
759 "userstacktrace",
760 "sym-userobj",
761 "printk-msg-only",
762 "context-info",
763 "latency-format",
764 "sleep-time",
765 "graph-time",
766 "record-cmd",
767 "overwrite",
768 "disable_on_free",
769 "irq-info",
770 "markers",
771 "function-trace",
772 "print-tgid",
773 NULL
774 };
775
776 static struct {
777 u64 (*func)(void);
778 const char *name;
779 int in_ns; /* is this clock in nanoseconds? */
780 } trace_clocks[] = {
781 { trace_clock_local, "local", 1 },
782 { trace_clock_global, "global", 1 },
783 { trace_clock_counter, "counter", 0 },
784 { trace_clock_jiffies, "uptime", 0 },
785 { trace_clock, "perf", 1 },
786 ARCH_TRACE_CLOCKS
787 };
788
789 /*
790 * trace_parser_get_init - gets the buffer for trace parser
791 */
792 int 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 */
807 void 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 */
823 int 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)) {
866 if (parser->idx < parser->size - 1)
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;
883 } else if (parser->idx < parser->size - 1) {
884 parser->cont = true;
885 parser->buffer[parser->idx++] = ch;
886 } else {
887 ret = -EINVAL;
888 goto out;
889 }
890
891 *ppos += read;
892 ret = read;
893
894 out:
895 return ret;
896 }
897
898 ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, size_t cnt)
899 {
900 int len;
901 int ret;
902
903 if (!cnt)
904 return 0;
905
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);
913 if (ret == cnt)
914 return -EFAULT;
915
916 cnt -= ret;
917
918 s->readpos += cnt;
919 return cnt;
920 }
921
922 static ssize_t trace_seq_to_buffer(struct trace_seq *s, void *buf, size_t cnt)
923 {
924 int len;
925
926 if (s->len <= s->readpos)
927 return -EBUSY;
928
929 len = s->len - s->readpos;
930 if (cnt > len)
931 cnt = len;
932 memcpy(buf, s->buffer + s->readpos, cnt);
933
934 s->readpos += cnt;
935 return cnt;
936 }
937
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 *
944 * This is defined as a arch_spinlock_t in order to help
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 */
951 static arch_spinlock_t ftrace_max_lock =
952 (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
953
954 unsigned long __read_mostly tracing_thresh;
955
956 #ifdef CONFIG_TRACER_MAX_TRACE
957 unsigned long __read_mostly tracing_max_latency;
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 */
964 static void
965 __update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
966 {
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);
971
972 max_buf->cpu = cpu;
973 max_buf->time_start = data->preempt_timestamp;
974
975 max_data->saved_latency = tracing_max_latency;
976 max_data->critical_start = data->critical_start;
977 max_data->critical_end = data->critical_end;
978
979 memcpy(max_data->comm, tsk->comm, TASK_COMM_LEN);
980 max_data->pid = tsk->pid;
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
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;
993
994 /* record this tasks comm */
995 tracing_record_cmdline(tsk);
996 }
997
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 */
1007 void
1008 update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
1009 {
1010 struct ring_buffer *buf;
1011
1012 if (tr->stop_count)
1013 return;
1014
1015 WARN_ON_ONCE(!irqs_disabled());
1016
1017 if (!tr->allocated_snapshot) {
1018 /* Only the nop tracer should hit this when disabling */
1019 WARN_ON_ONCE(tr->current_trace != &nop_trace);
1020 return;
1021 }
1022
1023 arch_spin_lock(&ftrace_max_lock);
1024
1025 buf = tr->trace_buffer.buffer;
1026 tr->trace_buffer.buffer = tr->max_buffer.buffer;
1027 tr->max_buffer.buffer = buf;
1028
1029 __update_max_tr(tr, tsk, cpu);
1030 arch_spin_unlock(&ftrace_max_lock);
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.
1038 *
1039 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
1040 */
1041 void
1042 update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
1043 {
1044 int ret;
1045
1046 if (tr->stop_count)
1047 return;
1048
1049 WARN_ON_ONCE(!irqs_disabled());
1050 if (!tr->allocated_snapshot) {
1051 /* Only the nop tracer should hit this when disabling */
1052 WARN_ON_ONCE(tr->current_trace != &nop_trace);
1053 return;
1054 }
1055
1056 arch_spin_lock(&ftrace_max_lock);
1057
1058 ret = ring_buffer_swap_cpu(tr->max_buffer.buffer, tr->trace_buffer.buffer, cpu);
1059
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 */
1067 trace_array_printk_buf(tr->max_buffer.buffer, _THIS_IP_,
1068 "Failed to swap buffers due to commit in progress\n");
1069 }
1070
1071 WARN_ON_ONCE(ret && ret != -EAGAIN && ret != -EBUSY);
1072
1073 __update_max_tr(tr, tsk, cpu);
1074 arch_spin_unlock(&ftrace_max_lock);
1075 }
1076 #endif /* CONFIG_TRACER_MAX_TRACE */
1077
1078 static int default_wait_pipe(struct trace_iterator *iter)
1079 {
1080 /* Iterators are static, they should be filled or empty */
1081 if (trace_buffer_iter(iter, iter->cpu_file))
1082 return 0;
1083
1084 return ring_buffer_wait(iter->trace_buffer->buffer, iter->cpu_file);
1085 }
1086
1087 #ifdef CONFIG_FTRACE_STARTUP_TEST
1088 static 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;
1093
1094 if (!type->selftest || tracing_selftest_disabled)
1095 return 0;
1096
1097 /*
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.
1103 */
1104 tracing_reset_online_cpus(&tr->trace_buffer);
1105
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;
1135
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
1147 static inline int run_tracer_selftest(struct tracer *type)
1148 {
1149 return 0;
1150 }
1151 #endif /* CONFIG_FTRACE_STARTUP_TEST */
1152
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 */
1159 int register_tracer(struct tracer *type)
1160 {
1161 struct tracer *t;
1162 int ret = 0;
1163
1164 if (!type->name) {
1165 pr_info("Tracer must have a name\n");
1166 return -1;
1167 }
1168
1169 if (strlen(type->name) >= MAX_TRACER_SIZE) {
1170 pr_info("Tracer has a name longer than %d\n", MAX_TRACER_SIZE);
1171 return -1;
1172 }
1173
1174 mutex_lock(&trace_types_lock);
1175
1176 tracing_selftest_running = true;
1177
1178 for (t = trace_types; t; t = t->next) {
1179 if (strcmp(type->name, t->name) == 0) {
1180 /* already found */
1181 pr_info("Tracer %s already registered\n",
1182 type->name);
1183 ret = -1;
1184 goto out;
1185 }
1186 }
1187
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;
1195 if (!type->wait_pipe)
1196 type->wait_pipe = default_wait_pipe;
1197
1198 ret = run_tracer_selftest(type);
1199 if (ret < 0)
1200 goto out;
1201
1202 type->next = trace_types;
1203 trace_types = type;
1204
1205 out:
1206 tracing_selftest_running = false;
1207 mutex_unlock(&trace_types_lock);
1208
1209 if (ret || !default_bootup_tracer)
1210 goto out_unlock;
1211
1212 if (strncmp(default_bootup_tracer, type->name, MAX_TRACER_SIZE))
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. */
1220 tracing_selftest_disabled = true;
1221 #ifdef CONFIG_FTRACE_STARTUP_TEST
1222 printk(KERN_INFO "Disabling FTRACE selftests due to running tracer '%s'\n",
1223 type->name);
1224 #endif
1225
1226 out_unlock:
1227 return ret;
1228 }
1229
1230 void tracing_reset(struct trace_buffer *buf, int cpu)
1231 {
1232 struct ring_buffer *buffer = buf->buffer;
1233
1234 if (!buffer)
1235 return;
1236
1237 ring_buffer_record_disable(buffer);
1238
1239 /* Make sure all commits have finished */
1240 synchronize_sched();
1241 ring_buffer_reset_cpu(buffer, cpu);
1242
1243 printk(KERN_INFO "[ftrace]cpu %d trace reset\n", cpu);
1244 ring_buffer_record_enable(buffer);
1245 }
1246
1247 void tracing_reset_online_cpus(struct trace_buffer *buf)
1248 {
1249 struct ring_buffer *buffer = buf->buffer;
1250 int cpu;
1251
1252 if (!buffer)
1253 return;
1254
1255 ring_buffer_record_disable(buffer);
1256
1257 /* Make sure all commits have finished */
1258 synchronize_sched();
1259
1260 buf->time_start = buffer_ftrace_now(buf, buf->cpu);
1261
1262 for_each_online_cpu(cpu)
1263 ring_buffer_reset_cpu(buffer, cpu);
1264
1265 printk(KERN_INFO "[ftrace]all cpu trace reset\n");
1266 ring_buffer_record_enable(buffer);
1267 }
1268
1269 /* Must have trace_types_lock held */
1270 void tracing_reset_all_online_cpus(void)
1271 {
1272 struct trace_array *tr;
1273
1274 list_for_each_entry(tr, &ftrace_trace_arrays, list) {
1275 tracing_reset_online_cpus(&tr->trace_buffer);
1276 #ifdef CONFIG_TRACER_MAX_TRACE
1277 tracing_reset_online_cpus(&tr->max_buffer);
1278 #endif
1279 }
1280 }
1281
1282 #define SAVED_CMDLINES 128
1283 #define NO_CMDLINE_MAP UINT_MAX
1284 #ifdef CONFIG_MTK_EXTMEM
1285 extern 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))
1288 static unsigned* map_pid_to_cmdline = NULL;
1289 static unsigned* map_cmdline_to_pid = NULL;
1290 #else
1291 static unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1];
1292 static unsigned map_cmdline_to_pid[SAVED_CMDLINES];
1293 #endif
1294 static char saved_cmdlines[SAVED_CMDLINES][TASK_COMM_LEN];
1295 static unsigned saved_tgids[SAVED_CMDLINES];
1296 static int cmdline_idx;
1297 static arch_spinlock_t trace_cmdline_lock = __ARCH_SPIN_LOCK_UNLOCKED;
1298
1299 /* temporary disable recording */
1300 static atomic_t trace_record_cmdline_disabled __read_mostly;
1301
1302 static void trace_init_cmdlines(void)
1303 {
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
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));
1320 #endif
1321 cmdline_idx = 0;
1322 }
1323
1324 int is_tracing_stopped(void)
1325 {
1326 return global_trace.stop_count;
1327 }
1328
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 */
1337 void ftrace_off_permanent(void)
1338 {
1339 tracing_disabled = 1;
1340 ftrace_stop();
1341 tracing_off_permanent();
1342 }
1343
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 */
1350 void tracing_start(void)
1351 {
1352 struct ring_buffer *buffer;
1353 unsigned long flags;
1354 int reset_ftrace = 0;
1355
1356 if (tracing_disabled)
1357 return;
1358
1359 raw_spin_lock_irqsave(&global_trace.start_lock, flags);
1360 if (--global_trace.stop_count) {
1361 if (global_trace.stop_count < 0) {
1362 /* Someone screwed up their debugging */
1363 WARN_ON_ONCE(1);
1364 global_trace.stop_count = 0;
1365 reset_ftrace = 1;
1366 }
1367 goto out;
1368 }else
1369 reset_ftrace = 1;
1370
1371
1372 /* Prevent the buffers from switching */
1373 arch_spin_lock(&ftrace_max_lock);
1374
1375 buffer = global_trace.trace_buffer.buffer;
1376 if (buffer)
1377 ring_buffer_record_enable(buffer);
1378
1379 #ifdef CONFIG_TRACER_MAX_TRACE
1380 buffer = global_trace.max_buffer.buffer;
1381 if (buffer)
1382 ring_buffer_record_enable(buffer);
1383 #endif
1384
1385 arch_spin_unlock(&ftrace_max_lock);
1386
1387 out:
1388 raw_spin_unlock_irqrestore(&global_trace.start_lock, flags);
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
1395 }
1396
1397 static 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
1420 buffer = tr->trace_buffer.buffer;
1421 if (buffer)
1422 ring_buffer_record_enable(buffer);
1423
1424 out:
1425 raw_spin_unlock_irqrestore(&tr->start_lock, flags);
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 */
1434 void tracing_stop(void)
1435 {
1436 struct ring_buffer *buffer;
1437 unsigned long flags;
1438
1439 raw_spin_lock_irqsave(&global_trace.start_lock, flags);
1440 if (global_trace.stop_count++)
1441 goto out;
1442
1443 /* Prevent the buffers from switching */
1444 arch_spin_lock(&ftrace_max_lock);
1445
1446 buffer = global_trace.trace_buffer.buffer;
1447 if (buffer)
1448 ring_buffer_record_disable(buffer);
1449
1450 #ifdef CONFIG_TRACER_MAX_TRACE
1451 buffer = global_trace.max_buffer.buffer;
1452 if (buffer)
1453 ring_buffer_record_disable(buffer);
1454 #endif
1455
1456 arch_spin_unlock(&ftrace_max_lock);
1457
1458 out:
1459 raw_spin_unlock_irqrestore(&global_trace.start_lock, flags);
1460 }
1461
1462 static 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
1475 buffer = tr->trace_buffer.buffer;
1476 if (buffer)
1477 ring_buffer_record_disable(buffer);
1478
1479 out:
1480 raw_spin_unlock_irqrestore(&tr->start_lock, flags);
1481 }
1482
1483 void trace_stop_cmdline_recording(void);
1484
1485 static int trace_save_cmdline(struct task_struct *tsk)
1486 {
1487 unsigned pid, idx;
1488
1489 if (!tsk->pid || unlikely(tsk->pid > PID_MAX_DEFAULT))
1490 return 0;
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 */
1498 if (!arch_spin_trylock(&trace_cmdline_lock))
1499 return 0;
1500
1501 idx = map_pid_to_cmdline[tsk->pid];
1502 if (idx == NO_CMDLINE_MAP) {
1503 idx = (cmdline_idx + 1) % SAVED_CMDLINES;
1504
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;
1514
1515 map_cmdline_to_pid[idx] = tsk->pid;
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);
1522 saved_tgids[idx] = tsk->tgid;
1523
1524 arch_spin_unlock(&trace_cmdline_lock);
1525
1526 return 1;
1527 }
1528
1529 void trace_find_cmdline(int pid, char comm[])
1530 {
1531 unsigned map;
1532
1533 if (!pid) {
1534 strcpy(comm, "<idle>");
1535 return;
1536 }
1537
1538 if (WARN_ON_ONCE(pid < 0)) {
1539 strcpy(comm, "<XXX>");
1540 return;
1541 }
1542
1543 if (pid > PID_MAX_DEFAULT) {
1544 strcpy(comm, "<...>");
1545 return;
1546 }
1547
1548 preempt_disable();
1549 arch_spin_lock(&trace_cmdline_lock);
1550 map = map_pid_to_cmdline[pid];
1551 if (map != NO_CMDLINE_MAP)
1552 strcpy(comm, saved_cmdlines[map]);
1553 else
1554 strcpy(comm, "<...>");
1555
1556 arch_spin_unlock(&trace_cmdline_lock);
1557 preempt_enable();
1558 }
1559
1560 int 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
1579 void tracing_record_cmdline(struct task_struct *tsk)
1580 {
1581 if (atomic_read(&trace_record_cmdline_disabled) || !tracing_is_on())
1582 return;
1583
1584 if (!__this_cpu_read(trace_cmdline_save))
1585 return;
1586
1587 if (trace_save_cmdline(tsk))
1588 __this_cpu_write(trace_cmdline_save, false);
1589 }
1590
1591 void
1592 tracing_generic_entry_update(struct trace_entry *entry, unsigned long flags,
1593 int pc)
1594 {
1595 struct task_struct *tsk = current;
1596
1597 entry->preempt_count = pc & 0xff;
1598 entry->pid = (tsk) ? tsk->pid : 0;
1599 entry->flags =
1600 #ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
1601 (irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) |
1602 #else
1603 TRACE_FLAG_IRQS_NOSUPPORT |
1604 #endif
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 }
1609 EXPORT_SYMBOL_GPL(tracing_generic_entry_update);
1610
1611 struct ring_buffer_event *
1612 trace_buffer_lock_reserve(struct ring_buffer *buffer,
1613 int type,
1614 unsigned long len,
1615 unsigned long flags, int pc)
1616 {
1617 struct ring_buffer_event *event;
1618
1619 event = ring_buffer_lock_reserve(buffer, len);
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 }
1629
1630 void
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
1637 static inline void
1638 __trace_buffer_unlock_commit(struct ring_buffer *buffer,
1639 struct ring_buffer_event *event,
1640 unsigned long flags, int pc)
1641 {
1642 __buffer_unlock_commit(buffer, event);
1643
1644 ftrace_trace_stack(buffer, flags, 6, pc);
1645 ftrace_trace_userstack(buffer, flags, pc);
1646 }
1647
1648 void trace_buffer_unlock_commit(struct ring_buffer *buffer,
1649 struct ring_buffer_event *event,
1650 unsigned long flags, int pc)
1651 {
1652 __trace_buffer_unlock_commit(buffer, event, flags, pc);
1653 }
1654 EXPORT_SYMBOL_GPL(trace_buffer_unlock_commit);
1655
1656 struct ring_buffer_event *
1657 trace_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 {
1662 *current_rb = ftrace_file->tr->trace_buffer.buffer;
1663 return trace_buffer_lock_reserve(*current_rb,
1664 type, len, flags, pc);
1665 }
1666 EXPORT_SYMBOL_GPL(trace_event_buffer_lock_reserve);
1667
1668 struct ring_buffer_event *
1669 trace_current_buffer_lock_reserve(struct ring_buffer **current_rb,
1670 int type, unsigned long len,
1671 unsigned long flags, int pc)
1672 {
1673 *current_rb = global_trace.trace_buffer.buffer;
1674 return trace_buffer_lock_reserve(*current_rb,
1675 type, len, flags, pc);
1676 }
1677 EXPORT_SYMBOL_GPL(trace_current_buffer_lock_reserve);
1678
1679 void trace_current_buffer_unlock_commit(struct ring_buffer *buffer,
1680 struct ring_buffer_event *event,
1681 unsigned long flags, int pc)
1682 {
1683 __trace_buffer_unlock_commit(buffer, event, flags, pc);
1684 }
1685 EXPORT_SYMBOL_GPL(trace_current_buffer_unlock_commit);
1686
1687 void 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)
1691 {
1692 __buffer_unlock_commit(buffer, event);
1693
1694 ftrace_trace_stack_regs(buffer, flags, 0, pc, regs);
1695 ftrace_trace_userstack(buffer, flags, pc);
1696 }
1697 EXPORT_SYMBOL_GPL(trace_buffer_unlock_commit_regs);
1698
1699 void trace_current_buffer_discard_commit(struct ring_buffer *buffer,
1700 struct ring_buffer_event *event)
1701 {
1702 ring_buffer_discard_commit(buffer, event);
1703 }
1704 EXPORT_SYMBOL_GPL(trace_current_buffer_discard_commit);
1705
1706 void
1707 trace_function(struct trace_array *tr,
1708 unsigned long ip, unsigned long parent_ip, unsigned long flags,
1709 int pc)
1710 {
1711 struct ftrace_event_call *call = &event_function;
1712 struct ring_buffer *buffer = tr->trace_buffer.buffer;
1713 struct ring_buffer_event *event;
1714 struct ftrace_entry *entry;
1715
1716 /* If we are reading the ring buffer, don't trace */
1717 if (unlikely(__this_cpu_read(ftrace_cpu_disabled)))
1718 return;
1719
1720 event = trace_buffer_lock_reserve(buffer, TRACE_FN, sizeof(*entry),
1721 flags, pc);
1722 if (!event)
1723 return;
1724 entry = ring_buffer_event_data(event);
1725 entry->ip = ip;
1726 entry->parent_ip = parent_ip;
1727
1728 if (!filter_check_discard(call, entry, buffer, event))
1729 __buffer_unlock_commit(buffer, event);
1730 }
1731
1732 void
1733 ftrace(struct trace_array *tr, struct trace_array_cpu *data,
1734 unsigned long ip, unsigned long parent_ip, unsigned long flags,
1735 int pc)
1736 {
1737 if (likely(!atomic_read(&data->disabled)))
1738 trace_function(tr, ip, parent_ip, flags, pc);
1739 }
1740
1741 #ifdef CONFIG_STACKTRACE
1742
1743 #define FTRACE_STACK_MAX_ENTRIES (PAGE_SIZE / sizeof(unsigned long))
1744 struct ftrace_stack {
1745 unsigned long calls[FTRACE_STACK_MAX_ENTRIES];
1746 };
1747
1748 static DEFINE_PER_CPU(struct ftrace_stack, ftrace_stack);
1749 static DEFINE_PER_CPU(int, ftrace_stack_reserve);
1750
1751 static void __ftrace_trace_stack(struct ring_buffer *buffer,
1752 unsigned long flags,
1753 int skip, int pc, struct pt_regs *regs)
1754 {
1755 struct ftrace_event_call *call = &event_kernel_stack;
1756 struct ring_buffer_event *event;
1757 struct stack_entry *entry;
1758 struct stack_trace trace;
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
1773 use_stack = __this_cpu_inc_return(ftrace_stack_reserve);
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);
1798
1799 event = trace_buffer_lock_reserve(buffer, TRACE_STACK,
1800 sizeof(*entry) + size, flags, pc);
1801 if (!event)
1802 goto out;
1803 entry = ring_buffer_event_data(event);
1804
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;
1820
1821 if (!filter_check_discard(call, entry, buffer, event))
1822 __buffer_unlock_commit(buffer, event);
1823
1824 out:
1825 /* Again, don't let gcc optimize things here */
1826 barrier();
1827 __this_cpu_dec(ftrace_stack_reserve);
1828 preempt_enable_notrace();
1829
1830 }
1831
1832 void 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
1841 void ftrace_trace_stack(struct ring_buffer *buffer, unsigned long flags,
1842 int skip, int pc)
1843 {
1844 if (!(trace_flags & TRACE_ITER_STACKTRACE))
1845 return;
1846
1847 __ftrace_trace_stack(buffer, flags, skip, pc, NULL);
1848 }
1849
1850 void __trace_stack(struct trace_array *tr, unsigned long flags, int skip,
1851 int pc)
1852 {
1853 __ftrace_trace_stack(tr->trace_buffer.buffer, flags, skip, pc, NULL);
1854 }
1855
1856 /**
1857 * trace_dump_stack - record a stack back trace in the trace buffer
1858 * @skip: Number of functions to skip (helper handlers)
1859 */
1860 void trace_dump_stack(int skip)
1861 {
1862 unsigned long flags;
1863
1864 if (tracing_disabled || tracing_selftest_running)
1865 return;
1866
1867 local_save_flags(flags);
1868
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);
1876 }
1877
1878 static DEFINE_PER_CPU(int, user_stack_count);
1879
1880 void
1881 ftrace_trace_userstack(struct ring_buffer *buffer, unsigned long flags, int pc)
1882 {
1883 struct ftrace_event_call *call = &event_user_stack;
1884 struct ring_buffer_event *event;
1885 struct userstack_entry *entry;
1886 struct stack_trace trace;
1887
1888 if (!(trace_flags & TRACE_ITER_USERSTACKTRACE))
1889 return;
1890
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;
1897
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
1908 event = trace_buffer_lock_reserve(buffer, TRACE_USER_STACK,
1909 sizeof(*entry), flags, pc);
1910 if (!event)
1911 goto out_drop_count;
1912 entry = ring_buffer_event_data(event);
1913
1914 entry->tgid = current->tgid;
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);
1923 if (!filter_check_discard(call, entry, buffer, event))
1924 __buffer_unlock_commit(buffer, event);
1925
1926 out_drop_count:
1927 __this_cpu_dec(user_stack_count);
1928 out:
1929 preempt_enable();
1930 }
1931
1932 #ifdef UNUSED
1933 static void __trace_userstack(struct trace_array *tr, unsigned long flags)
1934 {
1935 ftrace_trace_userstack(tr, flags, preempt_count());
1936 }
1937 #endif /* UNUSED */
1938
1939 #endif /* CONFIG_STACKTRACE */
1940
1941 /* created for use with alloc_percpu */
1942 struct trace_buffer_struct {
1943 char buffer[TRACE_BUF_SIZE];
1944 };
1945
1946 static struct trace_buffer_struct *trace_percpu_buffer;
1947 static struct trace_buffer_struct *trace_percpu_sirq_buffer;
1948 static struct trace_buffer_struct *trace_percpu_irq_buffer;
1949 static 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 */
1958 static char *get_trace_buf(void)
1959 {
1960 struct trace_buffer_struct *percpu_buffer;
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
1978 return this_cpu_ptr(&percpu_buffer->buffer[0]);
1979 }
1980
1981 static 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
2022 static int buffers_allocated;
2023
2024 void trace_printk_init_buffers(void)
2025 {
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
2034 /* Expand the buffers to set size */
2035 /* M: avoid to expand buffer because of trace_printk in kernel */
2036 /* tracing_update_buffers(); */
2037
2038 buffers_allocated = 1;
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 */
2046 if (global_trace.trace_buffer.buffer)
2047 tracing_start_cmdline_record();
2048 }
2049
2050 void 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
2058 static 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();
2067 }
2068
2069 /**
2070 * trace_vbprintk - write binary msg to tracing buffer
2071 *
2072 */
2073 int trace_vbprintk(unsigned long ip, const char *fmt, va_list args)
2074 {
2075 struct ftrace_event_call *call = &event_bprint;
2076 struct ring_buffer_event *event;
2077 struct ring_buffer *buffer;
2078 struct trace_array *tr = &global_trace;
2079 struct bprint_entry *entry;
2080 unsigned long flags;
2081 char *tbuffer;
2082 int len = 0, size, pc;
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();
2091 preempt_disable_notrace();
2092
2093 tbuffer = get_trace_buf();
2094 if (!tbuffer) {
2095 len = 0;
2096 goto out;
2097 }
2098
2099 len = vbin_printf((u32 *)tbuffer, TRACE_BUF_SIZE/sizeof(int), fmt, args);
2100
2101 if (len > TRACE_BUF_SIZE/sizeof(int) || len < 0)
2102 goto out;
2103
2104 local_save_flags(flags);
2105 size = sizeof(*entry) + sizeof(u32) * len;
2106 buffer = tr->trace_buffer.buffer;
2107 event = trace_buffer_lock_reserve(buffer, TRACE_BPRINT, size,
2108 flags, pc);
2109 if (!event)
2110 goto out;
2111 entry = ring_buffer_event_data(event);
2112 entry->ip = ip;
2113 entry->fmt = fmt;
2114
2115 memcpy(entry->buf, tbuffer, sizeof(u32) * len);
2116 if (!filter_check_discard(call, entry, buffer, event)) {
2117 __buffer_unlock_commit(buffer, event);
2118 ftrace_trace_stack(buffer, flags, 6, pc);
2119 }
2120
2121 out:
2122 preempt_enable_notrace();
2123 unpause_graph_tracing();
2124
2125 return len;
2126 }
2127 EXPORT_SYMBOL_GPL(trace_vbprintk);
2128
2129 static int
2130 __trace_array_vprintk(struct ring_buffer *buffer,
2131 unsigned long ip, const char *fmt, va_list args)
2132 {
2133 struct ftrace_event_call *call = &event_print;
2134 struct ring_buffer_event *event;
2135 int len = 0, size, pc;
2136 struct print_entry *entry;
2137 unsigned long flags;
2138 char *tbuffer;
2139
2140 if (tracing_disabled || tracing_selftest_running)
2141 return 0;
2142
2143 /* Don't pollute graph traces with trace_vprintk internals */
2144 pause_graph_tracing();
2145
2146 pc = preempt_count();
2147 preempt_disable_notrace();
2148
2149
2150 tbuffer = get_trace_buf();
2151 if (!tbuffer) {
2152 len = 0;
2153 goto out;
2154 }
2155
2156 len = vsnprintf(tbuffer, TRACE_BUF_SIZE, fmt, args);
2157 if (len > TRACE_BUF_SIZE)
2158 goto out;
2159
2160 local_save_flags(flags);
2161 size = sizeof(*entry) + len + 1;
2162 event = trace_buffer_lock_reserve(buffer, TRACE_PRINT, size,
2163 flags, pc);
2164 if (!event)
2165 goto out;
2166 entry = ring_buffer_event_data(event);
2167 entry->ip = ip;
2168
2169 memcpy(&entry->buf, tbuffer, len);
2170 entry->buf[len] = '\0';
2171 if (!filter_check_discard(call, entry, buffer, event)) {
2172 __buffer_unlock_commit(buffer, event);
2173 ftrace_trace_stack(buffer, flags, 6, pc);
2174 }
2175 out:
2176 preempt_enable_notrace();
2177 unpause_graph_tracing();
2178
2179 return len;
2180 }
2181
2182 int 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
2188 int 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
2203 int 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
2218 int trace_vprintk(unsigned long ip, const char *fmt, va_list args)
2219 {
2220 return trace_array_vprintk(&global_trace, ip, fmt, args);
2221 }
2222 EXPORT_SYMBOL_GPL(trace_vprintk);
2223
2224 static void trace_iterator_increment(struct trace_iterator *iter)
2225 {
2226 struct ring_buffer_iter *buf_iter = trace_buffer_iter(iter, iter->cpu);
2227
2228 iter->idx++;
2229 if (buf_iter)
2230 ring_buffer_read(buf_iter, NULL);
2231 }
2232
2233 static struct trace_entry *
2234 peek_next_entry(struct trace_iterator *iter, int cpu, u64 *ts,
2235 unsigned long *lost_events)
2236 {
2237 struct ring_buffer_event *event;
2238 struct ring_buffer_iter *buf_iter = trace_buffer_iter(iter, cpu);
2239
2240 if (buf_iter)
2241 event = ring_buffer_iter_peek(buf_iter, ts);
2242 else
2243 event = ring_buffer_peek(iter->trace_buffer->buffer, cpu, ts,
2244 lost_events);
2245
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;
2252 }
2253
2254 static struct trace_entry *
2255 __find_next_entry(struct trace_iterator *iter, int *ent_cpu,
2256 unsigned long *missing_events, u64 *ent_ts)
2257 {
2258 struct ring_buffer *buffer = iter->trace_buffer->buffer;
2259 struct trace_entry *ent, *next = NULL;
2260 unsigned long lost_events = 0, next_lost = 0;
2261 int cpu_file = iter->cpu_file;
2262 u64 next_ts = 0, ts;
2263 int next_cpu = -1;
2264 int next_size = 0;
2265 int cpu;
2266
2267 /*
2268 * If we are in a per_cpu trace file, don't bother by iterating over
2269 * all cpu and peek directly.
2270 */
2271 if (cpu_file > RING_BUFFER_ALL_CPUS) {
2272 if (ring_buffer_empty_cpu(buffer, cpu_file))
2273 return NULL;
2274 ent = peek_next_entry(iter, cpu_file, ent_ts, missing_events);
2275 if (ent_cpu)
2276 *ent_cpu = cpu_file;
2277
2278 return ent;
2279 }
2280
2281 for_each_tracing_cpu(cpu) {
2282
2283 if (ring_buffer_empty_cpu(buffer, cpu))
2284 continue;
2285
2286 ent = peek_next_entry(iter, cpu, &ts, &lost_events);
2287
2288 /*
2289 * Pick the entry with the smallest timestamp:
2290 */
2291 if (ent && (!next || ts < next_ts)) {
2292 next = ent;
2293 next_cpu = cpu;
2294 next_ts = ts;
2295 next_lost = lost_events;
2296 next_size = iter->ent_size;
2297 }
2298 }
2299
2300 iter->ent_size = next_size;
2301
2302 if (ent_cpu)
2303 *ent_cpu = next_cpu;
2304
2305 if (ent_ts)
2306 *ent_ts = next_ts;
2307
2308 if (missing_events)
2309 *missing_events = next_lost;
2310
2311 return next;
2312 }
2313
2314 /* Find the next real entry, without updating the iterator itself */
2315 struct trace_entry *trace_find_next_entry(struct trace_iterator *iter,
2316 int *ent_cpu, u64 *ent_ts)
2317 {
2318 return __find_next_entry(iter, ent_cpu, NULL, ent_ts);
2319 }
2320
2321 /* Find the next real entry, and increment the iterator to the next entry */
2322 void *trace_find_next_entry_inc(struct trace_iterator *iter)
2323 {
2324 iter->ent = __find_next_entry(iter, &iter->cpu,
2325 &iter->lost_events, &iter->ts);
2326
2327 if (iter->ent)
2328 trace_iterator_increment(iter);
2329
2330 return iter->ent ? iter : NULL;
2331 }
2332
2333 static void trace_consume(struct trace_iterator *iter)
2334 {
2335 ring_buffer_consume(iter->trace_buffer->buffer, iter->cpu, &iter->ts,
2336 &iter->lost_events);
2337 }
2338
2339 static void *s_next(struct seq_file *m, void *v, loff_t *pos)
2340 {
2341 struct trace_iterator *iter = m->private;
2342 int i = (int)*pos;
2343 void *ent;
2344
2345 WARN_ON_ONCE(iter->leftover);
2346
2347 (*pos)++;
2348
2349 /* can't go backwards */
2350 if (iter->idx > i)
2351 return NULL;
2352
2353 if (iter->idx < 0)
2354 ent = trace_find_next_entry_inc(iter);
2355 else
2356 ent = iter;
2357
2358 while (ent && iter->idx < i)
2359 ent = trace_find_next_entry_inc(iter);
2360
2361 iter->pos = *pos;
2362
2363 return ent;
2364 }
2365
2366 void tracing_iter_reset(struct trace_iterator *iter, int cpu)
2367 {
2368 struct ring_buffer_event *event;
2369 struct ring_buffer_iter *buf_iter;
2370 unsigned long entries = 0;
2371 u64 ts;
2372
2373 per_cpu_ptr(iter->trace_buffer->data, cpu)->skipped_entries = 0;
2374
2375 buf_iter = trace_buffer_iter(iter, cpu);
2376 if (!buf_iter)
2377 return;
2378
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))) {
2387 if (ts >= iter->trace_buffer->time_start)
2388 break;
2389 entries++;
2390 ring_buffer_read(buf_iter, NULL);
2391 }
2392
2393 per_cpu_ptr(iter->trace_buffer->data, cpu)->skipped_entries = entries;
2394 }
2395
2396 /*
2397 * The current tracer is copied to avoid a global locking
2398 * all around.
2399 */
2400 static void *s_start(struct seq_file *m, loff_t *pos)
2401 {
2402 struct trace_iterator *iter = m->private;
2403 struct trace_array *tr = iter->tr;
2404 int cpu_file = iter->cpu_file;
2405 void *p = NULL;
2406 loff_t l = 0;
2407 int cpu;
2408
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 */
2415 mutex_lock(&trace_types_lock);
2416 if (unlikely(tr->current_trace && iter->trace->name != tr->current_trace->name))
2417 *iter->trace = *tr->current_trace;
2418 mutex_unlock(&trace_types_lock);
2419
2420 #ifdef CONFIG_TRACER_MAX_TRACE
2421 if (iter->snapshot && iter->trace->use_max_tr)
2422 return ERR_PTR(-EBUSY);
2423 #endif
2424
2425 if (!iter->snapshot)
2426 atomic_inc(&trace_record_cmdline_disabled);
2427
2428 if (*pos != iter->pos) {
2429 iter->ent = NULL;
2430 iter->cpu = 0;
2431 iter->idx = -1;
2432
2433 if (cpu_file == RING_BUFFER_ALL_CPUS) {
2434 for_each_tracing_cpu(cpu)
2435 tracing_iter_reset(iter, cpu);
2436 } else
2437 tracing_iter_reset(iter, cpu_file);
2438
2439 iter->leftover = 0;
2440 for (p = iter; p && l < *pos; p = s_next(m, p, &l))
2441 ;
2442
2443 } else {
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 }
2454 }
2455
2456 trace_event_read_lock();
2457 trace_access_lock(cpu_file);
2458 return p;
2459 }
2460
2461 static void s_stop(struct seq_file *m, void *p)
2462 {
2463 struct trace_iterator *iter = m->private;
2464
2465 #ifdef CONFIG_TRACER_MAX_TRACE
2466 if (iter->snapshot && iter->trace->use_max_tr)
2467 return;
2468 #endif
2469
2470 if (!iter->snapshot)
2471 atomic_dec(&trace_record_cmdline_disabled);
2472
2473 trace_access_unlock(iter->cpu_file);
2474 trace_event_read_unlock();
2475 }
2476
2477 static void
2478 get_total_entries(struct trace_buffer *buf,
2479 unsigned long *total, unsigned long *entries)
2480 {
2481 unsigned long count;
2482 int cpu;
2483
2484 *total = 0;
2485 *entries = 0;
2486
2487 for_each_tracing_cpu(cpu) {
2488 count = ring_buffer_entries_cpu(buf->buffer, cpu);
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 */
2494 if (per_cpu_ptr(buf->data, cpu)->skipped_entries) {
2495 count -= per_cpu_ptr(buf->data, cpu)->skipped_entries;
2496 /* total is the same as the entries */
2497 *total += count;
2498 } else
2499 *total += count +
2500 ring_buffer_overrun_cpu(buf->buffer, cpu);
2501 *entries += count;
2502 }
2503 }
2504
2505 static void print_lat_help_header(struct seq_file *m)
2506 {
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");
2512 seq_puts(m, "# |||| / delay \n");
2513 seq_puts(m, "# cmd pid ||||| time | caller \n");
2514 seq_puts(m, "# \\ / ||||| \\ | / \n");
2515 }
2516
2517 static void print_event_info(struct trace_buffer *buf, struct seq_file *m)
2518 {
2519 unsigned long total;
2520 unsigned long entries;
2521
2522 get_total_entries(buf, &total, &entries);
2523 seq_printf(m, "# entries-in-buffer/entries-written: %lu/%lu #P:%d\n",
2524 entries, total, num_online_cpus());
2525 #ifdef CONFIG_MTK_SCHED_TRACERS
2526 print_enabled_events(m);
2527 #endif
2528 seq_puts(m, "#\n");
2529 }
2530
2531 static void print_func_help_header(struct trace_buffer *buf, struct seq_file *m)
2532 {
2533 print_event_info(buf, m);
2534 seq_puts(m, "# TASK-PID CPU# TIMESTAMP FUNCTION\n");
2535 seq_puts(m, "# | | | | |\n");
2536 }
2537
2538 static 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
2545 static void print_func_help_header_irq(struct trace_buffer *buf, struct seq_file *m)
2546 {
2547 print_event_info(buf, m);
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 }
2556
2557 static 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
2569 void
2570 print_trace_header(struct seq_file *m, struct trace_iterator *iter)
2571 {
2572 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
2573 struct trace_buffer *buf = iter->trace_buffer;
2574 struct trace_array_cpu *data = per_cpu_ptr(buf->data, buf->cpu);
2575 struct tracer *type = iter->trace;
2576 unsigned long entries;
2577 unsigned long total;
2578 const char *name = "preemption";
2579
2580 name = type->name;
2581
2582 get_total_entries(buf, &total, &entries);
2583
2584 seq_printf(m, "# %s latency trace v1.1.5 on %s\n",
2585 name, UTS_RELEASE);
2586 seq_puts(m, "# -----------------------------------"
2587 "---------------------------------\n");
2588 seq_printf(m, "# latency: %lu us, #%lu/%lu, CPU#%d |"
2589 " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
2590 nsecs_to_usecs(data->saved_latency),
2591 entries,
2592 total,
2593 buf->cpu,
2594 #if defined(CONFIG_PREEMPT_NONE)
2595 "server",
2596 #elif defined(CONFIG_PREEMPT_VOLUNTARY)
2597 "desktop",
2598 #elif defined(CONFIG_PREEMPT)
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
2610 seq_puts(m, "# -----------------\n");
2611 seq_printf(m, "# | task: %.16s-%d "
2612 "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
2613 data->comm, data->pid,
2614 from_kuid_munged(seq_user_ns(m), data->uid), data->nice,
2615 data->policy, data->rt_priority);
2616 seq_puts(m, "# -----------------\n");
2617
2618 if (data->critical_start) {
2619 seq_puts(m, "# => started at: ");
2620 seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags);
2621 trace_print_seq(m, &iter->seq);
2622 seq_puts(m, "\n# => ended at: ");
2623 seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags);
2624 trace_print_seq(m, &iter->seq);
2625 seq_puts(m, "\n#\n");
2626 }
2627
2628 seq_puts(m, "#\n");
2629 }
2630
2631 static void test_cpu_buff_start(struct trace_iterator *iter)
2632 {
2633 struct trace_seq *s = &iter->seq;
2634
2635 if (!(trace_flags & TRACE_ITER_ANNOTATE))
2636 return;
2637
2638 if (!(iter->iter_flags & TRACE_FILE_ANNOTATE))
2639 return;
2640
2641 if (cpumask_test_cpu(iter->cpu, iter->started))
2642 return;
2643
2644 if (per_cpu_ptr(iter->trace_buffer->data, iter->cpu)->skipped_entries)
2645 return;
2646
2647 cpumask_set_cpu(iter->cpu, iter->started);
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);
2653 }
2654
2655 static enum print_line_t print_trace_fmt(struct trace_iterator *iter)
2656 {
2657 struct trace_seq *s = &iter->seq;
2658 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
2659 struct trace_entry *entry;
2660 struct trace_event *event;
2661
2662 entry = iter->ent;
2663
2664 test_cpu_buff_start(iter);
2665
2666 event = ftrace_find_event(entry->type);
2667
2668 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
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 }
2676 }
2677
2678 if (event)
2679 return event->funcs->trace(iter, sym_flags, event);
2680
2681 if (!trace_seq_printf(s, "Unknown type %d\n", entry->type))
2682 goto partial;
2683
2684 return TRACE_TYPE_HANDLED;
2685 partial:
2686 return TRACE_TYPE_PARTIAL_LINE;
2687 }
2688
2689 static enum print_line_t print_raw_fmt(struct trace_iterator *iter)
2690 {
2691 struct trace_seq *s = &iter->seq;
2692 struct trace_entry *entry;
2693 struct trace_event *event;
2694
2695 entry = iter->ent;
2696
2697 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
2698 if (!trace_seq_printf(s, "%d %d %llu ",
2699 entry->pid, iter->cpu, iter->ts))
2700 goto partial;
2701 }
2702
2703 event = ftrace_find_event(entry->type);
2704 if (event)
2705 return event->funcs->raw(iter, 0, event);
2706
2707 if (!trace_seq_printf(s, "%d ?\n", entry->type))
2708 goto partial;
2709
2710 return TRACE_TYPE_HANDLED;
2711 partial:
2712 return TRACE_TYPE_PARTIAL_LINE;
2713 }
2714
2715 static enum print_line_t print_hex_fmt(struct trace_iterator *iter)
2716 {
2717 struct trace_seq *s = &iter->seq;
2718 unsigned char newline = '\n';
2719 struct trace_entry *entry;
2720 struct trace_event *event;
2721
2722 entry = iter->ent;
2723
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 }
2729
2730 event = ftrace_find_event(entry->type);
2731 if (event) {
2732 enum print_line_t ret = event->funcs->hex(iter, 0, event);
2733 if (ret != TRACE_TYPE_HANDLED)
2734 return ret;
2735 }
2736
2737 SEQ_PUT_FIELD_RET(s, newline);
2738
2739 return TRACE_TYPE_HANDLED;
2740 }
2741
2742 static enum print_line_t print_bin_fmt(struct trace_iterator *iter)
2743 {
2744 struct trace_seq *s = &iter->seq;
2745 struct trace_entry *entry;
2746 struct trace_event *event;
2747
2748 entry = iter->ent;
2749
2750 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
2751 SEQ_PUT_FIELD_RET(s, entry->pid);
2752 SEQ_PUT_FIELD_RET(s, iter->cpu);
2753 SEQ_PUT_FIELD_RET(s, iter->ts);
2754 }
2755
2756 event = ftrace_find_event(entry->type);
2757 return event ? event->funcs->binary(iter, 0, event) :
2758 TRACE_TYPE_HANDLED;
2759 }
2760
2761 int trace_empty(struct trace_iterator *iter)
2762 {
2763 struct ring_buffer_iter *buf_iter;
2764 int cpu;
2765
2766 /* If we are looking at one CPU buffer, only check that one */
2767 if (iter->cpu_file != RING_BUFFER_ALL_CPUS) {
2768 cpu = iter->cpu_file;
2769 buf_iter = trace_buffer_iter(iter, cpu);
2770 if (buf_iter) {
2771 if (!ring_buffer_iter_empty(buf_iter))
2772 return 0;
2773 } else {
2774 if (!ring_buffer_empty_cpu(iter->trace_buffer->buffer, cpu))
2775 return 0;
2776 }
2777 return 1;
2778 }
2779
2780 for_each_tracing_cpu(cpu) {
2781 buf_iter = trace_buffer_iter(iter, cpu);
2782 if (buf_iter) {
2783 if (!ring_buffer_iter_empty(buf_iter))
2784 return 0;
2785 } else {
2786 if (!ring_buffer_empty_cpu(iter->trace_buffer->buffer, cpu))
2787 return 0;
2788 }
2789 }
2790
2791 return 1;
2792 }
2793
2794 /* Called with trace_event_read_lock() held. */
2795 enum print_line_t print_trace_line(struct trace_iterator *iter)
2796 {
2797 enum print_line_t ret;
2798
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;
2803
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 }
2809
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
2815 if (iter->ent->type == TRACE_BPRINT &&
2816 trace_flags & TRACE_ITER_PRINTK &&
2817 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
2818 return trace_print_bprintk_msg_only(iter);
2819
2820 if (iter->ent->type == TRACE_PRINT &&
2821 trace_flags & TRACE_ITER_PRINTK &&
2822 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
2823 return trace_print_printk_msg_only(iter);
2824
2825 if (trace_flags & TRACE_ITER_BIN)
2826 return print_bin_fmt(iter);
2827
2828 if (trace_flags & TRACE_ITER_HEX)
2829 return print_hex_fmt(iter);
2830
2831 if (trace_flags & TRACE_ITER_RAW)
2832 return print_raw_fmt(iter);
2833
2834 return print_trace_fmt(iter);
2835 }
2836
2837 void 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
2852 void trace_default_header(struct seq_file *m)
2853 {
2854 struct trace_iterator *iter = m->private;
2855
2856 if (!(trace_flags & TRACE_ITER_CONTEXT_INFO))
2857 return;
2858
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 {
2867 if (!(trace_flags & TRACE_ITER_VERBOSE)) {
2868 if (trace_flags & TRACE_ITER_IRQ_INFO)
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);
2873 else
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);
2878 }
2879 }
2880 }
2881
2882 static 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
2890 #ifdef CONFIG_TRACER_MAX_TRACE
2891 static void show_snapshot_main_help(struct seq_file *m)
2892 {
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 }
2900
2901 static 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
2916 static void print_snapshot_help(struct seq_file *m, struct trace_iterator *iter)
2917 {
2918 if (iter->tr->allocated_snapshot)
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");
2924 if (iter->cpu_file == RING_BUFFER_ALL_CPUS)
2925 show_snapshot_main_help(m);
2926 else
2927 show_snapshot_percpu_help(m);
2928 }
2929 #else
2930 /* Should never be called */
2931 static inline void print_snapshot_help(struct seq_file *m, struct trace_iterator *iter) { }
2932 #endif
2933
2934 static int s_show(struct seq_file *m, void *v)
2935 {
2936 struct trace_iterator *iter = v;
2937 int ret;
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");
2943 test_ftrace_alive(m);
2944 }
2945 if (iter->snapshot && trace_empty(iter))
2946 print_snapshot_help(m, iter);
2947 else if (iter->trace && iter->trace->print_header)
2948 iter->trace->print_header(m);
2949 else
2950 trace_default_header(m);
2951
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
2962 } else {
2963 print_trace_line(iter);
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;
2973 }
2974
2975 return 0;
2976 }
2977
2978 /*
2979 * Should be used after trace_array_get(), trace_types_lock
2980 * ensures that i_cdev was already initialized.
2981 */
2982 static 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
2989 static const struct seq_operations tracer_seq_ops = {
2990 .start = s_start,
2991 .next = s_next,
2992 .stop = s_stop,
2993 .show = s_show,
2994 };
2995
2996 static struct trace_iterator *
2997 __tracing_open(struct inode *inode, struct file *file, bool snapshot)
2998 {
2999 struct trace_array *tr = inode->i_private;
3000 struct trace_iterator *iter;
3001 int cpu;
3002
3003 if (tracing_disabled)
3004 return ERR_PTR(-ENODEV);
3005
3006 iter = __seq_open_private(file, &tracer_seq_ops, sizeof(*iter));
3007 if (!iter)
3008 return ERR_PTR(-ENOMEM);
3009
3010 iter->buffer_iter = kzalloc(sizeof(*iter->buffer_iter) * num_possible_cpus(),
3011 GFP_KERNEL);
3012 if (!iter->buffer_iter)
3013 goto release;
3014
3015 /*
3016 * We make a copy of the current tracer to avoid concurrent
3017 * changes on it while we are reading.
3018 */
3019 mutex_lock(&trace_types_lock);
3020 iter->trace = kzalloc(sizeof(*iter->trace), GFP_KERNEL);
3021 if (!iter->trace)
3022 goto fail;
3023
3024 *iter->trace = *tr->current_trace;
3025
3026 if (!zalloc_cpumask_var(&iter->started, GFP_KERNEL))
3027 goto fail;
3028
3029 iter->tr = tr;
3030
3031 #ifdef CONFIG_TRACER_MAX_TRACE
3032 /* Currently only the top directory has a snapshot */
3033 if (tr->current_trace->print_max || snapshot)
3034 iter->trace_buffer = &tr->max_buffer;
3035 else
3036 #endif
3037 iter->trace_buffer = &tr->trace_buffer;
3038 iter->snapshot = snapshot;
3039 iter->pos = -1;
3040 iter->cpu_file = tracing_get_cpu(inode);
3041 mutex_init(&iter->mutex);
3042
3043 /* Notify the tracer early; before we stop tracing. */
3044 if (iter->trace && iter->trace->open)
3045 iter->trace->open(iter);
3046
3047 /* Annotate start of buffers if we had overruns */
3048 if (ring_buffer_overruns(iter->trace_buffer->buffer))
3049 iter->iter_flags |= TRACE_FILE_ANNOTATE;
3050
3051 /* Output in nanoseconds only if we are using a clock in nanoseconds. */
3052 if (trace_clocks[tr->clock_id].in_ns)
3053 iter->iter_flags |= TRACE_FILE_TIME_IN_NS;
3054
3055 /* stop the trace while dumping if we are not opening "snapshot" */
3056 if (!iter->snapshot)
3057 tracing_stop_tr(tr);
3058
3059 if (iter->cpu_file == RING_BUFFER_ALL_CPUS) {
3060 for_each_tracing_cpu(cpu) {
3061 iter->buffer_iter[cpu] =
3062 ring_buffer_read_prepare(iter->trace_buffer->buffer, cpu);
3063 }
3064 ring_buffer_read_prepare_sync();
3065 for_each_tracing_cpu(cpu) {
3066 ring_buffer_read_start(iter->buffer_iter[cpu]);
3067 tracing_iter_reset(iter, cpu);
3068 }
3069 } else {
3070 cpu = iter->cpu_file;
3071 iter->buffer_iter[cpu] =
3072 ring_buffer_read_prepare(iter->trace_buffer->buffer, cpu);
3073 ring_buffer_read_prepare_sync();
3074 ring_buffer_read_start(iter->buffer_iter[cpu]);
3075 tracing_iter_reset(iter, cpu);
3076 }
3077
3078 mutex_unlock(&trace_types_lock);
3079
3080 return iter;
3081
3082 fail:
3083 mutex_unlock(&trace_types_lock);
3084 kfree(iter->trace);
3085 kfree(iter->buffer_iter);
3086 release:
3087 seq_release_private(inode, file);
3088 return ERR_PTR(-ENOMEM);
3089 }
3090
3091 int tracing_open_generic(struct inode *inode, struct file *filp)
3092 {
3093 if (tracing_disabled)
3094 return -ENODEV;
3095
3096 filp->private_data = inode->i_private;
3097 return 0;
3098 }
3099
3100 /*
3101 * Open and update trace_array ref count.
3102 * Must have the current trace_array passed to it.
3103 */
3104 int 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;
3117 }
3118
3119 static int tracing_release(struct inode *inode, struct file *file)
3120 {
3121 struct trace_array *tr = inode->i_private;
3122 struct seq_file *m = file->private_data;
3123 struct trace_iterator *iter;
3124 int cpu;
3125
3126 if (!(file->f_mode & FMODE_READ)) {
3127 trace_array_put(tr);
3128 return 0;
3129 }
3130
3131 /* Writes do not use seq_file */
3132 iter = m->private;
3133 mutex_lock(&trace_types_lock);
3134
3135 for_each_tracing_cpu(cpu) {
3136 if (iter->buffer_iter[cpu])
3137 ring_buffer_read_finish(iter->buffer_iter[cpu]);
3138 }
3139
3140 if (iter->trace && iter->trace->close)
3141 iter->trace->close(iter);
3142
3143 printk(KERN_INFO "[ftrace]end reading trace file\n");
3144 if (!iter->snapshot)
3145 /* reenable tracing if it was previously enabled */
3146 tracing_start_tr(tr);
3147
3148 __trace_array_put(tr);
3149
3150 mutex_unlock(&trace_types_lock);
3151
3152 mutex_destroy(&iter->mutex);
3153 free_cpumask_var(iter->started);
3154 kfree(iter->trace);
3155 kfree(iter->buffer_iter);
3156 seq_release_private(inode, file);
3157
3158 return 0;
3159 }
3160
3161 static 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
3169 static 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
3178 static int tracing_open(struct inode *inode, struct file *file)
3179 {
3180 struct trace_array *tr = inode->i_private;
3181 struct trace_iterator *iter;
3182 int ret = 0;
3183
3184 if (trace_array_get(tr) < 0)
3185 return -ENODEV;
3186
3187 /* If this file was open for write, then erase contents */
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)
3192 tracing_reset_online_cpus(&tr->trace_buffer);
3193 else
3194 tracing_reset(&tr->trace_buffer, cpu);
3195 }
3196
3197 if (file->f_mode & FMODE_READ) {
3198 printk(KERN_INFO "[ftrace]start reading trace file\n");
3199 iter = __tracing_open(inode, file, false);
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 }
3205
3206 if (ret < 0)
3207 trace_array_put(tr);
3208
3209 return ret;
3210 }
3211
3212 static void *
3213 t_next(struct seq_file *m, void *v, loff_t *pos)
3214 {
3215 struct tracer *t = v;
3216
3217 (*pos)++;
3218
3219 if (t)
3220 t = t->next;
3221
3222 return t;
3223 }
3224
3225 static void *t_start(struct seq_file *m, loff_t *pos)
3226 {
3227 struct tracer *t;
3228 loff_t l = 0;
3229
3230 mutex_lock(&trace_types_lock);
3231 for (t = trace_types; t && l < *pos; t = t_next(m, t, &l))
3232 ;
3233
3234 return t;
3235 }
3236
3237 static void t_stop(struct seq_file *m, void *p)
3238 {
3239 mutex_unlock(&trace_types_lock);
3240 }
3241
3242 static 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
3258 static const struct seq_operations show_traces_seq_ops = {
3259 .start = t_start,
3260 .next = t_next,
3261 .stop = t_stop,
3262 .show = t_show,
3263 };
3264
3265 static int show_traces_open(struct inode *inode, struct file *file)
3266 {
3267 if (tracing_disabled)
3268 return -ENODEV;
3269
3270 return seq_open(file, &show_traces_seq_ops);
3271 }
3272
3273 static ssize_t
3274 tracing_write_stub(struct file *filp, const char __user *ubuf,
3275 size_t count, loff_t *ppos)
3276 {
3277 return count;
3278 }
3279
3280 static 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
3288 static const struct file_operations tracing_fops = {
3289 .open = tracing_open,
3290 .read = seq_read,
3291 .write = tracing_write_stub,
3292 .llseek = tracing_seek,
3293 .release = tracing_release,
3294 };
3295
3296 static const struct file_operations show_traces_fops = {
3297 .open = show_traces_open,
3298 .read = seq_read,
3299 .release = seq_release,
3300 .llseek = seq_lseek,
3301 };
3302
3303 /*
3304 * Only trace on a CPU if the bitmask is set:
3305 */
3306 static cpumask_var_t tracing_cpumask;
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 */
3312 static 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 */
3318 static char mask_str[NR_CPUS + 1];
3319
3320 static ssize_t
3321 tracing_cpumask_read(struct file *filp, char __user *ubuf,
3322 size_t count, loff_t *ppos)
3323 {
3324 int len;
3325
3326 mutex_lock(&tracing_cpumask_update_lock);
3327
3328 len = cpumask_scnprintf(mask_str, count, tracing_cpumask);
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
3336 out_err:
3337 mutex_unlock(&tracing_cpumask_update_lock);
3338
3339 return count;
3340 }
3341
3342 static ssize_t
3343 tracing_cpumask_write(struct file *filp, const char __user *ubuf,
3344 size_t count, loff_t *ppos)
3345 {
3346 struct trace_array *tr = filp->private_data;
3347 cpumask_var_t tracing_cpumask_new;
3348 int err, cpu;
3349
3350 if (!alloc_cpumask_var(&tracing_cpumask_new, GFP_KERNEL))
3351 return -ENOMEM;
3352
3353 err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
3354 if (err)
3355 goto err_unlock;
3356
3357 mutex_lock(&tracing_cpumask_update_lock);
3358
3359 local_irq_disable();
3360 arch_spin_lock(&ftrace_max_lock);
3361 for_each_tracing_cpu(cpu) {
3362 /*
3363 * Increase/decrease the disabled counter if we are
3364 * about to flip a bit in the cpumask:
3365 */
3366 if (cpumask_test_cpu(cpu, tracing_cpumask) &&
3367 !cpumask_test_cpu(cpu, tracing_cpumask_new)) {
3368 atomic_inc(&per_cpu_ptr(tr->trace_buffer.data, cpu)->disabled);
3369 ring_buffer_record_disable_cpu(tr->trace_buffer.buffer, cpu);
3370 }
3371 if (!cpumask_test_cpu(cpu, tracing_cpumask) &&
3372 cpumask_test_cpu(cpu, tracing_cpumask_new)) {
3373 atomic_dec(&per_cpu_ptr(tr->trace_buffer.data, cpu)->disabled);
3374 ring_buffer_record_enable_cpu(tr->trace_buffer.buffer, cpu);
3375 }
3376 }
3377 arch_spin_unlock(&ftrace_max_lock);
3378 local_irq_enable();
3379
3380 cpumask_copy(tracing_cpumask, tracing_cpumask_new);
3381
3382 mutex_unlock(&tracing_cpumask_update_lock);
3383 free_cpumask_var(tracing_cpumask_new);
3384
3385 return count;
3386
3387 err_unlock:
3388 free_cpumask_var(tracing_cpumask_new);
3389
3390 return err;
3391 }
3392
3393 static const struct file_operations tracing_cpumask_fops = {
3394 .open = tracing_open_generic,
3395 .read = tracing_cpumask_read,
3396 .write = tracing_cpumask_write,
3397 .llseek = generic_file_llseek,
3398 };
3399
3400 static int tracing_trace_options_show(struct seq_file *m, void *v)
3401 {
3402 struct tracer_opt *trace_opts;
3403 struct trace_array *tr = m->private;
3404 u32 tracer_flags;
3405 int i;
3406
3407 mutex_lock(&trace_types_lock);
3408 tracer_flags = tr->current_trace->flags->val;
3409 trace_opts = tr->current_trace->flags->opts;
3410
3411 for (i = 0; trace_options[i]; i++) {
3412 if (trace_flags & (1 << i))
3413 seq_printf(m, "%s\n", trace_options[i]);
3414 else
3415 seq_printf(m, "no%s\n", trace_options[i]);
3416 }
3417
3418 for (i = 0; trace_opts[i].name; i++) {
3419 if (tracer_flags & trace_opts[i].bit)
3420 seq_printf(m, "%s\n", trace_opts[i].name);
3421 else
3422 seq_printf(m, "no%s\n", trace_opts[i].name);
3423 }
3424 mutex_unlock(&trace_types_lock);
3425
3426 return 0;
3427 }
3428
3429 static int __set_tracer_option(struct tracer *trace,
3430 struct tracer_flags *tracer_flags,
3431 struct tracer_opt *opts, int neg)
3432 {
3433 int ret;
3434
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;
3444 }
3445
3446 /* Try to assign a tracer specific option */
3447 static int set_tracer_option(struct tracer *trace, char *cmp, int neg)
3448 {
3449 struct tracer_flags *tracer_flags = trace->flags;
3450 struct tracer_opt *opts = NULL;
3451 int i;
3452
3453 for (i = 0; tracer_flags->opts[i].name; i++) {
3454 opts = &tracer_flags->opts[i];
3455
3456 if (strcmp(cmp, opts->name) == 0)
3457 return __set_tracer_option(trace, trace->flags,
3458 opts, neg);
3459 }
3460
3461 return -EINVAL;
3462 }
3463
3464 /* Some tracers require overwrite to stay enabled */
3465 int 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
3473 int set_tracer_flag(struct trace_array *tr, unsigned int mask, int enabled)
3474 {
3475 /* do nothing if flag is already set */
3476 if (!!(trace_flags & mask) == !!enabled)
3477 return 0;
3478
3479 /* Give the tracer a chance to approve the change */
3480 if (tr->current_trace->flag_changed)
3481 if (tr->current_trace->flag_changed(tr->current_trace, mask, !!enabled))
3482 return -EINVAL;
3483
3484 if (enabled)
3485 trace_flags |= mask;
3486 else
3487 trace_flags &= ~mask;
3488
3489 if (mask == TRACE_ITER_RECORD_CMD)
3490 trace_event_enable_cmd_record(enabled);
3491
3492 if (mask == TRACE_ITER_OVERWRITE) {
3493 ring_buffer_change_overwrite(tr->trace_buffer.buffer, enabled);
3494 #ifdef CONFIG_TRACER_MAX_TRACE
3495 ring_buffer_change_overwrite(tr->max_buffer.buffer, enabled);
3496 #endif
3497 }
3498
3499 if (mask == TRACE_ITER_PRINTK)
3500 trace_printk_start_stop_comm(enabled);
3501
3502 return 0;
3503 }
3504
3505 static int trace_set_options(struct trace_array *tr, char *option)
3506 {
3507 char *cmp;
3508 int neg = 0;
3509 int ret = -ENODEV;
3510 int i;
3511
3512 cmp = strstrip(option);
3513
3514 if (strncmp(cmp, "no", 2) == 0) {
3515 neg = 1;
3516 cmp += 2;
3517 }
3518
3519 mutex_lock(&trace_types_lock);
3520
3521 for (i = 0; trace_options[i]; i++) {
3522 if (strcmp(cmp, trace_options[i]) == 0) {
3523 ret = set_tracer_flag(tr, 1 << i, !neg);
3524 break;
3525 }
3526 }
3527
3528 /* If no option could be set, test the specific tracer options */
3529 if (!trace_options[i])
3530 ret = set_tracer_option(tr->current_trace, cmp, neg);
3531
3532 mutex_unlock(&trace_types_lock);
3533
3534 return ret;
3535 }
3536
3537 static ssize_t
3538 tracing_trace_options_write(struct file *filp, const char __user *ubuf,
3539 size_t cnt, loff_t *ppos)
3540 {
3541 struct seq_file *m = filp->private_data;
3542 struct trace_array *tr = m->private;
3543 char buf[64];
3544 int ret;
3545
3546 if (cnt >= sizeof(buf))
3547 return -EINVAL;
3548
3549 if (copy_from_user(&buf, ubuf, cnt))
3550 return -EFAULT;
3551
3552 buf[cnt] = 0;
3553
3554 ret = trace_set_options(tr, buf);
3555 if (ret < 0)
3556 return ret;
3557
3558 *ppos += cnt;
3559
3560 return cnt;
3561 }
3562
3563 static int tracing_trace_options_open(struct inode *inode, struct file *file)
3564 {
3565 struct trace_array *tr = inode->i_private;
3566 int ret;
3567
3568 if (tracing_disabled)
3569 return -ENODEV;
3570
3571 if (trace_array_get(tr) < 0)
3572 return -ENODEV;
3573
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;
3579 }
3580
3581 static const struct file_operations tracing_iter_fops = {
3582 .open = tracing_trace_options_open,
3583 .read = seq_read,
3584 .llseek = seq_lseek,
3585 .release = tracing_single_release_tr,
3586 .write = tracing_trace_options_write,
3587 };
3588
3589 static const char readme_msg[] =
3590 "tracing mini-HOWTO:\n\n"
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 */
3669 ;
3670
3671 static ssize_t
3672 tracing_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
3679 static const struct file_operations tracing_readme_fops = {
3680 .open = tracing_open_generic,
3681 .read = tracing_readme_read,
3682 .llseek = generic_file_llseek,
3683 };
3684
3685 static ssize_t
3686 tracing_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
3730 static const struct file_operations tracing_saved_cmdlines_fops = {
3731 .open = tracing_open_generic,
3732 .read = tracing_saved_cmdlines_read,
3733 .llseek = generic_file_llseek,
3734 };
3735
3736 static ssize_t
3737 tracing_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
3774 static const struct file_operations tracing_saved_tgids_fops = {
3775 .open = tracing_open_generic,
3776 .read = tracing_saved_tgids_read,
3777 .llseek = generic_file_llseek,
3778 };
3779
3780 static ssize_t
3781 tracing_set_trace_read(struct file *filp, char __user *ubuf,
3782 size_t cnt, loff_t *ppos)
3783 {
3784 struct trace_array *tr = filp->private_data;
3785 char buf[MAX_TRACER_SIZE+2];
3786 int r;
3787
3788 mutex_lock(&trace_types_lock);
3789 r = sprintf(buf, "%s\n", tr->current_trace->name);
3790 mutex_unlock(&trace_types_lock);
3791
3792 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3793 }
3794
3795 int tracer_init(struct tracer *t, struct trace_array *tr)
3796 {
3797 tracing_reset_online_cpus(&tr->trace_buffer);
3798 return t->init(tr);
3799 }
3800
3801 static void set_buffer_entries(struct trace_buffer *buf, unsigned long val)
3802 {
3803 int cpu;
3804
3805 for_each_tracing_cpu(cpu)
3806 per_cpu_ptr(buf->data, cpu)->entries = val;
3807 }
3808
3809 #ifdef CONFIG_TRACER_MAX_TRACE
3810 /* resize @tr's buffer to the size of @size_tr's entries */
3811 static int resize_buffer_duplicate_size(struct trace_buffer *trace_buf,
3812 struct trace_buffer *size_buf, int cpu_id)
3813 {
3814 int cpu, ret = 0;
3815
3816 if (cpu_id == RING_BUFFER_ALL_CPUS) {
3817 for_each_tracing_cpu(cpu) {
3818 ret = ring_buffer_resize(trace_buf->buffer,
3819 per_cpu_ptr(size_buf->data, cpu)->entries, cpu);
3820 if (ret < 0)
3821 break;
3822 per_cpu_ptr(trace_buf->data, cpu)->entries =
3823 per_cpu_ptr(size_buf->data, cpu)->entries;
3824 }
3825 } else {
3826 ret = ring_buffer_resize(trace_buf->buffer,
3827 per_cpu_ptr(size_buf->data, cpu_id)->entries, cpu_id);
3828 if (ret == 0)
3829 per_cpu_ptr(trace_buf->data, cpu_id)->entries =
3830 per_cpu_ptr(size_buf->data, cpu_id)->entries;
3831 }
3832
3833 return ret;
3834 }
3835 #endif /* CONFIG_TRACER_MAX_TRACE */
3836
3837 static int __tracing_resize_ring_buffer(struct trace_array *tr,
3838 unsigned long size, int cpu)
3839 {
3840 int ret;
3841
3842 /*
3843 * If kernel or user changes the size of the ring buffer
3844 * we use the size that was given, and we can forget about
3845 * expanding it later.
3846 */
3847 ring_buffer_expanded = true;
3848
3849 /* May be called before buffers are initialized */
3850 if (!tr->trace_buffer.buffer)
3851 return 0;
3852
3853 ret = ring_buffer_resize(tr->trace_buffer.buffer, size, cpu);
3854 if (ret < 0)
3855 return ret;
3856
3857 #ifdef CONFIG_TRACER_MAX_TRACE
3858 if (!(tr->flags & TRACE_ARRAY_FL_GLOBAL) ||
3859 !tr->current_trace->use_max_tr)
3860 goto out;
3861
3862 ret = ring_buffer_resize(tr->max_buffer.buffer, size, cpu);
3863 if (ret < 0) {
3864 int r = resize_buffer_duplicate_size(&tr->trace_buffer,
3865 &tr->trace_buffer, cpu);
3866 if (r < 0) {
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 */
3881 WARN_ON(1);
3882 tracing_disabled = 1;
3883 }
3884 return ret;
3885 }
3886
3887 if (cpu == RING_BUFFER_ALL_CPUS)
3888 set_buffer_entries(&tr->max_buffer, size);
3889 else
3890 per_cpu_ptr(tr->max_buffer.data, cpu)->entries = size;
3891
3892 out:
3893 #endif /* CONFIG_TRACER_MAX_TRACE */
3894
3895 if (cpu == RING_BUFFER_ALL_CPUS)
3896 set_buffer_entries(&tr->trace_buffer, size);
3897 else
3898 per_cpu_ptr(tr->trace_buffer.data, cpu)->entries = size;
3899
3900 return ret;
3901 }
3902
3903 ssize_t tracing_resize_ring_buffer(struct trace_array *tr,
3904 unsigned long size, int cpu_id)
3905 {
3906 int ret = size;
3907
3908 mutex_lock(&trace_types_lock);
3909
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 }
3917
3918 ret = __tracing_resize_ring_buffer(tr, size, cpu_id);
3919 if (ret < 0)
3920 ret = -ENOMEM;
3921
3922 out:
3923 mutex_unlock(&trace_types_lock);
3924
3925 return ret;
3926 }
3927
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 */
3938 int tracing_update_buffers(void)
3939 {
3940 int ret = 0;
3941 #ifdef CONFIG_MTK_FTRACE_DEFAULT_ENABLE
3942 int i = 0;
3943 #endif
3944
3945 mutex_lock(&trace_types_lock);
3946 if (!ring_buffer_expanded)
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
3964 ret = __tracing_resize_ring_buffer(&global_trace, trace_buf_size,
3965 RING_BUFFER_ALL_CPUS);
3966 #endif
3967 mutex_unlock(&trace_types_lock);
3968
3969 return ret;
3970 }
3971
3972 struct trace_option_dentry;
3973
3974 static struct trace_option_dentry *
3975 create_trace_option_files(struct trace_array *tr, struct tracer *tracer);
3976
3977 static void
3978 destroy_trace_option_files(struct trace_option_dentry *topts);
3979
3980 static int tracing_set_tracer(const char *buf)
3981 {
3982 static struct trace_option_dentry *topts;
3983 struct trace_array *tr = &global_trace;
3984 struct tracer *t;
3985 #ifdef CONFIG_TRACER_MAX_TRACE
3986 bool had_max_tr;
3987 #endif
3988 int ret = 0;
3989
3990 mutex_lock(&trace_types_lock);
3991
3992 if (!ring_buffer_expanded) {
3993 ret = __tracing_resize_ring_buffer(tr, trace_buf_size,
3994 RING_BUFFER_ALL_CPUS);
3995 if (ret < 0)
3996 goto out;
3997 ret = 0;
3998 }
3999
4000 for (t = trace_types; t; t = t->next) {
4001 if (strcmp(t->name, buf) == 0)
4002 break;
4003 }
4004 if (!t) {
4005 ret = -EINVAL;
4006 goto out;
4007 }
4008 if (t == tr->current_trace)
4009 goto out;
4010
4011 trace_branch_disable();
4012
4013 tr->current_trace->enabled = false;
4014
4015 if (tr->current_trace->reset)
4016 tr->current_trace->reset(tr);
4017
4018 /* Current trace needs to be nop_trace before synchronize_sched */
4019 tr->current_trace = &nop_trace;
4020
4021 #ifdef CONFIG_TRACER_MAX_TRACE
4022 had_max_tr = tr->allocated_snapshot;
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();
4033 free_snapshot(tr);
4034 }
4035 #endif
4036 destroy_trace_option_files(topts);
4037
4038 topts = create_trace_option_files(tr, t);
4039
4040 #ifdef CONFIG_TRACER_MAX_TRACE
4041 if (t->use_max_tr && !had_max_tr) {
4042 ret = alloc_snapshot(tr);
4043 if (ret < 0)
4044 goto out;
4045 }
4046 #endif
4047
4048 if (t->init) {
4049 ret = tracer_init(t, tr);
4050 if (ret)
4051 goto out;
4052 }
4053
4054 tr->current_trace = t;
4055 tr->current_trace->enabled = true;
4056 trace_branch_enable(tr);
4057 out:
4058 mutex_unlock(&trace_types_lock);
4059
4060 return ret;
4061 }
4062
4063 static ssize_t
4064 tracing_set_trace_write(struct file *filp, const char __user *ubuf,
4065 size_t cnt, loff_t *ppos)
4066 {
4067 char buf[MAX_TRACER_SIZE+1];
4068 int i;
4069 size_t ret;
4070 int err;
4071
4072 ret = cnt;
4073
4074 if (cnt > MAX_TRACER_SIZE)
4075 cnt = MAX_TRACER_SIZE;
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
4086 printk(KERN_INFO "[ftrace]set current_tracer to '%s'\n", buf);
4087 err = tracing_set_tracer(buf);
4088 if (err)
4089 return err;
4090
4091 *ppos += ret;
4092
4093 return ret;
4094 }
4095
4096 static ssize_t
4097 tracing_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
4104 r = snprintf(buf, sizeof(buf), "%ld\n",
4105 *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
4106 if (r > sizeof(buf))
4107 r = sizeof(buf);
4108 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
4109 }
4110
4111 static ssize_t
4112 tracing_max_lat_write(struct file *filp, const char __user *ubuf,
4113 size_t cnt, loff_t *ppos)
4114 {
4115 unsigned long *ptr = filp->private_data;
4116 unsigned long val;
4117 int ret;
4118
4119 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
4120 if (ret)
4121 return ret;
4122
4123 *ptr = val * 1000;
4124
4125 return cnt;
4126 }
4127
4128 static int tracing_open_pipe(struct inode *inode, struct file *filp)
4129 {
4130 struct trace_array *tr = inode->i_private;
4131 struct trace_iterator *iter;
4132 int ret = 0;
4133
4134 if (tracing_disabled)
4135 return -ENODEV;
4136
4137 if (trace_array_get(tr) < 0)
4138 return -ENODEV;
4139
4140 mutex_lock(&trace_types_lock);
4141
4142 /* create a buffer to store the information to pass to userspace */
4143 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
4144 if (!iter) {
4145 ret = -ENOMEM;
4146 __trace_array_put(tr);
4147 goto out;
4148 }
4149
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 }
4159 *iter->trace = *tr->current_trace;
4160
4161 if (!alloc_cpumask_var(&iter->started, GFP_KERNEL)) {
4162 ret = -ENOMEM;
4163 goto fail;
4164 }
4165
4166 /* trace pipe does not show start of buffer */
4167 cpumask_setall(iter->started);
4168
4169 if (trace_flags & TRACE_ITER_LATENCY_FMT)
4170 iter->iter_flags |= TRACE_FILE_LAT_FMT;
4171
4172 /* Output in nanoseconds only if we are using a clock in nanoseconds. */
4173 if (trace_clocks[tr->clock_id].in_ns)
4174 iter->iter_flags |= TRACE_FILE_TIME_IN_NS;
4175
4176 iter->tr = tr;
4177 iter->trace_buffer = &tr->trace_buffer;
4178 iter->cpu_file = tracing_get_cpu(inode);
4179 mutex_init(&iter->mutex);
4180 filp->private_data = iter;
4181
4182 if (iter->trace->pipe_open)
4183 iter->trace->pipe_open(iter);
4184
4185 nonseekable_open(inode, filp);
4186 out:
4187 mutex_unlock(&trace_types_lock);
4188 return ret;
4189
4190 fail:
4191 kfree(iter->trace);
4192 kfree(iter);
4193 __trace_array_put(tr);
4194 mutex_unlock(&trace_types_lock);
4195 return ret;
4196 }
4197
4198 static int tracing_release_pipe(struct inode *inode, struct file *file)
4199 {
4200 struct trace_iterator *iter = file->private_data;
4201 struct trace_array *tr = inode->i_private;
4202
4203 mutex_lock(&trace_types_lock);
4204
4205 if (iter->trace->pipe_close)
4206 iter->trace->pipe_close(iter);
4207
4208 mutex_unlock(&trace_types_lock);
4209
4210 free_cpumask_var(iter->started);
4211 mutex_destroy(&iter->mutex);
4212 kfree(iter->trace);
4213 kfree(iter);
4214
4215 trace_array_put(tr);
4216
4217 return 0;
4218 }
4219
4220 static unsigned int
4221 trace_poll(struct trace_iterator *iter, struct file *filp, poll_table *poll_table)
4222 {
4223 /* Iterators are static, they should be filled or empty */
4224 if (trace_buffer_iter(iter, iter->cpu_file))
4225 return POLLIN | POLLRDNORM;
4226
4227 if (trace_flags & TRACE_ITER_BLOCK)
4228 /*
4229 * Always select as readable when in blocking mode
4230 */
4231 return POLLIN | POLLRDNORM;
4232 else
4233 return ring_buffer_poll_wait(iter->trace_buffer->buffer, iter->cpu_file,
4234 filp, poll_table);
4235 }
4236
4237 static unsigned int
4238 tracing_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);
4243 }
4244
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 */
4257 int poll_wait_pipe(struct trace_iterator *iter)
4258 {
4259 set_current_state(TASK_INTERRUPTIBLE);
4260 /* sleep for 100 msecs, and try again. */
4261 schedule_timeout(HZ / 10);
4262 return 0;
4263 }
4264
4265 /* Must be called with trace_types_lock mutex held. */
4266 static int tracing_wait_pipe(struct file *filp)
4267 {
4268 struct trace_iterator *iter = filp->private_data;
4269 int ret;
4270
4271 while (trace_empty(iter)) {
4272
4273 if ((filp->f_flags & O_NONBLOCK)) {
4274 return -EAGAIN;
4275 }
4276
4277 mutex_unlock(&iter->mutex);
4278
4279 ret = iter->trace->wait_pipe(iter);
4280
4281 mutex_lock(&iter->mutex);
4282
4283 if (ret)
4284 return ret;
4285
4286 if (signal_pending(current))
4287 return -EINTR;
4288
4289 /*
4290 * We block until we read something and tracing is disabled.
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 */
4298 if (!tracing_is_on() && iter->pos)
4299 break;
4300 }
4301
4302 return 1;
4303 }
4304
4305 /*
4306 * Consumer reader.
4307 */
4308 static ssize_t
4309 tracing_read_pipe(struct file *filp, char __user *ubuf,
4310 size_t cnt, loff_t *ppos)
4311 {
4312 struct trace_iterator *iter = filp->private_data;
4313 struct trace_array *tr = iter->tr;
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
4321 trace_seq_init(&iter->seq);
4322
4323 /* copy the tracer to avoid using a global lock all around */
4324 mutex_lock(&trace_types_lock);
4325 if (unlikely(iter->trace->name != tr->current_trace->name))
4326 *iter->trace = *tr->current_trace;
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);
4335 if (iter->trace->read) {
4336 sret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
4337 if (sret)
4338 goto out;
4339 }
4340
4341 waitagain:
4342 sret = tracing_wait_pipe(filp);
4343 if (sret <= 0)
4344 goto out;
4345
4346 /* stop when tracing is finished */
4347 if (trace_empty(iter)) {
4348 sret = 0;
4349 goto out;
4350 }
4351
4352 if (cnt >= PAGE_SIZE)
4353 cnt = PAGE_SIZE - 1;
4354
4355 /* reset all but tr, trace, and overruns */
4356 memset(&iter->seq, 0,
4357 sizeof(struct trace_iterator) -
4358 offsetof(struct trace_iterator, seq));
4359 cpumask_clear(iter->started);
4360 iter->pos = -1;
4361
4362 trace_event_read_lock();
4363 trace_access_lock(iter->cpu_file);
4364 while (trace_find_next_entry_inc(iter) != NULL) {
4365 enum print_line_t ret;
4366 int len = iter->seq.len;
4367
4368 ret = print_trace_line(iter);
4369 if (ret == TRACE_TYPE_PARTIAL_LINE) {
4370 /* don't print partial lines */
4371 iter->seq.len = len;
4372 break;
4373 }
4374 if (ret != TRACE_TYPE_NO_CONSUME)
4375 trace_consume(iter);
4376
4377 if (iter->seq.len >= cnt)
4378 break;
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);
4387 }
4388 trace_access_unlock(iter->cpu_file);
4389 trace_event_read_unlock();
4390
4391 /* Now copy what we have to the user */
4392 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
4393 if (iter->seq.readpos >= iter->seq.len)
4394 trace_seq_init(&iter->seq);
4395
4396 /*
4397 * If there was nothing to send to user, in spite of consuming trace
4398 * entries, go back to wait for more entries.
4399 */
4400 if (sret == -EBUSY)
4401 goto waitagain;
4402
4403 out:
4404 mutex_unlock(&iter->mutex);
4405
4406 return sret;
4407 }
4408
4409 static void tracing_pipe_buf_release(struct pipe_inode_info *pipe,
4410 struct pipe_buffer *buf)
4411 {
4412 __free_page(buf->page);
4413 }
4414
4415 static void tracing_spd_release_pipe(struct splice_pipe_desc *spd,
4416 unsigned int idx)
4417 {
4418 __free_page(spd->pages[idx]);
4419 }
4420
4421 static const struct pipe_buf_operations tracing_pipe_buf_ops = {
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,
4429 };
4430
4431 static size_t
4432 tracing_fill_pipe_page(size_t rem, struct trace_iterator *iter)
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
4452 if (ret != TRACE_TYPE_NO_CONSUME)
4453 trace_consume(iter);
4454 rem -= count;
4455 if (!trace_find_next_entry_inc(iter)) {
4456 rem = 0;
4457 iter->ent = NULL;
4458 break;
4459 }
4460 }
4461
4462 return rem;
4463 }
4464
4465 static 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 {
4471 struct page *pages_def[PIPE_DEF_BUFFERS];
4472 struct partial_page partial_def[PIPE_DEF_BUFFERS];
4473 struct trace_iterator *iter = filp->private_data;
4474 struct splice_pipe_desc spd = {
4475 .pages = pages_def,
4476 .partial = partial_def,
4477 .nr_pages = 0, /* This gets updated below. */
4478 .nr_pages_max = PIPE_DEF_BUFFERS,
4479 .flags = flags,
4480 .ops = &tracing_pipe_buf_ops,
4481 .spd_release = tracing_spd_release_pipe,
4482 };
4483 struct trace_array *tr = iter->tr;
4484 ssize_t ret;
4485 size_t rem;
4486 unsigned int i;
4487
4488 if (splice_grow_spd(pipe, &spd))
4489 return -ENOMEM;
4490
4491 /* copy the tracer to avoid using a global lock all around */
4492 mutex_lock(&trace_types_lock);
4493 if (unlikely(iter->trace->name != tr->current_trace->name))
4494 *iter->trace = *tr->current_trace;
4495 mutex_unlock(&trace_types_lock);
4496
4497 mutex_lock(&iter->mutex);
4498
4499 if (iter->trace->splice_read) {
4500 ret = iter->trace->splice_read(iter, filp,
4501 ppos, pipe, len, flags);
4502 if (ret)
4503 goto out_err;
4504 }
4505
4506 ret = tracing_wait_pipe(filp);
4507 if (ret <= 0)
4508 goto out_err;
4509
4510 if (!iter->ent && !trace_find_next_entry_inc(iter)) {
4511 ret = -EFAULT;
4512 goto out_err;
4513 }
4514
4515 trace_event_read_lock();
4516 trace_access_lock(iter->cpu_file);
4517
4518 /* Fill as many pages as possible. */
4519 for (i = 0, rem = len; i < pipe->buffers && rem; i++) {
4520 spd.pages[i] = alloc_page(GFP_KERNEL);
4521 if (!spd.pages[i])
4522 break;
4523
4524 rem = tracing_fill_pipe_page(rem, iter);
4525
4526 /* Copy the data into the page, so we can start over. */
4527 ret = trace_seq_to_buffer(&iter->seq,
4528 page_address(spd.pages[i]),
4529 iter->seq.len);
4530 if (ret < 0) {
4531 __free_page(spd.pages[i]);
4532 break;
4533 }
4534 spd.partial[i].offset = 0;
4535 spd.partial[i].len = iter->seq.len;
4536
4537 trace_seq_init(&iter->seq);
4538 }
4539
4540 trace_access_unlock(iter->cpu_file);
4541 trace_event_read_unlock();
4542 mutex_unlock(&iter->mutex);
4543
4544 spd.nr_pages = i;
4545
4546 ret = splice_to_pipe(pipe, &spd);
4547 out:
4548 splice_shrink_spd(&spd);
4549 return ret;
4550
4551 out_err:
4552 mutex_unlock(&iter->mutex);
4553 goto out;
4554 }
4555
4556 static ssize_t
4557 tracing_entries_read(struct file *filp, char __user *ubuf,
4558 size_t cnt, loff_t *ppos)
4559 {
4560 struct inode *inode = file_inode(filp);
4561 struct trace_array *tr = inode->i_private;
4562 int cpu = tracing_get_cpu(inode);
4563 char buf[64];
4564 int r = 0;
4565 ssize_t ret;
4566
4567 mutex_lock(&trace_types_lock);
4568
4569 if (cpu == RING_BUFFER_ALL_CPUS) {
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)
4579 size = per_cpu_ptr(tr->trace_buffer.data, cpu)->entries;
4580 if (size != per_cpu_ptr(tr->trace_buffer.data, cpu)->entries) {
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
4596 r = sprintf(buf, "%lu\n", per_cpu_ptr(tr->trace_buffer.data, cpu)->entries >> 10);
4597
4598 mutex_unlock(&trace_types_lock);
4599
4600 ret = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
4601 return ret;
4602 }
4603
4604 static ssize_t
4605 tracing_entries_write(struct file *filp, const char __user *ubuf,
4606 size_t cnt, loff_t *ppos)
4607 {
4608 struct inode *inode = file_inode(filp);
4609 struct trace_array *tr = inode->i_private;
4610 unsigned long val;
4611 int do_drop_cache = 0;
4612 int ret;
4613
4614 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
4615 if (ret)
4616 return ret;
4617
4618 /* must have at least 1 entry */
4619 if (!val)
4620 return -EINVAL;
4621
4622 /* value is in KB */
4623 val <<= 10;
4624 resize_ring_buffer:
4625 ret = tracing_resize_ring_buffer(tr, val, tracing_get_cpu(inode));
4626 if (ret == -ENOMEM && !do_drop_cache) {
4627 do_drop_cache++;
4628 drop_pagecache();
4629 goto resize_ring_buffer;
4630 } else if (ret < 0)
4631 return ret;
4632
4633 *ppos += cnt;
4634
4635 return cnt;
4636 }
4637
4638 static ssize_t
4639 tracing_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) {
4649 size += per_cpu_ptr(tr->trace_buffer.data, cpu)->entries >> 10;
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
4662 static ssize_t
4663 tracing_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;
4672
4673 return cnt;
4674 }
4675
4676 static int
4677 tracing_free_buffer_release(struct inode *inode, struct file *filp)
4678 {
4679 struct trace_array *tr = inode->i_private;
4680
4681 /* disable tracing ? */
4682 if (trace_flags & TRACE_ITER_STOP_ON_FREE)
4683 tracer_tracing_off(tr);
4684 /* resize the ring buffer to 0 */
4685 tracing_resize_ring_buffer(tr, 0, RING_BUFFER_ALL_CPUS);
4686
4687 trace_array_put(tr);
4688
4689 return 0;
4690 }
4691
4692 static ssize_t
4693 tracing_mark_write(struct file *filp, const char __user *ubuf,
4694 size_t cnt, loff_t *fpos)
4695 {
4696 unsigned long addr = (unsigned long)ubuf;
4697 struct trace_array *tr = filp->private_data;
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];
4703 void *map_page[2];
4704 int nr_pages = 1;
4705 ssize_t written;
4706 int offset;
4707 int size;
4708 int len;
4709 int ret;
4710 int i;
4711
4712 if (tracing_disabled)
4713 return -EINVAL;
4714
4715 if (!(trace_flags & TRACE_ITER_MARKERS))
4716 return -EINVAL;
4717
4718 if (cnt > TRACE_BUF_SIZE)
4719 cnt = TRACE_BUF_SIZE;
4720
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);
4736
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;
4750 }
4751
4752 for (i = 0; i < nr_pages; i++)
4753 map_page[i] = kmap_atomic(pages[i]);
4754
4755 local_save_flags(irq_flags);
4756 size = sizeof(*entry) + cnt + 2; /* possible \n added */
4757 buffer = tr->trace_buffer.buffer;
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;
4764 }
4765
4766 entry = ring_buffer_event_data(event);
4767 entry->ip = _THIS_IP_;
4768
4769 if (nr_pages == 2) {
4770 len = PAGE_SIZE - offset;
4771 memcpy(&entry->buf, map_page[0] + offset, len);
4772 memcpy(&entry->buf[len], map_page[1], cnt - len);
4773 } else
4774 memcpy(&entry->buf, map_page[0] + offset, cnt);
4775
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
4782 __buffer_unlock_commit(buffer, event);
4783
4784 written = cnt;
4785
4786 *fpos += written;
4787
4788 out_unlock:
4789 for (i = nr_pages - 1; i >= 0; i--) {
4790 kunmap_atomic(map_page[i]);
4791 put_page(pages[i]);
4792 }
4793 out:
4794 return written;
4795 }
4796
4797 static int tracing_clock_show(struct seq_file *m, void *v)
4798 {
4799 struct trace_array *tr = m->private;
4800 int i;
4801
4802 for (i = 0; i < ARRAY_SIZE(trace_clocks); i++)
4803 seq_printf(m,
4804 "%s%s%s%s", i ? " " : "",
4805 i == tr->clock_id ? "[" : "", trace_clocks[i].name,
4806 i == tr->clock_id ? "]" : "");
4807 seq_putc(m, '\n');
4808
4809 return 0;
4810 }
4811
4812 static ssize_t tracing_clock_write(struct file *filp, const char __user *ubuf,
4813 size_t cnt, loff_t *fpos)
4814 {
4815 struct seq_file *m = filp->private_data;
4816 struct trace_array *tr = m->private;
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
4838 mutex_lock(&trace_types_lock);
4839
4840 tr->clock_id = i;
4841
4842 ring_buffer_set_clock(tr->trace_buffer.buffer, trace_clocks[i].func);
4843
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 */
4848 tracing_reset_online_cpus(&tr->trace_buffer);
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);
4853 tracing_reset_online_cpus(&tr->max_buffer);
4854 #endif
4855
4856 mutex_unlock(&trace_types_lock);
4857
4858 *fpos += cnt;
4859
4860 return cnt;
4861 }
4862
4863 static int tracing_clock_open(struct inode *inode, struct file *file)
4864 {
4865 struct trace_array *tr = inode->i_private;
4866 int ret;
4867
4868 if (tracing_disabled)
4869 return -ENODEV;
4870
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;
4879 }
4880
4881 struct ftrace_buffer_info {
4882 struct trace_iterator iter;
4883 void *spare;
4884 unsigned int read;
4885 };
4886
4887 #ifdef CONFIG_TRACER_SNAPSHOT
4888 static int tracing_snapshot_open(struct inode *inode, struct file *file)
4889 {
4890 struct trace_array *tr = inode->i_private;
4891 struct trace_iterator *iter;
4892 struct seq_file *m;
4893 int ret = 0;
4894
4895 if (trace_array_get(tr) < 0)
4896 return -ENODEV;
4897
4898 if (file->f_mode & FMODE_READ) {
4899 iter = __tracing_open(inode, file, true);
4900 if (IS_ERR(iter))
4901 ret = PTR_ERR(iter);
4902 } else {
4903 /* Writes still need the seq_file to hold the private data */
4904 ret = -ENOMEM;
4905 m = kzalloc(sizeof(*m), GFP_KERNEL);
4906 if (!m)
4907 goto out;
4908 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
4909 if (!iter) {
4910 kfree(m);
4911 goto out;
4912 }
4913 ret = 0;
4914
4915 iter->tr = tr;
4916 iter->trace_buffer = &tr->max_buffer;
4917 iter->cpu_file = tracing_get_cpu(inode);
4918 m->private = iter;
4919 file->private_data = m;
4920 }
4921 out:
4922 if (ret < 0)
4923 trace_array_put(tr);
4924
4925 return ret;
4926 }
4927
4928 static ssize_t
4929 tracing_snapshot_write(struct file *filp, const char __user *ubuf, size_t cnt,
4930 loff_t *ppos)
4931 {
4932 struct seq_file *m = filp->private_data;
4933 struct trace_iterator *iter = m->private;
4934 struct trace_array *tr = iter->tr;
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
4948 if (tr->current_trace->use_max_tr) {
4949 ret = -EBUSY;
4950 goto out;
4951 }
4952
4953 switch (val) {
4954 case 0:
4955 if (iter->cpu_file != RING_BUFFER_ALL_CPUS) {
4956 ret = -EINVAL;
4957 break;
4958 }
4959 if (tr->allocated_snapshot)
4960 free_snapshot(tr);
4961 break;
4962 case 1:
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
4970 if (!tr->allocated_snapshot) {
4971 ret = alloc_snapshot(tr);
4972 if (ret < 0)
4973 break;
4974 }
4975 local_irq_disable();
4976 /* Now, we're going to swap */
4977 if (iter->cpu_file == RING_BUFFER_ALL_CPUS)
4978 update_max_tr(tr, current, smp_processor_id());
4979 else
4980 update_max_tr_single(tr, current, iter->cpu_file);
4981 local_irq_enable();
4982 break;
4983 default:
4984 if (tr->allocated_snapshot) {
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 }
4990 break;
4991 }
4992
4993 if (ret >= 0) {
4994 *ppos += cnt;
4995 ret = cnt;
4996 }
4997 out:
4998 mutex_unlock(&trace_types_lock);
4999 return ret;
5000 }
5001
5002 static int tracing_snapshot_release(struct inode *inode, struct file *file)
5003 {
5004 struct seq_file *m = file->private_data;
5005 int ret;
5006
5007 ret = tracing_release(inode, file);
5008
5009 if (file->f_mode & FMODE_READ)
5010 return ret;
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
5020 static int tracing_buffers_open(struct inode *inode, struct file *filp);
5021 static ssize_t tracing_buffers_read(struct file *filp, char __user *ubuf,
5022 size_t count, loff_t *ppos);
5023 static int tracing_buffers_release(struct inode *inode, struct file *file);
5024 static 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
5027 static 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
5049 #endif /* CONFIG_TRACER_SNAPSHOT */
5050
5051
5052 static const struct file_operations tracing_max_lat_fops = {
5053 .open = tracing_open_generic,
5054 .read = tracing_max_lat_read,
5055 .write = tracing_max_lat_write,
5056 .llseek = generic_file_llseek,
5057 };
5058
5059 static const struct file_operations set_tracer_fops = {
5060 .open = tracing_open_generic,
5061 .read = tracing_set_trace_read,
5062 .write = tracing_set_trace_write,
5063 .llseek = generic_file_llseek,
5064 };
5065
5066 static const struct file_operations tracing_pipe_fops = {
5067 .open = tracing_open_pipe,
5068 .poll = tracing_poll_pipe,
5069 .read = tracing_read_pipe,
5070 .splice_read = tracing_splice_read_pipe,
5071 .release = tracing_release_pipe,
5072 .llseek = no_llseek,
5073 };
5074
5075 static const struct file_operations tracing_entries_fops = {
5076 .open = tracing_open_generic_tr,
5077 .read = tracing_entries_read,
5078 .write = tracing_entries_write,
5079 .llseek = generic_file_llseek,
5080 .release = tracing_release_generic_tr,
5081 };
5082
5083 static const struct file_operations tracing_total_entries_fops = {
5084 .open = tracing_open_generic_tr,
5085 .read = tracing_total_entries_read,
5086 .llseek = generic_file_llseek,
5087 .release = tracing_release_generic_tr,
5088 };
5089
5090 static const struct file_operations tracing_free_buffer_fops = {
5091 .open = tracing_open_generic_tr,
5092 .write = tracing_free_buffer_write,
5093 .release = tracing_free_buffer_release,
5094 };
5095
5096 static const struct file_operations tracing_mark_fops = {
5097 .open = tracing_open_generic_tr,
5098 .write = tracing_mark_write,
5099 .llseek = generic_file_llseek,
5100 .release = tracing_release_generic_tr,
5101 };
5102
5103 static const struct file_operations trace_clock_fops = {
5104 .open = tracing_clock_open,
5105 .read = seq_read,
5106 .llseek = seq_lseek,
5107 .release = tracing_single_release_tr,
5108 .write = tracing_clock_write,
5109 };
5110
5111 #ifdef CONFIG_TRACER_SNAPSHOT
5112 static const struct file_operations snapshot_fops = {
5113 .open = tracing_snapshot_open,
5114 .read = seq_read,
5115 .write = tracing_snapshot_write,
5116 .llseek = tracing_seek,
5117 .release = tracing_snapshot_release,
5118 };
5119
5120 static 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,
5126 };
5127
5128 #endif /* CONFIG_TRACER_SNAPSHOT */
5129
5130 static int tracing_buffers_open(struct inode *inode, struct file *filp)
5131 {
5132 struct trace_array *tr = inode->i_private;
5133 struct ftrace_buffer_info *info;
5134 int ret;
5135
5136 if (tracing_disabled)
5137 return -ENODEV;
5138
5139 if (trace_array_get(tr) < 0)
5140 return -ENODEV;
5141
5142 info = kzalloc(sizeof(*info), GFP_KERNEL);
5143 if (!info) {
5144 trace_array_put(tr);
5145 return -ENOMEM;
5146 }
5147
5148 mutex_lock(&trace_types_lock);
5149
5150 info->iter.tr = tr;
5151 info->iter.cpu_file = tracing_get_cpu(inode);
5152 info->iter.trace = tr->current_trace;
5153 info->iter.trace_buffer = &tr->trace_buffer;
5154 info->spare = NULL;
5155 /* Force reading ring buffer for first read */
5156 info->read = (unsigned int)-1;
5157
5158 filp->private_data = info;
5159
5160 mutex_unlock(&trace_types_lock);
5161
5162 ret = nonseekable_open(inode, filp);
5163 if (ret < 0)
5164 trace_array_put(tr);
5165
5166 return ret;
5167 }
5168
5169 static unsigned int
5170 tracing_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
5178 static ssize_t
5179 tracing_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;
5183 struct trace_iterator *iter = &info->iter;
5184 ssize_t ret;
5185 ssize_t size;
5186
5187 if (!count)
5188 return 0;
5189
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
5199 if (!info->spare)
5200 info->spare = ring_buffer_alloc_read_page(iter->trace_buffer->buffer,
5201 iter->cpu_file);
5202 size = -ENOMEM;
5203 if (!info->spare)
5204 goto out_unlock;
5205
5206 /* Do we have previous read data to read? */
5207 if (info->read < PAGE_SIZE)
5208 goto read;
5209
5210 again:
5211 trace_access_lock(iter->cpu_file);
5212 ret = ring_buffer_read_page(iter->trace_buffer->buffer,
5213 &info->spare,
5214 count,
5215 iter->cpu_file, 0);
5216 trace_access_unlock(iter->cpu_file);
5217
5218 if (ret < 0) {
5219 if (trace_empty(iter)) {
5220 if ((filp->f_flags & O_NONBLOCK)) {
5221 size = -EAGAIN;
5222 goto out_unlock;
5223 }
5224 mutex_unlock(&trace_types_lock);
5225 ret = iter->trace->wait_pipe(iter);
5226 mutex_lock(&trace_types_lock);
5227 if (ret) {
5228 size = ret;
5229 goto out_unlock;
5230 }
5231 if (signal_pending(current)) {
5232 size = -EINTR;
5233 goto out_unlock;
5234 }
5235 goto again;
5236 }
5237 size = 0;
5238 goto out_unlock;
5239 }
5240
5241 info->read = 0;
5242 read:
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);
5248 if (ret == size) {
5249 size = -EFAULT;
5250 goto out_unlock;
5251 }
5252 size -= ret;
5253
5254 *ppos += size;
5255 info->read += size;
5256
5257 out_unlock:
5258 mutex_unlock(&trace_types_lock);
5259
5260 return size;
5261 }
5262
5263 static int tracing_buffers_release(struct inode *inode, struct file *file)
5264 {
5265 struct ftrace_buffer_info *info = file->private_data;
5266 struct trace_iterator *iter = &info->iter;
5267
5268 mutex_lock(&trace_types_lock);
5269
5270 __trace_array_put(iter->tr);
5271
5272 if (info->spare)
5273 ring_buffer_free_read_page(iter->trace_buffer->buffer, info->spare);
5274 kfree(info);
5275
5276 mutex_unlock(&trace_types_lock);
5277
5278 return 0;
5279 }
5280
5281 struct buffer_ref {
5282 struct ring_buffer *buffer;
5283 void *page;
5284 int ref;
5285 };
5286
5287 static 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
5300 static 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. */
5309 static const struct pipe_buf_operations buffer_pipe_buf_ops = {
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,
5315 .steal = generic_pipe_buf_steal,
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 */
5323 static 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
5336 static ssize_t
5337 tracing_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;
5342 struct trace_iterator *iter = &info->iter;
5343 struct partial_page partial_def[PIPE_DEF_BUFFERS];
5344 struct page *pages_def[PIPE_DEF_BUFFERS];
5345 struct splice_pipe_desc spd = {
5346 .pages = pages_def,
5347 .partial = partial_def,
5348 .nr_pages_max = PIPE_DEF_BUFFERS,
5349 .flags = flags,
5350 .ops = &buffer_pipe_buf_ops,
5351 .spd_release = buffer_spd_release,
5352 };
5353 struct buffer_ref *ref;
5354 int entries, size, i;
5355 ssize_t ret;
5356
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 }
5370
5371 if (*ppos & (PAGE_SIZE - 1)) {
5372 ret = -EINVAL;
5373 goto out;
5374 }
5375
5376 if (len & (PAGE_SIZE - 1)) {
5377 if (len < PAGE_SIZE) {
5378 ret = -EINVAL;
5379 goto out;
5380 }
5381 len &= PAGE_MASK;
5382 }
5383
5384 again:
5385 trace_access_lock(iter->cpu_file);
5386 entries = ring_buffer_entries_cpu(iter->trace_buffer->buffer, iter->cpu_file);
5387
5388 for (i = 0; i < pipe->buffers && len && entries; i++, len -= PAGE_SIZE) {
5389 struct page *page;
5390 int r;
5391
5392 ref = kzalloc(sizeof(*ref), GFP_KERNEL);
5393 if (!ref)
5394 break;
5395
5396 ref->ref = 1;
5397 ref->buffer = iter->trace_buffer->buffer;
5398 ref->page = ring_buffer_alloc_read_page(ref->buffer, iter->cpu_file);
5399 if (!ref->page) {
5400 kfree(ref);
5401 break;
5402 }
5403
5404 r = ring_buffer_read_page(ref->buffer, &ref->page,
5405 len, iter->cpu_file, 1);
5406 if (r < 0) {
5407 ring_buffer_free_read_page(ref->buffer, ref->page);
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++;
5427 *ppos += PAGE_SIZE;
5428
5429 entries = ring_buffer_entries_cpu(iter->trace_buffer->buffer, iter->cpu_file);
5430 }
5431
5432 trace_access_unlock(iter->cpu_file);
5433 spd.nr_pages = i;
5434
5435 /* did we read anything? */
5436 if (!spd.nr_pages) {
5437 if ((file->f_flags & O_NONBLOCK) || (flags & SPLICE_F_NONBLOCK)) {
5438 ret = -EAGAIN;
5439 goto out;
5440 }
5441 mutex_unlock(&trace_types_lock);
5442 ret = iter->trace->wait_pipe(iter);
5443 mutex_lock(&trace_types_lock);
5444 if (ret)
5445 goto out;
5446 if (signal_pending(current)) {
5447 ret = -EINTR;
5448 goto out;
5449 }
5450 goto again;
5451 }
5452
5453 ret = splice_to_pipe(pipe, &spd);
5454 splice_shrink_spd(&spd);
5455 out:
5456 mutex_unlock(&trace_types_lock);
5457
5458 return ret;
5459 }
5460
5461 static const struct file_operations tracing_buffers_fops = {
5462 .open = tracing_buffers_open,
5463 .read = tracing_buffers_read,
5464 .poll = tracing_buffers_poll,
5465 .release = tracing_buffers_release,
5466 .splice_read = tracing_buffers_splice_read,
5467 .llseek = no_llseek,
5468 };
5469
5470 static ssize_t
5471 tracing_stats_read(struct file *filp, char __user *ubuf,
5472 size_t count, loff_t *ppos)
5473 {
5474 struct inode *inode = file_inode(filp);
5475 struct trace_array *tr = inode->i_private;
5476 struct trace_buffer *trace_buf = &tr->trace_buffer;
5477 int cpu = tracing_get_cpu(inode);
5478 struct trace_seq *s;
5479 unsigned long cnt;
5480 unsigned long long t;
5481 unsigned long usec_rem;
5482
5483 s = kmalloc(sizeof(*s), GFP_KERNEL);
5484 if (!s)
5485 return -ENOMEM;
5486
5487 trace_seq_init(s);
5488
5489 cnt = ring_buffer_entries_cpu(trace_buf->buffer, cpu);
5490 trace_seq_printf(s, "entries: %ld\n", cnt);
5491
5492 cnt = ring_buffer_overrun_cpu(trace_buf->buffer, cpu);
5493 trace_seq_printf(s, "overrun: %ld\n", cnt);
5494
5495 cnt = ring_buffer_commit_overrun_cpu(trace_buf->buffer, cpu);
5496 trace_seq_printf(s, "commit overrun: %ld\n", cnt);
5497
5498 cnt = ring_buffer_bytes_cpu(trace_buf->buffer, cpu);
5499 trace_seq_printf(s, "bytes: %ld\n", cnt);
5500
5501 if (trace_clocks[tr->clock_id].in_ns) {
5502 /* local or global for trace_clock */
5503 t = ns2usecs(ring_buffer_oldest_event_ts(trace_buf->buffer, cpu));
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
5508 t = ns2usecs(ring_buffer_time_stamp(trace_buf->buffer, cpu));
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",
5514 ring_buffer_oldest_event_ts(trace_buf->buffer, cpu));
5515
5516 trace_seq_printf(s, "now ts: %llu\n",
5517 ring_buffer_time_stamp(trace_buf->buffer, cpu));
5518 }
5519
5520 cnt = ring_buffer_dropped_events_cpu(trace_buf->buffer, cpu);
5521 trace_seq_printf(s, "dropped events: %ld\n", cnt);
5522
5523 cnt = ring_buffer_read_events_cpu(trace_buf->buffer, cpu);
5524 trace_seq_printf(s, "read events: %ld\n", cnt);
5525
5526 count = simple_read_from_buffer(ubuf, count, ppos, s->buffer, s->len);
5527
5528 kfree(s);
5529
5530 return count;
5531 }
5532
5533 static const struct file_operations tracing_stats_fops = {
5534 .open = tracing_open_generic_tr,
5535 .read = tracing_stats_read,
5536 .llseek = generic_file_llseek,
5537 .release = tracing_release_generic_tr,
5538 };
5539
5540 #ifdef CONFIG_DYNAMIC_FTRACE
5541
5542 int __weak ftrace_arch_read_dyn_info(char *buf, int size)
5543 {
5544 return 0;
5545 }
5546
5547 static ssize_t
5548 tracing_read_dyn_info(struct file *filp, char __user *ubuf,
5549 size_t cnt, loff_t *ppos)
5550 {
5551 static char ftrace_dyn_info_buffer[1024];
5552 static DEFINE_MUTEX(dyn_info_mutex);
5553 unsigned long *p = filp->private_data;
5554 char *buf = ftrace_dyn_info_buffer;
5555 int size = ARRAY_SIZE(ftrace_dyn_info_buffer);
5556 int r;
5557
5558 mutex_lock(&dyn_info_mutex);
5559 r = sprintf(buf, "%ld ", *p);
5560
5561 r += ftrace_arch_read_dyn_info(buf+r, (size-1)-r);
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;
5569 }
5570
5571 static const struct file_operations tracing_dyn_info_fops = {
5572 .open = tracing_open_generic,
5573 .read = tracing_read_dyn_info,
5574 .llseek = generic_file_llseek,
5575 };
5576 #endif /* CONFIG_DYNAMIC_FTRACE */
5577
5578 #if defined(CONFIG_TRACER_SNAPSHOT) && defined(CONFIG_DYNAMIC_FTRACE)
5579 static void
5580 ftrace_snapshot(unsigned long ip, unsigned long parent_ip, void **data)
5581 {
5582 tracing_snapshot();
5583 }
5584
5585 static void
5586 ftrace_count_snapshot(unsigned long ip, unsigned long parent_ip, void **data)
5587 {
5588 unsigned long *count = (long *)data;
5589
5590 if (!*count)
5591 return;
5592
5593 if (*count != -1)
5594 (*count)--;
5595
5596 tracing_snapshot();
5597 }
5598
5599 static int
5600 ftrace_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
5617 static struct ftrace_probe_ops snapshot_probe_ops = {
5618 .func = ftrace_snapshot,
5619 .print = ftrace_snapshot_print,
5620 };
5621
5622 static struct ftrace_probe_ops snapshot_count_probe_ops = {
5623 .func = ftrace_count_snapshot,
5624 .print = ftrace_snapshot_print,
5625 };
5626
5627 static int
5628 ftrace_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
5672 static struct ftrace_func_command ftrace_snapshot_cmd = {
5673 .name = "snapshot",
5674 .func = ftrace_trace_snapshot_callback,
5675 };
5676
5677 static int register_snapshot_cmd(void)
5678 {
5679 return register_ftrace_command(&ftrace_snapshot_cmd);
5680 }
5681 #else
5682 static inline int register_snapshot_cmd(void) { return 0; }
5683 #endif /* defined(CONFIG_TRACER_SNAPSHOT) && defined(CONFIG_DYNAMIC_FTRACE) */
5684
5685 struct dentry *tracing_init_dentry_tr(struct trace_array *tr)
5686 {
5687 if (tr->dir)
5688 return tr->dir;
5689
5690 if (!debugfs_initialized())
5691 return NULL;
5692
5693 if (tr->flags & TRACE_ARRAY_FL_GLOBAL)
5694 tr->dir = debugfs_create_dir("tracing", NULL);
5695
5696 if (!tr->dir)
5697 pr_warn_once("Could not create debugfs directory 'tracing'\n");
5698
5699 return tr->dir;
5700 }
5701
5702 struct dentry *tracing_init_dentry(void)
5703 {
5704 return tracing_init_dentry_tr(&global_trace);
5705 }
5706
5707 static struct dentry *tracing_dentry_percpu(struct trace_array *tr, int cpu)
5708 {
5709 struct dentry *d_tracer;
5710
5711 if (tr->percpu_dir)
5712 return tr->percpu_dir;
5713
5714 d_tracer = tracing_init_dentry_tr(tr);
5715 if (!d_tracer)
5716 return NULL;
5717
5718 tr->percpu_dir = debugfs_create_dir("per_cpu", d_tracer);
5719
5720 WARN_ONCE(!tr->percpu_dir,
5721 "Could not create debugfs directory 'per_cpu/%d'\n", cpu);
5722
5723 return tr->percpu_dir;
5724 }
5725
5726 static struct dentry *
5727 trace_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
5737 static void
5738 tracing_init_debugfs_percpu(struct trace_array *tr, long cpu)
5739 {
5740 struct dentry *d_percpu = tracing_dentry_percpu(tr, cpu);
5741 struct dentry *d_cpu;
5742 char cpu_dir[30]; /* 30 characters should be more than enough */
5743
5744 if (!d_percpu)
5745 return;
5746
5747 snprintf(cpu_dir, 30, "cpu%ld", cpu);
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 }
5753
5754 /* per cpu trace_pipe */
5755 trace_create_cpu_file("trace_pipe", 0444, d_cpu,
5756 tr, cpu, &tracing_pipe_fops);
5757
5758 /* per cpu trace */
5759 trace_create_cpu_file("trace", 0644, d_cpu,
5760 tr, cpu, &tracing_fops);
5761
5762 trace_create_cpu_file("trace_pipe_raw", 0444, d_cpu,
5763 tr, cpu, &tracing_buffers_fops);
5764
5765 trace_create_cpu_file("stats", 0444, d_cpu,
5766 tr, cpu, &tracing_stats_fops);
5767
5768 trace_create_cpu_file("buffer_size_kb", 0444, d_cpu,
5769 tr, cpu, &tracing_entries_fops);
5770
5771 #ifdef CONFIG_TRACER_SNAPSHOT
5772 trace_create_cpu_file("snapshot", 0644, d_cpu,
5773 tr, cpu, &snapshot_fops);
5774
5775 trace_create_cpu_file("snapshot_raw", 0444, d_cpu,
5776 tr, cpu, &snapshot_raw_fops);
5777 #endif
5778 }
5779
5780 #ifdef CONFIG_FTRACE_SELFTEST
5781 /* Let selftest have access to static functions in this file */
5782 #include "trace_selftest.c"
5783 #endif
5784
5785 struct trace_option_dentry {
5786 struct tracer_opt *opt;
5787 struct tracer_flags *flags;
5788 struct trace_array *tr;
5789 struct dentry *entry;
5790 };
5791
5792 static ssize_t
5793 trace_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
5807 static ssize_t
5808 trace_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;
5813 int ret;
5814
5815 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
5816 if (ret)
5817 return ret;
5818
5819 if (val != 0 && val != 1)
5820 return -EINVAL;
5821
5822 if (!!(topt->flags->val & topt->opt->bit) != val) {
5823 mutex_lock(&trace_types_lock);
5824 ret = __set_tracer_option(topt->tr->current_trace, topt->flags,
5825 topt->opt, !val);
5826 mutex_unlock(&trace_types_lock);
5827 if (ret)
5828 return ret;
5829 }
5830
5831 *ppos += cnt;
5832
5833 return cnt;
5834 }
5835
5836
5837 static const struct file_operations trace_options_fops = {
5838 .open = tracing_open_generic,
5839 .read = trace_options_read,
5840 .write = trace_options_write,
5841 .llseek = generic_file_llseek,
5842 };
5843
5844 static ssize_t
5845 trace_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
5859 static ssize_t
5860 trace_options_core_write(struct file *filp, const char __user *ubuf, size_t cnt,
5861 loff_t *ppos)
5862 {
5863 struct trace_array *tr = &global_trace;
5864 long index = (long)filp->private_data;
5865 unsigned long val;
5866 int ret;
5867
5868 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
5869 if (ret)
5870 return ret;
5871
5872 if (val != 0 && val != 1)
5873 return -EINVAL;
5874
5875 mutex_lock(&trace_types_lock);
5876 ret = set_tracer_flag(tr, 1 << index, val);
5877 mutex_unlock(&trace_types_lock);
5878
5879 if (ret < 0)
5880 return ret;
5881
5882 *ppos += cnt;
5883
5884 return cnt;
5885 }
5886
5887 static 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,
5891 .llseek = generic_file_llseek,
5892 };
5893
5894 struct dentry *trace_create_file(const char *name,
5895 umode_t mode,
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
5910 static struct dentry *trace_options_init_dentry(struct trace_array *tr)
5911 {
5912 struct dentry *d_tracer;
5913
5914 if (tr->options)
5915 return tr->options;
5916
5917 d_tracer = tracing_init_dentry_tr(tr);
5918 if (!d_tracer)
5919 return NULL;
5920
5921 tr->options = debugfs_create_dir("options", d_tracer);
5922 if (!tr->options) {
5923 pr_warning("Could not create debugfs directory 'options'\n");
5924 return NULL;
5925 }
5926
5927 return tr->options;
5928 }
5929
5930 static void
5931 create_trace_option_file(struct trace_array *tr,
5932 struct trace_option_dentry *topt,
5933 struct tracer_flags *flags,
5934 struct tracer_opt *opt)
5935 {
5936 struct dentry *t_options;
5937
5938 t_options = trace_options_init_dentry(tr);
5939 if (!t_options)
5940 return;
5941
5942 topt->flags = flags;
5943 topt->opt = opt;
5944 topt->tr = tr;
5945
5946 topt->entry = trace_create_file(opt->name, 0644, t_options, topt,
5947 &trace_options_fops);
5948
5949 }
5950
5951 static struct trace_option_dentry *
5952 create_trace_option_files(struct trace_array *tr, struct tracer *tracer)
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
5972 topts = kcalloc(cnt + 1, sizeof(*topts), GFP_KERNEL);
5973 if (!topts)
5974 return NULL;
5975
5976 for (cnt = 0; opts[cnt].name; cnt++)
5977 create_trace_option_file(tr, &topts[cnt], flags,
5978 &opts[cnt]);
5979
5980 return topts;
5981 }
5982
5983 static void
5984 destroy_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
5999 static struct dentry *
6000 create_trace_option_core_file(struct trace_array *tr,
6001 const char *option, long index)
6002 {
6003 struct dentry *t_options;
6004
6005 t_options = trace_options_init_dentry(tr);
6006 if (!t_options)
6007 return NULL;
6008
6009 return trace_create_file(option, 0644, t_options, (void *)index,
6010 &trace_options_core_fops);
6011 }
6012
6013 static __init void create_trace_options_dir(struct trace_array *tr)
6014 {
6015 struct dentry *t_options;
6016 int i;
6017
6018 t_options = trace_options_init_dentry(tr);
6019 if (!t_options)
6020 return;
6021
6022 for (i = 0; trace_options[i]; i++)
6023 create_trace_option_core_file(tr, trace_options[i], i);
6024 }
6025
6026 static ssize_t
6027 rb_simple_read(struct file *filp, char __user *ubuf,
6028 size_t cnt, loff_t *ppos)
6029 {
6030 struct trace_array *tr = filp->private_data;
6031 char buf[64];
6032 int r;
6033
6034 r = tracer_tracing_is_on(tr);
6035 r = sprintf(buf, "%d\n", r);
6036
6037 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
6038 }
6039
6040 static ssize_t
6041 rb_simple_write(struct file *filp, const char __user *ubuf,
6042 size_t cnt, loff_t *ppos)
6043 {
6044 struct trace_array *tr = filp->private_data;
6045 struct ring_buffer *buffer = tr->trace_buffer.buffer;
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) {
6054 if(ring_buffer_record_is_on(buffer) ^ val)
6055 printk(KERN_INFO "[ftrace]tracing_on is toggled to %lu\n", val);
6056 mutex_lock(&trace_types_lock);
6057 if (val) {
6058 tracer_tracing_on(tr);
6059 #ifdef CONFIG_MTK_SCHED_TRACERS
6060 trace_tracing_on(val, CALLER_ADDR0);
6061 #endif
6062 if (tr->current_trace->start)
6063 tr->current_trace->start(tr);
6064 } else {
6065 #ifdef CONFIG_MTK_SCHED_TRACERS
6066 trace_tracing_on(val, CALLER_ADDR0);
6067 #endif
6068 tracer_tracing_off(tr);
6069 if (tr->current_trace->stop)
6070 tr->current_trace->stop(tr);
6071 }
6072 mutex_unlock(&trace_types_lock);
6073 }
6074
6075 (*ppos)++;
6076
6077 return cnt;
6078 }
6079
6080 static const struct file_operations rb_simple_fops = {
6081 .open = tracing_open_generic_tr,
6082 .read = rb_simple_read,
6083 .write = rb_simple_write,
6084 .release = tracing_release_generic_tr,
6085 .llseek = default_llseek,
6086 };
6087
6088 #ifdef CONFIG_MTK_KERNEL_MARKER
6089 static int mt_kernel_marker_enabled = 1;
6090 static ssize_t
6091 mt_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 }
6101 static ssize_t
6102 mt_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 }
6118 static 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
6125 struct dentry *trace_instance_dir;
6126
6127 static void
6128 init_tracer_debugfs(struct trace_array *tr, struct dentry *d_tracer);
6129
6130 static 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
6141 static int
6142 allocate_trace_buffer(struct trace_array *tr, struct trace_buffer *buf, int size)
6143 {
6144 enum ring_buffer_flags rb_flags;
6145
6146 rb_flags = trace_flags & TRACE_ITER_OVERWRITE ? RB_FL_OVERWRITE : 0;
6147
6148 buf->tr = tr;
6149
6150 buf->buffer = ring_buffer_alloc(size, rb_flags);
6151 if (!buf->buffer)
6152 return -ENOMEM;
6153
6154 buf->data = alloc_percpu(struct trace_array_cpu);
6155 if (!buf->data) {
6156 ring_buffer_free(buf->buffer);
6157 return -ENOMEM;
6158 }
6159
6160 init_trace_buffers(tr, buf);
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
6166 return 0;
6167 }
6168
6169 static int allocate_trace_buffers(struct trace_array *tr, int size)
6170 {
6171 int ret;
6172
6173 ret = allocate_trace_buffer(tr, &tr->trace_buffer, size);
6174 if (ret)
6175 return ret;
6176
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)) {
6181 ring_buffer_free(tr->trace_buffer.buffer);
6182 free_percpu(tr->trace_buffer.data);
6183 return -ENOMEM;
6184 }
6185 tr->allocated_snapshot = allocate_snapshot;
6186
6187 /*
6188 * Only the top level trace array gets its snapshot allocated
6189 * from the kernel command line.
6190 */
6191 allocate_snapshot = false;
6192 #endif
6193 return 0;
6194 }
6195
6196 static int new_instance_create(const char *name)
6197 {
6198 struct trace_array *tr;
6199 int ret;
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
6225 if (allocate_trace_buffers(tr, trace_buf_size) < 0)
6226 goto out_free_tr;
6227
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);
6237 if (ret) {
6238 debugfs_remove_recursive(tr->dir);
6239 goto out_free_tr;
6240 }
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:
6251 if (tr->trace_buffer.buffer)
6252 ring_buffer_free(tr->trace_buffer.buffer);
6253 kfree(tr->name);
6254 kfree(tr);
6255
6256 out_unlock:
6257 mutex_unlock(&trace_types_lock);
6258
6259 return ret;
6260
6261 }
6262
6263 static 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
6281 ret = -EBUSY;
6282 if (tr->ref)
6283 goto out_unlock;
6284
6285 list_del(&tr->list);
6286
6287 event_trace_del_tracer(tr);
6288 debugfs_remove_recursive(tr->dir);
6289 free_percpu(tr->trace_buffer.data);
6290 ring_buffer_free(tr->trace_buffer.buffer);
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
6303 static 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
6330 static 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
6361 static const struct inode_operations instance_dir_inode_operations = {
6362 .lookup = simple_lookup,
6363 .mkdir = instance_mkdir,
6364 .rmdir = instance_rmdir,
6365 };
6366
6367 static __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
6377 static void
6378 init_tracer_debugfs(struct trace_array *tr, struct dentry *d_tracer)
6379 {
6380 int cpu;
6381
6382 trace_create_file("trace_options", 0644, d_tracer,
6383 tr, &tracing_iter_fops);
6384
6385 trace_create_file("trace", 0644, d_tracer,
6386 tr, &tracing_fops);
6387
6388 trace_create_file("trace_pipe", 0444, d_tracer,
6389 tr, &tracing_pipe_fops);
6390
6391 trace_create_file("buffer_size_kb", 0644, d_tracer,
6392 tr, &tracing_entries_fops);
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
6403 trace_create_file("saved_tgids", 0444, d_tracer,
6404 tr, &tracing_saved_tgids_fops);
6405
6406 trace_create_file("trace_clock", 0644, d_tracer, tr,
6407 &trace_clock_fops);
6408
6409 trace_create_file("tracing_on", 0644, d_tracer,
6410 tr, &rb_simple_fops);
6411
6412 #ifdef CONFIG_TRACER_SNAPSHOT
6413 trace_create_file("snapshot", 0644, d_tracer,
6414 tr, &snapshot_fops);
6415 #endif
6416
6417 for_each_tracing_cpu(cpu)
6418 tracing_init_debugfs_percpu(tr, cpu);
6419
6420 }
6421
6422 static __init int tracer_init_debugfs(void)
6423 {
6424 struct dentry *d_tracer;
6425
6426 trace_access_lock_init();
6427
6428 d_tracer = tracing_init_dentry();
6429 if (!d_tracer)
6430 return 0;
6431
6432 init_tracer_debugfs(&global_trace, d_tracer);
6433
6434 trace_create_file("tracing_cpumask", 0644, d_tracer,
6435 &global_trace, &tracing_cpumask_fops);
6436
6437 trace_create_file("available_tracers", 0444, d_tracer,
6438 &global_trace, &show_traces_fops);
6439
6440 trace_create_file("current_tracer", 0644, d_tracer,
6441 &global_trace, &set_tracer_fops);
6442
6443 #ifdef CONFIG_TRACER_MAX_TRACE
6444 trace_create_file("tracing_max_latency", 0644, d_tracer,
6445 &tracing_max_latency, &tracing_max_lat_fops);
6446 #endif
6447
6448 trace_create_file("tracing_thresh", 0644, d_tracer,
6449 &tracing_thresh, &tracing_max_lat_fops);
6450
6451 trace_create_file("README", 0444, d_tracer,
6452 NULL, &tracing_readme_fops);
6453
6454 trace_create_file("saved_cmdlines", 0444, d_tracer,
6455 NULL, &tracing_saved_cmdlines_fops);
6456
6457 #ifdef CONFIG_DYNAMIC_FTRACE
6458 trace_create_file("dyn_ftrace_total_info", 0444, d_tracer,
6459 &ftrace_update_tot_cnt, &tracing_dyn_info_fops);
6460 #endif
6461
6462 create_trace_instances(d_tracer);
6463
6464 create_trace_options_dir(&global_trace);
6465
6466 return 0;
6467 }
6468
6469 static int trace_panic_handler(struct notifier_block *this,
6470 unsigned long event, void *unused)
6471 {
6472 if (ftrace_dump_on_oops)
6473 ftrace_dump(ftrace_dump_on_oops);
6474 return NOTIFY_OK;
6475 }
6476
6477 static 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
6483 static int trace_die_handler(struct notifier_block *self,
6484 unsigned long val,
6485 void *data)
6486 {
6487 switch (val) {
6488 case DIE_OOPS:
6489 if (ftrace_dump_on_oops)
6490 ftrace_dump(ftrace_dump_on_oops);
6491 break;
6492 default:
6493 break;
6494 }
6495 return NOTIFY_OK;
6496 }
6497
6498 static 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 */
6514 #define KERN_TRACE KERN_EMERG
6515
6516 void
6517 trace_printk_seq(struct trace_seq *s)
6518 {
6519 /* Probably should print a warning here. */
6520 if (s->len >= TRACE_MAX_PRINT)
6521 s->len = TRACE_MAX_PRINT;
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
6528 trace_seq_init(s);
6529 }
6530
6531 void trace_init_global_iter(struct trace_iterator *iter)
6532 {
6533 iter->tr = &global_trace;
6534 iter->trace = iter->tr->current_trace;
6535 iter->cpu_file = RING_BUFFER_ALL_CPUS;
6536 iter->trace_buffer = &global_trace.trace_buffer;
6537 }
6538
6539 void ftrace_dump(enum ftrace_dump_mode oops_dump_mode)
6540 {
6541 /* use static because iter can be a bit big for the stack */
6542 static struct trace_iterator iter;
6543 static atomic_t dump_running;
6544 unsigned int old_userobj;
6545 unsigned long flags;
6546 int cnt = 0, cpu;
6547
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 }
6553
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 */
6562 tracing_off();
6563
6564 local_irq_save(flags);
6565
6566 /* Simulate the iterator */
6567 trace_init_global_iter(&iter);
6568
6569 for_each_tracing_cpu(cpu) {
6570 atomic_inc(&per_cpu_ptr(iter.tr->trace_buffer.data, cpu)->disabled);
6571 }
6572
6573 old_userobj = trace_flags & TRACE_ITER_SYM_USEROBJ;
6574
6575 /* don't look at user memory in panic mode */
6576 trace_flags &= ~TRACE_ITER_SYM_USEROBJ;
6577
6578 switch (oops_dump_mode) {
6579 case DUMP_ALL:
6580 iter.cpu_file = RING_BUFFER_ALL_CPUS;
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");
6589 iter.cpu_file = RING_BUFFER_ALL_CPUS;
6590 }
6591
6592 printk(KERN_TRACE "Dumping ftrace buffer:\n");
6593
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
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
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
6621 if (trace_find_next_entry_inc(&iter) != NULL) {
6622 int ret;
6623
6624 ret = print_trace_line(&iter);
6625 if (ret != TRACE_TYPE_NO_CONSUME)
6626 trace_consume(&iter);
6627 }
6628 touch_nmi_watchdog();
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
6638 out_enable:
6639 trace_flags |= old_userobj;
6640
6641 for_each_tracing_cpu(cpu) {
6642 atomic_dec(&per_cpu_ptr(iter.trace_buffer->data, cpu)->disabled);
6643 }
6644 atomic_dec(&dump_running);
6645 local_irq_restore(flags);
6646 }
6647 EXPORT_SYMBOL_GPL(ftrace_dump);
6648
6649 __init static int tracer_alloc_buffers(void)
6650 {
6651 int ring_buf_size;
6652 int ret = -ENOMEM;
6653
6654
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;
6660
6661 /* Only allocate trace_printk buffers if a trace_printk exists */
6662 if (__stop___trace_bprintk_fmt != __start___trace_bprintk_fmt)
6663 /* Must be called before global_trace.buffer is allocated */
6664 trace_printk_init_buffers();
6665
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
6672 cpumask_copy(tracing_buffer_mask, cpu_possible_mask);
6673 cpumask_copy(tracing_cpumask, cpu_all_mask);
6674
6675 raw_spin_lock_init(&global_trace.start_lock);
6676
6677 /* TODO: make the number of buffers hot pluggable with CPUS */
6678 if (allocate_trace_buffers(&global_trace, ring_buf_size) < 0) {
6679 printk(KERN_ERR "tracer: failed to allocate ring buffer!\n");
6680 WARN_ON(1);
6681 goto out_free_cpumask;
6682 }
6683
6684 if (global_trace.buffer_disabled)
6685 tracing_off();
6686
6687 trace_init_cmdlines();
6688
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 */
6694 global_trace.current_trace = &nop_trace;
6695
6696 register_tracer(&nop_trace);
6697
6698 /* All seems OK, enable tracing */
6699 tracing_disabled = 0;
6700
6701 atomic_notifier_chain_register(&panic_notifier_list,
6702 &trace_panic_notifier);
6703
6704 register_die_notifier(&trace_die_notifier);
6705
6706 global_trace.flags = TRACE_ARRAY_FL_GLOBAL;
6707
6708 /* Holder for file callbacks */
6709 global_trace.trace_cpu.cpu = RING_BUFFER_ALL_CPUS;
6710 global_trace.trace_cpu.tr = &global_trace;
6711
6712 INIT_LIST_HEAD(&global_trace.systems);
6713 INIT_LIST_HEAD(&global_trace.events);
6714 list_add(&global_trace.list, &ftrace_trace_arrays);
6715
6716 while (trace_boot_options) {
6717 char *option;
6718
6719 option = strsep(&trace_boot_options, ",");
6720 trace_set_options(&global_trace, option);
6721 }
6722
6723 register_snapshot_cmd();
6724
6725 return 0;
6726
6727 out_free_cpumask:
6728 free_percpu(global_trace.trace_buffer.data);
6729 #ifdef CONFIG_TRACER_MAX_TRACE
6730 free_percpu(global_trace.max_buffer.data);
6731 #endif
6732 free_cpumask_var(tracing_cpumask);
6733 out_free_buffer_mask:
6734 free_cpumask_var(tracing_buffer_mask);
6735 out:
6736 return ret;
6737 }
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
6758 early_initcall(tracer_alloc_buffers);
6759 fs_initcall(tracer_init_debugfs);
6760 late_initcall(clear_boot_tracer);