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