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