blob: 61d0b73dabf57953895b081c5a67a9af04868ddb [file] [log] [blame]
Steven Rostedt1b29b012008-05-12 21:20:42 +02001/*
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 * Based on code from the latency_tracer, that is:
8 *
9 * Copyright (C) 2004-2006 Ingo Molnar
10 * Copyright (C) 2004 William Lee Irwin III
11 */
Steven Rostedt1b29b012008-05-12 21:20:42 +020012#include <linux/debugfs.h>
13#include <linux/uaccess.h>
14#include <linux/ftrace.h>
Ingo Molnar2e0f5762008-05-12 21:20:49 +020015#include <linux/fs.h>
Steven Rostedt1b29b012008-05-12 21:20:42 +020016
17#include "trace.h"
18
Steven Rostedt53614992009-01-15 19:12:40 -050019static struct trace_array *func_trace;
20
Ingo Molnare309b412008-05-12 21:20:51 +020021static void start_function_trace(struct trace_array *tr)
Steven Rostedt1b29b012008-05-12 21:20:42 +020022{
Steven Rostedtbb3c3c92009-01-15 20:40:23 -050023 func_trace = tr;
Steven Rostedt26bc83f2008-07-10 20:58:14 -040024 tr->cpu = get_cpu();
Pekka J Enberg213cc062008-12-19 12:08:39 +020025 tracing_reset_online_cpus(tr);
Steven Rostedt26bc83f2008-07-10 20:58:14 -040026 put_cpu();
27
Steven Rostedt41bc8142008-05-22 11:49:22 -040028 tracing_start_cmdline_record();
Steven Rostedt1b29b012008-05-12 21:20:42 +020029 tracing_start_function_trace();
30}
31
Ingo Molnare309b412008-05-12 21:20:51 +020032static void stop_function_trace(struct trace_array *tr)
Steven Rostedt1b29b012008-05-12 21:20:42 +020033{
34 tracing_stop_function_trace();
Steven Rostedt41bc8142008-05-22 11:49:22 -040035 tracing_stop_cmdline_record();
Steven Rostedt1b29b012008-05-12 21:20:42 +020036}
37
Frederic Weisbecker1c800252008-11-16 05:57:26 +010038static int function_trace_init(struct trace_array *tr)
Steven Rostedt1b29b012008-05-12 21:20:42 +020039{
Steven Rostedtc76f0692008-11-07 22:36:02 -050040 start_function_trace(tr);
Frederic Weisbecker1c800252008-11-16 05:57:26 +010041 return 0;
Steven Rostedt1b29b012008-05-12 21:20:42 +020042}
43
Ingo Molnare309b412008-05-12 21:20:51 +020044static void function_trace_reset(struct trace_array *tr)
Steven Rostedt1b29b012008-05-12 21:20:42 +020045{
Steven Rostedtc76f0692008-11-07 22:36:02 -050046 stop_function_trace(tr);
Steven Rostedt1b29b012008-05-12 21:20:42 +020047}
48
Steven Rostedt90369902008-11-05 16:05:44 -050049static void function_trace_start(struct trace_array *tr)
50{
Pekka J Enberg213cc062008-12-19 12:08:39 +020051 tracing_reset_online_cpus(tr);
Steven Rostedt90369902008-11-05 16:05:44 -050052}
53
Steven Rostedt53614992009-01-15 19:12:40 -050054static void
Steven Rostedtbb3c3c92009-01-15 20:40:23 -050055function_trace_call_preempt_only(unsigned long ip, unsigned long parent_ip)
56{
57 struct trace_array *tr = func_trace;
58 struct trace_array_cpu *data;
59 unsigned long flags;
60 long disabled;
61 int cpu, resched;
62 int pc;
63
64 if (unlikely(!ftrace_function_enabled))
65 return;
66
67 pc = preempt_count();
68 resched = ftrace_preempt_disable();
69 local_save_flags(flags);
70 cpu = raw_smp_processor_id();
71 data = tr->data[cpu];
72 disabled = atomic_inc_return(&data->disabled);
73
74 if (likely(disabled == 1))
75 trace_function(tr, data, ip, parent_ip, flags, pc);
76
77 atomic_dec(&data->disabled);
78 ftrace_preempt_enable(resched);
79}
80
81static void
82function_trace_call(unsigned long ip, unsigned long parent_ip)
83{
84 struct trace_array *tr = func_trace;
85 struct trace_array_cpu *data;
86 unsigned long flags;
87 long disabled;
88 int cpu;
89 int pc;
90
91 if (unlikely(!ftrace_function_enabled))
92 return;
93
94 /*
95 * Need to use raw, since this must be called before the
96 * recursive protection is performed.
97 */
98 local_irq_save(flags);
99 cpu = raw_smp_processor_id();
100 data = tr->data[cpu];
101 disabled = atomic_inc_return(&data->disabled);
102
103 if (likely(disabled == 1)) {
104 pc = preempt_count();
105 trace_function(tr, data, ip, parent_ip, flags, pc);
106 }
107
108 atomic_dec(&data->disabled);
109 local_irq_restore(flags);
110}
111
112static void
Steven Rostedt53614992009-01-15 19:12:40 -0500113function_stack_trace_call(unsigned long ip, unsigned long parent_ip)
114{
115 struct trace_array *tr = func_trace;
116 struct trace_array_cpu *data;
117 unsigned long flags;
118 long disabled;
119 int cpu;
120 int pc;
121
122 if (unlikely(!ftrace_function_enabled))
123 return;
124
125 /*
126 * Need to use raw, since this must be called before the
127 * recursive protection is performed.
128 */
129 local_irq_save(flags);
130 cpu = raw_smp_processor_id();
131 data = tr->data[cpu];
132 disabled = atomic_inc_return(&data->disabled);
133
134 if (likely(disabled == 1)) {
135 pc = preempt_count();
Steven Rostedt3eb36aa2009-01-15 22:21:43 -0500136 trace_function(tr, data, ip, parent_ip, flags, pc);
Steven Rostedt53614992009-01-15 19:12:40 -0500137 /*
138 * skip over 5 funcs:
139 * __ftrace_trace_stack,
140 * __trace_stack,
141 * function_stack_trace_call
142 * ftrace_list_func
143 * ftrace_call
144 */
145 __trace_stack(tr, data, flags, 5, pc);
146 }
147
148 atomic_dec(&data->disabled);
149 local_irq_restore(flags);
150}
151
Steven Rostedtbb3c3c92009-01-15 20:40:23 -0500152
153static struct ftrace_ops trace_ops __read_mostly =
154{
155 .func = function_trace_call,
156};
157
Steven Rostedt53614992009-01-15 19:12:40 -0500158static struct ftrace_ops trace_stack_ops __read_mostly =
159{
160 .func = function_stack_trace_call,
161};
162
163/* Our two options */
164enum {
165 TRACE_FUNC_OPT_STACK = 0x1,
166};
167
168static struct tracer_opt func_opts[] = {
169#ifdef CONFIG_STACKTRACE
170 { TRACER_OPT(func_stack_trace, TRACE_FUNC_OPT_STACK) },
171#endif
172 { } /* Always set a last empty entry */
173};
174
175static struct tracer_flags func_flags = {
176 .val = 0, /* By default: all flags disabled */
177 .opts = func_opts
178};
179
Steven Rostedt3eb36aa2009-01-15 22:21:43 -0500180void tracing_start_function_trace(void)
181{
182 ftrace_function_enabled = 0;
183
184 if (trace_flags & TRACE_ITER_PREEMPTONLY)
185 trace_ops.func = function_trace_call_preempt_only;
186 else
187 trace_ops.func = function_trace_call;
188
189 if (func_flags.val & TRACE_FUNC_OPT_STACK)
190 register_ftrace_function(&trace_stack_ops);
191 else
192 register_ftrace_function(&trace_ops);
193
194 ftrace_function_enabled = 1;
195}
196
197void tracing_stop_function_trace(void)
198{
199 ftrace_function_enabled = 0;
200 /* OK if they are not registered */
201 unregister_ftrace_function(&trace_stack_ops);
202 unregister_ftrace_function(&trace_ops);
203}
204
Steven Rostedt53614992009-01-15 19:12:40 -0500205static int func_set_flag(u32 old_flags, u32 bit, int set)
206{
207 if (bit == TRACE_FUNC_OPT_STACK) {
208 /* do nothing if already set */
209 if (!!set == !!(func_flags.val & TRACE_FUNC_OPT_STACK))
210 return 0;
211
Steven Rostedt3eb36aa2009-01-15 22:21:43 -0500212 if (set) {
213 unregister_ftrace_function(&trace_ops);
Steven Rostedt53614992009-01-15 19:12:40 -0500214 register_ftrace_function(&trace_stack_ops);
Steven Rostedt3eb36aa2009-01-15 22:21:43 -0500215 } else {
Steven Rostedt53614992009-01-15 19:12:40 -0500216 unregister_ftrace_function(&trace_stack_ops);
Steven Rostedt3eb36aa2009-01-15 22:21:43 -0500217 register_ftrace_function(&trace_ops);
218 }
Steven Rostedt53614992009-01-15 19:12:40 -0500219
220 return 0;
221 }
222
223 return -EINVAL;
224}
225
Steven Rostedt1b29b012008-05-12 21:20:42 +0200226static struct tracer function_trace __read_mostly =
227{
Steven Rostedt3eb36aa2009-01-15 22:21:43 -0500228 .name = "function",
229 .init = function_trace_init,
230 .reset = function_trace_reset,
231 .start = function_trace_start,
Steven Rostedt53614992009-01-15 19:12:40 -0500232 .flags = &func_flags,
233 .set_flag = func_set_flag,
Steven Rostedt60a11772008-05-12 21:20:44 +0200234#ifdef CONFIG_FTRACE_SELFTEST
Steven Rostedt3eb36aa2009-01-15 22:21:43 -0500235 .selftest = trace_selftest_startup_function,
Steven Rostedt60a11772008-05-12 21:20:44 +0200236#endif
Steven Rostedt1b29b012008-05-12 21:20:42 +0200237};
238
239static __init int init_function_trace(void)
240{
241 return register_tracer(&function_trace);
242}
243
244device_initcall(init_function_trace);