]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - kernel/trace/trace.c
ring_buffer: implement new locking
[mirror_ubuntu-bionic-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
38 #include "trace.h"
39
40 #define TRACE_BUFFER_FLAGS (RB_FL_OVERWRITE)
41
42 unsigned long __read_mostly tracing_max_latency = (cycle_t)ULONG_MAX;
43 unsigned long __read_mostly tracing_thresh;
44
45 static DEFINE_PER_CPU(local_t, ftrace_cpu_disabled);
46
47 static inline void ftrace_disable_cpu(void)
48 {
49 preempt_disable();
50 local_inc(&__get_cpu_var(ftrace_cpu_disabled));
51 }
52
53 static inline void ftrace_enable_cpu(void)
54 {
55 local_dec(&__get_cpu_var(ftrace_cpu_disabled));
56 preempt_enable();
57 }
58
59 static 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
64 static int tracing_disabled = 1;
65
66 long
67 ns2usecs(cycle_t nsec)
68 {
69 nsec += 500;
70 do_div(nsec, 1000);
71 return nsec;
72 }
73
74 cycle_t ftrace_now(int cpu)
75 {
76 u64 ts = ring_buffer_time_stamp(cpu);
77 ring_buffer_normalize_time_stamp(cpu, &ts);
78 return ts;
79 }
80
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 */
93 static struct trace_array global_trace;
94
95 static DEFINE_PER_CPU(struct trace_array_cpu, global_trace_cpu);
96
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 */
107 static struct trace_array max_tr;
108
109 static DEFINE_PER_CPU(struct trace_array_cpu, max_data);
110
111 /* tracer_enabled is used to toggle activation of a tracer */
112 static int tracer_enabled = 1;
113
114 /* function tracing enabled */
115 int ftrace_function_enabled;
116
117 /*
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.
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.
126 */
127 #define TRACE_BUF_SIZE_DEFAULT 1441792UL /* 16384 * 88 (sizeof(entry)) */
128
129 static unsigned long trace_buf_size = TRACE_BUF_SIZE_DEFAULT;
130
131 /* trace_types holds a link list of available tracers. */
132 static struct tracer *trace_types __read_mostly;
133
134 /* current_trace points to the tracer that is currently active */
135 static struct tracer *current_trace __read_mostly;
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 */
142 static int max_tracer_type_len;
143
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 */
150 static DEFINE_MUTEX(trace_types_lock);
151
152 /* trace_wait is a waitqueue for tasks blocked on trace_poll */
153 static DECLARE_WAIT_QUEUE_HEAD(trace_wait);
154
155 /* trace_flags holds iter_ctrl options */
156 unsigned long trace_flags = TRACE_ITER_PRINT_PARENT;
157
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 */
164 void trace_wake_up(void)
165 {
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())
171 wake_up(&trace_wait);
172 }
173
174 static int __init set_buf_size(char *str)
175 {
176 unsigned long buf_size;
177 int ret;
178
179 if (!str)
180 return 0;
181 ret = strict_strtoul(str, 0, &buf_size);
182 /* nr_entries can not be zero */
183 if (ret < 0 || buf_size == 0)
184 return 0;
185 trace_buf_size = buf_size;
186 return 1;
187 }
188 __setup("trace_buf_size=", set_buf_size);
189
190 unsigned long nsecs_to_usecs(unsigned long nsecs)
191 {
192 return nsecs / 1000;
193 }
194
195 /*
196 * TRACE_ITER_SYM_MASK masks the options in trace_flags that
197 * control the output of kernel symbols.
198 */
199 #define TRACE_ITER_SYM_MASK \
200 (TRACE_ITER_PRINT_PARENT|TRACE_ITER_SYM_OFFSET|TRACE_ITER_SYM_ADDR)
201
202 /* These must match the bit postions in trace_iterator_flags */
203 static const char *trace_options[] = {
204 "print-parent",
205 "sym-offset",
206 "sym-addr",
207 "verbose",
208 "raw",
209 "hex",
210 "bin",
211 "block",
212 "stacktrace",
213 "sched-tree",
214 "ftrace_printk",
215 NULL
216 };
217
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 */
227 static raw_spinlock_t ftrace_max_lock =
228 (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
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 */
235 static void
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
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 */
268 int
269 trace_seq_printf(struct trace_seq *s, const char *fmt, ...)
270 {
271 int len = (PAGE_SIZE - 1) - s->len;
272 va_list ap;
273 int ret;
274
275 if (!len)
276 return 0;
277
278 va_start(ap, fmt);
279 ret = vsnprintf(s->buffer + s->len, len, fmt, ap);
280 va_end(ap);
281
282 /* If we can't write it all, don't bother writing anything */
283 if (ret >= len)
284 return 0;
285
286 s->len += ret;
287
288 return len;
289 }
290
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 */
301 static int
302 trace_seq_puts(struct trace_seq *s, const char *str)
303 {
304 int len = strlen(str);
305
306 if (len > ((PAGE_SIZE - 1) - s->len))
307 return 0;
308
309 memcpy(s->buffer + s->len, str, len);
310 s->len += len;
311
312 return len;
313 }
314
315 static int
316 trace_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
326 static int
327 trace_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
338 #define HEX_CHARS 17
339 static const char hex2asc[] = "0123456789abcdef";
340
341 static int
342 trace_seq_putmem_hex(struct trace_seq *s, void *mem, size_t len)
343 {
344 unsigned char hex[HEX_CHARS];
345 unsigned char *data = mem;
346 unsigned char byte;
347 int i, j;
348
349 BUG_ON(len >= HEX_CHARS);
350
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
358 hex[j++] = hex2asc[byte & 0x0f];
359 hex[j++] = hex2asc[byte >> 4];
360 }
361 hex[j++] = ' ';
362
363 return trace_seq_putmem(s, hex, j);
364 }
365
366 static void
367 trace_seq_reset(struct trace_seq *s)
368 {
369 s->len = 0;
370 s->readpos = 0;
371 }
372
373 ssize_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;
390 }
391
392 static void
393 trace_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
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 */
412 void
413 update_max_tr(struct trace_array *tr, struct task_struct *tsk, int cpu)
414 {
415 struct ring_buffer *buf = tr->buffer;
416
417 WARN_ON_ONCE(!irqs_disabled());
418 __raw_spin_lock(&ftrace_max_lock);
419
420 tr->buffer = max_tr.buffer;
421 max_tr.buffer = buf;
422
423 ftrace_disable_cpu();
424 ring_buffer_reset(tr->buffer);
425 ftrace_enable_cpu();
426
427 __update_max_tr(tr, tsk, cpu);
428 __raw_spin_unlock(&ftrace_max_lock);
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.
436 *
437 * Flip the trace of a single CPU buffer between the @tr and the max_tr.
438 */
439 void
440 update_max_tr_single(struct trace_array *tr, struct task_struct *tsk, int cpu)
441 {
442 int ret;
443
444 WARN_ON_ONCE(!irqs_disabled());
445 __raw_spin_lock(&ftrace_max_lock);
446
447 ftrace_disable_cpu();
448
449 ring_buffer_reset(max_tr.buffer);
450 ret = ring_buffer_swap_cpu(max_tr.buffer, tr->buffer, cpu);
451
452 ftrace_enable_cpu();
453
454 WARN_ON_ONCE(ret);
455
456 __update_max_tr(tr, tsk, cpu);
457 __raw_spin_unlock(&ftrace_max_lock);
458 }
459
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 */
466 int 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
488 #ifdef CONFIG_FTRACE_STARTUP_TEST
489 if (type->selftest) {
490 struct tracer *saved_tracer = current_trace;
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 */
501 for_each_tracing_cpu(i) {
502 tracing_reset(tr, i);
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 }
516 /* Only reset on passing, to avoid touching corrupted buffers */
517 for_each_tracing_cpu(i) {
518 tracing_reset(tr, i);
519 }
520 printk(KERN_CONT "PASSED\n");
521 }
522 #endif
523
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;
529
530 out:
531 mutex_unlock(&trace_types_lock);
532
533 return ret;
534 }
535
536 void 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
564 void tracing_reset(struct trace_array *tr, int cpu)
565 {
566 ftrace_disable_cpu();
567 ring_buffer_reset_cpu(tr->buffer, cpu);
568 ftrace_enable_cpu();
569 }
570
571 #define SAVED_CMDLINES 128
572 static unsigned map_pid_to_cmdline[PID_MAX_DEFAULT+1];
573 static unsigned map_cmdline_to_pid[SAVED_CMDLINES];
574 static char saved_cmdlines[SAVED_CMDLINES][TASK_COMM_LEN];
575 static int cmdline_idx;
576 static DEFINE_SPINLOCK(trace_cmdline_lock);
577
578 /* temporary disable recording */
579 atomic_t trace_record_cmdline_disabled __read_mostly;
580
581 static 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
588 void trace_stop_cmdline_recording(void);
589
590 static void trace_save_cmdline(struct task_struct *tsk)
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
625 static char *trace_find_cmdline(int pid)
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
646 void tracing_record_cmdline(struct task_struct *tsk)
647 {
648 if (atomic_read(&trace_record_cmdline_disabled))
649 return;
650
651 trace_save_cmdline(tsk);
652 }
653
654 void
655 tracing_generic_entry_update(struct trace_entry *entry, unsigned long flags)
656 {
657 struct task_struct *tsk = current;
658 unsigned long pc;
659
660 pc = preempt_count();
661
662 entry->preempt_count = pc & 0xff;
663 entry->pid = (tsk) ? tsk->pid : 0;
664 entry->flags =
665 (irqs_disabled_flags(flags) ? TRACE_FLAG_IRQS_OFF : 0) |
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
671 void
672 trace_function(struct trace_array *tr, struct trace_array_cpu *data,
673 unsigned long ip, unsigned long parent_ip, unsigned long flags)
674 {
675 struct ring_buffer_event *event;
676 struct ftrace_entry *entry;
677 unsigned long irq_flags;
678
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
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);
688 tracing_generic_entry_update(&entry->ent, flags);
689 entry->ent.type = TRACE_FN;
690 entry->ip = ip;
691 entry->parent_ip = parent_ip;
692 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
693 }
694
695 void
696 ftrace(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)))
700 trace_function(tr, data, ip, parent_ip, flags);
701 }
702
703 void __trace_stack(struct trace_array *tr,
704 struct trace_array_cpu *data,
705 unsigned long flags,
706 int skip)
707 {
708 struct ring_buffer_event *event;
709 struct stack_entry *entry;
710 struct stack_trace trace;
711 unsigned long irq_flags;
712
713 if (!(trace_flags & TRACE_ITER_STACKTRACE))
714 return;
715
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);
721 tracing_generic_entry_update(&entry->ent, flags);
722 entry->ent.type = TRACE_STACK;
723
724 memset(&entry->caller, 0, sizeof(entry->caller));
725
726 trace.nr_entries = 0;
727 trace.max_entries = FTRACE_STACK_ENTRIES;
728 trace.skip = skip;
729 trace.entries = entry->caller;
730
731 save_stack_trace(&trace);
732 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
733 }
734
735 void
736 __trace_special(void *__tr, void *__data,
737 unsigned long arg1, unsigned long arg2, unsigned long arg3)
738 {
739 struct ring_buffer_event *event;
740 struct trace_array_cpu *data = __data;
741 struct trace_array *tr = __tr;
742 struct special_entry *entry;
743 unsigned long irq_flags;
744
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);
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;
755 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
756 __trace_stack(tr, data, irq_flags, 4);
757
758 trace_wake_up();
759 }
760
761 void
762 tracing_sched_switch_trace(struct trace_array *tr,
763 struct trace_array_cpu *data,
764 struct task_struct *prev,
765 struct task_struct *next,
766 unsigned long flags)
767 {
768 struct ring_buffer_event *event;
769 struct ctx_switch_entry *entry;
770 unsigned long irq_flags;
771
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);
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);
786 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
787 __trace_stack(tr, data, flags, 5);
788 }
789
790 void
791 tracing_sched_wakeup_trace(struct trace_array *tr,
792 struct trace_array_cpu *data,
793 struct task_struct *wakee,
794 struct task_struct *curr,
795 unsigned long flags)
796 {
797 struct ring_buffer_event *event;
798 struct ctx_switch_entry *entry;
799 unsigned long irq_flags;
800
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);
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);
815 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
816 __trace_stack(tr, data, flags, 6);
817
818 trace_wake_up();
819 }
820
821 void
822 ftrace_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
830 if (tracing_disabled || !tr->ctrl)
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
845 #ifdef CONFIG_FTRACE
846 static void
847 function_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
855 if (unlikely(!ftrace_function_enabled))
856 return;
857
858 if (skip_trace(ip))
859 return;
860
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))
867 trace_function(tr, data, ip, parent_ip, flags);
868
869 atomic_dec(&data->disabled);
870 local_irq_restore(flags);
871 }
872
873 static struct ftrace_ops trace_ops __read_mostly =
874 {
875 .func = function_trace_call,
876 };
877
878 void tracing_start_function_trace(void)
879 {
880 ftrace_function_enabled = 0;
881 register_ftrace_function(&trace_ops);
882 if (tracer_enabled)
883 ftrace_function_enabled = 1;
884 }
885
886 void tracing_stop_function_trace(void)
887 {
888 ftrace_function_enabled = 0;
889 unregister_ftrace_function(&trace_ops);
890 }
891 #endif
892
893 enum trace_file_type {
894 TRACE_FILE_LAT_FMT = 1,
895 };
896
897 static void trace_iterator_increment(struct trace_iterator *iter, int cpu)
898 {
899 /* Don't allow ftrace to trace into the ring buffers */
900 ftrace_disable_cpu();
901
902 iter->idx++;
903 if (iter->buffer_iter[iter->cpu])
904 ring_buffer_read(iter->buffer_iter[iter->cpu], NULL);
905
906 ftrace_enable_cpu();
907 }
908
909 static struct trace_entry *
910 peek_next_entry(struct trace_iterator *iter, int cpu, u64 *ts)
911 {
912 struct ring_buffer_event *event;
913 struct ring_buffer_iter *buf_iter = iter->buffer_iter[cpu];
914
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
925 return event ? ring_buffer_event_data(event) : NULL;
926 }
927
928 static struct trace_entry *
929 __find_next_entry(struct trace_iterator *iter, int *ent_cpu, u64 *ent_ts)
930 {
931 struct ring_buffer *buffer = iter->tr->buffer;
932 struct trace_entry *ent, *next = NULL;
933 u64 next_ts = 0, ts;
934 int next_cpu = -1;
935 int cpu;
936
937 for_each_tracing_cpu(cpu) {
938
939 if (ring_buffer_empty_cpu(buffer, cpu))
940 continue;
941
942 ent = peek_next_entry(iter, cpu, &ts);
943
944 /*
945 * Pick the entry with the smallest timestamp:
946 */
947 if (ent && (!next || ts < next_ts)) {
948 next = ent;
949 next_cpu = cpu;
950 next_ts = ts;
951 }
952 }
953
954 if (ent_cpu)
955 *ent_cpu = next_cpu;
956
957 if (ent_ts)
958 *ent_ts = next_ts;
959
960 return next;
961 }
962
963 /* Find the next real entry, without updating the iterator itself */
964 static struct trace_entry *
965 find_next_entry(struct trace_iterator *iter, int *ent_cpu, u64 *ent_ts)
966 {
967 return __find_next_entry(iter, ent_cpu, ent_ts);
968 }
969
970 /* Find the next real entry, and increment the iterator to the next entry */
971 static void *find_next_entry_inc(struct trace_iterator *iter)
972 {
973 iter->ent = __find_next_entry(iter, &iter->cpu, &iter->ts);
974
975 if (iter->ent)
976 trace_iterator_increment(iter, iter->cpu);
977
978 return iter->ent ? iter : NULL;
979 }
980
981 static void trace_consume(struct trace_iterator *iter)
982 {
983 /* Don't allow ftrace to trace into the ring buffers */
984 ftrace_disable_cpu();
985 ring_buffer_consume(iter->tr->buffer, iter->cpu, &iter->ts);
986 ftrace_enable_cpu();
987 }
988
989 static void *s_next(struct seq_file *m, void *v, loff_t *pos)
990 {
991 struct trace_iterator *iter = m->private;
992 int i = (int)*pos;
993 void *ent;
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
1011 return ent;
1012 }
1013
1014 static 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;
1019 int cpu;
1020
1021 mutex_lock(&trace_types_lock);
1022
1023 if (!current_trace || current_trace != iter->trace) {
1024 mutex_unlock(&trace_types_lock);
1025 return NULL;
1026 }
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
1039 ftrace_disable_cpu();
1040
1041 for_each_tracing_cpu(cpu) {
1042 ring_buffer_iter_reset(iter->buffer_iter[cpu]);
1043 }
1044
1045 ftrace_enable_cpu();
1046
1047 for (p = iter; p && l < *pos; p = s_next(m, p, &l))
1048 ;
1049
1050 } else {
1051 l = *pos - 1;
1052 p = s_next(m, p, &l);
1053 }
1054
1055 return p;
1056 }
1057
1058 static 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
1071 #define KRETPROBE_MSG "[unknown/kretprobe'd]"
1072
1073 #ifdef CONFIG_KRETPROBES
1074 static inline int kretprobed(unsigned long addr)
1075 {
1076 return addr == (unsigned long)kretprobe_trampoline;
1077 }
1078 #else
1079 static inline int kretprobed(unsigned long addr)
1080 {
1081 return 0;
1082 }
1083 #endif /* CONFIG_KRETPROBES */
1084
1085 static int
1086 seq_print_sym_short(struct trace_seq *s, const char *fmt, unsigned long address)
1087 {
1088 #ifdef CONFIG_KALLSYMS
1089 char str[KSYM_SYMBOL_LEN];
1090
1091 kallsyms_lookup(address, NULL, NULL, NULL, str);
1092
1093 return trace_seq_printf(s, fmt, str);
1094 #endif
1095 return 1;
1096 }
1097
1098 static int
1099 seq_print_sym_offset(struct trace_seq *s, const char *fmt,
1100 unsigned long address)
1101 {
1102 #ifdef CONFIG_KALLSYMS
1103 char str[KSYM_SYMBOL_LEN];
1104
1105 sprint_symbol(str, address);
1106 return trace_seq_printf(s, fmt, str);
1107 #endif
1108 return 1;
1109 }
1110
1111 #ifndef CONFIG_64BIT
1112 # define IP_FMT "%08lx"
1113 #else
1114 # define IP_FMT "%016lx"
1115 #endif
1116
1117 static int
1118 seq_print_ip_sym(struct trace_seq *s, unsigned long ip, unsigned long sym_flags)
1119 {
1120 int ret;
1121
1122 if (!ip)
1123 return trace_seq_printf(s, "0");
1124
1125 if (sym_flags & TRACE_ITER_SYM_OFFSET)
1126 ret = seq_print_sym_offset(s, "%s", ip);
1127 else
1128 ret = seq_print_sym_short(s, "%s", ip);
1129
1130 if (!ret)
1131 return 0;
1132
1133 if (sym_flags & TRACE_ITER_SYM_ADDR)
1134 ret = trace_seq_printf(s, " <" IP_FMT ">", ip);
1135 return ret;
1136 }
1137
1138 static void print_lat_help_header(struct seq_file *m)
1139 {
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");
1149 }
1150
1151 static void print_func_help_header(struct seq_file *m)
1152 {
1153 seq_puts(m, "# TASK-PID CPU# TIMESTAMP FUNCTION\n");
1154 seq_puts(m, "# | | | | |\n");
1155 }
1156
1157
1158 static void
1159 print_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;
1165 unsigned long total;
1166 unsigned long entries;
1167 const char *name = "preemption";
1168
1169 if (type)
1170 name = type->name;
1171
1172 entries = ring_buffer_entries(iter->tr->buffer);
1173 total = entries +
1174 ring_buffer_overruns(iter->tr->buffer);
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",
1182 nsecs_to_usecs(data->saved_latency),
1183 entries,
1184 total,
1185 tr->cpu,
1186 #if defined(CONFIG_PREEMPT_NONE)
1187 "server",
1188 #elif defined(CONFIG_PREEMPT_VOLUNTARY)
1189 "desktop",
1190 #elif defined(CONFIG_PREEMPT)
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: ");
1211 seq_print_ip_sym(&iter->seq, data->critical_start, sym_flags);
1212 trace_print_seq(m, &iter->seq);
1213 seq_puts(m, "\n => ended at: ");
1214 seq_print_ip_sym(&iter->seq, data->critical_end, sym_flags);
1215 trace_print_seq(m, &iter->seq);
1216 seq_puts(m, "\n");
1217 }
1218
1219 seq_puts(m, "\n");
1220 }
1221
1222 static void
1223 lat_print_generic(struct trace_seq *s, struct trace_entry *entry, int cpu)
1224 {
1225 int hardirq, softirq;
1226 char *comm;
1227
1228 comm = trace_find_cmdline(entry->pid);
1229
1230 trace_seq_printf(s, "%8.8s-%-5d ", comm, entry->pid);
1231 trace_seq_printf(s, "%3d", cpu);
1232 trace_seq_printf(s, "%c%c",
1233 (entry->flags & TRACE_FLAG_IRQS_OFF) ? 'd' : '.',
1234 ((entry->flags & TRACE_FLAG_NEED_RESCHED) ? 'N' : '.'));
1235
1236 hardirq = entry->flags & TRACE_FLAG_HARDIRQ;
1237 softirq = entry->flags & TRACE_FLAG_SOFTIRQ;
1238 if (hardirq && softirq) {
1239 trace_seq_putc(s, 'H');
1240 } else {
1241 if (hardirq) {
1242 trace_seq_putc(s, 'h');
1243 } else {
1244 if (softirq)
1245 trace_seq_putc(s, 's');
1246 else
1247 trace_seq_putc(s, '.');
1248 }
1249 }
1250
1251 if (entry->preempt_count)
1252 trace_seq_printf(s, "%x", entry->preempt_count);
1253 else
1254 trace_seq_puts(s, ".");
1255 }
1256
1257 unsigned long preempt_mark_thresh = 100;
1258
1259 static void
1260 lat_print_timestamp(struct trace_seq *s, u64 abs_usecs,
1261 unsigned long rel_usecs)
1262 {
1263 trace_seq_printf(s, " %4lldus", abs_usecs);
1264 if (rel_usecs > preempt_mark_thresh)
1265 trace_seq_puts(s, "!: ");
1266 else if (rel_usecs > 1)
1267 trace_seq_puts(s, "+: ");
1268 else
1269 trace_seq_puts(s, " : ");
1270 }
1271
1272 static const char state_to_char[] = TASK_STATE_TO_CHAR_STR;
1273
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 */
1278 void trace_seq_print_cont(struct trace_seq *s, struct trace_iterator *iter)
1279 {
1280 struct trace_entry *ent;
1281 struct trace_field_cont *cont;
1282 bool ok = true;
1283
1284 ent = peek_next_entry(iter, iter->cpu, NULL);
1285 if (!ent || ent->type != TRACE_CONT) {
1286 trace_seq_putc(s, '\n');
1287 return;
1288 }
1289
1290 do {
1291 cont = (struct trace_field_cont *)ent;
1292 if (ok)
1293 ok = (trace_seq_printf(s, "%s", cont->buf) > 0);
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
1304 ent = peek_next_entry(iter, iter->cpu, NULL);
1305 } while (ent && ent->type == TRACE_CONT);
1306
1307 if (!ok)
1308 trace_seq_putc(s, '\n');
1309 }
1310
1311 static enum print_line_t
1312 print_lat_fmt(struct trace_iterator *iter, unsigned int trace_idx, int cpu)
1313 {
1314 struct trace_seq *s = &iter->seq;
1315 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1316 struct trace_entry *next_entry;
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;
1321 u64 next_ts;
1322 char *comm;
1323 int S, T;
1324 int i;
1325 unsigned state;
1326
1327 if (entry->type == TRACE_CONT)
1328 return TRACE_TYPE_HANDLED;
1329
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);
1335
1336 if (verbose) {
1337 comm = trace_find_cmdline(entry->pid);
1338 trace_seq_printf(s, "%16s %5d %3d %d %08x %08x [%08lx]"
1339 " %ld.%03ldms (+%ld.%03ldms): ",
1340 comm,
1341 entry->pid, cpu, entry->flags,
1342 entry->preempt_count, trace_idx,
1343 ns2usecs(iter->ts),
1344 abs_usecs/1000,
1345 abs_usecs % 1000, rel_usecs/1000,
1346 rel_usecs % 1000);
1347 } else {
1348 lat_print_generic(s, entry, cpu);
1349 lat_print_timestamp(s, abs_usecs, rel_usecs);
1350 }
1351 switch (entry->type) {
1352 case TRACE_FN: {
1353 struct ftrace_entry *field = (struct ftrace_entry *)entry;
1354
1355 seq_print_ip_sym(s, field->ip, sym_flags);
1356 trace_seq_puts(s, " (");
1357 if (kretprobed(field->parent_ip))
1358 trace_seq_puts(s, KRETPROBE_MSG);
1359 else
1360 seq_print_ip_sym(s, field->parent_ip, sym_flags);
1361 trace_seq_puts(s, ")\n");
1362 break;
1363 }
1364 case TRACE_CTX:
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';
1371
1372 state = field->prev_state ?
1373 __ffs(field->prev_state) + 1 : 0;
1374 S = state < sizeof(state_to_char) - 1 ? state_to_char[state] : 'X';
1375 comm = trace_find_cmdline(field->next_pid);
1376 trace_seq_printf(s, " %5d:%3d:%c %s [%03d] %5d:%3d:%c %s\n",
1377 field->prev_pid,
1378 field->prev_prio,
1379 S, entry->type == TRACE_CTX ? "==>" : " +",
1380 field->next_cpu,
1381 field->next_pid,
1382 field->next_prio,
1383 T, comm);
1384 break;
1385 }
1386 case TRACE_SPECIAL: {
1387 struct special_entry *field = (struct special_entry *)entry;
1388
1389 trace_seq_printf(s, "# %ld %ld %ld\n",
1390 field->arg1,
1391 field->arg2,
1392 field->arg3);
1393 break;
1394 }
1395 case TRACE_STACK: {
1396 struct stack_entry *field = (struct stack_entry *)entry;
1397
1398 for (i = 0; i < FTRACE_STACK_ENTRIES; i++) {
1399 if (i)
1400 trace_seq_puts(s, " <= ");
1401 seq_print_ip_sym(s, field->caller[i], sym_flags);
1402 }
1403 trace_seq_puts(s, "\n");
1404 break;
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)
1412 trace_seq_print_cont(s, iter);
1413 break;
1414 }
1415 default:
1416 trace_seq_printf(s, "Unknown type %d\n", entry->type);
1417 }
1418 return TRACE_TYPE_HANDLED;
1419 }
1420
1421 static enum print_line_t print_trace_fmt(struct trace_iterator *iter)
1422 {
1423 struct trace_seq *s = &iter->seq;
1424 unsigned long sym_flags = (trace_flags & TRACE_ITER_SYM_MASK);
1425 struct trace_entry *entry;
1426 unsigned long usec_rem;
1427 unsigned long long t;
1428 unsigned long secs;
1429 char *comm;
1430 int ret;
1431 int S, T;
1432 int i;
1433
1434 entry = iter->ent;
1435
1436 if (entry->type == TRACE_CONT)
1437 return TRACE_TYPE_HANDLED;
1438
1439 comm = trace_find_cmdline(iter->ent->pid);
1440
1441 t = ns2usecs(iter->ts);
1442 usec_rem = do_div(t, 1000000ULL);
1443 secs = (unsigned long)t;
1444
1445 ret = trace_seq_printf(s, "%16s-%-5d ", comm, entry->pid);
1446 if (!ret)
1447 return TRACE_TYPE_PARTIAL_LINE;
1448 ret = trace_seq_printf(s, "[%03d] ", iter->cpu);
1449 if (!ret)
1450 return TRACE_TYPE_PARTIAL_LINE;
1451 ret = trace_seq_printf(s, "%5lu.%06lu: ", secs, usec_rem);
1452 if (!ret)
1453 return TRACE_TYPE_PARTIAL_LINE;
1454
1455 switch (entry->type) {
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);
1460 if (!ret)
1461 return TRACE_TYPE_PARTIAL_LINE;
1462 if ((sym_flags & TRACE_ITER_PRINT_PARENT) &&
1463 field->parent_ip) {
1464 ret = trace_seq_printf(s, " <-");
1465 if (!ret)
1466 return TRACE_TYPE_PARTIAL_LINE;
1467 if (kretprobed(field->parent_ip))
1468 ret = trace_seq_puts(s, KRETPROBE_MSG);
1469 else
1470 ret = seq_print_ip_sym(s,
1471 field->parent_ip,
1472 sym_flags);
1473 if (!ret)
1474 return TRACE_TYPE_PARTIAL_LINE;
1475 }
1476 ret = trace_seq_printf(s, "\n");
1477 if (!ret)
1478 return TRACE_TYPE_PARTIAL_LINE;
1479 break;
1480 }
1481 case TRACE_CTX:
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';
1490 ret = trace_seq_printf(s, " %5d:%3d:%c %s [%03d] %5d:%3d:%c\n",
1491 field->prev_pid,
1492 field->prev_prio,
1493 S,
1494 entry->type == TRACE_CTX ? "==>" : " +",
1495 field->next_cpu,
1496 field->next_pid,
1497 field->next_prio,
1498 T);
1499 if (!ret)
1500 return TRACE_TYPE_PARTIAL_LINE;
1501 break;
1502 }
1503 case TRACE_SPECIAL: {
1504 struct special_entry *field = (struct special_entry *)entry;
1505
1506 ret = trace_seq_printf(s, "# %ld %ld %ld\n",
1507 field->arg1,
1508 field->arg2,
1509 field->arg3);
1510 if (!ret)
1511 return TRACE_TYPE_PARTIAL_LINE;
1512 break;
1513 }
1514 case TRACE_STACK: {
1515 struct stack_entry *field = (struct stack_entry *)entry;
1516
1517 for (i = 0; i < FTRACE_STACK_ENTRIES; i++) {
1518 if (i) {
1519 ret = trace_seq_puts(s, " <= ");
1520 if (!ret)
1521 return TRACE_TYPE_PARTIAL_LINE;
1522 }
1523 ret = seq_print_ip_sym(s, field->caller[i],
1524 sym_flags);
1525 if (!ret)
1526 return TRACE_TYPE_PARTIAL_LINE;
1527 }
1528 ret = trace_seq_puts(s, "\n");
1529 if (!ret)
1530 return TRACE_TYPE_PARTIAL_LINE;
1531 break;
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)
1539 trace_seq_print_cont(s, iter);
1540 break;
1541 }
1542 }
1543 return TRACE_TYPE_HANDLED;
1544 }
1545
1546 static enum print_line_t print_raw_fmt(struct trace_iterator *iter)
1547 {
1548 struct trace_seq *s = &iter->seq;
1549 struct trace_entry *entry;
1550 int ret;
1551 int S, T;
1552
1553 entry = iter->ent;
1554
1555 if (entry->type == TRACE_CONT)
1556 return TRACE_TYPE_HANDLED;
1557
1558 ret = trace_seq_printf(s, "%d %d %llu ",
1559 entry->pid, iter->cpu, iter->ts);
1560 if (!ret)
1561 return TRACE_TYPE_PARTIAL_LINE;
1562
1563 switch (entry->type) {
1564 case TRACE_FN: {
1565 struct ftrace_entry *field = (struct ftrace_entry *)entry;
1566
1567 ret = trace_seq_printf(s, "%x %x\n",
1568 field->ip,
1569 field->parent_ip);
1570 if (!ret)
1571 return TRACE_TYPE_PARTIAL_LINE;
1572 break;
1573 }
1574 case TRACE_CTX:
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';
1583 if (entry->type == TRACE_WAKE)
1584 S = '+';
1585 ret = trace_seq_printf(s, "%d %d %c %d %d %d %c\n",
1586 field->prev_pid,
1587 field->prev_prio,
1588 S,
1589 field->next_cpu,
1590 field->next_pid,
1591 field->next_prio,
1592 T);
1593 if (!ret)
1594 return TRACE_TYPE_PARTIAL_LINE;
1595 break;
1596 }
1597 case TRACE_SPECIAL:
1598 case TRACE_STACK: {
1599 struct special_entry *field = (struct special_entry *)entry;
1600
1601 ret = trace_seq_printf(s, "# %ld %ld %ld\n",
1602 field->arg1,
1603 field->arg2,
1604 field->arg3);
1605 if (!ret)
1606 return TRACE_TYPE_PARTIAL_LINE;
1607 break;
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)
1614 trace_seq_print_cont(s, iter);
1615 break;
1616 }
1617 }
1618 return TRACE_TYPE_HANDLED;
1619 }
1620
1621 #define SEQ_PUT_FIELD_RET(s, x) \
1622 do { \
1623 if (!trace_seq_putmem(s, &(x), sizeof(x))) \
1624 return 0; \
1625 } while (0)
1626
1627 #define SEQ_PUT_HEX_FIELD_RET(s, x) \
1628 do { \
1629 if (!trace_seq_putmem_hex(s, &(x), sizeof(x))) \
1630 return 0; \
1631 } while (0)
1632
1633 static enum print_line_t print_hex_fmt(struct trace_iterator *iter)
1634 {
1635 struct trace_seq *s = &iter->seq;
1636 unsigned char newline = '\n';
1637 struct trace_entry *entry;
1638 int S, T;
1639
1640 entry = iter->ent;
1641
1642 if (entry->type == TRACE_CONT)
1643 return TRACE_TYPE_HANDLED;
1644
1645 SEQ_PUT_HEX_FIELD_RET(s, entry->pid);
1646 SEQ_PUT_HEX_FIELD_RET(s, iter->cpu);
1647 SEQ_PUT_HEX_FIELD_RET(s, iter->ts);
1648
1649 switch (entry->type) {
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);
1655 break;
1656 }
1657 case TRACE_CTX:
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';
1666 if (entry->type == TRACE_WAKE)
1667 S = '+';
1668 SEQ_PUT_HEX_FIELD_RET(s, field->prev_pid);
1669 SEQ_PUT_HEX_FIELD_RET(s, field->prev_prio);
1670 SEQ_PUT_HEX_FIELD_RET(s, S);
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);
1674 SEQ_PUT_HEX_FIELD_RET(s, T);
1675 break;
1676 }
1677 case TRACE_SPECIAL:
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);
1684 break;
1685 }
1686 }
1687 SEQ_PUT_FIELD_RET(s, newline);
1688
1689 return TRACE_TYPE_HANDLED;
1690 }
1691
1692 static enum print_line_t print_bin_fmt(struct trace_iterator *iter)
1693 {
1694 struct trace_seq *s = &iter->seq;
1695 struct trace_entry *entry;
1696
1697 entry = iter->ent;
1698
1699 if (entry->type == TRACE_CONT)
1700 return TRACE_TYPE_HANDLED;
1701
1702 SEQ_PUT_FIELD_RET(s, entry->pid);
1703 SEQ_PUT_FIELD_RET(s, iter->cpu);
1704 SEQ_PUT_FIELD_RET(s, iter->ts);
1705
1706 switch (entry->type) {
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);
1712 break;
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);
1724 break;
1725 }
1726 case TRACE_SPECIAL:
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);
1733 break;
1734 }
1735 }
1736 return 1;
1737 }
1738
1739 static int trace_empty(struct trace_iterator *iter)
1740 {
1741 int cpu;
1742
1743 for_each_tracing_cpu(cpu) {
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 }
1751 }
1752
1753 return TRACE_TYPE_HANDLED;
1754 }
1755
1756 static enum print_line_t print_trace_line(struct trace_iterator *iter)
1757 {
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 }
1765
1766 if (trace_flags & TRACE_ITER_BIN)
1767 return print_bin_fmt(iter);
1768
1769 if (trace_flags & TRACE_ITER_HEX)
1770 return print_hex_fmt(iter);
1771
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
1781 static 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 {
1802 print_trace_line(iter);
1803 trace_print_seq(m, &iter->seq);
1804 }
1805
1806 return 0;
1807 }
1808
1809 static struct seq_operations tracer_seq_ops = {
1810 .start = s_start,
1811 .next = s_next,
1812 .stop = s_stop,
1813 .show = s_show,
1814 };
1815
1816 static struct trace_iterator *
1817 __tracing_open(struct inode *inode, struct file *file, int *ret)
1818 {
1819 struct trace_iterator *iter;
1820 struct seq_file *m;
1821 int cpu;
1822
1823 if (tracing_disabled) {
1824 *ret = -ENODEV;
1825 return NULL;
1826 }
1827
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
1842 for_each_tracing_cpu(cpu) {
1843
1844 iter->buffer_iter[cpu] =
1845 ring_buffer_read_start(iter->tr->buffer, cpu);
1846
1847 if (!iter->buffer_iter[cpu])
1848 goto fail_buffer;
1849 }
1850
1851 /* TODO stop tracer */
1852 *ret = seq_open(file, &tracer_seq_ops);
1853 if (*ret)
1854 goto fail_buffer;
1855
1856 m = file->private_data;
1857 m->private = iter;
1858
1859 /* stop the trace while dumping */
1860 if (iter->tr->ctrl) {
1861 tracer_enabled = 0;
1862 ftrace_function_enabled = 0;
1863 }
1864
1865 if (iter->trace && iter->trace->open)
1866 iter->trace->open(iter);
1867
1868 mutex_unlock(&trace_types_lock);
1869
1870 out:
1871 return iter;
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);
1881 }
1882
1883 int tracing_open_generic(struct inode *inode, struct file *filp)
1884 {
1885 if (tracing_disabled)
1886 return -ENODEV;
1887
1888 filp->private_data = inode->i_private;
1889 return 0;
1890 }
1891
1892 int 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;
1896 int cpu;
1897
1898 mutex_lock(&trace_types_lock);
1899 for_each_tracing_cpu(cpu) {
1900 if (iter->buffer_iter[cpu])
1901 ring_buffer_read_finish(iter->buffer_iter[cpu]);
1902 }
1903
1904 if (iter->trace && iter->trace->close)
1905 iter->trace->close(iter);
1906
1907 /* reenable tracing if it was previously enabled */
1908 if (iter->tr->ctrl) {
1909 tracer_enabled = 1;
1910 /*
1911 * It is safe to enable function tracing even if it
1912 * isn't used
1913 */
1914 ftrace_function_enabled = 1;
1915 }
1916 mutex_unlock(&trace_types_lock);
1917
1918 seq_release(inode, file);
1919 kfree(iter);
1920 return 0;
1921 }
1922
1923 static 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
1932 static 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
1946 static void *
1947 t_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
1961 static 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
1973 static void t_stop(struct seq_file *m, void *p)
1974 {
1975 mutex_unlock(&trace_types_lock);
1976 }
1977
1978 static 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
1994 static struct seq_operations show_traces_seq_ops = {
1995 .start = t_start,
1996 .next = t_next,
1997 .stop = t_stop,
1998 .show = t_show,
1999 };
2000
2001 static int show_traces_open(struct inode *inode, struct file *file)
2002 {
2003 int ret;
2004
2005 if (tracing_disabled)
2006 return -ENODEV;
2007
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
2017 static struct file_operations tracing_fops = {
2018 .open = tracing_open,
2019 .read = seq_read,
2020 .llseek = seq_lseek,
2021 .release = tracing_release,
2022 };
2023
2024 static struct file_operations tracing_lt_fops = {
2025 .open = tracing_lt_open,
2026 .read = seq_read,
2027 .llseek = seq_lseek,
2028 .release = tracing_release,
2029 };
2030
2031 static struct file_operations show_traces_fops = {
2032 .open = show_traces_open,
2033 .read = seq_read,
2034 .release = seq_release,
2035 };
2036
2037 /*
2038 * Only trace on a CPU if the bitmask is set:
2039 */
2040 static 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 */
2046 static 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 */
2052 static 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 */
2058 static char mask_str[NR_CPUS + 1];
2059
2060 static ssize_t
2061 tracing_cpumask_read(struct file *filp, char __user *ubuf,
2062 size_t count, loff_t *ppos)
2063 {
2064 int len;
2065
2066 mutex_lock(&tracing_cpumask_update_lock);
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
2076 out_err:
2077 mutex_unlock(&tracing_cpumask_update_lock);
2078
2079 return count;
2080 }
2081
2082 static ssize_t
2083 tracing_cpumask_write(struct file *filp, const char __user *ubuf,
2084 size_t count, loff_t *ppos)
2085 {
2086 int err, cpu;
2087
2088 mutex_lock(&tracing_cpumask_update_lock);
2089 err = cpumask_parse_user(ubuf, count, tracing_cpumask_new);
2090 if (err)
2091 goto err_unlock;
2092
2093 raw_local_irq_disable();
2094 __raw_spin_lock(&ftrace_max_lock);
2095 for_each_tracing_cpu(cpu) {
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 }
2109 __raw_spin_unlock(&ftrace_max_lock);
2110 raw_local_irq_enable();
2111
2112 tracing_cpumask = tracing_cpumask_new;
2113
2114 mutex_unlock(&tracing_cpumask_update_lock);
2115
2116 return count;
2117
2118 err_unlock:
2119 mutex_unlock(&tracing_cpumask_update_lock);
2120
2121 return err;
2122 }
2123
2124 static struct file_operations tracing_cpumask_fops = {
2125 .open = tracing_open_generic,
2126 .read = tracing_cpumask_read,
2127 .write = tracing_cpumask_write,
2128 };
2129
2130 static ssize_t
2131 tracing_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
2160 r = simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2161
2162 kfree(buf);
2163
2164 return r;
2165 }
2166
2167 static ssize_t
2168 tracing_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
2176 if (cnt >= sizeof(buf))
2177 return -EINVAL;
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 }
2200 /*
2201 * If no option could be set, return an error:
2202 */
2203 if (!trace_options[i])
2204 return -EINVAL;
2205
2206 filp->f_pos += cnt;
2207
2208 return cnt;
2209 }
2210
2211 static struct file_operations tracing_iter_fops = {
2212 .open = tracing_open_generic,
2213 .read = tracing_iter_ctrl_read,
2214 .write = tracing_iter_ctrl_write,
2215 };
2216
2217 static 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
2236 static ssize_t
2237 tracing_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
2244 static struct file_operations tracing_readme_fops = {
2245 .open = tracing_open_generic,
2246 .read = tracing_readme_read,
2247 };
2248
2249 static ssize_t
2250 tracing_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);
2258 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2259 }
2260
2261 static ssize_t
2262 tracing_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;
2266 char buf[64];
2267 long val;
2268 int ret;
2269
2270 if (cnt >= sizeof(buf))
2271 return -EINVAL;
2272
2273 if (copy_from_user(&buf, ubuf, cnt))
2274 return -EFAULT;
2275
2276 buf[cnt] = 0;
2277
2278 ret = strict_strtoul(buf, 10, &val);
2279 if (ret < 0)
2280 return ret;
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
2303 static ssize_t
2304 tracing_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
2317 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2318 }
2319
2320 static ssize_t
2321 tracing_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
2364 static ssize_t
2365 tracing_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
2372 r = snprintf(buf, sizeof(buf), "%ld\n",
2373 *ptr == (unsigned long)-1 ? -1 : nsecs_to_usecs(*ptr));
2374 if (r > sizeof(buf))
2375 r = sizeof(buf);
2376 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2377 }
2378
2379 static ssize_t
2380 tracing_max_lat_write(struct file *filp, const char __user *ubuf,
2381 size_t cnt, loff_t *ppos)
2382 {
2383 long *ptr = filp->private_data;
2384 char buf[64];
2385 long val;
2386 int ret;
2387
2388 if (cnt >= sizeof(buf))
2389 return -EINVAL;
2390
2391 if (copy_from_user(&buf, ubuf, cnt))
2392 return -EFAULT;
2393
2394 buf[cnt] = 0;
2395
2396 ret = strict_strtoul(buf, 10, &val);
2397 if (ret < 0)
2398 return ret;
2399
2400 *ptr = val * 1000;
2401
2402 return cnt;
2403 }
2404
2405 static atomic_t tracing_reader;
2406
2407 static 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
2425 mutex_lock(&trace_types_lock);
2426 iter->tr = &global_trace;
2427 iter->trace = current_trace;
2428 filp->private_data = iter;
2429
2430 if (iter->trace->pipe_open)
2431 iter->trace->pipe_open(iter);
2432 mutex_unlock(&trace_types_lock);
2433
2434 return 0;
2435 }
2436
2437 static 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
2447 static unsigned int
2448 tracing_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;
2457 } else {
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
2468 /*
2469 * Consumer reader.
2470 */
2471 static ssize_t
2472 tracing_read_pipe(struct file *filp, char __user *ubuf,
2473 size_t cnt, loff_t *ppos)
2474 {
2475 struct trace_iterator *iter = filp->private_data;
2476 #ifdef CONFIG_FTRACE
2477 int ftrace_save;
2478 #endif
2479 ssize_t sret;
2480
2481 /* return any leftover data */
2482 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
2483 if (sret != -EBUSY)
2484 return sret;
2485
2486 trace_seq_reset(&iter->seq);
2487
2488 mutex_lock(&trace_types_lock);
2489 if (iter->trace->read) {
2490 sret = iter->trace->read(iter, filp, ubuf, cnt, ppos);
2491 if (sret)
2492 goto out;
2493 }
2494
2495 waitagain:
2496 sret = 0;
2497 while (trace_empty(iter)) {
2498
2499 if ((filp->f_flags & O_NONBLOCK)) {
2500 sret = -EAGAIN;
2501 goto out;
2502 }
2503
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
2516 mutex_unlock(&trace_types_lock);
2517
2518 /* sleep for 100 msecs, and try again. */
2519 schedule_timeout(HZ/10);
2520
2521 mutex_lock(&trace_types_lock);
2522
2523 iter->tr->waiter = NULL;
2524
2525 if (signal_pending(current)) {
2526 sret = -EINTR;
2527 goto out;
2528 }
2529
2530 if (iter->trace != current_trace)
2531 goto out;
2532
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))
2550 goto out;
2551
2552 if (cnt >= PAGE_SIZE)
2553 cnt = PAGE_SIZE - 1;
2554
2555 /* reset all but tr, trace, and overruns */
2556 memset(&iter->seq, 0,
2557 sizeof(struct trace_iterator) -
2558 offsetof(struct trace_iterator, seq));
2559 iter->pos = -1;
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
2568 local_irq_disable();
2569 #ifdef CONFIG_FTRACE
2570 ftrace_save = ftrace_enabled;
2571 ftrace_enabled = 0;
2572 #endif
2573 smp_wmb();
2574
2575 while (find_next_entry_inc(iter) != NULL) {
2576 enum print_line_t ret;
2577 int len = iter->seq.len;
2578
2579 ret = print_trace_line(iter);
2580 if (ret == TRACE_TYPE_PARTIAL_LINE) {
2581 /* don't print partial lines */
2582 iter->seq.len = len;
2583 break;
2584 }
2585
2586 trace_consume(iter);
2587
2588 if (iter->seq.len >= cnt)
2589 break;
2590 }
2591
2592 #ifdef CONFIG_FTRACE
2593 ftrace_enabled = ftrace_save;
2594 #endif
2595 local_irq_enable();
2596
2597 /* Now copy what we have to the user */
2598 sret = trace_seq_to_user(&iter->seq, ubuf, cnt);
2599 if (iter->seq.readpos >= iter->seq.len)
2600 trace_seq_reset(&iter->seq);
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 */
2606 if (sret == -EBUSY)
2607 goto waitagain;
2608
2609 out:
2610 mutex_unlock(&trace_types_lock);
2611
2612 return sret;
2613 }
2614
2615 static ssize_t
2616 tracing_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
2627 static ssize_t
2628 tracing_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];
2633 int ret;
2634 struct trace_array *tr = filp->private_data;
2635
2636 if (cnt >= sizeof(buf))
2637 return -EINVAL;
2638
2639 if (copy_from_user(&buf, ubuf, cnt))
2640 return -EFAULT;
2641
2642 buf[cnt] = 0;
2643
2644 ret = strict_strtoul(buf, 10, &val);
2645 if (ret < 0)
2646 return ret;
2647
2648 /* must have at least 1 entry */
2649 if (!val)
2650 return -EINVAL;
2651
2652 mutex_lock(&trace_types_lock);
2653
2654 if (tr->ctrl) {
2655 cnt = -EBUSY;
2656 pr_info("ftrace: please disable tracing"
2657 " before modifying buffer size\n");
2658 goto out;
2659 }
2660
2661 if (val != global_trace.entries) {
2662 ret = ring_buffer_resize(global_trace.buffer, val);
2663 if (ret < 0) {
2664 cnt = ret;
2665 goto out;
2666 }
2667
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;
2679 }
2680 goto out;
2681 }
2682
2683 global_trace.entries = val;
2684 }
2685
2686 filp->f_pos += cnt;
2687
2688 /* If check pages failed, return ENOMEM */
2689 if (tracing_disabled)
2690 cnt = -ENOMEM;
2691 out:
2692 max_tr.entries = global_trace.entries;
2693 mutex_unlock(&trace_types_lock);
2694
2695 return cnt;
2696 }
2697
2698 static 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
2708 static ssize_t
2709 tracing_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
2716 if (!tr->ctrl || tracing_disabled)
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
2744 static struct file_operations tracing_max_lat_fops = {
2745 .open = tracing_open_generic,
2746 .read = tracing_max_lat_read,
2747 .write = tracing_max_lat_write,
2748 };
2749
2750 static struct file_operations tracing_ctrl_fops = {
2751 .open = tracing_open_generic,
2752 .read = tracing_ctrl_read,
2753 .write = tracing_ctrl_write,
2754 };
2755
2756 static struct file_operations set_tracer_fops = {
2757 .open = tracing_open_generic,
2758 .read = tracing_set_trace_read,
2759 .write = tracing_set_trace_write,
2760 };
2761
2762 static struct file_operations tracing_pipe_fops = {
2763 .open = tracing_open_pipe,
2764 .poll = tracing_poll_pipe,
2765 .read = tracing_read_pipe,
2766 .release = tracing_release_pipe,
2767 };
2768
2769 static struct file_operations tracing_entries_fops = {
2770 .open = tracing_open_generic,
2771 .read = tracing_entries_read,
2772 .write = tracing_entries_write,
2773 };
2774
2775 static struct file_operations tracing_mark_fops = {
2776 .open = tracing_open_generic,
2777 .write = tracing_mark_write,
2778 };
2779
2780 #ifdef CONFIG_DYNAMIC_FTRACE
2781
2782 static ssize_t
2783 tracing_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);
2791
2792 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
2793 }
2794
2795 static struct file_operations tracing_read_long_fops = {
2796 .open = tracing_open_generic,
2797 .read = tracing_read_long,
2798 };
2799 #endif
2800
2801 static struct dentry *d_tracer;
2802
2803 struct 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
2821 #ifdef CONFIG_FTRACE_SELFTEST
2822 /* Let selftest have access to static functions in this file */
2823 #include "trace_selftest.c"
2824 #endif
2825
2826 static __init int tracer_init_debugfs(void)
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
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
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)
2861 pr_warning("Could not create debugfs 'available_tracers' entry\n");
2862
2863 entry = debugfs_create_file("current_tracer", 0444, d_tracer,
2864 &global_trace, &set_tracer_fops);
2865 if (!entry)
2866 pr_warning("Could not create debugfs 'current_tracer' entry\n");
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 "
2879 "'tracing_thresh' entry\n");
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
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 "
2889 "'trace_pipe' entry\n");
2890
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 "
2895 "'trace_entries' entry\n");
2896
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
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
2911 #ifdef CONFIG_SYSPROF_TRACER
2912 init_tracer_sysprof_debugfs(d_tracer);
2913 #endif
2914 return 0;
2915 }
2916
2917 int trace_vprintk(unsigned long ip, const char *fmt, va_list args)
2918 {
2919 static DEFINE_SPINLOCK(trace_buf_lock);
2920 static char trace_buf[TRACE_BUF_SIZE];
2921
2922 struct ring_buffer_event *event;
2923 struct trace_array *tr = &global_trace;
2924 struct trace_array_cpu *data;
2925 struct print_entry *entry;
2926 unsigned long flags, irq_flags;
2927 long disabled;
2928 int cpu, len = 0, size;
2929
2930 if (!tr->ctrl || tracing_disabled)
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
2938 if (unlikely(disabled != 1))
2939 goto out;
2940
2941 spin_lock(&trace_buf_lock);
2942 len = vsnprintf(trace_buf, TRACE_BUF_SIZE, fmt, args);
2943
2944 len = min(len, TRACE_BUF_SIZE-1);
2945 trace_buf[len] = 0;
2946
2947 size = sizeof(*entry) + len + 1;
2948 event = ring_buffer_lock_reserve(tr->buffer, size, &irq_flags);
2949 if (!event)
2950 goto out_unlock;
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;
2955
2956 memcpy(&entry->buf, trace_buf, len);
2957 entry->buf[len] = 0;
2958 ring_buffer_unlock_commit(tr->buffer, event, irq_flags);
2959
2960 out_unlock:
2961 spin_unlock(&trace_buf_lock);
2962
2963 out:
2964 atomic_dec(&data->disabled);
2965 local_irq_restore(flags);
2966
2967 return len;
2968 }
2969 EXPORT_SYMBOL_GPL(trace_vprintk);
2970
2971 int __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 }
2984 EXPORT_SYMBOL_GPL(__ftrace_printk);
2985
2986 static int trace_panic_handler(struct notifier_block *this,
2987 unsigned long event, void *unused)
2988 {
2989 ftrace_dump();
2990 return NOTIFY_OK;
2991 }
2992
2993 static 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
2999 static 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
3013 static 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
3031 static void
3032 trace_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
3047 void 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;
3052 static cpumask_t mask;
3053 static int dump_ran;
3054 unsigned long flags;
3055 int cnt = 0, cpu;
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
3067 for_each_tracing_cpu(cpu) {
3068 atomic_inc(&global_trace.data[cpu]->disabled);
3069 }
3070
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
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
3112 out:
3113 spin_unlock_irqrestore(&ftrace_dump_lock, flags);
3114 }
3115
3116 __init static int tracer_alloc_buffers(void)
3117 {
3118 struct trace_array_cpu *data;
3119 int i;
3120
3121 /* TODO: make the number of buffers hot pluggable with CPUS */
3122 tracing_buffer_mask = cpu_possible_map;
3123
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;
3130 }
3131 global_trace.entries = ring_buffer_size(global_trace.buffer);
3132
3133 #ifdef CONFIG_TRACER_MAX_TRACE
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;
3141 }
3142 max_tr.entries = ring_buffer_size(max_tr.buffer);
3143 WARN_ON(max_tr.entries != global_trace.entries);
3144 #endif
3145
3146 /* Allocate the first page for all buffers */
3147 for_each_tracing_cpu(i) {
3148 data = global_trace.data[i] = &per_cpu(global_trace_cpu, i);
3149 max_tr.data[i] = &per_cpu(max_data, i);
3150 }
3151
3152 trace_init_cmdlines();
3153
3154 register_tracer(&nop_trace);
3155 #ifdef CONFIG_BOOT_TRACER
3156 register_tracer(&boot_tracer);
3157 current_trace = &boot_tracer;
3158 current_trace->init(&global_trace);
3159 #else
3160 current_trace = &nop_trace;
3161 #endif
3162
3163 /* All seems OK, enable tracing */
3164 global_trace.ctrl = tracer_enabled;
3165 tracing_disabled = 0;
3166
3167 atomic_notifier_chain_register(&panic_notifier_list,
3168 &trace_panic_notifier);
3169
3170 register_die_notifier(&trace_die_notifier);
3171
3172 return 0;
3173 }
3174 early_initcall(tracer_alloc_buffers);
3175 fs_initcall(tracer_init_debugfs);