blob: f7488f44d26babd796d8b0fd5079d4eaeb8206a5 [file] [log] [blame]
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001/*
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 */
Steven Rostedt2cadf912008-12-01 22:20:19 -050014#include <linux/ring_buffer.h>
Sam Ravnborg273b2812009-10-18 00:52:28 +020015#include <generated/utsrelease.h>
Steven Rostedt2cadf912008-12-01 22:20:19 -050016#include <linux/stacktrace.h>
17#include <linux/writeback.h>
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020018#include <linux/kallsyms.h>
19#include <linux/seq_file.h>
Alexey Dobriyan405f5572009-07-11 22:08:37 +040020#include <linux/smp_lock.h>
Steven Rostedt3f5a54e2008-07-30 22:36:46 -040021#include <linux/notifier.h>
Steven Rostedt2cadf912008-12-01 22:20:19 -050022#include <linux/irqflags.h>
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020023#include <linux/debugfs.h>
Steven Rostedt4c11d7a2008-05-12 21:20:43 +020024#include <linux/pagemap.h>
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020025#include <linux/hardirq.h>
26#include <linux/linkage.h>
27#include <linux/uaccess.h>
Steven Rostedt2cadf912008-12-01 22:20:19 -050028#include <linux/kprobes.h>
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020029#include <linux/ftrace.h>
30#include <linux/module.h>
31#include <linux/percpu.h>
Steven Rostedt2cadf912008-12-01 22:20:19 -050032#include <linux/splice.h>
Steven Rostedt3f5a54e2008-07-30 22:36:46 -040033#include <linux/kdebug.h>
Frederic Weisbecker5f0c6c02009-03-27 14:22:10 +010034#include <linux/string.h>
Lai Jiangshan7e53bd42010-01-06 20:08:50 +080035#include <linux/rwsem.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020037#include <linux/ctype.h>
38#include <linux/init.h>
Soeren Sandmann Pedersen2a2cc8f2008-05-12 21:20:49 +020039#include <linux/poll.h>
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020040#include <linux/fs.h>
Ingo Molnar86387f72008-05-12 21:20:51 +020041
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020042#include "trace.h"
Steven Rostedtf0868d12008-12-23 23:24:12 -050043#include "trace_output.h"
Steven Rostedtbc0c38d2008-05-12 21:20:42 +020044
Steven Rostedt3928a8a2008-09-29 23:02:41 -040045#define TRACE_BUFFER_FLAGS (RB_FL_OVERWRITE)
46
Frederic Weisbecker8e1b82e2008-12-06 03:41:33 +010047/*
Steven Rostedt73c51622009-03-11 13:42:01 -040048 * On boot up, the ring buffer is set to the minimum size, so that
49 * we do not waste memory on systems that are not using tracing.
50 */
Li Zefan020e5f82009-07-01 10:47:05 +080051int ring_buffer_expanded;
Steven Rostedt73c51622009-03-11 13:42:01 -040052
53/*
Frederic Weisbecker8e1b82e2008-12-06 03:41:33 +010054 * We need to change this state when a selftest is running.
Frederic Weisbeckerff325042008-12-04 23:47:35 +010055 * A selftest will lurk into the ring-buffer to count the
56 * entries inserted during the selftest although some concurrent
Ingo Molnar5e1607a2009-03-05 10:24:48 +010057 * insertions into the ring-buffer such as trace_printk could occurred
Frederic Weisbeckerff325042008-12-04 23:47:35 +010058 * at the same time, giving false positive or negative results.
59 */
Frederic Weisbecker8e1b82e2008-12-06 03:41:33 +010060static bool __read_mostly tracing_selftest_running;
Frederic Weisbeckerff325042008-12-04 23:47:35 +010061
Steven Rostedtb2821ae2009-02-02 21:38:32 -050062/*
63 * If a tracer is running, we do not want to run SELFTEST.
64 */
Li Zefan020e5f82009-07-01 10:47:05 +080065bool __read_mostly tracing_selftest_disabled;
Steven Rostedtb2821ae2009-02-02 21:38:32 -050066
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +010067/* For tracers that don't implement custom flags */
68static struct tracer_opt dummy_tracer_opt[] = {
69 { }
70};
71
72static struct tracer_flags dummy_tracer_flags = {
73 .val = 0,
74 .opts = dummy_tracer_opt
75};
76
77static int dummy_set_flag(u32 old_flags, u32 bit, int set)
78{
79 return 0;
80}
Steven Rostedt0f048702008-11-05 16:05:44 -050081
82/*
83 * Kill all tracing for good (never come back).
84 * It is initialized to 1 but will turn to zero if the initialization
85 * of the tracer is successful. But that is the only place that sets
86 * this back to zero.
87 */
Hannes Eder4fd27352009-02-10 19:44:12 +010088static int tracing_disabled = 1;
Steven Rostedt0f048702008-11-05 16:05:44 -050089
Christoph Lameter9288f992009-10-07 19:17:45 -040090DEFINE_PER_CPU(int, ftrace_cpu_disabled);
Steven Rostedtd7690412008-10-01 00:29:53 -040091
92static inline void ftrace_disable_cpu(void)
93{
94 preempt_disable();
Rusty Russelldd17c8f2009-10-29 22:34:15 +090095 __this_cpu_inc(ftrace_cpu_disabled);
Steven Rostedtd7690412008-10-01 00:29:53 -040096}
97
98static inline void ftrace_enable_cpu(void)
99{
Rusty Russelldd17c8f2009-10-29 22:34:15 +0900100 __this_cpu_dec(ftrace_cpu_disabled);
Steven Rostedtd7690412008-10-01 00:29:53 -0400101 preempt_enable();
102}
103
Rusty Russell9e01c1b2009-01-01 10:12:22 +1030104static cpumask_var_t __read_mostly tracing_buffer_mask;
Steven Rostedtab464282008-05-12 21:21:00 +0200105
106#define for_each_tracing_cpu(cpu) \
Rusty Russell9e01c1b2009-01-01 10:12:22 +1030107 for_each_cpu(cpu, tracing_buffer_mask)
Steven Rostedtab464282008-05-12 21:21:00 +0200108
Steven Rostedt944ac422008-10-23 19:26:08 -0400109/*
110 * ftrace_dump_on_oops - variable to dump ftrace buffer on oops
111 *
112 * If there is an oops (or kernel panic) and the ftrace_dump_on_oops
113 * is set, then ftrace_dump is called. This will output the contents
114 * of the ftrace buffers to the console. This is very useful for
115 * capturing traces that lead to crashes and outputing it to a
116 * serial console.
117 *
118 * It is default off, but you can enable it with either specifying
119 * "ftrace_dump_on_oops" in the kernel command line, or setting
Frederic Weisbeckercecbca92010-04-18 19:08:41 +0200120 * /proc/sys/kernel/ftrace_dump_on_oops
121 * Set 1 if you want to dump buffers of all CPUs
122 * Set 2 if you want to dump the buffer of the CPU that triggered oops
Steven Rostedt944ac422008-10-23 19:26:08 -0400123 */
Frederic Weisbeckercecbca92010-04-18 19:08:41 +0200124
125enum ftrace_dump_mode ftrace_dump_on_oops;
Steven Rostedt944ac422008-10-23 19:26:08 -0400126
Steven Rostedtb2821ae2009-02-02 21:38:32 -0500127static int tracing_set_tracer(const char *buf);
128
Li Zefanee6c2c12009-09-18 14:06:47 +0800129#define MAX_TRACER_SIZE 100
130static char bootup_tracer_buf[MAX_TRACER_SIZE] __initdata;
Steven Rostedtb2821ae2009-02-02 21:38:32 -0500131static char *default_bootup_tracer;
Peter Zijlstrad9e54072008-11-01 19:57:37 +0100132
Frederic Weisbecker1beee962009-10-14 20:50:32 +0200133static int __init set_cmdline_ftrace(char *str)
Peter Zijlstrad9e54072008-11-01 19:57:37 +0100134{
Li Zefanee6c2c12009-09-18 14:06:47 +0800135 strncpy(bootup_tracer_buf, str, MAX_TRACER_SIZE);
Steven Rostedtb2821ae2009-02-02 21:38:32 -0500136 default_bootup_tracer = bootup_tracer_buf;
Steven Rostedt73c51622009-03-11 13:42:01 -0400137 /* We are using ftrace early, expand it */
138 ring_buffer_expanded = 1;
Peter Zijlstrad9e54072008-11-01 19:57:37 +0100139 return 1;
140}
Frederic Weisbecker1beee962009-10-14 20:50:32 +0200141__setup("ftrace=", set_cmdline_ftrace);
Peter Zijlstrad9e54072008-11-01 19:57:37 +0100142
Steven Rostedt944ac422008-10-23 19:26:08 -0400143static int __init set_ftrace_dump_on_oops(char *str)
144{
Frederic Weisbeckercecbca92010-04-18 19:08:41 +0200145 if (*str++ != '=' || !*str) {
146 ftrace_dump_on_oops = DUMP_ALL;
147 return 1;
148 }
149
150 if (!strcmp("orig_cpu", str)) {
151 ftrace_dump_on_oops = DUMP_ORIG;
152 return 1;
153 }
154
155 return 0;
Steven Rostedt944ac422008-10-23 19:26:08 -0400156}
157__setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops);
Steven Rostedt60a11772008-05-12 21:20:44 +0200158
Lai Jiangshancf8e3472009-03-30 13:48:00 +0800159unsigned long long ns2usecs(cycle_t nsec)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200160{
161 nsec += 500;
162 do_div(nsec, 1000);
163 return nsec;
164}
165
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200166/*
167 * The global_trace is the descriptor that holds the tracing
168 * buffers for the live tracing. For each CPU, it contains
169 * a link list of pages that will store trace entries. The
170 * page descriptor of the pages in the memory is used to hold
171 * the link list by linking the lru item in the page descriptor
172 * to each of the pages in the buffer per CPU.
173 *
174 * For each active CPU there is a data field that holds the
175 * pages for the buffer for that CPU. Each CPU has the same number
176 * of pages allocated for its buffer.
177 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200178static struct trace_array global_trace;
179
180static DEFINE_PER_CPU(struct trace_array_cpu, global_trace_cpu);
181
Steven Rostedte77405a2009-09-02 14:17:06 -0400182int filter_current_check_discard(struct ring_buffer *buffer,
183 struct ftrace_event_call *call, void *rec,
Tom Zanussieb02ce02009-04-08 03:15:54 -0500184 struct ring_buffer_event *event)
185{
Steven Rostedte77405a2009-09-02 14:17:06 -0400186 return filter_check_discard(call, rec, buffer, event);
Tom Zanussieb02ce02009-04-08 03:15:54 -0500187}
Steven Rostedt17c873e2009-04-10 18:12:50 -0400188EXPORT_SYMBOL_GPL(filter_current_check_discard);
Tom Zanussieb02ce02009-04-08 03:15:54 -0500189
Steven Rostedt37886f62009-03-17 17:22:06 -0400190cycle_t ftrace_now(int cpu)
191{
192 u64 ts;
193
194 /* Early boot up does not have a buffer yet */
195 if (!global_trace.buffer)
196 return trace_clock_local();
197
198 ts = ring_buffer_time_stamp(global_trace.buffer, cpu);
199 ring_buffer_normalize_time_stamp(global_trace.buffer, cpu, &ts);
200
201 return ts;
202}
203
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200204/*
205 * The max_tr is used to snapshot the global_trace when a maximum
206 * latency is reached. Some tracers will use this to store a maximum
207 * trace while it continues examining live traces.
208 *
209 * The buffers for the max_tr are set up the same as the global_trace.
210 * When a snapshot is taken, the link list of the max_tr is swapped
211 * with the link list of the global_trace and the buffers are reset for
212 * the global_trace so the tracing can continue.
213 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200214static struct trace_array max_tr;
215
Tejun Heo9705f692009-10-29 22:34:13 +0900216static DEFINE_PER_CPU(struct trace_array_cpu, max_tr_data);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200217
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200218/* tracer_enabled is used to toggle activation of a tracer */
Steven Rostedt26994ea2008-05-12 21:20:48 +0200219static int tracer_enabled = 1;
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200220
Steven Rostedt90369902008-11-05 16:05:44 -0500221/**
222 * tracing_is_enabled - return tracer_enabled status
223 *
224 * This function is used by other tracers to know the status
225 * of the tracer_enabled flag. Tracers may use this function
226 * to know if it should enable their features when starting
227 * up. See irqsoff tracer for an example (start_irqsoff_tracer).
228 */
229int tracing_is_enabled(void)
230{
231 return tracer_enabled;
232}
233
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200234/*
Steven Rostedt3928a8a2008-09-29 23:02:41 -0400235 * trace_buf_size is the size in bytes that is allocated
236 * for a buffer. Note, the number of bytes is always rounded
237 * to page size.
Steven Rostedt3f5a54e2008-07-30 22:36:46 -0400238 *
239 * This number is purposely set to a low number of 16384.
240 * If the dump on oops happens, it will be much appreciated
241 * to not have to wait for all that output. Anyway this can be
242 * boot time and run time configurable.
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200243 */
Steven Rostedt3928a8a2008-09-29 23:02:41 -0400244#define TRACE_BUF_SIZE_DEFAULT 1441792UL /* 16384 * 88 (sizeof(entry)) */
Steven Rostedt3f5a54e2008-07-30 22:36:46 -0400245
Steven Rostedt3928a8a2008-09-29 23:02:41 -0400246static unsigned long trace_buf_size = TRACE_BUF_SIZE_DEFAULT;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200247
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200248/* trace_types holds a link list of available tracers. */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200249static struct tracer *trace_types __read_mostly;
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200250
251/* current_trace points to the tracer that is currently active */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200252static struct tracer *current_trace __read_mostly;
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200253
254/*
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200255 * trace_types_lock is used to protect the trace_types list.
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200256 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200257static DEFINE_MUTEX(trace_types_lock);
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200258
Lai Jiangshan7e53bd42010-01-06 20:08:50 +0800259/*
260 * serialize the access of the ring buffer
261 *
262 * ring buffer serializes readers, but it is low level protection.
263 * The validity of the events (which returns by ring_buffer_peek() ..etc)
264 * are not protected by ring buffer.
265 *
266 * The content of events may become garbage if we allow other process consumes
267 * these events concurrently:
268 * A) the page of the consumed events may become a normal page
269 * (not reader page) in ring buffer, and this page will be rewrited
270 * by events producer.
271 * B) The page of the consumed events may become a page for splice_read,
272 * and this page will be returned to system.
273 *
274 * These primitives allow multi process access to different cpu ring buffer
275 * concurrently.
276 *
277 * These primitives don't distinguish read-only and read-consume access.
278 * Multi read-only access are also serialized.
279 */
280
281#ifdef CONFIG_SMP
282static DECLARE_RWSEM(all_cpu_access_lock);
283static DEFINE_PER_CPU(struct mutex, cpu_access_lock);
284
285static inline void trace_access_lock(int cpu)
286{
287 if (cpu == TRACE_PIPE_ALL_CPU) {
288 /* gain it for accessing the whole ring buffer. */
289 down_write(&all_cpu_access_lock);
290 } else {
291 /* gain it for accessing a cpu ring buffer. */
292
293 /* Firstly block other trace_access_lock(TRACE_PIPE_ALL_CPU). */
294 down_read(&all_cpu_access_lock);
295
296 /* Secondly block other access to this @cpu ring buffer. */
297 mutex_lock(&per_cpu(cpu_access_lock, cpu));
298 }
299}
300
301static inline void trace_access_unlock(int cpu)
302{
303 if (cpu == TRACE_PIPE_ALL_CPU) {
304 up_write(&all_cpu_access_lock);
305 } else {
306 mutex_unlock(&per_cpu(cpu_access_lock, cpu));
307 up_read(&all_cpu_access_lock);
308 }
309}
310
311static inline void trace_access_lock_init(void)
312{
313 int cpu;
314
315 for_each_possible_cpu(cpu)
316 mutex_init(&per_cpu(cpu_access_lock, cpu));
317}
318
319#else
320
321static DEFINE_MUTEX(access_lock);
322
323static inline void trace_access_lock(int cpu)
324{
325 (void)cpu;
326 mutex_lock(&access_lock);
327}
328
329static inline void trace_access_unlock(int cpu)
330{
331 (void)cpu;
332 mutex_unlock(&access_lock);
333}
334
335static inline void trace_access_lock_init(void)
336{
337}
338
339#endif
340
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200341/* trace_wait is a waitqueue for tasks blocked on trace_poll */
Ingo Molnar4e655512008-05-12 21:20:52 +0200342static DECLARE_WAIT_QUEUE_HEAD(trace_wait);
343
Steven Rostedtee6bce52008-11-12 17:52:37 -0500344/* trace_flags holds trace_options default values */
Steven Rostedt12ef7d42008-11-12 17:52:38 -0500345unsigned long trace_flags = TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK |
Steven Rostedta2a16d62009-03-24 23:17:58 -0400346 TRACE_ITER_ANNOTATE | TRACE_ITER_CONTEXT_INFO | TRACE_ITER_SLEEP_TIME |
Li Zefane870e9a2010-07-02 11:07:32 +0800347 TRACE_ITER_GRAPH_TIME | TRACE_ITER_RECORD_CMD;
Ingo Molnar4e655512008-05-12 21:20:52 +0200348
Steven Rostedtb8de7bd12009-08-31 22:32:27 -0400349static int trace_stop_count;
350static DEFINE_SPINLOCK(tracing_start_lock);
351
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200352/**
353 * trace_wake_up - wake up tasks waiting for trace input
354 *
355 * Simply wakes up any task that is blocked on the trace_wait
356 * queue. These is used with trace_poll for tasks polling the trace.
357 */
Ingo Molnar4e655512008-05-12 21:20:52 +0200358void trace_wake_up(void)
359{
Andrew Morton89f19f02009-09-19 11:55:44 -0700360 int cpu;
361
362 if (trace_flags & TRACE_ITER_BLOCK)
363 return;
Ingo Molnar017730c2008-05-12 21:20:52 +0200364 /*
365 * The runqueue_is_locked() can fail, but this is the best we
366 * have for now:
367 */
Andrew Morton89f19f02009-09-19 11:55:44 -0700368 cpu = get_cpu();
369 if (!runqueue_is_locked(cpu))
Ingo Molnar4e655512008-05-12 21:20:52 +0200370 wake_up(&trace_wait);
Andrew Morton89f19f02009-09-19 11:55:44 -0700371 put_cpu();
Ingo Molnar4e655512008-05-12 21:20:52 +0200372}
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200373
Steven Rostedt3928a8a2008-09-29 23:02:41 -0400374static int __init set_buf_size(char *str)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200375{
Steven Rostedt3928a8a2008-09-29 23:02:41 -0400376 unsigned long buf_size;
Steven Rostedtc6caeeb2008-05-12 21:21:00 +0200377
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200378 if (!str)
379 return 0;
Li Zefan9d612be2009-06-24 17:33:15 +0800380 buf_size = memparse(str, &str);
Steven Rostedtc6caeeb2008-05-12 21:21:00 +0200381 /* nr_entries can not be zero */
Li Zefan9d612be2009-06-24 17:33:15 +0800382 if (buf_size == 0)
Steven Rostedtc6caeeb2008-05-12 21:21:00 +0200383 return 0;
Steven Rostedt3928a8a2008-09-29 23:02:41 -0400384 trace_buf_size = buf_size;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200385 return 1;
386}
Steven Rostedt3928a8a2008-09-29 23:02:41 -0400387__setup("trace_buf_size=", set_buf_size);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200388
Tim Bird0e950172010-02-25 15:36:43 -0800389static int __init set_tracing_thresh(char *str)
390{
391 unsigned long threshhold;
392 int ret;
393
394 if (!str)
395 return 0;
396 ret = strict_strtoul(str, 0, &threshhold);
397 if (ret < 0)
398 return 0;
399 tracing_thresh = threshhold * 1000;
400 return 1;
401}
402__setup("tracing_thresh=", set_tracing_thresh);
403
Steven Rostedt57f50be2008-05-12 21:20:44 +0200404unsigned long nsecs_to_usecs(unsigned long nsecs)
405{
406 return nsecs / 1000;
407}
408
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200409/* These must match the bit postions in trace_iterator_flags */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200410static const char *trace_options[] = {
411 "print-parent",
412 "sym-offset",
413 "sym-addr",
414 "verbose",
Ingo Molnarf9896bf2008-05-12 21:20:47 +0200415 "raw",
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +0200416 "hex",
Ingo Molnarcb0f12a2008-05-12 21:20:47 +0200417 "bin",
Soeren Sandmann Pedersen2a2cc8f2008-05-12 21:20:49 +0200418 "block",
Ingo Molnar86387f72008-05-12 21:20:51 +0200419 "stacktrace",
Ingo Molnar5e1607a2009-03-05 10:24:48 +0100420 "trace_printk",
Steven Rostedtb2a866f2008-11-03 23:15:57 -0500421 "ftrace_preempt",
Steven Rostedt9f029e82008-11-12 15:24:24 -0500422 "branch",
Steven Rostedt12ef7d42008-11-12 17:52:38 -0500423 "annotate",
Török Edwin02b67512008-11-22 13:28:47 +0200424 "userstacktrace",
Török Edwinb54d3de2008-11-22 13:28:48 +0200425 "sym-userobj",
Frederic Weisbecker66896a82008-12-13 20:18:13 +0100426 "printk-msg-only",
Frederic Weisbeckerc4a8e8b2009-02-02 20:29:21 -0200427 "context-info",
Steven Rostedtc032ef642009-03-04 20:34:24 -0500428 "latency-format",
Steven Rostedtbe6f1642009-03-24 11:06:24 -0400429 "sleep-time",
Steven Rostedta2a16d62009-03-24 23:17:58 -0400430 "graph-time",
Li Zefane870e9a2010-07-02 11:07:32 +0800431 "record-cmd",
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200432 NULL
433};
434
Zhaolei5079f322009-08-25 16:12:56 +0800435static struct {
436 u64 (*func)(void);
437 const char *name;
438} trace_clocks[] = {
439 { trace_clock_local, "local" },
440 { trace_clock_global, "global" },
441};
442
443int trace_clock_id;
444
jolsa@redhat.comb63f39e2009-09-11 17:29:27 +0200445/*
446 * trace_parser_get_init - gets the buffer for trace parser
447 */
448int trace_parser_get_init(struct trace_parser *parser, int size)
449{
450 memset(parser, 0, sizeof(*parser));
451
452 parser->buffer = kmalloc(size, GFP_KERNEL);
453 if (!parser->buffer)
454 return 1;
455
456 parser->size = size;
457 return 0;
458}
459
460/*
461 * trace_parser_put - frees the buffer for trace parser
462 */
463void trace_parser_put(struct trace_parser *parser)
464{
465 kfree(parser->buffer);
466}
467
468/*
469 * trace_get_user - reads the user input string separated by space
470 * (matched by isspace(ch))
471 *
472 * For each string found the 'struct trace_parser' is updated,
473 * and the function returns.
474 *
475 * Returns number of bytes read.
476 *
477 * See kernel/trace/trace.h for 'struct trace_parser' details.
478 */
479int trace_get_user(struct trace_parser *parser, const char __user *ubuf,
480 size_t cnt, loff_t *ppos)
481{
482 char ch;
483 size_t read = 0;
484 ssize_t ret;
485
486 if (!*ppos)
487 trace_parser_clear(parser);
488
489 ret = get_user(ch, ubuf++);
490 if (ret)
491 goto out;
492
493 read++;
494 cnt--;
495
496 /*
497 * The parser is not finished with the last write,
498 * continue reading the user input without skipping spaces.
499 */
500 if (!parser->cont) {
501 /* skip white space */
502 while (cnt && isspace(ch)) {
503 ret = get_user(ch, ubuf++);
504 if (ret)
505 goto out;
506 read++;
507 cnt--;
508 }
509
510 /* only spaces were written */
511 if (isspace(ch)) {
512 *ppos += read;
513 ret = read;
514 goto out;
515 }
516
517 parser->idx = 0;
518 }
519
520 /* read the non-space input */
521 while (cnt && !isspace(ch)) {
Li Zefan3c235a32009-09-22 13:51:54 +0800522 if (parser->idx < parser->size - 1)
jolsa@redhat.comb63f39e2009-09-11 17:29:27 +0200523 parser->buffer[parser->idx++] = ch;
524 else {
525 ret = -EINVAL;
526 goto out;
527 }
528 ret = get_user(ch, ubuf++);
529 if (ret)
530 goto out;
531 read++;
532 cnt--;
533 }
534
535 /* We either got finished input or we have to wait for another call. */
536 if (isspace(ch)) {
537 parser->buffer[parser->idx] = 0;
538 parser->cont = false;
539 } else {
540 parser->cont = true;
541 parser->buffer[parser->idx++] = ch;
542 }
543
544 *ppos += read;
545 ret = read;
546
547out:
548 return ret;
549}
550
Pekka Paalanen6c6c2792008-05-12 21:21:02 +0200551ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, size_t cnt)
552{
553 int len;
554 int ret;
555
Steven Rostedt2dc5d122009-03-04 19:10:05 -0500556 if (!cnt)
557 return 0;
558
Pekka Paalanen6c6c2792008-05-12 21:21:02 +0200559 if (s->len <= s->readpos)
560 return -EBUSY;
561
562 len = s->len - s->readpos;
563 if (cnt > len)
564 cnt = len;
565 ret = copy_to_user(ubuf, s->buffer + s->readpos, cnt);
Steven Rostedt2dc5d122009-03-04 19:10:05 -0500566 if (ret == cnt)
Pekka Paalanen6c6c2792008-05-12 21:21:02 +0200567 return -EFAULT;
568
Steven Rostedt2dc5d122009-03-04 19:10:05 -0500569 cnt -= ret;
570
Steven Rostedte74da522009-03-04 20:31:11 -0500571 s->readpos += cnt;
Pekka Paalanen6c6c2792008-05-12 21:21:02 +0200572 return cnt;
Steven Rostedt214023c2008-05-12 21:20:46 +0200573}
574
Dmitri Vorobievb8b94262009-03-22 19:11:11 +0200575static ssize_t trace_seq_to_buffer(struct trace_seq *s, void *buf, size_t cnt)
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +0200576{
577 int len;
578 void *ret;
579
580 if (s->len <= s->readpos)
581 return -EBUSY;
582
583 len = s->len - s->readpos;
584 if (cnt > len)
585 cnt = len;
586 ret = memcpy(buf, s->buffer + s->readpos, cnt);
587 if (!ret)
588 return -EFAULT;
589
Steven Rostedte74da522009-03-04 20:31:11 -0500590 s->readpos += cnt;
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +0200591 return cnt;
592}
593
Steven Rostedt5d4a9db2009-08-27 16:52:21 -0400594/*
595 * ftrace_max_lock is used to protect the swapping of buffers
596 * when taking a max snapshot. The buffers themselves are
597 * protected by per_cpu spinlocks. But the action of the swap
598 * needs its own lock.
599 *
Thomas Gleixner445c8952009-12-02 19:49:50 +0100600 * This is defined as a arch_spinlock_t in order to help
Steven Rostedt5d4a9db2009-08-27 16:52:21 -0400601 * with performance when lockdep debugging is enabled.
602 *
603 * It is also used in other places outside the update_max_tr
604 * so it needs to be defined outside of the
605 * CONFIG_TRACER_MAX_TRACE.
606 */
Thomas Gleixner445c8952009-12-02 19:49:50 +0100607static arch_spinlock_t ftrace_max_lock =
Thomas Gleixneredc35bd2009-12-03 12:38:57 +0100608 (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
Steven Rostedt5d4a9db2009-08-27 16:52:21 -0400609
Tim Bird0e950172010-02-25 15:36:43 -0800610unsigned long __read_mostly tracing_thresh;
611
Steven Rostedt5d4a9db2009-08-27 16:52:21 -0400612#ifdef CONFIG_TRACER_MAX_TRACE
613unsigned long __read_mostly tracing_max_latency;
Steven Rostedt5d4a9db2009-08-27 16:52:21 -0400614
615/*
616 * Copy the new maximum trace into the separate maximum-trace
617 * structure. (this way the maximum trace is permanently saved,
618 * for later retrieval via /sys/kernel/debug/tracing/latency_trace)
619 */
620static void
621__update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
622{
623 struct trace_array_cpu *data = tr->data[cpu];
Arnaldo Carvalho de Melo1acaa1b2010-03-05 18:23:50 -0300624 struct trace_array_cpu *max_data;
Steven Rostedt5d4a9db2009-08-27 16:52:21 -0400625
626 max_tr.cpu = cpu;
627 max_tr.time_start = data->preempt_timestamp;
628
Steven Rostedt8248ac02009-09-02 12:27:41 -0400629 max_data = max_tr.data[cpu];
630 max_data->saved_latency = tracing_max_latency;
631 max_data->critical_start = data->critical_start;
632 max_data->critical_end = data->critical_end;
Steven Rostedt5d4a9db2009-08-27 16:52:21 -0400633
Arnaldo Carvalho de Melo1acaa1b2010-03-05 18:23:50 -0300634 memcpy(max_data->comm, tsk->comm, TASK_COMM_LEN);
Steven Rostedt8248ac02009-09-02 12:27:41 -0400635 max_data->pid = tsk->pid;
636 max_data->uid = task_uid(tsk);
637 max_data->nice = tsk->static_prio - 20 - MAX_RT_PRIO;
638 max_data->policy = tsk->policy;
639 max_data->rt_priority = tsk->rt_priority;
Steven Rostedt5d4a9db2009-08-27 16:52:21 -0400640
641 /* record this tasks comm */
642 tracing_record_cmdline(tsk);
643}
644
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200645/**
646 * update_max_tr - snapshot all trace buffers from global_trace to max_tr
647 * @tr: tracer
648 * @tsk: the task with the latency
649 * @cpu: The cpu that initiated the trace.
650 *
651 * Flip the buffers between the @tr and the max_tr and record information
652 * about which task was the cause of this latency.
653 */
Ingo Molnare309b412008-05-12 21:20:51 +0200654void
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200655update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
656{
Steven Rostedt3928a8a2008-09-29 23:02:41 -0400657 struct ring_buffer *buf = tr->buffer;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200658
Steven Rostedtb8de7bd12009-08-31 22:32:27 -0400659 if (trace_stop_count)
660 return;
661
Steven Rostedt4c11d7a2008-05-12 21:20:43 +0200662 WARN_ON_ONCE(!irqs_disabled());
KOSAKI Motohiroef710e12010-07-01 14:34:35 +0900663 if (!current_trace->use_max_tr) {
664 WARN_ON_ONCE(1);
665 return;
666 }
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100667 arch_spin_lock(&ftrace_max_lock);
Steven Rostedt3928a8a2008-09-29 23:02:41 -0400668
669 tr->buffer = max_tr.buffer;
670 max_tr.buffer = buf;
671
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200672 __update_max_tr(tr, tsk, cpu);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100673 arch_spin_unlock(&ftrace_max_lock);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200674}
675
676/**
677 * update_max_tr_single - only copy one trace over, and reset the rest
678 * @tr - tracer
679 * @tsk - task with the latency
680 * @cpu - the cpu of the buffer to copy.
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200681 *
682 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200683 */
Ingo Molnare309b412008-05-12 21:20:51 +0200684void
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200685update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
686{
Steven Rostedt3928a8a2008-09-29 23:02:41 -0400687 int ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200688
Steven Rostedtb8de7bd12009-08-31 22:32:27 -0400689 if (trace_stop_count)
690 return;
691
Steven Rostedt4c11d7a2008-05-12 21:20:43 +0200692 WARN_ON_ONCE(!irqs_disabled());
KOSAKI Motohiroef710e12010-07-01 14:34:35 +0900693 if (!current_trace->use_max_tr) {
694 WARN_ON_ONCE(1);
695 return;
696 }
697
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100698 arch_spin_lock(&ftrace_max_lock);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200699
Steven Rostedtd7690412008-10-01 00:29:53 -0400700 ftrace_disable_cpu();
701
Steven Rostedt3928a8a2008-09-29 23:02:41 -0400702 ret = ring_buffer_swap_cpu(max_tr.buffer, tr->buffer, cpu);
703
Steven Rostedte8165db2009-09-03 19:13:05 -0400704 if (ret == -EBUSY) {
705 /*
706 * We failed to swap the buffer due to a commit taking
707 * place on this CPU. We fail to record, but we reset
708 * the max trace buffer (no one writes directly to it)
709 * and flag that it failed.
710 */
711 trace_array_printk(&max_tr, _THIS_IP_,
712 "Failed to swap buffers due to commit in progress\n");
713 }
714
Steven Rostedtd7690412008-10-01 00:29:53 -0400715 ftrace_enable_cpu();
716
Steven Rostedte8165db2009-09-03 19:13:05 -0400717 WARN_ON_ONCE(ret && ret != -EAGAIN && ret != -EBUSY);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200718
719 __update_max_tr(tr, tsk, cpu);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100720 arch_spin_unlock(&ftrace_max_lock);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200721}
Steven Rostedt5d4a9db2009-08-27 16:52:21 -0400722#endif /* CONFIG_TRACER_MAX_TRACE */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200723
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200724/**
725 * register_tracer - register a tracer with the ftrace system.
726 * @type - the plugin for the tracer
727 *
728 * Register a new plugin tracer.
729 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200730int register_tracer(struct tracer *type)
Hannes Edere7669b82009-02-10 19:44:45 +0100731__releases(kernel_lock)
732__acquires(kernel_lock)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200733{
734 struct tracer *t;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200735 int ret = 0;
736
737 if (!type->name) {
738 pr_info("Tracer must have a name\n");
739 return -1;
740 }
741
Li Zefanee6c2c12009-09-18 14:06:47 +0800742 if (strlen(type->name) > MAX_TRACER_SIZE) {
743 pr_info("Tracer has a name longer than %d\n", MAX_TRACER_SIZE);
744 return -1;
745 }
746
Ingo Molnar86fa2f62008-11-19 10:00:15 +0100747 /*
748 * When this gets called we hold the BKL which means that
749 * preemption is disabled. Various trace selftests however
750 * need to disable and enable preemption for successful tests.
751 * So we drop the BKL here and grab it after the tests again.
752 */
753 unlock_kernel();
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200754 mutex_lock(&trace_types_lock);
Ingo Molnar86fa2f62008-11-19 10:00:15 +0100755
Frederic Weisbecker8e1b82e2008-12-06 03:41:33 +0100756 tracing_selftest_running = true;
757
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200758 for (t = trace_types; t; t = t->next) {
759 if (strcmp(type->name, t->name) == 0) {
760 /* already found */
Li Zefanee6c2c12009-09-18 14:06:47 +0800761 pr_info("Tracer %s already registered\n",
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200762 type->name);
763 ret = -1;
764 goto out;
765 }
766 }
767
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +0100768 if (!type->set_flag)
769 type->set_flag = &dummy_set_flag;
770 if (!type->flags)
771 type->flags = &dummy_tracer_flags;
772 else
773 if (!type->flags->opts)
774 type->flags->opts = dummy_tracer_opt;
Frederic Weisbecker6eaaa5d2009-02-11 02:25:00 +0100775 if (!type->wait_pipe)
776 type->wait_pipe = default_wait_pipe;
777
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +0100778
Steven Rostedt60a11772008-05-12 21:20:44 +0200779#ifdef CONFIG_FTRACE_STARTUP_TEST
Steven Rostedtb2821ae2009-02-02 21:38:32 -0500780 if (type->selftest && !tracing_selftest_disabled) {
Steven Rostedt60a11772008-05-12 21:20:44 +0200781 struct tracer *saved_tracer = current_trace;
Steven Rostedt60a11772008-05-12 21:20:44 +0200782 struct trace_array *tr = &global_trace;
Frederic Weisbeckerff325042008-12-04 23:47:35 +0100783
Steven Rostedt60a11772008-05-12 21:20:44 +0200784 /*
785 * Run a selftest on this tracer.
786 * Here we reset the trace buffer, and set the current
787 * tracer to be this tracer. The tracer can then run some
788 * internal tracing to verify that everything is in order.
789 * If we fail, we do not register this tracer.
790 */
Steven Rostedt76f0d072009-09-04 12:12:39 -0400791 tracing_reset_online_cpus(tr);
Ingo Molnar86fa2f62008-11-19 10:00:15 +0100792
Steven Rostedt60a11772008-05-12 21:20:44 +0200793 current_trace = type;
Steven Rostedt60a11772008-05-12 21:20:44 +0200794 /* the test is responsible for initializing and enabling */
795 pr_info("Testing tracer %s: ", type->name);
796 ret = type->selftest(type, tr);
797 /* the test is responsible for resetting too */
798 current_trace = saved_tracer;
Steven Rostedt60a11772008-05-12 21:20:44 +0200799 if (ret) {
800 printk(KERN_CONT "FAILED!\n");
801 goto out;
802 }
Steven Rostedt1d4db002008-05-12 21:20:45 +0200803 /* Only reset on passing, to avoid touching corrupted buffers */
Steven Rostedt76f0d072009-09-04 12:12:39 -0400804 tracing_reset_online_cpus(tr);
Ingo Molnar86fa2f62008-11-19 10:00:15 +0100805
Steven Rostedt60a11772008-05-12 21:20:44 +0200806 printk(KERN_CONT "PASSED\n");
807 }
808#endif
809
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200810 type->next = trace_types;
811 trace_types = type;
Steven Rostedt60a11772008-05-12 21:20:44 +0200812
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200813 out:
Frederic Weisbecker8e1b82e2008-12-06 03:41:33 +0100814 tracing_selftest_running = false;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200815 mutex_unlock(&trace_types_lock);
816
Steven Rostedtdac74942009-02-05 01:13:38 -0500817 if (ret || !default_bootup_tracer)
818 goto out_unlock;
Steven Rostedtb2821ae2009-02-02 21:38:32 -0500819
Li Zefanee6c2c12009-09-18 14:06:47 +0800820 if (strncmp(default_bootup_tracer, type->name, MAX_TRACER_SIZE))
Steven Rostedtdac74942009-02-05 01:13:38 -0500821 goto out_unlock;
822
823 printk(KERN_INFO "Starting tracer '%s'\n", type->name);
824 /* Do we want this tracer to start on bootup? */
825 tracing_set_tracer(type->name);
826 default_bootup_tracer = NULL;
827 /* disable other selftests, since this will break it. */
828 tracing_selftest_disabled = 1;
829#ifdef CONFIG_FTRACE_STARTUP_TEST
830 printk(KERN_INFO "Disabling FTRACE selftests due to running tracer '%s'\n",
831 type->name);
832#endif
833
834 out_unlock:
Steven Rostedtb2821ae2009-02-02 21:38:32 -0500835 lock_kernel();
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200836 return ret;
837}
838
839void unregister_tracer(struct tracer *type)
840{
841 struct tracer **t;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200842
843 mutex_lock(&trace_types_lock);
844 for (t = &trace_types; *t; t = &(*t)->next) {
845 if (*t == type)
846 goto found;
847 }
Li Zefanee6c2c12009-09-18 14:06:47 +0800848 pr_info("Tracer %s not registered\n", type->name);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200849 goto out;
850
851 found:
852 *t = (*t)->next;
Arnaldo Carvalho de Melob5db03c2009-02-07 18:52:59 -0200853
854 if (type == current_trace && tracer_enabled) {
855 tracer_enabled = 0;
856 tracing_stop();
857 if (current_trace->stop)
858 current_trace->stop(&global_trace);
859 current_trace = &nop_trace;
860 }
Li Zefanee6c2c12009-09-18 14:06:47 +0800861out:
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200862 mutex_unlock(&trace_types_lock);
863}
864
Steven Rostedt283740c2010-03-12 19:48:41 -0500865static void __tracing_reset(struct ring_buffer *buffer, int cpu)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200866{
Steven Rostedtd7690412008-10-01 00:29:53 -0400867 ftrace_disable_cpu();
Steven Rostedt283740c2010-03-12 19:48:41 -0500868 ring_buffer_reset_cpu(buffer, cpu);
Steven Rostedtd7690412008-10-01 00:29:53 -0400869 ftrace_enable_cpu();
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200870}
871
Steven Rostedtf6339032009-09-04 12:35:16 -0400872void tracing_reset(struct trace_array *tr, int cpu)
873{
874 struct ring_buffer *buffer = tr->buffer;
875
876 ring_buffer_record_disable(buffer);
877
878 /* Make sure all commits have finished */
879 synchronize_sched();
Steven Rostedt283740c2010-03-12 19:48:41 -0500880 __tracing_reset(buffer, cpu);
Steven Rostedtf6339032009-09-04 12:35:16 -0400881
882 ring_buffer_record_enable(buffer);
883}
884
Pekka J Enberg213cc062008-12-19 12:08:39 +0200885void tracing_reset_online_cpus(struct trace_array *tr)
886{
Steven Rostedt621968c2009-09-04 12:02:35 -0400887 struct ring_buffer *buffer = tr->buffer;
Pekka J Enberg213cc062008-12-19 12:08:39 +0200888 int cpu;
889
Steven Rostedt621968c2009-09-04 12:02:35 -0400890 ring_buffer_record_disable(buffer);
891
892 /* Make sure all commits have finished */
893 synchronize_sched();
894
Pekka J Enberg213cc062008-12-19 12:08:39 +0200895 tr->time_start = ftrace_now(tr->cpu);
896
897 for_each_online_cpu(cpu)
Steven Rostedt283740c2010-03-12 19:48:41 -0500898 __tracing_reset(buffer, cpu);
Steven Rostedt621968c2009-09-04 12:02:35 -0400899
900 ring_buffer_record_enable(buffer);
Pekka J Enberg213cc062008-12-19 12:08:39 +0200901}
902
Steven Rostedt9456f0f2009-05-06 21:54:09 -0400903void tracing_reset_current(int cpu)
904{
905 tracing_reset(&global_trace, cpu);
906}
907
908void tracing_reset_current_online_cpus(void)
909{
910 tracing_reset_online_cpus(&global_trace);
911}
912
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200913#define SAVED_CMDLINES 128
Thomas Gleixner2c7eea42009-03-18 09:03:19 +0100914#define NO_CMDLINE_MAP UINT_MAX
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200915static unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1];
916static unsigned map_cmdline_to_pid[SAVED_CMDLINES];
917static char saved_cmdlines[SAVED_CMDLINES][TASK_COMM_LEN];
918static int cmdline_idx;
Thomas Gleixneredc35bd2009-12-03 12:38:57 +0100919static arch_spinlock_t trace_cmdline_lock = __ARCH_SPIN_LOCK_UNLOCKED;
Steven Rostedt25b0b442008-05-12 21:21:00 +0200920
Steven Rostedt25b0b442008-05-12 21:21:00 +0200921/* temporary disable recording */
Hannes Eder4fd27352009-02-10 19:44:12 +0100922static atomic_t trace_record_cmdline_disabled __read_mostly;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200923
924static void trace_init_cmdlines(void)
925{
Thomas Gleixner2c7eea42009-03-18 09:03:19 +0100926 memset(&map_pid_to_cmdline, NO_CMDLINE_MAP, sizeof(map_pid_to_cmdline));
927 memset(&map_cmdline_to_pid, NO_CMDLINE_MAP, sizeof(map_cmdline_to_pid));
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200928 cmdline_idx = 0;
929}
930
Carsten Emdeb5130b12009-09-13 01:43:07 +0200931int is_tracing_stopped(void)
932{
933 return trace_stop_count;
934}
935
Steven Rostedt0f048702008-11-05 16:05:44 -0500936/**
Steven Rostedt69bb54e2008-11-21 12:59:38 -0500937 * ftrace_off_permanent - disable all ftrace code permanently
938 *
939 * This should only be called when a serious anomally has
940 * been detected. This will turn off the function tracing,
941 * ring buffers, and other tracing utilites. It takes no
942 * locks and can be called from any context.
943 */
944void ftrace_off_permanent(void)
945{
946 tracing_disabled = 1;
947 ftrace_stop();
948 tracing_off_permanent();
949}
950
951/**
Steven Rostedt0f048702008-11-05 16:05:44 -0500952 * tracing_start - quick start of the tracer
953 *
954 * If tracing is enabled but was stopped by tracing_stop,
955 * this will start the tracer back up.
956 */
957void tracing_start(void)
958{
959 struct ring_buffer *buffer;
960 unsigned long flags;
961
962 if (tracing_disabled)
963 return;
964
965 spin_lock_irqsave(&tracing_start_lock, flags);
Steven Rostedtb06a8302009-01-22 14:26:15 -0500966 if (--trace_stop_count) {
967 if (trace_stop_count < 0) {
968 /* Someone screwed up their debugging */
969 WARN_ON_ONCE(1);
970 trace_stop_count = 0;
971 }
Steven Rostedt0f048702008-11-05 16:05:44 -0500972 goto out;
973 }
974
Steven Rostedta2f80712010-03-12 19:56:00 -0500975 /* Prevent the buffers from switching */
976 arch_spin_lock(&ftrace_max_lock);
Steven Rostedt0f048702008-11-05 16:05:44 -0500977
978 buffer = global_trace.buffer;
979 if (buffer)
980 ring_buffer_record_enable(buffer);
981
982 buffer = max_tr.buffer;
983 if (buffer)
984 ring_buffer_record_enable(buffer);
985
Steven Rostedta2f80712010-03-12 19:56:00 -0500986 arch_spin_unlock(&ftrace_max_lock);
987
Steven Rostedt0f048702008-11-05 16:05:44 -0500988 ftrace_start();
989 out:
990 spin_unlock_irqrestore(&tracing_start_lock, flags);
991}
992
993/**
994 * tracing_stop - quick stop of the tracer
995 *
996 * Light weight way to stop tracing. Use in conjunction with
997 * tracing_start.
998 */
999void tracing_stop(void)
1000{
1001 struct ring_buffer *buffer;
1002 unsigned long flags;
1003
1004 ftrace_stop();
1005 spin_lock_irqsave(&tracing_start_lock, flags);
1006 if (trace_stop_count++)
1007 goto out;
1008
Steven Rostedta2f80712010-03-12 19:56:00 -05001009 /* Prevent the buffers from switching */
1010 arch_spin_lock(&ftrace_max_lock);
1011
Steven Rostedt0f048702008-11-05 16:05:44 -05001012 buffer = global_trace.buffer;
1013 if (buffer)
1014 ring_buffer_record_disable(buffer);
1015
1016 buffer = max_tr.buffer;
1017 if (buffer)
1018 ring_buffer_record_disable(buffer);
1019
Steven Rostedta2f80712010-03-12 19:56:00 -05001020 arch_spin_unlock(&ftrace_max_lock);
1021
Steven Rostedt0f048702008-11-05 16:05:44 -05001022 out:
1023 spin_unlock_irqrestore(&tracing_start_lock, flags);
1024}
1025
Ingo Molnare309b412008-05-12 21:20:51 +02001026void trace_stop_cmdline_recording(void);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001027
Ingo Molnare309b412008-05-12 21:20:51 +02001028static void trace_save_cmdline(struct task_struct *tsk)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001029{
Carsten Emdea635cf02009-03-18 09:00:41 +01001030 unsigned pid, idx;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001031
1032 if (!tsk->pid || unlikely(tsk->pid > PID_MAX_DEFAULT))
1033 return;
1034
1035 /*
1036 * It's not the end of the world if we don't get
1037 * the lock, but we also don't want to spin
1038 * nor do we want to disable interrupts,
1039 * so if we miss here, then better luck next time.
1040 */
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001041 if (!arch_spin_trylock(&trace_cmdline_lock))
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001042 return;
1043
1044 idx = map_pid_to_cmdline[tsk->pid];
Thomas Gleixner2c7eea42009-03-18 09:03:19 +01001045 if (idx == NO_CMDLINE_MAP) {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001046 idx = (cmdline_idx + 1) % SAVED_CMDLINES;
1047
Carsten Emdea635cf02009-03-18 09:00:41 +01001048 /*
1049 * Check whether the cmdline buffer at idx has a pid
1050 * mapped. We are going to overwrite that entry so we
1051 * need to clear the map_pid_to_cmdline. Otherwise we
1052 * would read the new comm for the old pid.
1053 */
1054 pid = map_cmdline_to_pid[idx];
1055 if (pid != NO_CMDLINE_MAP)
1056 map_pid_to_cmdline[pid] = NO_CMDLINE_MAP;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001057
Carsten Emdea635cf02009-03-18 09:00:41 +01001058 map_cmdline_to_pid[idx] = tsk->pid;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001059 map_pid_to_cmdline[tsk->pid] = idx;
1060
1061 cmdline_idx = idx;
1062 }
1063
1064 memcpy(&saved_cmdlines[idx], tsk->comm, TASK_COMM_LEN);
1065
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001066 arch_spin_unlock(&trace_cmdline_lock);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001067}
1068
Steven Rostedt4ca53082009-03-16 19:20:15 -04001069void trace_find_cmdline(int pid, char comm[])
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001070{
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001071 unsigned map;
1072
Steven Rostedt4ca53082009-03-16 19:20:15 -04001073 if (!pid) {
1074 strcpy(comm, "<idle>");
1075 return;
1076 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001077
Steven Rostedt74bf4072010-01-25 15:11:53 -05001078 if (WARN_ON_ONCE(pid < 0)) {
1079 strcpy(comm, "<XXX>");
1080 return;
1081 }
1082
Steven Rostedt4ca53082009-03-16 19:20:15 -04001083 if (pid > PID_MAX_DEFAULT) {
1084 strcpy(comm, "<...>");
1085 return;
1086 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001087
Heiko Carstens5b6045a2009-05-26 17:28:02 +02001088 preempt_disable();
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001089 arch_spin_lock(&trace_cmdline_lock);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001090 map = map_pid_to_cmdline[pid];
Thomas Gleixner50d88752009-03-18 08:58:44 +01001091 if (map != NO_CMDLINE_MAP)
1092 strcpy(comm, saved_cmdlines[map]);
1093 else
1094 strcpy(comm, "<...>");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001095
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001096 arch_spin_unlock(&trace_cmdline_lock);
Heiko Carstens5b6045a2009-05-26 17:28:02 +02001097 preempt_enable();
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001098}
1099
Ingo Molnare309b412008-05-12 21:20:51 +02001100void tracing_record_cmdline(struct task_struct *tsk)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001101{
Thomas Gleixner18aecd32009-03-18 08:56:58 +01001102 if (atomic_read(&trace_record_cmdline_disabled) || !tracer_enabled ||
1103 !tracing_is_on())
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001104 return;
1105
1106 trace_save_cmdline(tsk);
1107}
1108
Pekka Paalanen45dcd8b2008-09-16 21:56:41 +03001109void
Steven Rostedt38697052008-10-01 13:14:09 -04001110tracing_generic_entry_update(struct trace_entry *entry, unsigned long flags,
1111 int pc)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001112{
1113 struct task_struct *tsk = current;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001114
Steven Rostedt777e2082008-09-29 23:02:42 -04001115 entry->preempt_count = pc & 0xff;
1116 entry->pid = (tsk) ? tsk->pid : 0;
Steven Rostedt637e7e82009-09-11 13:55:35 -04001117 entry->lock_depth = (tsk) ? tsk->lock_depth : 0;
Steven Rostedt777e2082008-09-29 23:02:42 -04001118 entry->flags =
Steven Rostedt92444892008-10-24 09:42:59 -04001119#ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001120 (irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) |
Steven Rostedt92444892008-10-24 09:42:59 -04001121#else
1122 TRACE_FLAG_IRQS_NOSUPPORT |
1123#endif
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001124 ((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) |
1125 ((pc & SOFTIRQ_MASK) ? TRACE_FLAG_SOFTIRQ : 0) |
1126 (need_resched() ? TRACE_FLAG_NEED_RESCHED : 0);
1127}
Frederic Weisbeckerf413cdb2009-08-07 01:25:54 +02001128EXPORT_SYMBOL_GPL(tracing_generic_entry_update);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001129
Steven Rostedte77405a2009-09-02 14:17:06 -04001130struct ring_buffer_event *
1131trace_buffer_lock_reserve(struct ring_buffer *buffer,
1132 int type,
1133 unsigned long len,
1134 unsigned long flags, int pc)
Arnaldo Carvalho de Melo51a763d2009-02-05 16:14:13 -02001135{
1136 struct ring_buffer_event *event;
1137
Steven Rostedte77405a2009-09-02 14:17:06 -04001138 event = ring_buffer_lock_reserve(buffer, len);
Arnaldo Carvalho de Melo51a763d2009-02-05 16:14:13 -02001139 if (event != NULL) {
1140 struct trace_entry *ent = ring_buffer_event_data(event);
1141
1142 tracing_generic_entry_update(ent, flags, pc);
1143 ent->type = type;
1144 }
1145
1146 return event;
1147}
Arnaldo Carvalho de Melo51a763d2009-02-05 16:14:13 -02001148
Steven Rostedte77405a2009-09-02 14:17:06 -04001149static inline void
1150__trace_buffer_unlock_commit(struct ring_buffer *buffer,
1151 struct ring_buffer_event *event,
1152 unsigned long flags, int pc,
1153 int wake)
Arnaldo Carvalho de Melo51a763d2009-02-05 16:14:13 -02001154{
Steven Rostedte77405a2009-09-02 14:17:06 -04001155 ring_buffer_unlock_commit(buffer, event);
Arnaldo Carvalho de Melo51a763d2009-02-05 16:14:13 -02001156
Steven Rostedte77405a2009-09-02 14:17:06 -04001157 ftrace_trace_stack(buffer, flags, 6, pc);
1158 ftrace_trace_userstack(buffer, flags, pc);
Frederic Weisbecker07edf712009-03-22 23:10:46 +01001159
1160 if (wake)
1161 trace_wake_up();
1162}
1163
Steven Rostedte77405a2009-09-02 14:17:06 -04001164void trace_buffer_unlock_commit(struct ring_buffer *buffer,
1165 struct ring_buffer_event *event,
1166 unsigned long flags, int pc)
Frederic Weisbecker07edf712009-03-22 23:10:46 +01001167{
Steven Rostedte77405a2009-09-02 14:17:06 -04001168 __trace_buffer_unlock_commit(buffer, event, flags, pc, 1);
Arnaldo Carvalho de Melo51a763d2009-02-05 16:14:13 -02001169}
1170
Steven Rostedtef5580d2009-02-27 19:38:04 -05001171struct ring_buffer_event *
Steven Rostedte77405a2009-09-02 14:17:06 -04001172trace_current_buffer_lock_reserve(struct ring_buffer **current_rb,
1173 int type, unsigned long len,
Steven Rostedtef5580d2009-02-27 19:38:04 -05001174 unsigned long flags, int pc)
1175{
Steven Rostedte77405a2009-09-02 14:17:06 -04001176 *current_rb = global_trace.buffer;
1177 return trace_buffer_lock_reserve(*current_rb,
Steven Rostedtef5580d2009-02-27 19:38:04 -05001178 type, len, flags, pc);
1179}
Steven Rostedt94487d62009-05-05 19:22:53 -04001180EXPORT_SYMBOL_GPL(trace_current_buffer_lock_reserve);
Steven Rostedtef5580d2009-02-27 19:38:04 -05001181
Steven Rostedte77405a2009-09-02 14:17:06 -04001182void trace_current_buffer_unlock_commit(struct ring_buffer *buffer,
1183 struct ring_buffer_event *event,
Steven Rostedtef5580d2009-02-27 19:38:04 -05001184 unsigned long flags, int pc)
1185{
Steven Rostedte77405a2009-09-02 14:17:06 -04001186 __trace_buffer_unlock_commit(buffer, event, flags, pc, 1);
Frederic Weisbecker07edf712009-03-22 23:10:46 +01001187}
Steven Rostedt94487d62009-05-05 19:22:53 -04001188EXPORT_SYMBOL_GPL(trace_current_buffer_unlock_commit);
Frederic Weisbecker07edf712009-03-22 23:10:46 +01001189
Steven Rostedte77405a2009-09-02 14:17:06 -04001190void trace_nowake_buffer_unlock_commit(struct ring_buffer *buffer,
1191 struct ring_buffer_event *event,
1192 unsigned long flags, int pc)
Frederic Weisbecker07edf712009-03-22 23:10:46 +01001193{
Steven Rostedte77405a2009-09-02 14:17:06 -04001194 __trace_buffer_unlock_commit(buffer, event, flags, pc, 0);
Steven Rostedtef5580d2009-02-27 19:38:04 -05001195}
Steven Rostedt94487d62009-05-05 19:22:53 -04001196EXPORT_SYMBOL_GPL(trace_nowake_buffer_unlock_commit);
Steven Rostedt77d9f462009-04-02 01:16:59 -04001197
Steven Rostedte77405a2009-09-02 14:17:06 -04001198void trace_current_buffer_discard_commit(struct ring_buffer *buffer,
1199 struct ring_buffer_event *event)
Steven Rostedt77d9f462009-04-02 01:16:59 -04001200{
Steven Rostedte77405a2009-09-02 14:17:06 -04001201 ring_buffer_discard_commit(buffer, event);
Steven Rostedtef5580d2009-02-27 19:38:04 -05001202}
Steven Rostedt12acd472009-04-17 16:01:56 -04001203EXPORT_SYMBOL_GPL(trace_current_buffer_discard_commit);
Steven Rostedtef5580d2009-02-27 19:38:04 -05001204
Ingo Molnare309b412008-05-12 21:20:51 +02001205void
Arnaldo Carvalho de Melo7be42152009-02-05 01:13:37 -05001206trace_function(struct trace_array *tr,
Steven Rostedt38697052008-10-01 13:14:09 -04001207 unsigned long ip, unsigned long parent_ip, unsigned long flags,
1208 int pc)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001209{
Tom Zanussie1112b42009-03-31 00:48:49 -05001210 struct ftrace_event_call *call = &event_function;
Steven Rostedte77405a2009-09-02 14:17:06 -04001211 struct ring_buffer *buffer = tr->buffer;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001212 struct ring_buffer_event *event;
Steven Rostedt777e2082008-09-29 23:02:42 -04001213 struct ftrace_entry *entry;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001214
Steven Rostedtd7690412008-10-01 00:29:53 -04001215 /* If we are reading the ring buffer, don't trace */
Rusty Russelldd17c8f2009-10-29 22:34:15 +09001216 if (unlikely(__this_cpu_read(ftrace_cpu_disabled)))
Steven Rostedtd7690412008-10-01 00:29:53 -04001217 return;
1218
Steven Rostedte77405a2009-09-02 14:17:06 -04001219 event = trace_buffer_lock_reserve(buffer, TRACE_FN, sizeof(*entry),
Arnaldo Carvalho de Melo51a763d2009-02-05 16:14:13 -02001220 flags, pc);
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001221 if (!event)
1222 return;
1223 entry = ring_buffer_event_data(event);
Steven Rostedt777e2082008-09-29 23:02:42 -04001224 entry->ip = ip;
1225 entry->parent_ip = parent_ip;
Tom Zanussie1112b42009-03-31 00:48:49 -05001226
Steven Rostedte77405a2009-09-02 14:17:06 -04001227 if (!filter_check_discard(call, entry, buffer, event))
1228 ring_buffer_unlock_commit(buffer, event);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001229}
1230
Ingo Molnare309b412008-05-12 21:20:51 +02001231void
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001232ftrace(struct trace_array *tr, struct trace_array_cpu *data,
Steven Rostedt38697052008-10-01 13:14:09 -04001233 unsigned long ip, unsigned long parent_ip, unsigned long flags,
1234 int pc)
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001235{
1236 if (likely(!atomic_read(&data->disabled)))
Arnaldo Carvalho de Melo7be42152009-02-05 01:13:37 -05001237 trace_function(tr, ip, parent_ip, flags, pc);
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001238}
1239
Frederic Weisbeckerc0a0d0d2009-07-29 17:51:13 +02001240#ifdef CONFIG_STACKTRACE
Steven Rostedte77405a2009-09-02 14:17:06 -04001241static void __ftrace_trace_stack(struct ring_buffer *buffer,
Steven Rostedt53614992009-01-15 19:12:40 -05001242 unsigned long flags,
1243 int skip, int pc)
Ingo Molnar86387f72008-05-12 21:20:51 +02001244{
Tom Zanussie1112b42009-03-31 00:48:49 -05001245 struct ftrace_event_call *call = &event_kernel_stack;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001246 struct ring_buffer_event *event;
Steven Rostedt777e2082008-09-29 23:02:42 -04001247 struct stack_entry *entry;
Ingo Molnar86387f72008-05-12 21:20:51 +02001248 struct stack_trace trace;
1249
Steven Rostedte77405a2009-09-02 14:17:06 -04001250 event = trace_buffer_lock_reserve(buffer, TRACE_STACK,
Arnaldo Carvalho de Melo51a763d2009-02-05 16:14:13 -02001251 sizeof(*entry), flags, pc);
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001252 if (!event)
1253 return;
1254 entry = ring_buffer_event_data(event);
Steven Rostedt777e2082008-09-29 23:02:42 -04001255 memset(&entry->caller, 0, sizeof(entry->caller));
Ingo Molnar86387f72008-05-12 21:20:51 +02001256
1257 trace.nr_entries = 0;
1258 trace.max_entries = FTRACE_STACK_ENTRIES;
1259 trace.skip = skip;
Steven Rostedt777e2082008-09-29 23:02:42 -04001260 trace.entries = entry->caller;
Ingo Molnar86387f72008-05-12 21:20:51 +02001261
1262 save_stack_trace(&trace);
Steven Rostedte77405a2009-09-02 14:17:06 -04001263 if (!filter_check_discard(call, entry, buffer, event))
1264 ring_buffer_unlock_commit(buffer, event);
Ingo Molnarf0a920d2008-05-12 21:20:47 +02001265}
1266
Steven Rostedte77405a2009-09-02 14:17:06 -04001267void ftrace_trace_stack(struct ring_buffer *buffer, unsigned long flags,
1268 int skip, int pc)
Steven Rostedt53614992009-01-15 19:12:40 -05001269{
1270 if (!(trace_flags & TRACE_ITER_STACKTRACE))
1271 return;
1272
Steven Rostedte77405a2009-09-02 14:17:06 -04001273 __ftrace_trace_stack(buffer, flags, skip, pc);
Steven Rostedt53614992009-01-15 19:12:40 -05001274}
1275
Frederic Weisbeckerc0a0d0d2009-07-29 17:51:13 +02001276void __trace_stack(struct trace_array *tr, unsigned long flags, int skip,
1277 int pc)
Steven Rostedt38697052008-10-01 13:14:09 -04001278{
Steven Rostedte77405a2009-09-02 14:17:06 -04001279 __ftrace_trace_stack(tr->buffer, flags, skip, pc);
Steven Rostedt38697052008-10-01 13:14:09 -04001280}
1281
Steven Rostedt03889382009-12-11 09:48:22 -05001282/**
1283 * trace_dump_stack - record a stack back trace in the trace buffer
1284 */
1285void trace_dump_stack(void)
1286{
1287 unsigned long flags;
1288
1289 if (tracing_disabled || tracing_selftest_running)
Steven Rostedte36c5452009-12-14 15:58:33 -05001290 return;
Steven Rostedt03889382009-12-11 09:48:22 -05001291
1292 local_save_flags(flags);
1293
1294 /* skipping 3 traces, seems to get us at the caller of this function */
1295 __ftrace_trace_stack(global_trace.buffer, flags, 3, preempt_count());
1296}
1297
Steven Rostedte77405a2009-09-02 14:17:06 -04001298void
1299ftrace_trace_userstack(struct ring_buffer *buffer, unsigned long flags, int pc)
Török Edwin02b67512008-11-22 13:28:47 +02001300{
Tom Zanussie1112b42009-03-31 00:48:49 -05001301 struct ftrace_event_call *call = &event_user_stack;
Török Edwin8d7c6a92008-11-23 12:39:06 +02001302 struct ring_buffer_event *event;
Török Edwin02b67512008-11-22 13:28:47 +02001303 struct userstack_entry *entry;
1304 struct stack_trace trace;
Török Edwin02b67512008-11-22 13:28:47 +02001305
1306 if (!(trace_flags & TRACE_ITER_USERSTACKTRACE))
1307 return;
1308
Steven Rostedtb6345872010-03-12 20:03:30 -05001309 /*
1310 * NMIs can not handle page faults, even with fix ups.
1311 * The save user stack can (and often does) fault.
1312 */
1313 if (unlikely(in_nmi()))
1314 return;
1315
Steven Rostedte77405a2009-09-02 14:17:06 -04001316 event = trace_buffer_lock_reserve(buffer, TRACE_USER_STACK,
Arnaldo Carvalho de Melo51a763d2009-02-05 16:14:13 -02001317 sizeof(*entry), flags, pc);
Török Edwin02b67512008-11-22 13:28:47 +02001318 if (!event)
1319 return;
1320 entry = ring_buffer_event_data(event);
Török Edwin02b67512008-11-22 13:28:47 +02001321
Steven Rostedt48659d32009-09-11 11:36:23 -04001322 entry->tgid = current->tgid;
Török Edwin02b67512008-11-22 13:28:47 +02001323 memset(&entry->caller, 0, sizeof(entry->caller));
1324
1325 trace.nr_entries = 0;
1326 trace.max_entries = FTRACE_STACK_ENTRIES;
1327 trace.skip = 0;
1328 trace.entries = entry->caller;
1329
1330 save_stack_trace_user(&trace);
Steven Rostedte77405a2009-09-02 14:17:06 -04001331 if (!filter_check_discard(call, entry, buffer, event))
1332 ring_buffer_unlock_commit(buffer, event);
Török Edwin02b67512008-11-22 13:28:47 +02001333}
1334
Hannes Eder4fd27352009-02-10 19:44:12 +01001335#ifdef UNUSED
1336static void __trace_userstack(struct trace_array *tr, unsigned long flags)
Török Edwin02b67512008-11-22 13:28:47 +02001337{
Arnaldo Carvalho de Melo7be42152009-02-05 01:13:37 -05001338 ftrace_trace_userstack(tr, flags, preempt_count());
Török Edwin02b67512008-11-22 13:28:47 +02001339}
Hannes Eder4fd27352009-02-10 19:44:12 +01001340#endif /* UNUSED */
Török Edwin02b67512008-11-22 13:28:47 +02001341
Frederic Weisbeckerc0a0d0d2009-07-29 17:51:13 +02001342#endif /* CONFIG_STACKTRACE */
1343
Steven Rostedt38697052008-10-01 13:14:09 -04001344static void
Arnaldo Carvalho de Melo7be42152009-02-05 01:13:37 -05001345ftrace_trace_special(void *__tr,
Steven Rostedt38697052008-10-01 13:14:09 -04001346 unsigned long arg1, unsigned long arg2, unsigned long arg3,
1347 int pc)
Ingo Molnara4feb832008-05-12 21:21:02 +02001348{
Steven Rostedt60ba7702009-09-12 23:34:04 -04001349 struct ftrace_event_call *call = &event_special;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001350 struct ring_buffer_event *event;
Ingo Molnara4feb832008-05-12 21:21:02 +02001351 struct trace_array *tr = __tr;
Steven Rostedte77405a2009-09-02 14:17:06 -04001352 struct ring_buffer *buffer = tr->buffer;
Steven Rostedt777e2082008-09-29 23:02:42 -04001353 struct special_entry *entry;
Ingo Molnara4feb832008-05-12 21:21:02 +02001354
Steven Rostedte77405a2009-09-02 14:17:06 -04001355 event = trace_buffer_lock_reserve(buffer, TRACE_SPECIAL,
Arnaldo Carvalho de Melo51a763d2009-02-05 16:14:13 -02001356 sizeof(*entry), 0, pc);
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001357 if (!event)
1358 return;
1359 entry = ring_buffer_event_data(event);
Steven Rostedt777e2082008-09-29 23:02:42 -04001360 entry->arg1 = arg1;
1361 entry->arg2 = arg2;
1362 entry->arg3 = arg3;
Steven Rostedt60ba7702009-09-12 23:34:04 -04001363
1364 if (!filter_check_discard(call, entry, buffer, event))
1365 trace_buffer_unlock_commit(buffer, event, 0, pc);
Ingo Molnara4feb832008-05-12 21:21:02 +02001366}
1367
1368void
Steven Rostedt38697052008-10-01 13:14:09 -04001369__trace_special(void *__tr, void *__data,
1370 unsigned long arg1, unsigned long arg2, unsigned long arg3)
1371{
Arnaldo Carvalho de Melo7be42152009-02-05 01:13:37 -05001372 ftrace_trace_special(__tr, arg1, arg2, arg3, preempt_count());
Steven Rostedt38697052008-10-01 13:14:09 -04001373}
1374
1375void
Steven Rostedt4902f882008-05-22 00:22:18 -04001376ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3)
1377{
1378 struct trace_array *tr = &global_trace;
1379 struct trace_array_cpu *data;
Steven Rostedt5aa1ba62008-11-10 23:07:30 -05001380 unsigned long flags;
Steven Rostedt4902f882008-05-22 00:22:18 -04001381 int cpu;
Steven Rostedt38697052008-10-01 13:14:09 -04001382 int pc;
Steven Rostedt4902f882008-05-22 00:22:18 -04001383
Steven Rostedtc76f0692008-11-07 22:36:02 -05001384 if (tracing_disabled)
Steven Rostedt4902f882008-05-22 00:22:18 -04001385 return;
1386
Steven Rostedt38697052008-10-01 13:14:09 -04001387 pc = preempt_count();
Steven Rostedt5aa1ba62008-11-10 23:07:30 -05001388 local_irq_save(flags);
Steven Rostedt4902f882008-05-22 00:22:18 -04001389 cpu = raw_smp_processor_id();
1390 data = tr->data[cpu];
Steven Rostedt4902f882008-05-22 00:22:18 -04001391
Steven Rostedt5aa1ba62008-11-10 23:07:30 -05001392 if (likely(atomic_inc_return(&data->disabled) == 1))
Arnaldo Carvalho de Melo7be42152009-02-05 01:13:37 -05001393 ftrace_trace_special(tr, arg1, arg2, arg3, pc);
Steven Rostedt4902f882008-05-22 00:22:18 -04001394
Steven Rostedt5aa1ba62008-11-10 23:07:30 -05001395 atomic_dec(&data->disabled);
1396 local_irq_restore(flags);
Steven Rostedt4902f882008-05-22 00:22:18 -04001397}
1398
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001399/**
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001400 * trace_vbprintk - write binary msg to tracing buffer
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001401 *
1402 */
Steven Rostedt40ce74f2009-03-19 14:03:53 -04001403int trace_vbprintk(unsigned long ip, const char *fmt, va_list args)
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001404{
Thomas Gleixner445c8952009-12-02 19:49:50 +01001405 static arch_spinlock_t trace_buf_lock =
Thomas Gleixneredc35bd2009-12-03 12:38:57 +01001406 (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001407 static u32 trace_buf[TRACE_BUF_SIZE];
1408
Tom Zanussie1112b42009-03-31 00:48:49 -05001409 struct ftrace_event_call *call = &event_bprint;
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001410 struct ring_buffer_event *event;
Steven Rostedte77405a2009-09-02 14:17:06 -04001411 struct ring_buffer *buffer;
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001412 struct trace_array *tr = &global_trace;
1413 struct trace_array_cpu *data;
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001414 struct bprint_entry *entry;
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001415 unsigned long flags;
Steven Rostedt3189cdb2009-04-17 16:13:55 -04001416 int disable;
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001417 int cpu, len = 0, size, pc;
1418
1419 if (unlikely(tracing_selftest_running || tracing_disabled))
1420 return 0;
1421
1422 /* Don't pollute graph traces with trace_vprintk internals */
1423 pause_graph_tracing();
1424
1425 pc = preempt_count();
Steven Rostedt5168ae52010-06-03 09:36:50 -04001426 preempt_disable_notrace();
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001427 cpu = raw_smp_processor_id();
1428 data = tr->data[cpu];
1429
Steven Rostedt3189cdb2009-04-17 16:13:55 -04001430 disable = atomic_inc_return(&data->disabled);
1431 if (unlikely(disable != 1))
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001432 goto out;
1433
Steven Rostedt80370cb2009-03-10 17:16:35 -04001434 /* Lockdep uses trace_printk for lock tracing */
1435 local_irq_save(flags);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001436 arch_spin_lock(&trace_buf_lock);
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001437 len = vbin_printf(trace_buf, TRACE_BUF_SIZE, fmt, args);
1438
1439 if (len > TRACE_BUF_SIZE || len < 0)
1440 goto out_unlock;
1441
1442 size = sizeof(*entry) + sizeof(u32) * len;
Steven Rostedte77405a2009-09-02 14:17:06 -04001443 buffer = tr->buffer;
1444 event = trace_buffer_lock_reserve(buffer, TRACE_BPRINT, size,
1445 flags, pc);
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001446 if (!event)
1447 goto out_unlock;
1448 entry = ring_buffer_event_data(event);
1449 entry->ip = ip;
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001450 entry->fmt = fmt;
1451
1452 memcpy(entry->buf, trace_buf, sizeof(u32) * len);
Steven Rostedtd9313692010-01-06 17:27:11 -05001453 if (!filter_check_discard(call, entry, buffer, event)) {
Steven Rostedte77405a2009-09-02 14:17:06 -04001454 ring_buffer_unlock_commit(buffer, event);
Steven Rostedtd9313692010-01-06 17:27:11 -05001455 ftrace_trace_stack(buffer, flags, 6, pc);
1456 }
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001457
1458out_unlock:
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001459 arch_spin_unlock(&trace_buf_lock);
Steven Rostedt80370cb2009-03-10 17:16:35 -04001460 local_irq_restore(flags);
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001461
1462out:
Steven Rostedt3189cdb2009-04-17 16:13:55 -04001463 atomic_dec_return(&data->disabled);
Steven Rostedt5168ae52010-06-03 09:36:50 -04001464 preempt_enable_notrace();
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001465 unpause_graph_tracing();
1466
1467 return len;
1468}
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001469EXPORT_SYMBOL_GPL(trace_vbprintk);
1470
Steven Rostedt659372d2009-09-03 19:11:07 -04001471int trace_array_printk(struct trace_array *tr,
1472 unsigned long ip, const char *fmt, ...)
1473{
1474 int ret;
1475 va_list ap;
1476
1477 if (!(trace_flags & TRACE_ITER_PRINTK))
1478 return 0;
1479
1480 va_start(ap, fmt);
1481 ret = trace_array_vprintk(tr, ip, fmt, ap);
1482 va_end(ap);
1483 return ret;
1484}
1485
1486int trace_array_vprintk(struct trace_array *tr,
1487 unsigned long ip, const char *fmt, va_list args)
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001488{
Thomas Gleixneredc35bd2009-12-03 12:38:57 +01001489 static arch_spinlock_t trace_buf_lock = __ARCH_SPIN_LOCK_UNLOCKED;
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001490 static char trace_buf[TRACE_BUF_SIZE];
1491
Tom Zanussie1112b42009-03-31 00:48:49 -05001492 struct ftrace_event_call *call = &event_print;
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001493 struct ring_buffer_event *event;
Steven Rostedte77405a2009-09-02 14:17:06 -04001494 struct ring_buffer *buffer;
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001495 struct trace_array_cpu *data;
1496 int cpu, len = 0, size, pc;
1497 struct print_entry *entry;
1498 unsigned long irq_flags;
Steven Rostedt3189cdb2009-04-17 16:13:55 -04001499 int disable;
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001500
1501 if (tracing_disabled || tracing_selftest_running)
1502 return 0;
1503
1504 pc = preempt_count();
1505 preempt_disable_notrace();
1506 cpu = raw_smp_processor_id();
1507 data = tr->data[cpu];
1508
Steven Rostedt3189cdb2009-04-17 16:13:55 -04001509 disable = atomic_inc_return(&data->disabled);
1510 if (unlikely(disable != 1))
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001511 goto out;
1512
1513 pause_graph_tracing();
1514 raw_local_irq_save(irq_flags);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001515 arch_spin_lock(&trace_buf_lock);
Carsten Emdef2942482009-12-06 14:02:44 +01001516 len = vsnprintf(trace_buf, TRACE_BUF_SIZE, fmt, args);
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001517
1518 size = sizeof(*entry) + len + 1;
Steven Rostedte77405a2009-09-02 14:17:06 -04001519 buffer = tr->buffer;
1520 event = trace_buffer_lock_reserve(buffer, TRACE_PRINT, size,
1521 irq_flags, pc);
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001522 if (!event)
1523 goto out_unlock;
1524 entry = ring_buffer_event_data(event);
Carsten Emdec13d2f72009-11-16 20:56:13 +01001525 entry->ip = ip;
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001526
1527 memcpy(&entry->buf, trace_buf, len);
Carsten Emdec13d2f72009-11-16 20:56:13 +01001528 entry->buf[len] = '\0';
Steven Rostedtd9313692010-01-06 17:27:11 -05001529 if (!filter_check_discard(call, entry, buffer, event)) {
Steven Rostedte77405a2009-09-02 14:17:06 -04001530 ring_buffer_unlock_commit(buffer, event);
Steven Rostedtd9313692010-01-06 17:27:11 -05001531 ftrace_trace_stack(buffer, irq_flags, 6, pc);
1532 }
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001533
1534 out_unlock:
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001535 arch_spin_unlock(&trace_buf_lock);
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001536 raw_local_irq_restore(irq_flags);
1537 unpause_graph_tracing();
1538 out:
Steven Rostedt3189cdb2009-04-17 16:13:55 -04001539 atomic_dec_return(&data->disabled);
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001540 preempt_enable_notrace();
1541
1542 return len;
1543}
Steven Rostedt659372d2009-09-03 19:11:07 -04001544
1545int trace_vprintk(unsigned long ip, const char *fmt, va_list args)
1546{
Steven Rostedta813a152009-10-09 01:41:35 -04001547 return trace_array_vprintk(&global_trace, ip, fmt, args);
Steven Rostedt659372d2009-09-03 19:11:07 -04001548}
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001549EXPORT_SYMBOL_GPL(trace_vprintk);
1550
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001551enum trace_file_type {
1552 TRACE_FILE_LAT_FMT = 1,
Steven Rostedt12ef7d42008-11-12 17:52:38 -05001553 TRACE_FILE_ANNOTATE = 2,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001554};
1555
Robert Richtere2ac8ef2008-11-12 12:59:32 +01001556static void trace_iterator_increment(struct trace_iterator *iter)
Steven Rostedt5a90f572008-09-03 17:42:51 -04001557{
Steven Rostedtd7690412008-10-01 00:29:53 -04001558 /* Don't allow ftrace to trace into the ring buffers */
1559 ftrace_disable_cpu();
1560
Steven Rostedt5a90f572008-09-03 17:42:51 -04001561 iter->idx++;
Steven Rostedtd7690412008-10-01 00:29:53 -04001562 if (iter->buffer_iter[iter->cpu])
1563 ring_buffer_read(iter->buffer_iter[iter->cpu], NULL);
1564
1565 ftrace_enable_cpu();
Steven Rostedt5a90f572008-09-03 17:42:51 -04001566}
1567
Ingo Molnare309b412008-05-12 21:20:51 +02001568static struct trace_entry *
Steven Rostedtbc21b472010-03-31 19:49:26 -04001569peek_next_entry(struct trace_iterator *iter, int cpu, u64 *ts,
1570 unsigned long *lost_events)
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001571{
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001572 struct ring_buffer_event *event;
1573 struct ring_buffer_iter *buf_iter = iter->buffer_iter[cpu];
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001574
Steven Rostedtd7690412008-10-01 00:29:53 -04001575 /* Don't allow ftrace to trace into the ring buffers */
1576 ftrace_disable_cpu();
1577
1578 if (buf_iter)
1579 event = ring_buffer_iter_peek(buf_iter, ts);
1580 else
Steven Rostedtbc21b472010-03-31 19:49:26 -04001581 event = ring_buffer_peek(iter->tr->buffer, cpu, ts,
1582 lost_events);
Steven Rostedtd7690412008-10-01 00:29:53 -04001583
1584 ftrace_enable_cpu();
1585
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001586 return event ? ring_buffer_event_data(event) : NULL;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001587}
Steven Rostedtd7690412008-10-01 00:29:53 -04001588
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001589static struct trace_entry *
Steven Rostedtbc21b472010-03-31 19:49:26 -04001590__find_next_entry(struct trace_iterator *iter, int *ent_cpu,
1591 unsigned long *missing_events, u64 *ent_ts)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001592{
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001593 struct ring_buffer *buffer = iter->tr->buffer;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001594 struct trace_entry *ent, *next = NULL;
Lai Jiangshanaa274972010-04-05 17:11:05 +08001595 unsigned long lost_events = 0, next_lost = 0;
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01001596 int cpu_file = iter->cpu_file;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001597 u64 next_ts = 0, ts;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001598 int next_cpu = -1;
1599 int cpu;
1600
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01001601 /*
1602 * If we are in a per_cpu trace file, don't bother by iterating over
1603 * all cpu and peek directly.
1604 */
1605 if (cpu_file > TRACE_PIPE_ALL_CPU) {
1606 if (ring_buffer_empty_cpu(buffer, cpu_file))
1607 return NULL;
Steven Rostedtbc21b472010-03-31 19:49:26 -04001608 ent = peek_next_entry(iter, cpu_file, ent_ts, missing_events);
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01001609 if (ent_cpu)
1610 *ent_cpu = cpu_file;
1611
1612 return ent;
1613 }
1614
Steven Rostedtab464282008-05-12 21:21:00 +02001615 for_each_tracing_cpu(cpu) {
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001616
1617 if (ring_buffer_empty_cpu(buffer, cpu))
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001618 continue;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001619
Steven Rostedtbc21b472010-03-31 19:49:26 -04001620 ent = peek_next_entry(iter, cpu, &ts, &lost_events);
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001621
Ingo Molnarcdd31cd2008-05-12 21:20:46 +02001622 /*
1623 * Pick the entry with the smallest timestamp:
1624 */
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001625 if (ent && (!next || ts < next_ts)) {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001626 next = ent;
1627 next_cpu = cpu;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001628 next_ts = ts;
Steven Rostedtbc21b472010-03-31 19:49:26 -04001629 next_lost = lost_events;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001630 }
1631 }
1632
1633 if (ent_cpu)
1634 *ent_cpu = next_cpu;
1635
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001636 if (ent_ts)
1637 *ent_ts = next_ts;
1638
Steven Rostedtbc21b472010-03-31 19:49:26 -04001639 if (missing_events)
1640 *missing_events = next_lost;
1641
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001642 return next;
1643}
1644
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001645/* Find the next real entry, without updating the iterator itself */
Frederic Weisbeckerc4a8e8b2009-02-02 20:29:21 -02001646struct trace_entry *trace_find_next_entry(struct trace_iterator *iter,
1647 int *ent_cpu, u64 *ent_ts)
Steven Rostedtb3806b42008-05-12 21:20:46 +02001648{
Steven Rostedtbc21b472010-03-31 19:49:26 -04001649 return __find_next_entry(iter, ent_cpu, NULL, ent_ts);
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001650}
Ingo Molnar8c523a92008-05-12 21:20:46 +02001651
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001652/* Find the next real entry, and increment the iterator to the next entry */
1653static void *find_next_entry_inc(struct trace_iterator *iter)
1654{
Steven Rostedtbc21b472010-03-31 19:49:26 -04001655 iter->ent = __find_next_entry(iter, &iter->cpu,
1656 &iter->lost_events, &iter->ts);
Steven Rostedtb3806b42008-05-12 21:20:46 +02001657
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001658 if (iter->ent)
Robert Richtere2ac8ef2008-11-12 12:59:32 +01001659 trace_iterator_increment(iter);
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001660
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001661 return iter->ent ? iter : NULL;
Steven Rostedtb3806b42008-05-12 21:20:46 +02001662}
1663
Ingo Molnare309b412008-05-12 21:20:51 +02001664static void trace_consume(struct trace_iterator *iter)
Steven Rostedtb3806b42008-05-12 21:20:46 +02001665{
Steven Rostedtd7690412008-10-01 00:29:53 -04001666 /* Don't allow ftrace to trace into the ring buffers */
1667 ftrace_disable_cpu();
Steven Rostedtbc21b472010-03-31 19:49:26 -04001668 ring_buffer_consume(iter->tr->buffer, iter->cpu, &iter->ts,
1669 &iter->lost_events);
Steven Rostedtd7690412008-10-01 00:29:53 -04001670 ftrace_enable_cpu();
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001671}
1672
Ingo Molnare309b412008-05-12 21:20:51 +02001673static void *s_next(struct seq_file *m, void *v, loff_t *pos)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001674{
1675 struct trace_iterator *iter = m->private;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001676 int i = (int)*pos;
Ingo Molnar4e3c3332008-05-12 21:20:45 +02001677 void *ent;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001678
Steven Rostedta63ce5b2009-12-07 09:11:39 -05001679 WARN_ON_ONCE(iter->leftover);
1680
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001681 (*pos)++;
1682
1683 /* can't go backwards */
1684 if (iter->idx > i)
1685 return NULL;
1686
1687 if (iter->idx < 0)
1688 ent = find_next_entry_inc(iter);
1689 else
1690 ent = iter;
1691
1692 while (ent && iter->idx < i)
1693 ent = find_next_entry_inc(iter);
1694
1695 iter->pos = *pos;
1696
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001697 return ent;
1698}
1699
Steven Rostedt2f26ebd2009-09-01 11:06:29 -04001700static void tracing_iter_reset(struct trace_iterator *iter, int cpu)
1701{
1702 struct trace_array *tr = iter->tr;
1703 struct ring_buffer_event *event;
1704 struct ring_buffer_iter *buf_iter;
1705 unsigned long entries = 0;
1706 u64 ts;
1707
1708 tr->data[cpu]->skipped_entries = 0;
1709
1710 if (!iter->buffer_iter[cpu])
1711 return;
1712
1713 buf_iter = iter->buffer_iter[cpu];
1714 ring_buffer_iter_reset(buf_iter);
1715
1716 /*
1717 * We could have the case with the max latency tracers
1718 * that a reset never took place on a cpu. This is evident
1719 * by the timestamp being before the start of the buffer.
1720 */
1721 while ((event = ring_buffer_iter_peek(buf_iter, &ts))) {
1722 if (ts >= iter->tr->time_start)
1723 break;
1724 entries++;
1725 ring_buffer_read(buf_iter, NULL);
1726 }
1727
1728 tr->data[cpu]->skipped_entries = entries;
1729}
1730
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01001731/*
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01001732 * The current tracer is copied to avoid a global locking
1733 * all around.
1734 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001735static void *s_start(struct seq_file *m, loff_t *pos)
1736{
1737 struct trace_iterator *iter = m->private;
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01001738 static struct tracer *old_tracer;
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01001739 int cpu_file = iter->cpu_file;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001740 void *p = NULL;
1741 loff_t l = 0;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001742 int cpu;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001743
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01001744 /* copy the tracer to avoid using a global lock all around */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001745 mutex_lock(&trace_types_lock);
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01001746 if (unlikely(old_tracer != current_trace && current_trace)) {
1747 old_tracer = current_trace;
1748 *iter->trace = *current_trace;
Steven Rostedtd15f57f2008-05-12 21:20:56 +02001749 }
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01001750 mutex_unlock(&trace_types_lock);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001751
1752 atomic_inc(&trace_record_cmdline_disabled);
1753
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001754 if (*pos != iter->pos) {
1755 iter->ent = NULL;
1756 iter->cpu = 0;
1757 iter->idx = -1;
1758
Steven Rostedtd7690412008-10-01 00:29:53 -04001759 ftrace_disable_cpu();
1760
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01001761 if (cpu_file == TRACE_PIPE_ALL_CPU) {
1762 for_each_tracing_cpu(cpu)
Steven Rostedt2f26ebd2009-09-01 11:06:29 -04001763 tracing_iter_reset(iter, cpu);
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01001764 } else
Steven Rostedt2f26ebd2009-09-01 11:06:29 -04001765 tracing_iter_reset(iter, cpu_file);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001766
Steven Rostedtd7690412008-10-01 00:29:53 -04001767 ftrace_enable_cpu();
1768
Lai Jiangshanac91d852010-03-02 17:54:50 +08001769 iter->leftover = 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001770 for (p = iter; p && l < *pos; p = s_next(m, p, &l))
1771 ;
1772
1773 } else {
Steven Rostedta63ce5b2009-12-07 09:11:39 -05001774 /*
1775 * If we overflowed the seq_file before, then we want
1776 * to just reuse the trace_seq buffer again.
1777 */
1778 if (iter->leftover)
1779 p = iter;
1780 else {
1781 l = *pos - 1;
1782 p = s_next(m, p, &l);
1783 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001784 }
1785
Lai Jiangshan4f535962009-05-18 19:35:34 +08001786 trace_event_read_lock();
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08001787 trace_access_lock(cpu_file);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001788 return p;
1789}
1790
1791static void s_stop(struct seq_file *m, void *p)
1792{
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08001793 struct trace_iterator *iter = m->private;
1794
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001795 atomic_dec(&trace_record_cmdline_disabled);
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08001796 trace_access_unlock(iter->cpu_file);
Lai Jiangshan4f535962009-05-18 19:35:34 +08001797 trace_event_read_unlock();
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001798}
1799
Ingo Molnare309b412008-05-12 21:20:51 +02001800static void print_lat_help_header(struct seq_file *m)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001801{
Michael Ellermana6168352008-08-20 16:36:11 -07001802 seq_puts(m, "# _------=> CPU# \n");
1803 seq_puts(m, "# / _-----=> irqs-off \n");
1804 seq_puts(m, "# | / _----=> need-resched \n");
1805 seq_puts(m, "# || / _---=> hardirq/softirq \n");
1806 seq_puts(m, "# ||| / _--=> preempt-depth \n");
Steven Rostedt637e7e82009-09-11 13:55:35 -04001807 seq_puts(m, "# |||| /_--=> lock-depth \n");
1808 seq_puts(m, "# |||||/ delay \n");
1809 seq_puts(m, "# cmd pid |||||| time | caller \n");
1810 seq_puts(m, "# \\ / |||||| \\ | / \n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001811}
1812
Ingo Molnare309b412008-05-12 21:20:51 +02001813static void print_func_help_header(struct seq_file *m)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001814{
Michael Ellermana6168352008-08-20 16:36:11 -07001815 seq_puts(m, "# TASK-PID CPU# TIMESTAMP FUNCTION\n");
1816 seq_puts(m, "# | | | | |\n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001817}
1818
1819
Jiri Olsa62b915f2010-04-02 19:01:22 +02001820void
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001821print_trace_header(struct seq_file *m, struct trace_iterator *iter)
1822{
1823 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1824 struct trace_array *tr = iter->tr;
1825 struct trace_array_cpu *data = tr->data[tr->cpu];
1826 struct tracer *type = current_trace;
Steven Rostedt2f26ebd2009-09-01 11:06:29 -04001827 unsigned long entries = 0;
1828 unsigned long total = 0;
1829 unsigned long count;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001830 const char *name = "preemption";
Steven Rostedt2f26ebd2009-09-01 11:06:29 -04001831 int cpu;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001832
1833 if (type)
1834 name = type->name;
1835
Steven Rostedt2f26ebd2009-09-01 11:06:29 -04001836
1837 for_each_tracing_cpu(cpu) {
1838 count = ring_buffer_entries_cpu(tr->buffer, cpu);
1839 /*
1840 * If this buffer has skipped entries, then we hold all
1841 * entries for the trace and we need to ignore the
1842 * ones before the time stamp.
1843 */
1844 if (tr->data[cpu]->skipped_entries) {
1845 count -= tr->data[cpu]->skipped_entries;
1846 /* total is the same as the entries */
1847 total += count;
1848 } else
1849 total += count +
1850 ring_buffer_overrun_cpu(tr->buffer, cpu);
1851 entries += count;
1852 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001853
KOSAKI Motohiro888b55d2009-03-08 13:12:43 +09001854 seq_printf(m, "# %s latency trace v1.1.5 on %s\n",
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001855 name, UTS_RELEASE);
KOSAKI Motohiro888b55d2009-03-08 13:12:43 +09001856 seq_puts(m, "# -----------------------------------"
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001857 "---------------------------------\n");
KOSAKI Motohiro888b55d2009-03-08 13:12:43 +09001858 seq_printf(m, "# latency: %lu us, #%lu/%lu, CPU#%d |"
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001859 " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
Steven Rostedt57f50be2008-05-12 21:20:44 +02001860 nsecs_to_usecs(data->saved_latency),
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001861 entries,
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001862 total,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001863 tr->cpu,
1864#if defined(CONFIG_PREEMPT_NONE)
1865 "server",
1866#elif defined(CONFIG_PREEMPT_VOLUNTARY)
1867 "desktop",
Steven Rostedtb5c21b42008-07-10 20:58:12 -04001868#elif defined(CONFIG_PREEMPT)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001869 "preempt",
1870#else
1871 "unknown",
1872#endif
1873 /* These are reserved for later use */
1874 0, 0, 0, 0);
1875#ifdef CONFIG_SMP
1876 seq_printf(m, " #P:%d)\n", num_online_cpus());
1877#else
1878 seq_puts(m, ")\n");
1879#endif
KOSAKI Motohiro888b55d2009-03-08 13:12:43 +09001880 seq_puts(m, "# -----------------\n");
1881 seq_printf(m, "# | task: %.16s-%d "
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001882 "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
1883 data->comm, data->pid, data->uid, data->nice,
1884 data->policy, data->rt_priority);
KOSAKI Motohiro888b55d2009-03-08 13:12:43 +09001885 seq_puts(m, "# -----------------\n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001886
1887 if (data->critical_start) {
KOSAKI Motohiro888b55d2009-03-08 13:12:43 +09001888 seq_puts(m, "# => started at: ");
Steven Rostedt214023c2008-05-12 21:20:46 +02001889 seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags);
1890 trace_print_seq(m, &iter->seq);
KOSAKI Motohiro888b55d2009-03-08 13:12:43 +09001891 seq_puts(m, "\n# => ended at: ");
Steven Rostedt214023c2008-05-12 21:20:46 +02001892 seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags);
1893 trace_print_seq(m, &iter->seq);
Steven Rostedt8248ac02009-09-02 12:27:41 -04001894 seq_puts(m, "\n#\n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001895 }
1896
KOSAKI Motohiro888b55d2009-03-08 13:12:43 +09001897 seq_puts(m, "#\n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001898}
1899
Steven Rostedta3097202008-11-07 22:36:02 -05001900static void test_cpu_buff_start(struct trace_iterator *iter)
1901{
1902 struct trace_seq *s = &iter->seq;
1903
Steven Rostedt12ef7d42008-11-12 17:52:38 -05001904 if (!(trace_flags & TRACE_ITER_ANNOTATE))
1905 return;
1906
1907 if (!(iter->iter_flags & TRACE_FILE_ANNOTATE))
1908 return;
1909
Rusty Russell44623442009-01-01 10:12:23 +10301910 if (cpumask_test_cpu(iter->cpu, iter->started))
Steven Rostedta3097202008-11-07 22:36:02 -05001911 return;
1912
Steven Rostedt2f26ebd2009-09-01 11:06:29 -04001913 if (iter->tr->data[iter->cpu]->skipped_entries)
1914 return;
1915
Rusty Russell44623442009-01-01 10:12:23 +10301916 cpumask_set_cpu(iter->cpu, iter->started);
Frederic Weisbeckerb0dfa972009-04-01 22:53:08 +02001917
1918 /* Don't print started cpu buffer for the first entry of the trace */
1919 if (iter->idx > 1)
1920 trace_seq_printf(s, "##### CPU %u buffer started ####\n",
1921 iter->cpu);
Steven Rostedta3097202008-11-07 22:36:02 -05001922}
1923
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02001924static enum print_line_t print_trace_fmt(struct trace_iterator *iter)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001925{
Steven Rostedt214023c2008-05-12 21:20:46 +02001926 struct trace_seq *s = &iter->seq;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001927 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
Ingo Molnar4e3c3332008-05-12 21:20:45 +02001928 struct trace_entry *entry;
Steven Rostedtf633cef2008-12-23 23:24:13 -05001929 struct trace_event *event;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001930
Ingo Molnar4e3c3332008-05-12 21:20:45 +02001931 entry = iter->ent;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001932
Steven Rostedta3097202008-11-07 22:36:02 -05001933 test_cpu_buff_start(iter);
1934
Steven Rostedtf633cef2008-12-23 23:24:13 -05001935 event = ftrace_find_event(entry->type);
Frederic Weisbeckerc4a8e8b2009-02-02 20:29:21 -02001936
1937 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
Steven Rostedt27d48be2009-03-04 21:57:29 -05001938 if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
1939 if (!trace_print_lat_context(iter))
1940 goto partial;
1941 } else {
1942 if (!trace_print_context(iter))
1943 goto partial;
1944 }
Frederic Weisbeckerc4a8e8b2009-02-02 20:29:21 -02001945 }
1946
Arnaldo Carvalho de Melo268ccda2009-02-04 20:16:39 -02001947 if (event)
Steven Rostedta9a57762010-04-22 18:46:14 -04001948 return event->funcs->trace(iter, sym_flags, event);
Arnaldo Carvalho de Melod9793bd2009-02-03 20:20:41 -02001949
1950 if (!trace_seq_printf(s, "Unknown type %d\n", entry->type))
1951 goto partial;
Steven Rostedt7104f302008-10-01 10:52:51 -04001952
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02001953 return TRACE_TYPE_HANDLED;
Arnaldo Carvalho de Melod9793bd2009-02-03 20:20:41 -02001954partial:
1955 return TRACE_TYPE_PARTIAL_LINE;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001956}
1957
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02001958static enum print_line_t print_raw_fmt(struct trace_iterator *iter)
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001959{
1960 struct trace_seq *s = &iter->seq;
1961 struct trace_entry *entry;
Steven Rostedtf633cef2008-12-23 23:24:13 -05001962 struct trace_event *event;
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001963
1964 entry = iter->ent;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001965
Frederic Weisbeckerc4a8e8b2009-02-02 20:29:21 -02001966 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
Arnaldo Carvalho de Melod9793bd2009-02-03 20:20:41 -02001967 if (!trace_seq_printf(s, "%d %d %llu ",
1968 entry->pid, iter->cpu, iter->ts))
1969 goto partial;
Frederic Weisbeckerc4a8e8b2009-02-02 20:29:21 -02001970 }
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001971
Steven Rostedtf633cef2008-12-23 23:24:13 -05001972 event = ftrace_find_event(entry->type);
Arnaldo Carvalho de Melo268ccda2009-02-04 20:16:39 -02001973 if (event)
Steven Rostedta9a57762010-04-22 18:46:14 -04001974 return event->funcs->raw(iter, 0, event);
Arnaldo Carvalho de Melod9793bd2009-02-03 20:20:41 -02001975
1976 if (!trace_seq_printf(s, "%d ?\n", entry->type))
1977 goto partial;
Steven Rostedt7104f302008-10-01 10:52:51 -04001978
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02001979 return TRACE_TYPE_HANDLED;
Arnaldo Carvalho de Melod9793bd2009-02-03 20:20:41 -02001980partial:
1981 return TRACE_TYPE_PARTIAL_LINE;
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001982}
1983
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02001984static enum print_line_t print_hex_fmt(struct trace_iterator *iter)
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001985{
1986 struct trace_seq *s = &iter->seq;
1987 unsigned char newline = '\n';
1988 struct trace_entry *entry;
Steven Rostedtf633cef2008-12-23 23:24:13 -05001989 struct trace_event *event;
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001990
1991 entry = iter->ent;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001992
Frederic Weisbeckerc4a8e8b2009-02-02 20:29:21 -02001993 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
1994 SEQ_PUT_HEX_FIELD_RET(s, entry->pid);
1995 SEQ_PUT_HEX_FIELD_RET(s, iter->cpu);
1996 SEQ_PUT_HEX_FIELD_RET(s, iter->ts);
1997 }
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001998
Steven Rostedtf633cef2008-12-23 23:24:13 -05001999 event = ftrace_find_event(entry->type);
Arnaldo Carvalho de Melo268ccda2009-02-04 20:16:39 -02002000 if (event) {
Steven Rostedta9a57762010-04-22 18:46:14 -04002001 enum print_line_t ret = event->funcs->hex(iter, 0, event);
Arnaldo Carvalho de Melod9793bd2009-02-03 20:20:41 -02002002 if (ret != TRACE_TYPE_HANDLED)
2003 return ret;
2004 }
Steven Rostedt7104f302008-10-01 10:52:51 -04002005
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02002006 SEQ_PUT_FIELD_RET(s, newline);
2007
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02002008 return TRACE_TYPE_HANDLED;
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02002009}
2010
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02002011static enum print_line_t print_bin_fmt(struct trace_iterator *iter)
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02002012{
2013 struct trace_seq *s = &iter->seq;
2014 struct trace_entry *entry;
Steven Rostedtf633cef2008-12-23 23:24:13 -05002015 struct trace_event *event;
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02002016
2017 entry = iter->ent;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04002018
Frederic Weisbeckerc4a8e8b2009-02-02 20:29:21 -02002019 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
2020 SEQ_PUT_FIELD_RET(s, entry->pid);
Steven Rostedt1830b522009-02-07 19:38:43 -05002021 SEQ_PUT_FIELD_RET(s, iter->cpu);
Frederic Weisbeckerc4a8e8b2009-02-02 20:29:21 -02002022 SEQ_PUT_FIELD_RET(s, iter->ts);
2023 }
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02002024
Steven Rostedtf633cef2008-12-23 23:24:13 -05002025 event = ftrace_find_event(entry->type);
Steven Rostedta9a57762010-04-22 18:46:14 -04002026 return event ? event->funcs->binary(iter, 0, event) :
2027 TRACE_TYPE_HANDLED;
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02002028}
2029
Jiri Olsa62b915f2010-04-02 19:01:22 +02002030int trace_empty(struct trace_iterator *iter)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002031{
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002032 int cpu;
2033
Steven Rostedt9aba60f2009-03-11 19:52:30 -04002034 /* If we are looking at one CPU buffer, only check that one */
2035 if (iter->cpu_file != TRACE_PIPE_ALL_CPU) {
2036 cpu = iter->cpu_file;
2037 if (iter->buffer_iter[cpu]) {
2038 if (!ring_buffer_iter_empty(iter->buffer_iter[cpu]))
2039 return 0;
2040 } else {
2041 if (!ring_buffer_empty_cpu(iter->tr->buffer, cpu))
2042 return 0;
2043 }
2044 return 1;
2045 }
2046
Steven Rostedtab464282008-05-12 21:21:00 +02002047 for_each_tracing_cpu(cpu) {
Steven Rostedtd7690412008-10-01 00:29:53 -04002048 if (iter->buffer_iter[cpu]) {
2049 if (!ring_buffer_iter_empty(iter->buffer_iter[cpu]))
2050 return 0;
2051 } else {
2052 if (!ring_buffer_empty_cpu(iter->tr->buffer, cpu))
2053 return 0;
2054 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002055 }
Steven Rostedtd7690412008-10-01 00:29:53 -04002056
Frederic Weisbecker797d3712008-09-30 18:13:45 +02002057 return 1;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002058}
2059
Lai Jiangshan4f535962009-05-18 19:35:34 +08002060/* Called with trace_event_read_lock() held. */
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02002061static enum print_line_t print_trace_line(struct trace_iterator *iter)
Ingo Molnarf9896bf2008-05-12 21:20:47 +02002062{
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02002063 enum print_line_t ret;
2064
Steven Rostedtbc21b472010-03-31 19:49:26 -04002065 if (iter->lost_events)
2066 trace_seq_printf(&iter->seq, "CPU:%d [LOST %lu EVENTS]\n",
2067 iter->cpu, iter->lost_events);
2068
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02002069 if (iter->trace && iter->trace->print_line) {
2070 ret = iter->trace->print_line(iter);
2071 if (ret != TRACE_TYPE_UNHANDLED)
2072 return ret;
2073 }
Thomas Gleixner72829bc2008-05-23 21:37:28 +02002074
Frederic Weisbecker48ead022009-03-12 18:24:49 +01002075 if (iter->ent->type == TRACE_BPRINT &&
2076 trace_flags & TRACE_ITER_PRINTK &&
2077 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
Steven Rostedt5ef841f2009-03-19 12:20:38 -04002078 return trace_print_bprintk_msg_only(iter);
Frederic Weisbecker48ead022009-03-12 18:24:49 +01002079
Frederic Weisbecker66896a82008-12-13 20:18:13 +01002080 if (iter->ent->type == TRACE_PRINT &&
2081 trace_flags & TRACE_ITER_PRINTK &&
2082 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
Steven Rostedt5ef841f2009-03-19 12:20:38 -04002083 return trace_print_printk_msg_only(iter);
Frederic Weisbecker66896a82008-12-13 20:18:13 +01002084
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02002085 if (trace_flags & TRACE_ITER_BIN)
2086 return print_bin_fmt(iter);
2087
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02002088 if (trace_flags & TRACE_ITER_HEX)
2089 return print_hex_fmt(iter);
2090
Ingo Molnarf9896bf2008-05-12 21:20:47 +02002091 if (trace_flags & TRACE_ITER_RAW)
2092 return print_raw_fmt(iter);
2093
Ingo Molnarf9896bf2008-05-12 21:20:47 +02002094 return print_trace_fmt(iter);
2095}
2096
Jiri Olsa62b915f2010-04-02 19:01:22 +02002097void trace_default_header(struct seq_file *m)
2098{
2099 struct trace_iterator *iter = m->private;
2100
2101 if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
2102 /* print nothing if the buffers are empty */
2103 if (trace_empty(iter))
2104 return;
2105 print_trace_header(m, iter);
2106 if (!(trace_flags & TRACE_ITER_VERBOSE))
2107 print_lat_help_header(m);
2108 } else {
2109 if (!(trace_flags & TRACE_ITER_VERBOSE))
2110 print_func_help_header(m);
2111 }
2112}
2113
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002114static int s_show(struct seq_file *m, void *v)
2115{
2116 struct trace_iterator *iter = v;
Steven Rostedta63ce5b2009-12-07 09:11:39 -05002117 int ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002118
2119 if (iter->ent == NULL) {
2120 if (iter->tr) {
2121 seq_printf(m, "# tracer: %s\n", iter->trace->name);
2122 seq_puts(m, "#\n");
2123 }
Markus Metzger8bba1bf2008-11-25 09:12:31 +01002124 if (iter->trace && iter->trace->print_header)
2125 iter->trace->print_header(m);
Jiri Olsa62b915f2010-04-02 19:01:22 +02002126 else
2127 trace_default_header(m);
2128
Steven Rostedta63ce5b2009-12-07 09:11:39 -05002129 } else if (iter->leftover) {
2130 /*
2131 * If we filled the seq_file buffer earlier, we
2132 * want to just show it now.
2133 */
2134 ret = trace_print_seq(m, &iter->seq);
2135
2136 /* ret should this time be zero, but you never know */
2137 iter->leftover = ret;
2138
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002139 } else {
Ingo Molnarf9896bf2008-05-12 21:20:47 +02002140 print_trace_line(iter);
Steven Rostedta63ce5b2009-12-07 09:11:39 -05002141 ret = trace_print_seq(m, &iter->seq);
2142 /*
2143 * If we overflow the seq_file buffer, then it will
2144 * ask us for this data again at start up.
2145 * Use that instead.
2146 * ret is 0 if seq_file write succeeded.
2147 * -1 otherwise.
2148 */
2149 iter->leftover = ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002150 }
2151
2152 return 0;
2153}
2154
James Morris88e9d342009-09-22 16:43:43 -07002155static const struct seq_operations tracer_seq_ops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002156 .start = s_start,
2157 .next = s_next,
2158 .stop = s_stop,
2159 .show = s_show,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002160};
2161
Ingo Molnare309b412008-05-12 21:20:51 +02002162static struct trace_iterator *
Steven Rostedt85a2f9b2009-02-27 00:12:38 -05002163__tracing_open(struct inode *inode, struct file *file)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002164{
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01002165 long cpu_file = (long) inode->i_private;
Steven Rostedt85a2f9b2009-02-27 00:12:38 -05002166 void *fail_ret = ERR_PTR(-ENOMEM);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002167 struct trace_iterator *iter;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04002168 struct seq_file *m;
Steven Rostedt85a2f9b2009-02-27 00:12:38 -05002169 int cpu, ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002170
Steven Rostedt85a2f9b2009-02-27 00:12:38 -05002171 if (tracing_disabled)
2172 return ERR_PTR(-ENODEV);
Steven Rostedt60a11772008-05-12 21:20:44 +02002173
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002174 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
Steven Rostedt85a2f9b2009-02-27 00:12:38 -05002175 if (!iter)
2176 return ERR_PTR(-ENOMEM);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002177
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01002178 /*
2179 * We make a copy of the current tracer to avoid concurrent
2180 * changes on it while we are reading.
2181 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002182 mutex_lock(&trace_types_lock);
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01002183 iter->trace = kzalloc(sizeof(*iter->trace), GFP_KERNEL);
Steven Rostedt85a2f9b2009-02-27 00:12:38 -05002184 if (!iter->trace)
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01002185 goto fail;
Steven Rostedt85a2f9b2009-02-27 00:12:38 -05002186
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01002187 if (current_trace)
2188 *iter->trace = *current_trace;
2189
Li Zefan79f55992009-06-15 14:58:26 +08002190 if (!zalloc_cpumask_var(&iter->started, GFP_KERNEL))
Frederic Weisbeckerb0dfa972009-04-01 22:53:08 +02002191 goto fail;
2192
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002193 if (current_trace && current_trace->print_max)
2194 iter->tr = &max_tr;
2195 else
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01002196 iter->tr = &global_trace;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002197 iter->pos = -1;
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01002198 mutex_init(&iter->mutex);
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01002199 iter->cpu_file = cpu_file;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002200
Markus Metzger8bba1bf2008-11-25 09:12:31 +01002201 /* Notify the tracer early; before we stop tracing. */
2202 if (iter->trace && iter->trace->open)
Markus Metzgera93751c2008-12-11 13:53:26 +01002203 iter->trace->open(iter);
Markus Metzger8bba1bf2008-11-25 09:12:31 +01002204
Steven Rostedt12ef7d42008-11-12 17:52:38 -05002205 /* Annotate start of buffers if we had overruns */
2206 if (ring_buffer_overruns(iter->tr->buffer))
2207 iter->iter_flags |= TRACE_FILE_ANNOTATE;
2208
Steven Rostedt2f26ebd2009-09-01 11:06:29 -04002209 /* stop the trace while dumping */
2210 tracing_stop();
2211
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01002212 if (iter->cpu_file == TRACE_PIPE_ALL_CPU) {
2213 for_each_tracing_cpu(cpu) {
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01002214 iter->buffer_iter[cpu] =
David Miller72c9ddf2010-04-20 15:47:11 -07002215 ring_buffer_read_prepare(iter->tr->buffer, cpu);
2216 }
2217 ring_buffer_read_prepare_sync();
2218 for_each_tracing_cpu(cpu) {
2219 ring_buffer_read_start(iter->buffer_iter[cpu]);
Steven Rostedt2f26ebd2009-09-01 11:06:29 -04002220 tracing_iter_reset(iter, cpu);
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01002221 }
2222 } else {
2223 cpu = iter->cpu_file;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04002224 iter->buffer_iter[cpu] =
David Miller72c9ddf2010-04-20 15:47:11 -07002225 ring_buffer_read_prepare(iter->tr->buffer, cpu);
2226 ring_buffer_read_prepare_sync();
2227 ring_buffer_read_start(iter->buffer_iter[cpu]);
Steven Rostedt2f26ebd2009-09-01 11:06:29 -04002228 tracing_iter_reset(iter, cpu);
Steven Rostedt3928a8a2008-09-29 23:02:41 -04002229 }
2230
Steven Rostedt85a2f9b2009-02-27 00:12:38 -05002231 ret = seq_open(file, &tracer_seq_ops);
2232 if (ret < 0) {
2233 fail_ret = ERR_PTR(ret);
Steven Rostedt3928a8a2008-09-29 23:02:41 -04002234 goto fail_buffer;
Steven Rostedt85a2f9b2009-02-27 00:12:38 -05002235 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002236
Steven Rostedt3928a8a2008-09-29 23:02:41 -04002237 m = file->private_data;
2238 m->private = iter;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002239
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002240 mutex_unlock(&trace_types_lock);
2241
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002242 return iter;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04002243
2244 fail_buffer:
2245 for_each_tracing_cpu(cpu) {
2246 if (iter->buffer_iter[cpu])
2247 ring_buffer_read_finish(iter->buffer_iter[cpu]);
2248 }
Frederic Weisbeckerb0dfa972009-04-01 22:53:08 +02002249 free_cpumask_var(iter->started);
Steven Rostedt2f26ebd2009-09-01 11:06:29 -04002250 tracing_start();
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01002251 fail:
Steven Rostedt3928a8a2008-09-29 23:02:41 -04002252 mutex_unlock(&trace_types_lock);
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01002253 kfree(iter->trace);
Julia Lawall0bb943c2008-11-14 19:05:31 +01002254 kfree(iter);
Steven Rostedt3928a8a2008-09-29 23:02:41 -04002255
Steven Rostedt85a2f9b2009-02-27 00:12:38 -05002256 return fail_ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002257}
2258
2259int tracing_open_generic(struct inode *inode, struct file *filp)
2260{
Steven Rostedt60a11772008-05-12 21:20:44 +02002261 if (tracing_disabled)
2262 return -ENODEV;
2263
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002264 filp->private_data = inode->i_private;
2265 return 0;
2266}
2267
Hannes Eder4fd27352009-02-10 19:44:12 +01002268static int tracing_release(struct inode *inode, struct file *file)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002269{
2270 struct seq_file *m = (struct seq_file *)file->private_data;
Steven Rostedt4acd4d02009-03-18 10:40:24 -04002271 struct trace_iterator *iter;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04002272 int cpu;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002273
Steven Rostedt4acd4d02009-03-18 10:40:24 -04002274 if (!(file->f_mode & FMODE_READ))
2275 return 0;
2276
2277 iter = m->private;
2278
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002279 mutex_lock(&trace_types_lock);
Steven Rostedt3928a8a2008-09-29 23:02:41 -04002280 for_each_tracing_cpu(cpu) {
2281 if (iter->buffer_iter[cpu])
2282 ring_buffer_read_finish(iter->buffer_iter[cpu]);
2283 }
2284
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002285 if (iter->trace && iter->trace->close)
2286 iter->trace->close(iter);
2287
2288 /* reenable tracing if it was previously enabled */
Steven Rostedt90369902008-11-05 16:05:44 -05002289 tracing_start();
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002290 mutex_unlock(&trace_types_lock);
2291
2292 seq_release(inode, file);
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01002293 mutex_destroy(&iter->mutex);
Frederic Weisbeckerb0dfa972009-04-01 22:53:08 +02002294 free_cpumask_var(iter->started);
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01002295 kfree(iter->trace);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002296 kfree(iter);
2297 return 0;
2298}
2299
2300static int tracing_open(struct inode *inode, struct file *file)
2301{
Steven Rostedt85a2f9b2009-02-27 00:12:38 -05002302 struct trace_iterator *iter;
2303 int ret = 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002304
Steven Rostedt4acd4d02009-03-18 10:40:24 -04002305 /* If this file was open for write, then erase contents */
2306 if ((file->f_mode & FMODE_WRITE) &&
Steven Rostedt8650ae32009-07-22 23:29:30 -04002307 (file->f_flags & O_TRUNC)) {
Steven Rostedt4acd4d02009-03-18 10:40:24 -04002308 long cpu = (long) inode->i_private;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002309
Steven Rostedt4acd4d02009-03-18 10:40:24 -04002310 if (cpu == TRACE_PIPE_ALL_CPU)
2311 tracing_reset_online_cpus(&global_trace);
2312 else
2313 tracing_reset(&global_trace, cpu);
2314 }
2315
2316 if (file->f_mode & FMODE_READ) {
2317 iter = __tracing_open(inode, file);
2318 if (IS_ERR(iter))
2319 ret = PTR_ERR(iter);
2320 else if (trace_flags & TRACE_ITER_LATENCY_FMT)
2321 iter->iter_flags |= TRACE_FILE_LAT_FMT;
2322 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002323 return ret;
2324}
2325
Ingo Molnare309b412008-05-12 21:20:51 +02002326static void *
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002327t_next(struct seq_file *m, void *v, loff_t *pos)
2328{
Li Zefanf129e962009-06-24 09:53:44 +08002329 struct tracer *t = v;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002330
2331 (*pos)++;
2332
2333 if (t)
2334 t = t->next;
2335
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002336 return t;
2337}
2338
2339static void *t_start(struct seq_file *m, loff_t *pos)
2340{
Li Zefanf129e962009-06-24 09:53:44 +08002341 struct tracer *t;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002342 loff_t l = 0;
2343
2344 mutex_lock(&trace_types_lock);
Li Zefanf129e962009-06-24 09:53:44 +08002345 for (t = trace_types; t && l < *pos; t = t_next(m, t, &l))
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002346 ;
2347
2348 return t;
2349}
2350
2351static void t_stop(struct seq_file *m, void *p)
2352{
2353 mutex_unlock(&trace_types_lock);
2354}
2355
2356static int t_show(struct seq_file *m, void *v)
2357{
2358 struct tracer *t = v;
2359
2360 if (!t)
2361 return 0;
2362
2363 seq_printf(m, "%s", t->name);
2364 if (t->next)
2365 seq_putc(m, ' ');
2366 else
2367 seq_putc(m, '\n');
2368
2369 return 0;
2370}
2371
James Morris88e9d342009-09-22 16:43:43 -07002372static const struct seq_operations show_traces_seq_ops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002373 .start = t_start,
2374 .next = t_next,
2375 .stop = t_stop,
2376 .show = t_show,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002377};
2378
2379static int show_traces_open(struct inode *inode, struct file *file)
2380{
Steven Rostedt60a11772008-05-12 21:20:44 +02002381 if (tracing_disabled)
2382 return -ENODEV;
2383
Li Zefanf129e962009-06-24 09:53:44 +08002384 return seq_open(file, &show_traces_seq_ops);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002385}
2386
Steven Rostedt4acd4d02009-03-18 10:40:24 -04002387static ssize_t
2388tracing_write_stub(struct file *filp, const char __user *ubuf,
2389 size_t count, loff_t *ppos)
2390{
2391 return count;
2392}
2393
Steven Rostedt5e2336a2009-03-05 21:44:55 -05002394static const struct file_operations tracing_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002395 .open = tracing_open,
2396 .read = seq_read,
Steven Rostedt4acd4d02009-03-18 10:40:24 -04002397 .write = tracing_write_stub,
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002398 .llseek = seq_lseek,
2399 .release = tracing_release,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002400};
2401
Steven Rostedt5e2336a2009-03-05 21:44:55 -05002402static const struct file_operations show_traces_fops = {
Ingo Molnarc7078de2008-05-12 21:20:52 +02002403 .open = show_traces_open,
2404 .read = seq_read,
2405 .release = seq_release,
2406};
2407
Ingo Molnar36dfe922008-05-12 21:20:52 +02002408/*
2409 * Only trace on a CPU if the bitmask is set:
2410 */
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302411static cpumask_var_t tracing_cpumask;
Ingo Molnar36dfe922008-05-12 21:20:52 +02002412
2413/*
2414 * The tracer itself will not take this lock, but still we want
2415 * to provide a consistent cpumask to user-space:
2416 */
2417static DEFINE_MUTEX(tracing_cpumask_update_lock);
2418
2419/*
2420 * Temporary storage for the character representation of the
2421 * CPU bitmask (and one more byte for the newline):
2422 */
2423static char mask_str[NR_CPUS + 1];
2424
Ingo Molnarc7078de2008-05-12 21:20:52 +02002425static ssize_t
2426tracing_cpumask_read(struct file *filp, char __user *ubuf,
2427 size_t count, loff_t *ppos)
2428{
Ingo Molnar36dfe922008-05-12 21:20:52 +02002429 int len;
Ingo Molnarc7078de2008-05-12 21:20:52 +02002430
2431 mutex_lock(&tracing_cpumask_update_lock);
Ingo Molnar36dfe922008-05-12 21:20:52 +02002432
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302433 len = cpumask_scnprintf(mask_str, count, tracing_cpumask);
Ingo Molnar36dfe922008-05-12 21:20:52 +02002434 if (count - len < 2) {
2435 count = -EINVAL;
2436 goto out_err;
2437 }
2438 len += sprintf(mask_str + len, "\n");
2439 count = simple_read_from_buffer(ubuf, count, ppos, mask_str, NR_CPUS+1);
2440
2441out_err:
Ingo Molnarc7078de2008-05-12 21:20:52 +02002442 mutex_unlock(&tracing_cpumask_update_lock);
2443
2444 return count;
2445}
2446
2447static ssize_t
2448tracing_cpumask_write(struct file *filp, const char __user *ubuf,
2449 size_t count, loff_t *ppos)
2450{
Ingo Molnar36dfe922008-05-12 21:20:52 +02002451 int err, cpu;
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302452 cpumask_var_t tracing_cpumask_new;
2453
2454 if (!alloc_cpumask_var(&tracing_cpumask_new, GFP_KERNEL))
2455 return -ENOMEM;
Ingo Molnarc7078de2008-05-12 21:20:52 +02002456
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302457 err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
Ingo Molnar36dfe922008-05-12 21:20:52 +02002458 if (err)
2459 goto err_unlock;
2460
Li Zefan215368e2009-06-15 10:56:42 +08002461 mutex_lock(&tracing_cpumask_update_lock);
2462
Steven Rostedta5e25882008-12-02 15:34:05 -05002463 local_irq_disable();
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01002464 arch_spin_lock(&ftrace_max_lock);
Steven Rostedtab464282008-05-12 21:21:00 +02002465 for_each_tracing_cpu(cpu) {
Ingo Molnar36dfe922008-05-12 21:20:52 +02002466 /*
2467 * Increase/decrease the disabled counter if we are
2468 * about to flip a bit in the cpumask:
2469 */
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302470 if (cpumask_test_cpu(cpu, tracing_cpumask) &&
2471 !cpumask_test_cpu(cpu, tracing_cpumask_new)) {
Ingo Molnar36dfe922008-05-12 21:20:52 +02002472 atomic_inc(&global_trace.data[cpu]->disabled);
2473 }
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302474 if (!cpumask_test_cpu(cpu, tracing_cpumask) &&
2475 cpumask_test_cpu(cpu, tracing_cpumask_new)) {
Ingo Molnar36dfe922008-05-12 21:20:52 +02002476 atomic_dec(&global_trace.data[cpu]->disabled);
2477 }
2478 }
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01002479 arch_spin_unlock(&ftrace_max_lock);
Steven Rostedta5e25882008-12-02 15:34:05 -05002480 local_irq_enable();
Ingo Molnar36dfe922008-05-12 21:20:52 +02002481
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302482 cpumask_copy(tracing_cpumask, tracing_cpumask_new);
Ingo Molnar36dfe922008-05-12 21:20:52 +02002483
Ingo Molnarc7078de2008-05-12 21:20:52 +02002484 mutex_unlock(&tracing_cpumask_update_lock);
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302485 free_cpumask_var(tracing_cpumask_new);
Ingo Molnarc7078de2008-05-12 21:20:52 +02002486
Ingo Molnarc7078de2008-05-12 21:20:52 +02002487 return count;
Ingo Molnar36dfe922008-05-12 21:20:52 +02002488
2489err_unlock:
Li Zefan215368e2009-06-15 10:56:42 +08002490 free_cpumask_var(tracing_cpumask_new);
Ingo Molnar36dfe922008-05-12 21:20:52 +02002491
2492 return err;
Ingo Molnarc7078de2008-05-12 21:20:52 +02002493}
2494
Steven Rostedt5e2336a2009-03-05 21:44:55 -05002495static const struct file_operations tracing_cpumask_fops = {
Ingo Molnarc7078de2008-05-12 21:20:52 +02002496 .open = tracing_open_generic,
2497 .read = tracing_cpumask_read,
2498 .write = tracing_cpumask_write,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002499};
2500
Li Zefanfdb372e2009-12-08 11:15:59 +08002501static int tracing_trace_options_show(struct seq_file *m, void *v)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002502{
Steven Rostedtd8e83d22009-02-26 23:55:58 -05002503 struct tracer_opt *trace_opts;
2504 u32 tracer_flags;
Steven Rostedtd8e83d22009-02-26 23:55:58 -05002505 int i;
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002506
Steven Rostedtd8e83d22009-02-26 23:55:58 -05002507 mutex_lock(&trace_types_lock);
2508 tracer_flags = current_trace->flags->val;
2509 trace_opts = current_trace->flags->opts;
2510
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002511 for (i = 0; trace_options[i]; i++) {
2512 if (trace_flags & (1 << i))
Li Zefanfdb372e2009-12-08 11:15:59 +08002513 seq_printf(m, "%s\n", trace_options[i]);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002514 else
Li Zefanfdb372e2009-12-08 11:15:59 +08002515 seq_printf(m, "no%s\n", trace_options[i]);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002516 }
2517
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002518 for (i = 0; trace_opts[i].name; i++) {
2519 if (tracer_flags & trace_opts[i].bit)
Li Zefanfdb372e2009-12-08 11:15:59 +08002520 seq_printf(m, "%s\n", trace_opts[i].name);
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002521 else
Li Zefanfdb372e2009-12-08 11:15:59 +08002522 seq_printf(m, "no%s\n", trace_opts[i].name);
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002523 }
Steven Rostedtd8e83d22009-02-26 23:55:58 -05002524 mutex_unlock(&trace_types_lock);
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002525
Li Zefanfdb372e2009-12-08 11:15:59 +08002526 return 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002527}
2528
Li Zefan8d18eaa2009-12-08 11:17:06 +08002529static int __set_tracer_option(struct tracer *trace,
2530 struct tracer_flags *tracer_flags,
2531 struct tracer_opt *opts, int neg)
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002532{
Li Zefan8d18eaa2009-12-08 11:17:06 +08002533 int ret;
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002534
Li Zefan8d18eaa2009-12-08 11:17:06 +08002535 ret = trace->set_flag(tracer_flags->val, opts->bit, !neg);
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002536 if (ret)
2537 return ret;
2538
2539 if (neg)
Zhaolei77708412009-08-07 18:53:21 +08002540 tracer_flags->val &= ~opts->bit;
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002541 else
Zhaolei77708412009-08-07 18:53:21 +08002542 tracer_flags->val |= opts->bit;
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002543 return 0;
2544}
2545
Li Zefan8d18eaa2009-12-08 11:17:06 +08002546/* Try to assign a tracer specific option */
2547static int set_tracer_option(struct tracer *trace, char *cmp, int neg)
2548{
2549 struct tracer_flags *tracer_flags = trace->flags;
2550 struct tracer_opt *opts = NULL;
2551 int i;
2552
2553 for (i = 0; tracer_flags->opts[i].name; i++) {
2554 opts = &tracer_flags->opts[i];
2555
2556 if (strcmp(cmp, opts->name) == 0)
2557 return __set_tracer_option(trace, trace->flags,
2558 opts, neg);
2559 }
2560
2561 return -EINVAL;
2562}
2563
Steven Rostedtaf4617b2009-03-17 18:09:55 -04002564static void set_tracer_flags(unsigned int mask, int enabled)
2565{
2566 /* do nothing if flag is already set */
2567 if (!!(trace_flags & mask) == !!enabled)
2568 return;
2569
2570 if (enabled)
2571 trace_flags |= mask;
2572 else
2573 trace_flags &= ~mask;
Li Zefane870e9a2010-07-02 11:07:32 +08002574
2575 if (mask == TRACE_ITER_RECORD_CMD)
2576 trace_event_enable_cmd_record(enabled);
Steven Rostedtaf4617b2009-03-17 18:09:55 -04002577}
2578
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002579static ssize_t
Steven Rostedtee6bce52008-11-12 17:52:37 -05002580tracing_trace_options_write(struct file *filp, const char __user *ubuf,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002581 size_t cnt, loff_t *ppos)
2582{
2583 char buf[64];
Li Zefan8d18eaa2009-12-08 11:17:06 +08002584 char *cmp;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002585 int neg = 0;
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002586 int ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002587 int i;
2588
Steven Rostedtcffae432008-05-12 21:21:00 +02002589 if (cnt >= sizeof(buf))
2590 return -EINVAL;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002591
2592 if (copy_from_user(&buf, ubuf, cnt))
2593 return -EFAULT;
2594
2595 buf[cnt] = 0;
Li Zefan8d18eaa2009-12-08 11:17:06 +08002596 cmp = strstrip(buf);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002597
Li Zefan8d18eaa2009-12-08 11:17:06 +08002598 if (strncmp(cmp, "no", 2) == 0) {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002599 neg = 1;
2600 cmp += 2;
2601 }
2602
2603 for (i = 0; trace_options[i]; i++) {
Li Zefan8d18eaa2009-12-08 11:17:06 +08002604 if (strcmp(cmp, trace_options[i]) == 0) {
Steven Rostedtaf4617b2009-03-17 18:09:55 -04002605 set_tracer_flags(1 << i, !neg);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002606 break;
2607 }
2608 }
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002609
2610 /* If no option could be set, test the specific tracer options */
2611 if (!trace_options[i]) {
Steven Rostedtd8e83d22009-02-26 23:55:58 -05002612 mutex_lock(&trace_types_lock);
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002613 ret = set_tracer_option(current_trace, cmp, neg);
Steven Rostedtd8e83d22009-02-26 23:55:58 -05002614 mutex_unlock(&trace_types_lock);
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002615 if (ret)
2616 return ret;
2617 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002618
Jiri Olsacf8517c2009-10-23 19:36:16 -04002619 *ppos += cnt;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002620
2621 return cnt;
2622}
2623
Li Zefanfdb372e2009-12-08 11:15:59 +08002624static int tracing_trace_options_open(struct inode *inode, struct file *file)
2625{
2626 if (tracing_disabled)
2627 return -ENODEV;
2628 return single_open(file, tracing_trace_options_show, NULL);
2629}
2630
Steven Rostedt5e2336a2009-03-05 21:44:55 -05002631static const struct file_operations tracing_iter_fops = {
Li Zefanfdb372e2009-12-08 11:15:59 +08002632 .open = tracing_trace_options_open,
2633 .read = seq_read,
2634 .llseek = seq_lseek,
2635 .release = single_release,
Steven Rostedtee6bce52008-11-12 17:52:37 -05002636 .write = tracing_trace_options_write,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002637};
2638
Ingo Molnar7bd2f242008-05-12 21:20:45 +02002639static const char readme_msg[] =
2640 "tracing mini-HOWTO:\n\n"
GeunSik Lim156f5a72009-06-02 15:01:37 +09002641 "# mount -t debugfs nodev /sys/kernel/debug\n\n"
2642 "# cat /sys/kernel/debug/tracing/available_tracers\n"
Nikanth Karthikesanbc2b6872009-03-23 11:58:31 +05302643 "wakeup preemptirqsoff preemptoff irqsoff function sched_switch nop\n\n"
GeunSik Lim156f5a72009-06-02 15:01:37 +09002644 "# cat /sys/kernel/debug/tracing/current_tracer\n"
Nikanth Karthikesanbc2b6872009-03-23 11:58:31 +05302645 "nop\n"
GeunSik Lim156f5a72009-06-02 15:01:37 +09002646 "# echo sched_switch > /sys/kernel/debug/tracing/current_tracer\n"
2647 "# cat /sys/kernel/debug/tracing/current_tracer\n"
Ingo Molnar7bd2f242008-05-12 21:20:45 +02002648 "sched_switch\n"
GeunSik Lim156f5a72009-06-02 15:01:37 +09002649 "# cat /sys/kernel/debug/tracing/trace_options\n"
Ingo Molnar7bd2f242008-05-12 21:20:45 +02002650 "noprint-parent nosym-offset nosym-addr noverbose\n"
GeunSik Lim156f5a72009-06-02 15:01:37 +09002651 "# echo print-parent > /sys/kernel/debug/tracing/trace_options\n"
2652 "# echo 1 > /sys/kernel/debug/tracing/tracing_enabled\n"
2653 "# cat /sys/kernel/debug/tracing/trace > /tmp/trace.txt\n"
2654 "# echo 0 > /sys/kernel/debug/tracing/tracing_enabled\n"
Ingo Molnar7bd2f242008-05-12 21:20:45 +02002655;
2656
2657static ssize_t
2658tracing_readme_read(struct file *filp, char __user *ubuf,
2659 size_t cnt, loff_t *ppos)
2660{
2661 return simple_read_from_buffer(ubuf, cnt, ppos,
2662 readme_msg, strlen(readme_msg));
2663}
2664
Steven Rostedt5e2336a2009-03-05 21:44:55 -05002665static const struct file_operations tracing_readme_fops = {
Ingo Molnarc7078de2008-05-12 21:20:52 +02002666 .open = tracing_open_generic,
2667 .read = tracing_readme_read,
Ingo Molnar7bd2f242008-05-12 21:20:45 +02002668};
2669
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002670static ssize_t
Avadh Patel69abe6a2009-04-10 16:04:48 -04002671tracing_saved_cmdlines_read(struct file *file, char __user *ubuf,
2672 size_t cnt, loff_t *ppos)
2673{
2674 char *buf_comm;
2675 char *file_buf;
2676 char *buf;
2677 int len = 0;
2678 int pid;
2679 int i;
2680
2681 file_buf = kmalloc(SAVED_CMDLINES*(16+TASK_COMM_LEN), GFP_KERNEL);
2682 if (!file_buf)
2683 return -ENOMEM;
2684
2685 buf_comm = kmalloc(TASK_COMM_LEN, GFP_KERNEL);
2686 if (!buf_comm) {
2687 kfree(file_buf);
2688 return -ENOMEM;
2689 }
2690
2691 buf = file_buf;
2692
2693 for (i = 0; i < SAVED_CMDLINES; i++) {
2694 int r;
2695
2696 pid = map_cmdline_to_pid[i];
2697 if (pid == -1 || pid == NO_CMDLINE_MAP)
2698 continue;
2699
2700 trace_find_cmdline(pid, buf_comm);
2701 r = sprintf(buf, "%d %s\n", pid, buf_comm);
2702 buf += r;
2703 len += r;
2704 }
2705
2706 len = simple_read_from_buffer(ubuf, cnt, ppos,
2707 file_buf, len);
2708
2709 kfree(file_buf);
2710 kfree(buf_comm);
2711
2712 return len;
2713}
2714
2715static const struct file_operations tracing_saved_cmdlines_fops = {
2716 .open = tracing_open_generic,
2717 .read = tracing_saved_cmdlines_read,
2718};
2719
2720static ssize_t
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002721tracing_ctrl_read(struct file *filp, char __user *ubuf,
2722 size_t cnt, loff_t *ppos)
2723{
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002724 char buf[64];
2725 int r;
2726
Steven Rostedt90369902008-11-05 16:05:44 -05002727 r = sprintf(buf, "%u\n", tracer_enabled);
Ingo Molnar4e3c3332008-05-12 21:20:45 +02002728 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002729}
2730
2731static ssize_t
2732tracing_ctrl_write(struct file *filp, const char __user *ubuf,
2733 size_t cnt, loff_t *ppos)
2734{
2735 struct trace_array *tr = filp->private_data;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002736 char buf[64];
Hannes Eder5e398412009-02-10 19:44:34 +01002737 unsigned long val;
Steven Rostedtc6caeeb2008-05-12 21:21:00 +02002738 int ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002739
Steven Rostedtcffae432008-05-12 21:21:00 +02002740 if (cnt >= sizeof(buf))
2741 return -EINVAL;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002742
2743 if (copy_from_user(&buf, ubuf, cnt))
2744 return -EFAULT;
2745
2746 buf[cnt] = 0;
2747
Steven Rostedtc6caeeb2008-05-12 21:21:00 +02002748 ret = strict_strtoul(buf, 10, &val);
2749 if (ret < 0)
2750 return ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002751
2752 val = !!val;
2753
2754 mutex_lock(&trace_types_lock);
Steven Rostedt90369902008-11-05 16:05:44 -05002755 if (tracer_enabled ^ val) {
2756 if (val) {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002757 tracer_enabled = 1;
Steven Rostedt90369902008-11-05 16:05:44 -05002758 if (current_trace->start)
2759 current_trace->start(tr);
2760 tracing_start();
2761 } else {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002762 tracer_enabled = 0;
Steven Rostedt90369902008-11-05 16:05:44 -05002763 tracing_stop();
2764 if (current_trace->stop)
2765 current_trace->stop(tr);
2766 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002767 }
2768 mutex_unlock(&trace_types_lock);
2769
Jiri Olsacf8517c2009-10-23 19:36:16 -04002770 *ppos += cnt;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002771
2772 return cnt;
2773}
2774
2775static ssize_t
2776tracing_set_trace_read(struct file *filp, char __user *ubuf,
2777 size_t cnt, loff_t *ppos)
2778{
Li Zefanee6c2c12009-09-18 14:06:47 +08002779 char buf[MAX_TRACER_SIZE+2];
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002780 int r;
2781
2782 mutex_lock(&trace_types_lock);
2783 if (current_trace)
2784 r = sprintf(buf, "%s\n", current_trace->name);
2785 else
2786 r = sprintf(buf, "\n");
2787 mutex_unlock(&trace_types_lock);
2788
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002789 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002790}
2791
Arnaldo Carvalho de Melob6f11df2009-02-05 18:02:00 -02002792int tracer_init(struct tracer *t, struct trace_array *tr)
2793{
2794 tracing_reset_online_cpus(tr);
2795 return t->init(tr);
2796}
2797
Steven Rostedt73c51622009-03-11 13:42:01 -04002798static int tracing_resize_ring_buffer(unsigned long size)
2799{
2800 int ret;
2801
2802 /*
2803 * If kernel or user changes the size of the ring buffer
Steven Rostedta123c522009-03-12 11:21:08 -04002804 * we use the size that was given, and we can forget about
2805 * expanding it later.
Steven Rostedt73c51622009-03-11 13:42:01 -04002806 */
2807 ring_buffer_expanded = 1;
2808
2809 ret = ring_buffer_resize(global_trace.buffer, size);
2810 if (ret < 0)
2811 return ret;
2812
KOSAKI Motohiroef710e12010-07-01 14:34:35 +09002813 if (!current_trace->use_max_tr)
2814 goto out;
2815
Steven Rostedt73c51622009-03-11 13:42:01 -04002816 ret = ring_buffer_resize(max_tr.buffer, size);
2817 if (ret < 0) {
2818 int r;
2819
2820 r = ring_buffer_resize(global_trace.buffer,
2821 global_trace.entries);
2822 if (r < 0) {
Steven Rostedta123c522009-03-12 11:21:08 -04002823 /*
2824 * AARGH! We are left with different
2825 * size max buffer!!!!
2826 * The max buffer is our "snapshot" buffer.
2827 * When a tracer needs a snapshot (one of the
2828 * latency tracers), it swaps the max buffer
2829 * with the saved snap shot. We succeeded to
2830 * update the size of the main buffer, but failed to
2831 * update the size of the max buffer. But when we tried
2832 * to reset the main buffer to the original size, we
2833 * failed there too. This is very unlikely to
2834 * happen, but if it does, warn and kill all
2835 * tracing.
2836 */
Steven Rostedt73c51622009-03-11 13:42:01 -04002837 WARN_ON(1);
2838 tracing_disabled = 1;
2839 }
2840 return ret;
2841 }
2842
KOSAKI Motohiroef710e12010-07-01 14:34:35 +09002843 max_tr.entries = size;
2844 out:
Steven Rostedt73c51622009-03-11 13:42:01 -04002845 global_trace.entries = size;
2846
2847 return ret;
2848}
2849
KOSAKI Motohiroef710e12010-07-01 14:34:35 +09002850
Steven Rostedt1852fcc2009-03-11 14:33:00 -04002851/**
2852 * tracing_update_buffers - used by tracing facility to expand ring buffers
2853 *
2854 * To save on memory when the tracing is never used on a system with it
2855 * configured in. The ring buffers are set to a minimum size. But once
2856 * a user starts to use the tracing facility, then they need to grow
2857 * to their default size.
2858 *
2859 * This function is to be called when a tracer is about to be used.
2860 */
2861int tracing_update_buffers(void)
2862{
2863 int ret = 0;
2864
Steven Rostedt1027fcb2009-03-12 11:33:20 -04002865 mutex_lock(&trace_types_lock);
Steven Rostedt1852fcc2009-03-11 14:33:00 -04002866 if (!ring_buffer_expanded)
2867 ret = tracing_resize_ring_buffer(trace_buf_size);
Steven Rostedt1027fcb2009-03-12 11:33:20 -04002868 mutex_unlock(&trace_types_lock);
Steven Rostedt1852fcc2009-03-11 14:33:00 -04002869
2870 return ret;
2871}
2872
Steven Rostedt577b7852009-02-26 23:43:05 -05002873struct trace_option_dentry;
2874
2875static struct trace_option_dentry *
2876create_trace_option_files(struct tracer *tracer);
2877
2878static void
2879destroy_trace_option_files(struct trace_option_dentry *topts);
2880
Steven Rostedtb2821ae2009-02-02 21:38:32 -05002881static int tracing_set_tracer(const char *buf)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002882{
Steven Rostedt577b7852009-02-26 23:43:05 -05002883 static struct trace_option_dentry *topts;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002884 struct trace_array *tr = &global_trace;
2885 struct tracer *t;
Peter Zijlstrad9e54072008-11-01 19:57:37 +01002886 int ret = 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002887
Steven Rostedt1027fcb2009-03-12 11:33:20 -04002888 mutex_lock(&trace_types_lock);
2889
Steven Rostedt73c51622009-03-11 13:42:01 -04002890 if (!ring_buffer_expanded) {
2891 ret = tracing_resize_ring_buffer(trace_buf_size);
2892 if (ret < 0)
Frederic Weisbecker59f586d2009-03-15 22:10:39 +01002893 goto out;
Steven Rostedt73c51622009-03-11 13:42:01 -04002894 ret = 0;
2895 }
2896
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002897 for (t = trace_types; t; t = t->next) {
2898 if (strcmp(t->name, buf) == 0)
2899 break;
2900 }
Frederic Weisbeckerc2931e02008-10-04 22:04:44 +02002901 if (!t) {
2902 ret = -EINVAL;
2903 goto out;
2904 }
2905 if (t == current_trace)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002906 goto out;
2907
Steven Rostedt9f029e82008-11-12 15:24:24 -05002908 trace_branch_disable();
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002909 if (current_trace && current_trace->reset)
2910 current_trace->reset(tr);
KOSAKI Motohiroef710e12010-07-01 14:34:35 +09002911 if (current_trace && current_trace->use_max_tr) {
2912 /*
2913 * We don't free the ring buffer. instead, resize it because
2914 * The max_tr ring buffer has some state (e.g. ring->clock) and
2915 * we want preserve it.
2916 */
2917 ring_buffer_resize(max_tr.buffer, 1);
2918 max_tr.entries = 1;
2919 }
Steven Rostedt577b7852009-02-26 23:43:05 -05002920 destroy_trace_option_files(topts);
2921
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002922 current_trace = t;
Steven Rostedt577b7852009-02-26 23:43:05 -05002923
2924 topts = create_trace_option_files(current_trace);
KOSAKI Motohiroef710e12010-07-01 14:34:35 +09002925 if (current_trace->use_max_tr) {
2926 ret = ring_buffer_resize(max_tr.buffer, global_trace.entries);
2927 if (ret < 0)
2928 goto out;
2929 max_tr.entries = global_trace.entries;
2930 }
Steven Rostedt577b7852009-02-26 23:43:05 -05002931
Frederic Weisbecker1c800252008-11-16 05:57:26 +01002932 if (t->init) {
Arnaldo Carvalho de Melob6f11df2009-02-05 18:02:00 -02002933 ret = tracer_init(t, tr);
Frederic Weisbecker1c800252008-11-16 05:57:26 +01002934 if (ret)
2935 goto out;
2936 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002937
Steven Rostedt9f029e82008-11-12 15:24:24 -05002938 trace_branch_enable(tr);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002939 out:
2940 mutex_unlock(&trace_types_lock);
2941
Peter Zijlstrad9e54072008-11-01 19:57:37 +01002942 return ret;
2943}
2944
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002945static ssize_t
2946tracing_set_trace_write(struct file *filp, const char __user *ubuf,
2947 size_t cnt, loff_t *ppos)
2948{
Li Zefanee6c2c12009-09-18 14:06:47 +08002949 char buf[MAX_TRACER_SIZE+1];
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002950 int i;
2951 size_t ret;
Frederic Weisbeckere6e7a652008-11-16 05:53:19 +01002952 int err;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002953
Steven Rostedt60063a62008-10-28 10:44:24 -04002954 ret = cnt;
2955
Li Zefanee6c2c12009-09-18 14:06:47 +08002956 if (cnt > MAX_TRACER_SIZE)
2957 cnt = MAX_TRACER_SIZE;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002958
2959 if (copy_from_user(&buf, ubuf, cnt))
2960 return -EFAULT;
2961
2962 buf[cnt] = 0;
2963
2964 /* strip ending whitespace. */
2965 for (i = cnt - 1; i > 0 && isspace(buf[i]); i--)
2966 buf[i] = 0;
2967
Frederic Weisbeckere6e7a652008-11-16 05:53:19 +01002968 err = tracing_set_tracer(buf);
2969 if (err)
2970 return err;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002971
Jiri Olsacf8517c2009-10-23 19:36:16 -04002972 *ppos += ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002973
Frederic Weisbeckerc2931e02008-10-04 22:04:44 +02002974 return ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002975}
2976
2977static ssize_t
2978tracing_max_lat_read(struct file *filp, char __user *ubuf,
2979 size_t cnt, loff_t *ppos)
2980{
2981 unsigned long *ptr = filp->private_data;
2982 char buf[64];
2983 int r;
2984
Steven Rostedtcffae432008-05-12 21:21:00 +02002985 r = snprintf(buf, sizeof(buf), "%ld\n",
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002986 *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
Steven Rostedtcffae432008-05-12 21:21:00 +02002987 if (r > sizeof(buf))
2988 r = sizeof(buf);
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002989 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002990}
2991
2992static ssize_t
2993tracing_max_lat_write(struct file *filp, const char __user *ubuf,
2994 size_t cnt, loff_t *ppos)
2995{
Hannes Eder5e398412009-02-10 19:44:34 +01002996 unsigned long *ptr = filp->private_data;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002997 char buf[64];
Hannes Eder5e398412009-02-10 19:44:34 +01002998 unsigned long val;
Steven Rostedtc6caeeb2008-05-12 21:21:00 +02002999 int ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003000
Steven Rostedtcffae432008-05-12 21:21:00 +02003001 if (cnt >= sizeof(buf))
3002 return -EINVAL;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003003
3004 if (copy_from_user(&buf, ubuf, cnt))
3005 return -EFAULT;
3006
3007 buf[cnt] = 0;
3008
Steven Rostedtc6caeeb2008-05-12 21:21:00 +02003009 ret = strict_strtoul(buf, 10, &val);
3010 if (ret < 0)
3011 return ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003012
3013 *ptr = val * 1000;
3014
3015 return cnt;
3016}
3017
Steven Rostedtb3806b42008-05-12 21:20:46 +02003018static int tracing_open_pipe(struct inode *inode, struct file *filp)
3019{
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01003020 long cpu_file = (long) inode->i_private;
Steven Rostedtb3806b42008-05-12 21:20:46 +02003021 struct trace_iterator *iter;
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01003022 int ret = 0;
Steven Rostedtb3806b42008-05-12 21:20:46 +02003023
3024 if (tracing_disabled)
3025 return -ENODEV;
3026
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01003027 mutex_lock(&trace_types_lock);
3028
Steven Rostedtb3806b42008-05-12 21:20:46 +02003029 /* create a buffer to store the information to pass to userspace */
3030 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01003031 if (!iter) {
3032 ret = -ENOMEM;
3033 goto out;
3034 }
Steven Rostedtb3806b42008-05-12 21:20:46 +02003035
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003036 /*
3037 * We make a copy of the current tracer to avoid concurrent
3038 * changes on it while we are reading.
3039 */
3040 iter->trace = kmalloc(sizeof(*iter->trace), GFP_KERNEL);
3041 if (!iter->trace) {
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01003042 ret = -ENOMEM;
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003043 goto fail;
3044 }
3045 if (current_trace)
3046 *iter->trace = *current_trace;
3047
3048 if (!alloc_cpumask_var(&iter->started, GFP_KERNEL)) {
3049 ret = -ENOMEM;
3050 goto fail;
Rusty Russell44623442009-01-01 10:12:23 +10303051 }
3052
Steven Rostedta3097202008-11-07 22:36:02 -05003053 /* trace pipe does not show start of buffer */
Rusty Russell44623442009-01-01 10:12:23 +10303054 cpumask_setall(iter->started);
Steven Rostedta3097202008-11-07 22:36:02 -05003055
Steven Rostedt112f38a72009-06-01 15:16:05 -04003056 if (trace_flags & TRACE_ITER_LATENCY_FMT)
3057 iter->iter_flags |= TRACE_FILE_LAT_FMT;
3058
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01003059 iter->cpu_file = cpu_file;
Steven Rostedtb3806b42008-05-12 21:20:46 +02003060 iter->tr = &global_trace;
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003061 mutex_init(&iter->mutex);
Steven Rostedtb3806b42008-05-12 21:20:46 +02003062 filp->private_data = iter;
3063
Steven Rostedt107bad82008-05-12 21:21:01 +02003064 if (iter->trace->pipe_open)
3065 iter->trace->pipe_open(iter);
Steven Rostedt107bad82008-05-12 21:21:01 +02003066
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01003067out:
3068 mutex_unlock(&trace_types_lock);
3069 return ret;
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003070
3071fail:
3072 kfree(iter->trace);
3073 kfree(iter);
3074 mutex_unlock(&trace_types_lock);
3075 return ret;
Steven Rostedtb3806b42008-05-12 21:20:46 +02003076}
3077
3078static int tracing_release_pipe(struct inode *inode, struct file *file)
3079{
3080 struct trace_iterator *iter = file->private_data;
3081
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01003082 mutex_lock(&trace_types_lock);
3083
Steven Rostedt29bf4a52009-12-09 12:37:43 -05003084 if (iter->trace->pipe_close)
Steven Rostedtc521efd2009-12-07 09:06:24 -05003085 iter->trace->pipe_close(iter);
3086
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01003087 mutex_unlock(&trace_types_lock);
3088
Rusty Russell44623442009-01-01 10:12:23 +10303089 free_cpumask_var(iter->started);
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003090 mutex_destroy(&iter->mutex);
3091 kfree(iter->trace);
Steven Rostedtb3806b42008-05-12 21:20:46 +02003092 kfree(iter);
Steven Rostedtb3806b42008-05-12 21:20:46 +02003093
3094 return 0;
3095}
3096
Soeren Sandmann Pedersen2a2cc8f2008-05-12 21:20:49 +02003097static unsigned int
3098tracing_poll_pipe(struct file *filp, poll_table *poll_table)
3099{
3100 struct trace_iterator *iter = filp->private_data;
3101
3102 if (trace_flags & TRACE_ITER_BLOCK) {
3103 /*
3104 * Always select as readable when in blocking mode
3105 */
3106 return POLLIN | POLLRDNORM;
Ingo Molnarafc2abc2008-05-12 21:21:00 +02003107 } else {
Soeren Sandmann Pedersen2a2cc8f2008-05-12 21:20:49 +02003108 if (!trace_empty(iter))
3109 return POLLIN | POLLRDNORM;
3110 poll_wait(filp, &trace_wait, poll_table);
3111 if (!trace_empty(iter))
3112 return POLLIN | POLLRDNORM;
3113
3114 return 0;
3115 }
3116}
3117
Frederic Weisbecker6eaaa5d2009-02-11 02:25:00 +01003118
3119void default_wait_pipe(struct trace_iterator *iter)
3120{
3121 DEFINE_WAIT(wait);
3122
3123 prepare_to_wait(&trace_wait, &wait, TASK_INTERRUPTIBLE);
3124
3125 if (trace_empty(iter))
3126 schedule();
3127
3128 finish_wait(&trace_wait, &wait);
3129}
3130
3131/*
3132 * This is a make-shift waitqueue.
3133 * A tracer might use this callback on some rare cases:
3134 *
3135 * 1) the current tracer might hold the runqueue lock when it wakes up
3136 * a reader, hence a deadlock (sched, function, and function graph tracers)
3137 * 2) the function tracers, trace all functions, we don't want
3138 * the overhead of calling wake_up and friends
3139 * (and tracing them too)
3140 *
3141 * Anyway, this is really very primitive wakeup.
3142 */
3143void poll_wait_pipe(struct trace_iterator *iter)
3144{
3145 set_current_state(TASK_INTERRUPTIBLE);
3146 /* sleep for 100 msecs, and try again. */
3147 schedule_timeout(HZ / 10);
3148}
3149
Eduard - Gabriel Munteanuff987812009-02-09 08:15:55 +02003150/* Must be called with trace_types_lock mutex held. */
3151static int tracing_wait_pipe(struct file *filp)
3152{
3153 struct trace_iterator *iter = filp->private_data;
3154
3155 while (trace_empty(iter)) {
3156
3157 if ((filp->f_flags & O_NONBLOCK)) {
3158 return -EAGAIN;
3159 }
3160
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003161 mutex_unlock(&iter->mutex);
Eduard - Gabriel Munteanuff987812009-02-09 08:15:55 +02003162
Frederic Weisbecker6eaaa5d2009-02-11 02:25:00 +01003163 iter->trace->wait_pipe(iter);
Eduard - Gabriel Munteanuff987812009-02-09 08:15:55 +02003164
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003165 mutex_lock(&iter->mutex);
Eduard - Gabriel Munteanuff987812009-02-09 08:15:55 +02003166
Frederic Weisbecker6eaaa5d2009-02-11 02:25:00 +01003167 if (signal_pending(current))
Eduard - Gabriel Munteanuff987812009-02-09 08:15:55 +02003168 return -EINTR;
Eduard - Gabriel Munteanuff987812009-02-09 08:15:55 +02003169
Eduard - Gabriel Munteanuff987812009-02-09 08:15:55 +02003170 /*
3171 * We block until we read something and tracing is disabled.
3172 * We still block if tracing is disabled, but we have never
3173 * read anything. This allows a user to cat this file, and
3174 * then enable tracing. But after we have read something,
3175 * we give an EOF when tracing is again disabled.
3176 *
3177 * iter->pos will be 0 if we haven't read anything.
3178 */
3179 if (!tracer_enabled && iter->pos)
3180 break;
Eduard - Gabriel Munteanuff987812009-02-09 08:15:55 +02003181 }
3182
3183 return 1;
3184}
3185
Steven Rostedtb3806b42008-05-12 21:20:46 +02003186/*
3187 * Consumer reader.
3188 */
3189static ssize_t
3190tracing_read_pipe(struct file *filp, char __user *ubuf,
3191 size_t cnt, loff_t *ppos)
3192{
3193 struct trace_iterator *iter = filp->private_data;
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003194 static struct tracer *old_tracer;
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02003195 ssize_t sret;
Steven Rostedtb3806b42008-05-12 21:20:46 +02003196
3197 /* return any leftover data */
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02003198 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
3199 if (sret != -EBUSY)
3200 return sret;
Steven Rostedtb3806b42008-05-12 21:20:46 +02003201
Steven Rostedtf9520752009-03-02 14:04:40 -05003202 trace_seq_init(&iter->seq);
Steven Rostedtb3806b42008-05-12 21:20:46 +02003203
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003204 /* copy the tracer to avoid using a global lock all around */
Steven Rostedt107bad82008-05-12 21:21:01 +02003205 mutex_lock(&trace_types_lock);
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003206 if (unlikely(old_tracer != current_trace && current_trace)) {
3207 old_tracer = current_trace;
3208 *iter->trace = *current_trace;
3209 }
3210 mutex_unlock(&trace_types_lock);
3211
3212 /*
3213 * Avoid more than one consumer on a single file descriptor
3214 * This is just a matter of traces coherency, the ring buffer itself
3215 * is protected.
3216 */
3217 mutex_lock(&iter->mutex);
Steven Rostedt107bad82008-05-12 21:21:01 +02003218 if (iter->trace->read) {
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02003219 sret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
3220 if (sret)
Steven Rostedt107bad82008-05-12 21:21:01 +02003221 goto out;
Steven Rostedt107bad82008-05-12 21:21:01 +02003222 }
3223
Pekka Paalanen9ff4b972008-09-29 20:23:48 +02003224waitagain:
Eduard - Gabriel Munteanuff987812009-02-09 08:15:55 +02003225 sret = tracing_wait_pipe(filp);
3226 if (sret <= 0)
3227 goto out;
Steven Rostedtb3806b42008-05-12 21:20:46 +02003228
3229 /* stop when tracing is finished */
Eduard - Gabriel Munteanuff987812009-02-09 08:15:55 +02003230 if (trace_empty(iter)) {
3231 sret = 0;
Steven Rostedt107bad82008-05-12 21:21:01 +02003232 goto out;
Eduard - Gabriel Munteanuff987812009-02-09 08:15:55 +02003233 }
Steven Rostedtb3806b42008-05-12 21:20:46 +02003234
3235 if (cnt >= PAGE_SIZE)
3236 cnt = PAGE_SIZE - 1;
3237
Steven Rostedt53d0aa72008-05-12 21:21:01 +02003238 /* reset all but tr, trace, and overruns */
Steven Rostedt53d0aa72008-05-12 21:21:01 +02003239 memset(&iter->seq, 0,
3240 sizeof(struct trace_iterator) -
3241 offsetof(struct trace_iterator, seq));
Steven Rostedt4823ed72008-05-12 21:21:01 +02003242 iter->pos = -1;
Steven Rostedtb3806b42008-05-12 21:20:46 +02003243
Lai Jiangshan4f535962009-05-18 19:35:34 +08003244 trace_event_read_lock();
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08003245 trace_access_lock(iter->cpu_file);
Steven Rostedt088b1e422008-05-12 21:20:48 +02003246 while (find_next_entry_inc(iter) != NULL) {
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02003247 enum print_line_t ret;
Steven Rostedt088b1e422008-05-12 21:20:48 +02003248 int len = iter->seq.len;
3249
Ingo Molnarf9896bf2008-05-12 21:20:47 +02003250 ret = print_trace_line(iter);
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02003251 if (ret == TRACE_TYPE_PARTIAL_LINE) {
Steven Rostedt088b1e422008-05-12 21:20:48 +02003252 /* don't print partial lines */
3253 iter->seq.len = len;
Steven Rostedtb3806b42008-05-12 21:20:46 +02003254 break;
Steven Rostedt088b1e422008-05-12 21:20:48 +02003255 }
Frederic Weisbeckerb91facc2009-02-06 18:30:44 +01003256 if (ret != TRACE_TYPE_NO_CONSUME)
3257 trace_consume(iter);
Steven Rostedtb3806b42008-05-12 21:20:46 +02003258
3259 if (iter->seq.len >= cnt)
3260 break;
Steven Rostedtb3806b42008-05-12 21:20:46 +02003261 }
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08003262 trace_access_unlock(iter->cpu_file);
Lai Jiangshan4f535962009-05-18 19:35:34 +08003263 trace_event_read_unlock();
Steven Rostedtb3806b42008-05-12 21:20:46 +02003264
Steven Rostedtb3806b42008-05-12 21:20:46 +02003265 /* Now copy what we have to the user */
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02003266 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
3267 if (iter->seq.readpos >= iter->seq.len)
Steven Rostedtf9520752009-03-02 14:04:40 -05003268 trace_seq_init(&iter->seq);
Pekka Paalanen9ff4b972008-09-29 20:23:48 +02003269
3270 /*
3271 * If there was nothing to send to user, inspite of consuming trace
3272 * entries, go back to wait for more entries.
3273 */
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02003274 if (sret == -EBUSY)
Pekka Paalanen9ff4b972008-09-29 20:23:48 +02003275 goto waitagain;
Steven Rostedtb3806b42008-05-12 21:20:46 +02003276
Steven Rostedt107bad82008-05-12 21:21:01 +02003277out:
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003278 mutex_unlock(&iter->mutex);
Steven Rostedt107bad82008-05-12 21:21:01 +02003279
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02003280 return sret;
Steven Rostedtb3806b42008-05-12 21:20:46 +02003281}
3282
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003283static void tracing_pipe_buf_release(struct pipe_inode_info *pipe,
3284 struct pipe_buffer *buf)
3285{
3286 __free_page(buf->page);
3287}
3288
3289static void tracing_spd_release_pipe(struct splice_pipe_desc *spd,
3290 unsigned int idx)
3291{
3292 __free_page(spd->pages[idx]);
3293}
3294
Alexey Dobriyan28dfef82009-12-15 16:46:48 -08003295static const struct pipe_buf_operations tracing_pipe_buf_ops = {
Steven Rostedt34cd4992009-02-09 12:06:29 -05003296 .can_merge = 0,
3297 .map = generic_pipe_buf_map,
3298 .unmap = generic_pipe_buf_unmap,
3299 .confirm = generic_pipe_buf_confirm,
3300 .release = tracing_pipe_buf_release,
3301 .steal = generic_pipe_buf_steal,
3302 .get = generic_pipe_buf_get,
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003303};
3304
Steven Rostedt34cd4992009-02-09 12:06:29 -05003305static size_t
Frederic Weisbeckerfa7c7f62009-02-11 02:51:30 +01003306tracing_fill_pipe_page(size_t rem, struct trace_iterator *iter)
Steven Rostedt34cd4992009-02-09 12:06:29 -05003307{
3308 size_t count;
3309 int ret;
3310
3311 /* Seq buffer is page-sized, exactly what we need. */
3312 for (;;) {
3313 count = iter->seq.len;
3314 ret = print_trace_line(iter);
3315 count = iter->seq.len - count;
3316 if (rem < count) {
3317 rem = 0;
3318 iter->seq.len -= count;
3319 break;
3320 }
3321 if (ret == TRACE_TYPE_PARTIAL_LINE) {
3322 iter->seq.len -= count;
3323 break;
3324 }
3325
Lai Jiangshan74e7ff82009-07-28 20:17:22 +08003326 if (ret != TRACE_TYPE_NO_CONSUME)
3327 trace_consume(iter);
Steven Rostedt34cd4992009-02-09 12:06:29 -05003328 rem -= count;
3329 if (!find_next_entry_inc(iter)) {
3330 rem = 0;
3331 iter->ent = NULL;
3332 break;
3333 }
3334 }
3335
3336 return rem;
3337}
3338
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003339static ssize_t tracing_splice_read_pipe(struct file *filp,
3340 loff_t *ppos,
3341 struct pipe_inode_info *pipe,
3342 size_t len,
3343 unsigned int flags)
3344{
Jens Axboe35f3d142010-05-20 10:43:18 +02003345 struct page *pages_def[PIPE_DEF_BUFFERS];
3346 struct partial_page partial_def[PIPE_DEF_BUFFERS];
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003347 struct trace_iterator *iter = filp->private_data;
3348 struct splice_pipe_desc spd = {
Jens Axboe35f3d142010-05-20 10:43:18 +02003349 .pages = pages_def,
3350 .partial = partial_def,
Steven Rostedt34cd4992009-02-09 12:06:29 -05003351 .nr_pages = 0, /* This gets updated below. */
3352 .flags = flags,
3353 .ops = &tracing_pipe_buf_ops,
3354 .spd_release = tracing_spd_release_pipe,
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003355 };
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003356 static struct tracer *old_tracer;
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003357 ssize_t ret;
Steven Rostedt34cd4992009-02-09 12:06:29 -05003358 size_t rem;
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003359 unsigned int i;
3360
Jens Axboe35f3d142010-05-20 10:43:18 +02003361 if (splice_grow_spd(pipe, &spd))
3362 return -ENOMEM;
3363
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003364 /* copy the tracer to avoid using a global lock all around */
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003365 mutex_lock(&trace_types_lock);
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003366 if (unlikely(old_tracer != current_trace && current_trace)) {
3367 old_tracer = current_trace;
3368 *iter->trace = *current_trace;
3369 }
3370 mutex_unlock(&trace_types_lock);
3371
3372 mutex_lock(&iter->mutex);
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003373
3374 if (iter->trace->splice_read) {
3375 ret = iter->trace->splice_read(iter, filp,
3376 ppos, pipe, len, flags);
3377 if (ret)
Steven Rostedt34cd4992009-02-09 12:06:29 -05003378 goto out_err;
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003379 }
3380
3381 ret = tracing_wait_pipe(filp);
3382 if (ret <= 0)
Steven Rostedt34cd4992009-02-09 12:06:29 -05003383 goto out_err;
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003384
3385 if (!iter->ent && !find_next_entry_inc(iter)) {
3386 ret = -EFAULT;
Steven Rostedt34cd4992009-02-09 12:06:29 -05003387 goto out_err;
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003388 }
3389
Lai Jiangshan4f535962009-05-18 19:35:34 +08003390 trace_event_read_lock();
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08003391 trace_access_lock(iter->cpu_file);
Lai Jiangshan4f535962009-05-18 19:35:34 +08003392
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003393 /* Fill as many pages as possible. */
Jens Axboe35f3d142010-05-20 10:43:18 +02003394 for (i = 0, rem = len; i < pipe->buffers && rem; i++) {
3395 spd.pages[i] = alloc_page(GFP_KERNEL);
3396 if (!spd.pages[i])
Steven Rostedt34cd4992009-02-09 12:06:29 -05003397 break;
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003398
Frederic Weisbeckerfa7c7f62009-02-11 02:51:30 +01003399 rem = tracing_fill_pipe_page(rem, iter);
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003400
3401 /* Copy the data into the page, so we can start over. */
3402 ret = trace_seq_to_buffer(&iter->seq,
Jens Axboe35f3d142010-05-20 10:43:18 +02003403 page_address(spd.pages[i]),
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003404 iter->seq.len);
3405 if (ret < 0) {
Jens Axboe35f3d142010-05-20 10:43:18 +02003406 __free_page(spd.pages[i]);
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003407 break;
3408 }
Jens Axboe35f3d142010-05-20 10:43:18 +02003409 spd.partial[i].offset = 0;
3410 spd.partial[i].len = iter->seq.len;
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003411
Steven Rostedtf9520752009-03-02 14:04:40 -05003412 trace_seq_init(&iter->seq);
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003413 }
3414
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08003415 trace_access_unlock(iter->cpu_file);
Lai Jiangshan4f535962009-05-18 19:35:34 +08003416 trace_event_read_unlock();
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003417 mutex_unlock(&iter->mutex);
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003418
3419 spd.nr_pages = i;
3420
Jens Axboe35f3d142010-05-20 10:43:18 +02003421 ret = splice_to_pipe(pipe, &spd);
3422out:
3423 splice_shrink_spd(pipe, &spd);
3424 return ret;
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003425
Steven Rostedt34cd4992009-02-09 12:06:29 -05003426out_err:
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003427 mutex_unlock(&iter->mutex);
Jens Axboe35f3d142010-05-20 10:43:18 +02003428 goto out;
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003429}
3430
Steven Rostedta98a3c32008-05-12 21:20:59 +02003431static ssize_t
3432tracing_entries_read(struct file *filp, char __user *ubuf,
3433 size_t cnt, loff_t *ppos)
3434{
3435 struct trace_array *tr = filp->private_data;
Steven Rostedtdb526ca2009-03-12 13:53:25 -04003436 char buf[96];
Steven Rostedta98a3c32008-05-12 21:20:59 +02003437 int r;
3438
Steven Rostedtdb526ca2009-03-12 13:53:25 -04003439 mutex_lock(&trace_types_lock);
3440 if (!ring_buffer_expanded)
3441 r = sprintf(buf, "%lu (expanded: %lu)\n",
3442 tr->entries >> 10,
3443 trace_buf_size >> 10);
3444 else
3445 r = sprintf(buf, "%lu\n", tr->entries >> 10);
3446 mutex_unlock(&trace_types_lock);
3447
Steven Rostedta98a3c32008-05-12 21:20:59 +02003448 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3449}
3450
3451static ssize_t
3452tracing_entries_write(struct file *filp, const char __user *ubuf,
3453 size_t cnt, loff_t *ppos)
3454{
3455 unsigned long val;
3456 char buf[64];
Steven Rostedtbf5e6512008-11-10 21:46:00 -05003457 int ret, cpu;
Steven Rostedta98a3c32008-05-12 21:20:59 +02003458
Steven Rostedtcffae432008-05-12 21:21:00 +02003459 if (cnt >= sizeof(buf))
3460 return -EINVAL;
Steven Rostedta98a3c32008-05-12 21:20:59 +02003461
3462 if (copy_from_user(&buf, ubuf, cnt))
3463 return -EFAULT;
3464
3465 buf[cnt] = 0;
3466
Steven Rostedtc6caeeb2008-05-12 21:21:00 +02003467 ret = strict_strtoul(buf, 10, &val);
3468 if (ret < 0)
3469 return ret;
Steven Rostedta98a3c32008-05-12 21:20:59 +02003470
3471 /* must have at least 1 entry */
3472 if (!val)
3473 return -EINVAL;
3474
3475 mutex_lock(&trace_types_lock);
3476
Steven Rostedtc76f0692008-11-07 22:36:02 -05003477 tracing_stop();
Steven Rostedta98a3c32008-05-12 21:20:59 +02003478
Steven Rostedtbf5e6512008-11-10 21:46:00 -05003479 /* disable all cpu buffers */
3480 for_each_tracing_cpu(cpu) {
3481 if (global_trace.data[cpu])
3482 atomic_inc(&global_trace.data[cpu]->disabled);
3483 if (max_tr.data[cpu])
3484 atomic_inc(&max_tr.data[cpu]->disabled);
3485 }
3486
Steven Rostedt1696b2b2008-11-13 00:09:35 -05003487 /* value is in KB */
3488 val <<= 10;
3489
Steven Rostedt3928a8a2008-09-29 23:02:41 -04003490 if (val != global_trace.entries) {
Steven Rostedt73c51622009-03-11 13:42:01 -04003491 ret = tracing_resize_ring_buffer(val);
Steven Rostedt3928a8a2008-09-29 23:02:41 -04003492 if (ret < 0) {
3493 cnt = ret;
Steven Rostedt3eefae92008-05-12 21:21:04 +02003494 goto out;
3495 }
Steven Rostedta98a3c32008-05-12 21:20:59 +02003496 }
3497
Jiri Olsacf8517c2009-10-23 19:36:16 -04003498 *ppos += cnt;
Steven Rostedta98a3c32008-05-12 21:20:59 +02003499
Steven Rostedt19384c02008-05-22 00:22:16 -04003500 /* If check pages failed, return ENOMEM */
3501 if (tracing_disabled)
3502 cnt = -ENOMEM;
Steven Rostedta98a3c32008-05-12 21:20:59 +02003503 out:
Steven Rostedtbf5e6512008-11-10 21:46:00 -05003504 for_each_tracing_cpu(cpu) {
3505 if (global_trace.data[cpu])
3506 atomic_dec(&global_trace.data[cpu]->disabled);
3507 if (max_tr.data[cpu])
3508 atomic_dec(&max_tr.data[cpu]->disabled);
3509 }
3510
Steven Rostedtc76f0692008-11-07 22:36:02 -05003511 tracing_start();
Steven Rostedta98a3c32008-05-12 21:20:59 +02003512 mutex_unlock(&trace_types_lock);
3513
3514 return cnt;
3515}
3516
Carsten Emdef2942482009-12-06 14:02:44 +01003517static int mark_printk(const char *fmt, ...)
3518{
3519 int ret;
3520 va_list args;
3521 va_start(args, fmt);
3522 ret = trace_vprintk(0, fmt, args);
3523 va_end(args);
3524 return ret;
3525}
3526
Pekka Paalanen5bf9a1e2008-09-16 22:06:42 +03003527static ssize_t
3528tracing_mark_write(struct file *filp, const char __user *ubuf,
3529 size_t cnt, loff_t *fpos)
3530{
3531 char *buf;
Pekka Paalanen5bf9a1e2008-09-16 22:06:42 +03003532
Steven Rostedtc76f0692008-11-07 22:36:02 -05003533 if (tracing_disabled)
Pekka Paalanen5bf9a1e2008-09-16 22:06:42 +03003534 return -EINVAL;
3535
3536 if (cnt > TRACE_BUF_SIZE)
3537 cnt = TRACE_BUF_SIZE;
3538
Carsten Emdec13d2f72009-11-16 20:56:13 +01003539 buf = kmalloc(cnt + 2, GFP_KERNEL);
Pekka Paalanen5bf9a1e2008-09-16 22:06:42 +03003540 if (buf == NULL)
3541 return -ENOMEM;
3542
3543 if (copy_from_user(buf, ubuf, cnt)) {
3544 kfree(buf);
3545 return -EFAULT;
3546 }
Carsten Emdec13d2f72009-11-16 20:56:13 +01003547 if (buf[cnt-1] != '\n') {
3548 buf[cnt] = '\n';
3549 buf[cnt+1] = '\0';
3550 } else
3551 buf[cnt] = '\0';
Pekka Paalanen5bf9a1e2008-09-16 22:06:42 +03003552
Carsten Emdef2942482009-12-06 14:02:44 +01003553 cnt = mark_printk("%s", buf);
Pekka Paalanen5bf9a1e2008-09-16 22:06:42 +03003554 kfree(buf);
3555 *fpos += cnt;
3556
3557 return cnt;
3558}
3559
Li Zefan13f16d22009-12-08 11:16:11 +08003560static int tracing_clock_show(struct seq_file *m, void *v)
Zhaolei5079f322009-08-25 16:12:56 +08003561{
Zhaolei5079f322009-08-25 16:12:56 +08003562 int i;
3563
3564 for (i = 0; i < ARRAY_SIZE(trace_clocks); i++)
Li Zefan13f16d22009-12-08 11:16:11 +08003565 seq_printf(m,
Zhaolei5079f322009-08-25 16:12:56 +08003566 "%s%s%s%s", i ? " " : "",
3567 i == trace_clock_id ? "[" : "", trace_clocks[i].name,
3568 i == trace_clock_id ? "]" : "");
Li Zefan13f16d22009-12-08 11:16:11 +08003569 seq_putc(m, '\n');
Zhaolei5079f322009-08-25 16:12:56 +08003570
Li Zefan13f16d22009-12-08 11:16:11 +08003571 return 0;
Zhaolei5079f322009-08-25 16:12:56 +08003572}
3573
3574static ssize_t tracing_clock_write(struct file *filp, const char __user *ubuf,
3575 size_t cnt, loff_t *fpos)
3576{
3577 char buf[64];
3578 const char *clockstr;
3579 int i;
3580
3581 if (cnt >= sizeof(buf))
3582 return -EINVAL;
3583
3584 if (copy_from_user(&buf, ubuf, cnt))
3585 return -EFAULT;
3586
3587 buf[cnt] = 0;
3588
3589 clockstr = strstrip(buf);
3590
3591 for (i = 0; i < ARRAY_SIZE(trace_clocks); i++) {
3592 if (strcmp(trace_clocks[i].name, clockstr) == 0)
3593 break;
3594 }
3595 if (i == ARRAY_SIZE(trace_clocks))
3596 return -EINVAL;
3597
3598 trace_clock_id = i;
3599
3600 mutex_lock(&trace_types_lock);
3601
3602 ring_buffer_set_clock(global_trace.buffer, trace_clocks[i].func);
3603 if (max_tr.buffer)
3604 ring_buffer_set_clock(max_tr.buffer, trace_clocks[i].func);
3605
3606 mutex_unlock(&trace_types_lock);
3607
3608 *fpos += cnt;
3609
3610 return cnt;
3611}
3612
Li Zefan13f16d22009-12-08 11:16:11 +08003613static int tracing_clock_open(struct inode *inode, struct file *file)
3614{
3615 if (tracing_disabled)
3616 return -ENODEV;
3617 return single_open(file, tracing_clock_show, NULL);
3618}
3619
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003620static const struct file_operations tracing_max_lat_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02003621 .open = tracing_open_generic,
3622 .read = tracing_max_lat_read,
3623 .write = tracing_max_lat_write,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003624};
3625
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003626static const struct file_operations tracing_ctrl_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02003627 .open = tracing_open_generic,
3628 .read = tracing_ctrl_read,
3629 .write = tracing_ctrl_write,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003630};
3631
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003632static const struct file_operations set_tracer_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02003633 .open = tracing_open_generic,
3634 .read = tracing_set_trace_read,
3635 .write = tracing_set_trace_write,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003636};
3637
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003638static const struct file_operations tracing_pipe_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02003639 .open = tracing_open_pipe,
Soeren Sandmann Pedersen2a2cc8f2008-05-12 21:20:49 +02003640 .poll = tracing_poll_pipe,
Ingo Molnar4bf39a92008-05-12 21:20:46 +02003641 .read = tracing_read_pipe,
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003642 .splice_read = tracing_splice_read_pipe,
Ingo Molnar4bf39a92008-05-12 21:20:46 +02003643 .release = tracing_release_pipe,
Steven Rostedtb3806b42008-05-12 21:20:46 +02003644};
3645
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003646static const struct file_operations tracing_entries_fops = {
Steven Rostedta98a3c32008-05-12 21:20:59 +02003647 .open = tracing_open_generic,
3648 .read = tracing_entries_read,
3649 .write = tracing_entries_write,
3650};
3651
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003652static const struct file_operations tracing_mark_fops = {
Frédéric Weisbecker43a15382008-09-21 20:16:30 +02003653 .open = tracing_open_generic,
Pekka Paalanen5bf9a1e2008-09-16 22:06:42 +03003654 .write = tracing_mark_write,
3655};
3656
Zhaolei5079f322009-08-25 16:12:56 +08003657static const struct file_operations trace_clock_fops = {
Li Zefan13f16d22009-12-08 11:16:11 +08003658 .open = tracing_clock_open,
3659 .read = seq_read,
3660 .llseek = seq_lseek,
3661 .release = single_release,
Zhaolei5079f322009-08-25 16:12:56 +08003662 .write = tracing_clock_write,
3663};
3664
Steven Rostedt2cadf912008-12-01 22:20:19 -05003665struct ftrace_buffer_info {
3666 struct trace_array *tr;
3667 void *spare;
3668 int cpu;
3669 unsigned int read;
3670};
3671
3672static int tracing_buffers_open(struct inode *inode, struct file *filp)
3673{
3674 int cpu = (int)(long)inode->i_private;
3675 struct ftrace_buffer_info *info;
3676
3677 if (tracing_disabled)
3678 return -ENODEV;
3679
3680 info = kzalloc(sizeof(*info), GFP_KERNEL);
3681 if (!info)
3682 return -ENOMEM;
3683
3684 info->tr = &global_trace;
3685 info->cpu = cpu;
Lai Jiangshanddd538f2009-04-02 15:16:59 +08003686 info->spare = NULL;
Steven Rostedt2cadf912008-12-01 22:20:19 -05003687 /* Force reading ring buffer for first read */
3688 info->read = (unsigned int)-1;
Steven Rostedt2cadf912008-12-01 22:20:19 -05003689
3690 filp->private_data = info;
3691
Lai Jiangshand1e7e022009-04-02 15:16:56 +08003692 return nonseekable_open(inode, filp);
Steven Rostedt2cadf912008-12-01 22:20:19 -05003693}
3694
3695static ssize_t
3696tracing_buffers_read(struct file *filp, char __user *ubuf,
3697 size_t count, loff_t *ppos)
3698{
3699 struct ftrace_buffer_info *info = filp->private_data;
Steven Rostedt2cadf912008-12-01 22:20:19 -05003700 ssize_t ret;
3701 size_t size;
3702
Steven Rostedt2dc5d122009-03-04 19:10:05 -05003703 if (!count)
3704 return 0;
3705
Lai Jiangshanddd538f2009-04-02 15:16:59 +08003706 if (!info->spare)
3707 info->spare = ring_buffer_alloc_read_page(info->tr->buffer);
3708 if (!info->spare)
3709 return -ENOMEM;
3710
Steven Rostedt2cadf912008-12-01 22:20:19 -05003711 /* Do we have previous read data to read? */
3712 if (info->read < PAGE_SIZE)
3713 goto read;
3714
3715 info->read = 0;
3716
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08003717 trace_access_lock(info->cpu);
Steven Rostedt2cadf912008-12-01 22:20:19 -05003718 ret = ring_buffer_read_page(info->tr->buffer,
3719 &info->spare,
3720 count,
3721 info->cpu, 0);
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08003722 trace_access_unlock(info->cpu);
Steven Rostedt2cadf912008-12-01 22:20:19 -05003723 if (ret < 0)
3724 return 0;
3725
Steven Rostedt2cadf912008-12-01 22:20:19 -05003726read:
3727 size = PAGE_SIZE - info->read;
3728 if (size > count)
3729 size = count;
3730
3731 ret = copy_to_user(ubuf, info->spare + info->read, size);
Steven Rostedt2dc5d122009-03-04 19:10:05 -05003732 if (ret == size)
Steven Rostedt2cadf912008-12-01 22:20:19 -05003733 return -EFAULT;
Steven Rostedt2dc5d122009-03-04 19:10:05 -05003734 size -= ret;
3735
Steven Rostedt2cadf912008-12-01 22:20:19 -05003736 *ppos += size;
3737 info->read += size;
3738
3739 return size;
3740}
3741
3742static int tracing_buffers_release(struct inode *inode, struct file *file)
3743{
3744 struct ftrace_buffer_info *info = file->private_data;
3745
Lai Jiangshanddd538f2009-04-02 15:16:59 +08003746 if (info->spare)
3747 ring_buffer_free_read_page(info->tr->buffer, info->spare);
Steven Rostedt2cadf912008-12-01 22:20:19 -05003748 kfree(info);
3749
3750 return 0;
3751}
3752
3753struct buffer_ref {
3754 struct ring_buffer *buffer;
3755 void *page;
3756 int ref;
3757};
3758
3759static void buffer_pipe_buf_release(struct pipe_inode_info *pipe,
3760 struct pipe_buffer *buf)
3761{
3762 struct buffer_ref *ref = (struct buffer_ref *)buf->private;
3763
3764 if (--ref->ref)
3765 return;
3766
3767 ring_buffer_free_read_page(ref->buffer, ref->page);
3768 kfree(ref);
3769 buf->private = 0;
3770}
3771
3772static int buffer_pipe_buf_steal(struct pipe_inode_info *pipe,
3773 struct pipe_buffer *buf)
3774{
3775 return 1;
3776}
3777
3778static void buffer_pipe_buf_get(struct pipe_inode_info *pipe,
3779 struct pipe_buffer *buf)
3780{
3781 struct buffer_ref *ref = (struct buffer_ref *)buf->private;
3782
3783 ref->ref++;
3784}
3785
3786/* Pipe buffer operations for a buffer. */
Alexey Dobriyan28dfef82009-12-15 16:46:48 -08003787static const struct pipe_buf_operations buffer_pipe_buf_ops = {
Steven Rostedt2cadf912008-12-01 22:20:19 -05003788 .can_merge = 0,
3789 .map = generic_pipe_buf_map,
3790 .unmap = generic_pipe_buf_unmap,
3791 .confirm = generic_pipe_buf_confirm,
3792 .release = buffer_pipe_buf_release,
3793 .steal = buffer_pipe_buf_steal,
3794 .get = buffer_pipe_buf_get,
3795};
3796
3797/*
3798 * Callback from splice_to_pipe(), if we need to release some pages
3799 * at the end of the spd in case we error'ed out in filling the pipe.
3800 */
3801static void buffer_spd_release(struct splice_pipe_desc *spd, unsigned int i)
3802{
3803 struct buffer_ref *ref =
3804 (struct buffer_ref *)spd->partial[i].private;
3805
3806 if (--ref->ref)
3807 return;
3808
3809 ring_buffer_free_read_page(ref->buffer, ref->page);
3810 kfree(ref);
3811 spd->partial[i].private = 0;
3812}
3813
3814static ssize_t
3815tracing_buffers_splice_read(struct file *file, loff_t *ppos,
3816 struct pipe_inode_info *pipe, size_t len,
3817 unsigned int flags)
3818{
3819 struct ftrace_buffer_info *info = file->private_data;
Jens Axboe35f3d142010-05-20 10:43:18 +02003820 struct partial_page partial_def[PIPE_DEF_BUFFERS];
3821 struct page *pages_def[PIPE_DEF_BUFFERS];
Steven Rostedt2cadf912008-12-01 22:20:19 -05003822 struct splice_pipe_desc spd = {
Jens Axboe35f3d142010-05-20 10:43:18 +02003823 .pages = pages_def,
3824 .partial = partial_def,
Steven Rostedt2cadf912008-12-01 22:20:19 -05003825 .flags = flags,
3826 .ops = &buffer_pipe_buf_ops,
3827 .spd_release = buffer_spd_release,
3828 };
3829 struct buffer_ref *ref;
Steven Rostedt93459c62009-04-29 00:23:13 -04003830 int entries, size, i;
Steven Rostedt2cadf912008-12-01 22:20:19 -05003831 size_t ret;
3832
Jens Axboe35f3d142010-05-20 10:43:18 +02003833 if (splice_grow_spd(pipe, &spd))
3834 return -ENOMEM;
3835
Lai Jiangshan93cfb3c2009-04-02 15:17:08 +08003836 if (*ppos & (PAGE_SIZE - 1)) {
3837 WARN_ONCE(1, "Ftrace: previous read must page-align\n");
Jens Axboe35f3d142010-05-20 10:43:18 +02003838 ret = -EINVAL;
3839 goto out;
Lai Jiangshan93cfb3c2009-04-02 15:17:08 +08003840 }
3841
3842 if (len & (PAGE_SIZE - 1)) {
3843 WARN_ONCE(1, "Ftrace: splice_read should page-align\n");
Jens Axboe35f3d142010-05-20 10:43:18 +02003844 if (len < PAGE_SIZE) {
3845 ret = -EINVAL;
3846 goto out;
3847 }
Lai Jiangshan93cfb3c2009-04-02 15:17:08 +08003848 len &= PAGE_MASK;
3849 }
3850
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08003851 trace_access_lock(info->cpu);
Steven Rostedt93459c62009-04-29 00:23:13 -04003852 entries = ring_buffer_entries_cpu(info->tr->buffer, info->cpu);
3853
Jens Axboe35f3d142010-05-20 10:43:18 +02003854 for (i = 0; i < pipe->buffers && len && entries; i++, len -= PAGE_SIZE) {
Steven Rostedt2cadf912008-12-01 22:20:19 -05003855 struct page *page;
3856 int r;
3857
3858 ref = kzalloc(sizeof(*ref), GFP_KERNEL);
3859 if (!ref)
3860 break;
3861
Steven Rostedt7267fa62009-04-29 00:16:21 -04003862 ref->ref = 1;
Steven Rostedt2cadf912008-12-01 22:20:19 -05003863 ref->buffer = info->tr->buffer;
3864 ref->page = ring_buffer_alloc_read_page(ref->buffer);
3865 if (!ref->page) {
3866 kfree(ref);
3867 break;
3868 }
3869
3870 r = ring_buffer_read_page(ref->buffer, &ref->page,
Steven Rostedtf2957f12009-04-29 00:26:30 -04003871 len, info->cpu, 1);
Steven Rostedt2cadf912008-12-01 22:20:19 -05003872 if (r < 0) {
3873 ring_buffer_free_read_page(ref->buffer,
3874 ref->page);
3875 kfree(ref);
3876 break;
3877 }
3878
3879 /*
3880 * zero out any left over data, this is going to
3881 * user land.
3882 */
3883 size = ring_buffer_page_len(ref->page);
3884 if (size < PAGE_SIZE)
3885 memset(ref->page + size, 0, PAGE_SIZE - size);
3886
3887 page = virt_to_page(ref->page);
3888
3889 spd.pages[i] = page;
3890 spd.partial[i].len = PAGE_SIZE;
3891 spd.partial[i].offset = 0;
3892 spd.partial[i].private = (unsigned long)ref;
3893 spd.nr_pages++;
Lai Jiangshan93cfb3c2009-04-02 15:17:08 +08003894 *ppos += PAGE_SIZE;
Steven Rostedt93459c62009-04-29 00:23:13 -04003895
3896 entries = ring_buffer_entries_cpu(info->tr->buffer, info->cpu);
Steven Rostedt2cadf912008-12-01 22:20:19 -05003897 }
3898
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08003899 trace_access_unlock(info->cpu);
Steven Rostedt2cadf912008-12-01 22:20:19 -05003900 spd.nr_pages = i;
3901
3902 /* did we read anything? */
3903 if (!spd.nr_pages) {
3904 if (flags & SPLICE_F_NONBLOCK)
3905 ret = -EAGAIN;
3906 else
3907 ret = 0;
3908 /* TODO: block */
Jens Axboe35f3d142010-05-20 10:43:18 +02003909 goto out;
Steven Rostedt2cadf912008-12-01 22:20:19 -05003910 }
3911
3912 ret = splice_to_pipe(pipe, &spd);
Jens Axboe35f3d142010-05-20 10:43:18 +02003913 splice_shrink_spd(pipe, &spd);
3914out:
Steven Rostedt2cadf912008-12-01 22:20:19 -05003915 return ret;
3916}
3917
3918static const struct file_operations tracing_buffers_fops = {
3919 .open = tracing_buffers_open,
3920 .read = tracing_buffers_read,
3921 .release = tracing_buffers_release,
3922 .splice_read = tracing_buffers_splice_read,
3923 .llseek = no_llseek,
3924};
3925
Steven Rostedtc8d77182009-04-29 18:03:45 -04003926static ssize_t
3927tracing_stats_read(struct file *filp, char __user *ubuf,
3928 size_t count, loff_t *ppos)
3929{
3930 unsigned long cpu = (unsigned long)filp->private_data;
3931 struct trace_array *tr = &global_trace;
3932 struct trace_seq *s;
3933 unsigned long cnt;
3934
Li Zefane4f2d102009-06-15 10:57:28 +08003935 s = kmalloc(sizeof(*s), GFP_KERNEL);
Steven Rostedtc8d77182009-04-29 18:03:45 -04003936 if (!s)
Roel Kluina6463652009-11-11 22:26:35 +01003937 return -ENOMEM;
Steven Rostedtc8d77182009-04-29 18:03:45 -04003938
3939 trace_seq_init(s);
3940
3941 cnt = ring_buffer_entries_cpu(tr->buffer, cpu);
3942 trace_seq_printf(s, "entries: %ld\n", cnt);
3943
3944 cnt = ring_buffer_overrun_cpu(tr->buffer, cpu);
3945 trace_seq_printf(s, "overrun: %ld\n", cnt);
3946
3947 cnt = ring_buffer_commit_overrun_cpu(tr->buffer, cpu);
3948 trace_seq_printf(s, "commit overrun: %ld\n", cnt);
3949
Steven Rostedtc8d77182009-04-29 18:03:45 -04003950 count = simple_read_from_buffer(ubuf, count, ppos, s->buffer, s->len);
3951
3952 kfree(s);
3953
3954 return count;
3955}
3956
3957static const struct file_operations tracing_stats_fops = {
3958 .open = tracing_open_generic,
3959 .read = tracing_stats_read,
3960};
3961
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003962#ifdef CONFIG_DYNAMIC_FTRACE
3963
Steven Rostedtb807c3d2008-10-30 16:08:33 -04003964int __weak ftrace_arch_read_dyn_info(char *buf, int size)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003965{
Steven Rostedtb807c3d2008-10-30 16:08:33 -04003966 return 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003967}
3968
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003969static ssize_t
Steven Rostedtb807c3d2008-10-30 16:08:33 -04003970tracing_read_dyn_info(struct file *filp, char __user *ubuf,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003971 size_t cnt, loff_t *ppos)
3972{
Steven Rostedta26a2a22008-10-31 00:03:22 -04003973 static char ftrace_dyn_info_buffer[1024];
3974 static DEFINE_MUTEX(dyn_info_mutex);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003975 unsigned long *p = filp->private_data;
Steven Rostedtb807c3d2008-10-30 16:08:33 -04003976 char *buf = ftrace_dyn_info_buffer;
Steven Rostedta26a2a22008-10-31 00:03:22 -04003977 int size = ARRAY_SIZE(ftrace_dyn_info_buffer);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003978 int r;
3979
Steven Rostedtb807c3d2008-10-30 16:08:33 -04003980 mutex_lock(&dyn_info_mutex);
3981 r = sprintf(buf, "%ld ", *p);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003982
Steven Rostedta26a2a22008-10-31 00:03:22 -04003983 r += ftrace_arch_read_dyn_info(buf+r, (size-1)-r);
Steven Rostedtb807c3d2008-10-30 16:08:33 -04003984 buf[r++] = '\n';
3985
3986 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3987
3988 mutex_unlock(&dyn_info_mutex);
3989
3990 return r;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003991}
3992
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003993static const struct file_operations tracing_dyn_info_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02003994 .open = tracing_open_generic,
Steven Rostedtb807c3d2008-10-30 16:08:33 -04003995 .read = tracing_read_dyn_info,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003996};
3997#endif
3998
3999static struct dentry *d_tracer;
4000
4001struct dentry *tracing_init_dentry(void)
4002{
4003 static int once;
4004
4005 if (d_tracer)
4006 return d_tracer;
4007
Frederic Weisbecker3e1f60b2009-03-22 23:10:45 +01004008 if (!debugfs_initialized())
4009 return NULL;
4010
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004011 d_tracer = debugfs_create_dir("tracing", NULL);
4012
4013 if (!d_tracer && !once) {
4014 once = 1;
4015 pr_warning("Could not create debugfs directory 'tracing'\n");
4016 return NULL;
4017 }
4018
4019 return d_tracer;
4020}
4021
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01004022static struct dentry *d_percpu;
4023
4024struct dentry *tracing_dentry_percpu(void)
4025{
4026 static int once;
4027 struct dentry *d_tracer;
4028
4029 if (d_percpu)
4030 return d_percpu;
4031
4032 d_tracer = tracing_init_dentry();
4033
4034 if (!d_tracer)
4035 return NULL;
4036
4037 d_percpu = debugfs_create_dir("per_cpu", d_tracer);
4038
4039 if (!d_percpu && !once) {
4040 once = 1;
4041 pr_warning("Could not create debugfs directory 'per_cpu'\n");
4042 return NULL;
4043 }
4044
4045 return d_percpu;
4046}
4047
4048static void tracing_init_debugfs_percpu(long cpu)
4049{
4050 struct dentry *d_percpu = tracing_dentry_percpu();
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004051 struct dentry *d_cpu;
Frederic Weisbecker8656e7a2009-02-26 00:41:38 +01004052 /* strlen(cpu) + MAX(log10(cpu)) + '\0' */
4053 char cpu_dir[7];
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01004054
4055 if (cpu > 999 || cpu < 0)
4056 return;
4057
Frederic Weisbecker8656e7a2009-02-26 00:41:38 +01004058 sprintf(cpu_dir, "cpu%ld", cpu);
4059 d_cpu = debugfs_create_dir(cpu_dir, d_percpu);
4060 if (!d_cpu) {
4061 pr_warning("Could not create debugfs '%s' entry\n", cpu_dir);
4062 return;
4063 }
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01004064
Frederic Weisbecker8656e7a2009-02-26 00:41:38 +01004065 /* per cpu trace_pipe */
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004066 trace_create_file("trace_pipe", 0444, d_cpu,
4067 (void *) cpu, &tracing_pipe_fops);
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01004068
4069 /* per cpu trace */
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004070 trace_create_file("trace", 0644, d_cpu,
4071 (void *) cpu, &tracing_fops);
Steven Rostedt7f96f932009-03-13 00:37:42 -04004072
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004073 trace_create_file("trace_pipe_raw", 0444, d_cpu,
4074 (void *) cpu, &tracing_buffers_fops);
Steven Rostedtc8d77182009-04-29 18:03:45 -04004075
4076 trace_create_file("stats", 0444, d_cpu,
4077 (void *) cpu, &tracing_stats_fops);
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01004078}
4079
Steven Rostedt60a11772008-05-12 21:20:44 +02004080#ifdef CONFIG_FTRACE_SELFTEST
4081/* Let selftest have access to static functions in this file */
4082#include "trace_selftest.c"
4083#endif
4084
Steven Rostedt577b7852009-02-26 23:43:05 -05004085struct trace_option_dentry {
4086 struct tracer_opt *opt;
4087 struct tracer_flags *flags;
4088 struct dentry *entry;
4089};
4090
4091static ssize_t
4092trace_options_read(struct file *filp, char __user *ubuf, size_t cnt,
4093 loff_t *ppos)
4094{
4095 struct trace_option_dentry *topt = filp->private_data;
4096 char *buf;
4097
4098 if (topt->flags->val & topt->opt->bit)
4099 buf = "1\n";
4100 else
4101 buf = "0\n";
4102
4103 return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
4104}
4105
4106static ssize_t
4107trace_options_write(struct file *filp, const char __user *ubuf, size_t cnt,
4108 loff_t *ppos)
4109{
4110 struct trace_option_dentry *topt = filp->private_data;
4111 unsigned long val;
4112 char buf[64];
4113 int ret;
4114
4115 if (cnt >= sizeof(buf))
4116 return -EINVAL;
4117
4118 if (copy_from_user(&buf, ubuf, cnt))
4119 return -EFAULT;
4120
4121 buf[cnt] = 0;
4122
4123 ret = strict_strtoul(buf, 10, &val);
4124 if (ret < 0)
4125 return ret;
4126
Li Zefan8d18eaa2009-12-08 11:17:06 +08004127 if (val != 0 && val != 1)
Steven Rostedt577b7852009-02-26 23:43:05 -05004128 return -EINVAL;
Li Zefan8d18eaa2009-12-08 11:17:06 +08004129
4130 if (!!(topt->flags->val & topt->opt->bit) != val) {
4131 mutex_lock(&trace_types_lock);
4132 ret = __set_tracer_option(current_trace, topt->flags,
Steven Rostedtc757bea2009-12-21 22:35:16 -05004133 topt->opt, !val);
Li Zefan8d18eaa2009-12-08 11:17:06 +08004134 mutex_unlock(&trace_types_lock);
4135 if (ret)
4136 return ret;
Steven Rostedt577b7852009-02-26 23:43:05 -05004137 }
4138
4139 *ppos += cnt;
4140
4141 return cnt;
4142}
4143
4144
4145static const struct file_operations trace_options_fops = {
4146 .open = tracing_open_generic,
4147 .read = trace_options_read,
4148 .write = trace_options_write,
4149};
4150
Steven Rostedta8259072009-02-26 22:19:12 -05004151static ssize_t
4152trace_options_core_read(struct file *filp, char __user *ubuf, size_t cnt,
4153 loff_t *ppos)
4154{
4155 long index = (long)filp->private_data;
4156 char *buf;
4157
4158 if (trace_flags & (1 << index))
4159 buf = "1\n";
4160 else
4161 buf = "0\n";
4162
4163 return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
4164}
4165
4166static ssize_t
4167trace_options_core_write(struct file *filp, const char __user *ubuf, size_t cnt,
4168 loff_t *ppos)
4169{
4170 long index = (long)filp->private_data;
4171 char buf[64];
4172 unsigned long val;
4173 int ret;
4174
4175 if (cnt >= sizeof(buf))
4176 return -EINVAL;
4177
4178 if (copy_from_user(&buf, ubuf, cnt))
4179 return -EFAULT;
4180
4181 buf[cnt] = 0;
4182
4183 ret = strict_strtoul(buf, 10, &val);
4184 if (ret < 0)
4185 return ret;
4186
Zhaoleif2d84b62009-08-07 18:55:48 +08004187 if (val != 0 && val != 1)
Steven Rostedta8259072009-02-26 22:19:12 -05004188 return -EINVAL;
Zhaoleif2d84b62009-08-07 18:55:48 +08004189 set_tracer_flags(1 << index, val);
Steven Rostedta8259072009-02-26 22:19:12 -05004190
4191 *ppos += cnt;
4192
4193 return cnt;
4194}
4195
Steven Rostedta8259072009-02-26 22:19:12 -05004196static const struct file_operations trace_options_core_fops = {
4197 .open = tracing_open_generic,
4198 .read = trace_options_core_read,
4199 .write = trace_options_core_write,
4200};
4201
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004202struct dentry *trace_create_file(const char *name,
4203 mode_t mode,
4204 struct dentry *parent,
4205 void *data,
4206 const struct file_operations *fops)
4207{
4208 struct dentry *ret;
4209
4210 ret = debugfs_create_file(name, mode, parent, data, fops);
4211 if (!ret)
4212 pr_warning("Could not create debugfs '%s' entry\n", name);
4213
4214 return ret;
4215}
4216
4217
Steven Rostedta8259072009-02-26 22:19:12 -05004218static struct dentry *trace_options_init_dentry(void)
4219{
4220 struct dentry *d_tracer;
4221 static struct dentry *t_options;
4222
4223 if (t_options)
4224 return t_options;
4225
4226 d_tracer = tracing_init_dentry();
4227 if (!d_tracer)
4228 return NULL;
4229
4230 t_options = debugfs_create_dir("options", d_tracer);
4231 if (!t_options) {
4232 pr_warning("Could not create debugfs directory 'options'\n");
4233 return NULL;
4234 }
4235
4236 return t_options;
4237}
4238
Steven Rostedt577b7852009-02-26 23:43:05 -05004239static void
4240create_trace_option_file(struct trace_option_dentry *topt,
4241 struct tracer_flags *flags,
4242 struct tracer_opt *opt)
4243{
4244 struct dentry *t_options;
Steven Rostedt577b7852009-02-26 23:43:05 -05004245
4246 t_options = trace_options_init_dentry();
4247 if (!t_options)
4248 return;
4249
4250 topt->flags = flags;
4251 topt->opt = opt;
4252
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004253 topt->entry = trace_create_file(opt->name, 0644, t_options, topt,
Steven Rostedt577b7852009-02-26 23:43:05 -05004254 &trace_options_fops);
4255
Steven Rostedt577b7852009-02-26 23:43:05 -05004256}
4257
4258static struct trace_option_dentry *
4259create_trace_option_files(struct tracer *tracer)
4260{
4261 struct trace_option_dentry *topts;
4262 struct tracer_flags *flags;
4263 struct tracer_opt *opts;
4264 int cnt;
4265
4266 if (!tracer)
4267 return NULL;
4268
4269 flags = tracer->flags;
4270
4271 if (!flags || !flags->opts)
4272 return NULL;
4273
4274 opts = flags->opts;
4275
4276 for (cnt = 0; opts[cnt].name; cnt++)
4277 ;
4278
Steven Rostedt0cfe8242009-02-27 10:51:10 -05004279 topts = kcalloc(cnt + 1, sizeof(*topts), GFP_KERNEL);
Steven Rostedt577b7852009-02-26 23:43:05 -05004280 if (!topts)
4281 return NULL;
4282
4283 for (cnt = 0; opts[cnt].name; cnt++)
4284 create_trace_option_file(&topts[cnt], flags,
4285 &opts[cnt]);
4286
4287 return topts;
4288}
4289
4290static void
4291destroy_trace_option_files(struct trace_option_dentry *topts)
4292{
4293 int cnt;
4294
4295 if (!topts)
4296 return;
4297
4298 for (cnt = 0; topts[cnt].opt; cnt++) {
4299 if (topts[cnt].entry)
4300 debugfs_remove(topts[cnt].entry);
4301 }
4302
4303 kfree(topts);
4304}
4305
Steven Rostedta8259072009-02-26 22:19:12 -05004306static struct dentry *
4307create_trace_option_core_file(const char *option, long index)
4308{
4309 struct dentry *t_options;
Steven Rostedta8259072009-02-26 22:19:12 -05004310
4311 t_options = trace_options_init_dentry();
4312 if (!t_options)
4313 return NULL;
4314
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004315 return trace_create_file(option, 0644, t_options, (void *)index,
Steven Rostedta8259072009-02-26 22:19:12 -05004316 &trace_options_core_fops);
Steven Rostedta8259072009-02-26 22:19:12 -05004317}
4318
4319static __init void create_trace_options_dir(void)
4320{
4321 struct dentry *t_options;
Steven Rostedta8259072009-02-26 22:19:12 -05004322 int i;
4323
4324 t_options = trace_options_init_dentry();
4325 if (!t_options)
4326 return;
4327
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004328 for (i = 0; trace_options[i]; i++)
4329 create_trace_option_core_file(trace_options[i], i);
Steven Rostedta8259072009-02-26 22:19:12 -05004330}
4331
Frédéric Weisbeckerb5ad3842008-09-23 11:34:32 +01004332static __init int tracer_init_debugfs(void)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004333{
4334 struct dentry *d_tracer;
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01004335 int cpu;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004336
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08004337 trace_access_lock_init();
4338
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004339 d_tracer = tracing_init_dentry();
4340
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004341 trace_create_file("tracing_enabled", 0644, d_tracer,
4342 &global_trace, &tracing_ctrl_fops);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004343
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004344 trace_create_file("trace_options", 0644, d_tracer,
4345 NULL, &tracing_iter_fops);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004346
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004347 trace_create_file("tracing_cpumask", 0644, d_tracer,
4348 NULL, &tracing_cpumask_fops);
Steven Rostedta8259072009-02-26 22:19:12 -05004349
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004350 trace_create_file("trace", 0644, d_tracer,
4351 (void *) TRACE_PIPE_ALL_CPU, &tracing_fops);
Ingo Molnarc7078de2008-05-12 21:20:52 +02004352
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004353 trace_create_file("available_tracers", 0444, d_tracer,
4354 &global_trace, &show_traces_fops);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004355
Li Zefan339ae5d2009-04-17 10:34:30 +08004356 trace_create_file("current_tracer", 0644, d_tracer,
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004357 &global_trace, &set_tracer_fops);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004358
Steven Rostedt5d4a9db2009-08-27 16:52:21 -04004359#ifdef CONFIG_TRACER_MAX_TRACE
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004360 trace_create_file("tracing_max_latency", 0644, d_tracer,
4361 &tracing_max_latency, &tracing_max_lat_fops);
Tim Bird0e950172010-02-25 15:36:43 -08004362#endif
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004363
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004364 trace_create_file("tracing_thresh", 0644, d_tracer,
4365 &tracing_thresh, &tracing_max_lat_fops);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004366
Li Zefan339ae5d2009-04-17 10:34:30 +08004367 trace_create_file("README", 0444, d_tracer,
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004368 NULL, &tracing_readme_fops);
Ingo Molnar7bd2f242008-05-12 21:20:45 +02004369
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004370 trace_create_file("trace_pipe", 0444, d_tracer,
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01004371 (void *) TRACE_PIPE_ALL_CPU, &tracing_pipe_fops);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004372
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004373 trace_create_file("buffer_size_kb", 0644, d_tracer,
4374 &global_trace, &tracing_entries_fops);
Steven Rostedta98a3c32008-05-12 21:20:59 +02004375
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004376 trace_create_file("trace_marker", 0220, d_tracer,
4377 NULL, &tracing_mark_fops);
Pekka Paalanen5bf9a1e2008-09-16 22:06:42 +03004378
Avadh Patel69abe6a2009-04-10 16:04:48 -04004379 trace_create_file("saved_cmdlines", 0444, d_tracer,
4380 NULL, &tracing_saved_cmdlines_fops);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004381
Zhaolei5079f322009-08-25 16:12:56 +08004382 trace_create_file("trace_clock", 0644, d_tracer, NULL,
4383 &trace_clock_fops);
4384
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004385#ifdef CONFIG_DYNAMIC_FTRACE
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004386 trace_create_file("dyn_ftrace_total_info", 0444, d_tracer,
4387 &ftrace_update_tot_cnt, &tracing_dyn_info_fops);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004388#endif
Ingo Molnard618b3e2008-05-12 21:20:49 +02004389#ifdef CONFIG_SYSPROF_TRACER
4390 init_tracer_sysprof_debugfs(d_tracer);
4391#endif
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01004392
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004393 create_trace_options_dir();
4394
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01004395 for_each_tracing_cpu(cpu)
4396 tracing_init_debugfs_percpu(cpu);
4397
Frédéric Weisbeckerb5ad3842008-09-23 11:34:32 +01004398 return 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004399}
4400
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004401static int trace_panic_handler(struct notifier_block *this,
4402 unsigned long event, void *unused)
4403{
Steven Rostedt944ac422008-10-23 19:26:08 -04004404 if (ftrace_dump_on_oops)
Frederic Weisbeckercecbca92010-04-18 19:08:41 +02004405 ftrace_dump(ftrace_dump_on_oops);
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004406 return NOTIFY_OK;
4407}
4408
4409static struct notifier_block trace_panic_notifier = {
4410 .notifier_call = trace_panic_handler,
4411 .next = NULL,
4412 .priority = 150 /* priority: INT_MAX >= x >= 0 */
4413};
4414
4415static int trace_die_handler(struct notifier_block *self,
4416 unsigned long val,
4417 void *data)
4418{
4419 switch (val) {
4420 case DIE_OOPS:
Steven Rostedt944ac422008-10-23 19:26:08 -04004421 if (ftrace_dump_on_oops)
Frederic Weisbeckercecbca92010-04-18 19:08:41 +02004422 ftrace_dump(ftrace_dump_on_oops);
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004423 break;
4424 default:
4425 break;
4426 }
4427 return NOTIFY_OK;
4428}
4429
4430static struct notifier_block trace_die_notifier = {
4431 .notifier_call = trace_die_handler,
4432 .priority = 200
4433};
4434
4435/*
4436 * printk is set to max of 1024, we really don't need it that big.
4437 * Nothing should be printing 1000 characters anyway.
4438 */
4439#define TRACE_MAX_PRINT 1000
4440
4441/*
4442 * Define here KERN_TRACE so that we have one place to modify
4443 * it if we decide to change what log level the ftrace dump
4444 * should be at.
4445 */
Steven Rostedt428aee12009-01-14 12:24:42 -05004446#define KERN_TRACE KERN_EMERG
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004447
4448static void
4449trace_printk_seq(struct trace_seq *s)
4450{
4451 /* Probably should print a warning here. */
4452 if (s->len >= 1000)
4453 s->len = 1000;
4454
4455 /* should be zero ended, but we are paranoid. */
4456 s->buffer[s->len] = 0;
4457
4458 printk(KERN_TRACE "%s", s->buffer);
4459
Steven Rostedtf9520752009-03-02 14:04:40 -05004460 trace_seq_init(s);
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004461}
4462
Frederic Weisbeckercecbca92010-04-18 19:08:41 +02004463static void
4464__ftrace_dump(bool disable_tracing, enum ftrace_dump_mode oops_dump_mode)
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004465{
Thomas Gleixner445c8952009-12-02 19:49:50 +01004466 static arch_spinlock_t ftrace_dump_lock =
Thomas Gleixneredc35bd2009-12-03 12:38:57 +01004467 (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004468 /* use static because iter can be a bit big for the stack */
4469 static struct trace_iterator iter;
Frederic Weisbeckercf586b62009-03-22 05:04:35 +01004470 unsigned int old_userobj;
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004471 static int dump_ran;
Steven Rostedtd7690412008-10-01 00:29:53 -04004472 unsigned long flags;
4473 int cnt = 0, cpu;
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004474
4475 /* only one dump */
Steven Rostedtcd891ae2009-04-28 11:39:34 -04004476 local_irq_save(flags);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01004477 arch_spin_lock(&ftrace_dump_lock);
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004478 if (dump_ran)
4479 goto out;
4480
4481 dump_ran = 1;
4482
Steven Rostedt0ee6b6c2009-01-14 14:50:19 -05004483 tracing_off();
Frederic Weisbeckercf586b62009-03-22 05:04:35 +01004484
4485 if (disable_tracing)
4486 ftrace_kill();
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004487
Steven Rostedtd7690412008-10-01 00:29:53 -04004488 for_each_tracing_cpu(cpu) {
4489 atomic_inc(&global_trace.data[cpu]->disabled);
4490 }
4491
Frederic Weisbeckercf586b62009-03-22 05:04:35 +01004492 old_userobj = trace_flags & TRACE_ITER_SYM_USEROBJ;
4493
Török Edwinb54d3de2008-11-22 13:28:48 +02004494 /* don't look at user memory in panic mode */
4495 trace_flags &= ~TRACE_ITER_SYM_USEROBJ;
4496
Steven Rostedte543ad72009-03-04 18:20:36 -05004497 /* Simulate the iterator */
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004498 iter.tr = &global_trace;
4499 iter.trace = current_trace;
Frederic Weisbeckercecbca92010-04-18 19:08:41 +02004500
4501 switch (oops_dump_mode) {
4502 case DUMP_ALL:
4503 iter.cpu_file = TRACE_PIPE_ALL_CPU;
4504 break;
4505 case DUMP_ORIG:
4506 iter.cpu_file = raw_smp_processor_id();
4507 break;
4508 case DUMP_NONE:
4509 goto out_enable;
4510 default:
4511 printk(KERN_TRACE "Bad dumping mode, switching to all CPUs dump\n");
4512 iter.cpu_file = TRACE_PIPE_ALL_CPU;
4513 }
4514
4515 printk(KERN_TRACE "Dumping ftrace buffer:\n");
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004516
4517 /*
4518 * We need to stop all tracing on all CPUS to read the
4519 * the next buffer. This is a bit expensive, but is
4520 * not done often. We fill all what we can read,
4521 * and then release the locks again.
4522 */
4523
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004524 while (!trace_empty(&iter)) {
4525
4526 if (!cnt)
4527 printk(KERN_TRACE "---------------------------------\n");
4528
4529 cnt++;
4530
4531 /* reset all but tr, trace, and overruns */
4532 memset(&iter.seq, 0,
4533 sizeof(struct trace_iterator) -
4534 offsetof(struct trace_iterator, seq));
4535 iter.iter_flags |= TRACE_FILE_LAT_FMT;
4536 iter.pos = -1;
4537
4538 if (find_next_entry_inc(&iter) != NULL) {
Lai Jiangshan74e7ff82009-07-28 20:17:22 +08004539 int ret;
4540
4541 ret = print_trace_line(&iter);
4542 if (ret != TRACE_TYPE_NO_CONSUME)
4543 trace_consume(&iter);
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004544 }
4545
4546 trace_printk_seq(&iter.seq);
4547 }
4548
4549 if (!cnt)
4550 printk(KERN_TRACE " (ftrace buffer empty)\n");
4551 else
4552 printk(KERN_TRACE "---------------------------------\n");
4553
Frederic Weisbeckercecbca92010-04-18 19:08:41 +02004554 out_enable:
Frederic Weisbeckercf586b62009-03-22 05:04:35 +01004555 /* Re-enable tracing if requested */
4556 if (!disable_tracing) {
4557 trace_flags |= old_userobj;
4558
4559 for_each_tracing_cpu(cpu) {
4560 atomic_dec(&global_trace.data[cpu]->disabled);
4561 }
4562 tracing_on();
4563 }
4564
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004565 out:
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01004566 arch_spin_unlock(&ftrace_dump_lock);
Steven Rostedtcd891ae2009-04-28 11:39:34 -04004567 local_irq_restore(flags);
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004568}
4569
Frederic Weisbeckercf586b62009-03-22 05:04:35 +01004570/* By default: disable tracing after the dump */
Frederic Weisbeckercecbca92010-04-18 19:08:41 +02004571void ftrace_dump(enum ftrace_dump_mode oops_dump_mode)
Frederic Weisbeckercf586b62009-03-22 05:04:35 +01004572{
Frederic Weisbeckercecbca92010-04-18 19:08:41 +02004573 __ftrace_dump(true, oops_dump_mode);
Frederic Weisbeckercf586b62009-03-22 05:04:35 +01004574}
4575
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004576__init static int tracer_alloc_buffers(void)
4577{
Steven Rostedt73c51622009-03-11 13:42:01 -04004578 int ring_buf_size;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004579 int i;
Rusty Russell9e01c1b2009-01-01 10:12:22 +10304580 int ret = -ENOMEM;
4581
4582 if (!alloc_cpumask_var(&tracing_buffer_mask, GFP_KERNEL))
4583 goto out;
4584
4585 if (!alloc_cpumask_var(&tracing_cpumask, GFP_KERNEL))
4586 goto out_free_buffer_mask;
4587
Steven Rostedt73c51622009-03-11 13:42:01 -04004588 /* To save memory, keep the ring buffer size to its minimum */
4589 if (ring_buffer_expanded)
4590 ring_buf_size = trace_buf_size;
4591 else
4592 ring_buf_size = 1;
4593
Rusty Russell9e01c1b2009-01-01 10:12:22 +10304594 cpumask_copy(tracing_buffer_mask, cpu_possible_mask);
4595 cpumask_copy(tracing_cpumask, cpu_all_mask);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004596
Steven Rostedtab464282008-05-12 21:21:00 +02004597 /* TODO: make the number of buffers hot pluggable with CPUS */
Steven Rostedt73c51622009-03-11 13:42:01 -04004598 global_trace.buffer = ring_buffer_alloc(ring_buf_size,
Steven Rostedt3928a8a2008-09-29 23:02:41 -04004599 TRACE_BUFFER_FLAGS);
4600 if (!global_trace.buffer) {
4601 printk(KERN_ERR "tracer: failed to allocate ring buffer!\n");
4602 WARN_ON(1);
Rusty Russell9e01c1b2009-01-01 10:12:22 +10304603 goto out_free_cpumask;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04004604 }
4605 global_trace.entries = ring_buffer_size(global_trace.buffer);
4606
Rusty Russell9e01c1b2009-01-01 10:12:22 +10304607
Steven Rostedt3928a8a2008-09-29 23:02:41 -04004608#ifdef CONFIG_TRACER_MAX_TRACE
KOSAKI Motohiroef710e12010-07-01 14:34:35 +09004609 max_tr.buffer = ring_buffer_alloc(1, TRACE_BUFFER_FLAGS);
Steven Rostedt3928a8a2008-09-29 23:02:41 -04004610 if (!max_tr.buffer) {
4611 printk(KERN_ERR "tracer: failed to allocate max ring buffer!\n");
4612 WARN_ON(1);
4613 ring_buffer_free(global_trace.buffer);
Rusty Russell9e01c1b2009-01-01 10:12:22 +10304614 goto out_free_cpumask;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04004615 }
KOSAKI Motohiroef710e12010-07-01 14:34:35 +09004616 max_tr.entries = 1;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04004617#endif
4618
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02004619 /* Allocate the first page for all buffers */
Steven Rostedtab464282008-05-12 21:21:00 +02004620 for_each_tracing_cpu(i) {
jolsa@redhat.com566b0aa2009-07-16 21:44:26 +02004621 global_trace.data[i] = &per_cpu(global_trace_cpu, i);
Tejun Heo9705f692009-10-29 22:34:13 +09004622 max_tr.data[i] = &per_cpu(max_tr_data, i);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004623 }
4624
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004625 trace_init_cmdlines();
4626
Frédéric Weisbecker43a15382008-09-21 20:16:30 +02004627 register_tracer(&nop_trace);
Steven Rostedt79fb0762009-02-02 21:38:33 -05004628 current_trace = &nop_trace;
Steven Rostedt60a11772008-05-12 21:20:44 +02004629 /* All seems OK, enable tracing */
4630 tracing_disabled = 0;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04004631
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004632 atomic_notifier_chain_register(&panic_notifier_list,
4633 &trace_panic_notifier);
4634
4635 register_die_notifier(&trace_die_notifier);
Frederic Weisbecker2fc1dfb2009-03-16 01:45:03 +01004636
4637 return 0;
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004638
Rusty Russell9e01c1b2009-01-01 10:12:22 +10304639out_free_cpumask:
4640 free_cpumask_var(tracing_cpumask);
4641out_free_buffer_mask:
4642 free_cpumask_var(tracing_buffer_mask);
4643out:
4644 return ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004645}
Steven Rostedtb2821ae2009-02-02 21:38:32 -05004646
4647__init static int clear_boot_tracer(void)
4648{
4649 /*
4650 * The default tracer at boot buffer is an init section.
4651 * This function is called in lateinit. If we did not
4652 * find the boot tracer, then clear it out, to prevent
4653 * later registration from accessing the buffer that is
4654 * about to be freed.
4655 */
4656 if (!default_bootup_tracer)
4657 return 0;
4658
4659 printk(KERN_INFO "ftrace bootup tracer '%s' not registered.\n",
4660 default_bootup_tracer);
4661 default_bootup_tracer = NULL;
4662
4663 return 0;
4664}
4665
Frédéric Weisbeckerb5ad3842008-09-23 11:34:32 +01004666early_initcall(tracer_alloc_buffers);
4667fs_initcall(tracer_init_debugfs);
Steven Rostedtb2821ae2009-02-02 21:38:32 -05004668late_initcall(clear_boot_tracer);