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