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