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