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