tracing: Add percpu buffers for trace_printk()
[linux-block.git] / kernel / trace / trace.c
... / ...
CommitLineData
1/*
2 * ring buffer based function tracer
3 *
4 * Copyright (C) 2007-2008 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 William Lee Irwin III
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 "trace.h"
43#include "trace_output.h"
44
45/*
46 * On boot up, the ring buffer is set to the minimum size, so that
47 * we do not waste memory on systems that are not using tracing.
48 */
49int ring_buffer_expanded;
50
51/*
52 * We need to change this state when a selftest is running.
53 * A selftest will lurk into the ring-buffer to count the
54 * entries inserted during the selftest although some concurrent
55 * insertions into the ring-buffer such as trace_printk could occurred
56 * at the same time, giving false positive or negative results.
57 */
58static bool __read_mostly tracing_selftest_running;
59
60/*
61 * If a tracer is running, we do not want to run SELFTEST.
62 */
63bool __read_mostly tracing_selftest_disabled;
64
65/* For tracers that don't implement custom flags */
66static struct tracer_opt dummy_tracer_opt[] = {
67 { }
68};
69
70static struct tracer_flags dummy_tracer_flags = {
71 .val = 0,
72 .opts = dummy_tracer_opt
73};
74
75static int dummy_set_flag(u32 old_flags, u32 bit, int set)
76{
77 return 0;
78}
79
80/*
81 * Kill all tracing for good (never come back).
82 * It is initialized to 1 but will turn to zero if the initialization
83 * of the tracer is successful. But that is the only place that sets
84 * this back to zero.
85 */
86static int tracing_disabled = 1;
87
88DEFINE_PER_CPU(int, ftrace_cpu_disabled);
89
90static inline void ftrace_disable_cpu(void)
91{
92 preempt_disable();
93 __this_cpu_inc(ftrace_cpu_disabled);
94}
95
96static inline void ftrace_enable_cpu(void)
97{
98 __this_cpu_dec(ftrace_cpu_disabled);
99 preempt_enable();
100}
101
102cpumask_var_t __read_mostly tracing_buffer_mask;
103
104/*
105 * ftrace_dump_on_oops - variable to dump ftrace buffer on oops
106 *
107 * If there is an oops (or kernel panic) and the ftrace_dump_on_oops
108 * is set, then ftrace_dump is called. This will output the contents
109 * of the ftrace buffers to the console. This is very useful for
110 * capturing traces that lead to crashes and outputing it to a
111 * serial console.
112 *
113 * It is default off, but you can enable it with either specifying
114 * "ftrace_dump_on_oops" in the kernel command line, or setting
115 * /proc/sys/kernel/ftrace_dump_on_oops
116 * Set 1 if you want to dump buffers of all CPUs
117 * Set 2 if you want to dump the buffer of the CPU that triggered oops
118 */
119
120enum ftrace_dump_mode ftrace_dump_on_oops;
121
122static int tracing_set_tracer(const char *buf);
123
124#define MAX_TRACER_SIZE 100
125static char bootup_tracer_buf[MAX_TRACER_SIZE] __initdata;
126static char *default_bootup_tracer;
127
128static int __init set_cmdline_ftrace(char *str)
129{
130 strncpy(bootup_tracer_buf, str, MAX_TRACER_SIZE);
131 default_bootup_tracer = bootup_tracer_buf;
132 /* We are using ftrace early, expand it */
133 ring_buffer_expanded = 1;
134 return 1;
135}
136__setup("ftrace=", set_cmdline_ftrace);
137
138static int __init set_ftrace_dump_on_oops(char *str)
139{
140 if (*str++ != '=' || !*str) {
141 ftrace_dump_on_oops = DUMP_ALL;
142 return 1;
143 }
144
145 if (!strcmp("orig_cpu", str)) {
146 ftrace_dump_on_oops = DUMP_ORIG;
147 return 1;
148 }
149
150 return 0;
151}
152__setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops);
153
154unsigned long long ns2usecs(cycle_t nsec)
155{
156 nsec += 500;
157 do_div(nsec, 1000);
158 return nsec;
159}
160
161/*
162 * The global_trace is the descriptor that holds the tracing
163 * buffers for the live tracing. For each CPU, it contains
164 * a link list of pages that will store trace entries. The
165 * page descriptor of the pages in the memory is used to hold
166 * the link list by linking the lru item in the page descriptor
167 * to each of the pages in the buffer per CPU.
168 *
169 * For each active CPU there is a data field that holds the
170 * pages for the buffer for that CPU. Each CPU has the same number
171 * of pages allocated for its buffer.
172 */
173static struct trace_array global_trace;
174
175static DEFINE_PER_CPU(struct trace_array_cpu, global_trace_cpu);
176
177int filter_current_check_discard(struct ring_buffer *buffer,
178 struct ftrace_event_call *call, void *rec,
179 struct ring_buffer_event *event)
180{
181 return filter_check_discard(call, rec, buffer, event);
182}
183EXPORT_SYMBOL_GPL(filter_current_check_discard);
184
185cycle_t ftrace_now(int cpu)
186{
187 u64 ts;
188
189 /* Early boot up does not have a buffer yet */
190 if (!global_trace.buffer)
191 return trace_clock_local();
192
193 ts = ring_buffer_time_stamp(global_trace.buffer, cpu);
194 ring_buffer_normalize_time_stamp(global_trace.buffer, cpu, &ts);
195
196 return ts;
197}
198
199/*
200 * The max_tr is used to snapshot the global_trace when a maximum
201 * latency is reached. Some tracers will use this to store a maximum
202 * trace while it continues examining live traces.
203 *
204 * The buffers for the max_tr are set up the same as the global_trace.
205 * When a snapshot is taken, the link list of the max_tr is swapped
206 * with the link list of the global_trace and the buffers are reset for
207 * the global_trace so the tracing can continue.
208 */
209static struct trace_array max_tr;
210
211static DEFINE_PER_CPU(struct trace_array_cpu, max_tr_data);
212
213/* tracer_enabled is used to toggle activation of a tracer */
214static int tracer_enabled = 1;
215
216/**
217 * tracing_is_enabled - return tracer_enabled status
218 *
219 * This function is used by other tracers to know the status
220 * of the tracer_enabled flag. Tracers may use this function
221 * to know if it should enable their features when starting
222 * up. See irqsoff tracer for an example (start_irqsoff_tracer).
223 */
224int tracing_is_enabled(void)
225{
226 return tracer_enabled;
227}
228
229/*
230 * trace_buf_size is the size in bytes that is allocated
231 * for a buffer. Note, the number of bytes is always rounded
232 * to page size.
233 *
234 * This number is purposely set to a low number of 16384.
235 * If the dump on oops happens, it will be much appreciated
236 * to not have to wait for all that output. Anyway this can be
237 * boot time and run time configurable.
238 */
239#define TRACE_BUF_SIZE_DEFAULT 1441792UL /* 16384 * 88 (sizeof(entry)) */
240
241static unsigned long trace_buf_size = TRACE_BUF_SIZE_DEFAULT;
242
243/* trace_types holds a link list of available tracers. */
244static struct tracer *trace_types __read_mostly;
245
246/* current_trace points to the tracer that is currently active */
247static struct tracer *current_trace __read_mostly;
248
249/*
250 * trace_types_lock is used to protect the trace_types list.
251 */
252static DEFINE_MUTEX(trace_types_lock);
253
254/*
255 * serialize the access of the ring buffer
256 *
257 * ring buffer serializes readers, but it is low level protection.
258 * The validity of the events (which returns by ring_buffer_peek() ..etc)
259 * are not protected by ring buffer.
260 *
261 * The content of events may become garbage if we allow other process consumes
262 * these events concurrently:
263 * A) the page of the consumed events may become a normal page
264 * (not reader page) in ring buffer, and this page will be rewrited
265 * by events producer.
266 * B) The page of the consumed events may become a page for splice_read,
267 * and this page will be returned to system.
268 *
269 * These primitives allow multi process access to different cpu ring buffer
270 * concurrently.
271 *
272 * These primitives don't distinguish read-only and read-consume access.
273 * Multi read-only access are also serialized.
274 */
275
276#ifdef CONFIG_SMP
277static DECLARE_RWSEM(all_cpu_access_lock);
278static DEFINE_PER_CPU(struct mutex, cpu_access_lock);
279
280static inline void trace_access_lock(int cpu)
281{
282 if (cpu == TRACE_PIPE_ALL_CPU) {
283 /* gain it for accessing the whole ring buffer. */
284 down_write(&all_cpu_access_lock);
285 } else {
286 /* gain it for accessing a cpu ring buffer. */
287
288 /* Firstly block other trace_access_lock(TRACE_PIPE_ALL_CPU). */
289 down_read(&all_cpu_access_lock);
290
291 /* Secondly block other access to this @cpu ring buffer. */
292 mutex_lock(&per_cpu(cpu_access_lock, cpu));
293 }
294}
295
296static inline void trace_access_unlock(int cpu)
297{
298 if (cpu == TRACE_PIPE_ALL_CPU) {
299 up_write(&all_cpu_access_lock);
300 } else {
301 mutex_unlock(&per_cpu(cpu_access_lock, cpu));
302 up_read(&all_cpu_access_lock);
303 }
304}
305
306static inline void trace_access_lock_init(void)
307{
308 int cpu;
309
310 for_each_possible_cpu(cpu)
311 mutex_init(&per_cpu(cpu_access_lock, cpu));
312}
313
314#else
315
316static DEFINE_MUTEX(access_lock);
317
318static inline void trace_access_lock(int cpu)
319{
320 (void)cpu;
321 mutex_lock(&access_lock);
322}
323
324static inline void trace_access_unlock(int cpu)
325{
326 (void)cpu;
327 mutex_unlock(&access_lock);
328}
329
330static inline void trace_access_lock_init(void)
331{
332}
333
334#endif
335
336/* trace_wait is a waitqueue for tasks blocked on trace_poll */
337static DECLARE_WAIT_QUEUE_HEAD(trace_wait);
338
339/* trace_flags holds trace_options default values */
340unsigned long trace_flags = TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK |
341 TRACE_ITER_ANNOTATE | TRACE_ITER_CONTEXT_INFO | TRACE_ITER_SLEEP_TIME |
342 TRACE_ITER_GRAPH_TIME | TRACE_ITER_RECORD_CMD | TRACE_ITER_OVERWRITE |
343 TRACE_ITER_IRQ_INFO;
344
345static int trace_stop_count;
346static DEFINE_RAW_SPINLOCK(tracing_start_lock);
347
348static void wakeup_work_handler(struct work_struct *work)
349{
350 wake_up(&trace_wait);
351}
352
353static DECLARE_DELAYED_WORK(wakeup_work, wakeup_work_handler);
354
355/**
356 * tracing_on - enable tracing buffers
357 *
358 * This function enables tracing buffers that may have been
359 * disabled with tracing_off.
360 */
361void tracing_on(void)
362{
363 if (global_trace.buffer)
364 ring_buffer_record_on(global_trace.buffer);
365 /*
366 * This flag is only looked at when buffers haven't been
367 * allocated yet. We don't really care about the race
368 * between setting this flag and actually turning
369 * on the buffer.
370 */
371 global_trace.buffer_disabled = 0;
372}
373EXPORT_SYMBOL_GPL(tracing_on);
374
375/**
376 * tracing_off - turn off tracing buffers
377 *
378 * This function stops the tracing buffers from recording data.
379 * It does not disable any overhead the tracers themselves may
380 * be causing. This function simply causes all recording to
381 * the ring buffers to fail.
382 */
383void tracing_off(void)
384{
385 if (global_trace.buffer)
386 ring_buffer_record_on(global_trace.buffer);
387 /*
388 * This flag is only looked at when buffers haven't been
389 * allocated yet. We don't really care about the race
390 * between setting this flag and actually turning
391 * on the buffer.
392 */
393 global_trace.buffer_disabled = 1;
394}
395EXPORT_SYMBOL_GPL(tracing_off);
396
397/**
398 * tracing_is_on - show state of ring buffers enabled
399 */
400int tracing_is_on(void)
401{
402 if (global_trace.buffer)
403 return ring_buffer_record_is_on(global_trace.buffer);
404 return !global_trace.buffer_disabled;
405}
406EXPORT_SYMBOL_GPL(tracing_is_on);
407
408/**
409 * trace_wake_up - wake up tasks waiting for trace input
410 *
411 * Schedules a delayed work to wake up any task that is blocked on the
412 * trace_wait queue. These is used with trace_poll for tasks polling the
413 * trace.
414 */
415void trace_wake_up(void)
416{
417 const unsigned long delay = msecs_to_jiffies(2);
418
419 if (trace_flags & TRACE_ITER_BLOCK)
420 return;
421 schedule_delayed_work(&wakeup_work, delay);
422}
423
424static int __init set_buf_size(char *str)
425{
426 unsigned long buf_size;
427
428 if (!str)
429 return 0;
430 buf_size = memparse(str, &str);
431 /* nr_entries can not be zero */
432 if (buf_size == 0)
433 return 0;
434 trace_buf_size = buf_size;
435 return 1;
436}
437__setup("trace_buf_size=", set_buf_size);
438
439static int __init set_tracing_thresh(char *str)
440{
441 unsigned long threshhold;
442 int ret;
443
444 if (!str)
445 return 0;
446 ret = strict_strtoul(str, 0, &threshhold);
447 if (ret < 0)
448 return 0;
449 tracing_thresh = threshhold * 1000;
450 return 1;
451}
452__setup("tracing_thresh=", set_tracing_thresh);
453
454unsigned long nsecs_to_usecs(unsigned long nsecs)
455{
456 return nsecs / 1000;
457}
458
459/* These must match the bit postions in trace_iterator_flags */
460static const char *trace_options[] = {
461 "print-parent",
462 "sym-offset",
463 "sym-addr",
464 "verbose",
465 "raw",
466 "hex",
467 "bin",
468 "block",
469 "stacktrace",
470 "trace_printk",
471 "ftrace_preempt",
472 "branch",
473 "annotate",
474 "userstacktrace",
475 "sym-userobj",
476 "printk-msg-only",
477 "context-info",
478 "latency-format",
479 "sleep-time",
480 "graph-time",
481 "record-cmd",
482 "overwrite",
483 "disable_on_free",
484 "irq-info",
485 NULL
486};
487
488static struct {
489 u64 (*func)(void);
490 const char *name;
491} trace_clocks[] = {
492 { trace_clock_local, "local" },
493 { trace_clock_global, "global" },
494 { trace_clock_counter, "counter" },
495};
496
497int trace_clock_id;
498
499/*
500 * trace_parser_get_init - gets the buffer for trace parser
501 */
502int trace_parser_get_init(struct trace_parser *parser, int size)
503{
504 memset(parser, 0, sizeof(*parser));
505
506 parser->buffer = kmalloc(size, GFP_KERNEL);
507 if (!parser->buffer)
508 return 1;
509
510 parser->size = size;
511 return 0;
512}
513
514/*
515 * trace_parser_put - frees the buffer for trace parser
516 */
517void trace_parser_put(struct trace_parser *parser)
518{
519 kfree(parser->buffer);
520}
521
522/*
523 * trace_get_user - reads the user input string separated by space
524 * (matched by isspace(ch))
525 *
526 * For each string found the 'struct trace_parser' is updated,
527 * and the function returns.
528 *
529 * Returns number of bytes read.
530 *
531 * See kernel/trace/trace.h for 'struct trace_parser' details.
532 */
533int trace_get_user(struct trace_parser *parser, const char __user *ubuf,
534 size_t cnt, loff_t *ppos)
535{
536 char ch;
537 size_t read = 0;
538 ssize_t ret;
539
540 if (!*ppos)
541 trace_parser_clear(parser);
542
543 ret = get_user(ch, ubuf++);
544 if (ret)
545 goto out;
546
547 read++;
548 cnt--;
549
550 /*
551 * The parser is not finished with the last write,
552 * continue reading the user input without skipping spaces.
553 */
554 if (!parser->cont) {
555 /* skip white space */
556 while (cnt && isspace(ch)) {
557 ret = get_user(ch, ubuf++);
558 if (ret)
559 goto out;
560 read++;
561 cnt--;
562 }
563
564 /* only spaces were written */
565 if (isspace(ch)) {
566 *ppos += read;
567 ret = read;
568 goto out;
569 }
570
571 parser->idx = 0;
572 }
573
574 /* read the non-space input */
575 while (cnt && !isspace(ch)) {
576 if (parser->idx < parser->size - 1)
577 parser->buffer[parser->idx++] = ch;
578 else {
579 ret = -EINVAL;
580 goto out;
581 }
582 ret = get_user(ch, ubuf++);
583 if (ret)
584 goto out;
585 read++;
586 cnt--;
587 }
588
589 /* We either got finished input or we have to wait for another call. */
590 if (isspace(ch)) {
591 parser->buffer[parser->idx] = 0;
592 parser->cont = false;
593 } else {
594 parser->cont = true;
595 parser->buffer[parser->idx++] = ch;
596 }
597
598 *ppos += read;
599 ret = read;
600
601out:
602 return ret;
603}
604
605ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, size_t cnt)
606{
607 int len;
608 int ret;
609
610 if (!cnt)
611 return 0;
612
613 if (s->len <= s->readpos)
614 return -EBUSY;
615
616 len = s->len - s->readpos;
617 if (cnt > len)
618 cnt = len;
619 ret = copy_to_user(ubuf, s->buffer + s->readpos, cnt);
620 if (ret == cnt)
621 return -EFAULT;
622
623 cnt -= ret;
624
625 s->readpos += cnt;
626 return cnt;
627}
628
629static ssize_t trace_seq_to_buffer(struct trace_seq *s, void *buf, size_t cnt)
630{
631 int len;
632 void *ret;
633
634 if (s->len <= s->readpos)
635 return -EBUSY;
636
637 len = s->len - s->readpos;
638 if (cnt > len)
639 cnt = len;
640 ret = memcpy(buf, s->buffer + s->readpos, cnt);
641 if (!ret)
642 return -EFAULT;
643
644 s->readpos += cnt;
645 return cnt;
646}
647
648/*
649 * ftrace_max_lock is used to protect the swapping of buffers
650 * when taking a max snapshot. The buffers themselves are
651 * protected by per_cpu spinlocks. But the action of the swap
652 * needs its own lock.
653 *
654 * This is defined as a arch_spinlock_t in order to help
655 * with performance when lockdep debugging is enabled.
656 *
657 * It is also used in other places outside the update_max_tr
658 * so it needs to be defined outside of the
659 * CONFIG_TRACER_MAX_TRACE.
660 */
661static arch_spinlock_t ftrace_max_lock =
662 (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
663
664unsigned long __read_mostly tracing_thresh;
665
666#ifdef CONFIG_TRACER_MAX_TRACE
667unsigned long __read_mostly tracing_max_latency;
668
669/*
670 * Copy the new maximum trace into the separate maximum-trace
671 * structure. (this way the maximum trace is permanently saved,
672 * for later retrieval via /sys/kernel/debug/tracing/latency_trace)
673 */
674static void
675__update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
676{
677 struct trace_array_cpu *data = tr->data[cpu];
678 struct trace_array_cpu *max_data;
679
680 max_tr.cpu = cpu;
681 max_tr.time_start = data->preempt_timestamp;
682
683 max_data = max_tr.data[cpu];
684 max_data->saved_latency = tracing_max_latency;
685 max_data->critical_start = data->critical_start;
686 max_data->critical_end = data->critical_end;
687
688 memcpy(max_data->comm, tsk->comm, TASK_COMM_LEN);
689 max_data->pid = tsk->pid;
690 max_data->uid = task_uid(tsk);
691 max_data->nice = tsk->static_prio - 20 - MAX_RT_PRIO;
692 max_data->policy = tsk->policy;
693 max_data->rt_priority = tsk->rt_priority;
694
695 /* record this tasks comm */
696 tracing_record_cmdline(tsk);
697}
698
699/**
700 * update_max_tr - snapshot all trace buffers from global_trace to max_tr
701 * @tr: tracer
702 * @tsk: the task with the latency
703 * @cpu: The cpu that initiated the trace.
704 *
705 * Flip the buffers between the @tr and the max_tr and record information
706 * about which task was the cause of this latency.
707 */
708void
709update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
710{
711 struct ring_buffer *buf = tr->buffer;
712
713 if (trace_stop_count)
714 return;
715
716 WARN_ON_ONCE(!irqs_disabled());
717 if (!current_trace->use_max_tr) {
718 WARN_ON_ONCE(1);
719 return;
720 }
721 arch_spin_lock(&ftrace_max_lock);
722
723 tr->buffer = max_tr.buffer;
724 max_tr.buffer = buf;
725
726 __update_max_tr(tr, tsk, cpu);
727 arch_spin_unlock(&ftrace_max_lock);
728}
729
730/**
731 * update_max_tr_single - only copy one trace over, and reset the rest
732 * @tr - tracer
733 * @tsk - task with the latency
734 * @cpu - the cpu of the buffer to copy.
735 *
736 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
737 */
738void
739update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
740{
741 int ret;
742
743 if (trace_stop_count)
744 return;
745
746 WARN_ON_ONCE(!irqs_disabled());
747 if (!current_trace->use_max_tr) {
748 WARN_ON_ONCE(1);
749 return;
750 }
751
752 arch_spin_lock(&ftrace_max_lock);
753
754 ftrace_disable_cpu();
755
756 ret = ring_buffer_swap_cpu(max_tr.buffer, tr->buffer, cpu);
757
758 if (ret == -EBUSY) {
759 /*
760 * We failed to swap the buffer due to a commit taking
761 * place on this CPU. We fail to record, but we reset
762 * the max trace buffer (no one writes directly to it)
763 * and flag that it failed.
764 */
765 trace_array_printk(&max_tr, _THIS_IP_,
766 "Failed to swap buffers due to commit in progress\n");
767 }
768
769 ftrace_enable_cpu();
770
771 WARN_ON_ONCE(ret && ret != -EAGAIN && ret != -EBUSY);
772
773 __update_max_tr(tr, tsk, cpu);
774 arch_spin_unlock(&ftrace_max_lock);
775}
776#endif /* CONFIG_TRACER_MAX_TRACE */
777
778/**
779 * register_tracer - register a tracer with the ftrace system.
780 * @type - the plugin for the tracer
781 *
782 * Register a new plugin tracer.
783 */
784int register_tracer(struct tracer *type)
785__releases(kernel_lock)
786__acquires(kernel_lock)
787{
788 struct tracer *t;
789 int ret = 0;
790
791 if (!type->name) {
792 pr_info("Tracer must have a name\n");
793 return -1;
794 }
795
796 if (strlen(type->name) >= MAX_TRACER_SIZE) {
797 pr_info("Tracer has a name longer than %d\n", MAX_TRACER_SIZE);
798 return -1;
799 }
800
801 mutex_lock(&trace_types_lock);
802
803 tracing_selftest_running = true;
804
805 for (t = trace_types; t; t = t->next) {
806 if (strcmp(type->name, t->name) == 0) {
807 /* already found */
808 pr_info("Tracer %s already registered\n",
809 type->name);
810 ret = -1;
811 goto out;
812 }
813 }
814
815 if (!type->set_flag)
816 type->set_flag = &dummy_set_flag;
817 if (!type->flags)
818 type->flags = &dummy_tracer_flags;
819 else
820 if (!type->flags->opts)
821 type->flags->opts = dummy_tracer_opt;
822 if (!type->wait_pipe)
823 type->wait_pipe = default_wait_pipe;
824
825
826#ifdef CONFIG_FTRACE_STARTUP_TEST
827 if (type->selftest && !tracing_selftest_disabled) {
828 struct tracer *saved_tracer = current_trace;
829 struct trace_array *tr = &global_trace;
830
831 /*
832 * Run a selftest on this tracer.
833 * Here we reset the trace buffer, and set the current
834 * tracer to be this tracer. The tracer can then run some
835 * internal tracing to verify that everything is in order.
836 * If we fail, we do not register this tracer.
837 */
838 tracing_reset_online_cpus(tr);
839
840 current_trace = type;
841
842 /* If we expanded the buffers, make sure the max is expanded too */
843 if (ring_buffer_expanded && type->use_max_tr)
844 ring_buffer_resize(max_tr.buffer, trace_buf_size);
845
846 /* the test is responsible for initializing and enabling */
847 pr_info("Testing tracer %s: ", type->name);
848 ret = type->selftest(type, tr);
849 /* the test is responsible for resetting too */
850 current_trace = saved_tracer;
851 if (ret) {
852 printk(KERN_CONT "FAILED!\n");
853 goto out;
854 }
855 /* Only reset on passing, to avoid touching corrupted buffers */
856 tracing_reset_online_cpus(tr);
857
858 /* Shrink the max buffer again */
859 if (ring_buffer_expanded && type->use_max_tr)
860 ring_buffer_resize(max_tr.buffer, 1);
861
862 printk(KERN_CONT "PASSED\n");
863 }
864#endif
865
866 type->next = trace_types;
867 trace_types = type;
868
869 out:
870 tracing_selftest_running = false;
871 mutex_unlock(&trace_types_lock);
872
873 if (ret || !default_bootup_tracer)
874 goto out_unlock;
875
876 if (strncmp(default_bootup_tracer, type->name, MAX_TRACER_SIZE))
877 goto out_unlock;
878
879 printk(KERN_INFO "Starting tracer '%s'\n", type->name);
880 /* Do we want this tracer to start on bootup? */
881 tracing_set_tracer(type->name);
882 default_bootup_tracer = NULL;
883 /* disable other selftests, since this will break it. */
884 tracing_selftest_disabled = 1;
885#ifdef CONFIG_FTRACE_STARTUP_TEST
886 printk(KERN_INFO "Disabling FTRACE selftests due to running tracer '%s'\n",
887 type->name);
888#endif
889
890 out_unlock:
891 return ret;
892}
893
894void unregister_tracer(struct tracer *type)
895{
896 struct tracer **t;
897
898 mutex_lock(&trace_types_lock);
899 for (t = &trace_types; *t; t = &(*t)->next) {
900 if (*t == type)
901 goto found;
902 }
903 pr_info("Tracer %s not registered\n", type->name);
904 goto out;
905
906 found:
907 *t = (*t)->next;
908
909 if (type == current_trace && tracer_enabled) {
910 tracer_enabled = 0;
911 tracing_stop();
912 if (current_trace->stop)
913 current_trace->stop(&global_trace);
914 current_trace = &nop_trace;
915 }
916out:
917 mutex_unlock(&trace_types_lock);
918}
919
920static void __tracing_reset(struct ring_buffer *buffer, int cpu)
921{
922 ftrace_disable_cpu();
923 ring_buffer_reset_cpu(buffer, cpu);
924 ftrace_enable_cpu();
925}
926
927void tracing_reset(struct trace_array *tr, int cpu)
928{
929 struct ring_buffer *buffer = tr->buffer;
930
931 ring_buffer_record_disable(buffer);
932
933 /* Make sure all commits have finished */
934 synchronize_sched();
935 __tracing_reset(buffer, cpu);
936
937 ring_buffer_record_enable(buffer);
938}
939
940void tracing_reset_online_cpus(struct trace_array *tr)
941{
942 struct ring_buffer *buffer = tr->buffer;
943 int cpu;
944
945 ring_buffer_record_disable(buffer);
946
947 /* Make sure all commits have finished */
948 synchronize_sched();
949
950 tr->time_start = ftrace_now(tr->cpu);
951
952 for_each_online_cpu(cpu)
953 __tracing_reset(buffer, cpu);
954
955 ring_buffer_record_enable(buffer);
956}
957
958void tracing_reset_current(int cpu)
959{
960 tracing_reset(&global_trace, cpu);
961}
962
963void tracing_reset_current_online_cpus(void)
964{
965 tracing_reset_online_cpus(&global_trace);
966}
967
968#define SAVED_CMDLINES 128
969#define NO_CMDLINE_MAP UINT_MAX
970static unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1];
971static unsigned map_cmdline_to_pid[SAVED_CMDLINES];
972static char saved_cmdlines[SAVED_CMDLINES][TASK_COMM_LEN];
973static int cmdline_idx;
974static arch_spinlock_t trace_cmdline_lock = __ARCH_SPIN_LOCK_UNLOCKED;
975
976/* temporary disable recording */
977static atomic_t trace_record_cmdline_disabled __read_mostly;
978
979static void trace_init_cmdlines(void)
980{
981 memset(&map_pid_to_cmdline, NO_CMDLINE_MAP, sizeof(map_pid_to_cmdline));
982 memset(&map_cmdline_to_pid, NO_CMDLINE_MAP, sizeof(map_cmdline_to_pid));
983 cmdline_idx = 0;
984}
985
986int is_tracing_stopped(void)
987{
988 return trace_stop_count;
989}
990
991/**
992 * ftrace_off_permanent - disable all ftrace code permanently
993 *
994 * This should only be called when a serious anomally has
995 * been detected. This will turn off the function tracing,
996 * ring buffers, and other tracing utilites. It takes no
997 * locks and can be called from any context.
998 */
999void ftrace_off_permanent(void)
1000{
1001 tracing_disabled = 1;
1002 ftrace_stop();
1003 tracing_off_permanent();
1004}
1005
1006/**
1007 * tracing_start - quick start of the tracer
1008 *
1009 * If tracing is enabled but was stopped by tracing_stop,
1010 * this will start the tracer back up.
1011 */
1012void tracing_start(void)
1013{
1014 struct ring_buffer *buffer;
1015 unsigned long flags;
1016
1017 if (tracing_disabled)
1018 return;
1019
1020 raw_spin_lock_irqsave(&tracing_start_lock, flags);
1021 if (--trace_stop_count) {
1022 if (trace_stop_count < 0) {
1023 /* Someone screwed up their debugging */
1024 WARN_ON_ONCE(1);
1025 trace_stop_count = 0;
1026 }
1027 goto out;
1028 }
1029
1030 /* Prevent the buffers from switching */
1031 arch_spin_lock(&ftrace_max_lock);
1032
1033 buffer = global_trace.buffer;
1034 if (buffer)
1035 ring_buffer_record_enable(buffer);
1036
1037 buffer = max_tr.buffer;
1038 if (buffer)
1039 ring_buffer_record_enable(buffer);
1040
1041 arch_spin_unlock(&ftrace_max_lock);
1042
1043 ftrace_start();
1044 out:
1045 raw_spin_unlock_irqrestore(&tracing_start_lock, flags);
1046}
1047
1048/**
1049 * tracing_stop - quick stop of the tracer
1050 *
1051 * Light weight way to stop tracing. Use in conjunction with
1052 * tracing_start.
1053 */
1054void tracing_stop(void)
1055{
1056 struct ring_buffer *buffer;
1057 unsigned long flags;
1058
1059 ftrace_stop();
1060 raw_spin_lock_irqsave(&tracing_start_lock, flags);
1061 if (trace_stop_count++)
1062 goto out;
1063
1064 /* Prevent the buffers from switching */
1065 arch_spin_lock(&ftrace_max_lock);
1066
1067 buffer = global_trace.buffer;
1068 if (buffer)
1069 ring_buffer_record_disable(buffer);
1070
1071 buffer = max_tr.buffer;
1072 if (buffer)
1073 ring_buffer_record_disable(buffer);
1074
1075 arch_spin_unlock(&ftrace_max_lock);
1076
1077 out:
1078 raw_spin_unlock_irqrestore(&tracing_start_lock, flags);
1079}
1080
1081void trace_stop_cmdline_recording(void);
1082
1083static void trace_save_cmdline(struct task_struct *tsk)
1084{
1085 unsigned pid, idx;
1086
1087 if (!tsk->pid || unlikely(tsk->pid > PID_MAX_DEFAULT))
1088 return;
1089
1090 /*
1091 * It's not the end of the world if we don't get
1092 * the lock, but we also don't want to spin
1093 * nor do we want to disable interrupts,
1094 * so if we miss here, then better luck next time.
1095 */
1096 if (!arch_spin_trylock(&trace_cmdline_lock))
1097 return;
1098
1099 idx = map_pid_to_cmdline[tsk->pid];
1100 if (idx == NO_CMDLINE_MAP) {
1101 idx = (cmdline_idx + 1) % SAVED_CMDLINES;
1102
1103 /*
1104 * Check whether the cmdline buffer at idx has a pid
1105 * mapped. We are going to overwrite that entry so we
1106 * need to clear the map_pid_to_cmdline. Otherwise we
1107 * would read the new comm for the old pid.
1108 */
1109 pid = map_cmdline_to_pid[idx];
1110 if (pid != NO_CMDLINE_MAP)
1111 map_pid_to_cmdline[pid] = NO_CMDLINE_MAP;
1112
1113 map_cmdline_to_pid[idx] = tsk->pid;
1114 map_pid_to_cmdline[tsk->pid] = idx;
1115
1116 cmdline_idx = idx;
1117 }
1118
1119 memcpy(&saved_cmdlines[idx], tsk->comm, TASK_COMM_LEN);
1120
1121 arch_spin_unlock(&trace_cmdline_lock);
1122}
1123
1124void trace_find_cmdline(int pid, char comm[])
1125{
1126 unsigned map;
1127
1128 if (!pid) {
1129 strcpy(comm, "<idle>");
1130 return;
1131 }
1132
1133 if (WARN_ON_ONCE(pid < 0)) {
1134 strcpy(comm, "<XXX>");
1135 return;
1136 }
1137
1138 if (pid > PID_MAX_DEFAULT) {
1139 strcpy(comm, "<...>");
1140 return;
1141 }
1142
1143 preempt_disable();
1144 arch_spin_lock(&trace_cmdline_lock);
1145 map = map_pid_to_cmdline[pid];
1146 if (map != NO_CMDLINE_MAP)
1147 strcpy(comm, saved_cmdlines[map]);
1148 else
1149 strcpy(comm, "<...>");
1150
1151 arch_spin_unlock(&trace_cmdline_lock);
1152 preempt_enable();
1153}
1154
1155void tracing_record_cmdline(struct task_struct *tsk)
1156{
1157 if (atomic_read(&trace_record_cmdline_disabled) || !tracer_enabled ||
1158 !tracing_is_on())
1159 return;
1160
1161 trace_save_cmdline(tsk);
1162}
1163
1164void
1165tracing_generic_entry_update(struct trace_entry *entry, unsigned long flags,
1166 int pc)
1167{
1168 struct task_struct *tsk = current;
1169
1170 entry->preempt_count = pc & 0xff;
1171 entry->pid = (tsk) ? tsk->pid : 0;
1172 entry->padding = 0;
1173 entry->flags =
1174#ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
1175 (irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) |
1176#else
1177 TRACE_FLAG_IRQS_NOSUPPORT |
1178#endif
1179 ((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) |
1180 ((pc & SOFTIRQ_MASK) ? TRACE_FLAG_SOFTIRQ : 0) |
1181 (need_resched() ? TRACE_FLAG_NEED_RESCHED : 0);
1182}
1183EXPORT_SYMBOL_GPL(tracing_generic_entry_update);
1184
1185struct ring_buffer_event *
1186trace_buffer_lock_reserve(struct ring_buffer *buffer,
1187 int type,
1188 unsigned long len,
1189 unsigned long flags, int pc)
1190{
1191 struct ring_buffer_event *event;
1192
1193 event = ring_buffer_lock_reserve(buffer, len);
1194 if (event != NULL) {
1195 struct trace_entry *ent = ring_buffer_event_data(event);
1196
1197 tracing_generic_entry_update(ent, flags, pc);
1198 ent->type = type;
1199 }
1200
1201 return event;
1202}
1203
1204static inline void
1205__trace_buffer_unlock_commit(struct ring_buffer *buffer,
1206 struct ring_buffer_event *event,
1207 unsigned long flags, int pc,
1208 int wake)
1209{
1210 ring_buffer_unlock_commit(buffer, event);
1211
1212 ftrace_trace_stack(buffer, flags, 6, pc);
1213 ftrace_trace_userstack(buffer, flags, pc);
1214
1215 if (wake)
1216 trace_wake_up();
1217}
1218
1219void trace_buffer_unlock_commit(struct ring_buffer *buffer,
1220 struct ring_buffer_event *event,
1221 unsigned long flags, int pc)
1222{
1223 __trace_buffer_unlock_commit(buffer, event, flags, pc, 1);
1224}
1225
1226struct ring_buffer_event *
1227trace_current_buffer_lock_reserve(struct ring_buffer **current_rb,
1228 int type, unsigned long len,
1229 unsigned long flags, int pc)
1230{
1231 *current_rb = global_trace.buffer;
1232 return trace_buffer_lock_reserve(*current_rb,
1233 type, len, flags, pc);
1234}
1235EXPORT_SYMBOL_GPL(trace_current_buffer_lock_reserve);
1236
1237void trace_current_buffer_unlock_commit(struct ring_buffer *buffer,
1238 struct ring_buffer_event *event,
1239 unsigned long flags, int pc)
1240{
1241 __trace_buffer_unlock_commit(buffer, event, flags, pc, 1);
1242}
1243EXPORT_SYMBOL_GPL(trace_current_buffer_unlock_commit);
1244
1245void trace_nowake_buffer_unlock_commit(struct ring_buffer *buffer,
1246 struct ring_buffer_event *event,
1247 unsigned long flags, int pc)
1248{
1249 __trace_buffer_unlock_commit(buffer, event, flags, pc, 0);
1250}
1251EXPORT_SYMBOL_GPL(trace_nowake_buffer_unlock_commit);
1252
1253void trace_nowake_buffer_unlock_commit_regs(struct ring_buffer *buffer,
1254 struct ring_buffer_event *event,
1255 unsigned long flags, int pc,
1256 struct pt_regs *regs)
1257{
1258 ring_buffer_unlock_commit(buffer, event);
1259
1260 ftrace_trace_stack_regs(buffer, flags, 0, pc, regs);
1261 ftrace_trace_userstack(buffer, flags, pc);
1262}
1263EXPORT_SYMBOL_GPL(trace_nowake_buffer_unlock_commit_regs);
1264
1265void trace_current_buffer_discard_commit(struct ring_buffer *buffer,
1266 struct ring_buffer_event *event)
1267{
1268 ring_buffer_discard_commit(buffer, event);
1269}
1270EXPORT_SYMBOL_GPL(trace_current_buffer_discard_commit);
1271
1272void
1273trace_function(struct trace_array *tr,
1274 unsigned long ip, unsigned long parent_ip, unsigned long flags,
1275 int pc)
1276{
1277 struct ftrace_event_call *call = &event_function;
1278 struct ring_buffer *buffer = tr->buffer;
1279 struct ring_buffer_event *event;
1280 struct ftrace_entry *entry;
1281
1282 /* If we are reading the ring buffer, don't trace */
1283 if (unlikely(__this_cpu_read(ftrace_cpu_disabled)))
1284 return;
1285
1286 event = trace_buffer_lock_reserve(buffer, TRACE_FN, sizeof(*entry),
1287 flags, pc);
1288 if (!event)
1289 return;
1290 entry = ring_buffer_event_data(event);
1291 entry->ip = ip;
1292 entry->parent_ip = parent_ip;
1293
1294 if (!filter_check_discard(call, entry, buffer, event))
1295 ring_buffer_unlock_commit(buffer, event);
1296}
1297
1298void
1299ftrace(struct trace_array *tr, struct trace_array_cpu *data,
1300 unsigned long ip, unsigned long parent_ip, unsigned long flags,
1301 int pc)
1302{
1303 if (likely(!atomic_read(&data->disabled)))
1304 trace_function(tr, ip, parent_ip, flags, pc);
1305}
1306
1307#ifdef CONFIG_STACKTRACE
1308
1309#define FTRACE_STACK_MAX_ENTRIES (PAGE_SIZE / sizeof(unsigned long))
1310struct ftrace_stack {
1311 unsigned long calls[FTRACE_STACK_MAX_ENTRIES];
1312};
1313
1314static DEFINE_PER_CPU(struct ftrace_stack, ftrace_stack);
1315static DEFINE_PER_CPU(int, ftrace_stack_reserve);
1316
1317static void __ftrace_trace_stack(struct ring_buffer *buffer,
1318 unsigned long flags,
1319 int skip, int pc, struct pt_regs *regs)
1320{
1321 struct ftrace_event_call *call = &event_kernel_stack;
1322 struct ring_buffer_event *event;
1323 struct stack_entry *entry;
1324 struct stack_trace trace;
1325 int use_stack;
1326 int size = FTRACE_STACK_ENTRIES;
1327
1328 trace.nr_entries = 0;
1329 trace.skip = skip;
1330
1331 /*
1332 * Since events can happen in NMIs there's no safe way to
1333 * use the per cpu ftrace_stacks. We reserve it and if an interrupt
1334 * or NMI comes in, it will just have to use the default
1335 * FTRACE_STACK_SIZE.
1336 */
1337 preempt_disable_notrace();
1338
1339 use_stack = ++__get_cpu_var(ftrace_stack_reserve);
1340 /*
1341 * We don't need any atomic variables, just a barrier.
1342 * If an interrupt comes in, we don't care, because it would
1343 * have exited and put the counter back to what we want.
1344 * We just need a barrier to keep gcc from moving things
1345 * around.
1346 */
1347 barrier();
1348 if (use_stack == 1) {
1349 trace.entries = &__get_cpu_var(ftrace_stack).calls[0];
1350 trace.max_entries = FTRACE_STACK_MAX_ENTRIES;
1351
1352 if (regs)
1353 save_stack_trace_regs(regs, &trace);
1354 else
1355 save_stack_trace(&trace);
1356
1357 if (trace.nr_entries > size)
1358 size = trace.nr_entries;
1359 } else
1360 /* From now on, use_stack is a boolean */
1361 use_stack = 0;
1362
1363 size *= sizeof(unsigned long);
1364
1365 event = trace_buffer_lock_reserve(buffer, TRACE_STACK,
1366 sizeof(*entry) + size, flags, pc);
1367 if (!event)
1368 goto out;
1369 entry = ring_buffer_event_data(event);
1370
1371 memset(&entry->caller, 0, size);
1372
1373 if (use_stack)
1374 memcpy(&entry->caller, trace.entries,
1375 trace.nr_entries * sizeof(unsigned long));
1376 else {
1377 trace.max_entries = FTRACE_STACK_ENTRIES;
1378 trace.entries = entry->caller;
1379 if (regs)
1380 save_stack_trace_regs(regs, &trace);
1381 else
1382 save_stack_trace(&trace);
1383 }
1384
1385 entry->size = trace.nr_entries;
1386
1387 if (!filter_check_discard(call, entry, buffer, event))
1388 ring_buffer_unlock_commit(buffer, event);
1389
1390 out:
1391 /* Again, don't let gcc optimize things here */
1392 barrier();
1393 __get_cpu_var(ftrace_stack_reserve)--;
1394 preempt_enable_notrace();
1395
1396}
1397
1398void ftrace_trace_stack_regs(struct ring_buffer *buffer, unsigned long flags,
1399 int skip, int pc, struct pt_regs *regs)
1400{
1401 if (!(trace_flags & TRACE_ITER_STACKTRACE))
1402 return;
1403
1404 __ftrace_trace_stack(buffer, flags, skip, pc, regs);
1405}
1406
1407void ftrace_trace_stack(struct ring_buffer *buffer, unsigned long flags,
1408 int skip, int pc)
1409{
1410 if (!(trace_flags & TRACE_ITER_STACKTRACE))
1411 return;
1412
1413 __ftrace_trace_stack(buffer, flags, skip, pc, NULL);
1414}
1415
1416void __trace_stack(struct trace_array *tr, unsigned long flags, int skip,
1417 int pc)
1418{
1419 __ftrace_trace_stack(tr->buffer, flags, skip, pc, NULL);
1420}
1421
1422/**
1423 * trace_dump_stack - record a stack back trace in the trace buffer
1424 */
1425void trace_dump_stack(void)
1426{
1427 unsigned long flags;
1428
1429 if (tracing_disabled || tracing_selftest_running)
1430 return;
1431
1432 local_save_flags(flags);
1433
1434 /* skipping 3 traces, seems to get us at the caller of this function */
1435 __ftrace_trace_stack(global_trace.buffer, flags, 3, preempt_count(), NULL);
1436}
1437
1438static DEFINE_PER_CPU(int, user_stack_count);
1439
1440void
1441ftrace_trace_userstack(struct ring_buffer *buffer, unsigned long flags, int pc)
1442{
1443 struct ftrace_event_call *call = &event_user_stack;
1444 struct ring_buffer_event *event;
1445 struct userstack_entry *entry;
1446 struct stack_trace trace;
1447
1448 if (!(trace_flags & TRACE_ITER_USERSTACKTRACE))
1449 return;
1450
1451 /*
1452 * NMIs can not handle page faults, even with fix ups.
1453 * The save user stack can (and often does) fault.
1454 */
1455 if (unlikely(in_nmi()))
1456 return;
1457
1458 /*
1459 * prevent recursion, since the user stack tracing may
1460 * trigger other kernel events.
1461 */
1462 preempt_disable();
1463 if (__this_cpu_read(user_stack_count))
1464 goto out;
1465
1466 __this_cpu_inc(user_stack_count);
1467
1468 event = trace_buffer_lock_reserve(buffer, TRACE_USER_STACK,
1469 sizeof(*entry), flags, pc);
1470 if (!event)
1471 goto out_drop_count;
1472 entry = ring_buffer_event_data(event);
1473
1474 entry->tgid = current->tgid;
1475 memset(&entry->caller, 0, sizeof(entry->caller));
1476
1477 trace.nr_entries = 0;
1478 trace.max_entries = FTRACE_STACK_ENTRIES;
1479 trace.skip = 0;
1480 trace.entries = entry->caller;
1481
1482 save_stack_trace_user(&trace);
1483 if (!filter_check_discard(call, entry, buffer, event))
1484 ring_buffer_unlock_commit(buffer, event);
1485
1486 out_drop_count:
1487 __this_cpu_dec(user_stack_count);
1488 out:
1489 preempt_enable();
1490}
1491
1492#ifdef UNUSED
1493static void __trace_userstack(struct trace_array *tr, unsigned long flags)
1494{
1495 ftrace_trace_userstack(tr, flags, preempt_count());
1496}
1497#endif /* UNUSED */
1498
1499#endif /* CONFIG_STACKTRACE */
1500
1501/* created for use with alloc_percpu */
1502struct trace_buffer_struct {
1503 char buffer[TRACE_BUF_SIZE];
1504};
1505
1506static struct trace_buffer_struct *trace_percpu_buffer;
1507static struct trace_buffer_struct *trace_percpu_sirq_buffer;
1508static struct trace_buffer_struct *trace_percpu_irq_buffer;
1509static struct trace_buffer_struct *trace_percpu_nmi_buffer;
1510
1511/*
1512 * The buffer used is dependent on the context. There is a per cpu
1513 * buffer for normal context, softirq contex, hard irq context and
1514 * for NMI context. Thise allows for lockless recording.
1515 *
1516 * Note, if the buffers failed to be allocated, then this returns NULL
1517 */
1518static char *get_trace_buf(void)
1519{
1520 struct trace_buffer_struct *percpu_buffer;
1521 struct trace_buffer_struct *buffer;
1522
1523 /*
1524 * If we have allocated per cpu buffers, then we do not
1525 * need to do any locking.
1526 */
1527 if (in_nmi())
1528 percpu_buffer = trace_percpu_nmi_buffer;
1529 else if (in_irq())
1530 percpu_buffer = trace_percpu_irq_buffer;
1531 else if (in_softirq())
1532 percpu_buffer = trace_percpu_sirq_buffer;
1533 else
1534 percpu_buffer = trace_percpu_buffer;
1535
1536 if (!percpu_buffer)
1537 return NULL;
1538
1539 buffer = per_cpu_ptr(percpu_buffer, smp_processor_id());
1540
1541 return buffer->buffer;
1542}
1543
1544static int alloc_percpu_trace_buffer(void)
1545{
1546 struct trace_buffer_struct *buffers;
1547 struct trace_buffer_struct *sirq_buffers;
1548 struct trace_buffer_struct *irq_buffers;
1549 struct trace_buffer_struct *nmi_buffers;
1550
1551 buffers = alloc_percpu(struct trace_buffer_struct);
1552 if (!buffers)
1553 goto err_warn;
1554
1555 sirq_buffers = alloc_percpu(struct trace_buffer_struct);
1556 if (!sirq_buffers)
1557 goto err_sirq;
1558
1559 irq_buffers = alloc_percpu(struct trace_buffer_struct);
1560 if (!irq_buffers)
1561 goto err_irq;
1562
1563 nmi_buffers = alloc_percpu(struct trace_buffer_struct);
1564 if (!nmi_buffers)
1565 goto err_nmi;
1566
1567 trace_percpu_buffer = buffers;
1568 trace_percpu_sirq_buffer = sirq_buffers;
1569 trace_percpu_irq_buffer = irq_buffers;
1570 trace_percpu_nmi_buffer = nmi_buffers;
1571
1572 return 0;
1573
1574 err_nmi:
1575 free_percpu(irq_buffers);
1576 err_irq:
1577 free_percpu(sirq_buffers);
1578 err_sirq:
1579 free_percpu(buffers);
1580 err_warn:
1581 WARN(1, "Could not allocate percpu trace_printk buffer");
1582 return -ENOMEM;
1583}
1584
1585void trace_printk_init_buffers(void)
1586{
1587 static int buffers_allocated;
1588
1589 if (buffers_allocated)
1590 return;
1591
1592 if (alloc_percpu_trace_buffer())
1593 return;
1594
1595 pr_info("ftrace: Allocated trace_printk buffers\n");
1596
1597 buffers_allocated = 1;
1598}
1599
1600/**
1601 * trace_vbprintk - write binary msg to tracing buffer
1602 *
1603 */
1604int trace_vbprintk(unsigned long ip, const char *fmt, va_list args)
1605{
1606 struct ftrace_event_call *call = &event_bprint;
1607 struct ring_buffer_event *event;
1608 struct ring_buffer *buffer;
1609 struct trace_array *tr = &global_trace;
1610 struct bprint_entry *entry;
1611 unsigned long flags;
1612 char *tbuffer;
1613 int len = 0, size, pc;
1614
1615 if (unlikely(tracing_selftest_running || tracing_disabled))
1616 return 0;
1617
1618 /* Don't pollute graph traces with trace_vprintk internals */
1619 pause_graph_tracing();
1620
1621 pc = preempt_count();
1622 preempt_disable_notrace();
1623
1624 tbuffer = get_trace_buf();
1625 if (!tbuffer) {
1626 len = 0;
1627 goto out;
1628 }
1629
1630 len = vbin_printf((u32 *)tbuffer, TRACE_BUF_SIZE/sizeof(int), fmt, args);
1631
1632 if (len > TRACE_BUF_SIZE/sizeof(int) || len < 0)
1633 goto out;
1634
1635 local_save_flags(flags);
1636 size = sizeof(*entry) + sizeof(u32) * len;
1637 buffer = tr->buffer;
1638 event = trace_buffer_lock_reserve(buffer, TRACE_BPRINT, size,
1639 flags, pc);
1640 if (!event)
1641 goto out;
1642 entry = ring_buffer_event_data(event);
1643 entry->ip = ip;
1644 entry->fmt = fmt;
1645
1646 memcpy(entry->buf, tbuffer, sizeof(u32) * len);
1647 if (!filter_check_discard(call, entry, buffer, event)) {
1648 ring_buffer_unlock_commit(buffer, event);
1649 ftrace_trace_stack(buffer, flags, 6, pc);
1650 }
1651
1652out:
1653 preempt_enable_notrace();
1654 unpause_graph_tracing();
1655
1656 return len;
1657}
1658EXPORT_SYMBOL_GPL(trace_vbprintk);
1659
1660int trace_array_printk(struct trace_array *tr,
1661 unsigned long ip, const char *fmt, ...)
1662{
1663 int ret;
1664 va_list ap;
1665
1666 if (!(trace_flags & TRACE_ITER_PRINTK))
1667 return 0;
1668
1669 va_start(ap, fmt);
1670 ret = trace_array_vprintk(tr, ip, fmt, ap);
1671 va_end(ap);
1672 return ret;
1673}
1674
1675int trace_array_vprintk(struct trace_array *tr,
1676 unsigned long ip, const char *fmt, va_list args)
1677{
1678 struct ftrace_event_call *call = &event_print;
1679 struct ring_buffer_event *event;
1680 struct ring_buffer *buffer;
1681 int len = 0, size, pc;
1682 struct print_entry *entry;
1683 unsigned long flags;
1684 char *tbuffer;
1685
1686 if (tracing_disabled || tracing_selftest_running)
1687 return 0;
1688
1689 /* Don't pollute graph traces with trace_vprintk internals */
1690 pause_graph_tracing();
1691
1692 pc = preempt_count();
1693 preempt_disable_notrace();
1694
1695
1696 tbuffer = get_trace_buf();
1697 if (!tbuffer) {
1698 len = 0;
1699 goto out;
1700 }
1701
1702 len = vsnprintf(tbuffer, TRACE_BUF_SIZE, fmt, args);
1703 if (len > TRACE_BUF_SIZE)
1704 goto out;
1705
1706 local_save_flags(flags);
1707 size = sizeof(*entry) + len + 1;
1708 buffer = tr->buffer;
1709 event = trace_buffer_lock_reserve(buffer, TRACE_PRINT, size,
1710 flags, pc);
1711 if (!event)
1712 goto out;
1713 entry = ring_buffer_event_data(event);
1714 entry->ip = ip;
1715
1716 memcpy(&entry->buf, tbuffer, len);
1717 entry->buf[len] = '\0';
1718 if (!filter_check_discard(call, entry, buffer, event)) {
1719 ring_buffer_unlock_commit(buffer, event);
1720 ftrace_trace_stack(buffer, flags, 6, pc);
1721 }
1722 out:
1723 preempt_enable_notrace();
1724 unpause_graph_tracing();
1725
1726 return len;
1727}
1728
1729int trace_vprintk(unsigned long ip, const char *fmt, va_list args)
1730{
1731 return trace_array_vprintk(&global_trace, ip, fmt, args);
1732}
1733EXPORT_SYMBOL_GPL(trace_vprintk);
1734
1735static void trace_iterator_increment(struct trace_iterator *iter)
1736{
1737 /* Don't allow ftrace to trace into the ring buffers */
1738 ftrace_disable_cpu();
1739
1740 iter->idx++;
1741 if (iter->buffer_iter[iter->cpu])
1742 ring_buffer_read(iter->buffer_iter[iter->cpu], NULL);
1743
1744 ftrace_enable_cpu();
1745}
1746
1747static struct trace_entry *
1748peek_next_entry(struct trace_iterator *iter, int cpu, u64 *ts,
1749 unsigned long *lost_events)
1750{
1751 struct ring_buffer_event *event;
1752 struct ring_buffer_iter *buf_iter = iter->buffer_iter[cpu];
1753
1754 /* Don't allow ftrace to trace into the ring buffers */
1755 ftrace_disable_cpu();
1756
1757 if (buf_iter)
1758 event = ring_buffer_iter_peek(buf_iter, ts);
1759 else
1760 event = ring_buffer_peek(iter->tr->buffer, cpu, ts,
1761 lost_events);
1762
1763 ftrace_enable_cpu();
1764
1765 if (event) {
1766 iter->ent_size = ring_buffer_event_length(event);
1767 return ring_buffer_event_data(event);
1768 }
1769 iter->ent_size = 0;
1770 return NULL;
1771}
1772
1773static struct trace_entry *
1774__find_next_entry(struct trace_iterator *iter, int *ent_cpu,
1775 unsigned long *missing_events, u64 *ent_ts)
1776{
1777 struct ring_buffer *buffer = iter->tr->buffer;
1778 struct trace_entry *ent, *next = NULL;
1779 unsigned long lost_events = 0, next_lost = 0;
1780 int cpu_file = iter->cpu_file;
1781 u64 next_ts = 0, ts;
1782 int next_cpu = -1;
1783 int next_size = 0;
1784 int cpu;
1785
1786 /*
1787 * If we are in a per_cpu trace file, don't bother by iterating over
1788 * all cpu and peek directly.
1789 */
1790 if (cpu_file > TRACE_PIPE_ALL_CPU) {
1791 if (ring_buffer_empty_cpu(buffer, cpu_file))
1792 return NULL;
1793 ent = peek_next_entry(iter, cpu_file, ent_ts, missing_events);
1794 if (ent_cpu)
1795 *ent_cpu = cpu_file;
1796
1797 return ent;
1798 }
1799
1800 for_each_tracing_cpu(cpu) {
1801
1802 if (ring_buffer_empty_cpu(buffer, cpu))
1803 continue;
1804
1805 ent = peek_next_entry(iter, cpu, &ts, &lost_events);
1806
1807 /*
1808 * Pick the entry with the smallest timestamp:
1809 */
1810 if (ent && (!next || ts < next_ts)) {
1811 next = ent;
1812 next_cpu = cpu;
1813 next_ts = ts;
1814 next_lost = lost_events;
1815 next_size = iter->ent_size;
1816 }
1817 }
1818
1819 iter->ent_size = next_size;
1820
1821 if (ent_cpu)
1822 *ent_cpu = next_cpu;
1823
1824 if (ent_ts)
1825 *ent_ts = next_ts;
1826
1827 if (missing_events)
1828 *missing_events = next_lost;
1829
1830 return next;
1831}
1832
1833/* Find the next real entry, without updating the iterator itself */
1834struct trace_entry *trace_find_next_entry(struct trace_iterator *iter,
1835 int *ent_cpu, u64 *ent_ts)
1836{
1837 return __find_next_entry(iter, ent_cpu, NULL, ent_ts);
1838}
1839
1840/* Find the next real entry, and increment the iterator to the next entry */
1841void *trace_find_next_entry_inc(struct trace_iterator *iter)
1842{
1843 iter->ent = __find_next_entry(iter, &iter->cpu,
1844 &iter->lost_events, &iter->ts);
1845
1846 if (iter->ent)
1847 trace_iterator_increment(iter);
1848
1849 return iter->ent ? iter : NULL;
1850}
1851
1852static void trace_consume(struct trace_iterator *iter)
1853{
1854 /* Don't allow ftrace to trace into the ring buffers */
1855 ftrace_disable_cpu();
1856 ring_buffer_consume(iter->tr->buffer, iter->cpu, &iter->ts,
1857 &iter->lost_events);
1858 ftrace_enable_cpu();
1859}
1860
1861static void *s_next(struct seq_file *m, void *v, loff_t *pos)
1862{
1863 struct trace_iterator *iter = m->private;
1864 int i = (int)*pos;
1865 void *ent;
1866
1867 WARN_ON_ONCE(iter->leftover);
1868
1869 (*pos)++;
1870
1871 /* can't go backwards */
1872 if (iter->idx > i)
1873 return NULL;
1874
1875 if (iter->idx < 0)
1876 ent = trace_find_next_entry_inc(iter);
1877 else
1878 ent = iter;
1879
1880 while (ent && iter->idx < i)
1881 ent = trace_find_next_entry_inc(iter);
1882
1883 iter->pos = *pos;
1884
1885 return ent;
1886}
1887
1888void tracing_iter_reset(struct trace_iterator *iter, int cpu)
1889{
1890 struct trace_array *tr = iter->tr;
1891 struct ring_buffer_event *event;
1892 struct ring_buffer_iter *buf_iter;
1893 unsigned long entries = 0;
1894 u64 ts;
1895
1896 tr->data[cpu]->skipped_entries = 0;
1897
1898 if (!iter->buffer_iter[cpu])
1899 return;
1900
1901 buf_iter = iter->buffer_iter[cpu];
1902 ring_buffer_iter_reset(buf_iter);
1903
1904 /*
1905 * We could have the case with the max latency tracers
1906 * that a reset never took place on a cpu. This is evident
1907 * by the timestamp being before the start of the buffer.
1908 */
1909 while ((event = ring_buffer_iter_peek(buf_iter, &ts))) {
1910 if (ts >= iter->tr->time_start)
1911 break;
1912 entries++;
1913 ring_buffer_read(buf_iter, NULL);
1914 }
1915
1916 tr->data[cpu]->skipped_entries = entries;
1917}
1918
1919/*
1920 * The current tracer is copied to avoid a global locking
1921 * all around.
1922 */
1923static void *s_start(struct seq_file *m, loff_t *pos)
1924{
1925 struct trace_iterator *iter = m->private;
1926 static struct tracer *old_tracer;
1927 int cpu_file = iter->cpu_file;
1928 void *p = NULL;
1929 loff_t l = 0;
1930 int cpu;
1931
1932 /* copy the tracer to avoid using a global lock all around */
1933 mutex_lock(&trace_types_lock);
1934 if (unlikely(old_tracer != current_trace && current_trace)) {
1935 old_tracer = current_trace;
1936 *iter->trace = *current_trace;
1937 }
1938 mutex_unlock(&trace_types_lock);
1939
1940 atomic_inc(&trace_record_cmdline_disabled);
1941
1942 if (*pos != iter->pos) {
1943 iter->ent = NULL;
1944 iter->cpu = 0;
1945 iter->idx = -1;
1946
1947 ftrace_disable_cpu();
1948
1949 if (cpu_file == TRACE_PIPE_ALL_CPU) {
1950 for_each_tracing_cpu(cpu)
1951 tracing_iter_reset(iter, cpu);
1952 } else
1953 tracing_iter_reset(iter, cpu_file);
1954
1955 ftrace_enable_cpu();
1956
1957 iter->leftover = 0;
1958 for (p = iter; p && l < *pos; p = s_next(m, p, &l))
1959 ;
1960
1961 } else {
1962 /*
1963 * If we overflowed the seq_file before, then we want
1964 * to just reuse the trace_seq buffer again.
1965 */
1966 if (iter->leftover)
1967 p = iter;
1968 else {
1969 l = *pos - 1;
1970 p = s_next(m, p, &l);
1971 }
1972 }
1973
1974 trace_event_read_lock();
1975 trace_access_lock(cpu_file);
1976 return p;
1977}
1978
1979static void s_stop(struct seq_file *m, void *p)
1980{
1981 struct trace_iterator *iter = m->private;
1982
1983 atomic_dec(&trace_record_cmdline_disabled);
1984 trace_access_unlock(iter->cpu_file);
1985 trace_event_read_unlock();
1986}
1987
1988static void
1989get_total_entries(struct trace_array *tr, unsigned long *total, unsigned long *entries)
1990{
1991 unsigned long count;
1992 int cpu;
1993
1994 *total = 0;
1995 *entries = 0;
1996
1997 for_each_tracing_cpu(cpu) {
1998 count = ring_buffer_entries_cpu(tr->buffer, cpu);
1999 /*
2000 * If this buffer has skipped entries, then we hold all
2001 * entries for the trace and we need to ignore the
2002 * ones before the time stamp.
2003 */
2004 if (tr->data[cpu]->skipped_entries) {
2005 count -= tr->data[cpu]->skipped_entries;
2006 /* total is the same as the entries */
2007 *total += count;
2008 } else
2009 *total += count +
2010 ring_buffer_overrun_cpu(tr->buffer, cpu);
2011 *entries += count;
2012 }
2013}
2014
2015static void print_lat_help_header(struct seq_file *m)
2016{
2017 seq_puts(m, "# _------=> CPU# \n");
2018 seq_puts(m, "# / _-----=> irqs-off \n");
2019 seq_puts(m, "# | / _----=> need-resched \n");
2020 seq_puts(m, "# || / _---=> hardirq/softirq \n");
2021 seq_puts(m, "# ||| / _--=> preempt-depth \n");
2022 seq_puts(m, "# |||| / delay \n");
2023 seq_puts(m, "# cmd pid ||||| time | caller \n");
2024 seq_puts(m, "# \\ / ||||| \\ | / \n");
2025}
2026
2027static void print_event_info(struct trace_array *tr, struct seq_file *m)
2028{
2029 unsigned long total;
2030 unsigned long entries;
2031
2032 get_total_entries(tr, &total, &entries);
2033 seq_printf(m, "# entries-in-buffer/entries-written: %lu/%lu #P:%d\n",
2034 entries, total, num_online_cpus());
2035 seq_puts(m, "#\n");
2036}
2037
2038static void print_func_help_header(struct trace_array *tr, struct seq_file *m)
2039{
2040 print_event_info(tr, m);
2041 seq_puts(m, "# TASK-PID CPU# TIMESTAMP FUNCTION\n");
2042 seq_puts(m, "# | | | | |\n");
2043}
2044
2045static void print_func_help_header_irq(struct trace_array *tr, struct seq_file *m)
2046{
2047 print_event_info(tr, m);
2048 seq_puts(m, "# _-----=> irqs-off\n");
2049 seq_puts(m, "# / _----=> need-resched\n");
2050 seq_puts(m, "# | / _---=> hardirq/softirq\n");
2051 seq_puts(m, "# || / _--=> preempt-depth\n");
2052 seq_puts(m, "# ||| / delay\n");
2053 seq_puts(m, "# TASK-PID CPU# |||| TIMESTAMP FUNCTION\n");
2054 seq_puts(m, "# | | | |||| | |\n");
2055}
2056
2057void
2058print_trace_header(struct seq_file *m, struct trace_iterator *iter)
2059{
2060 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
2061 struct trace_array *tr = iter->tr;
2062 struct trace_array_cpu *data = tr->data[tr->cpu];
2063 struct tracer *type = current_trace;
2064 unsigned long entries;
2065 unsigned long total;
2066 const char *name = "preemption";
2067
2068 if (type)
2069 name = type->name;
2070
2071 get_total_entries(tr, &total, &entries);
2072
2073 seq_printf(m, "# %s latency trace v1.1.5 on %s\n",
2074 name, UTS_RELEASE);
2075 seq_puts(m, "# -----------------------------------"
2076 "---------------------------------\n");
2077 seq_printf(m, "# latency: %lu us, #%lu/%lu, CPU#%d |"
2078 " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
2079 nsecs_to_usecs(data->saved_latency),
2080 entries,
2081 total,
2082 tr->cpu,
2083#if defined(CONFIG_PREEMPT_NONE)
2084 "server",
2085#elif defined(CONFIG_PREEMPT_VOLUNTARY)
2086 "desktop",
2087#elif defined(CONFIG_PREEMPT)
2088 "preempt",
2089#else
2090 "unknown",
2091#endif
2092 /* These are reserved for later use */
2093 0, 0, 0, 0);
2094#ifdef CONFIG_SMP
2095 seq_printf(m, " #P:%d)\n", num_online_cpus());
2096#else
2097 seq_puts(m, ")\n");
2098#endif
2099 seq_puts(m, "# -----------------\n");
2100 seq_printf(m, "# | task: %.16s-%d "
2101 "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
2102 data->comm, data->pid, data->uid, data->nice,
2103 data->policy, data->rt_priority);
2104 seq_puts(m, "# -----------------\n");
2105
2106 if (data->critical_start) {
2107 seq_puts(m, "# => started at: ");
2108 seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags);
2109 trace_print_seq(m, &iter->seq);
2110 seq_puts(m, "\n# => ended at: ");
2111 seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags);
2112 trace_print_seq(m, &iter->seq);
2113 seq_puts(m, "\n#\n");
2114 }
2115
2116 seq_puts(m, "#\n");
2117}
2118
2119static void test_cpu_buff_start(struct trace_iterator *iter)
2120{
2121 struct trace_seq *s = &iter->seq;
2122
2123 if (!(trace_flags & TRACE_ITER_ANNOTATE))
2124 return;
2125
2126 if (!(iter->iter_flags & TRACE_FILE_ANNOTATE))
2127 return;
2128
2129 if (cpumask_test_cpu(iter->cpu, iter->started))
2130 return;
2131
2132 if (iter->tr->data[iter->cpu]->skipped_entries)
2133 return;
2134
2135 cpumask_set_cpu(iter->cpu, iter->started);
2136
2137 /* Don't print started cpu buffer for the first entry of the trace */
2138 if (iter->idx > 1)
2139 trace_seq_printf(s, "##### CPU %u buffer started ####\n",
2140 iter->cpu);
2141}
2142
2143static enum print_line_t print_trace_fmt(struct trace_iterator *iter)
2144{
2145 struct trace_seq *s = &iter->seq;
2146 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
2147 struct trace_entry *entry;
2148 struct trace_event *event;
2149
2150 entry = iter->ent;
2151
2152 test_cpu_buff_start(iter);
2153
2154 event = ftrace_find_event(entry->type);
2155
2156 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
2157 if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
2158 if (!trace_print_lat_context(iter))
2159 goto partial;
2160 } else {
2161 if (!trace_print_context(iter))
2162 goto partial;
2163 }
2164 }
2165
2166 if (event)
2167 return event->funcs->trace(iter, sym_flags, event);
2168
2169 if (!trace_seq_printf(s, "Unknown type %d\n", entry->type))
2170 goto partial;
2171
2172 return TRACE_TYPE_HANDLED;
2173partial:
2174 return TRACE_TYPE_PARTIAL_LINE;
2175}
2176
2177static enum print_line_t print_raw_fmt(struct trace_iterator *iter)
2178{
2179 struct trace_seq *s = &iter->seq;
2180 struct trace_entry *entry;
2181 struct trace_event *event;
2182
2183 entry = iter->ent;
2184
2185 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
2186 if (!trace_seq_printf(s, "%d %d %llu ",
2187 entry->pid, iter->cpu, iter->ts))
2188 goto partial;
2189 }
2190
2191 event = ftrace_find_event(entry->type);
2192 if (event)
2193 return event->funcs->raw(iter, 0, event);
2194
2195 if (!trace_seq_printf(s, "%d ?\n", entry->type))
2196 goto partial;
2197
2198 return TRACE_TYPE_HANDLED;
2199partial:
2200 return TRACE_TYPE_PARTIAL_LINE;
2201}
2202
2203static enum print_line_t print_hex_fmt(struct trace_iterator *iter)
2204{
2205 struct trace_seq *s = &iter->seq;
2206 unsigned char newline = '\n';
2207 struct trace_entry *entry;
2208 struct trace_event *event;
2209
2210 entry = iter->ent;
2211
2212 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
2213 SEQ_PUT_HEX_FIELD_RET(s, entry->pid);
2214 SEQ_PUT_HEX_FIELD_RET(s, iter->cpu);
2215 SEQ_PUT_HEX_FIELD_RET(s, iter->ts);
2216 }
2217
2218 event = ftrace_find_event(entry->type);
2219 if (event) {
2220 enum print_line_t ret = event->funcs->hex(iter, 0, event);
2221 if (ret != TRACE_TYPE_HANDLED)
2222 return ret;
2223 }
2224
2225 SEQ_PUT_FIELD_RET(s, newline);
2226
2227 return TRACE_TYPE_HANDLED;
2228}
2229
2230static enum print_line_t print_bin_fmt(struct trace_iterator *iter)
2231{
2232 struct trace_seq *s = &iter->seq;
2233 struct trace_entry *entry;
2234 struct trace_event *event;
2235
2236 entry = iter->ent;
2237
2238 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
2239 SEQ_PUT_FIELD_RET(s, entry->pid);
2240 SEQ_PUT_FIELD_RET(s, iter->cpu);
2241 SEQ_PUT_FIELD_RET(s, iter->ts);
2242 }
2243
2244 event = ftrace_find_event(entry->type);
2245 return event ? event->funcs->binary(iter, 0, event) :
2246 TRACE_TYPE_HANDLED;
2247}
2248
2249int trace_empty(struct trace_iterator *iter)
2250{
2251 int cpu;
2252
2253 /* If we are looking at one CPU buffer, only check that one */
2254 if (iter->cpu_file != TRACE_PIPE_ALL_CPU) {
2255 cpu = iter->cpu_file;
2256 if (iter->buffer_iter[cpu]) {
2257 if (!ring_buffer_iter_empty(iter->buffer_iter[cpu]))
2258 return 0;
2259 } else {
2260 if (!ring_buffer_empty_cpu(iter->tr->buffer, cpu))
2261 return 0;
2262 }
2263 return 1;
2264 }
2265
2266 for_each_tracing_cpu(cpu) {
2267 if (iter->buffer_iter[cpu]) {
2268 if (!ring_buffer_iter_empty(iter->buffer_iter[cpu]))
2269 return 0;
2270 } else {
2271 if (!ring_buffer_empty_cpu(iter->tr->buffer, cpu))
2272 return 0;
2273 }
2274 }
2275
2276 return 1;
2277}
2278
2279/* Called with trace_event_read_lock() held. */
2280enum print_line_t print_trace_line(struct trace_iterator *iter)
2281{
2282 enum print_line_t ret;
2283
2284 if (iter->lost_events &&
2285 !trace_seq_printf(&iter->seq, "CPU:%d [LOST %lu EVENTS]\n",
2286 iter->cpu, iter->lost_events))
2287 return TRACE_TYPE_PARTIAL_LINE;
2288
2289 if (iter->trace && iter->trace->print_line) {
2290 ret = iter->trace->print_line(iter);
2291 if (ret != TRACE_TYPE_UNHANDLED)
2292 return ret;
2293 }
2294
2295 if (iter->ent->type == TRACE_BPRINT &&
2296 trace_flags & TRACE_ITER_PRINTK &&
2297 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
2298 return trace_print_bprintk_msg_only(iter);
2299
2300 if (iter->ent->type == TRACE_PRINT &&
2301 trace_flags & TRACE_ITER_PRINTK &&
2302 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
2303 return trace_print_printk_msg_only(iter);
2304
2305 if (trace_flags & TRACE_ITER_BIN)
2306 return print_bin_fmt(iter);
2307
2308 if (trace_flags & TRACE_ITER_HEX)
2309 return print_hex_fmt(iter);
2310
2311 if (trace_flags & TRACE_ITER_RAW)
2312 return print_raw_fmt(iter);
2313
2314 return print_trace_fmt(iter);
2315}
2316
2317void trace_latency_header(struct seq_file *m)
2318{
2319 struct trace_iterator *iter = m->private;
2320
2321 /* print nothing if the buffers are empty */
2322 if (trace_empty(iter))
2323 return;
2324
2325 if (iter->iter_flags & TRACE_FILE_LAT_FMT)
2326 print_trace_header(m, iter);
2327
2328 if (!(trace_flags & TRACE_ITER_VERBOSE))
2329 print_lat_help_header(m);
2330}
2331
2332void trace_default_header(struct seq_file *m)
2333{
2334 struct trace_iterator *iter = m->private;
2335
2336 if (!(trace_flags & TRACE_ITER_CONTEXT_INFO))
2337 return;
2338
2339 if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
2340 /* print nothing if the buffers are empty */
2341 if (trace_empty(iter))
2342 return;
2343 print_trace_header(m, iter);
2344 if (!(trace_flags & TRACE_ITER_VERBOSE))
2345 print_lat_help_header(m);
2346 } else {
2347 if (!(trace_flags & TRACE_ITER_VERBOSE)) {
2348 if (trace_flags & TRACE_ITER_IRQ_INFO)
2349 print_func_help_header_irq(iter->tr, m);
2350 else
2351 print_func_help_header(iter->tr, m);
2352 }
2353 }
2354}
2355
2356static void test_ftrace_alive(struct seq_file *m)
2357{
2358 if (!ftrace_is_dead())
2359 return;
2360 seq_printf(m, "# WARNING: FUNCTION TRACING IS CORRUPTED\n");
2361 seq_printf(m, "# MAY BE MISSING FUNCTION EVENTS\n");
2362}
2363
2364static int s_show(struct seq_file *m, void *v)
2365{
2366 struct trace_iterator *iter = v;
2367 int ret;
2368
2369 if (iter->ent == NULL) {
2370 if (iter->tr) {
2371 seq_printf(m, "# tracer: %s\n", iter->trace->name);
2372 seq_puts(m, "#\n");
2373 test_ftrace_alive(m);
2374 }
2375 if (iter->trace && iter->trace->print_header)
2376 iter->trace->print_header(m);
2377 else
2378 trace_default_header(m);
2379
2380 } else if (iter->leftover) {
2381 /*
2382 * If we filled the seq_file buffer earlier, we
2383 * want to just show it now.
2384 */
2385 ret = trace_print_seq(m, &iter->seq);
2386
2387 /* ret should this time be zero, but you never know */
2388 iter->leftover = ret;
2389
2390 } else {
2391 print_trace_line(iter);
2392 ret = trace_print_seq(m, &iter->seq);
2393 /*
2394 * If we overflow the seq_file buffer, then it will
2395 * ask us for this data again at start up.
2396 * Use that instead.
2397 * ret is 0 if seq_file write succeeded.
2398 * -1 otherwise.
2399 */
2400 iter->leftover = ret;
2401 }
2402
2403 return 0;
2404}
2405
2406static const struct seq_operations tracer_seq_ops = {
2407 .start = s_start,
2408 .next = s_next,
2409 .stop = s_stop,
2410 .show = s_show,
2411};
2412
2413static struct trace_iterator *
2414__tracing_open(struct inode *inode, struct file *file)
2415{
2416 long cpu_file = (long) inode->i_private;
2417 void *fail_ret = ERR_PTR(-ENOMEM);
2418 struct trace_iterator *iter;
2419 struct seq_file *m;
2420 int cpu, ret;
2421
2422 if (tracing_disabled)
2423 return ERR_PTR(-ENODEV);
2424
2425 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2426 if (!iter)
2427 return ERR_PTR(-ENOMEM);
2428
2429 /*
2430 * We make a copy of the current tracer to avoid concurrent
2431 * changes on it while we are reading.
2432 */
2433 mutex_lock(&trace_types_lock);
2434 iter->trace = kzalloc(sizeof(*iter->trace), GFP_KERNEL);
2435 if (!iter->trace)
2436 goto fail;
2437
2438 if (current_trace)
2439 *iter->trace = *current_trace;
2440
2441 if (!zalloc_cpumask_var(&iter->started, GFP_KERNEL))
2442 goto fail;
2443
2444 if (current_trace && current_trace->print_max)
2445 iter->tr = &max_tr;
2446 else
2447 iter->tr = &global_trace;
2448 iter->pos = -1;
2449 mutex_init(&iter->mutex);
2450 iter->cpu_file = cpu_file;
2451
2452 /* Notify the tracer early; before we stop tracing. */
2453 if (iter->trace && iter->trace->open)
2454 iter->trace->open(iter);
2455
2456 /* Annotate start of buffers if we had overruns */
2457 if (ring_buffer_overruns(iter->tr->buffer))
2458 iter->iter_flags |= TRACE_FILE_ANNOTATE;
2459
2460 /* stop the trace while dumping */
2461 tracing_stop();
2462
2463 if (iter->cpu_file == TRACE_PIPE_ALL_CPU) {
2464 for_each_tracing_cpu(cpu) {
2465 iter->buffer_iter[cpu] =
2466 ring_buffer_read_prepare(iter->tr->buffer, cpu);
2467 }
2468 ring_buffer_read_prepare_sync();
2469 for_each_tracing_cpu(cpu) {
2470 ring_buffer_read_start(iter->buffer_iter[cpu]);
2471 tracing_iter_reset(iter, cpu);
2472 }
2473 } else {
2474 cpu = iter->cpu_file;
2475 iter->buffer_iter[cpu] =
2476 ring_buffer_read_prepare(iter->tr->buffer, cpu);
2477 ring_buffer_read_prepare_sync();
2478 ring_buffer_read_start(iter->buffer_iter[cpu]);
2479 tracing_iter_reset(iter, cpu);
2480 }
2481
2482 ret = seq_open(file, &tracer_seq_ops);
2483 if (ret < 0) {
2484 fail_ret = ERR_PTR(ret);
2485 goto fail_buffer;
2486 }
2487
2488 m = file->private_data;
2489 m->private = iter;
2490
2491 mutex_unlock(&trace_types_lock);
2492
2493 return iter;
2494
2495 fail_buffer:
2496 for_each_tracing_cpu(cpu) {
2497 if (iter->buffer_iter[cpu])
2498 ring_buffer_read_finish(iter->buffer_iter[cpu]);
2499 }
2500 free_cpumask_var(iter->started);
2501 tracing_start();
2502 fail:
2503 mutex_unlock(&trace_types_lock);
2504 kfree(iter->trace);
2505 kfree(iter);
2506
2507 return fail_ret;
2508}
2509
2510int tracing_open_generic(struct inode *inode, struct file *filp)
2511{
2512 if (tracing_disabled)
2513 return -ENODEV;
2514
2515 filp->private_data = inode->i_private;
2516 return 0;
2517}
2518
2519static int tracing_release(struct inode *inode, struct file *file)
2520{
2521 struct seq_file *m = file->private_data;
2522 struct trace_iterator *iter;
2523 int cpu;
2524
2525 if (!(file->f_mode & FMODE_READ))
2526 return 0;
2527
2528 iter = m->private;
2529
2530 mutex_lock(&trace_types_lock);
2531 for_each_tracing_cpu(cpu) {
2532 if (iter->buffer_iter[cpu])
2533 ring_buffer_read_finish(iter->buffer_iter[cpu]);
2534 }
2535
2536 if (iter->trace && iter->trace->close)
2537 iter->trace->close(iter);
2538
2539 /* reenable tracing if it was previously enabled */
2540 tracing_start();
2541 mutex_unlock(&trace_types_lock);
2542
2543 seq_release(inode, file);
2544 mutex_destroy(&iter->mutex);
2545 free_cpumask_var(iter->started);
2546 kfree(iter->trace);
2547 kfree(iter);
2548 return 0;
2549}
2550
2551static int tracing_open(struct inode *inode, struct file *file)
2552{
2553 struct trace_iterator *iter;
2554 int ret = 0;
2555
2556 /* If this file was open for write, then erase contents */
2557 if ((file->f_mode & FMODE_WRITE) &&
2558 (file->f_flags & O_TRUNC)) {
2559 long cpu = (long) inode->i_private;
2560
2561 if (cpu == TRACE_PIPE_ALL_CPU)
2562 tracing_reset_online_cpus(&global_trace);
2563 else
2564 tracing_reset(&global_trace, cpu);
2565 }
2566
2567 if (file->f_mode & FMODE_READ) {
2568 iter = __tracing_open(inode, file);
2569 if (IS_ERR(iter))
2570 ret = PTR_ERR(iter);
2571 else if (trace_flags & TRACE_ITER_LATENCY_FMT)
2572 iter->iter_flags |= TRACE_FILE_LAT_FMT;
2573 }
2574 return ret;
2575}
2576
2577static void *
2578t_next(struct seq_file *m, void *v, loff_t *pos)
2579{
2580 struct tracer *t = v;
2581
2582 (*pos)++;
2583
2584 if (t)
2585 t = t->next;
2586
2587 return t;
2588}
2589
2590static void *t_start(struct seq_file *m, loff_t *pos)
2591{
2592 struct tracer *t;
2593 loff_t l = 0;
2594
2595 mutex_lock(&trace_types_lock);
2596 for (t = trace_types; t && l < *pos; t = t_next(m, t, &l))
2597 ;
2598
2599 return t;
2600}
2601
2602static void t_stop(struct seq_file *m, void *p)
2603{
2604 mutex_unlock(&trace_types_lock);
2605}
2606
2607static int t_show(struct seq_file *m, void *v)
2608{
2609 struct tracer *t = v;
2610
2611 if (!t)
2612 return 0;
2613
2614 seq_printf(m, "%s", t->name);
2615 if (t->next)
2616 seq_putc(m, ' ');
2617 else
2618 seq_putc(m, '\n');
2619
2620 return 0;
2621}
2622
2623static const struct seq_operations show_traces_seq_ops = {
2624 .start = t_start,
2625 .next = t_next,
2626 .stop = t_stop,
2627 .show = t_show,
2628};
2629
2630static int show_traces_open(struct inode *inode, struct file *file)
2631{
2632 if (tracing_disabled)
2633 return -ENODEV;
2634
2635 return seq_open(file, &show_traces_seq_ops);
2636}
2637
2638static ssize_t
2639tracing_write_stub(struct file *filp, const char __user *ubuf,
2640 size_t count, loff_t *ppos)
2641{
2642 return count;
2643}
2644
2645static loff_t tracing_seek(struct file *file, loff_t offset, int origin)
2646{
2647 if (file->f_mode & FMODE_READ)
2648 return seq_lseek(file, offset, origin);
2649 else
2650 return 0;
2651}
2652
2653static const struct file_operations tracing_fops = {
2654 .open = tracing_open,
2655 .read = seq_read,
2656 .write = tracing_write_stub,
2657 .llseek = tracing_seek,
2658 .release = tracing_release,
2659};
2660
2661static const struct file_operations show_traces_fops = {
2662 .open = show_traces_open,
2663 .read = seq_read,
2664 .release = seq_release,
2665 .llseek = seq_lseek,
2666};
2667
2668/*
2669 * Only trace on a CPU if the bitmask is set:
2670 */
2671static cpumask_var_t tracing_cpumask;
2672
2673/*
2674 * The tracer itself will not take this lock, but still we want
2675 * to provide a consistent cpumask to user-space:
2676 */
2677static DEFINE_MUTEX(tracing_cpumask_update_lock);
2678
2679/*
2680 * Temporary storage for the character representation of the
2681 * CPU bitmask (and one more byte for the newline):
2682 */
2683static char mask_str[NR_CPUS + 1];
2684
2685static ssize_t
2686tracing_cpumask_read(struct file *filp, char __user *ubuf,
2687 size_t count, loff_t *ppos)
2688{
2689 int len;
2690
2691 mutex_lock(&tracing_cpumask_update_lock);
2692
2693 len = cpumask_scnprintf(mask_str, count, tracing_cpumask);
2694 if (count - len < 2) {
2695 count = -EINVAL;
2696 goto out_err;
2697 }
2698 len += sprintf(mask_str + len, "\n");
2699 count = simple_read_from_buffer(ubuf, count, ppos, mask_str, NR_CPUS+1);
2700
2701out_err:
2702 mutex_unlock(&tracing_cpumask_update_lock);
2703
2704 return count;
2705}
2706
2707static ssize_t
2708tracing_cpumask_write(struct file *filp, const char __user *ubuf,
2709 size_t count, loff_t *ppos)
2710{
2711 int err, cpu;
2712 cpumask_var_t tracing_cpumask_new;
2713
2714 if (!alloc_cpumask_var(&tracing_cpumask_new, GFP_KERNEL))
2715 return -ENOMEM;
2716
2717 err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
2718 if (err)
2719 goto err_unlock;
2720
2721 mutex_lock(&tracing_cpumask_update_lock);
2722
2723 local_irq_disable();
2724 arch_spin_lock(&ftrace_max_lock);
2725 for_each_tracing_cpu(cpu) {
2726 /*
2727 * Increase/decrease the disabled counter if we are
2728 * about to flip a bit in the cpumask:
2729 */
2730 if (cpumask_test_cpu(cpu, tracing_cpumask) &&
2731 !cpumask_test_cpu(cpu, tracing_cpumask_new)) {
2732 atomic_inc(&global_trace.data[cpu]->disabled);
2733 }
2734 if (!cpumask_test_cpu(cpu, tracing_cpumask) &&
2735 cpumask_test_cpu(cpu, tracing_cpumask_new)) {
2736 atomic_dec(&global_trace.data[cpu]->disabled);
2737 }
2738 }
2739 arch_spin_unlock(&ftrace_max_lock);
2740 local_irq_enable();
2741
2742 cpumask_copy(tracing_cpumask, tracing_cpumask_new);
2743
2744 mutex_unlock(&tracing_cpumask_update_lock);
2745 free_cpumask_var(tracing_cpumask_new);
2746
2747 return count;
2748
2749err_unlock:
2750 free_cpumask_var(tracing_cpumask_new);
2751
2752 return err;
2753}
2754
2755static const struct file_operations tracing_cpumask_fops = {
2756 .open = tracing_open_generic,
2757 .read = tracing_cpumask_read,
2758 .write = tracing_cpumask_write,
2759 .llseek = generic_file_llseek,
2760};
2761
2762static int tracing_trace_options_show(struct seq_file *m, void *v)
2763{
2764 struct tracer_opt *trace_opts;
2765 u32 tracer_flags;
2766 int i;
2767
2768 mutex_lock(&trace_types_lock);
2769 tracer_flags = current_trace->flags->val;
2770 trace_opts = current_trace->flags->opts;
2771
2772 for (i = 0; trace_options[i]; i++) {
2773 if (trace_flags & (1 << i))
2774 seq_printf(m, "%s\n", trace_options[i]);
2775 else
2776 seq_printf(m, "no%s\n", trace_options[i]);
2777 }
2778
2779 for (i = 0; trace_opts[i].name; i++) {
2780 if (tracer_flags & trace_opts[i].bit)
2781 seq_printf(m, "%s\n", trace_opts[i].name);
2782 else
2783 seq_printf(m, "no%s\n", trace_opts[i].name);
2784 }
2785 mutex_unlock(&trace_types_lock);
2786
2787 return 0;
2788}
2789
2790static int __set_tracer_option(struct tracer *trace,
2791 struct tracer_flags *tracer_flags,
2792 struct tracer_opt *opts, int neg)
2793{
2794 int ret;
2795
2796 ret = trace->set_flag(tracer_flags->val, opts->bit, !neg);
2797 if (ret)
2798 return ret;
2799
2800 if (neg)
2801 tracer_flags->val &= ~opts->bit;
2802 else
2803 tracer_flags->val |= opts->bit;
2804 return 0;
2805}
2806
2807/* Try to assign a tracer specific option */
2808static int set_tracer_option(struct tracer *trace, char *cmp, int neg)
2809{
2810 struct tracer_flags *tracer_flags = trace->flags;
2811 struct tracer_opt *opts = NULL;
2812 int i;
2813
2814 for (i = 0; tracer_flags->opts[i].name; i++) {
2815 opts = &tracer_flags->opts[i];
2816
2817 if (strcmp(cmp, opts->name) == 0)
2818 return __set_tracer_option(trace, trace->flags,
2819 opts, neg);
2820 }
2821
2822 return -EINVAL;
2823}
2824
2825static void set_tracer_flags(unsigned int mask, int enabled)
2826{
2827 /* do nothing if flag is already set */
2828 if (!!(trace_flags & mask) == !!enabled)
2829 return;
2830
2831 if (enabled)
2832 trace_flags |= mask;
2833 else
2834 trace_flags &= ~mask;
2835
2836 if (mask == TRACE_ITER_RECORD_CMD)
2837 trace_event_enable_cmd_record(enabled);
2838
2839 if (mask == TRACE_ITER_OVERWRITE)
2840 ring_buffer_change_overwrite(global_trace.buffer, enabled);
2841}
2842
2843static ssize_t
2844tracing_trace_options_write(struct file *filp, const char __user *ubuf,
2845 size_t cnt, loff_t *ppos)
2846{
2847 char buf[64];
2848 char *cmp;
2849 int neg = 0;
2850 int ret;
2851 int i;
2852
2853 if (cnt >= sizeof(buf))
2854 return -EINVAL;
2855
2856 if (copy_from_user(&buf, ubuf, cnt))
2857 return -EFAULT;
2858
2859 buf[cnt] = 0;
2860 cmp = strstrip(buf);
2861
2862 if (strncmp(cmp, "no", 2) == 0) {
2863 neg = 1;
2864 cmp += 2;
2865 }
2866
2867 for (i = 0; trace_options[i]; i++) {
2868 if (strcmp(cmp, trace_options[i]) == 0) {
2869 set_tracer_flags(1 << i, !neg);
2870 break;
2871 }
2872 }
2873
2874 /* If no option could be set, test the specific tracer options */
2875 if (!trace_options[i]) {
2876 mutex_lock(&trace_types_lock);
2877 ret = set_tracer_option(current_trace, cmp, neg);
2878 mutex_unlock(&trace_types_lock);
2879 if (ret)
2880 return ret;
2881 }
2882
2883 *ppos += cnt;
2884
2885 return cnt;
2886}
2887
2888static int tracing_trace_options_open(struct inode *inode, struct file *file)
2889{
2890 if (tracing_disabled)
2891 return -ENODEV;
2892 return single_open(file, tracing_trace_options_show, NULL);
2893}
2894
2895static const struct file_operations tracing_iter_fops = {
2896 .open = tracing_trace_options_open,
2897 .read = seq_read,
2898 .llseek = seq_lseek,
2899 .release = single_release,
2900 .write = tracing_trace_options_write,
2901};
2902
2903static const char readme_msg[] =
2904 "tracing mini-HOWTO:\n\n"
2905 "# mount -t debugfs nodev /sys/kernel/debug\n\n"
2906 "# cat /sys/kernel/debug/tracing/available_tracers\n"
2907 "wakeup wakeup_rt preemptirqsoff preemptoff irqsoff function nop\n\n"
2908 "# cat /sys/kernel/debug/tracing/current_tracer\n"
2909 "nop\n"
2910 "# echo wakeup > /sys/kernel/debug/tracing/current_tracer\n"
2911 "# cat /sys/kernel/debug/tracing/current_tracer\n"
2912 "wakeup\n"
2913 "# cat /sys/kernel/debug/tracing/trace_options\n"
2914 "noprint-parent nosym-offset nosym-addr noverbose\n"
2915 "# echo print-parent > /sys/kernel/debug/tracing/trace_options\n"
2916 "# echo 1 > /sys/kernel/debug/tracing/tracing_on\n"
2917 "# cat /sys/kernel/debug/tracing/trace > /tmp/trace.txt\n"
2918 "# echo 0 > /sys/kernel/debug/tracing/tracing_on\n"
2919;
2920
2921static ssize_t
2922tracing_readme_read(struct file *filp, char __user *ubuf,
2923 size_t cnt, loff_t *ppos)
2924{
2925 return simple_read_from_buffer(ubuf, cnt, ppos,
2926 readme_msg, strlen(readme_msg));
2927}
2928
2929static const struct file_operations tracing_readme_fops = {
2930 .open = tracing_open_generic,
2931 .read = tracing_readme_read,
2932 .llseek = generic_file_llseek,
2933};
2934
2935static ssize_t
2936tracing_saved_cmdlines_read(struct file *file, char __user *ubuf,
2937 size_t cnt, loff_t *ppos)
2938{
2939 char *buf_comm;
2940 char *file_buf;
2941 char *buf;
2942 int len = 0;
2943 int pid;
2944 int i;
2945
2946 file_buf = kmalloc(SAVED_CMDLINES*(16+TASK_COMM_LEN), GFP_KERNEL);
2947 if (!file_buf)
2948 return -ENOMEM;
2949
2950 buf_comm = kmalloc(TASK_COMM_LEN, GFP_KERNEL);
2951 if (!buf_comm) {
2952 kfree(file_buf);
2953 return -ENOMEM;
2954 }
2955
2956 buf = file_buf;
2957
2958 for (i = 0; i < SAVED_CMDLINES; i++) {
2959 int r;
2960
2961 pid = map_cmdline_to_pid[i];
2962 if (pid == -1 || pid == NO_CMDLINE_MAP)
2963 continue;
2964
2965 trace_find_cmdline(pid, buf_comm);
2966 r = sprintf(buf, "%d %s\n", pid, buf_comm);
2967 buf += r;
2968 len += r;
2969 }
2970
2971 len = simple_read_from_buffer(ubuf, cnt, ppos,
2972 file_buf, len);
2973
2974 kfree(file_buf);
2975 kfree(buf_comm);
2976
2977 return len;
2978}
2979
2980static const struct file_operations tracing_saved_cmdlines_fops = {
2981 .open = tracing_open_generic,
2982 .read = tracing_saved_cmdlines_read,
2983 .llseek = generic_file_llseek,
2984};
2985
2986static ssize_t
2987tracing_ctrl_read(struct file *filp, char __user *ubuf,
2988 size_t cnt, loff_t *ppos)
2989{
2990 char buf[64];
2991 int r;
2992
2993 r = sprintf(buf, "%u\n", tracer_enabled);
2994 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2995}
2996
2997static ssize_t
2998tracing_ctrl_write(struct file *filp, const char __user *ubuf,
2999 size_t cnt, loff_t *ppos)
3000{
3001 struct trace_array *tr = filp->private_data;
3002 unsigned long val;
3003 int ret;
3004
3005 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
3006 if (ret)
3007 return ret;
3008
3009 val = !!val;
3010
3011 mutex_lock(&trace_types_lock);
3012 if (tracer_enabled ^ val) {
3013
3014 /* Only need to warn if this is used to change the state */
3015 WARN_ONCE(1, "tracing_enabled is deprecated. Use tracing_on");
3016
3017 if (val) {
3018 tracer_enabled = 1;
3019 if (current_trace->start)
3020 current_trace->start(tr);
3021 tracing_start();
3022 } else {
3023 tracer_enabled = 0;
3024 tracing_stop();
3025 if (current_trace->stop)
3026 current_trace->stop(tr);
3027 }
3028 }
3029 mutex_unlock(&trace_types_lock);
3030
3031 *ppos += cnt;
3032
3033 return cnt;
3034}
3035
3036static ssize_t
3037tracing_set_trace_read(struct file *filp, char __user *ubuf,
3038 size_t cnt, loff_t *ppos)
3039{
3040 char buf[MAX_TRACER_SIZE+2];
3041 int r;
3042
3043 mutex_lock(&trace_types_lock);
3044 if (current_trace)
3045 r = sprintf(buf, "%s\n", current_trace->name);
3046 else
3047 r = sprintf(buf, "\n");
3048 mutex_unlock(&trace_types_lock);
3049
3050 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3051}
3052
3053int tracer_init(struct tracer *t, struct trace_array *tr)
3054{
3055 tracing_reset_online_cpus(tr);
3056 return t->init(tr);
3057}
3058
3059static int __tracing_resize_ring_buffer(unsigned long size)
3060{
3061 int ret;
3062
3063 /*
3064 * If kernel or user changes the size of the ring buffer
3065 * we use the size that was given, and we can forget about
3066 * expanding it later.
3067 */
3068 ring_buffer_expanded = 1;
3069
3070 ret = ring_buffer_resize(global_trace.buffer, size);
3071 if (ret < 0)
3072 return ret;
3073
3074 if (!current_trace->use_max_tr)
3075 goto out;
3076
3077 ret = ring_buffer_resize(max_tr.buffer, size);
3078 if (ret < 0) {
3079 int r;
3080
3081 r = ring_buffer_resize(global_trace.buffer,
3082 global_trace.entries);
3083 if (r < 0) {
3084 /*
3085 * AARGH! We are left with different
3086 * size max buffer!!!!
3087 * The max buffer is our "snapshot" buffer.
3088 * When a tracer needs a snapshot (one of the
3089 * latency tracers), it swaps the max buffer
3090 * with the saved snap shot. We succeeded to
3091 * update the size of the main buffer, but failed to
3092 * update the size of the max buffer. But when we tried
3093 * to reset the main buffer to the original size, we
3094 * failed there too. This is very unlikely to
3095 * happen, but if it does, warn and kill all
3096 * tracing.
3097 */
3098 WARN_ON(1);
3099 tracing_disabled = 1;
3100 }
3101 return ret;
3102 }
3103
3104 max_tr.entries = size;
3105 out:
3106 global_trace.entries = size;
3107
3108 return ret;
3109}
3110
3111static ssize_t tracing_resize_ring_buffer(unsigned long size)
3112{
3113 int cpu, ret = size;
3114
3115 mutex_lock(&trace_types_lock);
3116
3117 tracing_stop();
3118
3119 /* disable all cpu buffers */
3120 for_each_tracing_cpu(cpu) {
3121 if (global_trace.data[cpu])
3122 atomic_inc(&global_trace.data[cpu]->disabled);
3123 if (max_tr.data[cpu])
3124 atomic_inc(&max_tr.data[cpu]->disabled);
3125 }
3126
3127 if (size != global_trace.entries)
3128 ret = __tracing_resize_ring_buffer(size);
3129
3130 if (ret < 0)
3131 ret = -ENOMEM;
3132
3133 for_each_tracing_cpu(cpu) {
3134 if (global_trace.data[cpu])
3135 atomic_dec(&global_trace.data[cpu]->disabled);
3136 if (max_tr.data[cpu])
3137 atomic_dec(&max_tr.data[cpu]->disabled);
3138 }
3139
3140 tracing_start();
3141 mutex_unlock(&trace_types_lock);
3142
3143 return ret;
3144}
3145
3146
3147/**
3148 * tracing_update_buffers - used by tracing facility to expand ring buffers
3149 *
3150 * To save on memory when the tracing is never used on a system with it
3151 * configured in. The ring buffers are set to a minimum size. But once
3152 * a user starts to use the tracing facility, then they need to grow
3153 * to their default size.
3154 *
3155 * This function is to be called when a tracer is about to be used.
3156 */
3157int tracing_update_buffers(void)
3158{
3159 int ret = 0;
3160
3161 mutex_lock(&trace_types_lock);
3162 if (!ring_buffer_expanded)
3163 ret = __tracing_resize_ring_buffer(trace_buf_size);
3164 mutex_unlock(&trace_types_lock);
3165
3166 return ret;
3167}
3168
3169struct trace_option_dentry;
3170
3171static struct trace_option_dentry *
3172create_trace_option_files(struct tracer *tracer);
3173
3174static void
3175destroy_trace_option_files(struct trace_option_dentry *topts);
3176
3177static int tracing_set_tracer(const char *buf)
3178{
3179 static struct trace_option_dentry *topts;
3180 struct trace_array *tr = &global_trace;
3181 struct tracer *t;
3182 int ret = 0;
3183
3184 mutex_lock(&trace_types_lock);
3185
3186 if (!ring_buffer_expanded) {
3187 ret = __tracing_resize_ring_buffer(trace_buf_size);
3188 if (ret < 0)
3189 goto out;
3190 ret = 0;
3191 }
3192
3193 for (t = trace_types; t; t = t->next) {
3194 if (strcmp(t->name, buf) == 0)
3195 break;
3196 }
3197 if (!t) {
3198 ret = -EINVAL;
3199 goto out;
3200 }
3201 if (t == current_trace)
3202 goto out;
3203
3204 trace_branch_disable();
3205 if (current_trace && current_trace->reset)
3206 current_trace->reset(tr);
3207 if (current_trace && current_trace->use_max_tr) {
3208 /*
3209 * We don't free the ring buffer. instead, resize it because
3210 * The max_tr ring buffer has some state (e.g. ring->clock) and
3211 * we want preserve it.
3212 */
3213 ring_buffer_resize(max_tr.buffer, 1);
3214 max_tr.entries = 1;
3215 }
3216 destroy_trace_option_files(topts);
3217
3218 current_trace = t;
3219
3220 topts = create_trace_option_files(current_trace);
3221 if (current_trace->use_max_tr) {
3222 ret = ring_buffer_resize(max_tr.buffer, global_trace.entries);
3223 if (ret < 0)
3224 goto out;
3225 max_tr.entries = global_trace.entries;
3226 }
3227
3228 if (t->init) {
3229 ret = tracer_init(t, tr);
3230 if (ret)
3231 goto out;
3232 }
3233
3234 trace_branch_enable(tr);
3235 out:
3236 mutex_unlock(&trace_types_lock);
3237
3238 return ret;
3239}
3240
3241static ssize_t
3242tracing_set_trace_write(struct file *filp, const char __user *ubuf,
3243 size_t cnt, loff_t *ppos)
3244{
3245 char buf[MAX_TRACER_SIZE+1];
3246 int i;
3247 size_t ret;
3248 int err;
3249
3250 ret = cnt;
3251
3252 if (cnt > MAX_TRACER_SIZE)
3253 cnt = MAX_TRACER_SIZE;
3254
3255 if (copy_from_user(&buf, ubuf, cnt))
3256 return -EFAULT;
3257
3258 buf[cnt] = 0;
3259
3260 /* strip ending whitespace. */
3261 for (i = cnt - 1; i > 0 && isspace(buf[i]); i--)
3262 buf[i] = 0;
3263
3264 err = tracing_set_tracer(buf);
3265 if (err)
3266 return err;
3267
3268 *ppos += ret;
3269
3270 return ret;
3271}
3272
3273static ssize_t
3274tracing_max_lat_read(struct file *filp, char __user *ubuf,
3275 size_t cnt, loff_t *ppos)
3276{
3277 unsigned long *ptr = filp->private_data;
3278 char buf[64];
3279 int r;
3280
3281 r = snprintf(buf, sizeof(buf), "%ld\n",
3282 *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
3283 if (r > sizeof(buf))
3284 r = sizeof(buf);
3285 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3286}
3287
3288static ssize_t
3289tracing_max_lat_write(struct file *filp, const char __user *ubuf,
3290 size_t cnt, loff_t *ppos)
3291{
3292 unsigned long *ptr = filp->private_data;
3293 unsigned long val;
3294 int ret;
3295
3296 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
3297 if (ret)
3298 return ret;
3299
3300 *ptr = val * 1000;
3301
3302 return cnt;
3303}
3304
3305static int tracing_open_pipe(struct inode *inode, struct file *filp)
3306{
3307 long cpu_file = (long) inode->i_private;
3308 struct trace_iterator *iter;
3309 int ret = 0;
3310
3311 if (tracing_disabled)
3312 return -ENODEV;
3313
3314 mutex_lock(&trace_types_lock);
3315
3316 /* create a buffer to store the information to pass to userspace */
3317 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
3318 if (!iter) {
3319 ret = -ENOMEM;
3320 goto out;
3321 }
3322
3323 /*
3324 * We make a copy of the current tracer to avoid concurrent
3325 * changes on it while we are reading.
3326 */
3327 iter->trace = kmalloc(sizeof(*iter->trace), GFP_KERNEL);
3328 if (!iter->trace) {
3329 ret = -ENOMEM;
3330 goto fail;
3331 }
3332 if (current_trace)
3333 *iter->trace = *current_trace;
3334
3335 if (!alloc_cpumask_var(&iter->started, GFP_KERNEL)) {
3336 ret = -ENOMEM;
3337 goto fail;
3338 }
3339
3340 /* trace pipe does not show start of buffer */
3341 cpumask_setall(iter->started);
3342
3343 if (trace_flags & TRACE_ITER_LATENCY_FMT)
3344 iter->iter_flags |= TRACE_FILE_LAT_FMT;
3345
3346 iter->cpu_file = cpu_file;
3347 iter->tr = &global_trace;
3348 mutex_init(&iter->mutex);
3349 filp->private_data = iter;
3350
3351 if (iter->trace->pipe_open)
3352 iter->trace->pipe_open(iter);
3353
3354 nonseekable_open(inode, filp);
3355out:
3356 mutex_unlock(&trace_types_lock);
3357 return ret;
3358
3359fail:
3360 kfree(iter->trace);
3361 kfree(iter);
3362 mutex_unlock(&trace_types_lock);
3363 return ret;
3364}
3365
3366static int tracing_release_pipe(struct inode *inode, struct file *file)
3367{
3368 struct trace_iterator *iter = file->private_data;
3369
3370 mutex_lock(&trace_types_lock);
3371
3372 if (iter->trace->pipe_close)
3373 iter->trace->pipe_close(iter);
3374
3375 mutex_unlock(&trace_types_lock);
3376
3377 free_cpumask_var(iter->started);
3378 mutex_destroy(&iter->mutex);
3379 kfree(iter->trace);
3380 kfree(iter);
3381
3382 return 0;
3383}
3384
3385static unsigned int
3386tracing_poll_pipe(struct file *filp, poll_table *poll_table)
3387{
3388 struct trace_iterator *iter = filp->private_data;
3389
3390 if (trace_flags & TRACE_ITER_BLOCK) {
3391 /*
3392 * Always select as readable when in blocking mode
3393 */
3394 return POLLIN | POLLRDNORM;
3395 } else {
3396 if (!trace_empty(iter))
3397 return POLLIN | POLLRDNORM;
3398 poll_wait(filp, &trace_wait, poll_table);
3399 if (!trace_empty(iter))
3400 return POLLIN | POLLRDNORM;
3401
3402 return 0;
3403 }
3404}
3405
3406
3407void default_wait_pipe(struct trace_iterator *iter)
3408{
3409 DEFINE_WAIT(wait);
3410
3411 prepare_to_wait(&trace_wait, &wait, TASK_INTERRUPTIBLE);
3412
3413 if (trace_empty(iter))
3414 schedule();
3415
3416 finish_wait(&trace_wait, &wait);
3417}
3418
3419/*
3420 * This is a make-shift waitqueue.
3421 * A tracer might use this callback on some rare cases:
3422 *
3423 * 1) the current tracer might hold the runqueue lock when it wakes up
3424 * a reader, hence a deadlock (sched, function, and function graph tracers)
3425 * 2) the function tracers, trace all functions, we don't want
3426 * the overhead of calling wake_up and friends
3427 * (and tracing them too)
3428 *
3429 * Anyway, this is really very primitive wakeup.
3430 */
3431void poll_wait_pipe(struct trace_iterator *iter)
3432{
3433 set_current_state(TASK_INTERRUPTIBLE);
3434 /* sleep for 100 msecs, and try again. */
3435 schedule_timeout(HZ / 10);
3436}
3437
3438/* Must be called with trace_types_lock mutex held. */
3439static int tracing_wait_pipe(struct file *filp)
3440{
3441 struct trace_iterator *iter = filp->private_data;
3442
3443 while (trace_empty(iter)) {
3444
3445 if ((filp->f_flags & O_NONBLOCK)) {
3446 return -EAGAIN;
3447 }
3448
3449 mutex_unlock(&iter->mutex);
3450
3451 iter->trace->wait_pipe(iter);
3452
3453 mutex_lock(&iter->mutex);
3454
3455 if (signal_pending(current))
3456 return -EINTR;
3457
3458 /*
3459 * We block until we read something and tracing is disabled.
3460 * We still block if tracing is disabled, but we have never
3461 * read anything. This allows a user to cat this file, and
3462 * then enable tracing. But after we have read something,
3463 * we give an EOF when tracing is again disabled.
3464 *
3465 * iter->pos will be 0 if we haven't read anything.
3466 */
3467 if (!tracer_enabled && iter->pos)
3468 break;
3469 }
3470
3471 return 1;
3472}
3473
3474/*
3475 * Consumer reader.
3476 */
3477static ssize_t
3478tracing_read_pipe(struct file *filp, char __user *ubuf,
3479 size_t cnt, loff_t *ppos)
3480{
3481 struct trace_iterator *iter = filp->private_data;
3482 static struct tracer *old_tracer;
3483 ssize_t sret;
3484
3485 /* return any leftover data */
3486 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
3487 if (sret != -EBUSY)
3488 return sret;
3489
3490 trace_seq_init(&iter->seq);
3491
3492 /* copy the tracer to avoid using a global lock all around */
3493 mutex_lock(&trace_types_lock);
3494 if (unlikely(old_tracer != current_trace && current_trace)) {
3495 old_tracer = current_trace;
3496 *iter->trace = *current_trace;
3497 }
3498 mutex_unlock(&trace_types_lock);
3499
3500 /*
3501 * Avoid more than one consumer on a single file descriptor
3502 * This is just a matter of traces coherency, the ring buffer itself
3503 * is protected.
3504 */
3505 mutex_lock(&iter->mutex);
3506 if (iter->trace->read) {
3507 sret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
3508 if (sret)
3509 goto out;
3510 }
3511
3512waitagain:
3513 sret = tracing_wait_pipe(filp);
3514 if (sret <= 0)
3515 goto out;
3516
3517 /* stop when tracing is finished */
3518 if (trace_empty(iter)) {
3519 sret = 0;
3520 goto out;
3521 }
3522
3523 if (cnt >= PAGE_SIZE)
3524 cnt = PAGE_SIZE - 1;
3525
3526 /* reset all but tr, trace, and overruns */
3527 memset(&iter->seq, 0,
3528 sizeof(struct trace_iterator) -
3529 offsetof(struct trace_iterator, seq));
3530 iter->pos = -1;
3531
3532 trace_event_read_lock();
3533 trace_access_lock(iter->cpu_file);
3534 while (trace_find_next_entry_inc(iter) != NULL) {
3535 enum print_line_t ret;
3536 int len = iter->seq.len;
3537
3538 ret = print_trace_line(iter);
3539 if (ret == TRACE_TYPE_PARTIAL_LINE) {
3540 /* don't print partial lines */
3541 iter->seq.len = len;
3542 break;
3543 }
3544 if (ret != TRACE_TYPE_NO_CONSUME)
3545 trace_consume(iter);
3546
3547 if (iter->seq.len >= cnt)
3548 break;
3549
3550 /*
3551 * Setting the full flag means we reached the trace_seq buffer
3552 * size and we should leave by partial output condition above.
3553 * One of the trace_seq_* functions is not used properly.
3554 */
3555 WARN_ONCE(iter->seq.full, "full flag set for trace type %d",
3556 iter->ent->type);
3557 }
3558 trace_access_unlock(iter->cpu_file);
3559 trace_event_read_unlock();
3560
3561 /* Now copy what we have to the user */
3562 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
3563 if (iter->seq.readpos >= iter->seq.len)
3564 trace_seq_init(&iter->seq);
3565
3566 /*
3567 * If there was nothing to send to user, in spite of consuming trace
3568 * entries, go back to wait for more entries.
3569 */
3570 if (sret == -EBUSY)
3571 goto waitagain;
3572
3573out:
3574 mutex_unlock(&iter->mutex);
3575
3576 return sret;
3577}
3578
3579static void tracing_pipe_buf_release(struct pipe_inode_info *pipe,
3580 struct pipe_buffer *buf)
3581{
3582 __free_page(buf->page);
3583}
3584
3585static void tracing_spd_release_pipe(struct splice_pipe_desc *spd,
3586 unsigned int idx)
3587{
3588 __free_page(spd->pages[idx]);
3589}
3590
3591static const struct pipe_buf_operations tracing_pipe_buf_ops = {
3592 .can_merge = 0,
3593 .map = generic_pipe_buf_map,
3594 .unmap = generic_pipe_buf_unmap,
3595 .confirm = generic_pipe_buf_confirm,
3596 .release = tracing_pipe_buf_release,
3597 .steal = generic_pipe_buf_steal,
3598 .get = generic_pipe_buf_get,
3599};
3600
3601static size_t
3602tracing_fill_pipe_page(size_t rem, struct trace_iterator *iter)
3603{
3604 size_t count;
3605 int ret;
3606
3607 /* Seq buffer is page-sized, exactly what we need. */
3608 for (;;) {
3609 count = iter->seq.len;
3610 ret = print_trace_line(iter);
3611 count = iter->seq.len - count;
3612 if (rem < count) {
3613 rem = 0;
3614 iter->seq.len -= count;
3615 break;
3616 }
3617 if (ret == TRACE_TYPE_PARTIAL_LINE) {
3618 iter->seq.len -= count;
3619 break;
3620 }
3621
3622 if (ret != TRACE_TYPE_NO_CONSUME)
3623 trace_consume(iter);
3624 rem -= count;
3625 if (!trace_find_next_entry_inc(iter)) {
3626 rem = 0;
3627 iter->ent = NULL;
3628 break;
3629 }
3630 }
3631
3632 return rem;
3633}
3634
3635static ssize_t tracing_splice_read_pipe(struct file *filp,
3636 loff_t *ppos,
3637 struct pipe_inode_info *pipe,
3638 size_t len,
3639 unsigned int flags)
3640{
3641 struct page *pages_def[PIPE_DEF_BUFFERS];
3642 struct partial_page partial_def[PIPE_DEF_BUFFERS];
3643 struct trace_iterator *iter = filp->private_data;
3644 struct splice_pipe_desc spd = {
3645 .pages = pages_def,
3646 .partial = partial_def,
3647 .nr_pages = 0, /* This gets updated below. */
3648 .flags = flags,
3649 .ops = &tracing_pipe_buf_ops,
3650 .spd_release = tracing_spd_release_pipe,
3651 };
3652 static struct tracer *old_tracer;
3653 ssize_t ret;
3654 size_t rem;
3655 unsigned int i;
3656
3657 if (splice_grow_spd(pipe, &spd))
3658 return -ENOMEM;
3659
3660 /* copy the tracer to avoid using a global lock all around */
3661 mutex_lock(&trace_types_lock);
3662 if (unlikely(old_tracer != current_trace && current_trace)) {
3663 old_tracer = current_trace;
3664 *iter->trace = *current_trace;
3665 }
3666 mutex_unlock(&trace_types_lock);
3667
3668 mutex_lock(&iter->mutex);
3669
3670 if (iter->trace->splice_read) {
3671 ret = iter->trace->splice_read(iter, filp,
3672 ppos, pipe, len, flags);
3673 if (ret)
3674 goto out_err;
3675 }
3676
3677 ret = tracing_wait_pipe(filp);
3678 if (ret <= 0)
3679 goto out_err;
3680
3681 if (!iter->ent && !trace_find_next_entry_inc(iter)) {
3682 ret = -EFAULT;
3683 goto out_err;
3684 }
3685
3686 trace_event_read_lock();
3687 trace_access_lock(iter->cpu_file);
3688
3689 /* Fill as many pages as possible. */
3690 for (i = 0, rem = len; i < pipe->buffers && rem; i++) {
3691 spd.pages[i] = alloc_page(GFP_KERNEL);
3692 if (!spd.pages[i])
3693 break;
3694
3695 rem = tracing_fill_pipe_page(rem, iter);
3696
3697 /* Copy the data into the page, so we can start over. */
3698 ret = trace_seq_to_buffer(&iter->seq,
3699 page_address(spd.pages[i]),
3700 iter->seq.len);
3701 if (ret < 0) {
3702 __free_page(spd.pages[i]);
3703 break;
3704 }
3705 spd.partial[i].offset = 0;
3706 spd.partial[i].len = iter->seq.len;
3707
3708 trace_seq_init(&iter->seq);
3709 }
3710
3711 trace_access_unlock(iter->cpu_file);
3712 trace_event_read_unlock();
3713 mutex_unlock(&iter->mutex);
3714
3715 spd.nr_pages = i;
3716
3717 ret = splice_to_pipe(pipe, &spd);
3718out:
3719 splice_shrink_spd(pipe, &spd);
3720 return ret;
3721
3722out_err:
3723 mutex_unlock(&iter->mutex);
3724 goto out;
3725}
3726
3727static ssize_t
3728tracing_entries_read(struct file *filp, char __user *ubuf,
3729 size_t cnt, loff_t *ppos)
3730{
3731 struct trace_array *tr = filp->private_data;
3732 char buf[96];
3733 int r;
3734
3735 mutex_lock(&trace_types_lock);
3736 if (!ring_buffer_expanded)
3737 r = sprintf(buf, "%lu (expanded: %lu)\n",
3738 tr->entries >> 10,
3739 trace_buf_size >> 10);
3740 else
3741 r = sprintf(buf, "%lu\n", tr->entries >> 10);
3742 mutex_unlock(&trace_types_lock);
3743
3744 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3745}
3746
3747static ssize_t
3748tracing_entries_write(struct file *filp, const char __user *ubuf,
3749 size_t cnt, loff_t *ppos)
3750{
3751 unsigned long val;
3752 int ret;
3753
3754 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
3755 if (ret)
3756 return ret;
3757
3758 /* must have at least 1 entry */
3759 if (!val)
3760 return -EINVAL;
3761
3762 /* value is in KB */
3763 val <<= 10;
3764
3765 ret = tracing_resize_ring_buffer(val);
3766 if (ret < 0)
3767 return ret;
3768
3769 *ppos += cnt;
3770
3771 return cnt;
3772}
3773
3774static ssize_t
3775tracing_total_entries_read(struct file *filp, char __user *ubuf,
3776 size_t cnt, loff_t *ppos)
3777{
3778 struct trace_array *tr = filp->private_data;
3779 char buf[64];
3780 int r, cpu;
3781 unsigned long size = 0, expanded_size = 0;
3782
3783 mutex_lock(&trace_types_lock);
3784 for_each_tracing_cpu(cpu) {
3785 size += tr->entries >> 10;
3786 if (!ring_buffer_expanded)
3787 expanded_size += trace_buf_size >> 10;
3788 }
3789 if (ring_buffer_expanded)
3790 r = sprintf(buf, "%lu\n", size);
3791 else
3792 r = sprintf(buf, "%lu (expanded: %lu)\n", size, expanded_size);
3793 mutex_unlock(&trace_types_lock);
3794
3795 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3796}
3797
3798static ssize_t
3799tracing_free_buffer_write(struct file *filp, const char __user *ubuf,
3800 size_t cnt, loff_t *ppos)
3801{
3802 /*
3803 * There is no need to read what the user has written, this function
3804 * is just to make sure that there is no error when "echo" is used
3805 */
3806
3807 *ppos += cnt;
3808
3809 return cnt;
3810}
3811
3812static int
3813tracing_free_buffer_release(struct inode *inode, struct file *filp)
3814{
3815 /* disable tracing ? */
3816 if (trace_flags & TRACE_ITER_STOP_ON_FREE)
3817 tracing_off();
3818 /* resize the ring buffer to 0 */
3819 tracing_resize_ring_buffer(0);
3820
3821 return 0;
3822}
3823
3824static ssize_t
3825tracing_mark_write(struct file *filp, const char __user *ubuf,
3826 size_t cnt, loff_t *fpos)
3827{
3828 unsigned long addr = (unsigned long)ubuf;
3829 struct ring_buffer_event *event;
3830 struct ring_buffer *buffer;
3831 struct print_entry *entry;
3832 unsigned long irq_flags;
3833 struct page *pages[2];
3834 int nr_pages = 1;
3835 ssize_t written;
3836 void *page1;
3837 void *page2;
3838 int offset;
3839 int size;
3840 int len;
3841 int ret;
3842
3843 if (tracing_disabled)
3844 return -EINVAL;
3845
3846 if (cnt > TRACE_BUF_SIZE)
3847 cnt = TRACE_BUF_SIZE;
3848
3849 /*
3850 * Userspace is injecting traces into the kernel trace buffer.
3851 * We want to be as non intrusive as possible.
3852 * To do so, we do not want to allocate any special buffers
3853 * or take any locks, but instead write the userspace data
3854 * straight into the ring buffer.
3855 *
3856 * First we need to pin the userspace buffer into memory,
3857 * which, most likely it is, because it just referenced it.
3858 * But there's no guarantee that it is. By using get_user_pages_fast()
3859 * and kmap_atomic/kunmap_atomic() we can get access to the
3860 * pages directly. We then write the data directly into the
3861 * ring buffer.
3862 */
3863 BUILD_BUG_ON(TRACE_BUF_SIZE >= PAGE_SIZE);
3864
3865 /* check if we cross pages */
3866 if ((addr & PAGE_MASK) != ((addr + cnt) & PAGE_MASK))
3867 nr_pages = 2;
3868
3869 offset = addr & (PAGE_SIZE - 1);
3870 addr &= PAGE_MASK;
3871
3872 ret = get_user_pages_fast(addr, nr_pages, 0, pages);
3873 if (ret < nr_pages) {
3874 while (--ret >= 0)
3875 put_page(pages[ret]);
3876 written = -EFAULT;
3877 goto out;
3878 }
3879
3880 page1 = kmap_atomic(pages[0]);
3881 if (nr_pages == 2)
3882 page2 = kmap_atomic(pages[1]);
3883
3884 local_save_flags(irq_flags);
3885 size = sizeof(*entry) + cnt + 2; /* possible \n added */
3886 buffer = global_trace.buffer;
3887 event = trace_buffer_lock_reserve(buffer, TRACE_PRINT, size,
3888 irq_flags, preempt_count());
3889 if (!event) {
3890 /* Ring buffer disabled, return as if not open for write */
3891 written = -EBADF;
3892 goto out_unlock;
3893 }
3894
3895 entry = ring_buffer_event_data(event);
3896 entry->ip = _THIS_IP_;
3897
3898 if (nr_pages == 2) {
3899 len = PAGE_SIZE - offset;
3900 memcpy(&entry->buf, page1 + offset, len);
3901 memcpy(&entry->buf[len], page2, cnt - len);
3902 } else
3903 memcpy(&entry->buf, page1 + offset, cnt);
3904
3905 if (entry->buf[cnt - 1] != '\n') {
3906 entry->buf[cnt] = '\n';
3907 entry->buf[cnt + 1] = '\0';
3908 } else
3909 entry->buf[cnt] = '\0';
3910
3911 ring_buffer_unlock_commit(buffer, event);
3912
3913 written = cnt;
3914
3915 *fpos += written;
3916
3917 out_unlock:
3918 if (nr_pages == 2)
3919 kunmap_atomic(page2);
3920 kunmap_atomic(page1);
3921 while (nr_pages > 0)
3922 put_page(pages[--nr_pages]);
3923 out:
3924 return written;
3925}
3926
3927static int tracing_clock_show(struct seq_file *m, void *v)
3928{
3929 int i;
3930
3931 for (i = 0; i < ARRAY_SIZE(trace_clocks); i++)
3932 seq_printf(m,
3933 "%s%s%s%s", i ? " " : "",
3934 i == trace_clock_id ? "[" : "", trace_clocks[i].name,
3935 i == trace_clock_id ? "]" : "");
3936 seq_putc(m, '\n');
3937
3938 return 0;
3939}
3940
3941static ssize_t tracing_clock_write(struct file *filp, const char __user *ubuf,
3942 size_t cnt, loff_t *fpos)
3943{
3944 char buf[64];
3945 const char *clockstr;
3946 int i;
3947
3948 if (cnt >= sizeof(buf))
3949 return -EINVAL;
3950
3951 if (copy_from_user(&buf, ubuf, cnt))
3952 return -EFAULT;
3953
3954 buf[cnt] = 0;
3955
3956 clockstr = strstrip(buf);
3957
3958 for (i = 0; i < ARRAY_SIZE(trace_clocks); i++) {
3959 if (strcmp(trace_clocks[i].name, clockstr) == 0)
3960 break;
3961 }
3962 if (i == ARRAY_SIZE(trace_clocks))
3963 return -EINVAL;
3964
3965 trace_clock_id = i;
3966
3967 mutex_lock(&trace_types_lock);
3968
3969 ring_buffer_set_clock(global_trace.buffer, trace_clocks[i].func);
3970 if (max_tr.buffer)
3971 ring_buffer_set_clock(max_tr.buffer, trace_clocks[i].func);
3972
3973 mutex_unlock(&trace_types_lock);
3974
3975 *fpos += cnt;
3976
3977 return cnt;
3978}
3979
3980static int tracing_clock_open(struct inode *inode, struct file *file)
3981{
3982 if (tracing_disabled)
3983 return -ENODEV;
3984 return single_open(file, tracing_clock_show, NULL);
3985}
3986
3987static const struct file_operations tracing_max_lat_fops = {
3988 .open = tracing_open_generic,
3989 .read = tracing_max_lat_read,
3990 .write = tracing_max_lat_write,
3991 .llseek = generic_file_llseek,
3992};
3993
3994static const struct file_operations tracing_ctrl_fops = {
3995 .open = tracing_open_generic,
3996 .read = tracing_ctrl_read,
3997 .write = tracing_ctrl_write,
3998 .llseek = generic_file_llseek,
3999};
4000
4001static const struct file_operations set_tracer_fops = {
4002 .open = tracing_open_generic,
4003 .read = tracing_set_trace_read,
4004 .write = tracing_set_trace_write,
4005 .llseek = generic_file_llseek,
4006};
4007
4008static const struct file_operations tracing_pipe_fops = {
4009 .open = tracing_open_pipe,
4010 .poll = tracing_poll_pipe,
4011 .read = tracing_read_pipe,
4012 .splice_read = tracing_splice_read_pipe,
4013 .release = tracing_release_pipe,
4014 .llseek = no_llseek,
4015};
4016
4017static const struct file_operations tracing_entries_fops = {
4018 .open = tracing_open_generic,
4019 .read = tracing_entries_read,
4020 .write = tracing_entries_write,
4021 .llseek = generic_file_llseek,
4022};
4023
4024static const struct file_operations tracing_total_entries_fops = {
4025 .open = tracing_open_generic,
4026 .read = tracing_total_entries_read,
4027 .llseek = generic_file_llseek,
4028};
4029
4030static const struct file_operations tracing_free_buffer_fops = {
4031 .write = tracing_free_buffer_write,
4032 .release = tracing_free_buffer_release,
4033};
4034
4035static const struct file_operations tracing_mark_fops = {
4036 .open = tracing_open_generic,
4037 .write = tracing_mark_write,
4038 .llseek = generic_file_llseek,
4039};
4040
4041static const struct file_operations trace_clock_fops = {
4042 .open = tracing_clock_open,
4043 .read = seq_read,
4044 .llseek = seq_lseek,
4045 .release = single_release,
4046 .write = tracing_clock_write,
4047};
4048
4049struct ftrace_buffer_info {
4050 struct trace_array *tr;
4051 void *spare;
4052 int cpu;
4053 unsigned int read;
4054};
4055
4056static int tracing_buffers_open(struct inode *inode, struct file *filp)
4057{
4058 int cpu = (int)(long)inode->i_private;
4059 struct ftrace_buffer_info *info;
4060
4061 if (tracing_disabled)
4062 return -ENODEV;
4063
4064 info = kzalloc(sizeof(*info), GFP_KERNEL);
4065 if (!info)
4066 return -ENOMEM;
4067
4068 info->tr = &global_trace;
4069 info->cpu = cpu;
4070 info->spare = NULL;
4071 /* Force reading ring buffer for first read */
4072 info->read = (unsigned int)-1;
4073
4074 filp->private_data = info;
4075
4076 return nonseekable_open(inode, filp);
4077}
4078
4079static ssize_t
4080tracing_buffers_read(struct file *filp, char __user *ubuf,
4081 size_t count, loff_t *ppos)
4082{
4083 struct ftrace_buffer_info *info = filp->private_data;
4084 ssize_t ret;
4085 size_t size;
4086
4087 if (!count)
4088 return 0;
4089
4090 if (!info->spare)
4091 info->spare = ring_buffer_alloc_read_page(info->tr->buffer, info->cpu);
4092 if (!info->spare)
4093 return -ENOMEM;
4094
4095 /* Do we have previous read data to read? */
4096 if (info->read < PAGE_SIZE)
4097 goto read;
4098
4099 trace_access_lock(info->cpu);
4100 ret = ring_buffer_read_page(info->tr->buffer,
4101 &info->spare,
4102 count,
4103 info->cpu, 0);
4104 trace_access_unlock(info->cpu);
4105 if (ret < 0)
4106 return 0;
4107
4108 info->read = 0;
4109
4110read:
4111 size = PAGE_SIZE - info->read;
4112 if (size > count)
4113 size = count;
4114
4115 ret = copy_to_user(ubuf, info->spare + info->read, size);
4116 if (ret == size)
4117 return -EFAULT;
4118 size -= ret;
4119
4120 *ppos += size;
4121 info->read += size;
4122
4123 return size;
4124}
4125
4126static int tracing_buffers_release(struct inode *inode, struct file *file)
4127{
4128 struct ftrace_buffer_info *info = file->private_data;
4129
4130 if (info->spare)
4131 ring_buffer_free_read_page(info->tr->buffer, info->spare);
4132 kfree(info);
4133
4134 return 0;
4135}
4136
4137struct buffer_ref {
4138 struct ring_buffer *buffer;
4139 void *page;
4140 int ref;
4141};
4142
4143static void buffer_pipe_buf_release(struct pipe_inode_info *pipe,
4144 struct pipe_buffer *buf)
4145{
4146 struct buffer_ref *ref = (struct buffer_ref *)buf->private;
4147
4148 if (--ref->ref)
4149 return;
4150
4151 ring_buffer_free_read_page(ref->buffer, ref->page);
4152 kfree(ref);
4153 buf->private = 0;
4154}
4155
4156static int buffer_pipe_buf_steal(struct pipe_inode_info *pipe,
4157 struct pipe_buffer *buf)
4158{
4159 return 1;
4160}
4161
4162static void buffer_pipe_buf_get(struct pipe_inode_info *pipe,
4163 struct pipe_buffer *buf)
4164{
4165 struct buffer_ref *ref = (struct buffer_ref *)buf->private;
4166
4167 ref->ref++;
4168}
4169
4170/* Pipe buffer operations for a buffer. */
4171static const struct pipe_buf_operations buffer_pipe_buf_ops = {
4172 .can_merge = 0,
4173 .map = generic_pipe_buf_map,
4174 .unmap = generic_pipe_buf_unmap,
4175 .confirm = generic_pipe_buf_confirm,
4176 .release = buffer_pipe_buf_release,
4177 .steal = buffer_pipe_buf_steal,
4178 .get = buffer_pipe_buf_get,
4179};
4180
4181/*
4182 * Callback from splice_to_pipe(), if we need to release some pages
4183 * at the end of the spd in case we error'ed out in filling the pipe.
4184 */
4185static void buffer_spd_release(struct splice_pipe_desc *spd, unsigned int i)
4186{
4187 struct buffer_ref *ref =
4188 (struct buffer_ref *)spd->partial[i].private;
4189
4190 if (--ref->ref)
4191 return;
4192
4193 ring_buffer_free_read_page(ref->buffer, ref->page);
4194 kfree(ref);
4195 spd->partial[i].private = 0;
4196}
4197
4198static ssize_t
4199tracing_buffers_splice_read(struct file *file, loff_t *ppos,
4200 struct pipe_inode_info *pipe, size_t len,
4201 unsigned int flags)
4202{
4203 struct ftrace_buffer_info *info = file->private_data;
4204 struct partial_page partial_def[PIPE_DEF_BUFFERS];
4205 struct page *pages_def[PIPE_DEF_BUFFERS];
4206 struct splice_pipe_desc spd = {
4207 .pages = pages_def,
4208 .partial = partial_def,
4209 .flags = flags,
4210 .ops = &buffer_pipe_buf_ops,
4211 .spd_release = buffer_spd_release,
4212 };
4213 struct buffer_ref *ref;
4214 int entries, size, i;
4215 size_t ret;
4216
4217 if (splice_grow_spd(pipe, &spd))
4218 return -ENOMEM;
4219
4220 if (*ppos & (PAGE_SIZE - 1)) {
4221 WARN_ONCE(1, "Ftrace: previous read must page-align\n");
4222 ret = -EINVAL;
4223 goto out;
4224 }
4225
4226 if (len & (PAGE_SIZE - 1)) {
4227 WARN_ONCE(1, "Ftrace: splice_read should page-align\n");
4228 if (len < PAGE_SIZE) {
4229 ret = -EINVAL;
4230 goto out;
4231 }
4232 len &= PAGE_MASK;
4233 }
4234
4235 trace_access_lock(info->cpu);
4236 entries = ring_buffer_entries_cpu(info->tr->buffer, info->cpu);
4237
4238 for (i = 0; i < pipe->buffers && len && entries; i++, len -= PAGE_SIZE) {
4239 struct page *page;
4240 int r;
4241
4242 ref = kzalloc(sizeof(*ref), GFP_KERNEL);
4243 if (!ref)
4244 break;
4245
4246 ref->ref = 1;
4247 ref->buffer = info->tr->buffer;
4248 ref->page = ring_buffer_alloc_read_page(ref->buffer, info->cpu);
4249 if (!ref->page) {
4250 kfree(ref);
4251 break;
4252 }
4253
4254 r = ring_buffer_read_page(ref->buffer, &ref->page,
4255 len, info->cpu, 1);
4256 if (r < 0) {
4257 ring_buffer_free_read_page(ref->buffer, ref->page);
4258 kfree(ref);
4259 break;
4260 }
4261
4262 /*
4263 * zero out any left over data, this is going to
4264 * user land.
4265 */
4266 size = ring_buffer_page_len(ref->page);
4267 if (size < PAGE_SIZE)
4268 memset(ref->page + size, 0, PAGE_SIZE - size);
4269
4270 page = virt_to_page(ref->page);
4271
4272 spd.pages[i] = page;
4273 spd.partial[i].len = PAGE_SIZE;
4274 spd.partial[i].offset = 0;
4275 spd.partial[i].private = (unsigned long)ref;
4276 spd.nr_pages++;
4277 *ppos += PAGE_SIZE;
4278
4279 entries = ring_buffer_entries_cpu(info->tr->buffer, info->cpu);
4280 }
4281
4282 trace_access_unlock(info->cpu);
4283 spd.nr_pages = i;
4284
4285 /* did we read anything? */
4286 if (!spd.nr_pages) {
4287 if (flags & SPLICE_F_NONBLOCK)
4288 ret = -EAGAIN;
4289 else
4290 ret = 0;
4291 /* TODO: block */
4292 goto out;
4293 }
4294
4295 ret = splice_to_pipe(pipe, &spd);
4296 splice_shrink_spd(pipe, &spd);
4297out:
4298 return ret;
4299}
4300
4301static const struct file_operations tracing_buffers_fops = {
4302 .open = tracing_buffers_open,
4303 .read = tracing_buffers_read,
4304 .release = tracing_buffers_release,
4305 .splice_read = tracing_buffers_splice_read,
4306 .llseek = no_llseek,
4307};
4308
4309static ssize_t
4310tracing_stats_read(struct file *filp, char __user *ubuf,
4311 size_t count, loff_t *ppos)
4312{
4313 unsigned long cpu = (unsigned long)filp->private_data;
4314 struct trace_array *tr = &global_trace;
4315 struct trace_seq *s;
4316 unsigned long cnt;
4317 unsigned long long t;
4318 unsigned long usec_rem;
4319
4320 s = kmalloc(sizeof(*s), GFP_KERNEL);
4321 if (!s)
4322 return -ENOMEM;
4323
4324 trace_seq_init(s);
4325
4326 cnt = ring_buffer_entries_cpu(tr->buffer, cpu);
4327 trace_seq_printf(s, "entries: %ld\n", cnt);
4328
4329 cnt = ring_buffer_overrun_cpu(tr->buffer, cpu);
4330 trace_seq_printf(s, "overrun: %ld\n", cnt);
4331
4332 cnt = ring_buffer_commit_overrun_cpu(tr->buffer, cpu);
4333 trace_seq_printf(s, "commit overrun: %ld\n", cnt);
4334
4335 cnt = ring_buffer_bytes_cpu(tr->buffer, cpu);
4336 trace_seq_printf(s, "bytes: %ld\n", cnt);
4337
4338 t = ns2usecs(ring_buffer_oldest_event_ts(tr->buffer, cpu));
4339 usec_rem = do_div(t, USEC_PER_SEC);
4340 trace_seq_printf(s, "oldest event ts: %5llu.%06lu\n", t, usec_rem);
4341
4342 t = ns2usecs(ring_buffer_time_stamp(tr->buffer, cpu));
4343 usec_rem = do_div(t, USEC_PER_SEC);
4344 trace_seq_printf(s, "now ts: %5llu.%06lu\n", t, usec_rem);
4345
4346 count = simple_read_from_buffer(ubuf, count, ppos, s->buffer, s->len);
4347
4348 kfree(s);
4349
4350 return count;
4351}
4352
4353static const struct file_operations tracing_stats_fops = {
4354 .open = tracing_open_generic,
4355 .read = tracing_stats_read,
4356 .llseek = generic_file_llseek,
4357};
4358
4359#ifdef CONFIG_DYNAMIC_FTRACE
4360
4361int __weak ftrace_arch_read_dyn_info(char *buf, int size)
4362{
4363 return 0;
4364}
4365
4366static ssize_t
4367tracing_read_dyn_info(struct file *filp, char __user *ubuf,
4368 size_t cnt, loff_t *ppos)
4369{
4370 static char ftrace_dyn_info_buffer[1024];
4371 static DEFINE_MUTEX(dyn_info_mutex);
4372 unsigned long *p = filp->private_data;
4373 char *buf = ftrace_dyn_info_buffer;
4374 int size = ARRAY_SIZE(ftrace_dyn_info_buffer);
4375 int r;
4376
4377 mutex_lock(&dyn_info_mutex);
4378 r = sprintf(buf, "%ld ", *p);
4379
4380 r += ftrace_arch_read_dyn_info(buf+r, (size-1)-r);
4381 buf[r++] = '\n';
4382
4383 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
4384
4385 mutex_unlock(&dyn_info_mutex);
4386
4387 return r;
4388}
4389
4390static const struct file_operations tracing_dyn_info_fops = {
4391 .open = tracing_open_generic,
4392 .read = tracing_read_dyn_info,
4393 .llseek = generic_file_llseek,
4394};
4395#endif
4396
4397static struct dentry *d_tracer;
4398
4399struct dentry *tracing_init_dentry(void)
4400{
4401 static int once;
4402
4403 if (d_tracer)
4404 return d_tracer;
4405
4406 if (!debugfs_initialized())
4407 return NULL;
4408
4409 d_tracer = debugfs_create_dir("tracing", NULL);
4410
4411 if (!d_tracer && !once) {
4412 once = 1;
4413 pr_warning("Could not create debugfs directory 'tracing'\n");
4414 return NULL;
4415 }
4416
4417 return d_tracer;
4418}
4419
4420static struct dentry *d_percpu;
4421
4422struct dentry *tracing_dentry_percpu(void)
4423{
4424 static int once;
4425 struct dentry *d_tracer;
4426
4427 if (d_percpu)
4428 return d_percpu;
4429
4430 d_tracer = tracing_init_dentry();
4431
4432 if (!d_tracer)
4433 return NULL;
4434
4435 d_percpu = debugfs_create_dir("per_cpu", d_tracer);
4436
4437 if (!d_percpu && !once) {
4438 once = 1;
4439 pr_warning("Could not create debugfs directory 'per_cpu'\n");
4440 return NULL;
4441 }
4442
4443 return d_percpu;
4444}
4445
4446static void tracing_init_debugfs_percpu(long cpu)
4447{
4448 struct dentry *d_percpu = tracing_dentry_percpu();
4449 struct dentry *d_cpu;
4450 char cpu_dir[30]; /* 30 characters should be more than enough */
4451
4452 snprintf(cpu_dir, 30, "cpu%ld", cpu);
4453 d_cpu = debugfs_create_dir(cpu_dir, d_percpu);
4454 if (!d_cpu) {
4455 pr_warning("Could not create debugfs '%s' entry\n", cpu_dir);
4456 return;
4457 }
4458
4459 /* per cpu trace_pipe */
4460 trace_create_file("trace_pipe", 0444, d_cpu,
4461 (void *) cpu, &tracing_pipe_fops);
4462
4463 /* per cpu trace */
4464 trace_create_file("trace", 0644, d_cpu,
4465 (void *) cpu, &tracing_fops);
4466
4467 trace_create_file("trace_pipe_raw", 0444, d_cpu,
4468 (void *) cpu, &tracing_buffers_fops);
4469
4470 trace_create_file("stats", 0444, d_cpu,
4471 (void *) cpu, &tracing_stats_fops);
4472}
4473
4474#ifdef CONFIG_FTRACE_SELFTEST
4475/* Let selftest have access to static functions in this file */
4476#include "trace_selftest.c"
4477#endif
4478
4479struct trace_option_dentry {
4480 struct tracer_opt *opt;
4481 struct tracer_flags *flags;
4482 struct dentry *entry;
4483};
4484
4485static ssize_t
4486trace_options_read(struct file *filp, char __user *ubuf, size_t cnt,
4487 loff_t *ppos)
4488{
4489 struct trace_option_dentry *topt = filp->private_data;
4490 char *buf;
4491
4492 if (topt->flags->val & topt->opt->bit)
4493 buf = "1\n";
4494 else
4495 buf = "0\n";
4496
4497 return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
4498}
4499
4500static ssize_t
4501trace_options_write(struct file *filp, const char __user *ubuf, size_t cnt,
4502 loff_t *ppos)
4503{
4504 struct trace_option_dentry *topt = filp->private_data;
4505 unsigned long val;
4506 int ret;
4507
4508 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
4509 if (ret)
4510 return ret;
4511
4512 if (val != 0 && val != 1)
4513 return -EINVAL;
4514
4515 if (!!(topt->flags->val & topt->opt->bit) != val) {
4516 mutex_lock(&trace_types_lock);
4517 ret = __set_tracer_option(current_trace, topt->flags,
4518 topt->opt, !val);
4519 mutex_unlock(&trace_types_lock);
4520 if (ret)
4521 return ret;
4522 }
4523
4524 *ppos += cnt;
4525
4526 return cnt;
4527}
4528
4529
4530static const struct file_operations trace_options_fops = {
4531 .open = tracing_open_generic,
4532 .read = trace_options_read,
4533 .write = trace_options_write,
4534 .llseek = generic_file_llseek,
4535};
4536
4537static ssize_t
4538trace_options_core_read(struct file *filp, char __user *ubuf, size_t cnt,
4539 loff_t *ppos)
4540{
4541 long index = (long)filp->private_data;
4542 char *buf;
4543
4544 if (trace_flags & (1 << index))
4545 buf = "1\n";
4546 else
4547 buf = "0\n";
4548
4549 return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
4550}
4551
4552static ssize_t
4553trace_options_core_write(struct file *filp, const char __user *ubuf, size_t cnt,
4554 loff_t *ppos)
4555{
4556 long index = (long)filp->private_data;
4557 unsigned long val;
4558 int ret;
4559
4560 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
4561 if (ret)
4562 return ret;
4563
4564 if (val != 0 && val != 1)
4565 return -EINVAL;
4566 set_tracer_flags(1 << index, val);
4567
4568 *ppos += cnt;
4569
4570 return cnt;
4571}
4572
4573static const struct file_operations trace_options_core_fops = {
4574 .open = tracing_open_generic,
4575 .read = trace_options_core_read,
4576 .write = trace_options_core_write,
4577 .llseek = generic_file_llseek,
4578};
4579
4580struct dentry *trace_create_file(const char *name,
4581 umode_t mode,
4582 struct dentry *parent,
4583 void *data,
4584 const struct file_operations *fops)
4585{
4586 struct dentry *ret;
4587
4588 ret = debugfs_create_file(name, mode, parent, data, fops);
4589 if (!ret)
4590 pr_warning("Could not create debugfs '%s' entry\n", name);
4591
4592 return ret;
4593}
4594
4595
4596static struct dentry *trace_options_init_dentry(void)
4597{
4598 struct dentry *d_tracer;
4599 static struct dentry *t_options;
4600
4601 if (t_options)
4602 return t_options;
4603
4604 d_tracer = tracing_init_dentry();
4605 if (!d_tracer)
4606 return NULL;
4607
4608 t_options = debugfs_create_dir("options", d_tracer);
4609 if (!t_options) {
4610 pr_warning("Could not create debugfs directory 'options'\n");
4611 return NULL;
4612 }
4613
4614 return t_options;
4615}
4616
4617static void
4618create_trace_option_file(struct trace_option_dentry *topt,
4619 struct tracer_flags *flags,
4620 struct tracer_opt *opt)
4621{
4622 struct dentry *t_options;
4623
4624 t_options = trace_options_init_dentry();
4625 if (!t_options)
4626 return;
4627
4628 topt->flags = flags;
4629 topt->opt = opt;
4630
4631 topt->entry = trace_create_file(opt->name, 0644, t_options, topt,
4632 &trace_options_fops);
4633
4634}
4635
4636static struct trace_option_dentry *
4637create_trace_option_files(struct tracer *tracer)
4638{
4639 struct trace_option_dentry *topts;
4640 struct tracer_flags *flags;
4641 struct tracer_opt *opts;
4642 int cnt;
4643
4644 if (!tracer)
4645 return NULL;
4646
4647 flags = tracer->flags;
4648
4649 if (!flags || !flags->opts)
4650 return NULL;
4651
4652 opts = flags->opts;
4653
4654 for (cnt = 0; opts[cnt].name; cnt++)
4655 ;
4656
4657 topts = kcalloc(cnt + 1, sizeof(*topts), GFP_KERNEL);
4658 if (!topts)
4659 return NULL;
4660
4661 for (cnt = 0; opts[cnt].name; cnt++)
4662 create_trace_option_file(&topts[cnt], flags,
4663 &opts[cnt]);
4664
4665 return topts;
4666}
4667
4668static void
4669destroy_trace_option_files(struct trace_option_dentry *topts)
4670{
4671 int cnt;
4672
4673 if (!topts)
4674 return;
4675
4676 for (cnt = 0; topts[cnt].opt; cnt++) {
4677 if (topts[cnt].entry)
4678 debugfs_remove(topts[cnt].entry);
4679 }
4680
4681 kfree(topts);
4682}
4683
4684static struct dentry *
4685create_trace_option_core_file(const char *option, long index)
4686{
4687 struct dentry *t_options;
4688
4689 t_options = trace_options_init_dentry();
4690 if (!t_options)
4691 return NULL;
4692
4693 return trace_create_file(option, 0644, t_options, (void *)index,
4694 &trace_options_core_fops);
4695}
4696
4697static __init void create_trace_options_dir(void)
4698{
4699 struct dentry *t_options;
4700 int i;
4701
4702 t_options = trace_options_init_dentry();
4703 if (!t_options)
4704 return;
4705
4706 for (i = 0; trace_options[i]; i++)
4707 create_trace_option_core_file(trace_options[i], i);
4708}
4709
4710static ssize_t
4711rb_simple_read(struct file *filp, char __user *ubuf,
4712 size_t cnt, loff_t *ppos)
4713{
4714 struct ring_buffer *buffer = filp->private_data;
4715 char buf[64];
4716 int r;
4717
4718 if (buffer)
4719 r = ring_buffer_record_is_on(buffer);
4720 else
4721 r = 0;
4722
4723 r = sprintf(buf, "%d\n", r);
4724
4725 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
4726}
4727
4728static ssize_t
4729rb_simple_write(struct file *filp, const char __user *ubuf,
4730 size_t cnt, loff_t *ppos)
4731{
4732 struct ring_buffer *buffer = filp->private_data;
4733 unsigned long val;
4734 int ret;
4735
4736 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
4737 if (ret)
4738 return ret;
4739
4740 if (buffer) {
4741 if (val)
4742 ring_buffer_record_on(buffer);
4743 else
4744 ring_buffer_record_off(buffer);
4745 }
4746
4747 (*ppos)++;
4748
4749 return cnt;
4750}
4751
4752static const struct file_operations rb_simple_fops = {
4753 .open = tracing_open_generic,
4754 .read = rb_simple_read,
4755 .write = rb_simple_write,
4756 .llseek = default_llseek,
4757};
4758
4759static __init int tracer_init_debugfs(void)
4760{
4761 struct dentry *d_tracer;
4762 int cpu;
4763
4764 trace_access_lock_init();
4765
4766 d_tracer = tracing_init_dentry();
4767
4768 trace_create_file("tracing_enabled", 0644, d_tracer,
4769 &global_trace, &tracing_ctrl_fops);
4770
4771 trace_create_file("trace_options", 0644, d_tracer,
4772 NULL, &tracing_iter_fops);
4773
4774 trace_create_file("tracing_cpumask", 0644, d_tracer,
4775 NULL, &tracing_cpumask_fops);
4776
4777 trace_create_file("trace", 0644, d_tracer,
4778 (void *) TRACE_PIPE_ALL_CPU, &tracing_fops);
4779
4780 trace_create_file("available_tracers", 0444, d_tracer,
4781 &global_trace, &show_traces_fops);
4782
4783 trace_create_file("current_tracer", 0644, d_tracer,
4784 &global_trace, &set_tracer_fops);
4785
4786#ifdef CONFIG_TRACER_MAX_TRACE
4787 trace_create_file("tracing_max_latency", 0644, d_tracer,
4788 &tracing_max_latency, &tracing_max_lat_fops);
4789#endif
4790
4791 trace_create_file("tracing_thresh", 0644, d_tracer,
4792 &tracing_thresh, &tracing_max_lat_fops);
4793
4794 trace_create_file("README", 0444, d_tracer,
4795 NULL, &tracing_readme_fops);
4796
4797 trace_create_file("trace_pipe", 0444, d_tracer,
4798 (void *) TRACE_PIPE_ALL_CPU, &tracing_pipe_fops);
4799
4800 trace_create_file("buffer_size_kb", 0644, d_tracer,
4801 &global_trace, &tracing_entries_fops);
4802
4803 trace_create_file("buffer_total_size_kb", 0444, d_tracer,
4804 &global_trace, &tracing_total_entries_fops);
4805
4806 trace_create_file("free_buffer", 0644, d_tracer,
4807 &global_trace, &tracing_free_buffer_fops);
4808
4809 trace_create_file("trace_marker", 0220, d_tracer,
4810 NULL, &tracing_mark_fops);
4811
4812 trace_create_file("saved_cmdlines", 0444, d_tracer,
4813 NULL, &tracing_saved_cmdlines_fops);
4814
4815 trace_create_file("trace_clock", 0644, d_tracer, NULL,
4816 &trace_clock_fops);
4817
4818 trace_create_file("tracing_on", 0644, d_tracer,
4819 global_trace.buffer, &rb_simple_fops);
4820
4821#ifdef CONFIG_DYNAMIC_FTRACE
4822 trace_create_file("dyn_ftrace_total_info", 0444, d_tracer,
4823 &ftrace_update_tot_cnt, &tracing_dyn_info_fops);
4824#endif
4825
4826 create_trace_options_dir();
4827
4828 for_each_tracing_cpu(cpu)
4829 tracing_init_debugfs_percpu(cpu);
4830
4831 return 0;
4832}
4833
4834static int trace_panic_handler(struct notifier_block *this,
4835 unsigned long event, void *unused)
4836{
4837 if (ftrace_dump_on_oops)
4838 ftrace_dump(ftrace_dump_on_oops);
4839 return NOTIFY_OK;
4840}
4841
4842static struct notifier_block trace_panic_notifier = {
4843 .notifier_call = trace_panic_handler,
4844 .next = NULL,
4845 .priority = 150 /* priority: INT_MAX >= x >= 0 */
4846};
4847
4848static int trace_die_handler(struct notifier_block *self,
4849 unsigned long val,
4850 void *data)
4851{
4852 switch (val) {
4853 case DIE_OOPS:
4854 if (ftrace_dump_on_oops)
4855 ftrace_dump(ftrace_dump_on_oops);
4856 break;
4857 default:
4858 break;
4859 }
4860 return NOTIFY_OK;
4861}
4862
4863static struct notifier_block trace_die_notifier = {
4864 .notifier_call = trace_die_handler,
4865 .priority = 200
4866};
4867
4868/*
4869 * printk is set to max of 1024, we really don't need it that big.
4870 * Nothing should be printing 1000 characters anyway.
4871 */
4872#define TRACE_MAX_PRINT 1000
4873
4874/*
4875 * Define here KERN_TRACE so that we have one place to modify
4876 * it if we decide to change what log level the ftrace dump
4877 * should be at.
4878 */
4879#define KERN_TRACE KERN_EMERG
4880
4881void
4882trace_printk_seq(struct trace_seq *s)
4883{
4884 /* Probably should print a warning here. */
4885 if (s->len >= 1000)
4886 s->len = 1000;
4887
4888 /* should be zero ended, but we are paranoid. */
4889 s->buffer[s->len] = 0;
4890
4891 printk(KERN_TRACE "%s", s->buffer);
4892
4893 trace_seq_init(s);
4894}
4895
4896void trace_init_global_iter(struct trace_iterator *iter)
4897{
4898 iter->tr = &global_trace;
4899 iter->trace = current_trace;
4900 iter->cpu_file = TRACE_PIPE_ALL_CPU;
4901}
4902
4903static void
4904__ftrace_dump(bool disable_tracing, enum ftrace_dump_mode oops_dump_mode)
4905{
4906 static arch_spinlock_t ftrace_dump_lock =
4907 (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
4908 /* use static because iter can be a bit big for the stack */
4909 static struct trace_iterator iter;
4910 unsigned int old_userobj;
4911 static int dump_ran;
4912 unsigned long flags;
4913 int cnt = 0, cpu;
4914
4915 /* only one dump */
4916 local_irq_save(flags);
4917 arch_spin_lock(&ftrace_dump_lock);
4918 if (dump_ran)
4919 goto out;
4920
4921 dump_ran = 1;
4922
4923 tracing_off();
4924
4925 /* Did function tracer already get disabled? */
4926 if (ftrace_is_dead()) {
4927 printk("# WARNING: FUNCTION TRACING IS CORRUPTED\n");
4928 printk("# MAY BE MISSING FUNCTION EVENTS\n");
4929 }
4930
4931 if (disable_tracing)
4932 ftrace_kill();
4933
4934 trace_init_global_iter(&iter);
4935
4936 for_each_tracing_cpu(cpu) {
4937 atomic_inc(&iter.tr->data[cpu]->disabled);
4938 }
4939
4940 old_userobj = trace_flags & TRACE_ITER_SYM_USEROBJ;
4941
4942 /* don't look at user memory in panic mode */
4943 trace_flags &= ~TRACE_ITER_SYM_USEROBJ;
4944
4945 /* Simulate the iterator */
4946 iter.tr = &global_trace;
4947 iter.trace = current_trace;
4948
4949 switch (oops_dump_mode) {
4950 case DUMP_ALL:
4951 iter.cpu_file = TRACE_PIPE_ALL_CPU;
4952 break;
4953 case DUMP_ORIG:
4954 iter.cpu_file = raw_smp_processor_id();
4955 break;
4956 case DUMP_NONE:
4957 goto out_enable;
4958 default:
4959 printk(KERN_TRACE "Bad dumping mode, switching to all CPUs dump\n");
4960 iter.cpu_file = TRACE_PIPE_ALL_CPU;
4961 }
4962
4963 printk(KERN_TRACE "Dumping ftrace buffer:\n");
4964
4965 /*
4966 * We need to stop all tracing on all CPUS to read the
4967 * the next buffer. This is a bit expensive, but is
4968 * not done often. We fill all what we can read,
4969 * and then release the locks again.
4970 */
4971
4972 while (!trace_empty(&iter)) {
4973
4974 if (!cnt)
4975 printk(KERN_TRACE "---------------------------------\n");
4976
4977 cnt++;
4978
4979 /* reset all but tr, trace, and overruns */
4980 memset(&iter.seq, 0,
4981 sizeof(struct trace_iterator) -
4982 offsetof(struct trace_iterator, seq));
4983 iter.iter_flags |= TRACE_FILE_LAT_FMT;
4984 iter.pos = -1;
4985
4986 if (trace_find_next_entry_inc(&iter) != NULL) {
4987 int ret;
4988
4989 ret = print_trace_line(&iter);
4990 if (ret != TRACE_TYPE_NO_CONSUME)
4991 trace_consume(&iter);
4992 }
4993 touch_nmi_watchdog();
4994
4995 trace_printk_seq(&iter.seq);
4996 }
4997
4998 if (!cnt)
4999 printk(KERN_TRACE " (ftrace buffer empty)\n");
5000 else
5001 printk(KERN_TRACE "---------------------------------\n");
5002
5003 out_enable:
5004 /* Re-enable tracing if requested */
5005 if (!disable_tracing) {
5006 trace_flags |= old_userobj;
5007
5008 for_each_tracing_cpu(cpu) {
5009 atomic_dec(&iter.tr->data[cpu]->disabled);
5010 }
5011 tracing_on();
5012 }
5013
5014 out:
5015 arch_spin_unlock(&ftrace_dump_lock);
5016 local_irq_restore(flags);
5017}
5018
5019/* By default: disable tracing after the dump */
5020void ftrace_dump(enum ftrace_dump_mode oops_dump_mode)
5021{
5022 __ftrace_dump(true, oops_dump_mode);
5023}
5024EXPORT_SYMBOL_GPL(ftrace_dump);
5025
5026__init static int tracer_alloc_buffers(void)
5027{
5028 int ring_buf_size;
5029 enum ring_buffer_flags rb_flags;
5030 int i;
5031 int ret = -ENOMEM;
5032
5033
5034 if (!alloc_cpumask_var(&tracing_buffer_mask, GFP_KERNEL))
5035 goto out;
5036
5037 if (!alloc_cpumask_var(&tracing_cpumask, GFP_KERNEL))
5038 goto out_free_buffer_mask;
5039
5040 /* Only allocate trace_printk buffers if a trace_printk exists */
5041 if (__stop___trace_bprintk_fmt != __start___trace_bprintk_fmt)
5042 trace_printk_init_buffers();
5043
5044 /* To save memory, keep the ring buffer size to its minimum */
5045 if (ring_buffer_expanded)
5046 ring_buf_size = trace_buf_size;
5047 else
5048 ring_buf_size = 1;
5049
5050 rb_flags = trace_flags & TRACE_ITER_OVERWRITE ? RB_FL_OVERWRITE : 0;
5051
5052 cpumask_copy(tracing_buffer_mask, cpu_possible_mask);
5053 cpumask_copy(tracing_cpumask, cpu_all_mask);
5054
5055 /* TODO: make the number of buffers hot pluggable with CPUS */
5056 global_trace.buffer = ring_buffer_alloc(ring_buf_size, rb_flags);
5057 if (!global_trace.buffer) {
5058 printk(KERN_ERR "tracer: failed to allocate ring buffer!\n");
5059 WARN_ON(1);
5060 goto out_free_cpumask;
5061 }
5062 global_trace.entries = ring_buffer_size(global_trace.buffer);
5063 if (global_trace.buffer_disabled)
5064 tracing_off();
5065
5066
5067#ifdef CONFIG_TRACER_MAX_TRACE
5068 max_tr.buffer = ring_buffer_alloc(1, rb_flags);
5069 if (!max_tr.buffer) {
5070 printk(KERN_ERR "tracer: failed to allocate max ring buffer!\n");
5071 WARN_ON(1);
5072 ring_buffer_free(global_trace.buffer);
5073 goto out_free_cpumask;
5074 }
5075 max_tr.entries = 1;
5076#endif
5077
5078 /* Allocate the first page for all buffers */
5079 for_each_tracing_cpu(i) {
5080 global_trace.data[i] = &per_cpu(global_trace_cpu, i);
5081 max_tr.data[i] = &per_cpu(max_tr_data, i);
5082 }
5083
5084 trace_init_cmdlines();
5085
5086 register_tracer(&nop_trace);
5087 current_trace = &nop_trace;
5088 /* All seems OK, enable tracing */
5089 tracing_disabled = 0;
5090
5091 atomic_notifier_chain_register(&panic_notifier_list,
5092 &trace_panic_notifier);
5093
5094 register_die_notifier(&trace_die_notifier);
5095
5096 return 0;
5097
5098out_free_cpumask:
5099 free_cpumask_var(tracing_cpumask);
5100out_free_buffer_mask:
5101 free_cpumask_var(tracing_buffer_mask);
5102out:
5103 return ret;
5104}
5105
5106__init static int clear_boot_tracer(void)
5107{
5108 /*
5109 * The default tracer at boot buffer is an init section.
5110 * This function is called in lateinit. If we did not
5111 * find the boot tracer, then clear it out, to prevent
5112 * later registration from accessing the buffer that is
5113 * about to be freed.
5114 */
5115 if (!default_bootup_tracer)
5116 return 0;
5117
5118 printk(KERN_INFO "ftrace bootup tracer '%s' not registered.\n",
5119 default_bootup_tracer);
5120 default_bootup_tracer = NULL;
5121
5122 return 0;
5123}
5124
5125early_initcall(tracer_alloc_buffers);
5126fs_initcall(tracer_init_debugfs);
5127late_initcall(clear_boot_tracer);