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