tracing/filters: add run-time field descriptions to TRACE_EVENT_FORMAT events
[deliverable/linux.git] / kernel / trace / trace.c
CommitLineData
bc0c38d1
SR
1/*
2 * ring buffer based function tracer
3 *
4 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
5 * Copyright (C) 2008 Ingo Molnar <mingo@redhat.com>
6 *
7 * Originally taken from the RT patch by:
8 * Arnaldo Carvalho de Melo <acme@redhat.com>
9 *
10 * Based on code from the latency_tracer, that is:
11 * Copyright (C) 2004-2006 Ingo Molnar
12 * Copyright (C) 2004 William Lee Irwin III
13 */
2cadf913 14#include <linux/ring_buffer.h>
bc0c38d1 15#include <linux/utsrelease.h>
2cadf913
SR
16#include <linux/stacktrace.h>
17#include <linux/writeback.h>
bc0c38d1
SR
18#include <linux/kallsyms.h>
19#include <linux/seq_file.h>
3f5a54e3 20#include <linux/notifier.h>
2cadf913 21#include <linux/irqflags.h>
bc0c38d1 22#include <linux/debugfs.h>
4c11d7ae 23#include <linux/pagemap.h>
bc0c38d1
SR
24#include <linux/hardirq.h>
25#include <linux/linkage.h>
26#include <linux/uaccess.h>
2cadf913 27#include <linux/kprobes.h>
bc0c38d1
SR
28#include <linux/ftrace.h>
29#include <linux/module.h>
30#include <linux/percpu.h>
2cadf913 31#include <linux/splice.h>
3f5a54e3 32#include <linux/kdebug.h>
5f0c6c03 33#include <linux/string.h>
bc0c38d1
SR
34#include <linux/ctype.h>
35#include <linux/init.h>
2a2cc8f7 36#include <linux/poll.h>
bc0c38d1
SR
37#include <linux/gfp.h>
38#include <linux/fs.h>
86387f7e 39
bc0c38d1 40#include "trace.h"
f0868d1e 41#include "trace_output.h"
bc0c38d1 42
3928a8a2
SR
43#define TRACE_BUFFER_FLAGS (RB_FL_OVERWRITE)
44
745b1626 45unsigned long __read_mostly tracing_max_latency;
bc0c38d1
SR
46unsigned long __read_mostly tracing_thresh;
47
73c5162a
SR
48/*
49 * On boot up, the ring buffer is set to the minimum size, so that
50 * we do not waste memory on systems that are not using tracing.
51 */
52static int ring_buffer_expanded;
53
8e1b82e0
FW
54/*
55 * We need to change this state when a selftest is running.
ff32504f
FW
56 * A selftest will lurk into the ring-buffer to count the
57 * entries inserted during the selftest although some concurrent
5e1607a0 58 * insertions into the ring-buffer such as trace_printk could occurred
ff32504f
FW
59 * at the same time, giving false positive or negative results.
60 */
8e1b82e0 61static bool __read_mostly tracing_selftest_running;
ff32504f 62
b2821ae6
SR
63/*
64 * If a tracer is running, we do not want to run SELFTEST.
65 */
66static bool __read_mostly tracing_selftest_disabled;
67
adf9f195
FW
68/* For tracers that don't implement custom flags */
69static struct tracer_opt dummy_tracer_opt[] = {
70 { }
71};
72
73static struct tracer_flags dummy_tracer_flags = {
74 .val = 0,
75 .opts = dummy_tracer_opt
76};
77
78static int dummy_set_flag(u32 old_flags, u32 bit, int set)
79{
80 return 0;
81}
0f048701
SR
82
83/*
84 * Kill all tracing for good (never come back).
85 * It is initialized to 1 but will turn to zero if the initialization
86 * of the tracer is successful. But that is the only place that sets
87 * this back to zero.
88 */
4fd27358 89static int tracing_disabled = 1;
0f048701 90
d769041f
SR
91static DEFINE_PER_CPU(local_t, ftrace_cpu_disabled);
92
93static inline void ftrace_disable_cpu(void)
94{
95 preempt_disable();
96 local_inc(&__get_cpu_var(ftrace_cpu_disabled));
97}
98
99static inline void ftrace_enable_cpu(void)
100{
101 local_dec(&__get_cpu_var(ftrace_cpu_disabled));
102 preempt_enable();
103}
104
9e01c1b7 105static cpumask_var_t __read_mostly tracing_buffer_mask;
ab46428c 106
b04cc6b1
FW
107/* Define which cpu buffers are currently read in trace_pipe */
108static cpumask_var_t tracing_reader_cpumask;
109
ab46428c 110#define for_each_tracing_cpu(cpu) \
9e01c1b7 111 for_each_cpu(cpu, tracing_buffer_mask)
ab46428c 112
944ac425
SR
113/*
114 * ftrace_dump_on_oops - variable to dump ftrace buffer on oops
115 *
116 * If there is an oops (or kernel panic) and the ftrace_dump_on_oops
117 * is set, then ftrace_dump is called. This will output the contents
118 * of the ftrace buffers to the console. This is very useful for
119 * capturing traces that lead to crashes and outputing it to a
120 * serial console.
121 *
122 * It is default off, but you can enable it with either specifying
123 * "ftrace_dump_on_oops" in the kernel command line, or setting
124 * /proc/sys/kernel/ftrace_dump_on_oops to true.
125 */
126int ftrace_dump_on_oops;
127
b2821ae6
SR
128static int tracing_set_tracer(const char *buf);
129
130#define BOOTUP_TRACER_SIZE 100
131static char bootup_tracer_buf[BOOTUP_TRACER_SIZE] __initdata;
132static char *default_bootup_tracer;
d9e54076
PZ
133
134static int __init set_ftrace(char *str)
135{
b2821ae6
SR
136 strncpy(bootup_tracer_buf, str, BOOTUP_TRACER_SIZE);
137 default_bootup_tracer = bootup_tracer_buf;
73c5162a
SR
138 /* We are using ftrace early, expand it */
139 ring_buffer_expanded = 1;
d9e54076
PZ
140 return 1;
141}
b2821ae6 142__setup("ftrace=", set_ftrace);
d9e54076 143
944ac425
SR
144static int __init set_ftrace_dump_on_oops(char *str)
145{
146 ftrace_dump_on_oops = 1;
147 return 1;
148}
149__setup("ftrace_dump_on_oops", set_ftrace_dump_on_oops);
60a11774 150
cf8e3474 151unsigned long long ns2usecs(cycle_t nsec)
bc0c38d1
SR
152{
153 nsec += 500;
154 do_div(nsec, 1000);
155 return nsec;
156}
157
4fcdae83
SR
158/*
159 * The global_trace is the descriptor that holds the tracing
160 * buffers for the live tracing. For each CPU, it contains
161 * a link list of pages that will store trace entries. The
162 * page descriptor of the pages in the memory is used to hold
163 * the link list by linking the lru item in the page descriptor
164 * to each of the pages in the buffer per CPU.
165 *
166 * For each active CPU there is a data field that holds the
167 * pages for the buffer for that CPU. Each CPU has the same number
168 * of pages allocated for its buffer.
169 */
bc0c38d1
SR
170static struct trace_array global_trace;
171
172static DEFINE_PER_CPU(struct trace_array_cpu, global_trace_cpu);
173
37886f6a
SR
174cycle_t ftrace_now(int cpu)
175{
176 u64 ts;
177
178 /* Early boot up does not have a buffer yet */
179 if (!global_trace.buffer)
180 return trace_clock_local();
181
182 ts = ring_buffer_time_stamp(global_trace.buffer, cpu);
183 ring_buffer_normalize_time_stamp(global_trace.buffer, cpu, &ts);
184
185 return ts;
186}
bc0c38d1 187
4fcdae83
SR
188/*
189 * The max_tr is used to snapshot the global_trace when a maximum
190 * latency is reached. Some tracers will use this to store a maximum
191 * trace while it continues examining live traces.
192 *
193 * The buffers for the max_tr are set up the same as the global_trace.
194 * When a snapshot is taken, the link list of the max_tr is swapped
195 * with the link list of the global_trace and the buffers are reset for
196 * the global_trace so the tracing can continue.
197 */
bc0c38d1
SR
198static struct trace_array max_tr;
199
200static DEFINE_PER_CPU(struct trace_array_cpu, max_data);
201
4fcdae83 202/* tracer_enabled is used to toggle activation of a tracer */
26994ead 203static int tracer_enabled = 1;
4fcdae83 204
9036990d
SR
205/**
206 * tracing_is_enabled - return tracer_enabled status
207 *
208 * This function is used by other tracers to know the status
209 * of the tracer_enabled flag. Tracers may use this function
210 * to know if it should enable their features when starting
211 * up. See irqsoff tracer for an example (start_irqsoff_tracer).
212 */
213int tracing_is_enabled(void)
214{
215 return tracer_enabled;
216}
217
4fcdae83 218/*
3928a8a2
SR
219 * trace_buf_size is the size in bytes that is allocated
220 * for a buffer. Note, the number of bytes is always rounded
221 * to page size.
3f5a54e3
SR
222 *
223 * This number is purposely set to a low number of 16384.
224 * If the dump on oops happens, it will be much appreciated
225 * to not have to wait for all that output. Anyway this can be
226 * boot time and run time configurable.
4fcdae83 227 */
3928a8a2 228#define TRACE_BUF_SIZE_DEFAULT 1441792UL /* 16384 * 88 (sizeof(entry)) */
3f5a54e3 229
3928a8a2 230static unsigned long trace_buf_size = TRACE_BUF_SIZE_DEFAULT;
bc0c38d1 231
4fcdae83 232/* trace_types holds a link list of available tracers. */
bc0c38d1 233static struct tracer *trace_types __read_mostly;
4fcdae83
SR
234
235/* current_trace points to the tracer that is currently active */
bc0c38d1 236static struct tracer *current_trace __read_mostly;
4fcdae83
SR
237
238/*
239 * max_tracer_type_len is used to simplify the allocating of
240 * buffers to read userspace tracer names. We keep track of
241 * the longest tracer name registered.
242 */
bc0c38d1
SR
243static int max_tracer_type_len;
244
4fcdae83
SR
245/*
246 * trace_types_lock is used to protect the trace_types list.
247 * This lock is also used to keep user access serialized.
248 * Accesses from userspace will grab this lock while userspace
249 * activities happen inside the kernel.
250 */
bc0c38d1 251static DEFINE_MUTEX(trace_types_lock);
4fcdae83
SR
252
253/* trace_wait is a waitqueue for tasks blocked on trace_poll */
4e655519
IM
254static DECLARE_WAIT_QUEUE_HEAD(trace_wait);
255
ee6bce52 256/* trace_flags holds trace_options default values */
12ef7d44 257unsigned long trace_flags = TRACE_ITER_PRINT_PARENT | TRACE_ITER_PRINTK |
a2a16d6a
SR
258 TRACE_ITER_ANNOTATE | TRACE_ITER_CONTEXT_INFO | TRACE_ITER_SLEEP_TIME |
259 TRACE_ITER_GRAPH_TIME;
4e655519 260
4fcdae83
SR
261/**
262 * trace_wake_up - wake up tasks waiting for trace input
263 *
264 * Simply wakes up any task that is blocked on the trace_wait
265 * queue. These is used with trace_poll for tasks polling the trace.
266 */
4e655519
IM
267void trace_wake_up(void)
268{
017730c1
IM
269 /*
270 * The runqueue_is_locked() can fail, but this is the best we
271 * have for now:
272 */
273 if (!(trace_flags & TRACE_ITER_BLOCK) && !runqueue_is_locked())
4e655519
IM
274 wake_up(&trace_wait);
275}
bc0c38d1 276
3928a8a2 277static int __init set_buf_size(char *str)
bc0c38d1 278{
3928a8a2 279 unsigned long buf_size;
c6caeeb1
SR
280 int ret;
281
bc0c38d1
SR
282 if (!str)
283 return 0;
3928a8a2 284 ret = strict_strtoul(str, 0, &buf_size);
c6caeeb1 285 /* nr_entries can not be zero */
3928a8a2 286 if (ret < 0 || buf_size == 0)
c6caeeb1 287 return 0;
3928a8a2 288 trace_buf_size = buf_size;
bc0c38d1
SR
289 return 1;
290}
3928a8a2 291__setup("trace_buf_size=", set_buf_size);
bc0c38d1 292
57f50be1
SR
293unsigned long nsecs_to_usecs(unsigned long nsecs)
294{
295 return nsecs / 1000;
296}
297
4fcdae83 298/* These must match the bit postions in trace_iterator_flags */
bc0c38d1
SR
299static const char *trace_options[] = {
300 "print-parent",
301 "sym-offset",
302 "sym-addr",
303 "verbose",
f9896bf3 304 "raw",
5e3ca0ec 305 "hex",
cb0f12aa 306 "bin",
2a2cc8f7 307 "block",
86387f7e 308 "stacktrace",
4ac3ba41 309 "sched-tree",
5e1607a0 310 "trace_printk",
b2a866f9 311 "ftrace_preempt",
9f029e83 312 "branch",
12ef7d44 313 "annotate",
02b67518 314 "userstacktrace",
b54d3de9 315 "sym-userobj",
66896a85 316 "printk-msg-only",
c4a8e8be 317 "context-info",
c032ef64 318 "latency-format",
af4617bd 319 "global-clock",
be6f164a 320 "sleep-time",
a2a16d6a 321 "graph-time",
bc0c38d1
SR
322 NULL
323};
324
4fcdae83
SR
325/*
326 * ftrace_max_lock is used to protect the swapping of buffers
327 * when taking a max snapshot. The buffers themselves are
328 * protected by per_cpu spinlocks. But the action of the swap
329 * needs its own lock.
330 *
331 * This is defined as a raw_spinlock_t in order to help
332 * with performance when lockdep debugging is enabled.
333 */
92205c23
SR
334static raw_spinlock_t ftrace_max_lock =
335 (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
bc0c38d1
SR
336
337/*
338 * Copy the new maximum trace into the separate maximum-trace
339 * structure. (this way the maximum trace is permanently saved,
340 * for later retrieval via /debugfs/tracing/latency_trace)
341 */
e309b41d 342static void
bc0c38d1
SR
343__update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
344{
345 struct trace_array_cpu *data = tr->data[cpu];
346
347 max_tr.cpu = cpu;
348 max_tr.time_start = data->preempt_timestamp;
349
350 data = max_tr.data[cpu];
351 data->saved_latency = tracing_max_latency;
352
353 memcpy(data->comm, tsk->comm, TASK_COMM_LEN);
354 data->pid = tsk->pid;
b6dff3ec 355 data->uid = task_uid(tsk);
bc0c38d1
SR
356 data->nice = tsk->static_prio - 20 - MAX_RT_PRIO;
357 data->policy = tsk->policy;
358 data->rt_priority = tsk->rt_priority;
359
360 /* record this tasks comm */
af513098 361 tracing_record_cmdline(tsk);
bc0c38d1
SR
362}
363
6c6c2796
PP
364ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, size_t cnt)
365{
366 int len;
367 int ret;
368
2dc5d12b
SR
369 if (!cnt)
370 return 0;
371
6c6c2796
PP
372 if (s->len <= s->readpos)
373 return -EBUSY;
374
375 len = s->len - s->readpos;
376 if (cnt > len)
377 cnt = len;
378 ret = copy_to_user(ubuf, s->buffer + s->readpos, cnt);
2dc5d12b 379 if (ret == cnt)
6c6c2796
PP
380 return -EFAULT;
381
2dc5d12b
SR
382 cnt -= ret;
383
e74da523 384 s->readpos += cnt;
6c6c2796 385 return cnt;
214023c3
SR
386}
387
b8b94265 388static ssize_t trace_seq_to_buffer(struct trace_seq *s, void *buf, size_t cnt)
3c56819b
EGM
389{
390 int len;
391 void *ret;
392
393 if (s->len <= s->readpos)
394 return -EBUSY;
395
396 len = s->len - s->readpos;
397 if (cnt > len)
398 cnt = len;
399 ret = memcpy(buf, s->buffer + s->readpos, cnt);
400 if (!ret)
401 return -EFAULT;
402
e74da523 403 s->readpos += cnt;
3c56819b
EGM
404 return cnt;
405}
406
4fcdae83
SR
407/**
408 * update_max_tr - snapshot all trace buffers from global_trace to max_tr
409 * @tr: tracer
410 * @tsk: the task with the latency
411 * @cpu: The cpu that initiated the trace.
412 *
413 * Flip the buffers between the @tr and the max_tr and record information
414 * about which task was the cause of this latency.
415 */
e309b41d 416void
bc0c38d1
SR
417update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
418{
3928a8a2 419 struct ring_buffer *buf = tr->buffer;
bc0c38d1 420
4c11d7ae 421 WARN_ON_ONCE(!irqs_disabled());
92205c23 422 __raw_spin_lock(&ftrace_max_lock);
3928a8a2
SR
423
424 tr->buffer = max_tr.buffer;
425 max_tr.buffer = buf;
426
d769041f 427 ftrace_disable_cpu();
3928a8a2 428 ring_buffer_reset(tr->buffer);
d769041f 429 ftrace_enable_cpu();
bc0c38d1
SR
430
431 __update_max_tr(tr, tsk, cpu);
92205c23 432 __raw_spin_unlock(&ftrace_max_lock);
bc0c38d1
SR
433}
434
435/**
436 * update_max_tr_single - only copy one trace over, and reset the rest
437 * @tr - tracer
438 * @tsk - task with the latency
439 * @cpu - the cpu of the buffer to copy.
4fcdae83
SR
440 *
441 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
bc0c38d1 442 */
e309b41d 443void
bc0c38d1
SR
444update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
445{
3928a8a2 446 int ret;
bc0c38d1 447
4c11d7ae 448 WARN_ON_ONCE(!irqs_disabled());
92205c23 449 __raw_spin_lock(&ftrace_max_lock);
bc0c38d1 450
d769041f
SR
451 ftrace_disable_cpu();
452
3928a8a2
SR
453 ring_buffer_reset(max_tr.buffer);
454 ret = ring_buffer_swap_cpu(max_tr.buffer, tr->buffer, cpu);
455
d769041f
SR
456 ftrace_enable_cpu();
457
97b17efe 458 WARN_ON_ONCE(ret && ret != -EAGAIN);
bc0c38d1
SR
459
460 __update_max_tr(tr, tsk, cpu);
92205c23 461 __raw_spin_unlock(&ftrace_max_lock);
bc0c38d1
SR
462}
463
4fcdae83
SR
464/**
465 * register_tracer - register a tracer with the ftrace system.
466 * @type - the plugin for the tracer
467 *
468 * Register a new plugin tracer.
469 */
bc0c38d1 470int register_tracer(struct tracer *type)
e7669b8e
HE
471__releases(kernel_lock)
472__acquires(kernel_lock)
bc0c38d1
SR
473{
474 struct tracer *t;
475 int len;
476 int ret = 0;
477
478 if (!type->name) {
479 pr_info("Tracer must have a name\n");
480 return -1;
481 }
482
86fa2f60
IM
483 /*
484 * When this gets called we hold the BKL which means that
485 * preemption is disabled. Various trace selftests however
486 * need to disable and enable preemption for successful tests.
487 * So we drop the BKL here and grab it after the tests again.
488 */
489 unlock_kernel();
bc0c38d1 490 mutex_lock(&trace_types_lock);
86fa2f60 491
8e1b82e0
FW
492 tracing_selftest_running = true;
493
bc0c38d1
SR
494 for (t = trace_types; t; t = t->next) {
495 if (strcmp(type->name, t->name) == 0) {
496 /* already found */
497 pr_info("Trace %s already registered\n",
498 type->name);
499 ret = -1;
500 goto out;
501 }
502 }
503
adf9f195
FW
504 if (!type->set_flag)
505 type->set_flag = &dummy_set_flag;
506 if (!type->flags)
507 type->flags = &dummy_tracer_flags;
508 else
509 if (!type->flags->opts)
510 type->flags->opts = dummy_tracer_opt;
6eaaa5d5
FW
511 if (!type->wait_pipe)
512 type->wait_pipe = default_wait_pipe;
513
adf9f195 514
60a11774 515#ifdef CONFIG_FTRACE_STARTUP_TEST
b2821ae6 516 if (type->selftest && !tracing_selftest_disabled) {
60a11774 517 struct tracer *saved_tracer = current_trace;
60a11774 518 struct trace_array *tr = &global_trace;
60a11774 519 int i;
ff32504f 520
60a11774
SR
521 /*
522 * Run a selftest on this tracer.
523 * Here we reset the trace buffer, and set the current
524 * tracer to be this tracer. The tracer can then run some
525 * internal tracing to verify that everything is in order.
526 * If we fail, we do not register this tracer.
527 */
86fa2f60 528 for_each_tracing_cpu(i)
3928a8a2 529 tracing_reset(tr, i);
86fa2f60 530
60a11774 531 current_trace = type;
60a11774
SR
532 /* the test is responsible for initializing and enabling */
533 pr_info("Testing tracer %s: ", type->name);
534 ret = type->selftest(type, tr);
535 /* the test is responsible for resetting too */
536 current_trace = saved_tracer;
60a11774
SR
537 if (ret) {
538 printk(KERN_CONT "FAILED!\n");
539 goto out;
540 }
1d4db00a 541 /* Only reset on passing, to avoid touching corrupted buffers */
86fa2f60 542 for_each_tracing_cpu(i)
3928a8a2 543 tracing_reset(tr, i);
86fa2f60 544
60a11774
SR
545 printk(KERN_CONT "PASSED\n");
546 }
547#endif
548
bc0c38d1
SR
549 type->next = trace_types;
550 trace_types = type;
551 len = strlen(type->name);
552 if (len > max_tracer_type_len)
553 max_tracer_type_len = len;
60a11774 554
bc0c38d1 555 out:
8e1b82e0 556 tracing_selftest_running = false;
bc0c38d1
SR
557 mutex_unlock(&trace_types_lock);
558
dac74940
SR
559 if (ret || !default_bootup_tracer)
560 goto out_unlock;
561
562 if (strncmp(default_bootup_tracer, type->name, BOOTUP_TRACER_SIZE))
563 goto out_unlock;
564
565 printk(KERN_INFO "Starting tracer '%s'\n", type->name);
566 /* Do we want this tracer to start on bootup? */
567 tracing_set_tracer(type->name);
568 default_bootup_tracer = NULL;
569 /* disable other selftests, since this will break it. */
570 tracing_selftest_disabled = 1;
b2821ae6 571#ifdef CONFIG_FTRACE_STARTUP_TEST
dac74940
SR
572 printk(KERN_INFO "Disabling FTRACE selftests due to running tracer '%s'\n",
573 type->name);
b2821ae6 574#endif
b2821ae6 575
dac74940 576 out_unlock:
b2821ae6 577 lock_kernel();
bc0c38d1
SR
578 return ret;
579}
580
581void unregister_tracer(struct tracer *type)
582{
583 struct tracer **t;
584 int len;
585
586 mutex_lock(&trace_types_lock);
587 for (t = &trace_types; *t; t = &(*t)->next) {
588 if (*t == type)
589 goto found;
590 }
591 pr_info("Trace %s not registered\n", type->name);
592 goto out;
593
594 found:
595 *t = (*t)->next;
b5db03c4
ACM
596
597 if (type == current_trace && tracer_enabled) {
598 tracer_enabled = 0;
599 tracing_stop();
600 if (current_trace->stop)
601 current_trace->stop(&global_trace);
602 current_trace = &nop_trace;
603 }
604
bc0c38d1
SR
605 if (strlen(type->name) != max_tracer_type_len)
606 goto out;
607
608 max_tracer_type_len = 0;
609 for (t = &trace_types; *t; t = &(*t)->next) {
610 len = strlen((*t)->name);
611 if (len > max_tracer_type_len)
612 max_tracer_type_len = len;
613 }
614 out:
615 mutex_unlock(&trace_types_lock);
616}
617
3928a8a2 618void tracing_reset(struct trace_array *tr, int cpu)
bc0c38d1 619{
d769041f 620 ftrace_disable_cpu();
3928a8a2 621 ring_buffer_reset_cpu(tr->buffer, cpu);
d769041f 622 ftrace_enable_cpu();
bc0c38d1
SR
623}
624
213cc060
PE
625void tracing_reset_online_cpus(struct trace_array *tr)
626{
627 int cpu;
628
629 tr->time_start = ftrace_now(tr->cpu);
630
631 for_each_online_cpu(cpu)
632 tracing_reset(tr, cpu);
633}
634
bc0c38d1 635#define SAVED_CMDLINES 128
2c7eea4c 636#define NO_CMDLINE_MAP UINT_MAX
bc0c38d1
SR
637static unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1];
638static unsigned map_cmdline_to_pid[SAVED_CMDLINES];
639static char saved_cmdlines[SAVED_CMDLINES][TASK_COMM_LEN];
640static int cmdline_idx;
efed792d 641static raw_spinlock_t trace_cmdline_lock = __RAW_SPIN_LOCK_UNLOCKED;
25b0b44a 642
25b0b44a 643/* temporary disable recording */
4fd27358 644static atomic_t trace_record_cmdline_disabled __read_mostly;
bc0c38d1
SR
645
646static void trace_init_cmdlines(void)
647{
2c7eea4c
TG
648 memset(&map_pid_to_cmdline, NO_CMDLINE_MAP, sizeof(map_pid_to_cmdline));
649 memset(&map_cmdline_to_pid, NO_CMDLINE_MAP, sizeof(map_cmdline_to_pid));
bc0c38d1
SR
650 cmdline_idx = 0;
651}
652
0f048701
SR
653static int trace_stop_count;
654static DEFINE_SPINLOCK(tracing_start_lock);
655
69bb54ec
SR
656/**
657 * ftrace_off_permanent - disable all ftrace code permanently
658 *
659 * This should only be called when a serious anomally has
660 * been detected. This will turn off the function tracing,
661 * ring buffers, and other tracing utilites. It takes no
662 * locks and can be called from any context.
663 */
664void ftrace_off_permanent(void)
665{
666 tracing_disabled = 1;
667 ftrace_stop();
668 tracing_off_permanent();
669}
670
0f048701
SR
671/**
672 * tracing_start - quick start of the tracer
673 *
674 * If tracing is enabled but was stopped by tracing_stop,
675 * this will start the tracer back up.
676 */
677void tracing_start(void)
678{
679 struct ring_buffer *buffer;
680 unsigned long flags;
681
682 if (tracing_disabled)
683 return;
684
685 spin_lock_irqsave(&tracing_start_lock, flags);
b06a8301
SR
686 if (--trace_stop_count) {
687 if (trace_stop_count < 0) {
688 /* Someone screwed up their debugging */
689 WARN_ON_ONCE(1);
690 trace_stop_count = 0;
691 }
0f048701
SR
692 goto out;
693 }
694
695
696 buffer = global_trace.buffer;
697 if (buffer)
698 ring_buffer_record_enable(buffer);
699
700 buffer = max_tr.buffer;
701 if (buffer)
702 ring_buffer_record_enable(buffer);
703
704 ftrace_start();
705 out:
706 spin_unlock_irqrestore(&tracing_start_lock, flags);
707}
708
709/**
710 * tracing_stop - quick stop of the tracer
711 *
712 * Light weight way to stop tracing. Use in conjunction with
713 * tracing_start.
714 */
715void tracing_stop(void)
716{
717 struct ring_buffer *buffer;
718 unsigned long flags;
719
720 ftrace_stop();
721 spin_lock_irqsave(&tracing_start_lock, flags);
722 if (trace_stop_count++)
723 goto out;
724
725 buffer = global_trace.buffer;
726 if (buffer)
727 ring_buffer_record_disable(buffer);
728
729 buffer = max_tr.buffer;
730 if (buffer)
731 ring_buffer_record_disable(buffer);
732
733 out:
734 spin_unlock_irqrestore(&tracing_start_lock, flags);
735}
736
e309b41d 737void trace_stop_cmdline_recording(void);
bc0c38d1 738
e309b41d 739static void trace_save_cmdline(struct task_struct *tsk)
bc0c38d1 740{
a635cf04 741 unsigned pid, idx;
bc0c38d1
SR
742
743 if (!tsk->pid || unlikely(tsk->pid > PID_MAX_DEFAULT))
744 return;
745
746 /*
747 * It's not the end of the world if we don't get
748 * the lock, but we also don't want to spin
749 * nor do we want to disable interrupts,
750 * so if we miss here, then better luck next time.
751 */
efed792d 752 if (!__raw_spin_trylock(&trace_cmdline_lock))
bc0c38d1
SR
753 return;
754
755 idx = map_pid_to_cmdline[tsk->pid];
2c7eea4c 756 if (idx == NO_CMDLINE_MAP) {
bc0c38d1
SR
757 idx = (cmdline_idx + 1) % SAVED_CMDLINES;
758
a635cf04
CE
759 /*
760 * Check whether the cmdline buffer at idx has a pid
761 * mapped. We are going to overwrite that entry so we
762 * need to clear the map_pid_to_cmdline. Otherwise we
763 * would read the new comm for the old pid.
764 */
765 pid = map_cmdline_to_pid[idx];
766 if (pid != NO_CMDLINE_MAP)
767 map_pid_to_cmdline[pid] = NO_CMDLINE_MAP;
bc0c38d1 768
a635cf04 769 map_cmdline_to_pid[idx] = tsk->pid;
bc0c38d1
SR
770 map_pid_to_cmdline[tsk->pid] = idx;
771
772 cmdline_idx = idx;
773 }
774
775 memcpy(&saved_cmdlines[idx], tsk->comm, TASK_COMM_LEN);
776
efed792d 777 __raw_spin_unlock(&trace_cmdline_lock);
bc0c38d1
SR
778}
779
4ca53085 780void trace_find_cmdline(int pid, char comm[])
bc0c38d1 781{
bc0c38d1
SR
782 unsigned map;
783
4ca53085
SR
784 if (!pid) {
785 strcpy(comm, "<idle>");
786 return;
787 }
bc0c38d1 788
4ca53085
SR
789 if (pid > PID_MAX_DEFAULT) {
790 strcpy(comm, "<...>");
791 return;
792 }
bc0c38d1 793
4ca53085 794 __raw_spin_lock(&trace_cmdline_lock);
bc0c38d1 795 map = map_pid_to_cmdline[pid];
50d88758
TG
796 if (map != NO_CMDLINE_MAP)
797 strcpy(comm, saved_cmdlines[map]);
798 else
799 strcpy(comm, "<...>");
bc0c38d1 800
4ca53085 801 __raw_spin_unlock(&trace_cmdline_lock);
bc0c38d1
SR
802}
803
e309b41d 804void tracing_record_cmdline(struct task_struct *tsk)
bc0c38d1 805{
18aecd36
TG
806 if (atomic_read(&trace_record_cmdline_disabled) || !tracer_enabled ||
807 !tracing_is_on())
bc0c38d1
SR
808 return;
809
810 trace_save_cmdline(tsk);
811}
812
45dcd8b8 813void
38697053
SR
814tracing_generic_entry_update(struct trace_entry *entry, unsigned long flags,
815 int pc)
bc0c38d1
SR
816{
817 struct task_struct *tsk = current;
bc0c38d1 818
777e208d
SR
819 entry->preempt_count = pc & 0xff;
820 entry->pid = (tsk) ? tsk->pid : 0;
ef18012b 821 entry->tgid = (tsk) ? tsk->tgid : 0;
777e208d 822 entry->flags =
9244489a 823#ifdef CONFIG_TRACE_IRQFLAGS_SUPPORT
2e2ca155 824 (irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) |
9244489a
SR
825#else
826 TRACE_FLAG_IRQS_NOSUPPORT |
827#endif
bc0c38d1
SR
828 ((pc & HARDIRQ_MASK) ? TRACE_FLAG_HARDIRQ : 0) |
829 ((pc & SOFTIRQ_MASK) ? TRACE_FLAG_SOFTIRQ : 0) |
830 (need_resched() ? TRACE_FLAG_NEED_RESCHED : 0);
831}
832
51a763dd
ACM
833struct ring_buffer_event *trace_buffer_lock_reserve(struct trace_array *tr,
834 unsigned char type,
835 unsigned long len,
836 unsigned long flags, int pc)
837{
838 struct ring_buffer_event *event;
839
840 event = ring_buffer_lock_reserve(tr->buffer, len);
841 if (event != NULL) {
842 struct trace_entry *ent = ring_buffer_event_data(event);
843
844 tracing_generic_entry_update(ent, flags, pc);
845 ent->type = type;
846 }
847
848 return event;
849}
850static void ftrace_trace_stack(struct trace_array *tr,
851 unsigned long flags, int skip, int pc);
852static void ftrace_trace_userstack(struct trace_array *tr,
853 unsigned long flags, int pc);
854
07edf712
FW
855static inline void __trace_buffer_unlock_commit(struct trace_array *tr,
856 struct ring_buffer_event *event,
857 unsigned long flags, int pc,
858 int wake)
51a763dd
ACM
859{
860 ring_buffer_unlock_commit(tr->buffer, event);
861
862 ftrace_trace_stack(tr, flags, 6, pc);
863 ftrace_trace_userstack(tr, flags, pc);
07edf712
FW
864
865 if (wake)
866 trace_wake_up();
867}
868
869void trace_buffer_unlock_commit(struct trace_array *tr,
870 struct ring_buffer_event *event,
871 unsigned long flags, int pc)
872{
873 __trace_buffer_unlock_commit(tr, event, flags, pc, 1);
51a763dd
ACM
874}
875
ef5580d0
SR
876struct ring_buffer_event *
877trace_current_buffer_lock_reserve(unsigned char type, unsigned long len,
878 unsigned long flags, int pc)
879{
880 return trace_buffer_lock_reserve(&global_trace,
881 type, len, flags, pc);
882}
883
884void trace_current_buffer_unlock_commit(struct ring_buffer_event *event,
885 unsigned long flags, int pc)
886{
07edf712
FW
887 return __trace_buffer_unlock_commit(&global_trace, event, flags, pc, 1);
888}
889
890void trace_nowake_buffer_unlock_commit(struct ring_buffer_event *event,
891 unsigned long flags, int pc)
892{
893 return __trace_buffer_unlock_commit(&global_trace, event, flags, pc, 0);
ef5580d0
SR
894}
895
e309b41d 896void
7be42151 897trace_function(struct trace_array *tr,
38697053
SR
898 unsigned long ip, unsigned long parent_ip, unsigned long flags,
899 int pc)
bc0c38d1 900{
e1112b4d 901 struct ftrace_event_call *call = &event_function;
3928a8a2 902 struct ring_buffer_event *event;
777e208d 903 struct ftrace_entry *entry;
bc0c38d1 904
d769041f
SR
905 /* If we are reading the ring buffer, don't trace */
906 if (unlikely(local_read(&__get_cpu_var(ftrace_cpu_disabled))))
907 return;
908
51a763dd
ACM
909 event = trace_buffer_lock_reserve(tr, TRACE_FN, sizeof(*entry),
910 flags, pc);
3928a8a2
SR
911 if (!event)
912 return;
913 entry = ring_buffer_event_data(event);
777e208d
SR
914 entry->ip = ip;
915 entry->parent_ip = parent_ip;
e1112b4d
TZ
916
917 filter_check_discard(call, entry, event);
918
0a987751 919 ring_buffer_unlock_commit(tr->buffer, event);
bc0c38d1
SR
920}
921
fb52607a 922#ifdef CONFIG_FUNCTION_GRAPH_TRACER
16185369 923static int __trace_graph_entry(struct trace_array *tr,
287b6e68
FW
924 struct ftrace_graph_ent *trace,
925 unsigned long flags,
926 int pc)
927{
e1112b4d 928 struct ftrace_event_call *call = &event_funcgraph_entry;
287b6e68
FW
929 struct ring_buffer_event *event;
930 struct ftrace_graph_ent_entry *entry;
287b6e68
FW
931
932 if (unlikely(local_read(&__get_cpu_var(ftrace_cpu_disabled))))
16185369 933 return 0;
287b6e68 934
51a763dd
ACM
935 event = trace_buffer_lock_reserve(&global_trace, TRACE_GRAPH_ENT,
936 sizeof(*entry), flags, pc);
287b6e68 937 if (!event)
16185369 938 return 0;
287b6e68 939 entry = ring_buffer_event_data(event);
287b6e68 940 entry->graph_ent = *trace;
e1112b4d 941 filter_check_discard(call, entry, event);
0a987751 942 ring_buffer_unlock_commit(global_trace.buffer, event);
16185369
FW
943
944 return 1;
287b6e68
FW
945}
946
947static void __trace_graph_return(struct trace_array *tr,
fb52607a 948 struct ftrace_graph_ret *trace,
15e6cb36
FW
949 unsigned long flags,
950 int pc)
951{
e1112b4d 952 struct ftrace_event_call *call = &event_funcgraph_exit;
15e6cb36 953 struct ring_buffer_event *event;
287b6e68 954 struct ftrace_graph_ret_entry *entry;
15e6cb36
FW
955
956 if (unlikely(local_read(&__get_cpu_var(ftrace_cpu_disabled))))
957 return;
958
51a763dd
ACM
959 event = trace_buffer_lock_reserve(&global_trace, TRACE_GRAPH_RET,
960 sizeof(*entry), flags, pc);
15e6cb36
FW
961 if (!event)
962 return;
963 entry = ring_buffer_event_data(event);
287b6e68 964 entry->ret = *trace;
e1112b4d 965 filter_check_discard(call, entry, event);
0a987751 966 ring_buffer_unlock_commit(global_trace.buffer, event);
15e6cb36
FW
967}
968#endif
969
e309b41d 970void
2e0f5761 971ftrace(struct trace_array *tr, struct trace_array_cpu *data,
38697053
SR
972 unsigned long ip, unsigned long parent_ip, unsigned long flags,
973 int pc)
2e0f5761
IM
974{
975 if (likely(!atomic_read(&data->disabled)))
7be42151 976 trace_function(tr, ip, parent_ip, flags, pc);
2e0f5761
IM
977}
978
53614991 979static void __ftrace_trace_stack(struct trace_array *tr,
53614991
SR
980 unsigned long flags,
981 int skip, int pc)
86387f7e 982{
c2c80529 983#ifdef CONFIG_STACKTRACE
e1112b4d 984 struct ftrace_event_call *call = &event_kernel_stack;
3928a8a2 985 struct ring_buffer_event *event;
777e208d 986 struct stack_entry *entry;
86387f7e
IM
987 struct stack_trace trace;
988
51a763dd
ACM
989 event = trace_buffer_lock_reserve(tr, TRACE_STACK,
990 sizeof(*entry), flags, pc);
3928a8a2
SR
991 if (!event)
992 return;
993 entry = ring_buffer_event_data(event);
777e208d 994 memset(&entry->caller, 0, sizeof(entry->caller));
86387f7e
IM
995
996 trace.nr_entries = 0;
997 trace.max_entries = FTRACE_STACK_ENTRIES;
998 trace.skip = skip;
777e208d 999 trace.entries = entry->caller;
86387f7e
IM
1000
1001 save_stack_trace(&trace);
e1112b4d 1002 filter_check_discard(call, entry, event);
0a987751 1003 ring_buffer_unlock_commit(tr->buffer, event);
c2c80529 1004#endif
f0a920d5
IM
1005}
1006
53614991 1007static void ftrace_trace_stack(struct trace_array *tr,
53614991
SR
1008 unsigned long flags,
1009 int skip, int pc)
1010{
1011 if (!(trace_flags & TRACE_ITER_STACKTRACE))
1012 return;
1013
7be42151 1014 __ftrace_trace_stack(tr, flags, skip, pc);
53614991
SR
1015}
1016
38697053 1017void __trace_stack(struct trace_array *tr,
38697053 1018 unsigned long flags,
53614991 1019 int skip, int pc)
38697053 1020{
7be42151 1021 __ftrace_trace_stack(tr, flags, skip, pc);
38697053
SR
1022}
1023
02b67518 1024static void ftrace_trace_userstack(struct trace_array *tr,
7be42151 1025 unsigned long flags, int pc)
02b67518 1026{
c7425acb 1027#ifdef CONFIG_STACKTRACE
e1112b4d 1028 struct ftrace_event_call *call = &event_user_stack;
8d7c6a96 1029 struct ring_buffer_event *event;
02b67518
TE
1030 struct userstack_entry *entry;
1031 struct stack_trace trace;
02b67518
TE
1032
1033 if (!(trace_flags & TRACE_ITER_USERSTACKTRACE))
1034 return;
1035
51a763dd
ACM
1036 event = trace_buffer_lock_reserve(tr, TRACE_USER_STACK,
1037 sizeof(*entry), flags, pc);
02b67518
TE
1038 if (!event)
1039 return;
1040 entry = ring_buffer_event_data(event);
02b67518
TE
1041
1042 memset(&entry->caller, 0, sizeof(entry->caller));
1043
1044 trace.nr_entries = 0;
1045 trace.max_entries = FTRACE_STACK_ENTRIES;
1046 trace.skip = 0;
1047 trace.entries = entry->caller;
1048
1049 save_stack_trace_user(&trace);
e1112b4d 1050 filter_check_discard(call, entry, event);
0a987751 1051 ring_buffer_unlock_commit(tr->buffer, event);
c7425acb 1052#endif
02b67518
TE
1053}
1054
4fd27358
HE
1055#ifdef UNUSED
1056static void __trace_userstack(struct trace_array *tr, unsigned long flags)
02b67518 1057{
7be42151 1058 ftrace_trace_userstack(tr, flags, preempt_count());
02b67518 1059}
4fd27358 1060#endif /* UNUSED */
02b67518 1061
38697053 1062static void
7be42151 1063ftrace_trace_special(void *__tr,
38697053
SR
1064 unsigned long arg1, unsigned long arg2, unsigned long arg3,
1065 int pc)
a4feb834 1066{
e1112b4d 1067 struct ftrace_event_call *call = &event_special;
3928a8a2 1068 struct ring_buffer_event *event;
a4feb834 1069 struct trace_array *tr = __tr;
777e208d 1070 struct special_entry *entry;
a4feb834 1071
51a763dd
ACM
1072 event = trace_buffer_lock_reserve(tr, TRACE_SPECIAL,
1073 sizeof(*entry), 0, pc);
3928a8a2
SR
1074 if (!event)
1075 return;
1076 entry = ring_buffer_event_data(event);
777e208d
SR
1077 entry->arg1 = arg1;
1078 entry->arg2 = arg2;
1079 entry->arg3 = arg3;
e1112b4d 1080 filter_check_discard(call, entry, event);
51a763dd 1081 trace_buffer_unlock_commit(tr, event, 0, pc);
a4feb834
IM
1082}
1083
38697053
SR
1084void
1085__trace_special(void *__tr, void *__data,
1086 unsigned long arg1, unsigned long arg2, unsigned long arg3)
1087{
7be42151 1088 ftrace_trace_special(__tr, arg1, arg2, arg3, preempt_count());
38697053
SR
1089}
1090
e309b41d 1091void
bc0c38d1 1092tracing_sched_switch_trace(struct trace_array *tr,
86387f7e
IM
1093 struct task_struct *prev,
1094 struct task_struct *next,
38697053 1095 unsigned long flags, int pc)
bc0c38d1 1096{
e1112b4d 1097 struct ftrace_event_call *call = &event_context_switch;
3928a8a2 1098 struct ring_buffer_event *event;
777e208d 1099 struct ctx_switch_entry *entry;
bc0c38d1 1100
51a763dd
ACM
1101 event = trace_buffer_lock_reserve(tr, TRACE_CTX,
1102 sizeof(*entry), flags, pc);
3928a8a2
SR
1103 if (!event)
1104 return;
1105 entry = ring_buffer_event_data(event);
777e208d
SR
1106 entry->prev_pid = prev->pid;
1107 entry->prev_prio = prev->prio;
1108 entry->prev_state = prev->state;
1109 entry->next_pid = next->pid;
1110 entry->next_prio = next->prio;
1111 entry->next_state = next->state;
1112 entry->next_cpu = task_cpu(next);
e1112b4d
TZ
1113
1114 filter_check_discard(call, entry, event);
1115
51a763dd 1116 trace_buffer_unlock_commit(tr, event, flags, pc);
bc0c38d1
SR
1117}
1118
57422797
IM
1119void
1120tracing_sched_wakeup_trace(struct trace_array *tr,
86387f7e
IM
1121 struct task_struct *wakee,
1122 struct task_struct *curr,
38697053 1123 unsigned long flags, int pc)
57422797 1124{
e1112b4d 1125 struct ftrace_event_call *call = &event_wakeup;
3928a8a2 1126 struct ring_buffer_event *event;
777e208d 1127 struct ctx_switch_entry *entry;
57422797 1128
51a763dd
ACM
1129 event = trace_buffer_lock_reserve(tr, TRACE_WAKE,
1130 sizeof(*entry), flags, pc);
3928a8a2
SR
1131 if (!event)
1132 return;
1133 entry = ring_buffer_event_data(event);
777e208d
SR
1134 entry->prev_pid = curr->pid;
1135 entry->prev_prio = curr->prio;
1136 entry->prev_state = curr->state;
1137 entry->next_pid = wakee->pid;
1138 entry->next_prio = wakee->prio;
1139 entry->next_state = wakee->state;
1140 entry->next_cpu = task_cpu(wakee);
6eaaa5d5 1141
e1112b4d
TZ
1142 filter_check_discard(call, entry, event);
1143
6eaaa5d5
FW
1144 ring_buffer_unlock_commit(tr->buffer, event);
1145 ftrace_trace_stack(tr, flags, 6, pc);
1146 ftrace_trace_userstack(tr, flags, pc);
57422797
IM
1147}
1148
4902f884
SR
1149void
1150ftrace_special(unsigned long arg1, unsigned long arg2, unsigned long arg3)
1151{
1152 struct trace_array *tr = &global_trace;
1153 struct trace_array_cpu *data;
5aa1ba6a 1154 unsigned long flags;
4902f884 1155 int cpu;
38697053 1156 int pc;
4902f884 1157
c76f0694 1158 if (tracing_disabled)
4902f884
SR
1159 return;
1160
38697053 1161 pc = preempt_count();
5aa1ba6a 1162 local_irq_save(flags);
4902f884
SR
1163 cpu = raw_smp_processor_id();
1164 data = tr->data[cpu];
4902f884 1165
5aa1ba6a 1166 if (likely(atomic_inc_return(&data->disabled) == 1))
7be42151 1167 ftrace_trace_special(tr, arg1, arg2, arg3, pc);
4902f884 1168
5aa1ba6a
SR
1169 atomic_dec(&data->disabled);
1170 local_irq_restore(flags);
4902f884
SR
1171}
1172
fb52607a 1173#ifdef CONFIG_FUNCTION_GRAPH_TRACER
e49dc19c 1174int trace_graph_entry(struct ftrace_graph_ent *trace)
15e6cb36
FW
1175{
1176 struct trace_array *tr = &global_trace;
1177 struct trace_array_cpu *data;
1178 unsigned long flags;
1179 long disabled;
16185369 1180 int ret;
15e6cb36
FW
1181 int cpu;
1182 int pc;
1183
804a6851
SR
1184 if (!ftrace_trace_task(current))
1185 return 0;
1186
ea4e2bc4
SR
1187 if (!ftrace_graph_addr(trace->func))
1188 return 0;
1189
a5e25883 1190 local_irq_save(flags);
15e6cb36
FW
1191 cpu = raw_smp_processor_id();
1192 data = tr->data[cpu];
1193 disabled = atomic_inc_return(&data->disabled);
1194 if (likely(disabled == 1)) {
1195 pc = preempt_count();
16185369
FW
1196 ret = __trace_graph_entry(tr, trace, flags, pc);
1197 } else {
1198 ret = 0;
287b6e68 1199 }
ea4e2bc4
SR
1200 /* Only do the atomic if it is not already set */
1201 if (!test_tsk_trace_graph(current))
1202 set_tsk_trace_graph(current);
16185369 1203
287b6e68 1204 atomic_dec(&data->disabled);
a5e25883 1205 local_irq_restore(flags);
e49dc19c 1206
16185369 1207 return ret;
287b6e68
FW
1208}
1209
1210void trace_graph_return(struct ftrace_graph_ret *trace)
1211{
1212 struct trace_array *tr = &global_trace;
1213 struct trace_array_cpu *data;
1214 unsigned long flags;
1215 long disabled;
1216 int cpu;
1217 int pc;
1218
a5e25883 1219 local_irq_save(flags);
287b6e68
FW
1220 cpu = raw_smp_processor_id();
1221 data = tr->data[cpu];
1222 disabled = atomic_inc_return(&data->disabled);
1223 if (likely(disabled == 1)) {
1224 pc = preempt_count();
7be42151 1225 __trace_graph_return(tr, trace, flags, pc);
15e6cb36 1226 }
ea4e2bc4
SR
1227 if (!trace->depth)
1228 clear_tsk_trace_graph(current);
15e6cb36 1229 atomic_dec(&data->disabled);
a5e25883 1230 local_irq_restore(flags);
15e6cb36 1231}
fb52607a 1232#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
15e6cb36 1233
769b0441
FW
1234
1235/**
48ead020 1236 * trace_vbprintk - write binary msg to tracing buffer
769b0441
FW
1237 *
1238 */
40ce74f1 1239int trace_vbprintk(unsigned long ip, const char *fmt, va_list args)
769b0441 1240{
80370cb7
SR
1241 static raw_spinlock_t trace_buf_lock =
1242 (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
769b0441
FW
1243 static u32 trace_buf[TRACE_BUF_SIZE];
1244
e1112b4d 1245 struct ftrace_event_call *call = &event_bprint;
769b0441
FW
1246 struct ring_buffer_event *event;
1247 struct trace_array *tr = &global_trace;
1248 struct trace_array_cpu *data;
48ead020 1249 struct bprint_entry *entry;
769b0441
FW
1250 unsigned long flags;
1251 int resched;
1252 int cpu, len = 0, size, pc;
1253
1254 if (unlikely(tracing_selftest_running || tracing_disabled))
1255 return 0;
1256
1257 /* Don't pollute graph traces with trace_vprintk internals */
1258 pause_graph_tracing();
1259
1260 pc = preempt_count();
1261 resched = ftrace_preempt_disable();
1262 cpu = raw_smp_processor_id();
1263 data = tr->data[cpu];
1264
1265 if (unlikely(atomic_read(&data->disabled)))
1266 goto out;
1267
80370cb7
SR
1268 /* Lockdep uses trace_printk for lock tracing */
1269 local_irq_save(flags);
1270 __raw_spin_lock(&trace_buf_lock);
769b0441
FW
1271 len = vbin_printf(trace_buf, TRACE_BUF_SIZE, fmt, args);
1272
1273 if (len > TRACE_BUF_SIZE || len < 0)
1274 goto out_unlock;
1275
1276 size = sizeof(*entry) + sizeof(u32) * len;
48ead020 1277 event = trace_buffer_lock_reserve(tr, TRACE_BPRINT, size, flags, pc);
769b0441
FW
1278 if (!event)
1279 goto out_unlock;
1280 entry = ring_buffer_event_data(event);
1281 entry->ip = ip;
769b0441
FW
1282 entry->fmt = fmt;
1283
1284 memcpy(entry->buf, trace_buf, sizeof(u32) * len);
e1112b4d 1285 filter_check_discard(call, entry, event);
769b0441
FW
1286 ring_buffer_unlock_commit(tr->buffer, event);
1287
1288out_unlock:
80370cb7
SR
1289 __raw_spin_unlock(&trace_buf_lock);
1290 local_irq_restore(flags);
769b0441
FW
1291
1292out:
1293 ftrace_preempt_enable(resched);
1294 unpause_graph_tracing();
1295
1296 return len;
1297}
48ead020
FW
1298EXPORT_SYMBOL_GPL(trace_vbprintk);
1299
40ce74f1 1300int trace_vprintk(unsigned long ip, const char *fmt, va_list args)
48ead020
FW
1301{
1302 static raw_spinlock_t trace_buf_lock = __RAW_SPIN_LOCK_UNLOCKED;
1303 static char trace_buf[TRACE_BUF_SIZE];
1304
e1112b4d 1305 struct ftrace_event_call *call = &event_print;
48ead020
FW
1306 struct ring_buffer_event *event;
1307 struct trace_array *tr = &global_trace;
1308 struct trace_array_cpu *data;
1309 int cpu, len = 0, size, pc;
1310 struct print_entry *entry;
1311 unsigned long irq_flags;
1312
1313 if (tracing_disabled || tracing_selftest_running)
1314 return 0;
1315
1316 pc = preempt_count();
1317 preempt_disable_notrace();
1318 cpu = raw_smp_processor_id();
1319 data = tr->data[cpu];
1320
1321 if (unlikely(atomic_read(&data->disabled)))
1322 goto out;
1323
1324 pause_graph_tracing();
1325 raw_local_irq_save(irq_flags);
1326 __raw_spin_lock(&trace_buf_lock);
1327 len = vsnprintf(trace_buf, TRACE_BUF_SIZE, fmt, args);
1328
1329 len = min(len, TRACE_BUF_SIZE-1);
1330 trace_buf[len] = 0;
1331
1332 size = sizeof(*entry) + len + 1;
1333 event = trace_buffer_lock_reserve(tr, TRACE_PRINT, size, irq_flags, pc);
1334 if (!event)
1335 goto out_unlock;
1336 entry = ring_buffer_event_data(event);
1337 entry->ip = ip;
48ead020
FW
1338
1339 memcpy(&entry->buf, trace_buf, len);
1340 entry->buf[len] = 0;
e1112b4d 1341 filter_check_discard(call, entry, event);
48ead020
FW
1342 ring_buffer_unlock_commit(tr->buffer, event);
1343
1344 out_unlock:
1345 __raw_spin_unlock(&trace_buf_lock);
1346 raw_local_irq_restore(irq_flags);
1347 unpause_graph_tracing();
1348 out:
1349 preempt_enable_notrace();
1350
1351 return len;
1352}
769b0441
FW
1353EXPORT_SYMBOL_GPL(trace_vprintk);
1354
bc0c38d1
SR
1355enum trace_file_type {
1356 TRACE_FILE_LAT_FMT = 1,
12ef7d44 1357 TRACE_FILE_ANNOTATE = 2,
bc0c38d1
SR
1358};
1359
e2ac8ef5 1360static void trace_iterator_increment(struct trace_iterator *iter)
5a90f577 1361{
d769041f
SR
1362 /* Don't allow ftrace to trace into the ring buffers */
1363 ftrace_disable_cpu();
1364
5a90f577 1365 iter->idx++;
d769041f
SR
1366 if (iter->buffer_iter[iter->cpu])
1367 ring_buffer_read(iter->buffer_iter[iter->cpu], NULL);
1368
1369 ftrace_enable_cpu();
5a90f577
SR
1370}
1371
e309b41d 1372static struct trace_entry *
3928a8a2 1373peek_next_entry(struct trace_iterator *iter, int cpu, u64 *ts)
dd0e545f 1374{
3928a8a2
SR
1375 struct ring_buffer_event *event;
1376 struct ring_buffer_iter *buf_iter = iter->buffer_iter[cpu];
dd0e545f 1377
d769041f
SR
1378 /* Don't allow ftrace to trace into the ring buffers */
1379 ftrace_disable_cpu();
1380
1381 if (buf_iter)
1382 event = ring_buffer_iter_peek(buf_iter, ts);
1383 else
1384 event = ring_buffer_peek(iter->tr->buffer, cpu, ts);
1385
1386 ftrace_enable_cpu();
1387
3928a8a2 1388 return event ? ring_buffer_event_data(event) : NULL;
dd0e545f 1389}
d769041f 1390
dd0e545f 1391static struct trace_entry *
3928a8a2 1392__find_next_entry(struct trace_iterator *iter, int *ent_cpu, u64 *ent_ts)
bc0c38d1 1393{
3928a8a2 1394 struct ring_buffer *buffer = iter->tr->buffer;
bc0c38d1 1395 struct trace_entry *ent, *next = NULL;
b04cc6b1 1396 int cpu_file = iter->cpu_file;
3928a8a2 1397 u64 next_ts = 0, ts;
bc0c38d1
SR
1398 int next_cpu = -1;
1399 int cpu;
1400
b04cc6b1
FW
1401 /*
1402 * If we are in a per_cpu trace file, don't bother by iterating over
1403 * all cpu and peek directly.
1404 */
1405 if (cpu_file > TRACE_PIPE_ALL_CPU) {
1406 if (ring_buffer_empty_cpu(buffer, cpu_file))
1407 return NULL;
1408 ent = peek_next_entry(iter, cpu_file, ent_ts);
1409 if (ent_cpu)
1410 *ent_cpu = cpu_file;
1411
1412 return ent;
1413 }
1414
ab46428c 1415 for_each_tracing_cpu(cpu) {
dd0e545f 1416
3928a8a2
SR
1417 if (ring_buffer_empty_cpu(buffer, cpu))
1418 continue;
dd0e545f 1419
3928a8a2 1420 ent = peek_next_entry(iter, cpu, &ts);
dd0e545f 1421
cdd31cd2
IM
1422 /*
1423 * Pick the entry with the smallest timestamp:
1424 */
3928a8a2 1425 if (ent && (!next || ts < next_ts)) {
bc0c38d1
SR
1426 next = ent;
1427 next_cpu = cpu;
3928a8a2 1428 next_ts = ts;
bc0c38d1
SR
1429 }
1430 }
1431
1432 if (ent_cpu)
1433 *ent_cpu = next_cpu;
1434
3928a8a2
SR
1435 if (ent_ts)
1436 *ent_ts = next_ts;
1437
bc0c38d1
SR
1438 return next;
1439}
1440
dd0e545f 1441/* Find the next real entry, without updating the iterator itself */
c4a8e8be
FW
1442struct trace_entry *trace_find_next_entry(struct trace_iterator *iter,
1443 int *ent_cpu, u64 *ent_ts)
bc0c38d1 1444{
3928a8a2 1445 return __find_next_entry(iter, ent_cpu, ent_ts);
dd0e545f
SR
1446}
1447
1448/* Find the next real entry, and increment the iterator to the next entry */
1449static void *find_next_entry_inc(struct trace_iterator *iter)
1450{
3928a8a2 1451 iter->ent = __find_next_entry(iter, &iter->cpu, &iter->ts);
dd0e545f 1452
3928a8a2 1453 if (iter->ent)
e2ac8ef5 1454 trace_iterator_increment(iter);
dd0e545f 1455
3928a8a2 1456 return iter->ent ? iter : NULL;
b3806b43 1457}
bc0c38d1 1458
e309b41d 1459static void trace_consume(struct trace_iterator *iter)
b3806b43 1460{
d769041f
SR
1461 /* Don't allow ftrace to trace into the ring buffers */
1462 ftrace_disable_cpu();
3928a8a2 1463 ring_buffer_consume(iter->tr->buffer, iter->cpu, &iter->ts);
d769041f 1464 ftrace_enable_cpu();
bc0c38d1
SR
1465}
1466
e309b41d 1467static void *s_next(struct seq_file *m, void *v, loff_t *pos)
bc0c38d1
SR
1468{
1469 struct trace_iterator *iter = m->private;
bc0c38d1 1470 int i = (int)*pos;
4e3c3333 1471 void *ent;
bc0c38d1
SR
1472
1473 (*pos)++;
1474
1475 /* can't go backwards */
1476 if (iter->idx > i)
1477 return NULL;
1478
1479 if (iter->idx < 0)
1480 ent = find_next_entry_inc(iter);
1481 else
1482 ent = iter;
1483
1484 while (ent && iter->idx < i)
1485 ent = find_next_entry_inc(iter);
1486
1487 iter->pos = *pos;
1488
bc0c38d1
SR
1489 return ent;
1490}
1491
d7350c3f
FW
1492/*
1493 * No necessary locking here. The worst thing which can
1494 * happen is loosing events consumed at the same time
1495 * by a trace_pipe reader.
1496 * Other than that, we don't risk to crash the ring buffer
1497 * because it serializes the readers.
1498 *
1499 * The current tracer is copied to avoid a global locking
1500 * all around.
1501 */
bc0c38d1
SR
1502static void *s_start(struct seq_file *m, loff_t *pos)
1503{
1504 struct trace_iterator *iter = m->private;
d7350c3f 1505 static struct tracer *old_tracer;
b04cc6b1 1506 int cpu_file = iter->cpu_file;
bc0c38d1
SR
1507 void *p = NULL;
1508 loff_t l = 0;
3928a8a2 1509 int cpu;
bc0c38d1 1510
d7350c3f 1511 /* copy the tracer to avoid using a global lock all around */
bc0c38d1 1512 mutex_lock(&trace_types_lock);
d7350c3f
FW
1513 if (unlikely(old_tracer != current_trace && current_trace)) {
1514 old_tracer = current_trace;
1515 *iter->trace = *current_trace;
d15f57f2 1516 }
d7350c3f 1517 mutex_unlock(&trace_types_lock);
bc0c38d1
SR
1518
1519 atomic_inc(&trace_record_cmdline_disabled);
1520
bc0c38d1
SR
1521 if (*pos != iter->pos) {
1522 iter->ent = NULL;
1523 iter->cpu = 0;
1524 iter->idx = -1;
1525
d769041f
SR
1526 ftrace_disable_cpu();
1527
b04cc6b1
FW
1528 if (cpu_file == TRACE_PIPE_ALL_CPU) {
1529 for_each_tracing_cpu(cpu)
1530 ring_buffer_iter_reset(iter->buffer_iter[cpu]);
1531 } else
1532 ring_buffer_iter_reset(iter->buffer_iter[cpu_file]);
1533
bc0c38d1 1534
d769041f
SR
1535 ftrace_enable_cpu();
1536
bc0c38d1
SR
1537 for (p = iter; p && l < *pos; p = s_next(m, p, &l))
1538 ;
1539
1540 } else {
4c11d7ae 1541 l = *pos - 1;
bc0c38d1
SR
1542 p = s_next(m, p, &l);
1543 }
1544
1545 return p;
1546}
1547
1548static void s_stop(struct seq_file *m, void *p)
1549{
bc0c38d1 1550 atomic_dec(&trace_record_cmdline_disabled);
bc0c38d1
SR
1551}
1552
e309b41d 1553static void print_lat_help_header(struct seq_file *m)
bc0c38d1 1554{
a6168353
ME
1555 seq_puts(m, "# _------=> CPU# \n");
1556 seq_puts(m, "# / _-----=> irqs-off \n");
1557 seq_puts(m, "# | / _----=> need-resched \n");
1558 seq_puts(m, "# || / _---=> hardirq/softirq \n");
1559 seq_puts(m, "# ||| / _--=> preempt-depth \n");
1560 seq_puts(m, "# |||| / \n");
1561 seq_puts(m, "# ||||| delay \n");
1562 seq_puts(m, "# cmd pid ||||| time | caller \n");
1563 seq_puts(m, "# \\ / ||||| \\ | / \n");
bc0c38d1
SR
1564}
1565
e309b41d 1566static void print_func_help_header(struct seq_file *m)
bc0c38d1 1567{
a6168353
ME
1568 seq_puts(m, "# TASK-PID CPU# TIMESTAMP FUNCTION\n");
1569 seq_puts(m, "# | | | | |\n");
bc0c38d1
SR
1570}
1571
1572
e309b41d 1573static void
bc0c38d1
SR
1574print_trace_header(struct seq_file *m, struct trace_iterator *iter)
1575{
1576 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1577 struct trace_array *tr = iter->tr;
1578 struct trace_array_cpu *data = tr->data[tr->cpu];
1579 struct tracer *type = current_trace;
3928a8a2
SR
1580 unsigned long total;
1581 unsigned long entries;
bc0c38d1
SR
1582 const char *name = "preemption";
1583
1584 if (type)
1585 name = type->name;
1586
3928a8a2
SR
1587 entries = ring_buffer_entries(iter->tr->buffer);
1588 total = entries +
1589 ring_buffer_overruns(iter->tr->buffer);
bc0c38d1 1590
888b55dc 1591 seq_printf(m, "# %s latency trace v1.1.5 on %s\n",
bc0c38d1 1592 name, UTS_RELEASE);
888b55dc 1593 seq_puts(m, "# -----------------------------------"
bc0c38d1 1594 "---------------------------------\n");
888b55dc 1595 seq_printf(m, "# latency: %lu us, #%lu/%lu, CPU#%d |"
bc0c38d1 1596 " (M:%s VP:%d, KP:%d, SP:%d HP:%d",
57f50be1 1597 nsecs_to_usecs(data->saved_latency),
bc0c38d1 1598 entries,
4c11d7ae 1599 total,
bc0c38d1
SR
1600 tr->cpu,
1601#if defined(CONFIG_PREEMPT_NONE)
1602 "server",
1603#elif defined(CONFIG_PREEMPT_VOLUNTARY)
1604 "desktop",
b5c21b45 1605#elif defined(CONFIG_PREEMPT)
bc0c38d1
SR
1606 "preempt",
1607#else
1608 "unknown",
1609#endif
1610 /* These are reserved for later use */
1611 0, 0, 0, 0);
1612#ifdef CONFIG_SMP
1613 seq_printf(m, " #P:%d)\n", num_online_cpus());
1614#else
1615 seq_puts(m, ")\n");
1616#endif
888b55dc
KM
1617 seq_puts(m, "# -----------------\n");
1618 seq_printf(m, "# | task: %.16s-%d "
bc0c38d1
SR
1619 "(uid:%d nice:%ld policy:%ld rt_prio:%ld)\n",
1620 data->comm, data->pid, data->uid, data->nice,
1621 data->policy, data->rt_priority);
888b55dc 1622 seq_puts(m, "# -----------------\n");
bc0c38d1
SR
1623
1624 if (data->critical_start) {
888b55dc 1625 seq_puts(m, "# => started at: ");
214023c3
SR
1626 seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags);
1627 trace_print_seq(m, &iter->seq);
888b55dc 1628 seq_puts(m, "\n# => ended at: ");
214023c3
SR
1629 seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags);
1630 trace_print_seq(m, &iter->seq);
888b55dc 1631 seq_puts(m, "#\n");
bc0c38d1
SR
1632 }
1633
888b55dc 1634 seq_puts(m, "#\n");
bc0c38d1
SR
1635}
1636
a309720c
SR
1637static void test_cpu_buff_start(struct trace_iterator *iter)
1638{
1639 struct trace_seq *s = &iter->seq;
1640
12ef7d44
SR
1641 if (!(trace_flags & TRACE_ITER_ANNOTATE))
1642 return;
1643
1644 if (!(iter->iter_flags & TRACE_FILE_ANNOTATE))
1645 return;
1646
4462344e 1647 if (cpumask_test_cpu(iter->cpu, iter->started))
a309720c
SR
1648 return;
1649
4462344e 1650 cpumask_set_cpu(iter->cpu, iter->started);
b0dfa978
FW
1651
1652 /* Don't print started cpu buffer for the first entry of the trace */
1653 if (iter->idx > 1)
1654 trace_seq_printf(s, "##### CPU %u buffer started ####\n",
1655 iter->cpu);
a309720c
SR
1656}
1657
2c4f035f 1658static enum print_line_t print_trace_fmt(struct trace_iterator *iter)
bc0c38d1 1659{
214023c3 1660 struct trace_seq *s = &iter->seq;
bc0c38d1 1661 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
4e3c3333 1662 struct trace_entry *entry;
f633cef0 1663 struct trace_event *event;
bc0c38d1 1664
4e3c3333 1665 entry = iter->ent;
dd0e545f 1666
a309720c
SR
1667 test_cpu_buff_start(iter);
1668
c4a8e8be 1669 event = ftrace_find_event(entry->type);
bc0c38d1 1670
c4a8e8be 1671 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
27d48be8
SR
1672 if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
1673 if (!trace_print_lat_context(iter))
1674 goto partial;
1675 } else {
1676 if (!trace_print_context(iter))
1677 goto partial;
1678 }
c4a8e8be 1679 }
bc0c38d1 1680
268ccda0 1681 if (event)
d9793bd8
ACM
1682 return event->trace(iter, sym_flags);
1683
1684 if (!trace_seq_printf(s, "Unknown type %d\n", entry->type))
1685 goto partial;
02b67518 1686
2c4f035f 1687 return TRACE_TYPE_HANDLED;
d9793bd8
ACM
1688partial:
1689 return TRACE_TYPE_PARTIAL_LINE;
bc0c38d1
SR
1690}
1691
2c4f035f 1692static enum print_line_t print_raw_fmt(struct trace_iterator *iter)
f9896bf3
IM
1693{
1694 struct trace_seq *s = &iter->seq;
1695 struct trace_entry *entry;
f633cef0 1696 struct trace_event *event;
f9896bf3
IM
1697
1698 entry = iter->ent;
dd0e545f 1699
c4a8e8be 1700 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
d9793bd8
ACM
1701 if (!trace_seq_printf(s, "%d %d %llu ",
1702 entry->pid, iter->cpu, iter->ts))
1703 goto partial;
c4a8e8be 1704 }
f9896bf3 1705
f633cef0 1706 event = ftrace_find_event(entry->type);
268ccda0 1707 if (event)
d9793bd8
ACM
1708 return event->raw(iter, 0);
1709
1710 if (!trace_seq_printf(s, "%d ?\n", entry->type))
1711 goto partial;
777e208d 1712
2c4f035f 1713 return TRACE_TYPE_HANDLED;
d9793bd8
ACM
1714partial:
1715 return TRACE_TYPE_PARTIAL_LINE;
f9896bf3
IM
1716}
1717
2c4f035f 1718static enum print_line_t print_hex_fmt(struct trace_iterator *iter)
5e3ca0ec
IM
1719{
1720 struct trace_seq *s = &iter->seq;
1721 unsigned char newline = '\n';
1722 struct trace_entry *entry;
f633cef0 1723 struct trace_event *event;
5e3ca0ec
IM
1724
1725 entry = iter->ent;
dd0e545f 1726
c4a8e8be
FW
1727 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
1728 SEQ_PUT_HEX_FIELD_RET(s, entry->pid);
1729 SEQ_PUT_HEX_FIELD_RET(s, iter->cpu);
1730 SEQ_PUT_HEX_FIELD_RET(s, iter->ts);
1731 }
5e3ca0ec 1732
f633cef0 1733 event = ftrace_find_event(entry->type);
268ccda0 1734 if (event) {
ae7462b4 1735 enum print_line_t ret = event->hex(iter, 0);
d9793bd8
ACM
1736 if (ret != TRACE_TYPE_HANDLED)
1737 return ret;
1738 }
7104f300 1739
5e3ca0ec
IM
1740 SEQ_PUT_FIELD_RET(s, newline);
1741
2c4f035f 1742 return TRACE_TYPE_HANDLED;
5e3ca0ec
IM
1743}
1744
2c4f035f 1745static enum print_line_t print_bin_fmt(struct trace_iterator *iter)
cb0f12aa
IM
1746{
1747 struct trace_seq *s = &iter->seq;
1748 struct trace_entry *entry;
f633cef0 1749 struct trace_event *event;
cb0f12aa
IM
1750
1751 entry = iter->ent;
dd0e545f 1752
c4a8e8be
FW
1753 if (trace_flags & TRACE_ITER_CONTEXT_INFO) {
1754 SEQ_PUT_FIELD_RET(s, entry->pid);
1830b52d 1755 SEQ_PUT_FIELD_RET(s, iter->cpu);
c4a8e8be
FW
1756 SEQ_PUT_FIELD_RET(s, iter->ts);
1757 }
cb0f12aa 1758
f633cef0 1759 event = ftrace_find_event(entry->type);
268ccda0 1760 return event ? event->binary(iter, 0) : TRACE_TYPE_HANDLED;
cb0f12aa
IM
1761}
1762
bc0c38d1
SR
1763static int trace_empty(struct trace_iterator *iter)
1764{
bc0c38d1
SR
1765 int cpu;
1766
9aba60fe
SR
1767 /* If we are looking at one CPU buffer, only check that one */
1768 if (iter->cpu_file != TRACE_PIPE_ALL_CPU) {
1769 cpu = iter->cpu_file;
1770 if (iter->buffer_iter[cpu]) {
1771 if (!ring_buffer_iter_empty(iter->buffer_iter[cpu]))
1772 return 0;
1773 } else {
1774 if (!ring_buffer_empty_cpu(iter->tr->buffer, cpu))
1775 return 0;
1776 }
1777 return 1;
1778 }
1779
ab46428c 1780 for_each_tracing_cpu(cpu) {
d769041f
SR
1781 if (iter->buffer_iter[cpu]) {
1782 if (!ring_buffer_iter_empty(iter->buffer_iter[cpu]))
1783 return 0;
1784 } else {
1785 if (!ring_buffer_empty_cpu(iter->tr->buffer, cpu))
1786 return 0;
1787 }
bc0c38d1 1788 }
d769041f 1789
797d3712 1790 return 1;
bc0c38d1
SR
1791}
1792
2c4f035f 1793static enum print_line_t print_trace_line(struct trace_iterator *iter)
f9896bf3 1794{
2c4f035f
FW
1795 enum print_line_t ret;
1796
1797 if (iter->trace && iter->trace->print_line) {
1798 ret = iter->trace->print_line(iter);
1799 if (ret != TRACE_TYPE_UNHANDLED)
1800 return ret;
1801 }
72829bc3 1802
48ead020
FW
1803 if (iter->ent->type == TRACE_BPRINT &&
1804 trace_flags & TRACE_ITER_PRINTK &&
1805 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
5ef841f6 1806 return trace_print_bprintk_msg_only(iter);
48ead020 1807
66896a85
FW
1808 if (iter->ent->type == TRACE_PRINT &&
1809 trace_flags & TRACE_ITER_PRINTK &&
1810 trace_flags & TRACE_ITER_PRINTK_MSGONLY)
5ef841f6 1811 return trace_print_printk_msg_only(iter);
66896a85 1812
cb0f12aa
IM
1813 if (trace_flags & TRACE_ITER_BIN)
1814 return print_bin_fmt(iter);
1815
5e3ca0ec
IM
1816 if (trace_flags & TRACE_ITER_HEX)
1817 return print_hex_fmt(iter);
1818
f9896bf3
IM
1819 if (trace_flags & TRACE_ITER_RAW)
1820 return print_raw_fmt(iter);
1821
f9896bf3
IM
1822 return print_trace_fmt(iter);
1823}
1824
bc0c38d1
SR
1825static int s_show(struct seq_file *m, void *v)
1826{
1827 struct trace_iterator *iter = v;
1828
1829 if (iter->ent == NULL) {
1830 if (iter->tr) {
1831 seq_printf(m, "# tracer: %s\n", iter->trace->name);
1832 seq_puts(m, "#\n");
1833 }
8bba1bf5
MM
1834 if (iter->trace && iter->trace->print_header)
1835 iter->trace->print_header(m);
1836 else if (iter->iter_flags & TRACE_FILE_LAT_FMT) {
bc0c38d1
SR
1837 /* print nothing if the buffers are empty */
1838 if (trace_empty(iter))
1839 return 0;
1840 print_trace_header(m, iter);
1841 if (!(trace_flags & TRACE_ITER_VERBOSE))
1842 print_lat_help_header(m);
1843 } else {
1844 if (!(trace_flags & TRACE_ITER_VERBOSE))
1845 print_func_help_header(m);
1846 }
1847 } else {
f9896bf3 1848 print_trace_line(iter);
214023c3 1849 trace_print_seq(m, &iter->seq);
bc0c38d1
SR
1850 }
1851
1852 return 0;
1853}
1854
1855static struct seq_operations tracer_seq_ops = {
4bf39a94
IM
1856 .start = s_start,
1857 .next = s_next,
1858 .stop = s_stop,
1859 .show = s_show,
bc0c38d1
SR
1860};
1861
e309b41d 1862static struct trace_iterator *
85a2f9b4 1863__tracing_open(struct inode *inode, struct file *file)
bc0c38d1 1864{
b04cc6b1 1865 long cpu_file = (long) inode->i_private;
85a2f9b4 1866 void *fail_ret = ERR_PTR(-ENOMEM);
bc0c38d1 1867 struct trace_iterator *iter;
3928a8a2 1868 struct seq_file *m;
85a2f9b4 1869 int cpu, ret;
bc0c38d1 1870
85a2f9b4
SR
1871 if (tracing_disabled)
1872 return ERR_PTR(-ENODEV);
60a11774 1873
bc0c38d1 1874 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
85a2f9b4
SR
1875 if (!iter)
1876 return ERR_PTR(-ENOMEM);
bc0c38d1 1877
d7350c3f
FW
1878 /*
1879 * We make a copy of the current tracer to avoid concurrent
1880 * changes on it while we are reading.
1881 */
bc0c38d1 1882 mutex_lock(&trace_types_lock);
d7350c3f 1883 iter->trace = kzalloc(sizeof(*iter->trace), GFP_KERNEL);
85a2f9b4 1884 if (!iter->trace)
d7350c3f 1885 goto fail;
85a2f9b4 1886
d7350c3f
FW
1887 if (current_trace)
1888 *iter->trace = *current_trace;
1889
b0dfa978
FW
1890 if (!alloc_cpumask_var(&iter->started, GFP_KERNEL))
1891 goto fail;
1892
1893 cpumask_clear(iter->started);
1894
bc0c38d1
SR
1895 if (current_trace && current_trace->print_max)
1896 iter->tr = &max_tr;
1897 else
b04cc6b1 1898 iter->tr = &global_trace;
bc0c38d1 1899 iter->pos = -1;
d7350c3f 1900 mutex_init(&iter->mutex);
b04cc6b1 1901 iter->cpu_file = cpu_file;
bc0c38d1 1902
8bba1bf5
MM
1903 /* Notify the tracer early; before we stop tracing. */
1904 if (iter->trace && iter->trace->open)
a93751ca 1905 iter->trace->open(iter);
8bba1bf5 1906
12ef7d44
SR
1907 /* Annotate start of buffers if we had overruns */
1908 if (ring_buffer_overruns(iter->tr->buffer))
1909 iter->iter_flags |= TRACE_FILE_ANNOTATE;
1910
b04cc6b1
FW
1911 if (iter->cpu_file == TRACE_PIPE_ALL_CPU) {
1912 for_each_tracing_cpu(cpu) {
12ef7d44 1913
b04cc6b1
FW
1914 iter->buffer_iter[cpu] =
1915 ring_buffer_read_start(iter->tr->buffer, cpu);
b04cc6b1
FW
1916 }
1917 } else {
1918 cpu = iter->cpu_file;
3928a8a2 1919 iter->buffer_iter[cpu] =
b04cc6b1 1920 ring_buffer_read_start(iter->tr->buffer, cpu);
3928a8a2
SR
1921 }
1922
bc0c38d1 1923 /* TODO stop tracer */
85a2f9b4
SR
1924 ret = seq_open(file, &tracer_seq_ops);
1925 if (ret < 0) {
1926 fail_ret = ERR_PTR(ret);
3928a8a2 1927 goto fail_buffer;
85a2f9b4 1928 }
bc0c38d1 1929
3928a8a2
SR
1930 m = file->private_data;
1931 m->private = iter;
bc0c38d1 1932
3928a8a2 1933 /* stop the trace while dumping */
9036990d 1934 tracing_stop();
3928a8a2 1935
bc0c38d1
SR
1936 mutex_unlock(&trace_types_lock);
1937
bc0c38d1 1938 return iter;
3928a8a2
SR
1939
1940 fail_buffer:
1941 for_each_tracing_cpu(cpu) {
1942 if (iter->buffer_iter[cpu])
1943 ring_buffer_read_finish(iter->buffer_iter[cpu]);
1944 }
b0dfa978 1945 free_cpumask_var(iter->started);
d7350c3f 1946 fail:
3928a8a2 1947 mutex_unlock(&trace_types_lock);
d7350c3f 1948 kfree(iter->trace);
0bb943c7 1949 kfree(iter);
3928a8a2 1950
85a2f9b4 1951 return fail_ret;
bc0c38d1
SR
1952}
1953
1954int tracing_open_generic(struct inode *inode, struct file *filp)
1955{
60a11774
SR
1956 if (tracing_disabled)
1957 return -ENODEV;
1958
bc0c38d1
SR
1959 filp->private_data = inode->i_private;
1960 return 0;
1961}
1962
4fd27358 1963static int tracing_release(struct inode *inode, struct file *file)
bc0c38d1
SR
1964{
1965 struct seq_file *m = (struct seq_file *)file->private_data;
4acd4d00 1966 struct trace_iterator *iter;
3928a8a2 1967 int cpu;
bc0c38d1 1968
4acd4d00
SR
1969 if (!(file->f_mode & FMODE_READ))
1970 return 0;
1971
1972 iter = m->private;
1973
bc0c38d1 1974 mutex_lock(&trace_types_lock);
3928a8a2
SR
1975 for_each_tracing_cpu(cpu) {
1976 if (iter->buffer_iter[cpu])
1977 ring_buffer_read_finish(iter->buffer_iter[cpu]);
1978 }
1979
bc0c38d1
SR
1980 if (iter->trace && iter->trace->close)
1981 iter->trace->close(iter);
1982
1983 /* reenable tracing if it was previously enabled */
9036990d 1984 tracing_start();
bc0c38d1
SR
1985 mutex_unlock(&trace_types_lock);
1986
1987 seq_release(inode, file);
d7350c3f 1988 mutex_destroy(&iter->mutex);
b0dfa978 1989 free_cpumask_var(iter->started);
d7350c3f 1990 kfree(iter->trace);
bc0c38d1
SR
1991 kfree(iter);
1992 return 0;
1993}
1994
1995static int tracing_open(struct inode *inode, struct file *file)
1996{
85a2f9b4
SR
1997 struct trace_iterator *iter;
1998 int ret = 0;
bc0c38d1 1999
4acd4d00
SR
2000 /* If this file was open for write, then erase contents */
2001 if ((file->f_mode & FMODE_WRITE) &&
2002 !(file->f_flags & O_APPEND)) {
2003 long cpu = (long) inode->i_private;
bc0c38d1 2004
4acd4d00
SR
2005 if (cpu == TRACE_PIPE_ALL_CPU)
2006 tracing_reset_online_cpus(&global_trace);
2007 else
2008 tracing_reset(&global_trace, cpu);
2009 }
bc0c38d1 2010
4acd4d00
SR
2011 if (file->f_mode & FMODE_READ) {
2012 iter = __tracing_open(inode, file);
2013 if (IS_ERR(iter))
2014 ret = PTR_ERR(iter);
2015 else if (trace_flags & TRACE_ITER_LATENCY_FMT)
2016 iter->iter_flags |= TRACE_FILE_LAT_FMT;
2017 }
bc0c38d1
SR
2018 return ret;
2019}
2020
e309b41d 2021static void *
bc0c38d1
SR
2022t_next(struct seq_file *m, void *v, loff_t *pos)
2023{
2024 struct tracer *t = m->private;
2025
2026 (*pos)++;
2027
2028 if (t)
2029 t = t->next;
2030
2031 m->private = t;
2032
2033 return t;
2034}
2035
2036static void *t_start(struct seq_file *m, loff_t *pos)
2037{
2038 struct tracer *t = m->private;
2039 loff_t l = 0;
2040
2041 mutex_lock(&trace_types_lock);
2042 for (; t && l < *pos; t = t_next(m, t, &l))
2043 ;
2044
2045 return t;
2046}
2047
2048static void t_stop(struct seq_file *m, void *p)
2049{
2050 mutex_unlock(&trace_types_lock);
2051}
2052
2053static int t_show(struct seq_file *m, void *v)
2054{
2055 struct tracer *t = v;
2056
2057 if (!t)
2058 return 0;
2059
2060 seq_printf(m, "%s", t->name);
2061 if (t->next)
2062 seq_putc(m, ' ');
2063 else
2064 seq_putc(m, '\n');
2065
2066 return 0;
2067}
2068
2069static struct seq_operations show_traces_seq_ops = {
4bf39a94
IM
2070 .start = t_start,
2071 .next = t_next,
2072 .stop = t_stop,
2073 .show = t_show,
bc0c38d1
SR
2074};
2075
2076static int show_traces_open(struct inode *inode, struct file *file)
2077{
2078 int ret;
2079
60a11774
SR
2080 if (tracing_disabled)
2081 return -ENODEV;
2082
bc0c38d1
SR
2083 ret = seq_open(file, &show_traces_seq_ops);
2084 if (!ret) {
2085 struct seq_file *m = file->private_data;
2086 m->private = trace_types;
2087 }
2088
2089 return ret;
2090}
2091
4acd4d00
SR
2092static ssize_t
2093tracing_write_stub(struct file *filp, const char __user *ubuf,
2094 size_t count, loff_t *ppos)
2095{
2096 return count;
2097}
2098
5e2336a0 2099static const struct file_operations tracing_fops = {
4bf39a94
IM
2100 .open = tracing_open,
2101 .read = seq_read,
4acd4d00 2102 .write = tracing_write_stub,
4bf39a94
IM
2103 .llseek = seq_lseek,
2104 .release = tracing_release,
bc0c38d1
SR
2105};
2106
5e2336a0 2107static const struct file_operations show_traces_fops = {
c7078de1
IM
2108 .open = show_traces_open,
2109 .read = seq_read,
2110 .release = seq_release,
2111};
2112
36dfe925
IM
2113/*
2114 * Only trace on a CPU if the bitmask is set:
2115 */
9e01c1b7 2116static cpumask_var_t tracing_cpumask;
36dfe925
IM
2117
2118/*
2119 * The tracer itself will not take this lock, but still we want
2120 * to provide a consistent cpumask to user-space:
2121 */
2122static DEFINE_MUTEX(tracing_cpumask_update_lock);
2123
2124/*
2125 * Temporary storage for the character representation of the
2126 * CPU bitmask (and one more byte for the newline):
2127 */
2128static char mask_str[NR_CPUS + 1];
2129
c7078de1
IM
2130static ssize_t
2131tracing_cpumask_read(struct file *filp, char __user *ubuf,
2132 size_t count, loff_t *ppos)
2133{
36dfe925 2134 int len;
c7078de1
IM
2135
2136 mutex_lock(&tracing_cpumask_update_lock);
36dfe925 2137
9e01c1b7 2138 len = cpumask_scnprintf(mask_str, count, tracing_cpumask);
36dfe925
IM
2139 if (count - len < 2) {
2140 count = -EINVAL;
2141 goto out_err;
2142 }
2143 len += sprintf(mask_str + len, "\n");
2144 count = simple_read_from_buffer(ubuf, count, ppos, mask_str, NR_CPUS+1);
2145
2146out_err:
c7078de1
IM
2147 mutex_unlock(&tracing_cpumask_update_lock);
2148
2149 return count;
2150}
2151
2152static ssize_t
2153tracing_cpumask_write(struct file *filp, const char __user *ubuf,
2154 size_t count, loff_t *ppos)
2155{
36dfe925 2156 int err, cpu;
9e01c1b7
RR
2157 cpumask_var_t tracing_cpumask_new;
2158
2159 if (!alloc_cpumask_var(&tracing_cpumask_new, GFP_KERNEL))
2160 return -ENOMEM;
c7078de1
IM
2161
2162 mutex_lock(&tracing_cpumask_update_lock);
9e01c1b7 2163 err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
c7078de1 2164 if (err)
36dfe925
IM
2165 goto err_unlock;
2166
a5e25883 2167 local_irq_disable();
92205c23 2168 __raw_spin_lock(&ftrace_max_lock);
ab46428c 2169 for_each_tracing_cpu(cpu) {
36dfe925
IM
2170 /*
2171 * Increase/decrease the disabled counter if we are
2172 * about to flip a bit in the cpumask:
2173 */
9e01c1b7
RR
2174 if (cpumask_test_cpu(cpu, tracing_cpumask) &&
2175 !cpumask_test_cpu(cpu, tracing_cpumask_new)) {
36dfe925
IM
2176 atomic_inc(&global_trace.data[cpu]->disabled);
2177 }
9e01c1b7
RR
2178 if (!cpumask_test_cpu(cpu, tracing_cpumask) &&
2179 cpumask_test_cpu(cpu, tracing_cpumask_new)) {
36dfe925
IM
2180 atomic_dec(&global_trace.data[cpu]->disabled);
2181 }
2182 }
92205c23 2183 __raw_spin_unlock(&ftrace_max_lock);
a5e25883 2184 local_irq_enable();
36dfe925 2185
9e01c1b7 2186 cpumask_copy(tracing_cpumask, tracing_cpumask_new);
36dfe925
IM
2187
2188 mutex_unlock(&tracing_cpumask_update_lock);
9e01c1b7 2189 free_cpumask_var(tracing_cpumask_new);
c7078de1
IM
2190
2191 return count;
36dfe925
IM
2192
2193err_unlock:
2194 mutex_unlock(&tracing_cpumask_update_lock);
9e01c1b7 2195 free_cpumask_var(tracing_cpumask);
36dfe925
IM
2196
2197 return err;
c7078de1
IM
2198}
2199
5e2336a0 2200static const struct file_operations tracing_cpumask_fops = {
c7078de1
IM
2201 .open = tracing_open_generic,
2202 .read = tracing_cpumask_read,
2203 .write = tracing_cpumask_write,
bc0c38d1
SR
2204};
2205
2206static ssize_t
ee6bce52 2207tracing_trace_options_read(struct file *filp, char __user *ubuf,
bc0c38d1
SR
2208 size_t cnt, loff_t *ppos)
2209{
d8e83d26
SR
2210 struct tracer_opt *trace_opts;
2211 u32 tracer_flags;
2212 int len = 0;
bc0c38d1
SR
2213 char *buf;
2214 int r = 0;
d8e83d26 2215 int i;
adf9f195 2216
bc0c38d1 2217
c3706f00 2218 /* calculate max size */
bc0c38d1
SR
2219 for (i = 0; trace_options[i]; i++) {
2220 len += strlen(trace_options[i]);
5c6a3ae1 2221 len += 3; /* "no" and newline */
bc0c38d1
SR
2222 }
2223
d8e83d26
SR
2224 mutex_lock(&trace_types_lock);
2225 tracer_flags = current_trace->flags->val;
2226 trace_opts = current_trace->flags->opts;
2227
adf9f195
FW
2228 /*
2229 * Increase the size with names of options specific
2230 * of the current tracer.
2231 */
2232 for (i = 0; trace_opts[i].name; i++) {
2233 len += strlen(trace_opts[i].name);
5c6a3ae1 2234 len += 3; /* "no" and newline */
adf9f195
FW
2235 }
2236
bc0c38d1
SR
2237 /* +2 for \n and \0 */
2238 buf = kmalloc(len + 2, GFP_KERNEL);
d8e83d26
SR
2239 if (!buf) {
2240 mutex_unlock(&trace_types_lock);
bc0c38d1 2241 return -ENOMEM;
d8e83d26 2242 }
bc0c38d1
SR
2243
2244 for (i = 0; trace_options[i]; i++) {
2245 if (trace_flags & (1 << i))
5c6a3ae1 2246 r += sprintf(buf + r, "%s\n", trace_options[i]);
bc0c38d1 2247 else
5c6a3ae1 2248 r += sprintf(buf + r, "no%s\n", trace_options[i]);
bc0c38d1
SR
2249 }
2250
adf9f195
FW
2251 for (i = 0; trace_opts[i].name; i++) {
2252 if (tracer_flags & trace_opts[i].bit)
5c6a3ae1 2253 r += sprintf(buf + r, "%s\n",
adf9f195
FW
2254 trace_opts[i].name);
2255 else
5c6a3ae1 2256 r += sprintf(buf + r, "no%s\n",
adf9f195
FW
2257 trace_opts[i].name);
2258 }
d8e83d26 2259 mutex_unlock(&trace_types_lock);
adf9f195 2260
bc0c38d1
SR
2261 WARN_ON(r >= len + 2);
2262
36dfe925 2263 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
bc0c38d1
SR
2264
2265 kfree(buf);
bc0c38d1
SR
2266 return r;
2267}
2268
adf9f195
FW
2269/* Try to assign a tracer specific option */
2270static int set_tracer_option(struct tracer *trace, char *cmp, int neg)
2271{
2272 struct tracer_flags *trace_flags = trace->flags;
2273 struct tracer_opt *opts = NULL;
2274 int ret = 0, i = 0;
2275 int len;
2276
2277 for (i = 0; trace_flags->opts[i].name; i++) {
2278 opts = &trace_flags->opts[i];
2279 len = strlen(opts->name);
2280
2281 if (strncmp(cmp, opts->name, len) == 0) {
2282 ret = trace->set_flag(trace_flags->val,
2283 opts->bit, !neg);
2284 break;
2285 }
2286 }
2287 /* Not found */
2288 if (!trace_flags->opts[i].name)
2289 return -EINVAL;
2290
2291 /* Refused to handle */
2292 if (ret)
2293 return ret;
2294
2295 if (neg)
2296 trace_flags->val &= ~opts->bit;
2297 else
2298 trace_flags->val |= opts->bit;
2299
2300 return 0;
2301}
2302
af4617bd
SR
2303static void set_tracer_flags(unsigned int mask, int enabled)
2304{
2305 /* do nothing if flag is already set */
2306 if (!!(trace_flags & mask) == !!enabled)
2307 return;
2308
2309 if (enabled)
2310 trace_flags |= mask;
2311 else
2312 trace_flags &= ~mask;
2313
2314 if (mask == TRACE_ITER_GLOBAL_CLK) {
2315 u64 (*func)(void);
2316
2317 if (enabled)
2318 func = trace_clock_global;
2319 else
2320 func = trace_clock_local;
2321
2322 mutex_lock(&trace_types_lock);
2323 ring_buffer_set_clock(global_trace.buffer, func);
2324
2325 if (max_tr.buffer)
2326 ring_buffer_set_clock(max_tr.buffer, func);
2327 mutex_unlock(&trace_types_lock);
2328 }
2329}
2330
bc0c38d1 2331static ssize_t
ee6bce52 2332tracing_trace_options_write(struct file *filp, const char __user *ubuf,
bc0c38d1
SR
2333 size_t cnt, loff_t *ppos)
2334{
2335 char buf[64];
2336 char *cmp = buf;
2337 int neg = 0;
adf9f195 2338 int ret;
bc0c38d1
SR
2339 int i;
2340
cffae437
SR
2341 if (cnt >= sizeof(buf))
2342 return -EINVAL;
bc0c38d1
SR
2343
2344 if (copy_from_user(&buf, ubuf, cnt))
2345 return -EFAULT;
2346
2347 buf[cnt] = 0;
2348
2349 if (strncmp(buf, "no", 2) == 0) {
2350 neg = 1;
2351 cmp += 2;
2352 }
2353
2354 for (i = 0; trace_options[i]; i++) {
2355 int len = strlen(trace_options[i]);
2356
2357 if (strncmp(cmp, trace_options[i], len) == 0) {
af4617bd 2358 set_tracer_flags(1 << i, !neg);
bc0c38d1
SR
2359 break;
2360 }
2361 }
adf9f195
FW
2362
2363 /* If no option could be set, test the specific tracer options */
2364 if (!trace_options[i]) {
d8e83d26 2365 mutex_lock(&trace_types_lock);
adf9f195 2366 ret = set_tracer_option(current_trace, cmp, neg);
d8e83d26 2367 mutex_unlock(&trace_types_lock);
adf9f195
FW
2368 if (ret)
2369 return ret;
2370 }
bc0c38d1
SR
2371
2372 filp->f_pos += cnt;
2373
2374 return cnt;
2375}
2376
5e2336a0 2377static const struct file_operations tracing_iter_fops = {
c7078de1 2378 .open = tracing_open_generic,
ee6bce52
SR
2379 .read = tracing_trace_options_read,
2380 .write = tracing_trace_options_write,
bc0c38d1
SR
2381};
2382
7bd2f24c
IM
2383static const char readme_msg[] =
2384 "tracing mini-HOWTO:\n\n"
2385 "# mkdir /debug\n"
2386 "# mount -t debugfs nodev /debug\n\n"
2387 "# cat /debug/tracing/available_tracers\n"
bc2b6871 2388 "wakeup preemptirqsoff preemptoff irqsoff function sched_switch nop\n\n"
7bd2f24c 2389 "# cat /debug/tracing/current_tracer\n"
bc2b6871 2390 "nop\n"
7bd2f24c
IM
2391 "# echo sched_switch > /debug/tracing/current_tracer\n"
2392 "# cat /debug/tracing/current_tracer\n"
2393 "sched_switch\n"
ee6bce52 2394 "# cat /debug/tracing/trace_options\n"
7bd2f24c 2395 "noprint-parent nosym-offset nosym-addr noverbose\n"
ee6bce52 2396 "# echo print-parent > /debug/tracing/trace_options\n"
7bd2f24c
IM
2397 "# echo 1 > /debug/tracing/tracing_enabled\n"
2398 "# cat /debug/tracing/trace > /tmp/trace.txt\n"
2399 "echo 0 > /debug/tracing/tracing_enabled\n"
2400;
2401
2402static ssize_t
2403tracing_readme_read(struct file *filp, char __user *ubuf,
2404 size_t cnt, loff_t *ppos)
2405{
2406 return simple_read_from_buffer(ubuf, cnt, ppos,
2407 readme_msg, strlen(readme_msg));
2408}
2409
5e2336a0 2410static const struct file_operations tracing_readme_fops = {
c7078de1
IM
2411 .open = tracing_open_generic,
2412 .read = tracing_readme_read,
7bd2f24c
IM
2413};
2414
bc0c38d1
SR
2415static ssize_t
2416tracing_ctrl_read(struct file *filp, char __user *ubuf,
2417 size_t cnt, loff_t *ppos)
2418{
bc0c38d1
SR
2419 char buf[64];
2420 int r;
2421
9036990d 2422 r = sprintf(buf, "%u\n", tracer_enabled);
4e3c3333 2423 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
bc0c38d1
SR
2424}
2425
2426static ssize_t
2427tracing_ctrl_write(struct file *filp, const char __user *ubuf,
2428 size_t cnt, loff_t *ppos)
2429{
2430 struct trace_array *tr = filp->private_data;
bc0c38d1 2431 char buf[64];
5e39841c 2432 unsigned long val;
c6caeeb1 2433 int ret;
bc0c38d1 2434
cffae437
SR
2435 if (cnt >= sizeof(buf))
2436 return -EINVAL;
bc0c38d1
SR
2437
2438 if (copy_from_user(&buf, ubuf, cnt))
2439 return -EFAULT;
2440
2441 buf[cnt] = 0;
2442
c6caeeb1
SR
2443 ret = strict_strtoul(buf, 10, &val);
2444 if (ret < 0)
2445 return ret;
bc0c38d1
SR
2446
2447 val = !!val;
2448
2449 mutex_lock(&trace_types_lock);
9036990d
SR
2450 if (tracer_enabled ^ val) {
2451 if (val) {
bc0c38d1 2452 tracer_enabled = 1;
9036990d
SR
2453 if (current_trace->start)
2454 current_trace->start(tr);
2455 tracing_start();
2456 } else {
bc0c38d1 2457 tracer_enabled = 0;
9036990d
SR
2458 tracing_stop();
2459 if (current_trace->stop)
2460 current_trace->stop(tr);
2461 }
bc0c38d1
SR
2462 }
2463 mutex_unlock(&trace_types_lock);
2464
2465 filp->f_pos += cnt;
2466
2467 return cnt;
2468}
2469
2470static ssize_t
2471tracing_set_trace_read(struct file *filp, char __user *ubuf,
2472 size_t cnt, loff_t *ppos)
2473{
2474 char buf[max_tracer_type_len+2];
2475 int r;
2476
2477 mutex_lock(&trace_types_lock);
2478 if (current_trace)
2479 r = sprintf(buf, "%s\n", current_trace->name);
2480 else
2481 r = sprintf(buf, "\n");
2482 mutex_unlock(&trace_types_lock);
2483
4bf39a94 2484 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
bc0c38d1
SR
2485}
2486
b6f11df2
ACM
2487int tracer_init(struct tracer *t, struct trace_array *tr)
2488{
2489 tracing_reset_online_cpus(tr);
2490 return t->init(tr);
2491}
2492
73c5162a
SR
2493static int tracing_resize_ring_buffer(unsigned long size)
2494{
2495 int ret;
2496
2497 /*
2498 * If kernel or user changes the size of the ring buffer
a123c52b
SR
2499 * we use the size that was given, and we can forget about
2500 * expanding it later.
73c5162a
SR
2501 */
2502 ring_buffer_expanded = 1;
2503
2504 ret = ring_buffer_resize(global_trace.buffer, size);
2505 if (ret < 0)
2506 return ret;
2507
2508 ret = ring_buffer_resize(max_tr.buffer, size);
2509 if (ret < 0) {
2510 int r;
2511
2512 r = ring_buffer_resize(global_trace.buffer,
2513 global_trace.entries);
2514 if (r < 0) {
a123c52b
SR
2515 /*
2516 * AARGH! We are left with different
2517 * size max buffer!!!!
2518 * The max buffer is our "snapshot" buffer.
2519 * When a tracer needs a snapshot (one of the
2520 * latency tracers), it swaps the max buffer
2521 * with the saved snap shot. We succeeded to
2522 * update the size of the main buffer, but failed to
2523 * update the size of the max buffer. But when we tried
2524 * to reset the main buffer to the original size, we
2525 * failed there too. This is very unlikely to
2526 * happen, but if it does, warn and kill all
2527 * tracing.
2528 */
73c5162a
SR
2529 WARN_ON(1);
2530 tracing_disabled = 1;
2531 }
2532 return ret;
2533 }
2534
2535 global_trace.entries = size;
2536
2537 return ret;
2538}
2539
1852fcce
SR
2540/**
2541 * tracing_update_buffers - used by tracing facility to expand ring buffers
2542 *
2543 * To save on memory when the tracing is never used on a system with it
2544 * configured in. The ring buffers are set to a minimum size. But once
2545 * a user starts to use the tracing facility, then they need to grow
2546 * to their default size.
2547 *
2548 * This function is to be called when a tracer is about to be used.
2549 */
2550int tracing_update_buffers(void)
2551{
2552 int ret = 0;
2553
1027fcb2 2554 mutex_lock(&trace_types_lock);
1852fcce
SR
2555 if (!ring_buffer_expanded)
2556 ret = tracing_resize_ring_buffer(trace_buf_size);
1027fcb2 2557 mutex_unlock(&trace_types_lock);
1852fcce
SR
2558
2559 return ret;
2560}
2561
577b785f
SR
2562struct trace_option_dentry;
2563
2564static struct trace_option_dentry *
2565create_trace_option_files(struct tracer *tracer);
2566
2567static void
2568destroy_trace_option_files(struct trace_option_dentry *topts);
2569
b2821ae6 2570static int tracing_set_tracer(const char *buf)
bc0c38d1 2571{
577b785f 2572 static struct trace_option_dentry *topts;
bc0c38d1
SR
2573 struct trace_array *tr = &global_trace;
2574 struct tracer *t;
d9e54076 2575 int ret = 0;
bc0c38d1 2576
1027fcb2
SR
2577 mutex_lock(&trace_types_lock);
2578
73c5162a
SR
2579 if (!ring_buffer_expanded) {
2580 ret = tracing_resize_ring_buffer(trace_buf_size);
2581 if (ret < 0)
59f586db 2582 goto out;
73c5162a
SR
2583 ret = 0;
2584 }
2585
bc0c38d1
SR
2586 for (t = trace_types; t; t = t->next) {
2587 if (strcmp(t->name, buf) == 0)
2588 break;
2589 }
c2931e05
FW
2590 if (!t) {
2591 ret = -EINVAL;
2592 goto out;
2593 }
2594 if (t == current_trace)
bc0c38d1
SR
2595 goto out;
2596
9f029e83 2597 trace_branch_disable();
bc0c38d1
SR
2598 if (current_trace && current_trace->reset)
2599 current_trace->reset(tr);
2600
577b785f
SR
2601 destroy_trace_option_files(topts);
2602
bc0c38d1 2603 current_trace = t;
577b785f
SR
2604
2605 topts = create_trace_option_files(current_trace);
2606
1c80025a 2607 if (t->init) {
b6f11df2 2608 ret = tracer_init(t, tr);
1c80025a
FW
2609 if (ret)
2610 goto out;
2611 }
bc0c38d1 2612
9f029e83 2613 trace_branch_enable(tr);
bc0c38d1
SR
2614 out:
2615 mutex_unlock(&trace_types_lock);
2616
d9e54076
PZ
2617 return ret;
2618}
2619
2620static ssize_t
2621tracing_set_trace_write(struct file *filp, const char __user *ubuf,
2622 size_t cnt, loff_t *ppos)
2623{
2624 char buf[max_tracer_type_len+1];
2625 int i;
2626 size_t ret;
e6e7a65a
FW
2627 int err;
2628
2629 ret = cnt;
d9e54076
PZ
2630
2631 if (cnt > max_tracer_type_len)
2632 cnt = max_tracer_type_len;
2633
2634 if (copy_from_user(&buf, ubuf, cnt))
2635 return -EFAULT;
2636
2637 buf[cnt] = 0;
2638
2639 /* strip ending whitespace. */
2640 for (i = cnt - 1; i > 0 && isspace(buf[i]); i--)
2641 buf[i] = 0;
2642
e6e7a65a
FW
2643 err = tracing_set_tracer(buf);
2644 if (err)
2645 return err;
d9e54076 2646
e6e7a65a 2647 filp->f_pos += ret;
bc0c38d1 2648
c2931e05 2649 return ret;
bc0c38d1
SR
2650}
2651
2652static ssize_t
2653tracing_max_lat_read(struct file *filp, char __user *ubuf,
2654 size_t cnt, loff_t *ppos)
2655{
2656 unsigned long *ptr = filp->private_data;
2657 char buf[64];
2658 int r;
2659
cffae437 2660 r = snprintf(buf, sizeof(buf), "%ld\n",
bc0c38d1 2661 *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
cffae437
SR
2662 if (r > sizeof(buf))
2663 r = sizeof(buf);
4bf39a94 2664 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
bc0c38d1
SR
2665}
2666
2667static ssize_t
2668tracing_max_lat_write(struct file *filp, const char __user *ubuf,
2669 size_t cnt, loff_t *ppos)
2670{
5e39841c 2671 unsigned long *ptr = filp->private_data;
bc0c38d1 2672 char buf[64];
5e39841c 2673 unsigned long val;
c6caeeb1 2674 int ret;
bc0c38d1 2675
cffae437
SR
2676 if (cnt >= sizeof(buf))
2677 return -EINVAL;
bc0c38d1
SR
2678
2679 if (copy_from_user(&buf, ubuf, cnt))
2680 return -EFAULT;
2681
2682 buf[cnt] = 0;
2683
c6caeeb1
SR
2684 ret = strict_strtoul(buf, 10, &val);
2685 if (ret < 0)
2686 return ret;
bc0c38d1
SR
2687
2688 *ptr = val * 1000;
2689
2690 return cnt;
2691}
2692
b3806b43
SR
2693static int tracing_open_pipe(struct inode *inode, struct file *filp)
2694{
b04cc6b1 2695 long cpu_file = (long) inode->i_private;
b3806b43 2696 struct trace_iterator *iter;
b04cc6b1 2697 int ret = 0;
b3806b43
SR
2698
2699 if (tracing_disabled)
2700 return -ENODEV;
2701
b04cc6b1
FW
2702 mutex_lock(&trace_types_lock);
2703
2704 /* We only allow one reader per cpu */
2705 if (cpu_file == TRACE_PIPE_ALL_CPU) {
2706 if (!cpumask_empty(tracing_reader_cpumask)) {
2707 ret = -EBUSY;
2708 goto out;
2709 }
2710 cpumask_setall(tracing_reader_cpumask);
2711 } else {
2712 if (!cpumask_test_cpu(cpu_file, tracing_reader_cpumask))
2713 cpumask_set_cpu(cpu_file, tracing_reader_cpumask);
2714 else {
2715 ret = -EBUSY;
2716 goto out;
2717 }
b3806b43
SR
2718 }
2719
2720 /* create a buffer to store the information to pass to userspace */
2721 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
b04cc6b1
FW
2722 if (!iter) {
2723 ret = -ENOMEM;
2724 goto out;
2725 }
b3806b43 2726
d7350c3f
FW
2727 /*
2728 * We make a copy of the current tracer to avoid concurrent
2729 * changes on it while we are reading.
2730 */
2731 iter->trace = kmalloc(sizeof(*iter->trace), GFP_KERNEL);
2732 if (!iter->trace) {
2733 ret = -ENOMEM;
2734 goto fail;
2735 }
2736 if (current_trace)
2737 *iter->trace = *current_trace;
2738
4462344e 2739 if (!alloc_cpumask_var(&iter->started, GFP_KERNEL)) {
b04cc6b1 2740 ret = -ENOMEM;
d7350c3f 2741 goto fail;
4462344e
RR
2742 }
2743
a309720c 2744 /* trace pipe does not show start of buffer */
4462344e 2745 cpumask_setall(iter->started);
a309720c 2746
b04cc6b1 2747 iter->cpu_file = cpu_file;
b3806b43 2748 iter->tr = &global_trace;
d7350c3f 2749 mutex_init(&iter->mutex);
b3806b43
SR
2750 filp->private_data = iter;
2751
107bad8b
SR
2752 if (iter->trace->pipe_open)
2753 iter->trace->pipe_open(iter);
107bad8b 2754
b04cc6b1
FW
2755out:
2756 mutex_unlock(&trace_types_lock);
2757 return ret;
d7350c3f
FW
2758
2759fail:
2760 kfree(iter->trace);
2761 kfree(iter);
2762 mutex_unlock(&trace_types_lock);
2763 return ret;
b3806b43
SR
2764}
2765
2766static int tracing_release_pipe(struct inode *inode, struct file *file)
2767{
2768 struct trace_iterator *iter = file->private_data;
2769
b04cc6b1
FW
2770 mutex_lock(&trace_types_lock);
2771
2772 if (iter->cpu_file == TRACE_PIPE_ALL_CPU)
2773 cpumask_clear(tracing_reader_cpumask);
2774 else
2775 cpumask_clear_cpu(iter->cpu_file, tracing_reader_cpumask);
2776
2777 mutex_unlock(&trace_types_lock);
2778
4462344e 2779 free_cpumask_var(iter->started);
d7350c3f
FW
2780 mutex_destroy(&iter->mutex);
2781 kfree(iter->trace);
b3806b43 2782 kfree(iter);
b3806b43
SR
2783
2784 return 0;
2785}
2786
2a2cc8f7
SSP
2787static unsigned int
2788tracing_poll_pipe(struct file *filp, poll_table *poll_table)
2789{
2790 struct trace_iterator *iter = filp->private_data;
2791
2792 if (trace_flags & TRACE_ITER_BLOCK) {
2793 /*
2794 * Always select as readable when in blocking mode
2795 */
2796 return POLLIN | POLLRDNORM;
afc2abc0 2797 } else {
2a2cc8f7
SSP
2798 if (!trace_empty(iter))
2799 return POLLIN | POLLRDNORM;
2800 poll_wait(filp, &trace_wait, poll_table);
2801 if (!trace_empty(iter))
2802 return POLLIN | POLLRDNORM;
2803
2804 return 0;
2805 }
2806}
2807
6eaaa5d5
FW
2808
2809void default_wait_pipe(struct trace_iterator *iter)
2810{
2811 DEFINE_WAIT(wait);
2812
2813 prepare_to_wait(&trace_wait, &wait, TASK_INTERRUPTIBLE);
2814
2815 if (trace_empty(iter))
2816 schedule();
2817
2818 finish_wait(&trace_wait, &wait);
2819}
2820
2821/*
2822 * This is a make-shift waitqueue.
2823 * A tracer might use this callback on some rare cases:
2824 *
2825 * 1) the current tracer might hold the runqueue lock when it wakes up
2826 * a reader, hence a deadlock (sched, function, and function graph tracers)
2827 * 2) the function tracers, trace all functions, we don't want
2828 * the overhead of calling wake_up and friends
2829 * (and tracing them too)
2830 *
2831 * Anyway, this is really very primitive wakeup.
2832 */
2833void poll_wait_pipe(struct trace_iterator *iter)
2834{
2835 set_current_state(TASK_INTERRUPTIBLE);
2836 /* sleep for 100 msecs, and try again. */
2837 schedule_timeout(HZ / 10);
2838}
2839
ff98781b
EGM
2840/* Must be called with trace_types_lock mutex held. */
2841static int tracing_wait_pipe(struct file *filp)
b3806b43
SR
2842{
2843 struct trace_iterator *iter = filp->private_data;
b3806b43 2844
b3806b43 2845 while (trace_empty(iter)) {
2dc8f095 2846
107bad8b 2847 if ((filp->f_flags & O_NONBLOCK)) {
ff98781b 2848 return -EAGAIN;
107bad8b 2849 }
2dc8f095 2850
d7350c3f 2851 mutex_unlock(&iter->mutex);
107bad8b 2852
6eaaa5d5 2853 iter->trace->wait_pipe(iter);
b3806b43 2854
d7350c3f 2855 mutex_lock(&iter->mutex);
107bad8b 2856
6eaaa5d5 2857 if (signal_pending(current))
ff98781b 2858 return -EINTR;
b3806b43
SR
2859
2860 /*
2861 * We block until we read something and tracing is disabled.
2862 * We still block if tracing is disabled, but we have never
2863 * read anything. This allows a user to cat this file, and
2864 * then enable tracing. But after we have read something,
2865 * we give an EOF when tracing is again disabled.
2866 *
2867 * iter->pos will be 0 if we haven't read anything.
2868 */
2869 if (!tracer_enabled && iter->pos)
2870 break;
b3806b43
SR
2871 }
2872
ff98781b
EGM
2873 return 1;
2874}
2875
2876/*
2877 * Consumer reader.
2878 */
2879static ssize_t
2880tracing_read_pipe(struct file *filp, char __user *ubuf,
2881 size_t cnt, loff_t *ppos)
2882{
2883 struct trace_iterator *iter = filp->private_data;
d7350c3f 2884 static struct tracer *old_tracer;
ff98781b
EGM
2885 ssize_t sret;
2886
2887 /* return any leftover data */
2888 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
2889 if (sret != -EBUSY)
2890 return sret;
2891
f9520750 2892 trace_seq_init(&iter->seq);
ff98781b 2893
d7350c3f 2894 /* copy the tracer to avoid using a global lock all around */
ff98781b 2895 mutex_lock(&trace_types_lock);
d7350c3f
FW
2896 if (unlikely(old_tracer != current_trace && current_trace)) {
2897 old_tracer = current_trace;
2898 *iter->trace = *current_trace;
2899 }
2900 mutex_unlock(&trace_types_lock);
2901
2902 /*
2903 * Avoid more than one consumer on a single file descriptor
2904 * This is just a matter of traces coherency, the ring buffer itself
2905 * is protected.
2906 */
2907 mutex_lock(&iter->mutex);
ff98781b
EGM
2908 if (iter->trace->read) {
2909 sret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
2910 if (sret)
2911 goto out;
2912 }
2913
2914waitagain:
2915 sret = tracing_wait_pipe(filp);
2916 if (sret <= 0)
2917 goto out;
2918
b3806b43 2919 /* stop when tracing is finished */
ff98781b
EGM
2920 if (trace_empty(iter)) {
2921 sret = 0;
107bad8b 2922 goto out;
ff98781b 2923 }
b3806b43
SR
2924
2925 if (cnt >= PAGE_SIZE)
2926 cnt = PAGE_SIZE - 1;
2927
53d0aa77 2928 /* reset all but tr, trace, and overruns */
53d0aa77
SR
2929 memset(&iter->seq, 0,
2930 sizeof(struct trace_iterator) -
2931 offsetof(struct trace_iterator, seq));
4823ed7e 2932 iter->pos = -1;
b3806b43 2933
088b1e42 2934 while (find_next_entry_inc(iter) != NULL) {
2c4f035f 2935 enum print_line_t ret;
088b1e42
SR
2936 int len = iter->seq.len;
2937
f9896bf3 2938 ret = print_trace_line(iter);
2c4f035f 2939 if (ret == TRACE_TYPE_PARTIAL_LINE) {
088b1e42
SR
2940 /* don't print partial lines */
2941 iter->seq.len = len;
b3806b43 2942 break;
088b1e42 2943 }
b91facc3
FW
2944 if (ret != TRACE_TYPE_NO_CONSUME)
2945 trace_consume(iter);
b3806b43
SR
2946
2947 if (iter->seq.len >= cnt)
2948 break;
b3806b43
SR
2949 }
2950
b3806b43 2951 /* Now copy what we have to the user */
6c6c2796
PP
2952 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
2953 if (iter->seq.readpos >= iter->seq.len)
f9520750 2954 trace_seq_init(&iter->seq);
9ff4b974
PP
2955
2956 /*
2957 * If there was nothing to send to user, inspite of consuming trace
2958 * entries, go back to wait for more entries.
2959 */
6c6c2796 2960 if (sret == -EBUSY)
9ff4b974 2961 goto waitagain;
b3806b43 2962
107bad8b 2963out:
d7350c3f 2964 mutex_unlock(&iter->mutex);
107bad8b 2965
6c6c2796 2966 return sret;
b3806b43
SR
2967}
2968
3c56819b
EGM
2969static void tracing_pipe_buf_release(struct pipe_inode_info *pipe,
2970 struct pipe_buffer *buf)
2971{
2972 __free_page(buf->page);
2973}
2974
2975static void tracing_spd_release_pipe(struct splice_pipe_desc *spd,
2976 unsigned int idx)
2977{
2978 __free_page(spd->pages[idx]);
2979}
2980
2981static struct pipe_buf_operations tracing_pipe_buf_ops = {
34cd4998
SR
2982 .can_merge = 0,
2983 .map = generic_pipe_buf_map,
2984 .unmap = generic_pipe_buf_unmap,
2985 .confirm = generic_pipe_buf_confirm,
2986 .release = tracing_pipe_buf_release,
2987 .steal = generic_pipe_buf_steal,
2988 .get = generic_pipe_buf_get,
3c56819b
EGM
2989};
2990
34cd4998 2991static size_t
fa7c7f6e 2992tracing_fill_pipe_page(size_t rem, struct trace_iterator *iter)
34cd4998
SR
2993{
2994 size_t count;
2995 int ret;
2996
2997 /* Seq buffer is page-sized, exactly what we need. */
2998 for (;;) {
2999 count = iter->seq.len;
3000 ret = print_trace_line(iter);
3001 count = iter->seq.len - count;
3002 if (rem < count) {
3003 rem = 0;
3004 iter->seq.len -= count;
3005 break;
3006 }
3007 if (ret == TRACE_TYPE_PARTIAL_LINE) {
3008 iter->seq.len -= count;
3009 break;
3010 }
3011
3012 trace_consume(iter);
3013 rem -= count;
3014 if (!find_next_entry_inc(iter)) {
3015 rem = 0;
3016 iter->ent = NULL;
3017 break;
3018 }
3019 }
3020
3021 return rem;
3022}
3023
3c56819b
EGM
3024static ssize_t tracing_splice_read_pipe(struct file *filp,
3025 loff_t *ppos,
3026 struct pipe_inode_info *pipe,
3027 size_t len,
3028 unsigned int flags)
3029{
3030 struct page *pages[PIPE_BUFFERS];
3031 struct partial_page partial[PIPE_BUFFERS];
3032 struct trace_iterator *iter = filp->private_data;
3033 struct splice_pipe_desc spd = {
34cd4998
SR
3034 .pages = pages,
3035 .partial = partial,
3036 .nr_pages = 0, /* This gets updated below. */
3037 .flags = flags,
3038 .ops = &tracing_pipe_buf_ops,
3039 .spd_release = tracing_spd_release_pipe,
3c56819b 3040 };
d7350c3f 3041 static struct tracer *old_tracer;
3c56819b 3042 ssize_t ret;
34cd4998 3043 size_t rem;
3c56819b
EGM
3044 unsigned int i;
3045
d7350c3f 3046 /* copy the tracer to avoid using a global lock all around */
3c56819b 3047 mutex_lock(&trace_types_lock);
d7350c3f
FW
3048 if (unlikely(old_tracer != current_trace && current_trace)) {
3049 old_tracer = current_trace;
3050 *iter->trace = *current_trace;
3051 }
3052 mutex_unlock(&trace_types_lock);
3053
3054 mutex_lock(&iter->mutex);
3c56819b
EGM
3055
3056 if (iter->trace->splice_read) {
3057 ret = iter->trace->splice_read(iter, filp,
3058 ppos, pipe, len, flags);
3059 if (ret)
34cd4998 3060 goto out_err;
3c56819b
EGM
3061 }
3062
3063 ret = tracing_wait_pipe(filp);
3064 if (ret <= 0)
34cd4998 3065 goto out_err;
3c56819b
EGM
3066
3067 if (!iter->ent && !find_next_entry_inc(iter)) {
3068 ret = -EFAULT;
34cd4998 3069 goto out_err;
3c56819b
EGM
3070 }
3071
3072 /* Fill as many pages as possible. */
3073 for (i = 0, rem = len; i < PIPE_BUFFERS && rem; i++) {
3074 pages[i] = alloc_page(GFP_KERNEL);
34cd4998
SR
3075 if (!pages[i])
3076 break;
3c56819b 3077
fa7c7f6e 3078 rem = tracing_fill_pipe_page(rem, iter);
3c56819b
EGM
3079
3080 /* Copy the data into the page, so we can start over. */
3081 ret = trace_seq_to_buffer(&iter->seq,
3082 page_address(pages[i]),
3083 iter->seq.len);
3084 if (ret < 0) {
3085 __free_page(pages[i]);
3086 break;
3087 }
3088 partial[i].offset = 0;
3089 partial[i].len = iter->seq.len;
3090
f9520750 3091 trace_seq_init(&iter->seq);
3c56819b
EGM
3092 }
3093
d7350c3f 3094 mutex_unlock(&iter->mutex);
3c56819b
EGM
3095
3096 spd.nr_pages = i;
3097
3098 return splice_to_pipe(pipe, &spd);
3099
34cd4998 3100out_err:
d7350c3f 3101 mutex_unlock(&iter->mutex);
3c56819b
EGM
3102
3103 return ret;
3104}
3105
a98a3c3f
SR
3106static ssize_t
3107tracing_entries_read(struct file *filp, char __user *ubuf,
3108 size_t cnt, loff_t *ppos)
3109{
3110 struct trace_array *tr = filp->private_data;
db526ca3 3111 char buf[96];
a98a3c3f
SR
3112 int r;
3113
db526ca3
SR
3114 mutex_lock(&trace_types_lock);
3115 if (!ring_buffer_expanded)
3116 r = sprintf(buf, "%lu (expanded: %lu)\n",
3117 tr->entries >> 10,
3118 trace_buf_size >> 10);
3119 else
3120 r = sprintf(buf, "%lu\n", tr->entries >> 10);
3121 mutex_unlock(&trace_types_lock);
3122
a98a3c3f
SR
3123 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3124}
3125
3126static ssize_t
3127tracing_entries_write(struct file *filp, const char __user *ubuf,
3128 size_t cnt, loff_t *ppos)
3129{
3130 unsigned long val;
3131 char buf[64];
bf5e6519 3132 int ret, cpu;
a98a3c3f 3133
cffae437
SR
3134 if (cnt >= sizeof(buf))
3135 return -EINVAL;
a98a3c3f
SR
3136
3137 if (copy_from_user(&buf, ubuf, cnt))
3138 return -EFAULT;
3139
3140 buf[cnt] = 0;
3141
c6caeeb1
SR
3142 ret = strict_strtoul(buf, 10, &val);
3143 if (ret < 0)
3144 return ret;
a98a3c3f
SR
3145
3146 /* must have at least 1 entry */
3147 if (!val)
3148 return -EINVAL;
3149
3150 mutex_lock(&trace_types_lock);
3151
c76f0694 3152 tracing_stop();
a98a3c3f 3153
bf5e6519
SR
3154 /* disable all cpu buffers */
3155 for_each_tracing_cpu(cpu) {
3156 if (global_trace.data[cpu])
3157 atomic_inc(&global_trace.data[cpu]->disabled);
3158 if (max_tr.data[cpu])
3159 atomic_inc(&max_tr.data[cpu]->disabled);
3160 }
3161
1696b2b0
SR
3162 /* value is in KB */
3163 val <<= 10;
3164
3928a8a2 3165 if (val != global_trace.entries) {
73c5162a 3166 ret = tracing_resize_ring_buffer(val);
3928a8a2
SR
3167 if (ret < 0) {
3168 cnt = ret;
3eefae99
SR
3169 goto out;
3170 }
a98a3c3f
SR
3171 }
3172
3173 filp->f_pos += cnt;
3174
19384c03
SR
3175 /* If check pages failed, return ENOMEM */
3176 if (tracing_disabled)
3177 cnt = -ENOMEM;
a98a3c3f 3178 out:
bf5e6519
SR
3179 for_each_tracing_cpu(cpu) {
3180 if (global_trace.data[cpu])
3181 atomic_dec(&global_trace.data[cpu]->disabled);
3182 if (max_tr.data[cpu])
3183 atomic_dec(&max_tr.data[cpu]->disabled);
3184 }
3185
c76f0694 3186 tracing_start();
a98a3c3f
SR
3187 max_tr.entries = global_trace.entries;
3188 mutex_unlock(&trace_types_lock);
3189
3190 return cnt;
3191}
3192
5bf9a1ee
PP
3193static int mark_printk(const char *fmt, ...)
3194{
3195 int ret;
3196 va_list args;
3197 va_start(args, fmt);
40ce74f1 3198 ret = trace_vprintk(0, fmt, args);
5bf9a1ee
PP
3199 va_end(args);
3200 return ret;
3201}
3202
3203static ssize_t
3204tracing_mark_write(struct file *filp, const char __user *ubuf,
3205 size_t cnt, loff_t *fpos)
3206{
3207 char *buf;
3208 char *end;
5bf9a1ee 3209
c76f0694 3210 if (tracing_disabled)
5bf9a1ee
PP
3211 return -EINVAL;
3212
3213 if (cnt > TRACE_BUF_SIZE)
3214 cnt = TRACE_BUF_SIZE;
3215
3216 buf = kmalloc(cnt + 1, GFP_KERNEL);
3217 if (buf == NULL)
3218 return -ENOMEM;
3219
3220 if (copy_from_user(buf, ubuf, cnt)) {
3221 kfree(buf);
3222 return -EFAULT;
3223 }
3224
3225 /* Cut from the first nil or newline. */
3226 buf[cnt] = '\0';
3227 end = strchr(buf, '\n');
3228 if (end)
3229 *end = '\0';
3230
3231 cnt = mark_printk("%s\n", buf);
3232 kfree(buf);
3233 *fpos += cnt;
3234
3235 return cnt;
3236}
3237
5e2336a0 3238static const struct file_operations tracing_max_lat_fops = {
4bf39a94
IM
3239 .open = tracing_open_generic,
3240 .read = tracing_max_lat_read,
3241 .write = tracing_max_lat_write,
bc0c38d1
SR
3242};
3243
5e2336a0 3244static const struct file_operations tracing_ctrl_fops = {
4bf39a94
IM
3245 .open = tracing_open_generic,
3246 .read = tracing_ctrl_read,
3247 .write = tracing_ctrl_write,
bc0c38d1
SR
3248};
3249
5e2336a0 3250static const struct file_operations set_tracer_fops = {
4bf39a94
IM
3251 .open = tracing_open_generic,
3252 .read = tracing_set_trace_read,
3253 .write = tracing_set_trace_write,
bc0c38d1
SR
3254};
3255
5e2336a0 3256static const struct file_operations tracing_pipe_fops = {
4bf39a94 3257 .open = tracing_open_pipe,
2a2cc8f7 3258 .poll = tracing_poll_pipe,
4bf39a94 3259 .read = tracing_read_pipe,
3c56819b 3260 .splice_read = tracing_splice_read_pipe,
4bf39a94 3261 .release = tracing_release_pipe,
b3806b43
SR
3262};
3263
5e2336a0 3264static const struct file_operations tracing_entries_fops = {
a98a3c3f
SR
3265 .open = tracing_open_generic,
3266 .read = tracing_entries_read,
3267 .write = tracing_entries_write,
3268};
3269
5e2336a0 3270static const struct file_operations tracing_mark_fops = {
43a15386 3271 .open = tracing_open_generic,
5bf9a1ee
PP
3272 .write = tracing_mark_write,
3273};
3274
2cadf913
SR
3275struct ftrace_buffer_info {
3276 struct trace_array *tr;
3277 void *spare;
3278 int cpu;
3279 unsigned int read;
3280};
3281
3282static int tracing_buffers_open(struct inode *inode, struct file *filp)
3283{
3284 int cpu = (int)(long)inode->i_private;
3285 struct ftrace_buffer_info *info;
3286
3287 if (tracing_disabled)
3288 return -ENODEV;
3289
3290 info = kzalloc(sizeof(*info), GFP_KERNEL);
3291 if (!info)
3292 return -ENOMEM;
3293
3294 info->tr = &global_trace;
3295 info->cpu = cpu;
ddd538f3 3296 info->spare = NULL;
2cadf913
SR
3297 /* Force reading ring buffer for first read */
3298 info->read = (unsigned int)-1;
2cadf913
SR
3299
3300 filp->private_data = info;
3301
d1e7e02f 3302 return nonseekable_open(inode, filp);
2cadf913
SR
3303}
3304
3305static ssize_t
3306tracing_buffers_read(struct file *filp, char __user *ubuf,
3307 size_t count, loff_t *ppos)
3308{
3309 struct ftrace_buffer_info *info = filp->private_data;
3310 unsigned int pos;
3311 ssize_t ret;
3312 size_t size;
3313
2dc5d12b
SR
3314 if (!count)
3315 return 0;
3316
ddd538f3
LJ
3317 if (!info->spare)
3318 info->spare = ring_buffer_alloc_read_page(info->tr->buffer);
3319 if (!info->spare)
3320 return -ENOMEM;
3321
2cadf913
SR
3322 /* Do we have previous read data to read? */
3323 if (info->read < PAGE_SIZE)
3324 goto read;
3325
3326 info->read = 0;
3327
3328 ret = ring_buffer_read_page(info->tr->buffer,
3329 &info->spare,
3330 count,
3331 info->cpu, 0);
3332 if (ret < 0)
3333 return 0;
3334
3335 pos = ring_buffer_page_len(info->spare);
3336
3337 if (pos < PAGE_SIZE)
3338 memset(info->spare + pos, 0, PAGE_SIZE - pos);
3339
3340read:
3341 size = PAGE_SIZE - info->read;
3342 if (size > count)
3343 size = count;
3344
3345 ret = copy_to_user(ubuf, info->spare + info->read, size);
2dc5d12b 3346 if (ret == size)
2cadf913 3347 return -EFAULT;
2dc5d12b
SR
3348 size -= ret;
3349
2cadf913
SR
3350 *ppos += size;
3351 info->read += size;
3352
3353 return size;
3354}
3355
3356static int tracing_buffers_release(struct inode *inode, struct file *file)
3357{
3358 struct ftrace_buffer_info *info = file->private_data;
3359
ddd538f3
LJ
3360 if (info->spare)
3361 ring_buffer_free_read_page(info->tr->buffer, info->spare);
2cadf913
SR
3362 kfree(info);
3363
3364 return 0;
3365}
3366
3367struct buffer_ref {
3368 struct ring_buffer *buffer;
3369 void *page;
3370 int ref;
3371};
3372
3373static void buffer_pipe_buf_release(struct pipe_inode_info *pipe,
3374 struct pipe_buffer *buf)
3375{
3376 struct buffer_ref *ref = (struct buffer_ref *)buf->private;
3377
3378 if (--ref->ref)
3379 return;
3380
3381 ring_buffer_free_read_page(ref->buffer, ref->page);
3382 kfree(ref);
3383 buf->private = 0;
3384}
3385
3386static int buffer_pipe_buf_steal(struct pipe_inode_info *pipe,
3387 struct pipe_buffer *buf)
3388{
3389 return 1;
3390}
3391
3392static void buffer_pipe_buf_get(struct pipe_inode_info *pipe,
3393 struct pipe_buffer *buf)
3394{
3395 struct buffer_ref *ref = (struct buffer_ref *)buf->private;
3396
3397 ref->ref++;
3398}
3399
3400/* Pipe buffer operations for a buffer. */
3401static struct pipe_buf_operations buffer_pipe_buf_ops = {
3402 .can_merge = 0,
3403 .map = generic_pipe_buf_map,
3404 .unmap = generic_pipe_buf_unmap,
3405 .confirm = generic_pipe_buf_confirm,
3406 .release = buffer_pipe_buf_release,
3407 .steal = buffer_pipe_buf_steal,
3408 .get = buffer_pipe_buf_get,
3409};
3410
3411/*
3412 * Callback from splice_to_pipe(), if we need to release some pages
3413 * at the end of the spd in case we error'ed out in filling the pipe.
3414 */
3415static void buffer_spd_release(struct splice_pipe_desc *spd, unsigned int i)
3416{
3417 struct buffer_ref *ref =
3418 (struct buffer_ref *)spd->partial[i].private;
3419
3420 if (--ref->ref)
3421 return;
3422
3423 ring_buffer_free_read_page(ref->buffer, ref->page);
3424 kfree(ref);
3425 spd->partial[i].private = 0;
3426}
3427
3428static ssize_t
3429tracing_buffers_splice_read(struct file *file, loff_t *ppos,
3430 struct pipe_inode_info *pipe, size_t len,
3431 unsigned int flags)
3432{
3433 struct ftrace_buffer_info *info = file->private_data;
3434 struct partial_page partial[PIPE_BUFFERS];
3435 struct page *pages[PIPE_BUFFERS];
3436 struct splice_pipe_desc spd = {
3437 .pages = pages,
3438 .partial = partial,
3439 .flags = flags,
3440 .ops = &buffer_pipe_buf_ops,
3441 .spd_release = buffer_spd_release,
3442 };
3443 struct buffer_ref *ref;
3444 int size, i;
3445 size_t ret;
3446
93cfb3c9
LJ
3447 if (*ppos & (PAGE_SIZE - 1)) {
3448 WARN_ONCE(1, "Ftrace: previous read must page-align\n");
3449 return -EINVAL;
3450 }
2cadf913 3451
93cfb3c9
LJ
3452 if (len & (PAGE_SIZE - 1)) {
3453 WARN_ONCE(1, "Ftrace: splice_read should page-align\n");
3454 if (len < PAGE_SIZE)
3455 return -EINVAL;
3456 len &= PAGE_MASK;
3457 }
2cadf913 3458
93cfb3c9 3459 for (i = 0; i < PIPE_BUFFERS && len; i++, len -= PAGE_SIZE) {
2cadf913
SR
3460 struct page *page;
3461 int r;
3462
3463 ref = kzalloc(sizeof(*ref), GFP_KERNEL);
3464 if (!ref)
3465 break;
3466
3467 ref->buffer = info->tr->buffer;
3468 ref->page = ring_buffer_alloc_read_page(ref->buffer);
3469 if (!ref->page) {
3470 kfree(ref);
3471 break;
3472 }
3473
3474 r = ring_buffer_read_page(ref->buffer, &ref->page,
3475 len, info->cpu, 0);
3476 if (r < 0) {
3477 ring_buffer_free_read_page(ref->buffer,
3478 ref->page);
3479 kfree(ref);
3480 break;
3481 }
3482
3483 /*
3484 * zero out any left over data, this is going to
3485 * user land.
3486 */
3487 size = ring_buffer_page_len(ref->page);
3488 if (size < PAGE_SIZE)
3489 memset(ref->page + size, 0, PAGE_SIZE - size);
3490
3491 page = virt_to_page(ref->page);
3492
3493 spd.pages[i] = page;
3494 spd.partial[i].len = PAGE_SIZE;
3495 spd.partial[i].offset = 0;
3496 spd.partial[i].private = (unsigned long)ref;
3497 spd.nr_pages++;
93cfb3c9 3498 *ppos += PAGE_SIZE;
2cadf913
SR
3499 }
3500
3501 spd.nr_pages = i;
3502
3503 /* did we read anything? */
3504 if (!spd.nr_pages) {
3505 if (flags & SPLICE_F_NONBLOCK)
3506 ret = -EAGAIN;
3507 else
3508 ret = 0;
3509 /* TODO: block */
3510 return ret;
3511 }
3512
3513 ret = splice_to_pipe(pipe, &spd);
3514
3515 return ret;
3516}
3517
3518static const struct file_operations tracing_buffers_fops = {
3519 .open = tracing_buffers_open,
3520 .read = tracing_buffers_read,
3521 .release = tracing_buffers_release,
3522 .splice_read = tracing_buffers_splice_read,
3523 .llseek = no_llseek,
3524};
3525
bc0c38d1
SR
3526#ifdef CONFIG_DYNAMIC_FTRACE
3527
b807c3d0
SR
3528int __weak ftrace_arch_read_dyn_info(char *buf, int size)
3529{
3530 return 0;
3531}
3532
bc0c38d1 3533static ssize_t
b807c3d0 3534tracing_read_dyn_info(struct file *filp, char __user *ubuf,
bc0c38d1
SR
3535 size_t cnt, loff_t *ppos)
3536{
a26a2a27
SR
3537 static char ftrace_dyn_info_buffer[1024];
3538 static DEFINE_MUTEX(dyn_info_mutex);
bc0c38d1 3539 unsigned long *p = filp->private_data;
b807c3d0 3540 char *buf = ftrace_dyn_info_buffer;
a26a2a27 3541 int size = ARRAY_SIZE(ftrace_dyn_info_buffer);
bc0c38d1
SR
3542 int r;
3543
b807c3d0
SR
3544 mutex_lock(&dyn_info_mutex);
3545 r = sprintf(buf, "%ld ", *p);
4bf39a94 3546
a26a2a27 3547 r += ftrace_arch_read_dyn_info(buf+r, (size-1)-r);
b807c3d0
SR
3548 buf[r++] = '\n';
3549
3550 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
3551
3552 mutex_unlock(&dyn_info_mutex);
3553
3554 return r;
bc0c38d1
SR
3555}
3556
5e2336a0 3557static const struct file_operations tracing_dyn_info_fops = {
4bf39a94 3558 .open = tracing_open_generic,
b807c3d0 3559 .read = tracing_read_dyn_info,
bc0c38d1
SR
3560};
3561#endif
3562
3563static struct dentry *d_tracer;
3564
3565struct dentry *tracing_init_dentry(void)
3566{
3567 static int once;
3568
3569 if (d_tracer)
3570 return d_tracer;
3571
3e1f60b8
FW
3572 if (!debugfs_initialized())
3573 return NULL;
3574
bc0c38d1
SR
3575 d_tracer = debugfs_create_dir("tracing", NULL);
3576
3577 if (!d_tracer && !once) {
3578 once = 1;
3579 pr_warning("Could not create debugfs directory 'tracing'\n");
3580 return NULL;
3581 }
3582
3583 return d_tracer;
3584}
3585
b04cc6b1
FW
3586static struct dentry *d_percpu;
3587
3588struct dentry *tracing_dentry_percpu(void)
3589{
3590 static int once;
3591 struct dentry *d_tracer;
3592
3593 if (d_percpu)
3594 return d_percpu;
3595
3596 d_tracer = tracing_init_dentry();
3597
3598 if (!d_tracer)
3599 return NULL;
3600
3601 d_percpu = debugfs_create_dir("per_cpu", d_tracer);
3602
3603 if (!d_percpu && !once) {
3604 once = 1;
3605 pr_warning("Could not create debugfs directory 'per_cpu'\n");
3606 return NULL;
3607 }
3608
3609 return d_percpu;
3610}
3611
3612static void tracing_init_debugfs_percpu(long cpu)
3613{
3614 struct dentry *d_percpu = tracing_dentry_percpu();
5452af66 3615 struct dentry *d_cpu;
8656e7a2
FW
3616 /* strlen(cpu) + MAX(log10(cpu)) + '\0' */
3617 char cpu_dir[7];
b04cc6b1
FW
3618
3619 if (cpu > 999 || cpu < 0)
3620 return;
3621
8656e7a2
FW
3622 sprintf(cpu_dir, "cpu%ld", cpu);
3623 d_cpu = debugfs_create_dir(cpu_dir, d_percpu);
3624 if (!d_cpu) {
3625 pr_warning("Could not create debugfs '%s' entry\n", cpu_dir);
3626 return;
3627 }
b04cc6b1 3628
8656e7a2 3629 /* per cpu trace_pipe */
5452af66
FW
3630 trace_create_file("trace_pipe", 0444, d_cpu,
3631 (void *) cpu, &tracing_pipe_fops);
b04cc6b1
FW
3632
3633 /* per cpu trace */
5452af66
FW
3634 trace_create_file("trace", 0644, d_cpu,
3635 (void *) cpu, &tracing_fops);
7f96f93f 3636
5452af66
FW
3637 trace_create_file("trace_pipe_raw", 0444, d_cpu,
3638 (void *) cpu, &tracing_buffers_fops);
b04cc6b1
FW
3639}
3640
60a11774
SR
3641#ifdef CONFIG_FTRACE_SELFTEST
3642/* Let selftest have access to static functions in this file */
3643#include "trace_selftest.c"
3644#endif
3645
577b785f
SR
3646struct trace_option_dentry {
3647 struct tracer_opt *opt;
3648 struct tracer_flags *flags;
3649 struct dentry *entry;
3650};
3651
3652static ssize_t
3653trace_options_read(struct file *filp, char __user *ubuf, size_t cnt,
3654 loff_t *ppos)
3655{
3656 struct trace_option_dentry *topt = filp->private_data;
3657 char *buf;
3658
3659 if (topt->flags->val & topt->opt->bit)
3660 buf = "1\n";
3661 else
3662 buf = "0\n";
3663
3664 return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
3665}
3666
3667static ssize_t
3668trace_options_write(struct file *filp, const char __user *ubuf, size_t cnt,
3669 loff_t *ppos)
3670{
3671 struct trace_option_dentry *topt = filp->private_data;
3672 unsigned long val;
3673 char buf[64];
3674 int ret;
3675
3676 if (cnt >= sizeof(buf))
3677 return -EINVAL;
3678
3679 if (copy_from_user(&buf, ubuf, cnt))
3680 return -EFAULT;
3681
3682 buf[cnt] = 0;
3683
3684 ret = strict_strtoul(buf, 10, &val);
3685 if (ret < 0)
3686 return ret;
3687
3688 ret = 0;
3689 switch (val) {
3690 case 0:
3691 /* do nothing if already cleared */
3692 if (!(topt->flags->val & topt->opt->bit))
3693 break;
3694
3695 mutex_lock(&trace_types_lock);
3696 if (current_trace->set_flag)
3697 ret = current_trace->set_flag(topt->flags->val,
3698 topt->opt->bit, 0);
3699 mutex_unlock(&trace_types_lock);
3700 if (ret)
3701 return ret;
3702 topt->flags->val &= ~topt->opt->bit;
3703 break;
3704 case 1:
3705 /* do nothing if already set */
3706 if (topt->flags->val & topt->opt->bit)
3707 break;
3708
3709 mutex_lock(&trace_types_lock);
3710 if (current_trace->set_flag)
3711 ret = current_trace->set_flag(topt->flags->val,
3712 topt->opt->bit, 1);
3713 mutex_unlock(&trace_types_lock);
3714 if (ret)
3715 return ret;
3716 topt->flags->val |= topt->opt->bit;
3717 break;
3718
3719 default:
3720 return -EINVAL;
3721 }
3722
3723 *ppos += cnt;
3724
3725 return cnt;
3726}
3727
3728
3729static const struct file_operations trace_options_fops = {
3730 .open = tracing_open_generic,
3731 .read = trace_options_read,
3732 .write = trace_options_write,
3733};
3734
a8259075
SR
3735static ssize_t
3736trace_options_core_read(struct file *filp, char __user *ubuf, size_t cnt,
3737 loff_t *ppos)
3738{
3739 long index = (long)filp->private_data;
3740 char *buf;
3741
3742 if (trace_flags & (1 << index))
3743 buf = "1\n";
3744 else
3745 buf = "0\n";
3746
3747 return simple_read_from_buffer(ubuf, cnt, ppos, buf, 2);
3748}
3749
3750static ssize_t
3751trace_options_core_write(struct file *filp, const char __user *ubuf, size_t cnt,
3752 loff_t *ppos)
3753{
3754 long index = (long)filp->private_data;
3755 char buf[64];
3756 unsigned long val;
3757 int ret;
3758
3759 if (cnt >= sizeof(buf))
3760 return -EINVAL;
3761
3762 if (copy_from_user(&buf, ubuf, cnt))
3763 return -EFAULT;
3764
3765 buf[cnt] = 0;
3766
3767 ret = strict_strtoul(buf, 10, &val);
3768 if (ret < 0)
3769 return ret;
3770
3771 switch (val) {
3772 case 0:
3773 trace_flags &= ~(1 << index);
3774 break;
3775 case 1:
3776 trace_flags |= 1 << index;
3777 break;
3778
3779 default:
3780 return -EINVAL;
3781 }
3782
3783 *ppos += cnt;
3784
3785 return cnt;
3786}
3787
a8259075
SR
3788static const struct file_operations trace_options_core_fops = {
3789 .open = tracing_open_generic,
3790 .read = trace_options_core_read,
3791 .write = trace_options_core_write,
3792};
3793
5452af66
FW
3794struct dentry *trace_create_file(const char *name,
3795 mode_t mode,
3796 struct dentry *parent,
3797 void *data,
3798 const struct file_operations *fops)
3799{
3800 struct dentry *ret;
3801
3802 ret = debugfs_create_file(name, mode, parent, data, fops);
3803 if (!ret)
3804 pr_warning("Could not create debugfs '%s' entry\n", name);
3805
3806 return ret;
3807}
3808
3809
a8259075
SR
3810static struct dentry *trace_options_init_dentry(void)
3811{
3812 struct dentry *d_tracer;
3813 static struct dentry *t_options;
3814
3815 if (t_options)
3816 return t_options;
3817
3818 d_tracer = tracing_init_dentry();
3819 if (!d_tracer)
3820 return NULL;
3821
3822 t_options = debugfs_create_dir("options", d_tracer);
3823 if (!t_options) {
3824 pr_warning("Could not create debugfs directory 'options'\n");
3825 return NULL;
3826 }
3827
3828 return t_options;
3829}
3830
577b785f
SR
3831static void
3832create_trace_option_file(struct trace_option_dentry *topt,
3833 struct tracer_flags *flags,
3834 struct tracer_opt *opt)
3835{
3836 struct dentry *t_options;
577b785f
SR
3837
3838 t_options = trace_options_init_dentry();
3839 if (!t_options)
3840 return;
3841
3842 topt->flags = flags;
3843 topt->opt = opt;
3844
5452af66 3845 topt->entry = trace_create_file(opt->name, 0644, t_options, topt,
577b785f
SR
3846 &trace_options_fops);
3847
577b785f
SR
3848}
3849
3850static struct trace_option_dentry *
3851create_trace_option_files(struct tracer *tracer)
3852{
3853 struct trace_option_dentry *topts;
3854 struct tracer_flags *flags;
3855 struct tracer_opt *opts;
3856 int cnt;
3857
3858 if (!tracer)
3859 return NULL;
3860
3861 flags = tracer->flags;
3862
3863 if (!flags || !flags->opts)
3864 return NULL;
3865
3866 opts = flags->opts;
3867
3868 for (cnt = 0; opts[cnt].name; cnt++)
3869 ;
3870
0cfe8245 3871 topts = kcalloc(cnt + 1, sizeof(*topts), GFP_KERNEL);
577b785f
SR
3872 if (!topts)
3873 return NULL;
3874
3875 for (cnt = 0; opts[cnt].name; cnt++)
3876 create_trace_option_file(&topts[cnt], flags,
3877 &opts[cnt]);
3878
3879 return topts;
3880}
3881
3882static void
3883destroy_trace_option_files(struct trace_option_dentry *topts)
3884{
3885 int cnt;
3886
3887 if (!topts)
3888 return;
3889
3890 for (cnt = 0; topts[cnt].opt; cnt++) {
3891 if (topts[cnt].entry)
3892 debugfs_remove(topts[cnt].entry);
3893 }
3894
3895 kfree(topts);
3896}
3897
a8259075
SR
3898static struct dentry *
3899create_trace_option_core_file(const char *option, long index)
3900{
3901 struct dentry *t_options;
a8259075
SR
3902
3903 t_options = trace_options_init_dentry();
3904 if (!t_options)
3905 return NULL;
3906
5452af66 3907 return trace_create_file(option, 0644, t_options, (void *)index,
a8259075 3908 &trace_options_core_fops);
a8259075
SR
3909}
3910
3911static __init void create_trace_options_dir(void)
3912{
3913 struct dentry *t_options;
a8259075
SR
3914 int i;
3915
3916 t_options = trace_options_init_dentry();
3917 if (!t_options)
3918 return;
3919
5452af66
FW
3920 for (i = 0; trace_options[i]; i++)
3921 create_trace_option_core_file(trace_options[i], i);
a8259075
SR
3922}
3923
b5ad384e 3924static __init int tracer_init_debugfs(void)
bc0c38d1
SR
3925{
3926 struct dentry *d_tracer;
b04cc6b1 3927 int cpu;
bc0c38d1
SR
3928
3929 d_tracer = tracing_init_dentry();
3930
5452af66
FW
3931 trace_create_file("tracing_enabled", 0644, d_tracer,
3932 &global_trace, &tracing_ctrl_fops);
bc0c38d1 3933
5452af66
FW
3934 trace_create_file("trace_options", 0644, d_tracer,
3935 NULL, &tracing_iter_fops);
bc0c38d1 3936
5452af66
FW
3937 trace_create_file("tracing_cpumask", 0644, d_tracer,
3938 NULL, &tracing_cpumask_fops);
3939
3940 trace_create_file("trace", 0644, d_tracer,
3941 (void *) TRACE_PIPE_ALL_CPU, &tracing_fops);
3942
3943 trace_create_file("available_tracers", 0444, d_tracer,
3944 &global_trace, &show_traces_fops);
3945
3946 trace_create_file("current_tracer", 0444, d_tracer,
3947 &global_trace, &set_tracer_fops);
3948
3949 trace_create_file("tracing_max_latency", 0644, d_tracer,
3950 &tracing_max_latency, &tracing_max_lat_fops);
3951
3952 trace_create_file("tracing_thresh", 0644, d_tracer,
3953 &tracing_thresh, &tracing_max_lat_fops);
a8259075 3954
5452af66
FW
3955 trace_create_file("README", 0644, d_tracer,
3956 NULL, &tracing_readme_fops);
3957
3958 trace_create_file("trace_pipe", 0444, d_tracer,
b04cc6b1 3959 (void *) TRACE_PIPE_ALL_CPU, &tracing_pipe_fops);
5452af66
FW
3960
3961 trace_create_file("buffer_size_kb", 0644, d_tracer,
3962 &global_trace, &tracing_entries_fops);
3963
3964 trace_create_file("trace_marker", 0220, d_tracer,
3965 NULL, &tracing_mark_fops);
5bf9a1ee 3966
bc0c38d1 3967#ifdef CONFIG_DYNAMIC_FTRACE
5452af66
FW
3968 trace_create_file("dyn_ftrace_total_info", 0444, d_tracer,
3969 &ftrace_update_tot_cnt, &tracing_dyn_info_fops);
bc0c38d1 3970#endif
d618b3e6
IM
3971#ifdef CONFIG_SYSPROF_TRACER
3972 init_tracer_sysprof_debugfs(d_tracer);
3973#endif
b04cc6b1 3974
5452af66
FW
3975 create_trace_options_dir();
3976
b04cc6b1
FW
3977 for_each_tracing_cpu(cpu)
3978 tracing_init_debugfs_percpu(cpu);
3979
b5ad384e 3980 return 0;
bc0c38d1
SR
3981}
3982
3f5a54e3
SR
3983static int trace_panic_handler(struct notifier_block *this,
3984 unsigned long event, void *unused)
3985{
944ac425
SR
3986 if (ftrace_dump_on_oops)
3987 ftrace_dump();
3f5a54e3
SR
3988 return NOTIFY_OK;
3989}
3990
3991static struct notifier_block trace_panic_notifier = {
3992 .notifier_call = trace_panic_handler,
3993 .next = NULL,
3994 .priority = 150 /* priority: INT_MAX >= x >= 0 */
3995};
3996
3997static int trace_die_handler(struct notifier_block *self,
3998 unsigned long val,
3999 void *data)
4000{
4001 switch (val) {
4002 case DIE_OOPS:
944ac425
SR
4003 if (ftrace_dump_on_oops)
4004 ftrace_dump();
3f5a54e3
SR
4005 break;
4006 default:
4007 break;
4008 }
4009 return NOTIFY_OK;
4010}
4011
4012static struct notifier_block trace_die_notifier = {
4013 .notifier_call = trace_die_handler,
4014 .priority = 200
4015};
4016
4017/*
4018 * printk is set to max of 1024, we really don't need it that big.
4019 * Nothing should be printing 1000 characters anyway.
4020 */
4021#define TRACE_MAX_PRINT 1000
4022
4023/*
4024 * Define here KERN_TRACE so that we have one place to modify
4025 * it if we decide to change what log level the ftrace dump
4026 * should be at.
4027 */
428aee14 4028#define KERN_TRACE KERN_EMERG
3f5a54e3
SR
4029
4030static void
4031trace_printk_seq(struct trace_seq *s)
4032{
4033 /* Probably should print a warning here. */
4034 if (s->len >= 1000)
4035 s->len = 1000;
4036
4037 /* should be zero ended, but we are paranoid. */
4038 s->buffer[s->len] = 0;
4039
4040 printk(KERN_TRACE "%s", s->buffer);
4041
f9520750 4042 trace_seq_init(s);
3f5a54e3
SR
4043}
4044
cf586b61 4045static void __ftrace_dump(bool disable_tracing)
3f5a54e3
SR
4046{
4047 static DEFINE_SPINLOCK(ftrace_dump_lock);
4048 /* use static because iter can be a bit big for the stack */
4049 static struct trace_iterator iter;
cf586b61 4050 unsigned int old_userobj;
3f5a54e3 4051 static int dump_ran;
d769041f
SR
4052 unsigned long flags;
4053 int cnt = 0, cpu;
3f5a54e3
SR
4054
4055 /* only one dump */
4056 spin_lock_irqsave(&ftrace_dump_lock, flags);
4057 if (dump_ran)
4058 goto out;
4059
4060 dump_ran = 1;
4061
0ee6b6cf 4062 tracing_off();
cf586b61
FW
4063
4064 if (disable_tracing)
4065 ftrace_kill();
3f5a54e3 4066
d769041f
SR
4067 for_each_tracing_cpu(cpu) {
4068 atomic_inc(&global_trace.data[cpu]->disabled);
4069 }
4070
cf586b61
FW
4071 old_userobj = trace_flags & TRACE_ITER_SYM_USEROBJ;
4072
b54d3de9
TE
4073 /* don't look at user memory in panic mode */
4074 trace_flags &= ~TRACE_ITER_SYM_USEROBJ;
4075
3f5a54e3
SR
4076 printk(KERN_TRACE "Dumping ftrace buffer:\n");
4077
e543ad76 4078 /* Simulate the iterator */
3f5a54e3
SR
4079 iter.tr = &global_trace;
4080 iter.trace = current_trace;
e543ad76 4081 iter.cpu_file = TRACE_PIPE_ALL_CPU;
3f5a54e3
SR
4082
4083 /*
4084 * We need to stop all tracing on all CPUS to read the
4085 * the next buffer. This is a bit expensive, but is
4086 * not done often. We fill all what we can read,
4087 * and then release the locks again.
4088 */
4089
3f5a54e3
SR
4090 while (!trace_empty(&iter)) {
4091
4092 if (!cnt)
4093 printk(KERN_TRACE "---------------------------------\n");
4094
4095 cnt++;
4096
4097 /* reset all but tr, trace, and overruns */
4098 memset(&iter.seq, 0,
4099 sizeof(struct trace_iterator) -
4100 offsetof(struct trace_iterator, seq));
4101 iter.iter_flags |= TRACE_FILE_LAT_FMT;
4102 iter.pos = -1;
4103
4104 if (find_next_entry_inc(&iter) != NULL) {
4105 print_trace_line(&iter);
4106 trace_consume(&iter);
4107 }
4108
4109 trace_printk_seq(&iter.seq);
4110 }
4111
4112 if (!cnt)
4113 printk(KERN_TRACE " (ftrace buffer empty)\n");
4114 else
4115 printk(KERN_TRACE "---------------------------------\n");
4116
cf586b61
FW
4117 /* Re-enable tracing if requested */
4118 if (!disable_tracing) {
4119 trace_flags |= old_userobj;
4120
4121 for_each_tracing_cpu(cpu) {
4122 atomic_dec(&global_trace.data[cpu]->disabled);
4123 }
4124 tracing_on();
4125 }
4126
3f5a54e3
SR
4127 out:
4128 spin_unlock_irqrestore(&ftrace_dump_lock, flags);
4129}
4130
cf586b61
FW
4131/* By default: disable tracing after the dump */
4132void ftrace_dump(void)
4133{
4134 __ftrace_dump(true);
4135}
4136
3928a8a2 4137__init static int tracer_alloc_buffers(void)
bc0c38d1 4138{
4c11d7ae 4139 struct trace_array_cpu *data;
73c5162a 4140 int ring_buf_size;
4c11d7ae 4141 int i;
9e01c1b7 4142 int ret = -ENOMEM;
4c11d7ae 4143
9e01c1b7
RR
4144 if (!alloc_cpumask_var(&tracing_buffer_mask, GFP_KERNEL))
4145 goto out;
4146
4147 if (!alloc_cpumask_var(&tracing_cpumask, GFP_KERNEL))
4148 goto out_free_buffer_mask;
4c11d7ae 4149
b04cc6b1
FW
4150 if (!alloc_cpumask_var(&tracing_reader_cpumask, GFP_KERNEL))
4151 goto out_free_tracing_cpumask;
4152
73c5162a
SR
4153 /* To save memory, keep the ring buffer size to its minimum */
4154 if (ring_buffer_expanded)
4155 ring_buf_size = trace_buf_size;
4156 else
4157 ring_buf_size = 1;
4158
9e01c1b7
RR
4159 cpumask_copy(tracing_buffer_mask, cpu_possible_mask);
4160 cpumask_copy(tracing_cpumask, cpu_all_mask);
b04cc6b1 4161 cpumask_clear(tracing_reader_cpumask);
9e01c1b7
RR
4162
4163 /* TODO: make the number of buffers hot pluggable with CPUS */
73c5162a 4164 global_trace.buffer = ring_buffer_alloc(ring_buf_size,
3928a8a2
SR
4165 TRACE_BUFFER_FLAGS);
4166 if (!global_trace.buffer) {
4167 printk(KERN_ERR "tracer: failed to allocate ring buffer!\n");
4168 WARN_ON(1);
9e01c1b7 4169 goto out_free_cpumask;
4c11d7ae 4170 }
3928a8a2 4171 global_trace.entries = ring_buffer_size(global_trace.buffer);
4c11d7ae 4172
9e01c1b7 4173
4c11d7ae 4174#ifdef CONFIG_TRACER_MAX_TRACE
73c5162a 4175 max_tr.buffer = ring_buffer_alloc(ring_buf_size,
3928a8a2
SR
4176 TRACE_BUFFER_FLAGS);
4177 if (!max_tr.buffer) {
4178 printk(KERN_ERR "tracer: failed to allocate max ring buffer!\n");
4179 WARN_ON(1);
4180 ring_buffer_free(global_trace.buffer);
9e01c1b7 4181 goto out_free_cpumask;
4c11d7ae 4182 }
3928a8a2
SR
4183 max_tr.entries = ring_buffer_size(max_tr.buffer);
4184 WARN_ON(max_tr.entries != global_trace.entries);
a98a3c3f 4185#endif
ab46428c 4186
4c11d7ae 4187 /* Allocate the first page for all buffers */
ab46428c 4188 for_each_tracing_cpu(i) {
4c11d7ae 4189 data = global_trace.data[i] = &per_cpu(global_trace_cpu, i);
bc0c38d1 4190 max_tr.data[i] = &per_cpu(max_data, i);
4c11d7ae 4191 }
bc0c38d1 4192
bc0c38d1
SR
4193 trace_init_cmdlines();
4194
43a15386 4195 register_tracer(&nop_trace);
79fb0768 4196 current_trace = &nop_trace;
b5ad384e
FW
4197#ifdef CONFIG_BOOT_TRACER
4198 register_tracer(&boot_tracer);
b5ad384e 4199#endif
60a11774
SR
4200 /* All seems OK, enable tracing */
4201 tracing_disabled = 0;
3928a8a2 4202
3f5a54e3
SR
4203 atomic_notifier_chain_register(&panic_notifier_list,
4204 &trace_panic_notifier);
4205
4206 register_die_notifier(&trace_die_notifier);
2fc1dfbe
FW
4207
4208 return 0;
3f5a54e3 4209
9e01c1b7 4210out_free_cpumask:
b04cc6b1
FW
4211 free_cpumask_var(tracing_reader_cpumask);
4212out_free_tracing_cpumask:
9e01c1b7
RR
4213 free_cpumask_var(tracing_cpumask);
4214out_free_buffer_mask:
4215 free_cpumask_var(tracing_buffer_mask);
4216out:
4217 return ret;
bc0c38d1 4218}
b2821ae6
SR
4219
4220__init static int clear_boot_tracer(void)
4221{
4222 /*
4223 * The default tracer at boot buffer is an init section.
4224 * This function is called in lateinit. If we did not
4225 * find the boot tracer, then clear it out, to prevent
4226 * later registration from accessing the buffer that is
4227 * about to be freed.
4228 */
4229 if (!default_bootup_tracer)
4230 return 0;
4231
4232 printk(KERN_INFO "ftrace bootup tracer '%s' not registered.\n",
4233 default_bootup_tracer);
4234 default_bootup_tracer = NULL;
4235
4236 return 0;
4237}
4238
b5ad384e
FW
4239early_initcall(tracer_alloc_buffers);
4240fs_initcall(tracer_init_debugfs);
b2821ae6 4241late_initcall(clear_boot_tracer);
This page took 0.37744 seconds and 5 git commands to generate.