blob: af9042977c086020e3bb6cee7fadc464ca634f29 [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 Rostedtb8de7bd2009-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 Rostedtb8de7bd2009-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());
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100663 arch_spin_lock(&ftrace_max_lock);
Steven Rostedt3928a8a2008-09-29 23:02:41 -0400664
665 tr->buffer = max_tr.buffer;
666 max_tr.buffer = buf;
667
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200668 __update_max_tr(tr, tsk, cpu);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100669 arch_spin_unlock(&ftrace_max_lock);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200670}
671
672/**
673 * update_max_tr_single - only copy one trace over, and reset the rest
674 * @tr - tracer
675 * @tsk - task with the latency
676 * @cpu - the cpu of the buffer to copy.
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200677 *
678 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200679 */
Ingo Molnare309b412008-05-12 21:20:51 +0200680void
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200681update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
682{
Steven Rostedt3928a8a2008-09-29 23:02:41 -0400683 int ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200684
Steven Rostedtb8de7bd2009-08-31 22:32:27 -0400685 if (trace_stop_count)
686 return;
687
Steven Rostedt4c11d7a2008-05-12 21:20:43 +0200688 WARN_ON_ONCE(!irqs_disabled());
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100689 arch_spin_lock(&ftrace_max_lock);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200690
Steven Rostedtd7690412008-10-01 00:29:53 -0400691 ftrace_disable_cpu();
692
Steven Rostedt3928a8a2008-09-29 23:02:41 -0400693 ret = ring_buffer_swap_cpu(max_tr.buffer, tr->buffer, cpu);
694
Steven Rostedte8165db2009-09-03 19:13:05 -0400695 if (ret == -EBUSY) {
696 /*
697 * We failed to swap the buffer due to a commit taking
698 * place on this CPU. We fail to record, but we reset
699 * the max trace buffer (no one writes directly to it)
700 * and flag that it failed.
701 */
702 trace_array_printk(&max_tr, _THIS_IP_,
703 "Failed to swap buffers due to commit in progress\n");
704 }
705
Steven Rostedtd7690412008-10-01 00:29:53 -0400706 ftrace_enable_cpu();
707
Steven Rostedte8165db2009-09-03 19:13:05 -0400708 WARN_ON_ONCE(ret && ret != -EAGAIN && ret != -EBUSY);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200709
710 __update_max_tr(tr, tsk, cpu);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100711 arch_spin_unlock(&ftrace_max_lock);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200712}
Steven Rostedt5d4a9db2009-08-27 16:52:21 -0400713#endif /* CONFIG_TRACER_MAX_TRACE */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200714
Steven Rostedt4fcdae82008-05-12 21:21:00 +0200715/**
716 * register_tracer - register a tracer with the ftrace system.
717 * @type - the plugin for the tracer
718 *
719 * Register a new plugin tracer.
720 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200721int register_tracer(struct tracer *type)
Hannes Edere7669b82009-02-10 19:44:45 +0100722__releases(kernel_lock)
723__acquires(kernel_lock)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200724{
725 struct tracer *t;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200726 int ret = 0;
727
728 if (!type->name) {
729 pr_info("Tracer must have a name\n");
730 return -1;
731 }
732
Li Zefanee6c2c12009-09-18 14:06:47 +0800733 if (strlen(type->name) > MAX_TRACER_SIZE) {
734 pr_info("Tracer has a name longer than %d\n", MAX_TRACER_SIZE);
735 return -1;
736 }
737
Ingo Molnar86fa2f62008-11-19 10:00:15 +0100738 /*
739 * When this gets called we hold the BKL which means that
740 * preemption is disabled. Various trace selftests however
741 * need to disable and enable preemption for successful tests.
742 * So we drop the BKL here and grab it after the tests again.
743 */
744 unlock_kernel();
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200745 mutex_lock(&trace_types_lock);
Ingo Molnar86fa2f62008-11-19 10:00:15 +0100746
Frederic Weisbecker8e1b82e2008-12-06 03:41:33 +0100747 tracing_selftest_running = true;
748
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200749 for (t = trace_types; t; t = t->next) {
750 if (strcmp(type->name, t->name) == 0) {
751 /* already found */
Li Zefanee6c2c12009-09-18 14:06:47 +0800752 pr_info("Tracer %s already registered\n",
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200753 type->name);
754 ret = -1;
755 goto out;
756 }
757 }
758
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +0100759 if (!type->set_flag)
760 type->set_flag = &dummy_set_flag;
761 if (!type->flags)
762 type->flags = &dummy_tracer_flags;
763 else
764 if (!type->flags->opts)
765 type->flags->opts = dummy_tracer_opt;
Frederic Weisbecker6eaaa5d2009-02-11 02:25:00 +0100766 if (!type->wait_pipe)
767 type->wait_pipe = default_wait_pipe;
768
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +0100769
Steven Rostedt60a11772008-05-12 21:20:44 +0200770#ifdef CONFIG_FTRACE_STARTUP_TEST
Steven Rostedtb2821ae2009-02-02 21:38:32 -0500771 if (type->selftest && !tracing_selftest_disabled) {
Steven Rostedt60a11772008-05-12 21:20:44 +0200772 struct tracer *saved_tracer = current_trace;
Steven Rostedt60a11772008-05-12 21:20:44 +0200773 struct trace_array *tr = &global_trace;
Frederic Weisbeckerff325042008-12-04 23:47:35 +0100774
Steven Rostedt60a11772008-05-12 21:20:44 +0200775 /*
776 * Run a selftest on this tracer.
777 * Here we reset the trace buffer, and set the current
778 * tracer to be this tracer. The tracer can then run some
779 * internal tracing to verify that everything is in order.
780 * If we fail, we do not register this tracer.
781 */
Steven Rostedt76f0d072009-09-04 12:12:39 -0400782 tracing_reset_online_cpus(tr);
Ingo Molnar86fa2f62008-11-19 10:00:15 +0100783
Steven Rostedt60a11772008-05-12 21:20:44 +0200784 current_trace = type;
Steven Rostedt60a11772008-05-12 21:20:44 +0200785 /* the test is responsible for initializing and enabling */
786 pr_info("Testing tracer %s: ", type->name);
787 ret = type->selftest(type, tr);
788 /* the test is responsible for resetting too */
789 current_trace = saved_tracer;
Steven Rostedt60a11772008-05-12 21:20:44 +0200790 if (ret) {
791 printk(KERN_CONT "FAILED!\n");
792 goto out;
793 }
Steven Rostedt1d4db002008-05-12 21:20:45 +0200794 /* Only reset on passing, to avoid touching corrupted buffers */
Steven Rostedt76f0d072009-09-04 12:12:39 -0400795 tracing_reset_online_cpus(tr);
Ingo Molnar86fa2f62008-11-19 10:00:15 +0100796
Steven Rostedt60a11772008-05-12 21:20:44 +0200797 printk(KERN_CONT "PASSED\n");
798 }
799#endif
800
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200801 type->next = trace_types;
802 trace_types = type;
Steven Rostedt60a11772008-05-12 21:20:44 +0200803
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200804 out:
Frederic Weisbecker8e1b82e2008-12-06 03:41:33 +0100805 tracing_selftest_running = false;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200806 mutex_unlock(&trace_types_lock);
807
Steven Rostedtdac74942009-02-05 01:13:38 -0500808 if (ret || !default_bootup_tracer)
809 goto out_unlock;
Steven Rostedtb2821ae2009-02-02 21:38:32 -0500810
Li Zefanee6c2c12009-09-18 14:06:47 +0800811 if (strncmp(default_bootup_tracer, type->name, MAX_TRACER_SIZE))
Steven Rostedtdac74942009-02-05 01:13:38 -0500812 goto out_unlock;
813
814 printk(KERN_INFO "Starting tracer '%s'\n", type->name);
815 /* Do we want this tracer to start on bootup? */
816 tracing_set_tracer(type->name);
817 default_bootup_tracer = NULL;
818 /* disable other selftests, since this will break it. */
819 tracing_selftest_disabled = 1;
820#ifdef CONFIG_FTRACE_STARTUP_TEST
821 printk(KERN_INFO "Disabling FTRACE selftests due to running tracer '%s'\n",
822 type->name);
823#endif
824
825 out_unlock:
Steven Rostedtb2821ae2009-02-02 21:38:32 -0500826 lock_kernel();
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200827 return ret;
828}
829
830void unregister_tracer(struct tracer *type)
831{
832 struct tracer **t;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200833
834 mutex_lock(&trace_types_lock);
835 for (t = &trace_types; *t; t = &(*t)->next) {
836 if (*t == type)
837 goto found;
838 }
Li Zefanee6c2c12009-09-18 14:06:47 +0800839 pr_info("Tracer %s not registered\n", type->name);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200840 goto out;
841
842 found:
843 *t = (*t)->next;
Arnaldo Carvalho de Melob5db03c2009-02-07 18:52:59 -0200844
845 if (type == current_trace && tracer_enabled) {
846 tracer_enabled = 0;
847 tracing_stop();
848 if (current_trace->stop)
849 current_trace->stop(&global_trace);
850 current_trace = &nop_trace;
851 }
Li Zefanee6c2c12009-09-18 14:06:47 +0800852out:
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200853 mutex_unlock(&trace_types_lock);
854}
855
Steven Rostedt283740c2010-03-12 19:48:41 -0500856static void __tracing_reset(struct ring_buffer *buffer, int cpu)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200857{
Steven Rostedtd7690412008-10-01 00:29:53 -0400858 ftrace_disable_cpu();
Steven Rostedt283740c2010-03-12 19:48:41 -0500859 ring_buffer_reset_cpu(buffer, cpu);
Steven Rostedtd7690412008-10-01 00:29:53 -0400860 ftrace_enable_cpu();
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200861}
862
Steven Rostedtf6339032009-09-04 12:35:16 -0400863void tracing_reset(struct trace_array *tr, int cpu)
864{
865 struct ring_buffer *buffer = tr->buffer;
866
867 ring_buffer_record_disable(buffer);
868
869 /* Make sure all commits have finished */
870 synchronize_sched();
Steven Rostedt283740c2010-03-12 19:48:41 -0500871 __tracing_reset(buffer, cpu);
Steven Rostedtf6339032009-09-04 12:35:16 -0400872
873 ring_buffer_record_enable(buffer);
874}
875
Pekka J Enberg213cc062008-12-19 12:08:39 +0200876void tracing_reset_online_cpus(struct trace_array *tr)
877{
Steven Rostedt621968c2009-09-04 12:02:35 -0400878 struct ring_buffer *buffer = tr->buffer;
Pekka J Enberg213cc062008-12-19 12:08:39 +0200879 int cpu;
880
Steven Rostedt621968c2009-09-04 12:02:35 -0400881 ring_buffer_record_disable(buffer);
882
883 /* Make sure all commits have finished */
884 synchronize_sched();
885
Pekka J Enberg213cc062008-12-19 12:08:39 +0200886 tr->time_start = ftrace_now(tr->cpu);
887
888 for_each_online_cpu(cpu)
Steven Rostedt283740c2010-03-12 19:48:41 -0500889 __tracing_reset(buffer, cpu);
Steven Rostedt621968c2009-09-04 12:02:35 -0400890
891 ring_buffer_record_enable(buffer);
Pekka J Enberg213cc062008-12-19 12:08:39 +0200892}
893
Steven Rostedt9456f0f2009-05-06 21:54:09 -0400894void tracing_reset_current(int cpu)
895{
896 tracing_reset(&global_trace, cpu);
897}
898
899void tracing_reset_current_online_cpus(void)
900{
901 tracing_reset_online_cpus(&global_trace);
902}
903
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200904#define SAVED_CMDLINES 128
Thomas Gleixner2c7eea42009-03-18 09:03:19 +0100905#define NO_CMDLINE_MAP UINT_MAX
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200906static unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1];
907static unsigned map_cmdline_to_pid[SAVED_CMDLINES];
908static char saved_cmdlines[SAVED_CMDLINES][TASK_COMM_LEN];
909static int cmdline_idx;
Thomas Gleixneredc35bd2009-12-03 12:38:57 +0100910static arch_spinlock_t trace_cmdline_lock = __ARCH_SPIN_LOCK_UNLOCKED;
Steven Rostedt25b0b442008-05-12 21:21:00 +0200911
Steven Rostedt25b0b442008-05-12 21:21:00 +0200912/* temporary disable recording */
Hannes Eder4fd27352009-02-10 19:44:12 +0100913static atomic_t trace_record_cmdline_disabled __read_mostly;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200914
915static void trace_init_cmdlines(void)
916{
Thomas Gleixner2c7eea42009-03-18 09:03:19 +0100917 memset(&map_pid_to_cmdline, NO_CMDLINE_MAP, sizeof(map_pid_to_cmdline));
918 memset(&map_cmdline_to_pid, NO_CMDLINE_MAP, sizeof(map_cmdline_to_pid));
Steven Rostedtbc0c38d2008-05-12 21:20:42 +0200919 cmdline_idx = 0;
920}
921
Carsten Emdeb5130b12009-09-13 01:43:07 +0200922int is_tracing_stopped(void)
923{
924 return trace_stop_count;
925}
926
Steven Rostedt0f048702008-11-05 16:05:44 -0500927/**
Steven Rostedt69bb54e2008-11-21 12:59:38 -0500928 * ftrace_off_permanent - disable all ftrace code permanently
929 *
930 * This should only be called when a serious anomally has
931 * been detected. This will turn off the function tracing,
932 * ring buffers, and other tracing utilites. It takes no
933 * locks and can be called from any context.
934 */
935void ftrace_off_permanent(void)
936{
937 tracing_disabled = 1;
938 ftrace_stop();
939 tracing_off_permanent();
940}
941
942/**
Steven Rostedt0f048702008-11-05 16:05:44 -0500943 * tracing_start - quick start of the tracer
944 *
945 * If tracing is enabled but was stopped by tracing_stop,
946 * this will start the tracer back up.
947 */
948void tracing_start(void)
949{
950 struct ring_buffer *buffer;
951 unsigned long flags;
952
953 if (tracing_disabled)
954 return;
955
956 spin_lock_irqsave(&tracing_start_lock, flags);
Steven Rostedtb06a8302009-01-22 14:26:15 -0500957 if (--trace_stop_count) {
958 if (trace_stop_count < 0) {
959 /* Someone screwed up their debugging */
960 WARN_ON_ONCE(1);
961 trace_stop_count = 0;
962 }
Steven Rostedt0f048702008-11-05 16:05:44 -0500963 goto out;
964 }
965
Steven Rostedta2f80712010-03-12 19:56:00 -0500966 /* Prevent the buffers from switching */
967 arch_spin_lock(&ftrace_max_lock);
Steven Rostedt0f048702008-11-05 16:05:44 -0500968
969 buffer = global_trace.buffer;
970 if (buffer)
971 ring_buffer_record_enable(buffer);
972
973 buffer = max_tr.buffer;
974 if (buffer)
975 ring_buffer_record_enable(buffer);
976
Steven Rostedta2f80712010-03-12 19:56:00 -0500977 arch_spin_unlock(&ftrace_max_lock);
978
Steven Rostedt0f048702008-11-05 16:05:44 -0500979 ftrace_start();
980 out:
981 spin_unlock_irqrestore(&tracing_start_lock, flags);
982}
983
984/**
985 * tracing_stop - quick stop of the tracer
986 *
987 * Light weight way to stop tracing. Use in conjunction with
988 * tracing_start.
989 */
990void tracing_stop(void)
991{
992 struct ring_buffer *buffer;
993 unsigned long flags;
994
995 ftrace_stop();
996 spin_lock_irqsave(&tracing_start_lock, flags);
997 if (trace_stop_count++)
998 goto out;
999
Steven Rostedta2f80712010-03-12 19:56:00 -05001000 /* Prevent the buffers from switching */
1001 arch_spin_lock(&ftrace_max_lock);
1002
Steven Rostedt0f048702008-11-05 16:05:44 -05001003 buffer = global_trace.buffer;
1004 if (buffer)
1005 ring_buffer_record_disable(buffer);
1006
1007 buffer = max_tr.buffer;
1008 if (buffer)
1009 ring_buffer_record_disable(buffer);
1010
Steven Rostedta2f80712010-03-12 19:56:00 -05001011 arch_spin_unlock(&ftrace_max_lock);
1012
Steven Rostedt0f048702008-11-05 16:05:44 -05001013 out:
1014 spin_unlock_irqrestore(&tracing_start_lock, flags);
1015}
1016
Ingo Molnare309b412008-05-12 21:20:51 +02001017void trace_stop_cmdline_recording(void);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001018
Ingo Molnare309b412008-05-12 21:20:51 +02001019static void trace_save_cmdline(struct task_struct *tsk)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001020{
Carsten Emdea635cf02009-03-18 09:00:41 +01001021 unsigned pid, idx;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001022
1023 if (!tsk->pid || unlikely(tsk->pid > PID_MAX_DEFAULT))
1024 return;
1025
1026 /*
1027 * It's not the end of the world if we don't get
1028 * the lock, but we also don't want to spin
1029 * nor do we want to disable interrupts,
1030 * so if we miss here, then better luck next time.
1031 */
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001032 if (!arch_spin_trylock(&trace_cmdline_lock))
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001033 return;
1034
1035 idx = map_pid_to_cmdline[tsk->pid];
Thomas Gleixner2c7eea42009-03-18 09:03:19 +01001036 if (idx == NO_CMDLINE_MAP) {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001037 idx = (cmdline_idx + 1) % SAVED_CMDLINES;
1038
Carsten Emdea635cf02009-03-18 09:00:41 +01001039 /*
1040 * Check whether the cmdline buffer at idx has a pid
1041 * mapped. We are going to overwrite that entry so we
1042 * need to clear the map_pid_to_cmdline. Otherwise we
1043 * would read the new comm for the old pid.
1044 */
1045 pid = map_cmdline_to_pid[idx];
1046 if (pid != NO_CMDLINE_MAP)
1047 map_pid_to_cmdline[pid] = NO_CMDLINE_MAP;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001048
Carsten Emdea635cf02009-03-18 09:00:41 +01001049 map_cmdline_to_pid[idx] = tsk->pid;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001050 map_pid_to_cmdline[tsk->pid] = idx;
1051
1052 cmdline_idx = idx;
1053 }
1054
1055 memcpy(&saved_cmdlines[idx], tsk->comm, TASK_COMM_LEN);
1056
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001057 arch_spin_unlock(&trace_cmdline_lock);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001058}
1059
Steven Rostedt4ca53082009-03-16 19:20:15 -04001060void trace_find_cmdline(int pid, char comm[])
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001061{
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001062 unsigned map;
1063
Steven Rostedt4ca53082009-03-16 19:20:15 -04001064 if (!pid) {
1065 strcpy(comm, "<idle>");
1066 return;
1067 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001068
Steven Rostedt74bf4072010-01-25 15:11:53 -05001069 if (WARN_ON_ONCE(pid < 0)) {
1070 strcpy(comm, "<XXX>");
1071 return;
1072 }
1073
Steven Rostedt4ca53082009-03-16 19:20:15 -04001074 if (pid > PID_MAX_DEFAULT) {
1075 strcpy(comm, "<...>");
1076 return;
1077 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001078
Heiko Carstens5b6045a2009-05-26 17:28:02 +02001079 preempt_disable();
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001080 arch_spin_lock(&trace_cmdline_lock);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001081 map = map_pid_to_cmdline[pid];
Thomas Gleixner50d88752009-03-18 08:58:44 +01001082 if (map != NO_CMDLINE_MAP)
1083 strcpy(comm, saved_cmdlines[map]);
1084 else
1085 strcpy(comm, "<...>");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001086
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001087 arch_spin_unlock(&trace_cmdline_lock);
Heiko Carstens5b6045a2009-05-26 17:28:02 +02001088 preempt_enable();
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001089}
1090
Ingo Molnare309b412008-05-12 21:20:51 +02001091void tracing_record_cmdline(struct task_struct *tsk)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001092{
Thomas Gleixner18aecd32009-03-18 08:56:58 +01001093 if (atomic_read(&trace_record_cmdline_disabled) || !tracer_enabled ||
1094 !tracing_is_on())
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001095 return;
1096
1097 trace_save_cmdline(tsk);
1098}
1099
Pekka Paalanen45dcd8b2008-09-16 21:56:41 +03001100void
Steven Rostedt38697052008-10-01 13:14:09 -04001101tracing_generic_entry_update(struct trace_entry *entry, unsigned long flags,
1102 int pc)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001103{
1104 struct task_struct *tsk = current;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001105
Steven Rostedt777e2082008-09-29 23:02:42 -04001106 entry->preempt_count = pc & 0xff;
1107 entry->pid = (tsk) ? tsk->pid : 0;
Steven Rostedt637e7e82009-09-11 13:55:35 -04001108 entry->lock_depth = (tsk) ? tsk->lock_depth : 0;
Steven Rostedt777e2082008-09-29 23:02:42 -04001109 entry->flags =
Steven Rostedt92444892008-10-24 09:42:59 -04001110#ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
Steven Rostedt2e2ca152008-08-01 12:26:40 -04001111 (irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) |
Steven Rostedt92444892008-10-24 09:42:59 -04001112#else
1113 TRACE_FLAG_IRQS_NOSUPPORT |
1114#endif
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001115 ((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) |
1116 ((pc & SOFTIRQ_MASK) ? TRACE_FLAG_SOFTIRQ : 0) |
1117 (need_resched() ? TRACE_FLAG_NEED_RESCHED : 0);
1118}
Frederic Weisbeckerf413cdb2009-08-07 01:25:54 +02001119EXPORT_SYMBOL_GPL(tracing_generic_entry_update);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001120
Steven Rostedte77405a2009-09-02 14:17:06 -04001121struct ring_buffer_event *
1122trace_buffer_lock_reserve(struct ring_buffer *buffer,
1123 int type,
1124 unsigned long len,
1125 unsigned long flags, int pc)
Arnaldo Carvalho de Melo51a763d2009-02-05 16:14:13 -02001126{
1127 struct ring_buffer_event *event;
1128
Steven Rostedte77405a2009-09-02 14:17:06 -04001129 event = ring_buffer_lock_reserve(buffer, len);
Arnaldo Carvalho de Melo51a763d2009-02-05 16:14:13 -02001130 if (event != NULL) {
1131 struct trace_entry *ent = ring_buffer_event_data(event);
1132
1133 tracing_generic_entry_update(ent, flags, pc);
1134 ent->type = type;
1135 }
1136
1137 return event;
1138}
Arnaldo Carvalho de Melo51a763d2009-02-05 16:14:13 -02001139
Steven Rostedte77405a2009-09-02 14:17:06 -04001140static inline void
1141__trace_buffer_unlock_commit(struct ring_buffer *buffer,
1142 struct ring_buffer_event *event,
1143 unsigned long flags, int pc,
1144 int wake)
Arnaldo Carvalho de Melo51a763d2009-02-05 16:14:13 -02001145{
Steven Rostedte77405a2009-09-02 14:17:06 -04001146 ring_buffer_unlock_commit(buffer, event);
Arnaldo Carvalho de Melo51a763d2009-02-05 16:14:13 -02001147
Steven Rostedte77405a2009-09-02 14:17:06 -04001148 ftrace_trace_stack(buffer, flags, 6, pc);
1149 ftrace_trace_userstack(buffer, flags, pc);
Frederic Weisbecker07edf712009-03-22 23:10:46 +01001150
1151 if (wake)
1152 trace_wake_up();
1153}
1154
Steven Rostedte77405a2009-09-02 14:17:06 -04001155void trace_buffer_unlock_commit(struct ring_buffer *buffer,
1156 struct ring_buffer_event *event,
1157 unsigned long flags, int pc)
Frederic Weisbecker07edf712009-03-22 23:10:46 +01001158{
Steven Rostedte77405a2009-09-02 14:17:06 -04001159 __trace_buffer_unlock_commit(buffer, event, flags, pc, 1);
Arnaldo Carvalho de Melo51a763d2009-02-05 16:14:13 -02001160}
1161
Steven Rostedtef5580d2009-02-27 19:38:04 -05001162struct ring_buffer_event *
Steven Rostedte77405a2009-09-02 14:17:06 -04001163trace_current_buffer_lock_reserve(struct ring_buffer **current_rb,
1164 int type, unsigned long len,
Steven Rostedtef5580d2009-02-27 19:38:04 -05001165 unsigned long flags, int pc)
1166{
Steven Rostedte77405a2009-09-02 14:17:06 -04001167 *current_rb = global_trace.buffer;
1168 return trace_buffer_lock_reserve(*current_rb,
Steven Rostedtef5580d2009-02-27 19:38:04 -05001169 type, len, flags, pc);
1170}
Steven Rostedt94487d62009-05-05 19:22:53 -04001171EXPORT_SYMBOL_GPL(trace_current_buffer_lock_reserve);
Steven Rostedtef5580d2009-02-27 19:38:04 -05001172
Steven Rostedte77405a2009-09-02 14:17:06 -04001173void trace_current_buffer_unlock_commit(struct ring_buffer *buffer,
1174 struct ring_buffer_event *event,
Steven Rostedtef5580d2009-02-27 19:38:04 -05001175 unsigned long flags, int pc)
1176{
Steven Rostedte77405a2009-09-02 14:17:06 -04001177 __trace_buffer_unlock_commit(buffer, event, flags, pc, 1);
Frederic Weisbecker07edf712009-03-22 23:10:46 +01001178}
Steven Rostedt94487d62009-05-05 19:22:53 -04001179EXPORT_SYMBOL_GPL(trace_current_buffer_unlock_commit);
Frederic Weisbecker07edf712009-03-22 23:10:46 +01001180
Steven Rostedte77405a2009-09-02 14:17:06 -04001181void trace_nowake_buffer_unlock_commit(struct ring_buffer *buffer,
1182 struct ring_buffer_event *event,
1183 unsigned long flags, int pc)
Frederic Weisbecker07edf712009-03-22 23:10:46 +01001184{
Steven Rostedte77405a2009-09-02 14:17:06 -04001185 __trace_buffer_unlock_commit(buffer, event, flags, pc, 0);
Steven Rostedtef5580d2009-02-27 19:38:04 -05001186}
Steven Rostedt94487d62009-05-05 19:22:53 -04001187EXPORT_SYMBOL_GPL(trace_nowake_buffer_unlock_commit);
Steven Rostedt77d9f462009-04-02 01:16:59 -04001188
Steven Rostedte77405a2009-09-02 14:17:06 -04001189void trace_current_buffer_discard_commit(struct ring_buffer *buffer,
1190 struct ring_buffer_event *event)
Steven Rostedt77d9f462009-04-02 01:16:59 -04001191{
Steven Rostedte77405a2009-09-02 14:17:06 -04001192 ring_buffer_discard_commit(buffer, event);
Steven Rostedtef5580d2009-02-27 19:38:04 -05001193}
Steven Rostedt12acd472009-04-17 16:01:56 -04001194EXPORT_SYMBOL_GPL(trace_current_buffer_discard_commit);
Steven Rostedtef5580d2009-02-27 19:38:04 -05001195
Ingo Molnare309b412008-05-12 21:20:51 +02001196void
Arnaldo Carvalho de Melo7be42152009-02-05 01:13:37 -05001197trace_function(struct trace_array *tr,
Steven Rostedt38697052008-10-01 13:14:09 -04001198 unsigned long ip, unsigned long parent_ip, unsigned long flags,
1199 int pc)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001200{
Tom Zanussie1112b42009-03-31 00:48:49 -05001201 struct ftrace_event_call *call = &event_function;
Steven Rostedte77405a2009-09-02 14:17:06 -04001202 struct ring_buffer *buffer = tr->buffer;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001203 struct ring_buffer_event *event;
Steven Rostedt777e2082008-09-29 23:02:42 -04001204 struct ftrace_entry *entry;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001205
Steven Rostedtd7690412008-10-01 00:29:53 -04001206 /* If we are reading the ring buffer, don't trace */
Rusty Russelldd17c8f2009-10-29 22:34:15 +09001207 if (unlikely(__this_cpu_read(ftrace_cpu_disabled)))
Steven Rostedtd7690412008-10-01 00:29:53 -04001208 return;
1209
Steven Rostedte77405a2009-09-02 14:17:06 -04001210 event = trace_buffer_lock_reserve(buffer, TRACE_FN, sizeof(*entry),
Arnaldo Carvalho de Melo51a763d2009-02-05 16:14:13 -02001211 flags, pc);
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001212 if (!event)
1213 return;
1214 entry = ring_buffer_event_data(event);
Steven Rostedt777e2082008-09-29 23:02:42 -04001215 entry->ip = ip;
1216 entry->parent_ip = parent_ip;
Tom Zanussie1112b42009-03-31 00:48:49 -05001217
Steven Rostedte77405a2009-09-02 14:17:06 -04001218 if (!filter_check_discard(call, entry, buffer, event))
1219 ring_buffer_unlock_commit(buffer, event);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001220}
1221
Ingo Molnare309b412008-05-12 21:20:51 +02001222void
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001223ftrace(struct trace_array *tr, struct trace_array_cpu *data,
Steven Rostedt38697052008-10-01 13:14:09 -04001224 unsigned long ip, unsigned long parent_ip, unsigned long flags,
1225 int pc)
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001226{
1227 if (likely(!atomic_read(&data->disabled)))
Arnaldo Carvalho de Melo7be42152009-02-05 01:13:37 -05001228 trace_function(tr, ip, parent_ip, flags, pc);
Ingo Molnar2e0f5762008-05-12 21:20:49 +02001229}
1230
Frederic Weisbeckerc0a0d0d2009-07-29 17:51:13 +02001231#ifdef CONFIG_STACKTRACE
Steven Rostedte77405a2009-09-02 14:17:06 -04001232static void __ftrace_trace_stack(struct ring_buffer *buffer,
Steven Rostedt53614992009-01-15 19:12:40 -05001233 unsigned long flags,
1234 int skip, int pc)
Ingo Molnar86387f72008-05-12 21:20:51 +02001235{
Tom Zanussie1112b42009-03-31 00:48:49 -05001236 struct ftrace_event_call *call = &event_kernel_stack;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001237 struct ring_buffer_event *event;
Steven Rostedt777e2082008-09-29 23:02:42 -04001238 struct stack_entry *entry;
Ingo Molnar86387f72008-05-12 21:20:51 +02001239 struct stack_trace trace;
1240
Steven Rostedte77405a2009-09-02 14:17:06 -04001241 event = trace_buffer_lock_reserve(buffer, TRACE_STACK,
Arnaldo Carvalho de Melo51a763d2009-02-05 16:14:13 -02001242 sizeof(*entry), flags, pc);
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001243 if (!event)
1244 return;
1245 entry = ring_buffer_event_data(event);
Steven Rostedt777e2082008-09-29 23:02:42 -04001246 memset(&entry->caller, 0, sizeof(entry->caller));
Ingo Molnar86387f72008-05-12 21:20:51 +02001247
1248 trace.nr_entries = 0;
1249 trace.max_entries = FTRACE_STACK_ENTRIES;
1250 trace.skip = skip;
Steven Rostedt777e2082008-09-29 23:02:42 -04001251 trace.entries = entry->caller;
Ingo Molnar86387f72008-05-12 21:20:51 +02001252
1253 save_stack_trace(&trace);
Steven Rostedte77405a2009-09-02 14:17:06 -04001254 if (!filter_check_discard(call, entry, buffer, event))
1255 ring_buffer_unlock_commit(buffer, event);
Ingo Molnarf0a920d2008-05-12 21:20:47 +02001256}
1257
Steven Rostedte77405a2009-09-02 14:17:06 -04001258void ftrace_trace_stack(struct ring_buffer *buffer, unsigned long flags,
1259 int skip, int pc)
Steven Rostedt53614992009-01-15 19:12:40 -05001260{
1261 if (!(trace_flags & TRACE_ITER_STACKTRACE))
1262 return;
1263
Steven Rostedte77405a2009-09-02 14:17:06 -04001264 __ftrace_trace_stack(buffer, flags, skip, pc);
Steven Rostedt53614992009-01-15 19:12:40 -05001265}
1266
Frederic Weisbeckerc0a0d0d2009-07-29 17:51:13 +02001267void __trace_stack(struct trace_array *tr, unsigned long flags, int skip,
1268 int pc)
Steven Rostedt38697052008-10-01 13:14:09 -04001269{
Steven Rostedte77405a2009-09-02 14:17:06 -04001270 __ftrace_trace_stack(tr->buffer, flags, skip, pc);
Steven Rostedt38697052008-10-01 13:14:09 -04001271}
1272
Steven Rostedt03889382009-12-11 09:48:22 -05001273/**
1274 * trace_dump_stack - record a stack back trace in the trace buffer
1275 */
1276void trace_dump_stack(void)
1277{
1278 unsigned long flags;
1279
1280 if (tracing_disabled || tracing_selftest_running)
Steven Rostedte36c5452009-12-14 15:58:33 -05001281 return;
Steven Rostedt03889382009-12-11 09:48:22 -05001282
1283 local_save_flags(flags);
1284
1285 /* skipping 3 traces, seems to get us at the caller of this function */
1286 __ftrace_trace_stack(global_trace.buffer, flags, 3, preempt_count());
1287}
1288
Steven Rostedte77405a2009-09-02 14:17:06 -04001289void
1290ftrace_trace_userstack(struct ring_buffer *buffer, unsigned long flags, int pc)
Török Edwin02b67512008-11-22 13:28:47 +02001291{
Tom Zanussie1112b42009-03-31 00:48:49 -05001292 struct ftrace_event_call *call = &event_user_stack;
Török Edwin8d7c6a92008-11-23 12:39:06 +02001293 struct ring_buffer_event *event;
Török Edwin02b67512008-11-22 13:28:47 +02001294 struct userstack_entry *entry;
1295 struct stack_trace trace;
Török Edwin02b67512008-11-22 13:28:47 +02001296
1297 if (!(trace_flags & TRACE_ITER_USERSTACKTRACE))
1298 return;
1299
Steven Rostedtb6345872010-03-12 20:03:30 -05001300 /*
1301 * NMIs can not handle page faults, even with fix ups.
1302 * The save user stack can (and often does) fault.
1303 */
1304 if (unlikely(in_nmi()))
1305 return;
1306
Steven Rostedte77405a2009-09-02 14:17:06 -04001307 event = trace_buffer_lock_reserve(buffer, TRACE_USER_STACK,
Arnaldo Carvalho de Melo51a763d2009-02-05 16:14:13 -02001308 sizeof(*entry), flags, pc);
Török Edwin02b67512008-11-22 13:28:47 +02001309 if (!event)
1310 return;
1311 entry = ring_buffer_event_data(event);
Török Edwin02b67512008-11-22 13:28:47 +02001312
Steven Rostedt48659d32009-09-11 11:36:23 -04001313 entry->tgid = current->tgid;
Török Edwin02b67512008-11-22 13:28:47 +02001314 memset(&entry->caller, 0, sizeof(entry->caller));
1315
1316 trace.nr_entries = 0;
1317 trace.max_entries = FTRACE_STACK_ENTRIES;
1318 trace.skip = 0;
1319 trace.entries = entry->caller;
1320
1321 save_stack_trace_user(&trace);
Steven Rostedte77405a2009-09-02 14:17:06 -04001322 if (!filter_check_discard(call, entry, buffer, event))
1323 ring_buffer_unlock_commit(buffer, event);
Török Edwin02b67512008-11-22 13:28:47 +02001324}
1325
Hannes Eder4fd27352009-02-10 19:44:12 +01001326#ifdef UNUSED
1327static void __trace_userstack(struct trace_array *tr, unsigned long flags)
Török Edwin02b67512008-11-22 13:28:47 +02001328{
Arnaldo Carvalho de Melo7be42152009-02-05 01:13:37 -05001329 ftrace_trace_userstack(tr, flags, preempt_count());
Török Edwin02b67512008-11-22 13:28:47 +02001330}
Hannes Eder4fd27352009-02-10 19:44:12 +01001331#endif /* UNUSED */
Török Edwin02b67512008-11-22 13:28:47 +02001332
Frederic Weisbeckerc0a0d0d2009-07-29 17:51:13 +02001333#endif /* CONFIG_STACKTRACE */
1334
Steven Rostedt38697052008-10-01 13:14:09 -04001335static void
Arnaldo Carvalho de Melo7be42152009-02-05 01:13:37 -05001336ftrace_trace_special(void *__tr,
Steven Rostedt38697052008-10-01 13:14:09 -04001337 unsigned long arg1, unsigned long arg2, unsigned long arg3,
1338 int pc)
Ingo Molnara4feb832008-05-12 21:21:02 +02001339{
Steven Rostedt60ba7702009-09-12 23:34:04 -04001340 struct ftrace_event_call *call = &event_special;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001341 struct ring_buffer_event *event;
Ingo Molnara4feb832008-05-12 21:21:02 +02001342 struct trace_array *tr = __tr;
Steven Rostedte77405a2009-09-02 14:17:06 -04001343 struct ring_buffer *buffer = tr->buffer;
Steven Rostedt777e2082008-09-29 23:02:42 -04001344 struct special_entry *entry;
Ingo Molnara4feb832008-05-12 21:21:02 +02001345
Steven Rostedte77405a2009-09-02 14:17:06 -04001346 event = trace_buffer_lock_reserve(buffer, TRACE_SPECIAL,
Arnaldo Carvalho de Melo51a763d2009-02-05 16:14:13 -02001347 sizeof(*entry), 0, pc);
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001348 if (!event)
1349 return;
1350 entry = ring_buffer_event_data(event);
Steven Rostedt777e2082008-09-29 23:02:42 -04001351 entry->arg1 = arg1;
1352 entry->arg2 = arg2;
1353 entry->arg3 = arg3;
Steven Rostedt60ba7702009-09-12 23:34:04 -04001354
1355 if (!filter_check_discard(call, entry, buffer, event))
1356 trace_buffer_unlock_commit(buffer, event, 0, pc);
Ingo Molnara4feb832008-05-12 21:21:02 +02001357}
1358
1359void
Steven Rostedt38697052008-10-01 13:14:09 -04001360__trace_special(void *__tr, void *__data,
1361 unsigned long arg1, unsigned long arg2, unsigned long arg3)
1362{
Arnaldo Carvalho de Melo7be42152009-02-05 01:13:37 -05001363 ftrace_trace_special(__tr, arg1, arg2, arg3, preempt_count());
Steven Rostedt38697052008-10-01 13:14:09 -04001364}
1365
1366void
Steven Rostedt4902f882008-05-22 00:22:18 -04001367ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3)
1368{
1369 struct trace_array *tr = &global_trace;
1370 struct trace_array_cpu *data;
Steven Rostedt5aa1ba62008-11-10 23:07:30 -05001371 unsigned long flags;
Steven Rostedt4902f882008-05-22 00:22:18 -04001372 int cpu;
Steven Rostedt38697052008-10-01 13:14:09 -04001373 int pc;
Steven Rostedt4902f882008-05-22 00:22:18 -04001374
Steven Rostedtc76f0692008-11-07 22:36:02 -05001375 if (tracing_disabled)
Steven Rostedt4902f882008-05-22 00:22:18 -04001376 return;
1377
Steven Rostedt38697052008-10-01 13:14:09 -04001378 pc = preempt_count();
Steven Rostedt5aa1ba62008-11-10 23:07:30 -05001379 local_irq_save(flags);
Steven Rostedt4902f882008-05-22 00:22:18 -04001380 cpu = raw_smp_processor_id();
1381 data = tr->data[cpu];
Steven Rostedt4902f882008-05-22 00:22:18 -04001382
Steven Rostedt5aa1ba62008-11-10 23:07:30 -05001383 if (likely(atomic_inc_return(&data->disabled) == 1))
Arnaldo Carvalho de Melo7be42152009-02-05 01:13:37 -05001384 ftrace_trace_special(tr, arg1, arg2, arg3, pc);
Steven Rostedt4902f882008-05-22 00:22:18 -04001385
Steven Rostedt5aa1ba62008-11-10 23:07:30 -05001386 atomic_dec(&data->disabled);
1387 local_irq_restore(flags);
Steven Rostedt4902f882008-05-22 00:22:18 -04001388}
1389
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001390/**
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001391 * trace_vbprintk - write binary msg to tracing buffer
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001392 *
1393 */
Steven Rostedt40ce74f2009-03-19 14:03:53 -04001394int trace_vbprintk(unsigned long ip, const char *fmt, va_list args)
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001395{
Thomas Gleixner445c8952009-12-02 19:49:50 +01001396 static arch_spinlock_t trace_buf_lock =
Thomas Gleixneredc35bd2009-12-03 12:38:57 +01001397 (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001398 static u32 trace_buf[TRACE_BUF_SIZE];
1399
Tom Zanussie1112b42009-03-31 00:48:49 -05001400 struct ftrace_event_call *call = &event_bprint;
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001401 struct ring_buffer_event *event;
Steven Rostedte77405a2009-09-02 14:17:06 -04001402 struct ring_buffer *buffer;
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001403 struct trace_array *tr = &global_trace;
1404 struct trace_array_cpu *data;
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001405 struct bprint_entry *entry;
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001406 unsigned long flags;
Steven Rostedt3189cdb2009-04-17 16:13:55 -04001407 int disable;
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001408 int cpu, len = 0, size, pc;
1409
1410 if (unlikely(tracing_selftest_running || tracing_disabled))
1411 return 0;
1412
1413 /* Don't pollute graph traces with trace_vprintk internals */
1414 pause_graph_tracing();
1415
1416 pc = preempt_count();
Steven Rostedt5168ae52010-06-03 09:36:50 -04001417 preempt_disable_notrace();
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001418 cpu = raw_smp_processor_id();
1419 data = tr->data[cpu];
1420
Steven Rostedt3189cdb2009-04-17 16:13:55 -04001421 disable = atomic_inc_return(&data->disabled);
1422 if (unlikely(disable != 1))
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001423 goto out;
1424
Steven Rostedt80370cb2009-03-10 17:16:35 -04001425 /* Lockdep uses trace_printk for lock tracing */
1426 local_irq_save(flags);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001427 arch_spin_lock(&trace_buf_lock);
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001428 len = vbin_printf(trace_buf, TRACE_BUF_SIZE, fmt, args);
1429
1430 if (len > TRACE_BUF_SIZE || len < 0)
1431 goto out_unlock;
1432
1433 size = sizeof(*entry) + sizeof(u32) * len;
Steven Rostedte77405a2009-09-02 14:17:06 -04001434 buffer = tr->buffer;
1435 event = trace_buffer_lock_reserve(buffer, TRACE_BPRINT, size,
1436 flags, pc);
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001437 if (!event)
1438 goto out_unlock;
1439 entry = ring_buffer_event_data(event);
1440 entry->ip = ip;
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001441 entry->fmt = fmt;
1442
1443 memcpy(entry->buf, trace_buf, sizeof(u32) * len);
Steven Rostedtd9313692010-01-06 17:27:11 -05001444 if (!filter_check_discard(call, entry, buffer, event)) {
Steven Rostedte77405a2009-09-02 14:17:06 -04001445 ring_buffer_unlock_commit(buffer, event);
Steven Rostedtd9313692010-01-06 17:27:11 -05001446 ftrace_trace_stack(buffer, flags, 6, pc);
1447 }
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001448
1449out_unlock:
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001450 arch_spin_unlock(&trace_buf_lock);
Steven Rostedt80370cb2009-03-10 17:16:35 -04001451 local_irq_restore(flags);
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001452
1453out:
Steven Rostedt3189cdb2009-04-17 16:13:55 -04001454 atomic_dec_return(&data->disabled);
Steven Rostedt5168ae52010-06-03 09:36:50 -04001455 preempt_enable_notrace();
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001456 unpause_graph_tracing();
1457
1458 return len;
1459}
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001460EXPORT_SYMBOL_GPL(trace_vbprintk);
1461
Steven Rostedt659372d2009-09-03 19:11:07 -04001462int trace_array_printk(struct trace_array *tr,
1463 unsigned long ip, const char *fmt, ...)
1464{
1465 int ret;
1466 va_list ap;
1467
1468 if (!(trace_flags & TRACE_ITER_PRINTK))
1469 return 0;
1470
1471 va_start(ap, fmt);
1472 ret = trace_array_vprintk(tr, ip, fmt, ap);
1473 va_end(ap);
1474 return ret;
1475}
1476
1477int trace_array_vprintk(struct trace_array *tr,
1478 unsigned long ip, const char *fmt, va_list args)
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001479{
Thomas Gleixneredc35bd2009-12-03 12:38:57 +01001480 static arch_spinlock_t trace_buf_lock = __ARCH_SPIN_LOCK_UNLOCKED;
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001481 static char trace_buf[TRACE_BUF_SIZE];
1482
Tom Zanussie1112b42009-03-31 00:48:49 -05001483 struct ftrace_event_call *call = &event_print;
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001484 struct ring_buffer_event *event;
Steven Rostedte77405a2009-09-02 14:17:06 -04001485 struct ring_buffer *buffer;
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001486 struct trace_array_cpu *data;
1487 int cpu, len = 0, size, pc;
1488 struct print_entry *entry;
1489 unsigned long irq_flags;
Steven Rostedt3189cdb2009-04-17 16:13:55 -04001490 int disable;
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001491
1492 if (tracing_disabled || tracing_selftest_running)
1493 return 0;
1494
1495 pc = preempt_count();
1496 preempt_disable_notrace();
1497 cpu = raw_smp_processor_id();
1498 data = tr->data[cpu];
1499
Steven Rostedt3189cdb2009-04-17 16:13:55 -04001500 disable = atomic_inc_return(&data->disabled);
1501 if (unlikely(disable != 1))
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001502 goto out;
1503
1504 pause_graph_tracing();
1505 raw_local_irq_save(irq_flags);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001506 arch_spin_lock(&trace_buf_lock);
Carsten Emdef2942482009-12-06 14:02:44 +01001507 len = vsnprintf(trace_buf, TRACE_BUF_SIZE, fmt, args);
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001508
1509 size = sizeof(*entry) + len + 1;
Steven Rostedte77405a2009-09-02 14:17:06 -04001510 buffer = tr->buffer;
1511 event = trace_buffer_lock_reserve(buffer, TRACE_PRINT, size,
1512 irq_flags, pc);
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001513 if (!event)
1514 goto out_unlock;
1515 entry = ring_buffer_event_data(event);
Carsten Emdec13d2f72009-11-16 20:56:13 +01001516 entry->ip = ip;
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001517
1518 memcpy(&entry->buf, trace_buf, len);
Carsten Emdec13d2f72009-11-16 20:56:13 +01001519 entry->buf[len] = '\0';
Steven Rostedtd9313692010-01-06 17:27:11 -05001520 if (!filter_check_discard(call, entry, buffer, event)) {
Steven Rostedte77405a2009-09-02 14:17:06 -04001521 ring_buffer_unlock_commit(buffer, event);
Steven Rostedtd9313692010-01-06 17:27:11 -05001522 ftrace_trace_stack(buffer, irq_flags, 6, pc);
1523 }
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001524
1525 out_unlock:
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001526 arch_spin_unlock(&trace_buf_lock);
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001527 raw_local_irq_restore(irq_flags);
1528 unpause_graph_tracing();
1529 out:
Steven Rostedt3189cdb2009-04-17 16:13:55 -04001530 atomic_dec_return(&data->disabled);
Frederic Weisbecker48ead022009-03-12 18:24:49 +01001531 preempt_enable_notrace();
1532
1533 return len;
1534}
Steven Rostedt659372d2009-09-03 19:11:07 -04001535
1536int trace_vprintk(unsigned long ip, const char *fmt, va_list args)
1537{
Steven Rostedta813a152009-10-09 01:41:35 -04001538 return trace_array_vprintk(&global_trace, ip, fmt, args);
Steven Rostedt659372d2009-09-03 19:11:07 -04001539}
Frederic Weisbecker769b0442009-03-06 17:21:49 +01001540EXPORT_SYMBOL_GPL(trace_vprintk);
1541
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001542enum trace_file_type {
1543 TRACE_FILE_LAT_FMT = 1,
Steven Rostedt12ef7d42008-11-12 17:52:38 -05001544 TRACE_FILE_ANNOTATE = 2,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001545};
1546
Robert Richtere2ac8ef2008-11-12 12:59:32 +01001547static void trace_iterator_increment(struct trace_iterator *iter)
Steven Rostedt5a90f572008-09-03 17:42:51 -04001548{
Steven Rostedtd7690412008-10-01 00:29:53 -04001549 /* Don't allow ftrace to trace into the ring buffers */
1550 ftrace_disable_cpu();
1551
Steven Rostedt5a90f572008-09-03 17:42:51 -04001552 iter->idx++;
Steven Rostedtd7690412008-10-01 00:29:53 -04001553 if (iter->buffer_iter[iter->cpu])
1554 ring_buffer_read(iter->buffer_iter[iter->cpu], NULL);
1555
1556 ftrace_enable_cpu();
Steven Rostedt5a90f572008-09-03 17:42:51 -04001557}
1558
Ingo Molnare309b412008-05-12 21:20:51 +02001559static struct trace_entry *
Steven Rostedtbc21b472010-03-31 19:49:26 -04001560peek_next_entry(struct trace_iterator *iter, int cpu, u64 *ts,
1561 unsigned long *lost_events)
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001562{
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001563 struct ring_buffer_event *event;
1564 struct ring_buffer_iter *buf_iter = iter->buffer_iter[cpu];
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001565
Steven Rostedtd7690412008-10-01 00:29:53 -04001566 /* Don't allow ftrace to trace into the ring buffers */
1567 ftrace_disable_cpu();
1568
1569 if (buf_iter)
1570 event = ring_buffer_iter_peek(buf_iter, ts);
1571 else
Steven Rostedtbc21b472010-03-31 19:49:26 -04001572 event = ring_buffer_peek(iter->tr->buffer, cpu, ts,
1573 lost_events);
Steven Rostedtd7690412008-10-01 00:29:53 -04001574
1575 ftrace_enable_cpu();
1576
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001577 return event ? ring_buffer_event_data(event) : NULL;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001578}
Steven Rostedtd7690412008-10-01 00:29:53 -04001579
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001580static struct trace_entry *
Steven Rostedtbc21b472010-03-31 19:49:26 -04001581__find_next_entry(struct trace_iterator *iter, int *ent_cpu,
1582 unsigned long *missing_events, u64 *ent_ts)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001583{
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001584 struct ring_buffer *buffer = iter->tr->buffer;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001585 struct trace_entry *ent, *next = NULL;
Lai Jiangshanaa274972010-04-05 17:11:05 +08001586 unsigned long lost_events = 0, next_lost = 0;
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01001587 int cpu_file = iter->cpu_file;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001588 u64 next_ts = 0, ts;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001589 int next_cpu = -1;
1590 int cpu;
1591
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01001592 /*
1593 * If we are in a per_cpu trace file, don't bother by iterating over
1594 * all cpu and peek directly.
1595 */
1596 if (cpu_file > TRACE_PIPE_ALL_CPU) {
1597 if (ring_buffer_empty_cpu(buffer, cpu_file))
1598 return NULL;
Steven Rostedtbc21b472010-03-31 19:49:26 -04001599 ent = peek_next_entry(iter, cpu_file, ent_ts, missing_events);
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01001600 if (ent_cpu)
1601 *ent_cpu = cpu_file;
1602
1603 return ent;
1604 }
1605
Steven Rostedtab464282008-05-12 21:21:00 +02001606 for_each_tracing_cpu(cpu) {
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001607
1608 if (ring_buffer_empty_cpu(buffer, cpu))
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001609 continue;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001610
Steven Rostedtbc21b472010-03-31 19:49:26 -04001611 ent = peek_next_entry(iter, cpu, &ts, &lost_events);
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001612
Ingo Molnarcdd31cd2008-05-12 21:20:46 +02001613 /*
1614 * Pick the entry with the smallest timestamp:
1615 */
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001616 if (ent && (!next || ts < next_ts)) {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001617 next = ent;
1618 next_cpu = cpu;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001619 next_ts = ts;
Steven Rostedtbc21b472010-03-31 19:49:26 -04001620 next_lost = lost_events;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001621 }
1622 }
1623
1624 if (ent_cpu)
1625 *ent_cpu = next_cpu;
1626
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001627 if (ent_ts)
1628 *ent_ts = next_ts;
1629
Steven Rostedtbc21b472010-03-31 19:49:26 -04001630 if (missing_events)
1631 *missing_events = next_lost;
1632
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001633 return next;
1634}
1635
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001636/* Find the next real entry, without updating the iterator itself */
Frederic Weisbeckerc4a8e8b2009-02-02 20:29:21 -02001637struct trace_entry *trace_find_next_entry(struct trace_iterator *iter,
1638 int *ent_cpu, u64 *ent_ts)
Steven Rostedtb3806b42008-05-12 21:20:46 +02001639{
Steven Rostedtbc21b472010-03-31 19:49:26 -04001640 return __find_next_entry(iter, ent_cpu, NULL, ent_ts);
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001641}
Ingo Molnar8c523a92008-05-12 21:20:46 +02001642
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001643/* Find the next real entry, and increment the iterator to the next entry */
1644static void *find_next_entry_inc(struct trace_iterator *iter)
1645{
Steven Rostedtbc21b472010-03-31 19:49:26 -04001646 iter->ent = __find_next_entry(iter, &iter->cpu,
1647 &iter->lost_events, &iter->ts);
Steven Rostedtb3806b42008-05-12 21:20:46 +02001648
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001649 if (iter->ent)
Robert Richtere2ac8ef2008-11-12 12:59:32 +01001650 trace_iterator_increment(iter);
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001651
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001652 return iter->ent ? iter : NULL;
Steven Rostedtb3806b42008-05-12 21:20:46 +02001653}
1654
Ingo Molnare309b412008-05-12 21:20:51 +02001655static void trace_consume(struct trace_iterator *iter)
Steven Rostedtb3806b42008-05-12 21:20:46 +02001656{
Steven Rostedtd7690412008-10-01 00:29:53 -04001657 /* Don't allow ftrace to trace into the ring buffers */
1658 ftrace_disable_cpu();
Steven Rostedtbc21b472010-03-31 19:49:26 -04001659 ring_buffer_consume(iter->tr->buffer, iter->cpu, &iter->ts,
1660 &iter->lost_events);
Steven Rostedtd7690412008-10-01 00:29:53 -04001661 ftrace_enable_cpu();
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001662}
1663
Ingo Molnare309b412008-05-12 21:20:51 +02001664static void *s_next(struct seq_file *m, void *v, loff_t *pos)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001665{
1666 struct trace_iterator *iter = m->private;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001667 int i = (int)*pos;
Ingo Molnar4e3c3332008-05-12 21:20:45 +02001668 void *ent;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001669
Steven Rostedta63ce5b2009-12-07 09:11:39 -05001670 WARN_ON_ONCE(iter->leftover);
1671
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001672 (*pos)++;
1673
1674 /* can't go backwards */
1675 if (iter->idx > i)
1676 return NULL;
1677
1678 if (iter->idx < 0)
1679 ent = find_next_entry_inc(iter);
1680 else
1681 ent = iter;
1682
1683 while (ent && iter->idx < i)
1684 ent = find_next_entry_inc(iter);
1685
1686 iter->pos = *pos;
1687
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001688 return ent;
1689}
1690
Steven Rostedt2f26ebd2009-09-01 11:06:29 -04001691static void tracing_iter_reset(struct trace_iterator *iter, int cpu)
1692{
1693 struct trace_array *tr = iter->tr;
1694 struct ring_buffer_event *event;
1695 struct ring_buffer_iter *buf_iter;
1696 unsigned long entries = 0;
1697 u64 ts;
1698
1699 tr->data[cpu]->skipped_entries = 0;
1700
1701 if (!iter->buffer_iter[cpu])
1702 return;
1703
1704 buf_iter = iter->buffer_iter[cpu];
1705 ring_buffer_iter_reset(buf_iter);
1706
1707 /*
1708 * We could have the case with the max latency tracers
1709 * that a reset never took place on a cpu. This is evident
1710 * by the timestamp being before the start of the buffer.
1711 */
1712 while ((event = ring_buffer_iter_peek(buf_iter, &ts))) {
1713 if (ts >= iter->tr->time_start)
1714 break;
1715 entries++;
1716 ring_buffer_read(buf_iter, NULL);
1717 }
1718
1719 tr->data[cpu]->skipped_entries = entries;
1720}
1721
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01001722/*
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01001723 * The current tracer is copied to avoid a global locking
1724 * all around.
1725 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001726static void *s_start(struct seq_file *m, loff_t *pos)
1727{
1728 struct trace_iterator *iter = m->private;
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01001729 static struct tracer *old_tracer;
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01001730 int cpu_file = iter->cpu_file;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001731 void *p = NULL;
1732 loff_t l = 0;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04001733 int cpu;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001734
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01001735 /* copy the tracer to avoid using a global lock all around */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001736 mutex_lock(&trace_types_lock);
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01001737 if (unlikely(old_tracer != current_trace && current_trace)) {
1738 old_tracer = current_trace;
1739 *iter->trace = *current_trace;
Steven Rostedtd15f57f2008-05-12 21:20:56 +02001740 }
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01001741 mutex_unlock(&trace_types_lock);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001742
1743 atomic_inc(&trace_record_cmdline_disabled);
1744
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001745 if (*pos != iter->pos) {
1746 iter->ent = NULL;
1747 iter->cpu = 0;
1748 iter->idx = -1;
1749
Steven Rostedtd7690412008-10-01 00:29:53 -04001750 ftrace_disable_cpu();
1751
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01001752 if (cpu_file == TRACE_PIPE_ALL_CPU) {
1753 for_each_tracing_cpu(cpu)
Steven Rostedt2f26ebd2009-09-01 11:06:29 -04001754 tracing_iter_reset(iter, cpu);
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01001755 } else
Steven Rostedt2f26ebd2009-09-01 11:06:29 -04001756 tracing_iter_reset(iter, cpu_file);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001757
Steven Rostedtd7690412008-10-01 00:29:53 -04001758 ftrace_enable_cpu();
1759
Lai Jiangshanac91d852010-03-02 17:54:50 +08001760 iter->leftover = 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001761 for (p = iter; p && l < *pos; p = s_next(m, p, &l))
1762 ;
1763
1764 } else {
Steven Rostedta63ce5b2009-12-07 09:11:39 -05001765 /*
1766 * If we overflowed the seq_file before, then we want
1767 * to just reuse the trace_seq buffer again.
1768 */
1769 if (iter->leftover)
1770 p = iter;
1771 else {
1772 l = *pos - 1;
1773 p = s_next(m, p, &l);
1774 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001775 }
1776
Lai Jiangshan4f535962009-05-18 19:35:34 +08001777 trace_event_read_lock();
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08001778 trace_access_lock(cpu_file);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001779 return p;
1780}
1781
1782static void s_stop(struct seq_file *m, void *p)
1783{
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08001784 struct trace_iterator *iter = m->private;
1785
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001786 atomic_dec(&trace_record_cmdline_disabled);
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08001787 trace_access_unlock(iter->cpu_file);
Lai Jiangshan4f535962009-05-18 19:35:34 +08001788 trace_event_read_unlock();
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001789}
1790
Ingo Molnare309b412008-05-12 21:20:51 +02001791static void print_lat_help_header(struct seq_file *m)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001792{
Michael Ellermana6168352008-08-20 16:36:11 -07001793 seq_puts(m, "# _------=> CPU# \n");
1794 seq_puts(m, "# / _-----=> irqs-off \n");
1795 seq_puts(m, "# | / _----=> need-resched \n");
1796 seq_puts(m, "# || / _---=> hardirq/softirq \n");
1797 seq_puts(m, "# ||| / _--=> preempt-depth \n");
Steven Rostedt637e7e82009-09-11 13:55:35 -04001798 seq_puts(m, "# |||| /_--=> lock-depth \n");
1799 seq_puts(m, "# |||||/ delay \n");
1800 seq_puts(m, "# cmd pid |||||| time | caller \n");
1801 seq_puts(m, "# \\ / |||||| \\ | / \n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001802}
1803
Ingo Molnare309b412008-05-12 21:20:51 +02001804static void print_func_help_header(struct seq_file *m)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001805{
Michael Ellermana6168352008-08-20 16:36:11 -07001806 seq_puts(m, "# TASK-PID CPU# TIMESTAMP FUNCTION\n");
1807 seq_puts(m, "# | | | | |\n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001808}
1809
1810
Jiri Olsa62b915f2010-04-02 19:01:22 +02001811void
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001812print_trace_header(struct seq_file *m, struct trace_iterator *iter)
1813{
1814 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1815 struct trace_array *tr = iter->tr;
1816 struct trace_array_cpu *data = tr->data[tr->cpu];
1817 struct tracer *type = current_trace;
Steven Rostedt2f26ebd2009-09-01 11:06:29 -04001818 unsigned long entries = 0;
1819 unsigned long total = 0;
1820 unsigned long count;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001821 const char *name = "preemption";
Steven Rostedt2f26ebd2009-09-01 11:06:29 -04001822 int cpu;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001823
1824 if (type)
1825 name = type->name;
1826
Steven Rostedt2f26ebd2009-09-01 11:06:29 -04001827
1828 for_each_tracing_cpu(cpu) {
1829 count = ring_buffer_entries_cpu(tr->buffer, cpu);
1830 /*
1831 * If this buffer has skipped entries, then we hold all
1832 * entries for the trace and we need to ignore the
1833 * ones before the time stamp.
1834 */
1835 if (tr->data[cpu]->skipped_entries) {
1836 count -= tr->data[cpu]->skipped_entries;
1837 /* total is the same as the entries */
1838 total += count;
1839 } else
1840 total += count +
1841 ring_buffer_overrun_cpu(tr->buffer, cpu);
1842 entries += count;
1843 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001844
KOSAKI Motohiro888b55d2009-03-08 13:12:43 +09001845 seq_printf(m, "# %s latency trace v1.1.5 on %s\n",
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001846 name, UTS_RELEASE);
KOSAKI Motohiro888b55d2009-03-08 13:12:43 +09001847 seq_puts(m, "# -----------------------------------"
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001848 "---------------------------------\n");
KOSAKI Motohiro888b55d2009-03-08 13:12:43 +09001849 seq_printf(m, "# latency: %lu us, #%lu/%lu, CPU#%d |"
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001850 " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
Steven Rostedt57f50be2008-05-12 21:20:44 +02001851 nsecs_to_usecs(data->saved_latency),
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001852 entries,
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02001853 total,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001854 tr->cpu,
1855#if defined(CONFIG_PREEMPT_NONE)
1856 "server",
1857#elif defined(CONFIG_PREEMPT_VOLUNTARY)
1858 "desktop",
Steven Rostedtb5c21b42008-07-10 20:58:12 -04001859#elif defined(CONFIG_PREEMPT)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001860 "preempt",
1861#else
1862 "unknown",
1863#endif
1864 /* These are reserved for later use */
1865 0, 0, 0, 0);
1866#ifdef CONFIG_SMP
1867 seq_printf(m, " #P:%d)\n", num_online_cpus());
1868#else
1869 seq_puts(m, ")\n");
1870#endif
KOSAKI Motohiro888b55d2009-03-08 13:12:43 +09001871 seq_puts(m, "# -----------------\n");
1872 seq_printf(m, "# | task: %.16s-%d "
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001873 "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
1874 data->comm, data->pid, data->uid, data->nice,
1875 data->policy, data->rt_priority);
KOSAKI Motohiro888b55d2009-03-08 13:12:43 +09001876 seq_puts(m, "# -----------------\n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001877
1878 if (data->critical_start) {
KOSAKI Motohiro888b55d2009-03-08 13:12:43 +09001879 seq_puts(m, "# => started at: ");
Steven Rostedt214023c2008-05-12 21:20:46 +02001880 seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags);
1881 trace_print_seq(m, &iter->seq);
KOSAKI Motohiro888b55d2009-03-08 13:12:43 +09001882 seq_puts(m, "\n# => ended at: ");
Steven Rostedt214023c2008-05-12 21:20:46 +02001883 seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags);
1884 trace_print_seq(m, &iter->seq);
Steven Rostedt8248ac02009-09-02 12:27:41 -04001885 seq_puts(m, "\n#\n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001886 }
1887
KOSAKI Motohiro888b55d2009-03-08 13:12:43 +09001888 seq_puts(m, "#\n");
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001889}
1890
Steven Rostedta3097202008-11-07 22:36:02 -05001891static void test_cpu_buff_start(struct trace_iterator *iter)
1892{
1893 struct trace_seq *s = &iter->seq;
1894
Steven Rostedt12ef7d42008-11-12 17:52:38 -05001895 if (!(trace_flags & TRACE_ITER_ANNOTATE))
1896 return;
1897
1898 if (!(iter->iter_flags & TRACE_FILE_ANNOTATE))
1899 return;
1900
Rusty Russell44623442009-01-01 10:12:23 +10301901 if (cpumask_test_cpu(iter->cpu, iter->started))
Steven Rostedta3097202008-11-07 22:36:02 -05001902 return;
1903
Steven Rostedt2f26ebd2009-09-01 11:06:29 -04001904 if (iter->tr->data[iter->cpu]->skipped_entries)
1905 return;
1906
Rusty Russell44623442009-01-01 10:12:23 +10301907 cpumask_set_cpu(iter->cpu, iter->started);
Frederic Weisbeckerb0dfa972009-04-01 22:53:08 +02001908
1909 /* Don't print started cpu buffer for the first entry of the trace */
1910 if (iter->idx > 1)
1911 trace_seq_printf(s, "##### CPU %u buffer started ####\n",
1912 iter->cpu);
Steven Rostedta3097202008-11-07 22:36:02 -05001913}
1914
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02001915static enum print_line_t print_trace_fmt(struct trace_iterator *iter)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001916{
Steven Rostedt214023c2008-05-12 21:20:46 +02001917 struct trace_seq *s = &iter->seq;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001918 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
Ingo Molnar4e3c3332008-05-12 21:20:45 +02001919 struct trace_entry *entry;
Steven Rostedtf633cef2008-12-23 23:24:13 -05001920 struct trace_event *event;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001921
Ingo Molnar4e3c3332008-05-12 21:20:45 +02001922 entry = iter->ent;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001923
Steven Rostedta3097202008-11-07 22:36:02 -05001924 test_cpu_buff_start(iter);
1925
Steven Rostedtf633cef2008-12-23 23:24:13 -05001926 event = ftrace_find_event(entry->type);
Frederic Weisbeckerc4a8e8b2009-02-02 20:29:21 -02001927
1928 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
Steven Rostedt27d48be2009-03-04 21:57:29 -05001929 if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
1930 if (!trace_print_lat_context(iter))
1931 goto partial;
1932 } else {
1933 if (!trace_print_context(iter))
1934 goto partial;
1935 }
Frederic Weisbeckerc4a8e8b2009-02-02 20:29:21 -02001936 }
1937
Arnaldo Carvalho de Melo268ccda2009-02-04 20:16:39 -02001938 if (event)
Steven Rostedta9a57762010-04-22 18:46:14 -04001939 return event->funcs->trace(iter, sym_flags, event);
Arnaldo Carvalho de Melod9793bd2009-02-03 20:20:41 -02001940
1941 if (!trace_seq_printf(s, "Unknown type %d\n", entry->type))
1942 goto partial;
Steven Rostedt7104f302008-10-01 10:52:51 -04001943
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02001944 return TRACE_TYPE_HANDLED;
Arnaldo Carvalho de Melod9793bd2009-02-03 20:20:41 -02001945partial:
1946 return TRACE_TYPE_PARTIAL_LINE;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02001947}
1948
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02001949static enum print_line_t print_raw_fmt(struct trace_iterator *iter)
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001950{
1951 struct trace_seq *s = &iter->seq;
1952 struct trace_entry *entry;
Steven Rostedtf633cef2008-12-23 23:24:13 -05001953 struct trace_event *event;
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001954
1955 entry = iter->ent;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001956
Frederic Weisbeckerc4a8e8b2009-02-02 20:29:21 -02001957 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
Arnaldo Carvalho de Melod9793bd2009-02-03 20:20:41 -02001958 if (!trace_seq_printf(s, "%d %d %llu ",
1959 entry->pid, iter->cpu, iter->ts))
1960 goto partial;
Frederic Weisbeckerc4a8e8b2009-02-02 20:29:21 -02001961 }
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001962
Steven Rostedtf633cef2008-12-23 23:24:13 -05001963 event = ftrace_find_event(entry->type);
Arnaldo Carvalho de Melo268ccda2009-02-04 20:16:39 -02001964 if (event)
Steven Rostedta9a57762010-04-22 18:46:14 -04001965 return event->funcs->raw(iter, 0, event);
Arnaldo Carvalho de Melod9793bd2009-02-03 20:20:41 -02001966
1967 if (!trace_seq_printf(s, "%d ?\n", entry->type))
1968 goto partial;
Steven Rostedt7104f302008-10-01 10:52:51 -04001969
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02001970 return TRACE_TYPE_HANDLED;
Arnaldo Carvalho de Melod9793bd2009-02-03 20:20:41 -02001971partial:
1972 return TRACE_TYPE_PARTIAL_LINE;
Ingo Molnarf9896bf2008-05-12 21:20:47 +02001973}
1974
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02001975static enum print_line_t print_hex_fmt(struct trace_iterator *iter)
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001976{
1977 struct trace_seq *s = &iter->seq;
1978 unsigned char newline = '\n';
1979 struct trace_entry *entry;
Steven Rostedtf633cef2008-12-23 23:24:13 -05001980 struct trace_event *event;
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001981
1982 entry = iter->ent;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04001983
Frederic Weisbeckerc4a8e8b2009-02-02 20:29:21 -02001984 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
1985 SEQ_PUT_HEX_FIELD_RET(s, entry->pid);
1986 SEQ_PUT_HEX_FIELD_RET(s, iter->cpu);
1987 SEQ_PUT_HEX_FIELD_RET(s, iter->ts);
1988 }
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001989
Steven Rostedtf633cef2008-12-23 23:24:13 -05001990 event = ftrace_find_event(entry->type);
Arnaldo Carvalho de Melo268ccda2009-02-04 20:16:39 -02001991 if (event) {
Steven Rostedta9a57762010-04-22 18:46:14 -04001992 enum print_line_t ret = event->funcs->hex(iter, 0, event);
Arnaldo Carvalho de Melod9793bd2009-02-03 20:20:41 -02001993 if (ret != TRACE_TYPE_HANDLED)
1994 return ret;
1995 }
Steven Rostedt7104f302008-10-01 10:52:51 -04001996
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02001997 SEQ_PUT_FIELD_RET(s, newline);
1998
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02001999 return TRACE_TYPE_HANDLED;
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02002000}
2001
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02002002static enum print_line_t print_bin_fmt(struct trace_iterator *iter)
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02002003{
2004 struct trace_seq *s = &iter->seq;
2005 struct trace_entry *entry;
Steven Rostedtf633cef2008-12-23 23:24:13 -05002006 struct trace_event *event;
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02002007
2008 entry = iter->ent;
Steven Rostedtdd0e5452008-08-01 12:26:41 -04002009
Frederic Weisbeckerc4a8e8b2009-02-02 20:29:21 -02002010 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
2011 SEQ_PUT_FIELD_RET(s, entry->pid);
Steven Rostedt1830b522009-02-07 19:38:43 -05002012 SEQ_PUT_FIELD_RET(s, iter->cpu);
Frederic Weisbeckerc4a8e8b2009-02-02 20:29:21 -02002013 SEQ_PUT_FIELD_RET(s, iter->ts);
2014 }
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02002015
Steven Rostedtf633cef2008-12-23 23:24:13 -05002016 event = ftrace_find_event(entry->type);
Steven Rostedta9a57762010-04-22 18:46:14 -04002017 return event ? event->funcs->binary(iter, 0, event) :
2018 TRACE_TYPE_HANDLED;
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02002019}
2020
Jiri Olsa62b915f2010-04-02 19:01:22 +02002021int trace_empty(struct trace_iterator *iter)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002022{
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002023 int cpu;
2024
Steven Rostedt9aba60f2009-03-11 19:52:30 -04002025 /* If we are looking at one CPU buffer, only check that one */
2026 if (iter->cpu_file != TRACE_PIPE_ALL_CPU) {
2027 cpu = iter->cpu_file;
2028 if (iter->buffer_iter[cpu]) {
2029 if (!ring_buffer_iter_empty(iter->buffer_iter[cpu]))
2030 return 0;
2031 } else {
2032 if (!ring_buffer_empty_cpu(iter->tr->buffer, cpu))
2033 return 0;
2034 }
2035 return 1;
2036 }
2037
Steven Rostedtab464282008-05-12 21:21:00 +02002038 for_each_tracing_cpu(cpu) {
Steven Rostedtd7690412008-10-01 00:29:53 -04002039 if (iter->buffer_iter[cpu]) {
2040 if (!ring_buffer_iter_empty(iter->buffer_iter[cpu]))
2041 return 0;
2042 } else {
2043 if (!ring_buffer_empty_cpu(iter->tr->buffer, cpu))
2044 return 0;
2045 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002046 }
Steven Rostedtd7690412008-10-01 00:29:53 -04002047
Frederic Weisbecker797d3712008-09-30 18:13:45 +02002048 return 1;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002049}
2050
Lai Jiangshan4f535962009-05-18 19:35:34 +08002051/* Called with trace_event_read_lock() held. */
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02002052static enum print_line_t print_trace_line(struct trace_iterator *iter)
Ingo Molnarf9896bf2008-05-12 21:20:47 +02002053{
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02002054 enum print_line_t ret;
2055
Steven Rostedtbc21b472010-03-31 19:49:26 -04002056 if (iter->lost_events)
2057 trace_seq_printf(&iter->seq, "CPU:%d [LOST %lu EVENTS]\n",
2058 iter->cpu, iter->lost_events);
2059
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02002060 if (iter->trace && iter->trace->print_line) {
2061 ret = iter->trace->print_line(iter);
2062 if (ret != TRACE_TYPE_UNHANDLED)
2063 return ret;
2064 }
Thomas Gleixner72829bc2008-05-23 21:37:28 +02002065
Frederic Weisbecker48ead022009-03-12 18:24:49 +01002066 if (iter->ent->type == TRACE_BPRINT &&
2067 trace_flags & TRACE_ITER_PRINTK &&
2068 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
Steven Rostedt5ef841f2009-03-19 12:20:38 -04002069 return trace_print_bprintk_msg_only(iter);
Frederic Weisbecker48ead022009-03-12 18:24:49 +01002070
Frederic Weisbecker66896a82008-12-13 20:18:13 +01002071 if (iter->ent->type == TRACE_PRINT &&
2072 trace_flags & TRACE_ITER_PRINTK &&
2073 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
Steven Rostedt5ef841f2009-03-19 12:20:38 -04002074 return trace_print_printk_msg_only(iter);
Frederic Weisbecker66896a82008-12-13 20:18:13 +01002075
Ingo Molnarcb0f12a2008-05-12 21:20:47 +02002076 if (trace_flags & TRACE_ITER_BIN)
2077 return print_bin_fmt(iter);
2078
Ingo Molnar5e3ca0e2008-05-12 21:20:49 +02002079 if (trace_flags & TRACE_ITER_HEX)
2080 return print_hex_fmt(iter);
2081
Ingo Molnarf9896bf2008-05-12 21:20:47 +02002082 if (trace_flags & TRACE_ITER_RAW)
2083 return print_raw_fmt(iter);
2084
Ingo Molnarf9896bf2008-05-12 21:20:47 +02002085 return print_trace_fmt(iter);
2086}
2087
Jiri Olsa62b915f2010-04-02 19:01:22 +02002088void trace_default_header(struct seq_file *m)
2089{
2090 struct trace_iterator *iter = m->private;
2091
2092 if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
2093 /* print nothing if the buffers are empty */
2094 if (trace_empty(iter))
2095 return;
2096 print_trace_header(m, iter);
2097 if (!(trace_flags & TRACE_ITER_VERBOSE))
2098 print_lat_help_header(m);
2099 } else {
2100 if (!(trace_flags & TRACE_ITER_VERBOSE))
2101 print_func_help_header(m);
2102 }
2103}
2104
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002105static int s_show(struct seq_file *m, void *v)
2106{
2107 struct trace_iterator *iter = v;
Steven Rostedta63ce5b2009-12-07 09:11:39 -05002108 int ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002109
2110 if (iter->ent == NULL) {
2111 if (iter->tr) {
2112 seq_printf(m, "# tracer: %s\n", iter->trace->name);
2113 seq_puts(m, "#\n");
2114 }
Markus Metzger8bba1bf2008-11-25 09:12:31 +01002115 if (iter->trace && iter->trace->print_header)
2116 iter->trace->print_header(m);
Jiri Olsa62b915f2010-04-02 19:01:22 +02002117 else
2118 trace_default_header(m);
2119
Steven Rostedta63ce5b2009-12-07 09:11:39 -05002120 } else if (iter->leftover) {
2121 /*
2122 * If we filled the seq_file buffer earlier, we
2123 * want to just show it now.
2124 */
2125 ret = trace_print_seq(m, &iter->seq);
2126
2127 /* ret should this time be zero, but you never know */
2128 iter->leftover = ret;
2129
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002130 } else {
Ingo Molnarf9896bf2008-05-12 21:20:47 +02002131 print_trace_line(iter);
Steven Rostedta63ce5b2009-12-07 09:11:39 -05002132 ret = trace_print_seq(m, &iter->seq);
2133 /*
2134 * If we overflow the seq_file buffer, then it will
2135 * ask us for this data again at start up.
2136 * Use that instead.
2137 * ret is 0 if seq_file write succeeded.
2138 * -1 otherwise.
2139 */
2140 iter->leftover = ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002141 }
2142
2143 return 0;
2144}
2145
James Morris88e9d342009-09-22 16:43:43 -07002146static const struct seq_operations tracer_seq_ops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002147 .start = s_start,
2148 .next = s_next,
2149 .stop = s_stop,
2150 .show = s_show,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002151};
2152
Ingo Molnare309b412008-05-12 21:20:51 +02002153static struct trace_iterator *
Steven Rostedt85a2f9b2009-02-27 00:12:38 -05002154__tracing_open(struct inode *inode, struct file *file)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002155{
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01002156 long cpu_file = (long) inode->i_private;
Steven Rostedt85a2f9b2009-02-27 00:12:38 -05002157 void *fail_ret = ERR_PTR(-ENOMEM);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002158 struct trace_iterator *iter;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04002159 struct seq_file *m;
Steven Rostedt85a2f9b2009-02-27 00:12:38 -05002160 int cpu, ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002161
Steven Rostedt85a2f9b2009-02-27 00:12:38 -05002162 if (tracing_disabled)
2163 return ERR_PTR(-ENODEV);
Steven Rostedt60a11772008-05-12 21:20:44 +02002164
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002165 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
Steven Rostedt85a2f9b2009-02-27 00:12:38 -05002166 if (!iter)
2167 return ERR_PTR(-ENOMEM);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002168
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01002169 /*
2170 * We make a copy of the current tracer to avoid concurrent
2171 * changes on it while we are reading.
2172 */
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002173 mutex_lock(&trace_types_lock);
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01002174 iter->trace = kzalloc(sizeof(*iter->trace), GFP_KERNEL);
Steven Rostedt85a2f9b2009-02-27 00:12:38 -05002175 if (!iter->trace)
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01002176 goto fail;
Steven Rostedt85a2f9b2009-02-27 00:12:38 -05002177
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01002178 if (current_trace)
2179 *iter->trace = *current_trace;
2180
Li Zefan79f55992009-06-15 14:58:26 +08002181 if (!zalloc_cpumask_var(&iter->started, GFP_KERNEL))
Frederic Weisbeckerb0dfa972009-04-01 22:53:08 +02002182 goto fail;
2183
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002184 if (current_trace && current_trace->print_max)
2185 iter->tr = &max_tr;
2186 else
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01002187 iter->tr = &global_trace;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002188 iter->pos = -1;
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01002189 mutex_init(&iter->mutex);
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01002190 iter->cpu_file = cpu_file;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002191
Markus Metzger8bba1bf2008-11-25 09:12:31 +01002192 /* Notify the tracer early; before we stop tracing. */
2193 if (iter->trace && iter->trace->open)
Markus Metzgera93751c2008-12-11 13:53:26 +01002194 iter->trace->open(iter);
Markus Metzger8bba1bf2008-11-25 09:12:31 +01002195
Steven Rostedt12ef7d42008-11-12 17:52:38 -05002196 /* Annotate start of buffers if we had overruns */
2197 if (ring_buffer_overruns(iter->tr->buffer))
2198 iter->iter_flags |= TRACE_FILE_ANNOTATE;
2199
Steven Rostedt2f26ebd2009-09-01 11:06:29 -04002200 /* stop the trace while dumping */
2201 tracing_stop();
2202
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01002203 if (iter->cpu_file == TRACE_PIPE_ALL_CPU) {
2204 for_each_tracing_cpu(cpu) {
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01002205 iter->buffer_iter[cpu] =
David Miller72c9ddf2010-04-20 15:47:11 -07002206 ring_buffer_read_prepare(iter->tr->buffer, cpu);
2207 }
2208 ring_buffer_read_prepare_sync();
2209 for_each_tracing_cpu(cpu) {
2210 ring_buffer_read_start(iter->buffer_iter[cpu]);
Steven Rostedt2f26ebd2009-09-01 11:06:29 -04002211 tracing_iter_reset(iter, cpu);
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01002212 }
2213 } else {
2214 cpu = iter->cpu_file;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04002215 iter->buffer_iter[cpu] =
David Miller72c9ddf2010-04-20 15:47:11 -07002216 ring_buffer_read_prepare(iter->tr->buffer, cpu);
2217 ring_buffer_read_prepare_sync();
2218 ring_buffer_read_start(iter->buffer_iter[cpu]);
Steven Rostedt2f26ebd2009-09-01 11:06:29 -04002219 tracing_iter_reset(iter, cpu);
Steven Rostedt3928a8a2008-09-29 23:02:41 -04002220 }
2221
Steven Rostedt85a2f9b2009-02-27 00:12:38 -05002222 ret = seq_open(file, &tracer_seq_ops);
2223 if (ret < 0) {
2224 fail_ret = ERR_PTR(ret);
Steven Rostedt3928a8a2008-09-29 23:02:41 -04002225 goto fail_buffer;
Steven Rostedt85a2f9b2009-02-27 00:12:38 -05002226 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002227
Steven Rostedt3928a8a2008-09-29 23:02:41 -04002228 m = file->private_data;
2229 m->private = iter;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002230
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002231 mutex_unlock(&trace_types_lock);
2232
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002233 return iter;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04002234
2235 fail_buffer:
2236 for_each_tracing_cpu(cpu) {
2237 if (iter->buffer_iter[cpu])
2238 ring_buffer_read_finish(iter->buffer_iter[cpu]);
2239 }
Frederic Weisbeckerb0dfa972009-04-01 22:53:08 +02002240 free_cpumask_var(iter->started);
Steven Rostedt2f26ebd2009-09-01 11:06:29 -04002241 tracing_start();
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01002242 fail:
Steven Rostedt3928a8a2008-09-29 23:02:41 -04002243 mutex_unlock(&trace_types_lock);
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01002244 kfree(iter->trace);
Julia Lawall0bb943c2008-11-14 19:05:31 +01002245 kfree(iter);
Steven Rostedt3928a8a2008-09-29 23:02:41 -04002246
Steven Rostedt85a2f9b2009-02-27 00:12:38 -05002247 return fail_ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002248}
2249
2250int tracing_open_generic(struct inode *inode, struct file *filp)
2251{
Steven Rostedt60a11772008-05-12 21:20:44 +02002252 if (tracing_disabled)
2253 return -ENODEV;
2254
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002255 filp->private_data = inode->i_private;
2256 return 0;
2257}
2258
Hannes Eder4fd27352009-02-10 19:44:12 +01002259static int tracing_release(struct inode *inode, struct file *file)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002260{
2261 struct seq_file *m = (struct seq_file *)file->private_data;
Steven Rostedt4acd4d02009-03-18 10:40:24 -04002262 struct trace_iterator *iter;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04002263 int cpu;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002264
Steven Rostedt4acd4d02009-03-18 10:40:24 -04002265 if (!(file->f_mode & FMODE_READ))
2266 return 0;
2267
2268 iter = m->private;
2269
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002270 mutex_lock(&trace_types_lock);
Steven Rostedt3928a8a2008-09-29 23:02:41 -04002271 for_each_tracing_cpu(cpu) {
2272 if (iter->buffer_iter[cpu])
2273 ring_buffer_read_finish(iter->buffer_iter[cpu]);
2274 }
2275
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002276 if (iter->trace && iter->trace->close)
2277 iter->trace->close(iter);
2278
2279 /* reenable tracing if it was previously enabled */
Steven Rostedt90369902008-11-05 16:05:44 -05002280 tracing_start();
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002281 mutex_unlock(&trace_types_lock);
2282
2283 seq_release(inode, file);
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01002284 mutex_destroy(&iter->mutex);
Frederic Weisbeckerb0dfa972009-04-01 22:53:08 +02002285 free_cpumask_var(iter->started);
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01002286 kfree(iter->trace);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002287 kfree(iter);
2288 return 0;
2289}
2290
2291static int tracing_open(struct inode *inode, struct file *file)
2292{
Steven Rostedt85a2f9b2009-02-27 00:12:38 -05002293 struct trace_iterator *iter;
2294 int ret = 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002295
Steven Rostedt4acd4d02009-03-18 10:40:24 -04002296 /* If this file was open for write, then erase contents */
2297 if ((file->f_mode & FMODE_WRITE) &&
Steven Rostedt8650ae32009-07-22 23:29:30 -04002298 (file->f_flags & O_TRUNC)) {
Steven Rostedt4acd4d02009-03-18 10:40:24 -04002299 long cpu = (long) inode->i_private;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002300
Steven Rostedt4acd4d02009-03-18 10:40:24 -04002301 if (cpu == TRACE_PIPE_ALL_CPU)
2302 tracing_reset_online_cpus(&global_trace);
2303 else
2304 tracing_reset(&global_trace, cpu);
2305 }
2306
2307 if (file->f_mode & FMODE_READ) {
2308 iter = __tracing_open(inode, file);
2309 if (IS_ERR(iter))
2310 ret = PTR_ERR(iter);
2311 else if (trace_flags & TRACE_ITER_LATENCY_FMT)
2312 iter->iter_flags |= TRACE_FILE_LAT_FMT;
2313 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002314 return ret;
2315}
2316
Ingo Molnare309b412008-05-12 21:20:51 +02002317static void *
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002318t_next(struct seq_file *m, void *v, loff_t *pos)
2319{
Li Zefanf129e962009-06-24 09:53:44 +08002320 struct tracer *t = v;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002321
2322 (*pos)++;
2323
2324 if (t)
2325 t = t->next;
2326
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002327 return t;
2328}
2329
2330static void *t_start(struct seq_file *m, loff_t *pos)
2331{
Li Zefanf129e962009-06-24 09:53:44 +08002332 struct tracer *t;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002333 loff_t l = 0;
2334
2335 mutex_lock(&trace_types_lock);
Li Zefanf129e962009-06-24 09:53:44 +08002336 for (t = trace_types; t && l < *pos; t = t_next(m, t, &l))
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002337 ;
2338
2339 return t;
2340}
2341
2342static void t_stop(struct seq_file *m, void *p)
2343{
2344 mutex_unlock(&trace_types_lock);
2345}
2346
2347static int t_show(struct seq_file *m, void *v)
2348{
2349 struct tracer *t = v;
2350
2351 if (!t)
2352 return 0;
2353
2354 seq_printf(m, "%s", t->name);
2355 if (t->next)
2356 seq_putc(m, ' ');
2357 else
2358 seq_putc(m, '\n');
2359
2360 return 0;
2361}
2362
James Morris88e9d342009-09-22 16:43:43 -07002363static const struct seq_operations show_traces_seq_ops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002364 .start = t_start,
2365 .next = t_next,
2366 .stop = t_stop,
2367 .show = t_show,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002368};
2369
2370static int show_traces_open(struct inode *inode, struct file *file)
2371{
Steven Rostedt60a11772008-05-12 21:20:44 +02002372 if (tracing_disabled)
2373 return -ENODEV;
2374
Li Zefanf129e962009-06-24 09:53:44 +08002375 return seq_open(file, &show_traces_seq_ops);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002376}
2377
Steven Rostedt4acd4d02009-03-18 10:40:24 -04002378static ssize_t
2379tracing_write_stub(struct file *filp, const char __user *ubuf,
2380 size_t count, loff_t *ppos)
2381{
2382 return count;
2383}
2384
Steven Rostedt5e2336a2009-03-05 21:44:55 -05002385static const struct file_operations tracing_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002386 .open = tracing_open,
2387 .read = seq_read,
Steven Rostedt4acd4d02009-03-18 10:40:24 -04002388 .write = tracing_write_stub,
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002389 .llseek = seq_lseek,
2390 .release = tracing_release,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002391};
2392
Steven Rostedt5e2336a2009-03-05 21:44:55 -05002393static const struct file_operations show_traces_fops = {
Ingo Molnarc7078de2008-05-12 21:20:52 +02002394 .open = show_traces_open,
2395 .read = seq_read,
2396 .release = seq_release,
2397};
2398
Ingo Molnar36dfe922008-05-12 21:20:52 +02002399/*
2400 * Only trace on a CPU if the bitmask is set:
2401 */
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302402static cpumask_var_t tracing_cpumask;
Ingo Molnar36dfe922008-05-12 21:20:52 +02002403
2404/*
2405 * The tracer itself will not take this lock, but still we want
2406 * to provide a consistent cpumask to user-space:
2407 */
2408static DEFINE_MUTEX(tracing_cpumask_update_lock);
2409
2410/*
2411 * Temporary storage for the character representation of the
2412 * CPU bitmask (and one more byte for the newline):
2413 */
2414static char mask_str[NR_CPUS + 1];
2415
Ingo Molnarc7078de2008-05-12 21:20:52 +02002416static ssize_t
2417tracing_cpumask_read(struct file *filp, char __user *ubuf,
2418 size_t count, loff_t *ppos)
2419{
Ingo Molnar36dfe922008-05-12 21:20:52 +02002420 int len;
Ingo Molnarc7078de2008-05-12 21:20:52 +02002421
2422 mutex_lock(&tracing_cpumask_update_lock);
Ingo Molnar36dfe922008-05-12 21:20:52 +02002423
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302424 len = cpumask_scnprintf(mask_str, count, tracing_cpumask);
Ingo Molnar36dfe922008-05-12 21:20:52 +02002425 if (count - len < 2) {
2426 count = -EINVAL;
2427 goto out_err;
2428 }
2429 len += sprintf(mask_str + len, "\n");
2430 count = simple_read_from_buffer(ubuf, count, ppos, mask_str, NR_CPUS+1);
2431
2432out_err:
Ingo Molnarc7078de2008-05-12 21:20:52 +02002433 mutex_unlock(&tracing_cpumask_update_lock);
2434
2435 return count;
2436}
2437
2438static ssize_t
2439tracing_cpumask_write(struct file *filp, const char __user *ubuf,
2440 size_t count, loff_t *ppos)
2441{
Ingo Molnar36dfe922008-05-12 21:20:52 +02002442 int err, cpu;
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302443 cpumask_var_t tracing_cpumask_new;
2444
2445 if (!alloc_cpumask_var(&tracing_cpumask_new, GFP_KERNEL))
2446 return -ENOMEM;
Ingo Molnarc7078de2008-05-12 21:20:52 +02002447
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302448 err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
Ingo Molnar36dfe922008-05-12 21:20:52 +02002449 if (err)
2450 goto err_unlock;
2451
Li Zefan215368e2009-06-15 10:56:42 +08002452 mutex_lock(&tracing_cpumask_update_lock);
2453
Steven Rostedta5e25882008-12-02 15:34:05 -05002454 local_irq_disable();
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01002455 arch_spin_lock(&ftrace_max_lock);
Steven Rostedtab464282008-05-12 21:21:00 +02002456 for_each_tracing_cpu(cpu) {
Ingo Molnar36dfe922008-05-12 21:20:52 +02002457 /*
2458 * Increase/decrease the disabled counter if we are
2459 * about to flip a bit in the cpumask:
2460 */
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302461 if (cpumask_test_cpu(cpu, tracing_cpumask) &&
2462 !cpumask_test_cpu(cpu, tracing_cpumask_new)) {
Ingo Molnar36dfe922008-05-12 21:20:52 +02002463 atomic_inc(&global_trace.data[cpu]->disabled);
2464 }
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302465 if (!cpumask_test_cpu(cpu, tracing_cpumask) &&
2466 cpumask_test_cpu(cpu, tracing_cpumask_new)) {
Ingo Molnar36dfe922008-05-12 21:20:52 +02002467 atomic_dec(&global_trace.data[cpu]->disabled);
2468 }
2469 }
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01002470 arch_spin_unlock(&ftrace_max_lock);
Steven Rostedta5e25882008-12-02 15:34:05 -05002471 local_irq_enable();
Ingo Molnar36dfe922008-05-12 21:20:52 +02002472
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302473 cpumask_copy(tracing_cpumask, tracing_cpumask_new);
Ingo Molnar36dfe922008-05-12 21:20:52 +02002474
Ingo Molnarc7078de2008-05-12 21:20:52 +02002475 mutex_unlock(&tracing_cpumask_update_lock);
Rusty Russell9e01c1b2009-01-01 10:12:22 +10302476 free_cpumask_var(tracing_cpumask_new);
Ingo Molnarc7078de2008-05-12 21:20:52 +02002477
Ingo Molnarc7078de2008-05-12 21:20:52 +02002478 return count;
Ingo Molnar36dfe922008-05-12 21:20:52 +02002479
2480err_unlock:
Li Zefan215368e2009-06-15 10:56:42 +08002481 free_cpumask_var(tracing_cpumask_new);
Ingo Molnar36dfe922008-05-12 21:20:52 +02002482
2483 return err;
Ingo Molnarc7078de2008-05-12 21:20:52 +02002484}
2485
Steven Rostedt5e2336a2009-03-05 21:44:55 -05002486static const struct file_operations tracing_cpumask_fops = {
Ingo Molnarc7078de2008-05-12 21:20:52 +02002487 .open = tracing_open_generic,
2488 .read = tracing_cpumask_read,
2489 .write = tracing_cpumask_write,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002490};
2491
Li Zefanfdb372e2009-12-08 11:15:59 +08002492static int tracing_trace_options_show(struct seq_file *m, void *v)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002493{
Steven Rostedtd8e83d22009-02-26 23:55:58 -05002494 struct tracer_opt *trace_opts;
2495 u32 tracer_flags;
Steven Rostedtd8e83d22009-02-26 23:55:58 -05002496 int i;
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002497
Steven Rostedtd8e83d22009-02-26 23:55:58 -05002498 mutex_lock(&trace_types_lock);
2499 tracer_flags = current_trace->flags->val;
2500 trace_opts = current_trace->flags->opts;
2501
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002502 for (i = 0; trace_options[i]; i++) {
2503 if (trace_flags & (1 << i))
Li Zefanfdb372e2009-12-08 11:15:59 +08002504 seq_printf(m, "%s\n", trace_options[i]);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002505 else
Li Zefanfdb372e2009-12-08 11:15:59 +08002506 seq_printf(m, "no%s\n", trace_options[i]);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002507 }
2508
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002509 for (i = 0; trace_opts[i].name; i++) {
2510 if (tracer_flags & trace_opts[i].bit)
Li Zefanfdb372e2009-12-08 11:15:59 +08002511 seq_printf(m, "%s\n", trace_opts[i].name);
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002512 else
Li Zefanfdb372e2009-12-08 11:15:59 +08002513 seq_printf(m, "no%s\n", trace_opts[i].name);
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002514 }
Steven Rostedtd8e83d22009-02-26 23:55:58 -05002515 mutex_unlock(&trace_types_lock);
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002516
Li Zefanfdb372e2009-12-08 11:15:59 +08002517 return 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002518}
2519
Li Zefan8d18eaa2009-12-08 11:17:06 +08002520static int __set_tracer_option(struct tracer *trace,
2521 struct tracer_flags *tracer_flags,
2522 struct tracer_opt *opts, int neg)
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002523{
Li Zefan8d18eaa2009-12-08 11:17:06 +08002524 int ret;
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002525
Li Zefan8d18eaa2009-12-08 11:17:06 +08002526 ret = trace->set_flag(tracer_flags->val, opts->bit, !neg);
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002527 if (ret)
2528 return ret;
2529
2530 if (neg)
Zhaolei77708412009-08-07 18:53:21 +08002531 tracer_flags->val &= ~opts->bit;
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002532 else
Zhaolei77708412009-08-07 18:53:21 +08002533 tracer_flags->val |= opts->bit;
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002534 return 0;
2535}
2536
Li Zefan8d18eaa2009-12-08 11:17:06 +08002537/* Try to assign a tracer specific option */
2538static int set_tracer_option(struct tracer *trace, char *cmp, int neg)
2539{
2540 struct tracer_flags *tracer_flags = trace->flags;
2541 struct tracer_opt *opts = NULL;
2542 int i;
2543
2544 for (i = 0; tracer_flags->opts[i].name; i++) {
2545 opts = &tracer_flags->opts[i];
2546
2547 if (strcmp(cmp, opts->name) == 0)
2548 return __set_tracer_option(trace, trace->flags,
2549 opts, neg);
2550 }
2551
2552 return -EINVAL;
2553}
2554
Steven Rostedtaf4617b2009-03-17 18:09:55 -04002555static void set_tracer_flags(unsigned int mask, int enabled)
2556{
2557 /* do nothing if flag is already set */
2558 if (!!(trace_flags & mask) == !!enabled)
2559 return;
2560
2561 if (enabled)
2562 trace_flags |= mask;
2563 else
2564 trace_flags &= ~mask;
Li Zefane870e9a2010-07-02 11:07:32 +08002565
2566 if (mask == TRACE_ITER_RECORD_CMD)
2567 trace_event_enable_cmd_record(enabled);
Steven Rostedtaf4617b2009-03-17 18:09:55 -04002568}
2569
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002570static ssize_t
Steven Rostedtee6bce52008-11-12 17:52:37 -05002571tracing_trace_options_write(struct file *filp, const char __user *ubuf,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002572 size_t cnt, loff_t *ppos)
2573{
2574 char buf[64];
Li Zefan8d18eaa2009-12-08 11:17:06 +08002575 char *cmp;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002576 int neg = 0;
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002577 int ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002578 int i;
2579
Steven Rostedtcffae432008-05-12 21:21:00 +02002580 if (cnt >= sizeof(buf))
2581 return -EINVAL;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002582
2583 if (copy_from_user(&buf, ubuf, cnt))
2584 return -EFAULT;
2585
2586 buf[cnt] = 0;
Li Zefan8d18eaa2009-12-08 11:17:06 +08002587 cmp = strstrip(buf);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002588
Li Zefan8d18eaa2009-12-08 11:17:06 +08002589 if (strncmp(cmp, "no", 2) == 0) {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002590 neg = 1;
2591 cmp += 2;
2592 }
2593
2594 for (i = 0; trace_options[i]; i++) {
Li Zefan8d18eaa2009-12-08 11:17:06 +08002595 if (strcmp(cmp, trace_options[i]) == 0) {
Steven Rostedtaf4617b2009-03-17 18:09:55 -04002596 set_tracer_flags(1 << i, !neg);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002597 break;
2598 }
2599 }
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002600
2601 /* If no option could be set, test the specific tracer options */
2602 if (!trace_options[i]) {
Steven Rostedtd8e83d22009-02-26 23:55:58 -05002603 mutex_lock(&trace_types_lock);
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002604 ret = set_tracer_option(current_trace, cmp, neg);
Steven Rostedtd8e83d22009-02-26 23:55:58 -05002605 mutex_unlock(&trace_types_lock);
Frederic Weisbeckeradf9f192008-11-17 19:23:42 +01002606 if (ret)
2607 return ret;
2608 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002609
Jiri Olsacf8517c2009-10-23 19:36:16 -04002610 *ppos += cnt;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002611
2612 return cnt;
2613}
2614
Li Zefanfdb372e2009-12-08 11:15:59 +08002615static int tracing_trace_options_open(struct inode *inode, struct file *file)
2616{
2617 if (tracing_disabled)
2618 return -ENODEV;
2619 return single_open(file, tracing_trace_options_show, NULL);
2620}
2621
Steven Rostedt5e2336a2009-03-05 21:44:55 -05002622static const struct file_operations tracing_iter_fops = {
Li Zefanfdb372e2009-12-08 11:15:59 +08002623 .open = tracing_trace_options_open,
2624 .read = seq_read,
2625 .llseek = seq_lseek,
2626 .release = single_release,
Steven Rostedtee6bce52008-11-12 17:52:37 -05002627 .write = tracing_trace_options_write,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002628};
2629
Ingo Molnar7bd2f242008-05-12 21:20:45 +02002630static const char readme_msg[] =
2631 "tracing mini-HOWTO:\n\n"
GeunSik Lim156f5a72009-06-02 15:01:37 +09002632 "# mount -t debugfs nodev /sys/kernel/debug\n\n"
2633 "# cat /sys/kernel/debug/tracing/available_tracers\n"
Nikanth Karthikesanbc2b68712009-03-23 11:58:31 +05302634 "wakeup preemptirqsoff preemptoff irqsoff function sched_switch nop\n\n"
GeunSik Lim156f5a72009-06-02 15:01:37 +09002635 "# cat /sys/kernel/debug/tracing/current_tracer\n"
Nikanth Karthikesanbc2b68712009-03-23 11:58:31 +05302636 "nop\n"
GeunSik Lim156f5a72009-06-02 15:01:37 +09002637 "# echo sched_switch > /sys/kernel/debug/tracing/current_tracer\n"
2638 "# cat /sys/kernel/debug/tracing/current_tracer\n"
Ingo Molnar7bd2f242008-05-12 21:20:45 +02002639 "sched_switch\n"
GeunSik Lim156f5a72009-06-02 15:01:37 +09002640 "# cat /sys/kernel/debug/tracing/trace_options\n"
Ingo Molnar7bd2f242008-05-12 21:20:45 +02002641 "noprint-parent nosym-offset nosym-addr noverbose\n"
GeunSik Lim156f5a72009-06-02 15:01:37 +09002642 "# echo print-parent > /sys/kernel/debug/tracing/trace_options\n"
2643 "# echo 1 > /sys/kernel/debug/tracing/tracing_enabled\n"
2644 "# cat /sys/kernel/debug/tracing/trace > /tmp/trace.txt\n"
2645 "# echo 0 > /sys/kernel/debug/tracing/tracing_enabled\n"
Ingo Molnar7bd2f242008-05-12 21:20:45 +02002646;
2647
2648static ssize_t
2649tracing_readme_read(struct file *filp, char __user *ubuf,
2650 size_t cnt, loff_t *ppos)
2651{
2652 return simple_read_from_buffer(ubuf, cnt, ppos,
2653 readme_msg, strlen(readme_msg));
2654}
2655
Steven Rostedt5e2336a2009-03-05 21:44:55 -05002656static const struct file_operations tracing_readme_fops = {
Ingo Molnarc7078de2008-05-12 21:20:52 +02002657 .open = tracing_open_generic,
2658 .read = tracing_readme_read,
Ingo Molnar7bd2f242008-05-12 21:20:45 +02002659};
2660
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002661static ssize_t
Avadh Patel69abe6a2009-04-10 16:04:48 -04002662tracing_saved_cmdlines_read(struct file *file, char __user *ubuf,
2663 size_t cnt, loff_t *ppos)
2664{
2665 char *buf_comm;
2666 char *file_buf;
2667 char *buf;
2668 int len = 0;
2669 int pid;
2670 int i;
2671
2672 file_buf = kmalloc(SAVED_CMDLINES*(16+TASK_COMM_LEN), GFP_KERNEL);
2673 if (!file_buf)
2674 return -ENOMEM;
2675
2676 buf_comm = kmalloc(TASK_COMM_LEN, GFP_KERNEL);
2677 if (!buf_comm) {
2678 kfree(file_buf);
2679 return -ENOMEM;
2680 }
2681
2682 buf = file_buf;
2683
2684 for (i = 0; i < SAVED_CMDLINES; i++) {
2685 int r;
2686
2687 pid = map_cmdline_to_pid[i];
2688 if (pid == -1 || pid == NO_CMDLINE_MAP)
2689 continue;
2690
2691 trace_find_cmdline(pid, buf_comm);
2692 r = sprintf(buf, "%d %s\n", pid, buf_comm);
2693 buf += r;
2694 len += r;
2695 }
2696
2697 len = simple_read_from_buffer(ubuf, cnt, ppos,
2698 file_buf, len);
2699
2700 kfree(file_buf);
2701 kfree(buf_comm);
2702
2703 return len;
2704}
2705
2706static const struct file_operations tracing_saved_cmdlines_fops = {
2707 .open = tracing_open_generic,
2708 .read = tracing_saved_cmdlines_read,
2709};
2710
2711static ssize_t
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002712tracing_ctrl_read(struct file *filp, char __user *ubuf,
2713 size_t cnt, loff_t *ppos)
2714{
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002715 char buf[64];
2716 int r;
2717
Steven Rostedt90369902008-11-05 16:05:44 -05002718 r = sprintf(buf, "%u\n", tracer_enabled);
Ingo Molnar4e3c3332008-05-12 21:20:45 +02002719 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002720}
2721
2722static ssize_t
2723tracing_ctrl_write(struct file *filp, const char __user *ubuf,
2724 size_t cnt, loff_t *ppos)
2725{
2726 struct trace_array *tr = filp->private_data;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002727 char buf[64];
Hannes Eder5e398412009-02-10 19:44:34 +01002728 unsigned long val;
Steven Rostedtc6caeeb2008-05-12 21:21:00 +02002729 int ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002730
Steven Rostedtcffae432008-05-12 21:21:00 +02002731 if (cnt >= sizeof(buf))
2732 return -EINVAL;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002733
2734 if (copy_from_user(&buf, ubuf, cnt))
2735 return -EFAULT;
2736
2737 buf[cnt] = 0;
2738
Steven Rostedtc6caeeb2008-05-12 21:21:00 +02002739 ret = strict_strtoul(buf, 10, &val);
2740 if (ret < 0)
2741 return ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002742
2743 val = !!val;
2744
2745 mutex_lock(&trace_types_lock);
Steven Rostedt90369902008-11-05 16:05:44 -05002746 if (tracer_enabled ^ val) {
2747 if (val) {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002748 tracer_enabled = 1;
Steven Rostedt90369902008-11-05 16:05:44 -05002749 if (current_trace->start)
2750 current_trace->start(tr);
2751 tracing_start();
2752 } else {
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002753 tracer_enabled = 0;
Steven Rostedt90369902008-11-05 16:05:44 -05002754 tracing_stop();
2755 if (current_trace->stop)
2756 current_trace->stop(tr);
2757 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002758 }
2759 mutex_unlock(&trace_types_lock);
2760
Jiri Olsacf8517c2009-10-23 19:36:16 -04002761 *ppos += cnt;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002762
2763 return cnt;
2764}
2765
2766static ssize_t
2767tracing_set_trace_read(struct file *filp, char __user *ubuf,
2768 size_t cnt, loff_t *ppos)
2769{
Li Zefanee6c2c12009-09-18 14:06:47 +08002770 char buf[MAX_TRACER_SIZE+2];
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002771 int r;
2772
2773 mutex_lock(&trace_types_lock);
2774 if (current_trace)
2775 r = sprintf(buf, "%s\n", current_trace->name);
2776 else
2777 r = sprintf(buf, "\n");
2778 mutex_unlock(&trace_types_lock);
2779
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002780 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002781}
2782
Arnaldo Carvalho de Melob6f11df2009-02-05 18:02:00 -02002783int tracer_init(struct tracer *t, struct trace_array *tr)
2784{
2785 tracing_reset_online_cpus(tr);
2786 return t->init(tr);
2787}
2788
Steven Rostedt73c51622009-03-11 13:42:01 -04002789static int tracing_resize_ring_buffer(unsigned long size)
2790{
2791 int ret;
2792
2793 /*
2794 * If kernel or user changes the size of the ring buffer
Steven Rostedta123c522009-03-12 11:21:08 -04002795 * we use the size that was given, and we can forget about
2796 * expanding it later.
Steven Rostedt73c51622009-03-11 13:42:01 -04002797 */
2798 ring_buffer_expanded = 1;
2799
2800 ret = ring_buffer_resize(global_trace.buffer, size);
2801 if (ret < 0)
2802 return ret;
2803
2804 ret = ring_buffer_resize(max_tr.buffer, size);
2805 if (ret < 0) {
2806 int r;
2807
2808 r = ring_buffer_resize(global_trace.buffer,
2809 global_trace.entries);
2810 if (r < 0) {
Steven Rostedta123c522009-03-12 11:21:08 -04002811 /*
2812 * AARGH! We are left with different
2813 * size max buffer!!!!
2814 * The max buffer is our "snapshot" buffer.
2815 * When a tracer needs a snapshot (one of the
2816 * latency tracers), it swaps the max buffer
2817 * with the saved snap shot. We succeeded to
2818 * update the size of the main buffer, but failed to
2819 * update the size of the max buffer. But when we tried
2820 * to reset the main buffer to the original size, we
2821 * failed there too. This is very unlikely to
2822 * happen, but if it does, warn and kill all
2823 * tracing.
2824 */
Steven Rostedt73c51622009-03-11 13:42:01 -04002825 WARN_ON(1);
2826 tracing_disabled = 1;
2827 }
2828 return ret;
2829 }
2830
2831 global_trace.entries = size;
2832
2833 return ret;
2834}
2835
Steven Rostedt1852fcc2009-03-11 14:33:00 -04002836/**
2837 * tracing_update_buffers - used by tracing facility to expand ring buffers
2838 *
2839 * To save on memory when the tracing is never used on a system with it
2840 * configured in. The ring buffers are set to a minimum size. But once
2841 * a user starts to use the tracing facility, then they need to grow
2842 * to their default size.
2843 *
2844 * This function is to be called when a tracer is about to be used.
2845 */
2846int tracing_update_buffers(void)
2847{
2848 int ret = 0;
2849
Steven Rostedt1027fcb2009-03-12 11:33:20 -04002850 mutex_lock(&trace_types_lock);
Steven Rostedt1852fcc2009-03-11 14:33:00 -04002851 if (!ring_buffer_expanded)
2852 ret = tracing_resize_ring_buffer(trace_buf_size);
Steven Rostedt1027fcb2009-03-12 11:33:20 -04002853 mutex_unlock(&trace_types_lock);
Steven Rostedt1852fcc2009-03-11 14:33:00 -04002854
2855 return ret;
2856}
2857
Steven Rostedt577b7852009-02-26 23:43:05 -05002858struct trace_option_dentry;
2859
2860static struct trace_option_dentry *
2861create_trace_option_files(struct tracer *tracer);
2862
2863static void
2864destroy_trace_option_files(struct trace_option_dentry *topts);
2865
Steven Rostedtb2821ae2009-02-02 21:38:32 -05002866static int tracing_set_tracer(const char *buf)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002867{
Steven Rostedt577b7852009-02-26 23:43:05 -05002868 static struct trace_option_dentry *topts;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002869 struct trace_array *tr = &global_trace;
2870 struct tracer *t;
Peter Zijlstrad9e54072008-11-01 19:57:37 +01002871 int ret = 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002872
Steven Rostedt1027fcb2009-03-12 11:33:20 -04002873 mutex_lock(&trace_types_lock);
2874
Steven Rostedt73c51622009-03-11 13:42:01 -04002875 if (!ring_buffer_expanded) {
2876 ret = tracing_resize_ring_buffer(trace_buf_size);
2877 if (ret < 0)
Frederic Weisbecker59f586d2009-03-15 22:10:39 +01002878 goto out;
Steven Rostedt73c51622009-03-11 13:42:01 -04002879 ret = 0;
2880 }
2881
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002882 for (t = trace_types; t; t = t->next) {
2883 if (strcmp(t->name, buf) == 0)
2884 break;
2885 }
Frederic Weisbeckerc2931e02008-10-04 22:04:44 +02002886 if (!t) {
2887 ret = -EINVAL;
2888 goto out;
2889 }
2890 if (t == current_trace)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002891 goto out;
2892
Steven Rostedt9f029e82008-11-12 15:24:24 -05002893 trace_branch_disable();
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002894 if (current_trace && current_trace->reset)
2895 current_trace->reset(tr);
2896
Steven Rostedt577b7852009-02-26 23:43:05 -05002897 destroy_trace_option_files(topts);
2898
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002899 current_trace = t;
Steven Rostedt577b7852009-02-26 23:43:05 -05002900
2901 topts = create_trace_option_files(current_trace);
2902
Frederic Weisbecker1c800252008-11-16 05:57:26 +01002903 if (t->init) {
Arnaldo Carvalho de Melob6f11df2009-02-05 18:02:00 -02002904 ret = tracer_init(t, tr);
Frederic Weisbecker1c800252008-11-16 05:57:26 +01002905 if (ret)
2906 goto out;
2907 }
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002908
Steven Rostedt9f029e82008-11-12 15:24:24 -05002909 trace_branch_enable(tr);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002910 out:
2911 mutex_unlock(&trace_types_lock);
2912
Peter Zijlstrad9e54072008-11-01 19:57:37 +01002913 return ret;
2914}
2915
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002916static ssize_t
2917tracing_set_trace_write(struct file *filp, const char __user *ubuf,
2918 size_t cnt, loff_t *ppos)
2919{
Li Zefanee6c2c12009-09-18 14:06:47 +08002920 char buf[MAX_TRACER_SIZE+1];
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002921 int i;
2922 size_t ret;
Frederic Weisbeckere6e7a652008-11-16 05:53:19 +01002923 int err;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002924
Steven Rostedt60063a62008-10-28 10:44:24 -04002925 ret = cnt;
2926
Li Zefanee6c2c12009-09-18 14:06:47 +08002927 if (cnt > MAX_TRACER_SIZE)
2928 cnt = MAX_TRACER_SIZE;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002929
2930 if (copy_from_user(&buf, ubuf, cnt))
2931 return -EFAULT;
2932
2933 buf[cnt] = 0;
2934
2935 /* strip ending whitespace. */
2936 for (i = cnt - 1; i > 0 && isspace(buf[i]); i--)
2937 buf[i] = 0;
2938
Frederic Weisbeckere6e7a652008-11-16 05:53:19 +01002939 err = tracing_set_tracer(buf);
2940 if (err)
2941 return err;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002942
Jiri Olsacf8517c2009-10-23 19:36:16 -04002943 *ppos += ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002944
Frederic Weisbeckerc2931e02008-10-04 22:04:44 +02002945 return ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002946}
2947
2948static ssize_t
2949tracing_max_lat_read(struct file *filp, char __user *ubuf,
2950 size_t cnt, loff_t *ppos)
2951{
2952 unsigned long *ptr = filp->private_data;
2953 char buf[64];
2954 int r;
2955
Steven Rostedtcffae432008-05-12 21:21:00 +02002956 r = snprintf(buf, sizeof(buf), "%ld\n",
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002957 *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
Steven Rostedtcffae432008-05-12 21:21:00 +02002958 if (r > sizeof(buf))
2959 r = sizeof(buf);
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002960 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002961}
2962
2963static ssize_t
2964tracing_max_lat_write(struct file *filp, const char __user *ubuf,
2965 size_t cnt, loff_t *ppos)
2966{
Hannes Eder5e398412009-02-10 19:44:34 +01002967 unsigned long *ptr = filp->private_data;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002968 char buf[64];
Hannes Eder5e398412009-02-10 19:44:34 +01002969 unsigned long val;
Steven Rostedtc6caeeb2008-05-12 21:21:00 +02002970 int ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002971
Steven Rostedtcffae432008-05-12 21:21:00 +02002972 if (cnt >= sizeof(buf))
2973 return -EINVAL;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002974
2975 if (copy_from_user(&buf, ubuf, cnt))
2976 return -EFAULT;
2977
2978 buf[cnt] = 0;
2979
Steven Rostedtc6caeeb2008-05-12 21:21:00 +02002980 ret = strict_strtoul(buf, 10, &val);
2981 if (ret < 0)
2982 return ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02002983
2984 *ptr = val * 1000;
2985
2986 return cnt;
2987}
2988
Steven Rostedtb3806b42008-05-12 21:20:46 +02002989static int tracing_open_pipe(struct inode *inode, struct file *filp)
2990{
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01002991 long cpu_file = (long) inode->i_private;
Steven Rostedtb3806b42008-05-12 21:20:46 +02002992 struct trace_iterator *iter;
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01002993 int ret = 0;
Steven Rostedtb3806b42008-05-12 21:20:46 +02002994
2995 if (tracing_disabled)
2996 return -ENODEV;
2997
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01002998 mutex_lock(&trace_types_lock);
2999
Steven Rostedtb3806b42008-05-12 21:20:46 +02003000 /* create a buffer to store the information to pass to userspace */
3001 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01003002 if (!iter) {
3003 ret = -ENOMEM;
3004 goto out;
3005 }
Steven Rostedtb3806b42008-05-12 21:20:46 +02003006
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003007 /*
3008 * We make a copy of the current tracer to avoid concurrent
3009 * changes on it while we are reading.
3010 */
3011 iter->trace = kmalloc(sizeof(*iter->trace), GFP_KERNEL);
3012 if (!iter->trace) {
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01003013 ret = -ENOMEM;
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003014 goto fail;
3015 }
3016 if (current_trace)
3017 *iter->trace = *current_trace;
3018
3019 if (!alloc_cpumask_var(&iter->started, GFP_KERNEL)) {
3020 ret = -ENOMEM;
3021 goto fail;
Rusty Russell44623442009-01-01 10:12:23 +10303022 }
3023
Steven Rostedta3097202008-11-07 22:36:02 -05003024 /* trace pipe does not show start of buffer */
Rusty Russell44623442009-01-01 10:12:23 +10303025 cpumask_setall(iter->started);
Steven Rostedta3097202008-11-07 22:36:02 -05003026
Steven Rostedt112f38a72009-06-01 15:16:05 -04003027 if (trace_flags & TRACE_ITER_LATENCY_FMT)
3028 iter->iter_flags |= TRACE_FILE_LAT_FMT;
3029
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01003030 iter->cpu_file = cpu_file;
Steven Rostedtb3806b42008-05-12 21:20:46 +02003031 iter->tr = &global_trace;
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003032 mutex_init(&iter->mutex);
Steven Rostedtb3806b42008-05-12 21:20:46 +02003033 filp->private_data = iter;
3034
Steven Rostedt107bad82008-05-12 21:21:01 +02003035 if (iter->trace->pipe_open)
3036 iter->trace->pipe_open(iter);
Steven Rostedt107bad82008-05-12 21:21:01 +02003037
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01003038out:
3039 mutex_unlock(&trace_types_lock);
3040 return ret;
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003041
3042fail:
3043 kfree(iter->trace);
3044 kfree(iter);
3045 mutex_unlock(&trace_types_lock);
3046 return ret;
Steven Rostedtb3806b42008-05-12 21:20:46 +02003047}
3048
3049static int tracing_release_pipe(struct inode *inode, struct file *file)
3050{
3051 struct trace_iterator *iter = file->private_data;
3052
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01003053 mutex_lock(&trace_types_lock);
3054
Steven Rostedt29bf4a52009-12-09 12:37:43 -05003055 if (iter->trace->pipe_close)
Steven Rostedtc521efd2009-12-07 09:06:24 -05003056 iter->trace->pipe_close(iter);
3057
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01003058 mutex_unlock(&trace_types_lock);
3059
Rusty Russell44623442009-01-01 10:12:23 +10303060 free_cpumask_var(iter->started);
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003061 mutex_destroy(&iter->mutex);
3062 kfree(iter->trace);
Steven Rostedtb3806b42008-05-12 21:20:46 +02003063 kfree(iter);
Steven Rostedtb3806b42008-05-12 21:20:46 +02003064
3065 return 0;
3066}
3067
Soeren Sandmann Pedersen2a2cc8f2008-05-12 21:20:49 +02003068static unsigned int
3069tracing_poll_pipe(struct file *filp, poll_table *poll_table)
3070{
3071 struct trace_iterator *iter = filp->private_data;
3072
3073 if (trace_flags & TRACE_ITER_BLOCK) {
3074 /*
3075 * Always select as readable when in blocking mode
3076 */
3077 return POLLIN | POLLRDNORM;
Ingo Molnarafc2abc2008-05-12 21:21:00 +02003078 } else {
Soeren Sandmann Pedersen2a2cc8f2008-05-12 21:20:49 +02003079 if (!trace_empty(iter))
3080 return POLLIN | POLLRDNORM;
3081 poll_wait(filp, &trace_wait, poll_table);
3082 if (!trace_empty(iter))
3083 return POLLIN | POLLRDNORM;
3084
3085 return 0;
3086 }
3087}
3088
Frederic Weisbecker6eaaa5d2009-02-11 02:25:00 +01003089
3090void default_wait_pipe(struct trace_iterator *iter)
3091{
3092 DEFINE_WAIT(wait);
3093
3094 prepare_to_wait(&trace_wait, &wait, TASK_INTERRUPTIBLE);
3095
3096 if (trace_empty(iter))
3097 schedule();
3098
3099 finish_wait(&trace_wait, &wait);
3100}
3101
3102/*
3103 * This is a make-shift waitqueue.
3104 * A tracer might use this callback on some rare cases:
3105 *
3106 * 1) the current tracer might hold the runqueue lock when it wakes up
3107 * a reader, hence a deadlock (sched, function, and function graph tracers)
3108 * 2) the function tracers, trace all functions, we don't want
3109 * the overhead of calling wake_up and friends
3110 * (and tracing them too)
3111 *
3112 * Anyway, this is really very primitive wakeup.
3113 */
3114void poll_wait_pipe(struct trace_iterator *iter)
3115{
3116 set_current_state(TASK_INTERRUPTIBLE);
3117 /* sleep for 100 msecs, and try again. */
3118 schedule_timeout(HZ / 10);
3119}
3120
Eduard - Gabriel Munteanuff987812009-02-09 08:15:55 +02003121/* Must be called with trace_types_lock mutex held. */
3122static int tracing_wait_pipe(struct file *filp)
3123{
3124 struct trace_iterator *iter = filp->private_data;
3125
3126 while (trace_empty(iter)) {
3127
3128 if ((filp->f_flags & O_NONBLOCK)) {
3129 return -EAGAIN;
3130 }
3131
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003132 mutex_unlock(&iter->mutex);
Eduard - Gabriel Munteanuff987812009-02-09 08:15:55 +02003133
Frederic Weisbecker6eaaa5d2009-02-11 02:25:00 +01003134 iter->trace->wait_pipe(iter);
Eduard - Gabriel Munteanuff987812009-02-09 08:15:55 +02003135
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003136 mutex_lock(&iter->mutex);
Eduard - Gabriel Munteanuff987812009-02-09 08:15:55 +02003137
Frederic Weisbecker6eaaa5d2009-02-11 02:25:00 +01003138 if (signal_pending(current))
Eduard - Gabriel Munteanuff987812009-02-09 08:15:55 +02003139 return -EINTR;
Eduard - Gabriel Munteanuff987812009-02-09 08:15:55 +02003140
Eduard - Gabriel Munteanuff987812009-02-09 08:15:55 +02003141 /*
3142 * We block until we read something and tracing is disabled.
3143 * We still block if tracing is disabled, but we have never
3144 * read anything. This allows a user to cat this file, and
3145 * then enable tracing. But after we have read something,
3146 * we give an EOF when tracing is again disabled.
3147 *
3148 * iter->pos will be 0 if we haven't read anything.
3149 */
3150 if (!tracer_enabled && iter->pos)
3151 break;
Eduard - Gabriel Munteanuff987812009-02-09 08:15:55 +02003152 }
3153
3154 return 1;
3155}
3156
Steven Rostedtb3806b42008-05-12 21:20:46 +02003157/*
3158 * Consumer reader.
3159 */
3160static ssize_t
3161tracing_read_pipe(struct file *filp, char __user *ubuf,
3162 size_t cnt, loff_t *ppos)
3163{
3164 struct trace_iterator *iter = filp->private_data;
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003165 static struct tracer *old_tracer;
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02003166 ssize_t sret;
Steven Rostedtb3806b42008-05-12 21:20:46 +02003167
3168 /* return any leftover data */
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02003169 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
3170 if (sret != -EBUSY)
3171 return sret;
Steven Rostedtb3806b42008-05-12 21:20:46 +02003172
Steven Rostedtf9520752009-03-02 14:04:40 -05003173 trace_seq_init(&iter->seq);
Steven Rostedtb3806b42008-05-12 21:20:46 +02003174
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003175 /* copy the tracer to avoid using a global lock all around */
Steven Rostedt107bad82008-05-12 21:21:01 +02003176 mutex_lock(&trace_types_lock);
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003177 if (unlikely(old_tracer != current_trace && current_trace)) {
3178 old_tracer = current_trace;
3179 *iter->trace = *current_trace;
3180 }
3181 mutex_unlock(&trace_types_lock);
3182
3183 /*
3184 * Avoid more than one consumer on a single file descriptor
3185 * This is just a matter of traces coherency, the ring buffer itself
3186 * is protected.
3187 */
3188 mutex_lock(&iter->mutex);
Steven Rostedt107bad82008-05-12 21:21:01 +02003189 if (iter->trace->read) {
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02003190 sret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
3191 if (sret)
Steven Rostedt107bad82008-05-12 21:21:01 +02003192 goto out;
Steven Rostedt107bad82008-05-12 21:21:01 +02003193 }
3194
Pekka Paalanen9ff4b972008-09-29 20:23:48 +02003195waitagain:
Eduard - Gabriel Munteanuff987812009-02-09 08:15:55 +02003196 sret = tracing_wait_pipe(filp);
3197 if (sret <= 0)
3198 goto out;
Steven Rostedtb3806b42008-05-12 21:20:46 +02003199
3200 /* stop when tracing is finished */
Eduard - Gabriel Munteanuff987812009-02-09 08:15:55 +02003201 if (trace_empty(iter)) {
3202 sret = 0;
Steven Rostedt107bad82008-05-12 21:21:01 +02003203 goto out;
Eduard - Gabriel Munteanuff987812009-02-09 08:15:55 +02003204 }
Steven Rostedtb3806b42008-05-12 21:20:46 +02003205
3206 if (cnt >= PAGE_SIZE)
3207 cnt = PAGE_SIZE - 1;
3208
Steven Rostedt53d0aa72008-05-12 21:21:01 +02003209 /* reset all but tr, trace, and overruns */
Steven Rostedt53d0aa72008-05-12 21:21:01 +02003210 memset(&iter->seq, 0,
3211 sizeof(struct trace_iterator) -
3212 offsetof(struct trace_iterator, seq));
Steven Rostedt4823ed72008-05-12 21:21:01 +02003213 iter->pos = -1;
Steven Rostedtb3806b42008-05-12 21:20:46 +02003214
Lai Jiangshan4f535962009-05-18 19:35:34 +08003215 trace_event_read_lock();
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08003216 trace_access_lock(iter->cpu_file);
Steven Rostedt088b1e422008-05-12 21:20:48 +02003217 while (find_next_entry_inc(iter) != NULL) {
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02003218 enum print_line_t ret;
Steven Rostedt088b1e422008-05-12 21:20:48 +02003219 int len = iter->seq.len;
3220
Ingo Molnarf9896bf2008-05-12 21:20:47 +02003221 ret = print_trace_line(iter);
Frederic Weisbecker2c4f0352008-09-29 20:18:34 +02003222 if (ret == TRACE_TYPE_PARTIAL_LINE) {
Steven Rostedt088b1e422008-05-12 21:20:48 +02003223 /* don't print partial lines */
3224 iter->seq.len = len;
Steven Rostedtb3806b42008-05-12 21:20:46 +02003225 break;
Steven Rostedt088b1e422008-05-12 21:20:48 +02003226 }
Frederic Weisbeckerb91facc2009-02-06 18:30:44 +01003227 if (ret != TRACE_TYPE_NO_CONSUME)
3228 trace_consume(iter);
Steven Rostedtb3806b42008-05-12 21:20:46 +02003229
3230 if (iter->seq.len >= cnt)
3231 break;
Steven Rostedtb3806b42008-05-12 21:20:46 +02003232 }
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08003233 trace_access_unlock(iter->cpu_file);
Lai Jiangshan4f535962009-05-18 19:35:34 +08003234 trace_event_read_unlock();
Steven Rostedtb3806b42008-05-12 21:20:46 +02003235
Steven Rostedtb3806b42008-05-12 21:20:46 +02003236 /* Now copy what we have to the user */
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02003237 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
3238 if (iter->seq.readpos >= iter->seq.len)
Steven Rostedtf9520752009-03-02 14:04:40 -05003239 trace_seq_init(&iter->seq);
Pekka Paalanen9ff4b972008-09-29 20:23:48 +02003240
3241 /*
3242 * If there was nothing to send to user, inspite of consuming trace
3243 * entries, go back to wait for more entries.
3244 */
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02003245 if (sret == -EBUSY)
Pekka Paalanen9ff4b972008-09-29 20:23:48 +02003246 goto waitagain;
Steven Rostedtb3806b42008-05-12 21:20:46 +02003247
Steven Rostedt107bad82008-05-12 21:21:01 +02003248out:
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003249 mutex_unlock(&iter->mutex);
Steven Rostedt107bad82008-05-12 21:21:01 +02003250
Pekka Paalanen6c6c2792008-05-12 21:21:02 +02003251 return sret;
Steven Rostedtb3806b42008-05-12 21:20:46 +02003252}
3253
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003254static void tracing_pipe_buf_release(struct pipe_inode_info *pipe,
3255 struct pipe_buffer *buf)
3256{
3257 __free_page(buf->page);
3258}
3259
3260static void tracing_spd_release_pipe(struct splice_pipe_desc *spd,
3261 unsigned int idx)
3262{
3263 __free_page(spd->pages[idx]);
3264}
3265
Alexey Dobriyan28dfef82009-12-15 16:46:48 -08003266static const struct pipe_buf_operations tracing_pipe_buf_ops = {
Steven Rostedt34cd4992009-02-09 12:06:29 -05003267 .can_merge = 0,
3268 .map = generic_pipe_buf_map,
3269 .unmap = generic_pipe_buf_unmap,
3270 .confirm = generic_pipe_buf_confirm,
3271 .release = tracing_pipe_buf_release,
3272 .steal = generic_pipe_buf_steal,
3273 .get = generic_pipe_buf_get,
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003274};
3275
Steven Rostedt34cd4992009-02-09 12:06:29 -05003276static size_t
Frederic Weisbeckerfa7c7f62009-02-11 02:51:30 +01003277tracing_fill_pipe_page(size_t rem, struct trace_iterator *iter)
Steven Rostedt34cd4992009-02-09 12:06:29 -05003278{
3279 size_t count;
3280 int ret;
3281
3282 /* Seq buffer is page-sized, exactly what we need. */
3283 for (;;) {
3284 count = iter->seq.len;
3285 ret = print_trace_line(iter);
3286 count = iter->seq.len - count;
3287 if (rem < count) {
3288 rem = 0;
3289 iter->seq.len -= count;
3290 break;
3291 }
3292 if (ret == TRACE_TYPE_PARTIAL_LINE) {
3293 iter->seq.len -= count;
3294 break;
3295 }
3296
Lai Jiangshan74e7ff82009-07-28 20:17:22 +08003297 if (ret != TRACE_TYPE_NO_CONSUME)
3298 trace_consume(iter);
Steven Rostedt34cd4992009-02-09 12:06:29 -05003299 rem -= count;
3300 if (!find_next_entry_inc(iter)) {
3301 rem = 0;
3302 iter->ent = NULL;
3303 break;
3304 }
3305 }
3306
3307 return rem;
3308}
3309
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003310static ssize_t tracing_splice_read_pipe(struct file *filp,
3311 loff_t *ppos,
3312 struct pipe_inode_info *pipe,
3313 size_t len,
3314 unsigned int flags)
3315{
Jens Axboe35f3d142010-05-20 10:43:18 +02003316 struct page *pages_def[PIPE_DEF_BUFFERS];
3317 struct partial_page partial_def[PIPE_DEF_BUFFERS];
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003318 struct trace_iterator *iter = filp->private_data;
3319 struct splice_pipe_desc spd = {
Jens Axboe35f3d142010-05-20 10:43:18 +02003320 .pages = pages_def,
3321 .partial = partial_def,
Steven Rostedt34cd4992009-02-09 12:06:29 -05003322 .nr_pages = 0, /* This gets updated below. */
3323 .flags = flags,
3324 .ops = &tracing_pipe_buf_ops,
3325 .spd_release = tracing_spd_release_pipe,
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003326 };
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003327 static struct tracer *old_tracer;
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003328 ssize_t ret;
Steven Rostedt34cd4992009-02-09 12:06:29 -05003329 size_t rem;
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003330 unsigned int i;
3331
Jens Axboe35f3d142010-05-20 10:43:18 +02003332 if (splice_grow_spd(pipe, &spd))
3333 return -ENOMEM;
3334
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003335 /* copy the tracer to avoid using a global lock all around */
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003336 mutex_lock(&trace_types_lock);
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003337 if (unlikely(old_tracer != current_trace && current_trace)) {
3338 old_tracer = current_trace;
3339 *iter->trace = *current_trace;
3340 }
3341 mutex_unlock(&trace_types_lock);
3342
3343 mutex_lock(&iter->mutex);
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003344
3345 if (iter->trace->splice_read) {
3346 ret = iter->trace->splice_read(iter, filp,
3347 ppos, pipe, len, flags);
3348 if (ret)
Steven Rostedt34cd4992009-02-09 12:06:29 -05003349 goto out_err;
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003350 }
3351
3352 ret = tracing_wait_pipe(filp);
3353 if (ret <= 0)
Steven Rostedt34cd4992009-02-09 12:06:29 -05003354 goto out_err;
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003355
3356 if (!iter->ent && !find_next_entry_inc(iter)) {
3357 ret = -EFAULT;
Steven Rostedt34cd4992009-02-09 12:06:29 -05003358 goto out_err;
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003359 }
3360
Lai Jiangshan4f535962009-05-18 19:35:34 +08003361 trace_event_read_lock();
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08003362 trace_access_lock(iter->cpu_file);
Lai Jiangshan4f535962009-05-18 19:35:34 +08003363
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003364 /* Fill as many pages as possible. */
Jens Axboe35f3d142010-05-20 10:43:18 +02003365 for (i = 0, rem = len; i < pipe->buffers && rem; i++) {
3366 spd.pages[i] = alloc_page(GFP_KERNEL);
3367 if (!spd.pages[i])
Steven Rostedt34cd4992009-02-09 12:06:29 -05003368 break;
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003369
Frederic Weisbeckerfa7c7f62009-02-11 02:51:30 +01003370 rem = tracing_fill_pipe_page(rem, iter);
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003371
3372 /* Copy the data into the page, so we can start over. */
3373 ret = trace_seq_to_buffer(&iter->seq,
Jens Axboe35f3d142010-05-20 10:43:18 +02003374 page_address(spd.pages[i]),
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003375 iter->seq.len);
3376 if (ret < 0) {
Jens Axboe35f3d142010-05-20 10:43:18 +02003377 __free_page(spd.pages[i]);
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003378 break;
3379 }
Jens Axboe35f3d142010-05-20 10:43:18 +02003380 spd.partial[i].offset = 0;
3381 spd.partial[i].len = iter->seq.len;
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003382
Steven Rostedtf9520752009-03-02 14:04:40 -05003383 trace_seq_init(&iter->seq);
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003384 }
3385
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08003386 trace_access_unlock(iter->cpu_file);
Lai Jiangshan4f535962009-05-18 19:35:34 +08003387 trace_event_read_unlock();
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003388 mutex_unlock(&iter->mutex);
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003389
3390 spd.nr_pages = i;
3391
Jens Axboe35f3d142010-05-20 10:43:18 +02003392 ret = splice_to_pipe(pipe, &spd);
3393out:
3394 splice_shrink_spd(pipe, &spd);
3395 return ret;
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003396
Steven Rostedt34cd4992009-02-09 12:06:29 -05003397out_err:
Frederic Weisbeckerd7350c3f2009-02-25 06:13:16 +01003398 mutex_unlock(&iter->mutex);
Jens Axboe35f3d142010-05-20 10:43:18 +02003399 goto out;
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003400}
3401
Steven Rostedta98a3c32008-05-12 21:20:59 +02003402static ssize_t
3403tracing_entries_read(struct file *filp, char __user *ubuf,
3404 size_t cnt, loff_t *ppos)
3405{
3406 struct trace_array *tr = filp->private_data;
Steven Rostedtdb526ca2009-03-12 13:53:25 -04003407 char buf[96];
Steven Rostedta98a3c32008-05-12 21:20:59 +02003408 int r;
3409
Steven Rostedtdb526ca2009-03-12 13:53:25 -04003410 mutex_lock(&trace_types_lock);
3411 if (!ring_buffer_expanded)
3412 r = sprintf(buf, "%lu (expanded: %lu)\n",
3413 tr->entries >> 10,
3414 trace_buf_size >> 10);
3415 else
3416 r = sprintf(buf, "%lu\n", tr->entries >> 10);
3417 mutex_unlock(&trace_types_lock);
3418
Steven Rostedta98a3c32008-05-12 21:20:59 +02003419 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3420}
3421
3422static ssize_t
3423tracing_entries_write(struct file *filp, const char __user *ubuf,
3424 size_t cnt, loff_t *ppos)
3425{
3426 unsigned long val;
3427 char buf[64];
Steven Rostedtbf5e6512008-11-10 21:46:00 -05003428 int ret, cpu;
Steven Rostedta98a3c32008-05-12 21:20:59 +02003429
Steven Rostedtcffae432008-05-12 21:21:00 +02003430 if (cnt >= sizeof(buf))
3431 return -EINVAL;
Steven Rostedta98a3c32008-05-12 21:20:59 +02003432
3433 if (copy_from_user(&buf, ubuf, cnt))
3434 return -EFAULT;
3435
3436 buf[cnt] = 0;
3437
Steven Rostedtc6caeeb2008-05-12 21:21:00 +02003438 ret = strict_strtoul(buf, 10, &val);
3439 if (ret < 0)
3440 return ret;
Steven Rostedta98a3c32008-05-12 21:20:59 +02003441
3442 /* must have at least 1 entry */
3443 if (!val)
3444 return -EINVAL;
3445
3446 mutex_lock(&trace_types_lock);
3447
Steven Rostedtc76f0692008-11-07 22:36:02 -05003448 tracing_stop();
Steven Rostedta98a3c32008-05-12 21:20:59 +02003449
Steven Rostedtbf5e6512008-11-10 21:46:00 -05003450 /* disable all cpu buffers */
3451 for_each_tracing_cpu(cpu) {
3452 if (global_trace.data[cpu])
3453 atomic_inc(&global_trace.data[cpu]->disabled);
3454 if (max_tr.data[cpu])
3455 atomic_inc(&max_tr.data[cpu]->disabled);
3456 }
3457
Steven Rostedt1696b2b2008-11-13 00:09:35 -05003458 /* value is in KB */
3459 val <<= 10;
3460
Steven Rostedt3928a8a2008-09-29 23:02:41 -04003461 if (val != global_trace.entries) {
Steven Rostedt73c51622009-03-11 13:42:01 -04003462 ret = tracing_resize_ring_buffer(val);
Steven Rostedt3928a8a2008-09-29 23:02:41 -04003463 if (ret < 0) {
3464 cnt = ret;
Steven Rostedt3eefae92008-05-12 21:21:04 +02003465 goto out;
3466 }
Steven Rostedta98a3c32008-05-12 21:20:59 +02003467 }
3468
Jiri Olsacf8517c2009-10-23 19:36:16 -04003469 *ppos += cnt;
Steven Rostedta98a3c32008-05-12 21:20:59 +02003470
Steven Rostedt19384c02008-05-22 00:22:16 -04003471 /* If check pages failed, return ENOMEM */
3472 if (tracing_disabled)
3473 cnt = -ENOMEM;
Steven Rostedta98a3c32008-05-12 21:20:59 +02003474 out:
Steven Rostedtbf5e6512008-11-10 21:46:00 -05003475 for_each_tracing_cpu(cpu) {
3476 if (global_trace.data[cpu])
3477 atomic_dec(&global_trace.data[cpu]->disabled);
3478 if (max_tr.data[cpu])
3479 atomic_dec(&max_tr.data[cpu]->disabled);
3480 }
3481
Steven Rostedtc76f0692008-11-07 22:36:02 -05003482 tracing_start();
Steven Rostedta98a3c32008-05-12 21:20:59 +02003483 max_tr.entries = global_trace.entries;
3484 mutex_unlock(&trace_types_lock);
3485
3486 return cnt;
3487}
3488
Carsten Emdef2942482009-12-06 14:02:44 +01003489static int mark_printk(const char *fmt, ...)
3490{
3491 int ret;
3492 va_list args;
3493 va_start(args, fmt);
3494 ret = trace_vprintk(0, fmt, args);
3495 va_end(args);
3496 return ret;
3497}
3498
Pekka Paalanen5bf9a1e2008-09-16 22:06:42 +03003499static ssize_t
3500tracing_mark_write(struct file *filp, const char __user *ubuf,
3501 size_t cnt, loff_t *fpos)
3502{
3503 char *buf;
Pekka Paalanen5bf9a1e2008-09-16 22:06:42 +03003504
Steven Rostedtc76f0692008-11-07 22:36:02 -05003505 if (tracing_disabled)
Pekka Paalanen5bf9a1e2008-09-16 22:06:42 +03003506 return -EINVAL;
3507
3508 if (cnt > TRACE_BUF_SIZE)
3509 cnt = TRACE_BUF_SIZE;
3510
Carsten Emdec13d2f72009-11-16 20:56:13 +01003511 buf = kmalloc(cnt + 2, GFP_KERNEL);
Pekka Paalanen5bf9a1e2008-09-16 22:06:42 +03003512 if (buf == NULL)
3513 return -ENOMEM;
3514
3515 if (copy_from_user(buf, ubuf, cnt)) {
3516 kfree(buf);
3517 return -EFAULT;
3518 }
Carsten Emdec13d2f72009-11-16 20:56:13 +01003519 if (buf[cnt-1] != '\n') {
3520 buf[cnt] = '\n';
3521 buf[cnt+1] = '\0';
3522 } else
3523 buf[cnt] = '\0';
Pekka Paalanen5bf9a1e2008-09-16 22:06:42 +03003524
Carsten Emdef2942482009-12-06 14:02:44 +01003525 cnt = mark_printk("%s", buf);
Pekka Paalanen5bf9a1e2008-09-16 22:06:42 +03003526 kfree(buf);
3527 *fpos += cnt;
3528
3529 return cnt;
3530}
3531
Li Zefan13f16d22009-12-08 11:16:11 +08003532static int tracing_clock_show(struct seq_file *m, void *v)
Zhaolei5079f322009-08-25 16:12:56 +08003533{
Zhaolei5079f322009-08-25 16:12:56 +08003534 int i;
3535
3536 for (i = 0; i < ARRAY_SIZE(trace_clocks); i++)
Li Zefan13f16d22009-12-08 11:16:11 +08003537 seq_printf(m,
Zhaolei5079f322009-08-25 16:12:56 +08003538 "%s%s%s%s", i ? " " : "",
3539 i == trace_clock_id ? "[" : "", trace_clocks[i].name,
3540 i == trace_clock_id ? "]" : "");
Li Zefan13f16d22009-12-08 11:16:11 +08003541 seq_putc(m, '\n');
Zhaolei5079f322009-08-25 16:12:56 +08003542
Li Zefan13f16d22009-12-08 11:16:11 +08003543 return 0;
Zhaolei5079f322009-08-25 16:12:56 +08003544}
3545
3546static ssize_t tracing_clock_write(struct file *filp, const char __user *ubuf,
3547 size_t cnt, loff_t *fpos)
3548{
3549 char buf[64];
3550 const char *clockstr;
3551 int i;
3552
3553 if (cnt >= sizeof(buf))
3554 return -EINVAL;
3555
3556 if (copy_from_user(&buf, ubuf, cnt))
3557 return -EFAULT;
3558
3559 buf[cnt] = 0;
3560
3561 clockstr = strstrip(buf);
3562
3563 for (i = 0; i < ARRAY_SIZE(trace_clocks); i++) {
3564 if (strcmp(trace_clocks[i].name, clockstr) == 0)
3565 break;
3566 }
3567 if (i == ARRAY_SIZE(trace_clocks))
3568 return -EINVAL;
3569
3570 trace_clock_id = i;
3571
3572 mutex_lock(&trace_types_lock);
3573
3574 ring_buffer_set_clock(global_trace.buffer, trace_clocks[i].func);
3575 if (max_tr.buffer)
3576 ring_buffer_set_clock(max_tr.buffer, trace_clocks[i].func);
3577
3578 mutex_unlock(&trace_types_lock);
3579
3580 *fpos += cnt;
3581
3582 return cnt;
3583}
3584
Li Zefan13f16d22009-12-08 11:16:11 +08003585static int tracing_clock_open(struct inode *inode, struct file *file)
3586{
3587 if (tracing_disabled)
3588 return -ENODEV;
3589 return single_open(file, tracing_clock_show, NULL);
3590}
3591
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003592static const struct file_operations tracing_max_lat_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02003593 .open = tracing_open_generic,
3594 .read = tracing_max_lat_read,
3595 .write = tracing_max_lat_write,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003596};
3597
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003598static const struct file_operations tracing_ctrl_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02003599 .open = tracing_open_generic,
3600 .read = tracing_ctrl_read,
3601 .write = tracing_ctrl_write,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003602};
3603
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003604static const struct file_operations set_tracer_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02003605 .open = tracing_open_generic,
3606 .read = tracing_set_trace_read,
3607 .write = tracing_set_trace_write,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003608};
3609
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003610static const struct file_operations tracing_pipe_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02003611 .open = tracing_open_pipe,
Soeren Sandmann Pedersen2a2cc8f2008-05-12 21:20:49 +02003612 .poll = tracing_poll_pipe,
Ingo Molnar4bf39a92008-05-12 21:20:46 +02003613 .read = tracing_read_pipe,
Eduard - Gabriel Munteanu3c568192009-02-09 08:15:56 +02003614 .splice_read = tracing_splice_read_pipe,
Ingo Molnar4bf39a92008-05-12 21:20:46 +02003615 .release = tracing_release_pipe,
Steven Rostedtb3806b42008-05-12 21:20:46 +02003616};
3617
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003618static const struct file_operations tracing_entries_fops = {
Steven Rostedta98a3c32008-05-12 21:20:59 +02003619 .open = tracing_open_generic,
3620 .read = tracing_entries_read,
3621 .write = tracing_entries_write,
3622};
3623
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003624static const struct file_operations tracing_mark_fops = {
Frédéric Weisbecker43a15382008-09-21 20:16:30 +02003625 .open = tracing_open_generic,
Pekka Paalanen5bf9a1e2008-09-16 22:06:42 +03003626 .write = tracing_mark_write,
3627};
3628
Zhaolei5079f322009-08-25 16:12:56 +08003629static const struct file_operations trace_clock_fops = {
Li Zefan13f16d22009-12-08 11:16:11 +08003630 .open = tracing_clock_open,
3631 .read = seq_read,
3632 .llseek = seq_lseek,
3633 .release = single_release,
Zhaolei5079f322009-08-25 16:12:56 +08003634 .write = tracing_clock_write,
3635};
3636
Steven Rostedt2cadf912008-12-01 22:20:19 -05003637struct ftrace_buffer_info {
3638 struct trace_array *tr;
3639 void *spare;
3640 int cpu;
3641 unsigned int read;
3642};
3643
3644static int tracing_buffers_open(struct inode *inode, struct file *filp)
3645{
3646 int cpu = (int)(long)inode->i_private;
3647 struct ftrace_buffer_info *info;
3648
3649 if (tracing_disabled)
3650 return -ENODEV;
3651
3652 info = kzalloc(sizeof(*info), GFP_KERNEL);
3653 if (!info)
3654 return -ENOMEM;
3655
3656 info->tr = &global_trace;
3657 info->cpu = cpu;
Lai Jiangshanddd538f2009-04-02 15:16:59 +08003658 info->spare = NULL;
Steven Rostedt2cadf912008-12-01 22:20:19 -05003659 /* Force reading ring buffer for first read */
3660 info->read = (unsigned int)-1;
Steven Rostedt2cadf912008-12-01 22:20:19 -05003661
3662 filp->private_data = info;
3663
Lai Jiangshand1e7e022009-04-02 15:16:56 +08003664 return nonseekable_open(inode, filp);
Steven Rostedt2cadf912008-12-01 22:20:19 -05003665}
3666
3667static ssize_t
3668tracing_buffers_read(struct file *filp, char __user *ubuf,
3669 size_t count, loff_t *ppos)
3670{
3671 struct ftrace_buffer_info *info = filp->private_data;
Steven Rostedt2cadf912008-12-01 22:20:19 -05003672 ssize_t ret;
3673 size_t size;
3674
Steven Rostedt2dc5d122009-03-04 19:10:05 -05003675 if (!count)
3676 return 0;
3677
Lai Jiangshanddd538f2009-04-02 15:16:59 +08003678 if (!info->spare)
3679 info->spare = ring_buffer_alloc_read_page(info->tr->buffer);
3680 if (!info->spare)
3681 return -ENOMEM;
3682
Steven Rostedt2cadf912008-12-01 22:20:19 -05003683 /* Do we have previous read data to read? */
3684 if (info->read < PAGE_SIZE)
3685 goto read;
3686
3687 info->read = 0;
3688
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08003689 trace_access_lock(info->cpu);
Steven Rostedt2cadf912008-12-01 22:20:19 -05003690 ret = ring_buffer_read_page(info->tr->buffer,
3691 &info->spare,
3692 count,
3693 info->cpu, 0);
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08003694 trace_access_unlock(info->cpu);
Steven Rostedt2cadf912008-12-01 22:20:19 -05003695 if (ret < 0)
3696 return 0;
3697
Steven Rostedt2cadf912008-12-01 22:20:19 -05003698read:
3699 size = PAGE_SIZE - info->read;
3700 if (size > count)
3701 size = count;
3702
3703 ret = copy_to_user(ubuf, info->spare + info->read, size);
Steven Rostedt2dc5d122009-03-04 19:10:05 -05003704 if (ret == size)
Steven Rostedt2cadf912008-12-01 22:20:19 -05003705 return -EFAULT;
Steven Rostedt2dc5d122009-03-04 19:10:05 -05003706 size -= ret;
3707
Steven Rostedt2cadf912008-12-01 22:20:19 -05003708 *ppos += size;
3709 info->read += size;
3710
3711 return size;
3712}
3713
3714static int tracing_buffers_release(struct inode *inode, struct file *file)
3715{
3716 struct ftrace_buffer_info *info = file->private_data;
3717
Lai Jiangshanddd538f2009-04-02 15:16:59 +08003718 if (info->spare)
3719 ring_buffer_free_read_page(info->tr->buffer, info->spare);
Steven Rostedt2cadf912008-12-01 22:20:19 -05003720 kfree(info);
3721
3722 return 0;
3723}
3724
3725struct buffer_ref {
3726 struct ring_buffer *buffer;
3727 void *page;
3728 int ref;
3729};
3730
3731static void buffer_pipe_buf_release(struct pipe_inode_info *pipe,
3732 struct pipe_buffer *buf)
3733{
3734 struct buffer_ref *ref = (struct buffer_ref *)buf->private;
3735
3736 if (--ref->ref)
3737 return;
3738
3739 ring_buffer_free_read_page(ref->buffer, ref->page);
3740 kfree(ref);
3741 buf->private = 0;
3742}
3743
3744static int buffer_pipe_buf_steal(struct pipe_inode_info *pipe,
3745 struct pipe_buffer *buf)
3746{
3747 return 1;
3748}
3749
3750static void buffer_pipe_buf_get(struct pipe_inode_info *pipe,
3751 struct pipe_buffer *buf)
3752{
3753 struct buffer_ref *ref = (struct buffer_ref *)buf->private;
3754
3755 ref->ref++;
3756}
3757
3758/* Pipe buffer operations for a buffer. */
Alexey Dobriyan28dfef82009-12-15 16:46:48 -08003759static const struct pipe_buf_operations buffer_pipe_buf_ops = {
Steven Rostedt2cadf912008-12-01 22:20:19 -05003760 .can_merge = 0,
3761 .map = generic_pipe_buf_map,
3762 .unmap = generic_pipe_buf_unmap,
3763 .confirm = generic_pipe_buf_confirm,
3764 .release = buffer_pipe_buf_release,
3765 .steal = buffer_pipe_buf_steal,
3766 .get = buffer_pipe_buf_get,
3767};
3768
3769/*
3770 * Callback from splice_to_pipe(), if we need to release some pages
3771 * at the end of the spd in case we error'ed out in filling the pipe.
3772 */
3773static void buffer_spd_release(struct splice_pipe_desc *spd, unsigned int i)
3774{
3775 struct buffer_ref *ref =
3776 (struct buffer_ref *)spd->partial[i].private;
3777
3778 if (--ref->ref)
3779 return;
3780
3781 ring_buffer_free_read_page(ref->buffer, ref->page);
3782 kfree(ref);
3783 spd->partial[i].private = 0;
3784}
3785
3786static ssize_t
3787tracing_buffers_splice_read(struct file *file, loff_t *ppos,
3788 struct pipe_inode_info *pipe, size_t len,
3789 unsigned int flags)
3790{
3791 struct ftrace_buffer_info *info = file->private_data;
Jens Axboe35f3d142010-05-20 10:43:18 +02003792 struct partial_page partial_def[PIPE_DEF_BUFFERS];
3793 struct page *pages_def[PIPE_DEF_BUFFERS];
Steven Rostedt2cadf912008-12-01 22:20:19 -05003794 struct splice_pipe_desc spd = {
Jens Axboe35f3d142010-05-20 10:43:18 +02003795 .pages = pages_def,
3796 .partial = partial_def,
Steven Rostedt2cadf912008-12-01 22:20:19 -05003797 .flags = flags,
3798 .ops = &buffer_pipe_buf_ops,
3799 .spd_release = buffer_spd_release,
3800 };
3801 struct buffer_ref *ref;
Steven Rostedt93459c62009-04-29 00:23:13 -04003802 int entries, size, i;
Steven Rostedt2cadf912008-12-01 22:20:19 -05003803 size_t ret;
3804
Jens Axboe35f3d142010-05-20 10:43:18 +02003805 if (splice_grow_spd(pipe, &spd))
3806 return -ENOMEM;
3807
Lai Jiangshan93cfb3c2009-04-02 15:17:08 +08003808 if (*ppos & (PAGE_SIZE - 1)) {
3809 WARN_ONCE(1, "Ftrace: previous read must page-align\n");
Jens Axboe35f3d142010-05-20 10:43:18 +02003810 ret = -EINVAL;
3811 goto out;
Lai Jiangshan93cfb3c2009-04-02 15:17:08 +08003812 }
3813
3814 if (len & (PAGE_SIZE - 1)) {
3815 WARN_ONCE(1, "Ftrace: splice_read should page-align\n");
Jens Axboe35f3d142010-05-20 10:43:18 +02003816 if (len < PAGE_SIZE) {
3817 ret = -EINVAL;
3818 goto out;
3819 }
Lai Jiangshan93cfb3c2009-04-02 15:17:08 +08003820 len &= PAGE_MASK;
3821 }
3822
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08003823 trace_access_lock(info->cpu);
Steven Rostedt93459c62009-04-29 00:23:13 -04003824 entries = ring_buffer_entries_cpu(info->tr->buffer, info->cpu);
3825
Jens Axboe35f3d142010-05-20 10:43:18 +02003826 for (i = 0; i < pipe->buffers && len && entries; i++, len -= PAGE_SIZE) {
Steven Rostedt2cadf912008-12-01 22:20:19 -05003827 struct page *page;
3828 int r;
3829
3830 ref = kzalloc(sizeof(*ref), GFP_KERNEL);
3831 if (!ref)
3832 break;
3833
Steven Rostedt7267fa62009-04-29 00:16:21 -04003834 ref->ref = 1;
Steven Rostedt2cadf912008-12-01 22:20:19 -05003835 ref->buffer = info->tr->buffer;
3836 ref->page = ring_buffer_alloc_read_page(ref->buffer);
3837 if (!ref->page) {
3838 kfree(ref);
3839 break;
3840 }
3841
3842 r = ring_buffer_read_page(ref->buffer, &ref->page,
Steven Rostedtf2957f12009-04-29 00:26:30 -04003843 len, info->cpu, 1);
Steven Rostedt2cadf912008-12-01 22:20:19 -05003844 if (r < 0) {
3845 ring_buffer_free_read_page(ref->buffer,
3846 ref->page);
3847 kfree(ref);
3848 break;
3849 }
3850
3851 /*
3852 * zero out any left over data, this is going to
3853 * user land.
3854 */
3855 size = ring_buffer_page_len(ref->page);
3856 if (size < PAGE_SIZE)
3857 memset(ref->page + size, 0, PAGE_SIZE - size);
3858
3859 page = virt_to_page(ref->page);
3860
3861 spd.pages[i] = page;
3862 spd.partial[i].len = PAGE_SIZE;
3863 spd.partial[i].offset = 0;
3864 spd.partial[i].private = (unsigned long)ref;
3865 spd.nr_pages++;
Lai Jiangshan93cfb3c2009-04-02 15:17:08 +08003866 *ppos += PAGE_SIZE;
Steven Rostedt93459c62009-04-29 00:23:13 -04003867
3868 entries = ring_buffer_entries_cpu(info->tr->buffer, info->cpu);
Steven Rostedt2cadf912008-12-01 22:20:19 -05003869 }
3870
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08003871 trace_access_unlock(info->cpu);
Steven Rostedt2cadf912008-12-01 22:20:19 -05003872 spd.nr_pages = i;
3873
3874 /* did we read anything? */
3875 if (!spd.nr_pages) {
3876 if (flags & SPLICE_F_NONBLOCK)
3877 ret = -EAGAIN;
3878 else
3879 ret = 0;
3880 /* TODO: block */
Jens Axboe35f3d142010-05-20 10:43:18 +02003881 goto out;
Steven Rostedt2cadf912008-12-01 22:20:19 -05003882 }
3883
3884 ret = splice_to_pipe(pipe, &spd);
Jens Axboe35f3d142010-05-20 10:43:18 +02003885 splice_shrink_spd(pipe, &spd);
3886out:
Steven Rostedt2cadf912008-12-01 22:20:19 -05003887 return ret;
3888}
3889
3890static const struct file_operations tracing_buffers_fops = {
3891 .open = tracing_buffers_open,
3892 .read = tracing_buffers_read,
3893 .release = tracing_buffers_release,
3894 .splice_read = tracing_buffers_splice_read,
3895 .llseek = no_llseek,
3896};
3897
Steven Rostedtc8d77182009-04-29 18:03:45 -04003898static ssize_t
3899tracing_stats_read(struct file *filp, char __user *ubuf,
3900 size_t count, loff_t *ppos)
3901{
3902 unsigned long cpu = (unsigned long)filp->private_data;
3903 struct trace_array *tr = &global_trace;
3904 struct trace_seq *s;
3905 unsigned long cnt;
3906
Li Zefane4f2d102009-06-15 10:57:28 +08003907 s = kmalloc(sizeof(*s), GFP_KERNEL);
Steven Rostedtc8d77182009-04-29 18:03:45 -04003908 if (!s)
Roel Kluina6463652009-11-11 22:26:35 +01003909 return -ENOMEM;
Steven Rostedtc8d77182009-04-29 18:03:45 -04003910
3911 trace_seq_init(s);
3912
3913 cnt = ring_buffer_entries_cpu(tr->buffer, cpu);
3914 trace_seq_printf(s, "entries: %ld\n", cnt);
3915
3916 cnt = ring_buffer_overrun_cpu(tr->buffer, cpu);
3917 trace_seq_printf(s, "overrun: %ld\n", cnt);
3918
3919 cnt = ring_buffer_commit_overrun_cpu(tr->buffer, cpu);
3920 trace_seq_printf(s, "commit overrun: %ld\n", cnt);
3921
Steven Rostedtc8d77182009-04-29 18:03:45 -04003922 count = simple_read_from_buffer(ubuf, count, ppos, s->buffer, s->len);
3923
3924 kfree(s);
3925
3926 return count;
3927}
3928
3929static const struct file_operations tracing_stats_fops = {
3930 .open = tracing_open_generic,
3931 .read = tracing_stats_read,
3932};
3933
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003934#ifdef CONFIG_DYNAMIC_FTRACE
3935
Steven Rostedtb807c3d2008-10-30 16:08:33 -04003936int __weak ftrace_arch_read_dyn_info(char *buf, int size)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003937{
Steven Rostedtb807c3d2008-10-30 16:08:33 -04003938 return 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003939}
3940
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003941static ssize_t
Steven Rostedtb807c3d2008-10-30 16:08:33 -04003942tracing_read_dyn_info(struct file *filp, char __user *ubuf,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003943 size_t cnt, loff_t *ppos)
3944{
Steven Rostedta26a2a22008-10-31 00:03:22 -04003945 static char ftrace_dyn_info_buffer[1024];
3946 static DEFINE_MUTEX(dyn_info_mutex);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003947 unsigned long *p = filp->private_data;
Steven Rostedtb807c3d2008-10-30 16:08:33 -04003948 char *buf = ftrace_dyn_info_buffer;
Steven Rostedta26a2a22008-10-31 00:03:22 -04003949 int size = ARRAY_SIZE(ftrace_dyn_info_buffer);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003950 int r;
3951
Steven Rostedtb807c3d2008-10-30 16:08:33 -04003952 mutex_lock(&dyn_info_mutex);
3953 r = sprintf(buf, "%ld ", *p);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003954
Steven Rostedta26a2a22008-10-31 00:03:22 -04003955 r += ftrace_arch_read_dyn_info(buf+r, (size-1)-r);
Steven Rostedtb807c3d2008-10-30 16:08:33 -04003956 buf[r++] = '\n';
3957
3958 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3959
3960 mutex_unlock(&dyn_info_mutex);
3961
3962 return r;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003963}
3964
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003965static const struct file_operations tracing_dyn_info_fops = {
Ingo Molnar4bf39a92008-05-12 21:20:46 +02003966 .open = tracing_open_generic,
Steven Rostedtb807c3d2008-10-30 16:08:33 -04003967 .read = tracing_read_dyn_info,
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003968};
3969#endif
3970
3971static struct dentry *d_tracer;
3972
3973struct dentry *tracing_init_dentry(void)
3974{
3975 static int once;
3976
3977 if (d_tracer)
3978 return d_tracer;
3979
Frederic Weisbecker3e1f60b2009-03-22 23:10:45 +01003980 if (!debugfs_initialized())
3981 return NULL;
3982
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02003983 d_tracer = debugfs_create_dir("tracing", NULL);
3984
3985 if (!d_tracer && !once) {
3986 once = 1;
3987 pr_warning("Could not create debugfs directory 'tracing'\n");
3988 return NULL;
3989 }
3990
3991 return d_tracer;
3992}
3993
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01003994static struct dentry *d_percpu;
3995
3996struct dentry *tracing_dentry_percpu(void)
3997{
3998 static int once;
3999 struct dentry *d_tracer;
4000
4001 if (d_percpu)
4002 return d_percpu;
4003
4004 d_tracer = tracing_init_dentry();
4005
4006 if (!d_tracer)
4007 return NULL;
4008
4009 d_percpu = debugfs_create_dir("per_cpu", d_tracer);
4010
4011 if (!d_percpu && !once) {
4012 once = 1;
4013 pr_warning("Could not create debugfs directory 'per_cpu'\n");
4014 return NULL;
4015 }
4016
4017 return d_percpu;
4018}
4019
4020static void tracing_init_debugfs_percpu(long cpu)
4021{
4022 struct dentry *d_percpu = tracing_dentry_percpu();
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004023 struct dentry *d_cpu;
Frederic Weisbecker8656e7a2009-02-26 00:41:38 +01004024 /* strlen(cpu) + MAX(log10(cpu)) + '\0' */
4025 char cpu_dir[7];
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01004026
4027 if (cpu > 999 || cpu < 0)
4028 return;
4029
Frederic Weisbecker8656e7a2009-02-26 00:41:38 +01004030 sprintf(cpu_dir, "cpu%ld", cpu);
4031 d_cpu = debugfs_create_dir(cpu_dir, d_percpu);
4032 if (!d_cpu) {
4033 pr_warning("Could not create debugfs '%s' entry\n", cpu_dir);
4034 return;
4035 }
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01004036
Frederic Weisbecker8656e7a2009-02-26 00:41:38 +01004037 /* per cpu trace_pipe */
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004038 trace_create_file("trace_pipe", 0444, d_cpu,
4039 (void *) cpu, &tracing_pipe_fops);
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01004040
4041 /* per cpu trace */
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004042 trace_create_file("trace", 0644, d_cpu,
4043 (void *) cpu, &tracing_fops);
Steven Rostedt7f96f932009-03-13 00:37:42 -04004044
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004045 trace_create_file("trace_pipe_raw", 0444, d_cpu,
4046 (void *) cpu, &tracing_buffers_fops);
Steven Rostedtc8d77182009-04-29 18:03:45 -04004047
4048 trace_create_file("stats", 0444, d_cpu,
4049 (void *) cpu, &tracing_stats_fops);
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01004050}
4051
Steven Rostedt60a11772008-05-12 21:20:44 +02004052#ifdef CONFIG_FTRACE_SELFTEST
4053/* Let selftest have access to static functions in this file */
4054#include "trace_selftest.c"
4055#endif
4056
Steven Rostedt577b7852009-02-26 23:43:05 -05004057struct trace_option_dentry {
4058 struct tracer_opt *opt;
4059 struct tracer_flags *flags;
4060 struct dentry *entry;
4061};
4062
4063static ssize_t
4064trace_options_read(struct file *filp, char __user *ubuf, size_t cnt,
4065 loff_t *ppos)
4066{
4067 struct trace_option_dentry *topt = filp->private_data;
4068 char *buf;
4069
4070 if (topt->flags->val & topt->opt->bit)
4071 buf = "1\n";
4072 else
4073 buf = "0\n";
4074
4075 return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
4076}
4077
4078static ssize_t
4079trace_options_write(struct file *filp, const char __user *ubuf, size_t cnt,
4080 loff_t *ppos)
4081{
4082 struct trace_option_dentry *topt = filp->private_data;
4083 unsigned long val;
4084 char buf[64];
4085 int ret;
4086
4087 if (cnt >= sizeof(buf))
4088 return -EINVAL;
4089
4090 if (copy_from_user(&buf, ubuf, cnt))
4091 return -EFAULT;
4092
4093 buf[cnt] = 0;
4094
4095 ret = strict_strtoul(buf, 10, &val);
4096 if (ret < 0)
4097 return ret;
4098
Li Zefan8d18eaa2009-12-08 11:17:06 +08004099 if (val != 0 && val != 1)
Steven Rostedt577b7852009-02-26 23:43:05 -05004100 return -EINVAL;
Li Zefan8d18eaa2009-12-08 11:17:06 +08004101
4102 if (!!(topt->flags->val & topt->opt->bit) != val) {
4103 mutex_lock(&trace_types_lock);
4104 ret = __set_tracer_option(current_trace, topt->flags,
Steven Rostedtc757bea2009-12-21 22:35:16 -05004105 topt->opt, !val);
Li Zefan8d18eaa2009-12-08 11:17:06 +08004106 mutex_unlock(&trace_types_lock);
4107 if (ret)
4108 return ret;
Steven Rostedt577b7852009-02-26 23:43:05 -05004109 }
4110
4111 *ppos += cnt;
4112
4113 return cnt;
4114}
4115
4116
4117static const struct file_operations trace_options_fops = {
4118 .open = tracing_open_generic,
4119 .read = trace_options_read,
4120 .write = trace_options_write,
4121};
4122
Steven Rostedta8259072009-02-26 22:19:12 -05004123static ssize_t
4124trace_options_core_read(struct file *filp, char __user *ubuf, size_t cnt,
4125 loff_t *ppos)
4126{
4127 long index = (long)filp->private_data;
4128 char *buf;
4129
4130 if (trace_flags & (1 << index))
4131 buf = "1\n";
4132 else
4133 buf = "0\n";
4134
4135 return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
4136}
4137
4138static ssize_t
4139trace_options_core_write(struct file *filp, const char __user *ubuf, size_t cnt,
4140 loff_t *ppos)
4141{
4142 long index = (long)filp->private_data;
4143 char buf[64];
4144 unsigned long val;
4145 int ret;
4146
4147 if (cnt >= sizeof(buf))
4148 return -EINVAL;
4149
4150 if (copy_from_user(&buf, ubuf, cnt))
4151 return -EFAULT;
4152
4153 buf[cnt] = 0;
4154
4155 ret = strict_strtoul(buf, 10, &val);
4156 if (ret < 0)
4157 return ret;
4158
Zhaoleif2d84b62009-08-07 18:55:48 +08004159 if (val != 0 && val != 1)
Steven Rostedta8259072009-02-26 22:19:12 -05004160 return -EINVAL;
Zhaoleif2d84b62009-08-07 18:55:48 +08004161 set_tracer_flags(1 << index, val);
Steven Rostedta8259072009-02-26 22:19:12 -05004162
4163 *ppos += cnt;
4164
4165 return cnt;
4166}
4167
Steven Rostedta8259072009-02-26 22:19:12 -05004168static const struct file_operations trace_options_core_fops = {
4169 .open = tracing_open_generic,
4170 .read = trace_options_core_read,
4171 .write = trace_options_core_write,
4172};
4173
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004174struct dentry *trace_create_file(const char *name,
4175 mode_t mode,
4176 struct dentry *parent,
4177 void *data,
4178 const struct file_operations *fops)
4179{
4180 struct dentry *ret;
4181
4182 ret = debugfs_create_file(name, mode, parent, data, fops);
4183 if (!ret)
4184 pr_warning("Could not create debugfs '%s' entry\n", name);
4185
4186 return ret;
4187}
4188
4189
Steven Rostedta8259072009-02-26 22:19:12 -05004190static struct dentry *trace_options_init_dentry(void)
4191{
4192 struct dentry *d_tracer;
4193 static struct dentry *t_options;
4194
4195 if (t_options)
4196 return t_options;
4197
4198 d_tracer = tracing_init_dentry();
4199 if (!d_tracer)
4200 return NULL;
4201
4202 t_options = debugfs_create_dir("options", d_tracer);
4203 if (!t_options) {
4204 pr_warning("Could not create debugfs directory 'options'\n");
4205 return NULL;
4206 }
4207
4208 return t_options;
4209}
4210
Steven Rostedt577b7852009-02-26 23:43:05 -05004211static void
4212create_trace_option_file(struct trace_option_dentry *topt,
4213 struct tracer_flags *flags,
4214 struct tracer_opt *opt)
4215{
4216 struct dentry *t_options;
Steven Rostedt577b7852009-02-26 23:43:05 -05004217
4218 t_options = trace_options_init_dentry();
4219 if (!t_options)
4220 return;
4221
4222 topt->flags = flags;
4223 topt->opt = opt;
4224
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004225 topt->entry = trace_create_file(opt->name, 0644, t_options, topt,
Steven Rostedt577b7852009-02-26 23:43:05 -05004226 &trace_options_fops);
4227
Steven Rostedt577b7852009-02-26 23:43:05 -05004228}
4229
4230static struct trace_option_dentry *
4231create_trace_option_files(struct tracer *tracer)
4232{
4233 struct trace_option_dentry *topts;
4234 struct tracer_flags *flags;
4235 struct tracer_opt *opts;
4236 int cnt;
4237
4238 if (!tracer)
4239 return NULL;
4240
4241 flags = tracer->flags;
4242
4243 if (!flags || !flags->opts)
4244 return NULL;
4245
4246 opts = flags->opts;
4247
4248 for (cnt = 0; opts[cnt].name; cnt++)
4249 ;
4250
Steven Rostedt0cfe8242009-02-27 10:51:10 -05004251 topts = kcalloc(cnt + 1, sizeof(*topts), GFP_KERNEL);
Steven Rostedt577b7852009-02-26 23:43:05 -05004252 if (!topts)
4253 return NULL;
4254
4255 for (cnt = 0; opts[cnt].name; cnt++)
4256 create_trace_option_file(&topts[cnt], flags,
4257 &opts[cnt]);
4258
4259 return topts;
4260}
4261
4262static void
4263destroy_trace_option_files(struct trace_option_dentry *topts)
4264{
4265 int cnt;
4266
4267 if (!topts)
4268 return;
4269
4270 for (cnt = 0; topts[cnt].opt; cnt++) {
4271 if (topts[cnt].entry)
4272 debugfs_remove(topts[cnt].entry);
4273 }
4274
4275 kfree(topts);
4276}
4277
Steven Rostedta8259072009-02-26 22:19:12 -05004278static struct dentry *
4279create_trace_option_core_file(const char *option, long index)
4280{
4281 struct dentry *t_options;
Steven Rostedta8259072009-02-26 22:19:12 -05004282
4283 t_options = trace_options_init_dentry();
4284 if (!t_options)
4285 return NULL;
4286
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004287 return trace_create_file(option, 0644, t_options, (void *)index,
Steven Rostedta8259072009-02-26 22:19:12 -05004288 &trace_options_core_fops);
Steven Rostedta8259072009-02-26 22:19:12 -05004289}
4290
4291static __init void create_trace_options_dir(void)
4292{
4293 struct dentry *t_options;
Steven Rostedta8259072009-02-26 22:19:12 -05004294 int i;
4295
4296 t_options = trace_options_init_dentry();
4297 if (!t_options)
4298 return;
4299
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004300 for (i = 0; trace_options[i]; i++)
4301 create_trace_option_core_file(trace_options[i], i);
Steven Rostedta8259072009-02-26 22:19:12 -05004302}
4303
Frédéric Weisbeckerb5ad3842008-09-23 11:34:32 +01004304static __init int tracer_init_debugfs(void)
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004305{
4306 struct dentry *d_tracer;
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01004307 int cpu;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004308
Lai Jiangshan7e53bd42010-01-06 20:08:50 +08004309 trace_access_lock_init();
4310
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004311 d_tracer = tracing_init_dentry();
4312
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004313 trace_create_file("tracing_enabled", 0644, d_tracer,
4314 &global_trace, &tracing_ctrl_fops);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004315
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004316 trace_create_file("trace_options", 0644, d_tracer,
4317 NULL, &tracing_iter_fops);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004318
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004319 trace_create_file("tracing_cpumask", 0644, d_tracer,
4320 NULL, &tracing_cpumask_fops);
Steven Rostedta8259072009-02-26 22:19:12 -05004321
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004322 trace_create_file("trace", 0644, d_tracer,
4323 (void *) TRACE_PIPE_ALL_CPU, &tracing_fops);
Ingo Molnarc7078de2008-05-12 21:20:52 +02004324
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004325 trace_create_file("available_tracers", 0444, d_tracer,
4326 &global_trace, &show_traces_fops);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004327
Li Zefan339ae5d2009-04-17 10:34:30 +08004328 trace_create_file("current_tracer", 0644, d_tracer,
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004329 &global_trace, &set_tracer_fops);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004330
Steven Rostedt5d4a9db2009-08-27 16:52:21 -04004331#ifdef CONFIG_TRACER_MAX_TRACE
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004332 trace_create_file("tracing_max_latency", 0644, d_tracer,
4333 &tracing_max_latency, &tracing_max_lat_fops);
Tim Bird0e950172010-02-25 15:36:43 -08004334#endif
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004335
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004336 trace_create_file("tracing_thresh", 0644, d_tracer,
4337 &tracing_thresh, &tracing_max_lat_fops);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004338
Li Zefan339ae5d2009-04-17 10:34:30 +08004339 trace_create_file("README", 0444, d_tracer,
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004340 NULL, &tracing_readme_fops);
Ingo Molnar7bd2f242008-05-12 21:20:45 +02004341
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004342 trace_create_file("trace_pipe", 0444, d_tracer,
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01004343 (void *) TRACE_PIPE_ALL_CPU, &tracing_pipe_fops);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004344
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004345 trace_create_file("buffer_size_kb", 0644, d_tracer,
4346 &global_trace, &tracing_entries_fops);
Steven Rostedta98a3c32008-05-12 21:20:59 +02004347
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004348 trace_create_file("trace_marker", 0220, d_tracer,
4349 NULL, &tracing_mark_fops);
Pekka Paalanen5bf9a1e2008-09-16 22:06:42 +03004350
Avadh Patel69abe6a2009-04-10 16:04:48 -04004351 trace_create_file("saved_cmdlines", 0444, d_tracer,
4352 NULL, &tracing_saved_cmdlines_fops);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004353
Zhaolei5079f322009-08-25 16:12:56 +08004354 trace_create_file("trace_clock", 0644, d_tracer, NULL,
4355 &trace_clock_fops);
4356
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004357#ifdef CONFIG_DYNAMIC_FTRACE
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004358 trace_create_file("dyn_ftrace_total_info", 0444, d_tracer,
4359 &ftrace_update_tot_cnt, &tracing_dyn_info_fops);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004360#endif
Ingo Molnard618b3e2008-05-12 21:20:49 +02004361#ifdef CONFIG_SYSPROF_TRACER
4362 init_tracer_sysprof_debugfs(d_tracer);
4363#endif
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01004364
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004365 create_trace_options_dir();
4366
Frederic Weisbeckerb04cc6b2009-02-25 03:22:28 +01004367 for_each_tracing_cpu(cpu)
4368 tracing_init_debugfs_percpu(cpu);
4369
Frédéric Weisbeckerb5ad3842008-09-23 11:34:32 +01004370 return 0;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004371}
4372
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004373static int trace_panic_handler(struct notifier_block *this,
4374 unsigned long event, void *unused)
4375{
Steven Rostedt944ac422008-10-23 19:26:08 -04004376 if (ftrace_dump_on_oops)
Frederic Weisbeckercecbca92010-04-18 19:08:41 +02004377 ftrace_dump(ftrace_dump_on_oops);
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004378 return NOTIFY_OK;
4379}
4380
4381static struct notifier_block trace_panic_notifier = {
4382 .notifier_call = trace_panic_handler,
4383 .next = NULL,
4384 .priority = 150 /* priority: INT_MAX >= x >= 0 */
4385};
4386
4387static int trace_die_handler(struct notifier_block *self,
4388 unsigned long val,
4389 void *data)
4390{
4391 switch (val) {
4392 case DIE_OOPS:
Steven Rostedt944ac422008-10-23 19:26:08 -04004393 if (ftrace_dump_on_oops)
Frederic Weisbeckercecbca92010-04-18 19:08:41 +02004394 ftrace_dump(ftrace_dump_on_oops);
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004395 break;
4396 default:
4397 break;
4398 }
4399 return NOTIFY_OK;
4400}
4401
4402static struct notifier_block trace_die_notifier = {
4403 .notifier_call = trace_die_handler,
4404 .priority = 200
4405};
4406
4407/*
4408 * printk is set to max of 1024, we really don't need it that big.
4409 * Nothing should be printing 1000 characters anyway.
4410 */
4411#define TRACE_MAX_PRINT 1000
4412
4413/*
4414 * Define here KERN_TRACE so that we have one place to modify
4415 * it if we decide to change what log level the ftrace dump
4416 * should be at.
4417 */
Steven Rostedt428aee12009-01-14 12:24:42 -05004418#define KERN_TRACE KERN_EMERG
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004419
4420static void
4421trace_printk_seq(struct trace_seq *s)
4422{
4423 /* Probably should print a warning here. */
4424 if (s->len >= 1000)
4425 s->len = 1000;
4426
4427 /* should be zero ended, but we are paranoid. */
4428 s->buffer[s->len] = 0;
4429
4430 printk(KERN_TRACE "%s", s->buffer);
4431
Steven Rostedtf9520752009-03-02 14:04:40 -05004432 trace_seq_init(s);
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004433}
4434
Frederic Weisbeckercecbca92010-04-18 19:08:41 +02004435static void
4436__ftrace_dump(bool disable_tracing, enum ftrace_dump_mode oops_dump_mode)
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004437{
Thomas Gleixner445c8952009-12-02 19:49:50 +01004438 static arch_spinlock_t ftrace_dump_lock =
Thomas Gleixneredc35bd2009-12-03 12:38:57 +01004439 (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004440 /* use static because iter can be a bit big for the stack */
4441 static struct trace_iterator iter;
Frederic Weisbeckercf586b62009-03-22 05:04:35 +01004442 unsigned int old_userobj;
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004443 static int dump_ran;
Steven Rostedtd7690412008-10-01 00:29:53 -04004444 unsigned long flags;
4445 int cnt = 0, cpu;
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004446
4447 /* only one dump */
Steven Rostedtcd891ae2009-04-28 11:39:34 -04004448 local_irq_save(flags);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01004449 arch_spin_lock(&ftrace_dump_lock);
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004450 if (dump_ran)
4451 goto out;
4452
4453 dump_ran = 1;
4454
Steven Rostedt0ee6b6c2009-01-14 14:50:19 -05004455 tracing_off();
Frederic Weisbeckercf586b62009-03-22 05:04:35 +01004456
4457 if (disable_tracing)
4458 ftrace_kill();
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004459
Steven Rostedtd7690412008-10-01 00:29:53 -04004460 for_each_tracing_cpu(cpu) {
4461 atomic_inc(&global_trace.data[cpu]->disabled);
4462 }
4463
Frederic Weisbeckercf586b62009-03-22 05:04:35 +01004464 old_userobj = trace_flags & TRACE_ITER_SYM_USEROBJ;
4465
Török Edwinb54d3de2008-11-22 13:28:48 +02004466 /* don't look at user memory in panic mode */
4467 trace_flags &= ~TRACE_ITER_SYM_USEROBJ;
4468
Steven Rostedte543ad72009-03-04 18:20:36 -05004469 /* Simulate the iterator */
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004470 iter.tr = &global_trace;
4471 iter.trace = current_trace;
Frederic Weisbeckercecbca92010-04-18 19:08:41 +02004472
4473 switch (oops_dump_mode) {
4474 case DUMP_ALL:
4475 iter.cpu_file = TRACE_PIPE_ALL_CPU;
4476 break;
4477 case DUMP_ORIG:
4478 iter.cpu_file = raw_smp_processor_id();
4479 break;
4480 case DUMP_NONE:
4481 goto out_enable;
4482 default:
4483 printk(KERN_TRACE "Bad dumping mode, switching to all CPUs dump\n");
4484 iter.cpu_file = TRACE_PIPE_ALL_CPU;
4485 }
4486
4487 printk(KERN_TRACE "Dumping ftrace buffer:\n");
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004488
4489 /*
4490 * We need to stop all tracing on all CPUS to read the
4491 * the next buffer. This is a bit expensive, but is
4492 * not done often. We fill all what we can read,
4493 * and then release the locks again.
4494 */
4495
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004496 while (!trace_empty(&iter)) {
4497
4498 if (!cnt)
4499 printk(KERN_TRACE "---------------------------------\n");
4500
4501 cnt++;
4502
4503 /* reset all but tr, trace, and overruns */
4504 memset(&iter.seq, 0,
4505 sizeof(struct trace_iterator) -
4506 offsetof(struct trace_iterator, seq));
4507 iter.iter_flags |= TRACE_FILE_LAT_FMT;
4508 iter.pos = -1;
4509
4510 if (find_next_entry_inc(&iter) != NULL) {
Lai Jiangshan74e7ff82009-07-28 20:17:22 +08004511 int ret;
4512
4513 ret = print_trace_line(&iter);
4514 if (ret != TRACE_TYPE_NO_CONSUME)
4515 trace_consume(&iter);
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004516 }
4517
4518 trace_printk_seq(&iter.seq);
4519 }
4520
4521 if (!cnt)
4522 printk(KERN_TRACE " (ftrace buffer empty)\n");
4523 else
4524 printk(KERN_TRACE "---------------------------------\n");
4525
Frederic Weisbeckercecbca92010-04-18 19:08:41 +02004526 out_enable:
Frederic Weisbeckercf586b62009-03-22 05:04:35 +01004527 /* Re-enable tracing if requested */
4528 if (!disable_tracing) {
4529 trace_flags |= old_userobj;
4530
4531 for_each_tracing_cpu(cpu) {
4532 atomic_dec(&global_trace.data[cpu]->disabled);
4533 }
4534 tracing_on();
4535 }
4536
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004537 out:
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01004538 arch_spin_unlock(&ftrace_dump_lock);
Steven Rostedtcd891ae2009-04-28 11:39:34 -04004539 local_irq_restore(flags);
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004540}
4541
Frederic Weisbeckercf586b62009-03-22 05:04:35 +01004542/* By default: disable tracing after the dump */
Frederic Weisbeckercecbca92010-04-18 19:08:41 +02004543void ftrace_dump(enum ftrace_dump_mode oops_dump_mode)
Frederic Weisbeckercf586b62009-03-22 05:04:35 +01004544{
Frederic Weisbeckercecbca92010-04-18 19:08:41 +02004545 __ftrace_dump(true, oops_dump_mode);
Frederic Weisbeckercf586b62009-03-22 05:04:35 +01004546}
4547
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004548__init static int tracer_alloc_buffers(void)
4549{
Steven Rostedt73c51622009-03-11 13:42:01 -04004550 int ring_buf_size;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004551 int i;
Rusty Russell9e01c1b2009-01-01 10:12:22 +10304552 int ret = -ENOMEM;
4553
4554 if (!alloc_cpumask_var(&tracing_buffer_mask, GFP_KERNEL))
4555 goto out;
4556
4557 if (!alloc_cpumask_var(&tracing_cpumask, GFP_KERNEL))
4558 goto out_free_buffer_mask;
4559
Steven Rostedt73c51622009-03-11 13:42:01 -04004560 /* To save memory, keep the ring buffer size to its minimum */
4561 if (ring_buffer_expanded)
4562 ring_buf_size = trace_buf_size;
4563 else
4564 ring_buf_size = 1;
4565
Rusty Russell9e01c1b2009-01-01 10:12:22 +10304566 cpumask_copy(tracing_buffer_mask, cpu_possible_mask);
4567 cpumask_copy(tracing_cpumask, cpu_all_mask);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004568
Steven Rostedtab464282008-05-12 21:21:00 +02004569 /* TODO: make the number of buffers hot pluggable with CPUS */
Steven Rostedt73c51622009-03-11 13:42:01 -04004570 global_trace.buffer = ring_buffer_alloc(ring_buf_size,
Steven Rostedt3928a8a2008-09-29 23:02:41 -04004571 TRACE_BUFFER_FLAGS);
4572 if (!global_trace.buffer) {
4573 printk(KERN_ERR "tracer: failed to allocate ring buffer!\n");
4574 WARN_ON(1);
Rusty Russell9e01c1b2009-01-01 10:12:22 +10304575 goto out_free_cpumask;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04004576 }
4577 global_trace.entries = ring_buffer_size(global_trace.buffer);
4578
Rusty Russell9e01c1b2009-01-01 10:12:22 +10304579
Steven Rostedt3928a8a2008-09-29 23:02:41 -04004580#ifdef CONFIG_TRACER_MAX_TRACE
Steven Rostedt73c51622009-03-11 13:42:01 -04004581 max_tr.buffer = ring_buffer_alloc(ring_buf_size,
Steven Rostedt3928a8a2008-09-29 23:02:41 -04004582 TRACE_BUFFER_FLAGS);
4583 if (!max_tr.buffer) {
4584 printk(KERN_ERR "tracer: failed to allocate max ring buffer!\n");
4585 WARN_ON(1);
4586 ring_buffer_free(global_trace.buffer);
Rusty Russell9e01c1b2009-01-01 10:12:22 +10304587 goto out_free_cpumask;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04004588 }
4589 max_tr.entries = ring_buffer_size(max_tr.buffer);
4590 WARN_ON(max_tr.entries != global_trace.entries);
4591#endif
4592
Steven Rostedt4c11d7a2008-05-12 21:20:43 +02004593 /* Allocate the first page for all buffers */
Steven Rostedtab464282008-05-12 21:21:00 +02004594 for_each_tracing_cpu(i) {
jolsa@redhat.com566b0aa2009-07-16 21:44:26 +02004595 global_trace.data[i] = &per_cpu(global_trace_cpu, i);
Tejun Heo9705f692009-10-29 22:34:13 +09004596 max_tr.data[i] = &per_cpu(max_tr_data, i);
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004597 }
4598
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004599 trace_init_cmdlines();
4600
Frédéric Weisbecker43a15382008-09-21 20:16:30 +02004601 register_tracer(&nop_trace);
Steven Rostedt79fb0762009-02-02 21:38:33 -05004602 current_trace = &nop_trace;
Steven Rostedt60a11772008-05-12 21:20:44 +02004603 /* All seems OK, enable tracing */
4604 tracing_disabled = 0;
Steven Rostedt3928a8a2008-09-29 23:02:41 -04004605
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004606 atomic_notifier_chain_register(&panic_notifier_list,
4607 &trace_panic_notifier);
4608
4609 register_die_notifier(&trace_die_notifier);
Frederic Weisbecker2fc1dfb2009-03-16 01:45:03 +01004610
4611 return 0;
Steven Rostedt3f5a54e2008-07-30 22:36:46 -04004612
Rusty Russell9e01c1b2009-01-01 10:12:22 +10304613out_free_cpumask:
4614 free_cpumask_var(tracing_cpumask);
4615out_free_buffer_mask:
4616 free_cpumask_var(tracing_buffer_mask);
4617out:
4618 return ret;
Steven Rostedtbc0c38d2008-05-12 21:20:42 +02004619}
Steven Rostedtb2821ae2009-02-02 21:38:32 -05004620
4621__init static int clear_boot_tracer(void)
4622{
4623 /*
4624 * The default tracer at boot buffer is an init section.
4625 * This function is called in lateinit. If we did not
4626 * find the boot tracer, then clear it out, to prevent
4627 * later registration from accessing the buffer that is
4628 * about to be freed.
4629 */
4630 if (!default_bootup_tracer)
4631 return 0;
4632
4633 printk(KERN_INFO "ftrace bootup tracer '%s' not registered.\n",
4634 default_bootup_tracer);
4635 default_bootup_tracer = NULL;
4636
4637 return 0;
4638}
4639
Frédéric Weisbeckerb5ad3842008-09-23 11:34:32 +01004640early_initcall(tracer_alloc_buffers);
4641fs_initcall(tracer_init_debugfs);
Steven Rostedtb2821ae2009-02-02 21:38:32 -05004642late_initcall(clear_boot_tracer);