3 * Function graph tracer.
4 * Copyright (c) 2008-2009 Frederic Weisbecker <fweisbec@gmail.com>
5 * Mostly borrowed from function tracer which
6 * is Copyright (c) Steven Rostedt <srostedt@redhat.com>
9 #include <linux/debugfs.h>
10 #include <linux/uaccess.h>
11 #include <linux/ftrace.h>
12 #include <linux/slab.h>
16 #include "trace_output.h"
18 struct fgraph_cpu_data
{
22 unsigned long enter_funcs
[FTRACE_RETFUNC_DEPTH
];
26 struct fgraph_cpu_data
*cpu_data
;
28 /* Place to preserve last processed entry. */
29 struct ftrace_graph_ent_entry ent
;
30 struct ftrace_graph_ret_entry ret
;
35 #define TRACE_GRAPH_INDENT 2
38 #define TRACE_GRAPH_PRINT_OVERRUN 0x1
39 #define TRACE_GRAPH_PRINT_CPU 0x2
40 #define TRACE_GRAPH_PRINT_OVERHEAD 0x4
41 #define TRACE_GRAPH_PRINT_PROC 0x8
42 #define TRACE_GRAPH_PRINT_DURATION 0x10
43 #define TRACE_GRAPH_PRINT_ABS_TIME 0x20
45 static struct tracer_opt trace_opts
[] = {
46 /* Display overruns? (for self-debug purpose) */
47 { TRACER_OPT(funcgraph
-overrun
, TRACE_GRAPH_PRINT_OVERRUN
) },
49 { TRACER_OPT(funcgraph
-cpu
, TRACE_GRAPH_PRINT_CPU
) },
50 /* Display Overhead ? */
51 { TRACER_OPT(funcgraph
-overhead
, TRACE_GRAPH_PRINT_OVERHEAD
) },
52 /* Display proc name/pid */
53 { TRACER_OPT(funcgraph
-proc
, TRACE_GRAPH_PRINT_PROC
) },
54 /* Display duration of execution */
55 { TRACER_OPT(funcgraph
-duration
, TRACE_GRAPH_PRINT_DURATION
) },
56 /* Display absolute time of an entry */
57 { TRACER_OPT(funcgraph
-abstime
, TRACE_GRAPH_PRINT_ABS_TIME
) },
61 static struct tracer_flags tracer_flags
= {
62 /* Don't display overruns and proc by default */
63 .val
= TRACE_GRAPH_PRINT_CPU
| TRACE_GRAPH_PRINT_OVERHEAD
|
64 TRACE_GRAPH_PRINT_DURATION
,
68 static struct trace_array
*graph_array
;
71 /* Add a function return address to the trace stack on thread info.*/
73 ftrace_push_return_trace(unsigned long ret
, unsigned long func
, int *depth
,
74 unsigned long frame_pointer
)
76 unsigned long long calltime
;
79 if (!current
->ret_stack
)
83 * We must make sure the ret_stack is tested before we read
88 /* The return trace stack is full */
89 if (current
->curr_ret_stack
== FTRACE_RETFUNC_DEPTH
- 1) {
90 atomic_inc(¤t
->trace_overrun
);
94 calltime
= trace_clock_local();
96 index
= ++current
->curr_ret_stack
;
98 current
->ret_stack
[index
].ret
= ret
;
99 current
->ret_stack
[index
].func
= func
;
100 current
->ret_stack
[index
].calltime
= calltime
;
101 current
->ret_stack
[index
].subtime
= 0;
102 current
->ret_stack
[index
].fp
= frame_pointer
;
108 /* Retrieve a function return address to the trace stack on thread info.*/
110 ftrace_pop_return_trace(struct ftrace_graph_ret
*trace
, unsigned long *ret
,
111 unsigned long frame_pointer
)
115 index
= current
->curr_ret_stack
;
117 if (unlikely(index
< 0)) {
120 /* Might as well panic, otherwise we have no where to go */
121 *ret
= (unsigned long)panic
;
125 #ifdef CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST
127 * The arch may choose to record the frame pointer used
128 * and check it here to make sure that it is what we expect it
129 * to be. If gcc does not set the place holder of the return
130 * address in the frame pointer, and does a copy instead, then
131 * the function graph trace will fail. This test detects this
134 * Currently, x86_32 with optimize for size (-Os) makes the latest
137 if (unlikely(current
->ret_stack
[index
].fp
!= frame_pointer
)) {
139 WARN(1, "Bad frame pointer: expected %lx, received %lx\n"
140 " from func %ps return to %lx\n",
141 current
->ret_stack
[index
].fp
,
143 (void *)current
->ret_stack
[index
].func
,
144 current
->ret_stack
[index
].ret
);
145 *ret
= (unsigned long)panic
;
150 *ret
= current
->ret_stack
[index
].ret
;
151 trace
->func
= current
->ret_stack
[index
].func
;
152 trace
->calltime
= current
->ret_stack
[index
].calltime
;
153 trace
->overrun
= atomic_read(¤t
->trace_overrun
);
154 trace
->depth
= index
;
158 * Send the trace to the ring-buffer.
159 * @return the original return address.
161 unsigned long ftrace_return_to_handler(unsigned long frame_pointer
)
163 struct ftrace_graph_ret trace
;
166 ftrace_pop_return_trace(&trace
, &ret
, frame_pointer
);
167 trace
.rettime
= trace_clock_local();
168 ftrace_graph_return(&trace
);
170 current
->curr_ret_stack
--;
172 if (unlikely(!ret
)) {
175 /* Might as well panic. What else to do? */
176 ret
= (unsigned long)panic
;
182 int __trace_graph_entry(struct trace_array
*tr
,
183 struct ftrace_graph_ent
*trace
,
187 struct ftrace_event_call
*call
= &event_funcgraph_entry
;
188 struct ring_buffer_event
*event
;
189 struct ring_buffer
*buffer
= tr
->buffer
;
190 struct ftrace_graph_ent_entry
*entry
;
192 if (unlikely(__this_cpu_read(ftrace_cpu_disabled
)))
195 event
= trace_buffer_lock_reserve(buffer
, TRACE_GRAPH_ENT
,
196 sizeof(*entry
), flags
, pc
);
199 entry
= ring_buffer_event_data(event
);
200 entry
->graph_ent
= *trace
;
201 if (!filter_current_check_discard(buffer
, call
, entry
, event
))
202 ring_buffer_unlock_commit(buffer
, event
);
207 int trace_graph_entry(struct ftrace_graph_ent
*trace
)
209 struct trace_array
*tr
= graph_array
;
210 struct trace_array_cpu
*data
;
217 if (!ftrace_trace_task(current
))
220 /* trace it when it is-nested-in or is a function enabled. */
221 if (!(trace
->depth
|| ftrace_graph_addr(trace
->func
)))
224 local_irq_save(flags
);
225 cpu
= raw_smp_processor_id();
226 data
= tr
->data
[cpu
];
227 disabled
= atomic_inc_return(&data
->disabled
);
228 if (likely(disabled
== 1)) {
229 pc
= preempt_count();
230 ret
= __trace_graph_entry(tr
, trace
, flags
, pc
);
235 atomic_dec(&data
->disabled
);
236 local_irq_restore(flags
);
241 int trace_graph_thresh_entry(struct ftrace_graph_ent
*trace
)
246 return trace_graph_entry(trace
);
249 void __trace_graph_return(struct trace_array
*tr
,
250 struct ftrace_graph_ret
*trace
,
254 struct ftrace_event_call
*call
= &event_funcgraph_exit
;
255 struct ring_buffer_event
*event
;
256 struct ring_buffer
*buffer
= tr
->buffer
;
257 struct ftrace_graph_ret_entry
*entry
;
259 if (unlikely(__this_cpu_read(ftrace_cpu_disabled
)))
262 event
= trace_buffer_lock_reserve(buffer
, TRACE_GRAPH_RET
,
263 sizeof(*entry
), flags
, pc
);
266 entry
= ring_buffer_event_data(event
);
268 if (!filter_current_check_discard(buffer
, call
, entry
, event
))
269 ring_buffer_unlock_commit(buffer
, event
);
272 void trace_graph_return(struct ftrace_graph_ret
*trace
)
274 struct trace_array
*tr
= graph_array
;
275 struct trace_array_cpu
*data
;
281 local_irq_save(flags
);
282 cpu
= raw_smp_processor_id();
283 data
= tr
->data
[cpu
];
284 disabled
= atomic_inc_return(&data
->disabled
);
285 if (likely(disabled
== 1)) {
286 pc
= preempt_count();
287 __trace_graph_return(tr
, trace
, flags
, pc
);
289 atomic_dec(&data
->disabled
);
290 local_irq_restore(flags
);
293 void set_graph_array(struct trace_array
*tr
)
297 /* Make graph_array visible before we start tracing */
302 void trace_graph_thresh_return(struct ftrace_graph_ret
*trace
)
304 if (tracing_thresh
&&
305 (trace
->rettime
- trace
->calltime
< tracing_thresh
))
308 trace_graph_return(trace
);
311 static int graph_trace_init(struct trace_array
*tr
)
317 ret
= register_ftrace_graph(&trace_graph_thresh_return
,
318 &trace_graph_thresh_entry
);
320 ret
= register_ftrace_graph(&trace_graph_return
,
324 tracing_start_cmdline_record();
329 static void graph_trace_reset(struct trace_array
*tr
)
331 tracing_stop_cmdline_record();
332 unregister_ftrace_graph();
335 static int max_bytes_for_cpu
;
337 static enum print_line_t
338 print_graph_cpu(struct trace_seq
*s
, int cpu
)
343 * Start with a space character - to make it stand out
344 * to the right a bit when trace output is pasted into
347 ret
= trace_seq_printf(s
, " %*d) ", max_bytes_for_cpu
, cpu
);
349 return TRACE_TYPE_PARTIAL_LINE
;
351 return TRACE_TYPE_HANDLED
;
354 #define TRACE_GRAPH_PROCINFO_LENGTH 14
356 static enum print_line_t
357 print_graph_proc(struct trace_seq
*s
, pid_t pid
)
359 char comm
[TASK_COMM_LEN
];
360 /* sign + log10(MAX_INT) + '\0' */
367 trace_find_cmdline(pid
, comm
);
369 sprintf(pid_str
, "%d", pid
);
371 /* 1 stands for the "-" character */
372 len
= strlen(comm
) + strlen(pid_str
) + 1;
374 if (len
< TRACE_GRAPH_PROCINFO_LENGTH
)
375 spaces
= TRACE_GRAPH_PROCINFO_LENGTH
- len
;
377 /* First spaces to align center */
378 for (i
= 0; i
< spaces
/ 2; i
++) {
379 ret
= trace_seq_printf(s
, " ");
381 return TRACE_TYPE_PARTIAL_LINE
;
384 ret
= trace_seq_printf(s
, "%s-%s", comm
, pid_str
);
386 return TRACE_TYPE_PARTIAL_LINE
;
388 /* Last spaces to align center */
389 for (i
= 0; i
< spaces
- (spaces
/ 2); i
++) {
390 ret
= trace_seq_printf(s
, " ");
392 return TRACE_TYPE_PARTIAL_LINE
;
394 return TRACE_TYPE_HANDLED
;
398 static enum print_line_t
399 print_graph_lat_fmt(struct trace_seq
*s
, struct trace_entry
*entry
)
401 if (!trace_seq_putc(s
, ' '))
404 return trace_print_lat_fmt(s
, entry
);
407 /* If the pid changed since the last trace, output this event */
408 static enum print_line_t
409 verif_pid(struct trace_seq
*s
, pid_t pid
, int cpu
, struct fgraph_data
*data
)
416 return TRACE_TYPE_HANDLED
;
418 last_pid
= &(per_cpu_ptr(data
->cpu_data
, cpu
)->last_pid
);
420 if (*last_pid
== pid
)
421 return TRACE_TYPE_HANDLED
;
423 prev_pid
= *last_pid
;
427 return TRACE_TYPE_HANDLED
;
429 * Context-switch trace line:
431 ------------------------------------------
432 | 1) migration/0--1 => sshd-1755
433 ------------------------------------------
436 ret
= trace_seq_printf(s
,
437 " ------------------------------------------\n");
439 return TRACE_TYPE_PARTIAL_LINE
;
441 ret
= print_graph_cpu(s
, cpu
);
442 if (ret
== TRACE_TYPE_PARTIAL_LINE
)
443 return TRACE_TYPE_PARTIAL_LINE
;
445 ret
= print_graph_proc(s
, prev_pid
);
446 if (ret
== TRACE_TYPE_PARTIAL_LINE
)
447 return TRACE_TYPE_PARTIAL_LINE
;
449 ret
= trace_seq_printf(s
, " => ");
451 return TRACE_TYPE_PARTIAL_LINE
;
453 ret
= print_graph_proc(s
, pid
);
454 if (ret
== TRACE_TYPE_PARTIAL_LINE
)
455 return TRACE_TYPE_PARTIAL_LINE
;
457 ret
= trace_seq_printf(s
,
458 "\n ------------------------------------------\n\n");
460 return TRACE_TYPE_PARTIAL_LINE
;
462 return TRACE_TYPE_HANDLED
;
465 static struct ftrace_graph_ret_entry
*
466 get_return_for_leaf(struct trace_iterator
*iter
,
467 struct ftrace_graph_ent_entry
*curr
)
469 struct fgraph_data
*data
= iter
->private;
470 struct ring_buffer_iter
*ring_iter
= NULL
;
471 struct ring_buffer_event
*event
;
472 struct ftrace_graph_ret_entry
*next
;
475 * If the previous output failed to write to the seq buffer,
476 * then we just reuse the data from before.
478 if (data
&& data
->failed
) {
483 ring_iter
= iter
->buffer_iter
[iter
->cpu
];
485 /* First peek to compare current entry and the next one */
487 event
= ring_buffer_iter_peek(ring_iter
, NULL
);
490 * We need to consume the current entry to see
493 ring_buffer_consume(iter
->tr
->buffer
, iter
->cpu
,
495 event
= ring_buffer_peek(iter
->tr
->buffer
, iter
->cpu
,
502 next
= ring_buffer_event_data(event
);
506 * Save current and next entries for later reference
507 * if the output fails.
514 if (next
->ent
.type
!= TRACE_GRAPH_RET
)
517 if (curr
->ent
.pid
!= next
->ent
.pid
||
518 curr
->graph_ent
.func
!= next
->ret
.func
)
521 /* this is a leaf, now advance the iterator */
523 ring_buffer_read(ring_iter
, NULL
);
528 /* Signal a overhead of time execution to the output */
530 print_graph_overhead(unsigned long long duration
, struct trace_seq
*s
,
533 /* If duration disappear, we don't need anything */
534 if (!(flags
& TRACE_GRAPH_PRINT_DURATION
))
537 /* Non nested entry or return */
539 return trace_seq_printf(s
, " ");
541 if (flags
& TRACE_GRAPH_PRINT_OVERHEAD
) {
542 /* Duration exceeded 100 msecs */
543 if (duration
> 100000ULL)
544 return trace_seq_printf(s
, "! ");
546 /* Duration exceeded 10 msecs */
547 if (duration
> 10000ULL)
548 return trace_seq_printf(s
, "+ ");
551 return trace_seq_printf(s
, " ");
554 static int print_graph_abs_time(u64 t
, struct trace_seq
*s
)
556 unsigned long usecs_rem
;
558 usecs_rem
= do_div(t
, NSEC_PER_SEC
);
561 return trace_seq_printf(s
, "%5lu.%06lu | ",
562 (unsigned long)t
, usecs_rem
);
565 static enum print_line_t
566 print_graph_irq(struct trace_iterator
*iter
, unsigned long addr
,
567 enum trace_type type
, int cpu
, pid_t pid
, u32 flags
)
570 struct trace_seq
*s
= &iter
->seq
;
572 if (addr
< (unsigned long)__irqentry_text_start
||
573 addr
>= (unsigned long)__irqentry_text_end
)
574 return TRACE_TYPE_UNHANDLED
;
577 if (flags
& TRACE_GRAPH_PRINT_ABS_TIME
) {
578 ret
= print_graph_abs_time(iter
->ts
, s
);
580 return TRACE_TYPE_PARTIAL_LINE
;
584 if (flags
& TRACE_GRAPH_PRINT_CPU
) {
585 ret
= print_graph_cpu(s
, cpu
);
586 if (ret
== TRACE_TYPE_PARTIAL_LINE
)
587 return TRACE_TYPE_PARTIAL_LINE
;
591 if (flags
& TRACE_GRAPH_PRINT_PROC
) {
592 ret
= print_graph_proc(s
, pid
);
593 if (ret
== TRACE_TYPE_PARTIAL_LINE
)
594 return TRACE_TYPE_PARTIAL_LINE
;
595 ret
= trace_seq_printf(s
, " | ");
597 return TRACE_TYPE_PARTIAL_LINE
;
601 ret
= print_graph_overhead(-1, s
, flags
);
603 return TRACE_TYPE_PARTIAL_LINE
;
605 if (type
== TRACE_GRAPH_ENT
)
606 ret
= trace_seq_printf(s
, "==========>");
608 ret
= trace_seq_printf(s
, "<==========");
611 return TRACE_TYPE_PARTIAL_LINE
;
613 /* Don't close the duration column if haven't one */
614 if (flags
& TRACE_GRAPH_PRINT_DURATION
)
615 trace_seq_printf(s
, " |");
616 ret
= trace_seq_printf(s
, "\n");
619 return TRACE_TYPE_PARTIAL_LINE
;
620 return TRACE_TYPE_HANDLED
;
624 trace_print_graph_duration(unsigned long long duration
, struct trace_seq
*s
)
626 unsigned long nsecs_rem
= do_div(duration
, 1000);
627 /* log10(ULONG_MAX) + '\0' */
633 sprintf(msecs_str
, "%lu", (unsigned long) duration
);
636 ret
= trace_seq_printf(s
, "%s", msecs_str
);
638 return TRACE_TYPE_PARTIAL_LINE
;
640 len
= strlen(msecs_str
);
642 /* Print nsecs (we don't want to exceed 7 numbers) */
644 snprintf(nsecs_str
, 8 - len
, "%03lu", nsecs_rem
);
645 ret
= trace_seq_printf(s
, ".%s", nsecs_str
);
647 return TRACE_TYPE_PARTIAL_LINE
;
648 len
+= strlen(nsecs_str
);
651 ret
= trace_seq_printf(s
, " us ");
653 return TRACE_TYPE_PARTIAL_LINE
;
655 /* Print remaining spaces to fit the row's width */
656 for (i
= len
; i
< 7; i
++) {
657 ret
= trace_seq_printf(s
, " ");
659 return TRACE_TYPE_PARTIAL_LINE
;
661 return TRACE_TYPE_HANDLED
;
664 static enum print_line_t
665 print_graph_duration(unsigned long long duration
, struct trace_seq
*s
)
669 ret
= trace_print_graph_duration(duration
, s
);
670 if (ret
!= TRACE_TYPE_HANDLED
)
673 ret
= trace_seq_printf(s
, "| ");
675 return TRACE_TYPE_PARTIAL_LINE
;
677 return TRACE_TYPE_HANDLED
;
680 /* Case of a leaf function on its call entry */
681 static enum print_line_t
682 print_graph_entry_leaf(struct trace_iterator
*iter
,
683 struct ftrace_graph_ent_entry
*entry
,
684 struct ftrace_graph_ret_entry
*ret_entry
,
685 struct trace_seq
*s
, u32 flags
)
687 struct fgraph_data
*data
= iter
->private;
688 struct ftrace_graph_ret
*graph_ret
;
689 struct ftrace_graph_ent
*call
;
690 unsigned long long duration
;
694 graph_ret
= &ret_entry
->ret
;
695 call
= &entry
->graph_ent
;
696 duration
= graph_ret
->rettime
- graph_ret
->calltime
;
699 struct fgraph_cpu_data
*cpu_data
;
702 cpu_data
= per_cpu_ptr(data
->cpu_data
, cpu
);
705 * Comments display at + 1 to depth. Since
706 * this is a leaf function, keep the comments
707 * equal to this depth.
709 cpu_data
->depth
= call
->depth
- 1;
711 /* No need to keep this function around for this depth */
712 if (call
->depth
< FTRACE_RETFUNC_DEPTH
)
713 cpu_data
->enter_funcs
[call
->depth
] = 0;
717 ret
= print_graph_overhead(duration
, s
, flags
);
719 return TRACE_TYPE_PARTIAL_LINE
;
722 if (flags
& TRACE_GRAPH_PRINT_DURATION
) {
723 ret
= print_graph_duration(duration
, s
);
724 if (ret
== TRACE_TYPE_PARTIAL_LINE
)
725 return TRACE_TYPE_PARTIAL_LINE
;
729 for (i
= 0; i
< call
->depth
* TRACE_GRAPH_INDENT
; i
++) {
730 ret
= trace_seq_printf(s
, " ");
732 return TRACE_TYPE_PARTIAL_LINE
;
735 ret
= trace_seq_printf(s
, "%ps();\n", (void *)call
->func
);
737 return TRACE_TYPE_PARTIAL_LINE
;
739 return TRACE_TYPE_HANDLED
;
742 static enum print_line_t
743 print_graph_entry_nested(struct trace_iterator
*iter
,
744 struct ftrace_graph_ent_entry
*entry
,
745 struct trace_seq
*s
, int cpu
, u32 flags
)
747 struct ftrace_graph_ent
*call
= &entry
->graph_ent
;
748 struct fgraph_data
*data
= iter
->private;
753 struct fgraph_cpu_data
*cpu_data
;
756 cpu_data
= per_cpu_ptr(data
->cpu_data
, cpu
);
757 cpu_data
->depth
= call
->depth
;
759 /* Save this function pointer to see if the exit matches */
760 if (call
->depth
< FTRACE_RETFUNC_DEPTH
)
761 cpu_data
->enter_funcs
[call
->depth
] = call
->func
;
765 ret
= print_graph_overhead(-1, s
, flags
);
767 return TRACE_TYPE_PARTIAL_LINE
;
770 if (flags
& TRACE_GRAPH_PRINT_DURATION
) {
771 ret
= trace_seq_printf(s
, " | ");
773 return TRACE_TYPE_PARTIAL_LINE
;
777 for (i
= 0; i
< call
->depth
* TRACE_GRAPH_INDENT
; i
++) {
778 ret
= trace_seq_printf(s
, " ");
780 return TRACE_TYPE_PARTIAL_LINE
;
783 ret
= trace_seq_printf(s
, "%ps() {\n", (void *)call
->func
);
785 return TRACE_TYPE_PARTIAL_LINE
;
788 * we already consumed the current entry to check the next one
789 * and see if this is a leaf.
791 return TRACE_TYPE_NO_CONSUME
;
794 static enum print_line_t
795 print_graph_prologue(struct trace_iterator
*iter
, struct trace_seq
*s
,
796 int type
, unsigned long addr
, u32 flags
)
798 struct fgraph_data
*data
= iter
->private;
799 struct trace_entry
*ent
= iter
->ent
;
804 if (verif_pid(s
, ent
->pid
, cpu
, data
) == TRACE_TYPE_PARTIAL_LINE
)
805 return TRACE_TYPE_PARTIAL_LINE
;
809 ret
= print_graph_irq(iter
, addr
, type
, cpu
, ent
->pid
, flags
);
810 if (ret
== TRACE_TYPE_PARTIAL_LINE
)
811 return TRACE_TYPE_PARTIAL_LINE
;
815 if (flags
& TRACE_GRAPH_PRINT_ABS_TIME
) {
816 ret
= print_graph_abs_time(iter
->ts
, s
);
818 return TRACE_TYPE_PARTIAL_LINE
;
822 if (flags
& TRACE_GRAPH_PRINT_CPU
) {
823 ret
= print_graph_cpu(s
, cpu
);
824 if (ret
== TRACE_TYPE_PARTIAL_LINE
)
825 return TRACE_TYPE_PARTIAL_LINE
;
829 if (flags
& TRACE_GRAPH_PRINT_PROC
) {
830 ret
= print_graph_proc(s
, ent
->pid
);
831 if (ret
== TRACE_TYPE_PARTIAL_LINE
)
832 return TRACE_TYPE_PARTIAL_LINE
;
834 ret
= trace_seq_printf(s
, " | ");
836 return TRACE_TYPE_PARTIAL_LINE
;
840 if (trace_flags
& TRACE_ITER_LATENCY_FMT
) {
841 ret
= print_graph_lat_fmt(s
, ent
);
842 if (ret
== TRACE_TYPE_PARTIAL_LINE
)
843 return TRACE_TYPE_PARTIAL_LINE
;
849 static enum print_line_t
850 print_graph_entry(struct ftrace_graph_ent_entry
*field
, struct trace_seq
*s
,
851 struct trace_iterator
*iter
, u32 flags
)
853 struct fgraph_data
*data
= iter
->private;
854 struct ftrace_graph_ent
*call
= &field
->graph_ent
;
855 struct ftrace_graph_ret_entry
*leaf_ret
;
856 static enum print_line_t ret
;
859 if (print_graph_prologue(iter
, s
, TRACE_GRAPH_ENT
, call
->func
, flags
))
860 return TRACE_TYPE_PARTIAL_LINE
;
862 leaf_ret
= get_return_for_leaf(iter
, field
);
864 ret
= print_graph_entry_leaf(iter
, field
, leaf_ret
, s
, flags
);
866 ret
= print_graph_entry_nested(iter
, field
, s
, cpu
, flags
);
870 * If we failed to write our output, then we need to make
871 * note of it. Because we already consumed our entry.
883 static enum print_line_t
884 print_graph_return(struct ftrace_graph_ret
*trace
, struct trace_seq
*s
,
885 struct trace_entry
*ent
, struct trace_iterator
*iter
,
888 unsigned long long duration
= trace
->rettime
- trace
->calltime
;
889 struct fgraph_data
*data
= iter
->private;
890 pid_t pid
= ent
->pid
;
897 struct fgraph_cpu_data
*cpu_data
;
900 cpu_data
= per_cpu_ptr(data
->cpu_data
, cpu
);
903 * Comments display at + 1 to depth. This is the
904 * return from a function, we now want the comments
905 * to display at the same level of the bracket.
907 cpu_data
->depth
= trace
->depth
- 1;
909 if (trace
->depth
< FTRACE_RETFUNC_DEPTH
) {
910 if (cpu_data
->enter_funcs
[trace
->depth
] != trace
->func
)
912 cpu_data
->enter_funcs
[trace
->depth
] = 0;
916 if (print_graph_prologue(iter
, s
, 0, 0, flags
))
917 return TRACE_TYPE_PARTIAL_LINE
;
920 ret
= print_graph_overhead(duration
, s
, flags
);
922 return TRACE_TYPE_PARTIAL_LINE
;
925 if (flags
& TRACE_GRAPH_PRINT_DURATION
) {
926 ret
= print_graph_duration(duration
, s
);
927 if (ret
== TRACE_TYPE_PARTIAL_LINE
)
928 return TRACE_TYPE_PARTIAL_LINE
;
932 for (i
= 0; i
< trace
->depth
* TRACE_GRAPH_INDENT
; i
++) {
933 ret
= trace_seq_printf(s
, " ");
935 return TRACE_TYPE_PARTIAL_LINE
;
939 * If the return function does not have a matching entry,
940 * then the entry was lost. Instead of just printing
941 * the '}' and letting the user guess what function this
942 * belongs to, write out the function name.
945 ret
= trace_seq_printf(s
, "}\n");
947 return TRACE_TYPE_PARTIAL_LINE
;
949 ret
= trace_seq_printf(s
, "} /* %ps */\n", (void *)trace
->func
);
951 return TRACE_TYPE_PARTIAL_LINE
;
955 if (flags
& TRACE_GRAPH_PRINT_OVERRUN
) {
956 ret
= trace_seq_printf(s
, " (Overruns: %lu)\n",
959 return TRACE_TYPE_PARTIAL_LINE
;
962 ret
= print_graph_irq(iter
, trace
->func
, TRACE_GRAPH_RET
,
964 if (ret
== TRACE_TYPE_PARTIAL_LINE
)
965 return TRACE_TYPE_PARTIAL_LINE
;
967 return TRACE_TYPE_HANDLED
;
970 static enum print_line_t
971 print_graph_comment(struct trace_seq
*s
, struct trace_entry
*ent
,
972 struct trace_iterator
*iter
, u32 flags
)
974 unsigned long sym_flags
= (trace_flags
& TRACE_ITER_SYM_MASK
);
975 struct fgraph_data
*data
= iter
->private;
976 struct trace_event
*event
;
982 depth
= per_cpu_ptr(data
->cpu_data
, iter
->cpu
)->depth
;
984 if (print_graph_prologue(iter
, s
, 0, 0, flags
))
985 return TRACE_TYPE_PARTIAL_LINE
;
988 ret
= print_graph_overhead(-1, s
, flags
);
990 return TRACE_TYPE_PARTIAL_LINE
;
993 if (flags
& TRACE_GRAPH_PRINT_DURATION
) {
994 ret
= trace_seq_printf(s
, " | ");
996 return TRACE_TYPE_PARTIAL_LINE
;
1001 for (i
= 0; i
< (depth
+ 1) * TRACE_GRAPH_INDENT
; i
++) {
1002 ret
= trace_seq_printf(s
, " ");
1004 return TRACE_TYPE_PARTIAL_LINE
;
1008 ret
= trace_seq_printf(s
, "/* ");
1010 return TRACE_TYPE_PARTIAL_LINE
;
1012 switch (iter
->ent
->type
) {
1014 ret
= trace_print_bprintk_msg_only(iter
);
1015 if (ret
!= TRACE_TYPE_HANDLED
)
1019 ret
= trace_print_printk_msg_only(iter
);
1020 if (ret
!= TRACE_TYPE_HANDLED
)
1024 event
= ftrace_find_event(ent
->type
);
1026 return TRACE_TYPE_UNHANDLED
;
1028 ret
= event
->funcs
->trace(iter
, sym_flags
, event
);
1029 if (ret
!= TRACE_TYPE_HANDLED
)
1033 /* Strip ending newline */
1034 if (s
->buffer
[s
->len
- 1] == '\n') {
1035 s
->buffer
[s
->len
- 1] = '\0';
1039 ret
= trace_seq_printf(s
, " */\n");
1041 return TRACE_TYPE_PARTIAL_LINE
;
1043 return TRACE_TYPE_HANDLED
;
1048 print_graph_function_flags(struct trace_iterator
*iter
, u32 flags
)
1050 struct ftrace_graph_ent_entry
*field
;
1051 struct fgraph_data
*data
= iter
->private;
1052 struct trace_entry
*entry
= iter
->ent
;
1053 struct trace_seq
*s
= &iter
->seq
;
1054 int cpu
= iter
->cpu
;
1057 if (data
&& per_cpu_ptr(data
->cpu_data
, cpu
)->ignore
) {
1058 per_cpu_ptr(data
->cpu_data
, cpu
)->ignore
= 0;
1059 return TRACE_TYPE_HANDLED
;
1063 * If the last output failed, there's a possibility we need
1064 * to print out the missing entry which would never go out.
1066 if (data
&& data
->failed
) {
1068 iter
->cpu
= data
->cpu
;
1069 ret
= print_graph_entry(field
, s
, iter
, flags
);
1070 if (ret
== TRACE_TYPE_HANDLED
&& iter
->cpu
!= cpu
) {
1071 per_cpu_ptr(data
->cpu_data
, iter
->cpu
)->ignore
= 1;
1072 ret
= TRACE_TYPE_NO_CONSUME
;
1078 switch (entry
->type
) {
1079 case TRACE_GRAPH_ENT
: {
1081 * print_graph_entry() may consume the current event,
1082 * thus @field may become invalid, so we need to save it.
1083 * sizeof(struct ftrace_graph_ent_entry) is very small,
1084 * it can be safely saved at the stack.
1086 struct ftrace_graph_ent_entry saved
;
1087 trace_assign_type(field
, entry
);
1089 return print_graph_entry(&saved
, s
, iter
, flags
);
1091 case TRACE_GRAPH_RET
: {
1092 struct ftrace_graph_ret_entry
*field
;
1093 trace_assign_type(field
, entry
);
1094 return print_graph_return(&field
->ret
, s
, entry
, iter
, flags
);
1098 /* dont trace stack and functions as comments */
1099 return TRACE_TYPE_UNHANDLED
;
1102 return print_graph_comment(s
, entry
, iter
, flags
);
1105 return TRACE_TYPE_HANDLED
;
1108 static enum print_line_t
1109 print_graph_function(struct trace_iterator
*iter
)
1111 return print_graph_function_flags(iter
, tracer_flags
.val
);
1114 static enum print_line_t
1115 print_graph_function_event(struct trace_iterator
*iter
, int flags
,
1116 struct trace_event
*event
)
1118 return print_graph_function(iter
);
1121 static void print_lat_header(struct seq_file
*s
, u32 flags
)
1123 static const char spaces
[] = " " /* 16 spaces */
1125 " "; /* 17 spaces */
1128 if (flags
& TRACE_GRAPH_PRINT_ABS_TIME
)
1130 if (flags
& TRACE_GRAPH_PRINT_CPU
)
1132 if (flags
& TRACE_GRAPH_PRINT_PROC
)
1135 seq_printf(s
, "#%.*s _-----=> irqs-off \n", size
, spaces
);
1136 seq_printf(s
, "#%.*s / _----=> need-resched \n", size
, spaces
);
1137 seq_printf(s
, "#%.*s| / _---=> hardirq/softirq \n", size
, spaces
);
1138 seq_printf(s
, "#%.*s|| / _--=> preempt-depth \n", size
, spaces
);
1139 seq_printf(s
, "#%.*s||| / _-=> lock-depth \n", size
, spaces
);
1140 seq_printf(s
, "#%.*s|||| / \n", size
, spaces
);
1143 void print_graph_headers_flags(struct seq_file
*s
, u32 flags
)
1145 int lat
= trace_flags
& TRACE_ITER_LATENCY_FMT
;
1148 print_lat_header(s
, flags
);
1152 if (flags
& TRACE_GRAPH_PRINT_ABS_TIME
)
1153 seq_printf(s
, " TIME ");
1154 if (flags
& TRACE_GRAPH_PRINT_CPU
)
1155 seq_printf(s
, " CPU");
1156 if (flags
& TRACE_GRAPH_PRINT_PROC
)
1157 seq_printf(s
, " TASK/PID ");
1159 seq_printf(s
, "|||||");
1160 if (flags
& TRACE_GRAPH_PRINT_DURATION
)
1161 seq_printf(s
, " DURATION ");
1162 seq_printf(s
, " FUNCTION CALLS\n");
1166 if (flags
& TRACE_GRAPH_PRINT_ABS_TIME
)
1167 seq_printf(s
, " | ");
1168 if (flags
& TRACE_GRAPH_PRINT_CPU
)
1169 seq_printf(s
, " | ");
1170 if (flags
& TRACE_GRAPH_PRINT_PROC
)
1171 seq_printf(s
, " | | ");
1173 seq_printf(s
, "|||||");
1174 if (flags
& TRACE_GRAPH_PRINT_DURATION
)
1175 seq_printf(s
, " | | ");
1176 seq_printf(s
, " | | | |\n");
1179 void print_graph_headers(struct seq_file
*s
)
1181 print_graph_headers_flags(s
, tracer_flags
.val
);
1184 void graph_trace_open(struct trace_iterator
*iter
)
1186 /* pid and depth on the last trace processed */
1187 struct fgraph_data
*data
;
1190 iter
->private = NULL
;
1192 data
= kzalloc(sizeof(*data
), GFP_KERNEL
);
1196 data
->cpu_data
= alloc_percpu(struct fgraph_cpu_data
);
1197 if (!data
->cpu_data
)
1200 for_each_possible_cpu(cpu
) {
1201 pid_t
*pid
= &(per_cpu_ptr(data
->cpu_data
, cpu
)->last_pid
);
1202 int *depth
= &(per_cpu_ptr(data
->cpu_data
, cpu
)->depth
);
1203 int *ignore
= &(per_cpu_ptr(data
->cpu_data
, cpu
)->ignore
);
1209 iter
->private = data
;
1216 pr_warning("function graph tracer: not enough memory\n");
1219 void graph_trace_close(struct trace_iterator
*iter
)
1221 struct fgraph_data
*data
= iter
->private;
1224 free_percpu(data
->cpu_data
);
1229 static struct trace_event_functions graph_functions
= {
1230 .trace
= print_graph_function_event
,
1233 static struct trace_event graph_trace_entry_event
= {
1234 .type
= TRACE_GRAPH_ENT
,
1235 .funcs
= &graph_functions
,
1238 static struct trace_event graph_trace_ret_event
= {
1239 .type
= TRACE_GRAPH_RET
,
1240 .funcs
= &graph_functions
1243 static struct tracer graph_trace __read_mostly
= {
1244 .name
= "function_graph",
1245 .open
= graph_trace_open
,
1246 .pipe_open
= graph_trace_open
,
1247 .close
= graph_trace_close
,
1248 .pipe_close
= graph_trace_close
,
1249 .wait_pipe
= poll_wait_pipe
,
1250 .init
= graph_trace_init
,
1251 .reset
= graph_trace_reset
,
1252 .print_line
= print_graph_function
,
1253 .print_header
= print_graph_headers
,
1254 .flags
= &tracer_flags
,
1255 #ifdef CONFIG_FTRACE_SELFTEST
1256 .selftest
= trace_selftest_startup_function_graph
,
1260 static __init
int init_graph_trace(void)
1262 max_bytes_for_cpu
= snprintf(NULL
, 0, "%d", nr_cpu_ids
- 1);
1264 if (!register_ftrace_event(&graph_trace_entry_event
)) {
1265 pr_warning("Warning: could not register graph trace events\n");
1269 if (!register_ftrace_event(&graph_trace_ret_event
)) {
1270 pr_warning("Warning: could not register graph trace events\n");
1274 return register_tracer(&graph_trace
);
1277 device_initcall(init_graph_trace
);