blob: ef0826204840444c98321f348eed5cdfaa326966 [file] [log] [blame]
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02001/*
2 * Infrastructure for profiling code inserted by 'gcc -pg'.
3 *
4 * Copyright (C) 2007-2008 Steven Rostedt <srostedt@redhat.com>
5 * Copyright (C) 2004-2008 Ingo Molnar <mingo@redhat.com>
6 *
7 * Originally ported from the -rt patch by:
8 * Copyright (C) 2007 Arnaldo Carvalho de Melo <acme@redhat.com>
9 *
10 * Based on code in the latency_tracer, that is:
11 *
12 * Copyright (C) 2004-2006 Ingo Molnar
13 * Copyright (C) 2004 William Lee Irwin III
14 */
15
Steven Rostedt3d083392008-05-12 21:20:42 +020016#include <linux/stop_machine.h>
17#include <linux/clocksource.h>
18#include <linux/kallsyms.h>
Steven Rostedt5072c592008-05-12 21:20:43 +020019#include <linux/seq_file.h>
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -080020#include <linux/suspend.h>
Steven Rostedt5072c592008-05-12 21:20:43 +020021#include <linux/debugfs.h>
Steven Rostedt3d083392008-05-12 21:20:42 +020022#include <linux/hardirq.h>
Ingo Molnar2d8b8202008-02-23 16:55:50 +010023#include <linux/kthread.h>
Steven Rostedt5072c592008-05-12 21:20:43 +020024#include <linux/uaccess.h>
Steven Rostedt5855fea2011-12-16 19:27:42 -050025#include <linux/bsearch.h>
Paul Gortmaker56d82e02011-05-26 17:53:52 -040026#include <linux/module.h>
Ingo Molnar2d8b8202008-02-23 16:55:50 +010027#include <linux/ftrace.h>
Steven Rostedtb0fc4942008-05-12 21:20:43 +020028#include <linux/sysctl.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Steven Rostedt5072c592008-05-12 21:20:43 +020030#include <linux/ctype.h>
Steven Rostedt68950612011-12-16 17:06:45 -050031#include <linux/sort.h>
Steven Rostedt3d083392008-05-12 21:20:42 +020032#include <linux/list.h>
Steven Rostedt59df055f2009-02-14 15:29:06 -050033#include <linux/hash.h>
Paul E. McKenney3f379b02010-03-05 15:03:25 -080034#include <linux/rcupdate.h>
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020035
Steven Rostedtad8d75f2009-04-14 19:39:12 -040036#include <trace/events/sched.h>
Steven Rostedt8aef2d22009-03-24 01:10:15 -040037
Steven Rostedt2af15d62009-05-28 13:37:24 -040038#include <asm/setup.h>
Abhishek Sagar395a59d2008-06-21 23:47:27 +053039
Steven Rostedt0706f1c2009-03-23 23:12:58 -040040#include "trace_output.h"
Steven Rostedtbac429f2009-03-20 12:50:56 -040041#include "trace_stat.h"
Steven Rostedt3d083392008-05-12 21:20:42 +020042
Steven Rostedt69128962008-10-23 09:33:03 -040043#define FTRACE_WARN_ON(cond) \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040044 ({ \
45 int ___r = cond; \
46 if (WARN_ON(___r)) \
Steven Rostedt69128962008-10-23 09:33:03 -040047 ftrace_kill(); \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040048 ___r; \
49 })
Steven Rostedt69128962008-10-23 09:33:03 -040050
51#define FTRACE_WARN_ON_ONCE(cond) \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040052 ({ \
53 int ___r = cond; \
54 if (WARN_ON_ONCE(___r)) \
Steven Rostedt69128962008-10-23 09:33:03 -040055 ftrace_kill(); \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040056 ___r; \
57 })
Steven Rostedt69128962008-10-23 09:33:03 -040058
Steven Rostedt8fc0c702009-02-16 15:28:00 -050059/* hash bits for specific function selection */
60#define FTRACE_HASH_BITS 7
61#define FTRACE_FUNC_HASHSIZE (1 << FTRACE_HASH_BITS)
Steven Rostedt33dc9b12011-05-02 17:34:47 -040062#define FTRACE_HASH_DEFAULT_BITS 10
63#define FTRACE_HASH_MAX_BITS 12
Steven Rostedt8fc0c702009-02-16 15:28:00 -050064
Jiri Olsae2484912012-02-15 15:51:48 +010065#define FL_GLOBAL_CONTROL_MASK (FTRACE_OPS_FL_GLOBAL | FTRACE_OPS_FL_CONTROL)
66
Steven Rostedt4eebcc82008-05-12 21:20:48 +020067/* ftrace_enabled is a method to turn ftrace on or off */
68int ftrace_enabled __read_mostly;
Steven Rostedtd61f82d2008-05-12 21:20:43 +020069static int last_ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +020070
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050071/* Quick disabling of function tracer. */
72int function_trace_stop;
73
jolsa@redhat.com756d17e2009-10-13 16:33:52 -040074/* List for set_ftrace_pid's pids. */
75LIST_HEAD(ftrace_pids);
76struct ftrace_pid {
77 struct list_head list;
78 struct pid *pid;
79};
80
Steven Rostedt4eebcc82008-05-12 21:20:48 +020081/*
82 * ftrace_disabled is set when an anomaly is discovered.
83 * ftrace_disabled is much stronger than ftrace_enabled.
84 */
85static int ftrace_disabled __read_mostly;
86
Steven Rostedt52baf112009-02-14 01:15:39 -050087static DEFINE_MUTEX(ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +020088
Paul McQuadebd38c0e2011-05-31 20:51:55 +010089static struct ftrace_ops ftrace_list_end __read_mostly = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -040090 .func = ftrace_stub,
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020091};
92
Steven Rostedtb8489142011-05-04 09:27:52 -040093static struct ftrace_ops *ftrace_global_list __read_mostly = &ftrace_list_end;
Jiri Olsae2484912012-02-15 15:51:48 +010094static struct ftrace_ops *ftrace_control_list __read_mostly = &ftrace_list_end;
Steven Rostedtb8489142011-05-04 09:27:52 -040095static struct ftrace_ops *ftrace_ops_list __read_mostly = &ftrace_list_end;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020096ftrace_func_t ftrace_trace_function __read_mostly = ftrace_stub;
Steven Rostedt6331c282011-07-13 15:11:02 -040097static ftrace_func_t __ftrace_trace_function_delay __read_mostly = ftrace_stub;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050098ftrace_func_t __ftrace_trace_function __read_mostly = ftrace_stub;
Steven Rostedtdf4fc312008-11-26 00:16:23 -050099ftrace_func_t ftrace_pid_function __read_mostly = ftrace_stub;
Steven Rostedt2b499382011-05-03 22:49:52 -0400100static struct ftrace_ops global_ops;
Jiri Olsae2484912012-02-15 15:51:48 +0100101static struct ftrace_ops control_ops;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200102
Steven Rostedtb8489142011-05-04 09:27:52 -0400103static void
104ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip);
105
Paul E. McKenney3f379b02010-03-05 15:03:25 -0800106/*
Steven Rostedtb8489142011-05-04 09:27:52 -0400107 * Traverse the ftrace_global_list, invoking all entries. The reason that we
Paul E. McKenney3f379b02010-03-05 15:03:25 -0800108 * can use rcu_dereference_raw() is that elements removed from this list
109 * are simply leaked, so there is no need to interact with a grace-period
110 * mechanism. The rcu_dereference_raw() calls are needed to handle
Steven Rostedtb8489142011-05-04 09:27:52 -0400111 * concurrent insertions into the ftrace_global_list.
Paul E. McKenney3f379b02010-03-05 15:03:25 -0800112 *
113 * Silly Alpha and silly pointer-speculation compiler optimizations!
114 */
Steven Rostedtb8489142011-05-04 09:27:52 -0400115static void ftrace_global_list_func(unsigned long ip,
116 unsigned long parent_ip)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200117{
Steven Rostedtb1cff0a2011-05-25 14:27:43 -0400118 struct ftrace_ops *op;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200119
Steven Rostedtb1cff0a2011-05-25 14:27:43 -0400120 if (unlikely(trace_recursion_test(TRACE_GLOBAL_BIT)))
121 return;
122
123 trace_recursion_set(TRACE_GLOBAL_BIT);
124 op = rcu_dereference_raw(ftrace_global_list); /*see above*/
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200125 while (op != &ftrace_list_end) {
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200126 op->func(ip, parent_ip);
Paul E. McKenney3f379b02010-03-05 15:03:25 -0800127 op = rcu_dereference_raw(op->next); /*see above*/
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200128 };
Steven Rostedtb1cff0a2011-05-25 14:27:43 -0400129 trace_recursion_clear(TRACE_GLOBAL_BIT);
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200130}
131
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500132static void ftrace_pid_func(unsigned long ip, unsigned long parent_ip)
133{
Steven Rostedt0ef8cde2008-12-03 15:36:58 -0500134 if (!test_tsk_trace_trace(current))
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500135 return;
136
137 ftrace_pid_function(ip, parent_ip);
138}
139
140static void set_ftrace_pid_function(ftrace_func_t func)
141{
142 /* do not set ftrace_pid_function to itself! */
143 if (func != ftrace_pid_func)
144 ftrace_pid_function = func;
145}
146
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200147/**
Steven Rostedt3d083392008-05-12 21:20:42 +0200148 * clear_ftrace_function - reset the ftrace function
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200149 *
Steven Rostedt3d083392008-05-12 21:20:42 +0200150 * This NULLs the ftrace function and in essence stops
151 * tracing. There may be lag
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200152 */
Steven Rostedt3d083392008-05-12 21:20:42 +0200153void clear_ftrace_function(void)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200154{
Steven Rostedt3d083392008-05-12 21:20:42 +0200155 ftrace_trace_function = ftrace_stub;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -0500156 __ftrace_trace_function = ftrace_stub;
Steven Rostedt6331c282011-07-13 15:11:02 -0400157 __ftrace_trace_function_delay = ftrace_stub;
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500158 ftrace_pid_function = ftrace_stub;
Steven Rostedt3d083392008-05-12 21:20:42 +0200159}
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200160
Steven Rostedt60a7ecf2008-11-05 16:05:44 -0500161#ifndef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
162/*
163 * For those archs that do not test ftrace_trace_stop in their
164 * mcount call site, we need to do it from C.
165 */
166static void ftrace_test_stop_func(unsigned long ip, unsigned long parent_ip)
167{
168 if (function_trace_stop)
169 return;
170
171 __ftrace_trace_function(ip, parent_ip);
172}
173#endif
174
Jiri Olsae2484912012-02-15 15:51:48 +0100175static void control_ops_disable_all(struct ftrace_ops *ops)
176{
177 int cpu;
178
179 for_each_possible_cpu(cpu)
180 *per_cpu_ptr(ops->disabled, cpu) = 1;
181}
182
183static int control_ops_alloc(struct ftrace_ops *ops)
184{
185 int __percpu *disabled;
186
187 disabled = alloc_percpu(int);
188 if (!disabled)
189 return -ENOMEM;
190
191 ops->disabled = disabled;
192 control_ops_disable_all(ops);
193 return 0;
194}
195
196static void control_ops_free(struct ftrace_ops *ops)
197{
198 free_percpu(ops->disabled);
199}
200
Steven Rostedt2b499382011-05-03 22:49:52 -0400201static void update_global_ops(void)
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400202{
203 ftrace_func_t func;
204
205 /*
206 * If there's only one function registered, then call that
207 * function directly. Otherwise, we need to iterate over the
208 * registered callers.
209 */
Steven Rostedtb8489142011-05-04 09:27:52 -0400210 if (ftrace_global_list == &ftrace_list_end ||
211 ftrace_global_list->next == &ftrace_list_end)
212 func = ftrace_global_list->func;
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400213 else
Steven Rostedtb8489142011-05-04 09:27:52 -0400214 func = ftrace_global_list_func;
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400215
216 /* If we filter on pids, update to use the pid function */
217 if (!list_empty(&ftrace_pids)) {
218 set_ftrace_pid_function(func);
219 func = ftrace_pid_func;
220 }
Steven Rostedt2b499382011-05-03 22:49:52 -0400221
222 global_ops.func = func;
223}
224
225static void update_ftrace_function(void)
226{
227 ftrace_func_t func;
228
229 update_global_ops();
230
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400231 /*
232 * If we are at the end of the list and this ops is
233 * not dynamic, then have the mcount trampoline call
234 * the function directly
235 */
Steven Rostedtb8489142011-05-04 09:27:52 -0400236 if (ftrace_ops_list == &ftrace_list_end ||
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400237 (ftrace_ops_list->next == &ftrace_list_end &&
238 !(ftrace_ops_list->flags & FTRACE_OPS_FL_DYNAMIC)))
Steven Rostedtb8489142011-05-04 09:27:52 -0400239 func = ftrace_ops_list->func;
240 else
241 func = ftrace_ops_list_func;
Steven Rostedt2b499382011-05-03 22:49:52 -0400242
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400243#ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
244 ftrace_trace_function = func;
245#else
Steven Rostedt6331c282011-07-13 15:11:02 -0400246#ifdef CONFIG_DYNAMIC_FTRACE
247 /* do not update till all functions have been modified */
248 __ftrace_trace_function_delay = func;
249#else
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400250 __ftrace_trace_function = func;
Steven Rostedt6331c282011-07-13 15:11:02 -0400251#endif
Rajesh Bhagatdb6544e2012-02-17 13:59:15 +0530252 ftrace_trace_function =
253 (func == ftrace_stub) ? func : ftrace_test_stop_func;
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400254#endif
255}
256
Steven Rostedt2b499382011-05-03 22:49:52 -0400257static void add_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
Steven Rostedt3d083392008-05-12 21:20:42 +0200258{
Steven Rostedt2b499382011-05-03 22:49:52 -0400259 ops->next = *list;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200260 /*
Steven Rostedtb8489142011-05-04 09:27:52 -0400261 * We are entering ops into the list but another
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200262 * CPU might be walking that list. We need to make sure
263 * the ops->next pointer is valid before another CPU sees
Steven Rostedtb8489142011-05-04 09:27:52 -0400264 * the ops pointer included into the list.
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200265 */
Steven Rostedt2b499382011-05-03 22:49:52 -0400266 rcu_assign_pointer(*list, ops);
267}
Steven Rostedt3d083392008-05-12 21:20:42 +0200268
Steven Rostedt2b499382011-05-03 22:49:52 -0400269static int remove_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
270{
271 struct ftrace_ops **p;
272
273 /*
274 * If we are removing the last function, then simply point
275 * to the ftrace_stub.
276 */
277 if (*list == ops && ops->next == &ftrace_list_end) {
278 *list = &ftrace_list_end;
279 return 0;
280 }
281
282 for (p = list; *p != &ftrace_list_end; p = &(*p)->next)
283 if (*p == ops)
284 break;
285
286 if (*p != ops)
287 return -1;
288
289 *p = (*p)->next;
290 return 0;
291}
292
Jiri Olsae2484912012-02-15 15:51:48 +0100293static void add_ftrace_list_ops(struct ftrace_ops **list,
294 struct ftrace_ops *main_ops,
295 struct ftrace_ops *ops)
296{
297 int first = *list == &ftrace_list_end;
298 add_ftrace_ops(list, ops);
299 if (first)
300 add_ftrace_ops(&ftrace_ops_list, main_ops);
301}
302
303static int remove_ftrace_list_ops(struct ftrace_ops **list,
304 struct ftrace_ops *main_ops,
305 struct ftrace_ops *ops)
306{
307 int ret = remove_ftrace_ops(list, ops);
308 if (!ret && *list == &ftrace_list_end)
309 ret = remove_ftrace_ops(&ftrace_ops_list, main_ops);
310 return ret;
311}
312
Steven Rostedt2b499382011-05-03 22:49:52 -0400313static int __register_ftrace_function(struct ftrace_ops *ops)
314{
315 if (ftrace_disabled)
316 return -ENODEV;
317
318 if (FTRACE_WARN_ON(ops == &global_ops))
319 return -EINVAL;
320
Steven Rostedtb8489142011-05-04 09:27:52 -0400321 if (WARN_ON(ops->flags & FTRACE_OPS_FL_ENABLED))
322 return -EBUSY;
323
Jiri Olsae2484912012-02-15 15:51:48 +0100324 /* We don't support both control and global flags set. */
325 if ((ops->flags & FL_GLOBAL_CONTROL_MASK) == FL_GLOBAL_CONTROL_MASK)
326 return -EINVAL;
327
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400328 if (!core_kernel_data((unsigned long)ops))
329 ops->flags |= FTRACE_OPS_FL_DYNAMIC;
330
Steven Rostedtb8489142011-05-04 09:27:52 -0400331 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
Jiri Olsae2484912012-02-15 15:51:48 +0100332 add_ftrace_list_ops(&ftrace_global_list, &global_ops, ops);
Steven Rostedtb8489142011-05-04 09:27:52 -0400333 ops->flags |= FTRACE_OPS_FL_ENABLED;
Jiri Olsae2484912012-02-15 15:51:48 +0100334 } else if (ops->flags & FTRACE_OPS_FL_CONTROL) {
335 if (control_ops_alloc(ops))
336 return -ENOMEM;
337 add_ftrace_list_ops(&ftrace_control_list, &control_ops, ops);
Steven Rostedtb8489142011-05-04 09:27:52 -0400338 } else
339 add_ftrace_ops(&ftrace_ops_list, ops);
340
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400341 if (ftrace_enabled)
342 update_ftrace_function();
Steven Rostedt3d083392008-05-12 21:20:42 +0200343
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200344 return 0;
345}
346
Ingo Molnare309b412008-05-12 21:20:51 +0200347static int __unregister_ftrace_function(struct ftrace_ops *ops)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200348{
Steven Rostedt2b499382011-05-03 22:49:52 -0400349 int ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200350
Steven Rostedt2b499382011-05-03 22:49:52 -0400351 if (ftrace_disabled)
352 return -ENODEV;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200353
Steven Rostedtb8489142011-05-04 09:27:52 -0400354 if (WARN_ON(!(ops->flags & FTRACE_OPS_FL_ENABLED)))
355 return -EBUSY;
356
Steven Rostedt2b499382011-05-03 22:49:52 -0400357 if (FTRACE_WARN_ON(ops == &global_ops))
358 return -EINVAL;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200359
Steven Rostedtb8489142011-05-04 09:27:52 -0400360 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
Jiri Olsae2484912012-02-15 15:51:48 +0100361 ret = remove_ftrace_list_ops(&ftrace_global_list,
362 &global_ops, ops);
Steven Rostedtb8489142011-05-04 09:27:52 -0400363 if (!ret)
364 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
Jiri Olsae2484912012-02-15 15:51:48 +0100365 } else if (ops->flags & FTRACE_OPS_FL_CONTROL) {
366 ret = remove_ftrace_list_ops(&ftrace_control_list,
367 &control_ops, ops);
368 if (!ret) {
369 /*
370 * The ftrace_ops is now removed from the list,
371 * so there'll be no new users. We must ensure
372 * all current users are done before we free
373 * the control data.
374 */
375 synchronize_sched();
376 control_ops_free(ops);
377 }
Steven Rostedtb8489142011-05-04 09:27:52 -0400378 } else
379 ret = remove_ftrace_ops(&ftrace_ops_list, ops);
380
Steven Rostedt2b499382011-05-03 22:49:52 -0400381 if (ret < 0)
382 return ret;
Steven Rostedtb8489142011-05-04 09:27:52 -0400383
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400384 if (ftrace_enabled)
385 update_ftrace_function();
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200386
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400387 /*
388 * Dynamic ops may be freed, we must make sure that all
389 * callers are done before leaving this function.
390 */
391 if (ops->flags & FTRACE_OPS_FL_DYNAMIC)
392 synchronize_sched();
393
Steven Rostedte6ea44e2009-02-14 01:42:44 -0500394 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +0200395}
396
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500397static void ftrace_update_pid_func(void)
398{
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400399 /* Only do something if we are tracing something */
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500400 if (ftrace_trace_function == ftrace_stub)
KOSAKI Motohiro10dd3eb2009-03-06 15:29:04 +0900401 return;
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500402
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400403 update_ftrace_function();
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500404}
405
Steven Rostedt493762f2009-03-23 17:12:36 -0400406#ifdef CONFIG_FUNCTION_PROFILER
407struct ftrace_profile {
408 struct hlist_node node;
409 unsigned long ip;
410 unsigned long counter;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400411#ifdef CONFIG_FUNCTION_GRAPH_TRACER
412 unsigned long long time;
Chase Douglase330b3b2010-04-26 14:02:05 -0400413 unsigned long long time_squared;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400414#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400415};
416
417struct ftrace_profile_page {
418 struct ftrace_profile_page *next;
419 unsigned long index;
420 struct ftrace_profile records[];
421};
422
Steven Rostedtcafb1682009-03-24 20:50:39 -0400423struct ftrace_profile_stat {
424 atomic_t disabled;
425 struct hlist_head *hash;
426 struct ftrace_profile_page *pages;
427 struct ftrace_profile_page *start;
428 struct tracer_stat stat;
429};
430
Steven Rostedt493762f2009-03-23 17:12:36 -0400431#define PROFILE_RECORDS_SIZE \
432 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
433
434#define PROFILES_PER_PAGE \
435 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
436
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400437static int ftrace_profile_bits __read_mostly;
438static int ftrace_profile_enabled __read_mostly;
439
440/* ftrace_profile_lock - synchronize the enable and disable of the profiler */
Steven Rostedt493762f2009-03-23 17:12:36 -0400441static DEFINE_MUTEX(ftrace_profile_lock);
442
Steven Rostedtcafb1682009-03-24 20:50:39 -0400443static DEFINE_PER_CPU(struct ftrace_profile_stat, ftrace_profile_stats);
Steven Rostedt493762f2009-03-23 17:12:36 -0400444
445#define FTRACE_PROFILE_HASH_SIZE 1024 /* must be power of 2 */
446
Steven Rostedt493762f2009-03-23 17:12:36 -0400447static void *
448function_stat_next(void *v, int idx)
449{
450 struct ftrace_profile *rec = v;
451 struct ftrace_profile_page *pg;
452
453 pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK);
454
455 again:
Li Zefan0296e422009-06-26 11:15:37 +0800456 if (idx != 0)
457 rec++;
458
Steven Rostedt493762f2009-03-23 17:12:36 -0400459 if ((void *)rec >= (void *)&pg->records[pg->index]) {
460 pg = pg->next;
461 if (!pg)
462 return NULL;
463 rec = &pg->records[0];
464 if (!rec->counter)
465 goto again;
466 }
467
468 return rec;
469}
470
471static void *function_stat_start(struct tracer_stat *trace)
472{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400473 struct ftrace_profile_stat *stat =
474 container_of(trace, struct ftrace_profile_stat, stat);
475
476 if (!stat || !stat->start)
477 return NULL;
478
479 return function_stat_next(&stat->start->records[0], 0);
Steven Rostedt493762f2009-03-23 17:12:36 -0400480}
481
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400482#ifdef CONFIG_FUNCTION_GRAPH_TRACER
483/* function graph compares on total time */
484static int function_stat_cmp(void *p1, void *p2)
485{
486 struct ftrace_profile *a = p1;
487 struct ftrace_profile *b = p2;
488
489 if (a->time < b->time)
490 return -1;
491 if (a->time > b->time)
492 return 1;
493 else
494 return 0;
495}
496#else
497/* not function graph compares against hits */
Steven Rostedt493762f2009-03-23 17:12:36 -0400498static int function_stat_cmp(void *p1, void *p2)
499{
500 struct ftrace_profile *a = p1;
501 struct ftrace_profile *b = p2;
502
503 if (a->counter < b->counter)
504 return -1;
505 if (a->counter > b->counter)
506 return 1;
507 else
508 return 0;
509}
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400510#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400511
512static int function_stat_headers(struct seq_file *m)
513{
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400514#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Steven Rostedt34886c82009-03-25 21:00:47 -0400515 seq_printf(m, " Function "
Chase Douglase330b3b2010-04-26 14:02:05 -0400516 "Hit Time Avg s^2\n"
Steven Rostedt34886c82009-03-25 21:00:47 -0400517 " -------- "
Chase Douglase330b3b2010-04-26 14:02:05 -0400518 "--- ---- --- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400519#else
Steven Rostedt493762f2009-03-23 17:12:36 -0400520 seq_printf(m, " Function Hit\n"
521 " -------- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400522#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400523 return 0;
524}
525
526static int function_stat_show(struct seq_file *m, void *v)
527{
528 struct ftrace_profile *rec = v;
529 char str[KSYM_SYMBOL_LEN];
Li Zefan3aaba202010-08-23 16:50:12 +0800530 int ret = 0;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400531#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Steven Rostedt34886c82009-03-25 21:00:47 -0400532 static struct trace_seq s;
533 unsigned long long avg;
Chase Douglase330b3b2010-04-26 14:02:05 -0400534 unsigned long long stddev;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400535#endif
Li Zefan3aaba202010-08-23 16:50:12 +0800536 mutex_lock(&ftrace_profile_lock);
537
538 /* we raced with function_profile_reset() */
539 if (unlikely(rec->counter == 0)) {
540 ret = -EBUSY;
541 goto out;
542 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400543
544 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400545 seq_printf(m, " %-30.30s %10lu", str, rec->counter);
Steven Rostedt493762f2009-03-23 17:12:36 -0400546
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400547#ifdef CONFIG_FUNCTION_GRAPH_TRACER
548 seq_printf(m, " ");
Steven Rostedt34886c82009-03-25 21:00:47 -0400549 avg = rec->time;
550 do_div(avg, rec->counter);
551
Chase Douglase330b3b2010-04-26 14:02:05 -0400552 /* Sample standard deviation (s^2) */
553 if (rec->counter <= 1)
554 stddev = 0;
555 else {
556 stddev = rec->time_squared - rec->counter * avg * avg;
557 /*
558 * Divide only 1000 for ns^2 -> us^2 conversion.
559 * trace_print_graph_duration will divide 1000 again.
560 */
561 do_div(stddev, (rec->counter - 1) * 1000);
562 }
563
Steven Rostedt34886c82009-03-25 21:00:47 -0400564 trace_seq_init(&s);
565 trace_print_graph_duration(rec->time, &s);
566 trace_seq_puts(&s, " ");
567 trace_print_graph_duration(avg, &s);
Chase Douglase330b3b2010-04-26 14:02:05 -0400568 trace_seq_puts(&s, " ");
569 trace_print_graph_duration(stddev, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400570 trace_print_seq(m, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400571#endif
572 seq_putc(m, '\n');
Li Zefan3aaba202010-08-23 16:50:12 +0800573out:
574 mutex_unlock(&ftrace_profile_lock);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400575
Li Zefan3aaba202010-08-23 16:50:12 +0800576 return ret;
Steven Rostedt493762f2009-03-23 17:12:36 -0400577}
578
Steven Rostedtcafb1682009-03-24 20:50:39 -0400579static void ftrace_profile_reset(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400580{
581 struct ftrace_profile_page *pg;
582
Steven Rostedtcafb1682009-03-24 20:50:39 -0400583 pg = stat->pages = stat->start;
Steven Rostedt493762f2009-03-23 17:12:36 -0400584
585 while (pg) {
586 memset(pg->records, 0, PROFILE_RECORDS_SIZE);
587 pg->index = 0;
588 pg = pg->next;
589 }
590
Steven Rostedtcafb1682009-03-24 20:50:39 -0400591 memset(stat->hash, 0,
Steven Rostedt493762f2009-03-23 17:12:36 -0400592 FTRACE_PROFILE_HASH_SIZE * sizeof(struct hlist_head));
593}
594
Steven Rostedtcafb1682009-03-24 20:50:39 -0400595int ftrace_profile_pages_init(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400596{
597 struct ftrace_profile_page *pg;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400598 int functions;
599 int pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400600 int i;
601
602 /* If we already allocated, do nothing */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400603 if (stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400604 return 0;
605
Steven Rostedtcafb1682009-03-24 20:50:39 -0400606 stat->pages = (void *)get_zeroed_page(GFP_KERNEL);
607 if (!stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400608 return -ENOMEM;
609
Steven Rostedt318e0a72009-03-25 20:06:34 -0400610#ifdef CONFIG_DYNAMIC_FTRACE
611 functions = ftrace_update_tot_cnt;
612#else
613 /*
614 * We do not know the number of functions that exist because
615 * dynamic tracing is what counts them. With past experience
616 * we have around 20K functions. That should be more than enough.
617 * It is highly unlikely we will execute every function in
618 * the kernel.
619 */
620 functions = 20000;
621#endif
622
Steven Rostedtcafb1682009-03-24 20:50:39 -0400623 pg = stat->start = stat->pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400624
Steven Rostedt318e0a72009-03-25 20:06:34 -0400625 pages = DIV_ROUND_UP(functions, PROFILES_PER_PAGE);
626
627 for (i = 0; i < pages; i++) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400628 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400629 if (!pg->next)
Steven Rostedt318e0a72009-03-25 20:06:34 -0400630 goto out_free;
Steven Rostedt493762f2009-03-23 17:12:36 -0400631 pg = pg->next;
632 }
633
634 return 0;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400635
636 out_free:
637 pg = stat->start;
638 while (pg) {
639 unsigned long tmp = (unsigned long)pg;
640
641 pg = pg->next;
642 free_page(tmp);
643 }
644
645 free_page((unsigned long)stat->pages);
646 stat->pages = NULL;
647 stat->start = NULL;
648
649 return -ENOMEM;
Steven Rostedt493762f2009-03-23 17:12:36 -0400650}
651
Steven Rostedtcafb1682009-03-24 20:50:39 -0400652static int ftrace_profile_init_cpu(int cpu)
Steven Rostedt493762f2009-03-23 17:12:36 -0400653{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400654 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400655 int size;
656
Steven Rostedtcafb1682009-03-24 20:50:39 -0400657 stat = &per_cpu(ftrace_profile_stats, cpu);
658
659 if (stat->hash) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400660 /* If the profile is already created, simply reset it */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400661 ftrace_profile_reset(stat);
Steven Rostedt493762f2009-03-23 17:12:36 -0400662 return 0;
663 }
664
665 /*
666 * We are profiling all functions, but usually only a few thousand
667 * functions are hit. We'll make a hash of 1024 items.
668 */
669 size = FTRACE_PROFILE_HASH_SIZE;
670
Steven Rostedtcafb1682009-03-24 20:50:39 -0400671 stat->hash = kzalloc(sizeof(struct hlist_head) * size, GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400672
Steven Rostedtcafb1682009-03-24 20:50:39 -0400673 if (!stat->hash)
Steven Rostedt493762f2009-03-23 17:12:36 -0400674 return -ENOMEM;
675
Steven Rostedtcafb1682009-03-24 20:50:39 -0400676 if (!ftrace_profile_bits) {
677 size--;
Steven Rostedt493762f2009-03-23 17:12:36 -0400678
Steven Rostedtcafb1682009-03-24 20:50:39 -0400679 for (; size; size >>= 1)
680 ftrace_profile_bits++;
681 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400682
Steven Rostedt318e0a72009-03-25 20:06:34 -0400683 /* Preallocate the function profiling pages */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400684 if (ftrace_profile_pages_init(stat) < 0) {
685 kfree(stat->hash);
686 stat->hash = NULL;
Steven Rostedt493762f2009-03-23 17:12:36 -0400687 return -ENOMEM;
688 }
689
690 return 0;
691}
692
Steven Rostedtcafb1682009-03-24 20:50:39 -0400693static int ftrace_profile_init(void)
694{
695 int cpu;
696 int ret = 0;
697
698 for_each_online_cpu(cpu) {
699 ret = ftrace_profile_init_cpu(cpu);
700 if (ret)
701 break;
702 }
703
704 return ret;
705}
706
Steven Rostedt493762f2009-03-23 17:12:36 -0400707/* interrupts must be disabled */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400708static struct ftrace_profile *
709ftrace_find_profiled_func(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400710{
711 struct ftrace_profile *rec;
712 struct hlist_head *hhd;
713 struct hlist_node *n;
714 unsigned long key;
715
716 key = hash_long(ip, ftrace_profile_bits);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400717 hhd = &stat->hash[key];
Steven Rostedt493762f2009-03-23 17:12:36 -0400718
719 if (hlist_empty(hhd))
720 return NULL;
721
722 hlist_for_each_entry_rcu(rec, n, hhd, node) {
723 if (rec->ip == ip)
724 return rec;
725 }
726
727 return NULL;
728}
729
Steven Rostedtcafb1682009-03-24 20:50:39 -0400730static void ftrace_add_profile(struct ftrace_profile_stat *stat,
731 struct ftrace_profile *rec)
Steven Rostedt493762f2009-03-23 17:12:36 -0400732{
733 unsigned long key;
734
735 key = hash_long(rec->ip, ftrace_profile_bits);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400736 hlist_add_head_rcu(&rec->node, &stat->hash[key]);
Steven Rostedt493762f2009-03-23 17:12:36 -0400737}
738
Steven Rostedt318e0a72009-03-25 20:06:34 -0400739/*
740 * The memory is already allocated, this simply finds a new record to use.
741 */
Steven Rostedt493762f2009-03-23 17:12:36 -0400742static struct ftrace_profile *
Steven Rostedt318e0a72009-03-25 20:06:34 -0400743ftrace_profile_alloc(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400744{
745 struct ftrace_profile *rec = NULL;
746
Steven Rostedt318e0a72009-03-25 20:06:34 -0400747 /* prevent recursion (from NMIs) */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400748 if (atomic_inc_return(&stat->disabled) != 1)
Steven Rostedt493762f2009-03-23 17:12:36 -0400749 goto out;
750
Steven Rostedt493762f2009-03-23 17:12:36 -0400751 /*
Steven Rostedt318e0a72009-03-25 20:06:34 -0400752 * Try to find the function again since an NMI
753 * could have added it
Steven Rostedt493762f2009-03-23 17:12:36 -0400754 */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400755 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400756 if (rec)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400757 goto out;
Steven Rostedt493762f2009-03-23 17:12:36 -0400758
Steven Rostedtcafb1682009-03-24 20:50:39 -0400759 if (stat->pages->index == PROFILES_PER_PAGE) {
760 if (!stat->pages->next)
761 goto out;
762 stat->pages = stat->pages->next;
Steven Rostedt493762f2009-03-23 17:12:36 -0400763 }
764
Steven Rostedtcafb1682009-03-24 20:50:39 -0400765 rec = &stat->pages->records[stat->pages->index++];
Steven Rostedt493762f2009-03-23 17:12:36 -0400766 rec->ip = ip;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400767 ftrace_add_profile(stat, rec);
Steven Rostedt493762f2009-03-23 17:12:36 -0400768
Steven Rostedt493762f2009-03-23 17:12:36 -0400769 out:
Steven Rostedtcafb1682009-03-24 20:50:39 -0400770 atomic_dec(&stat->disabled);
Steven Rostedt493762f2009-03-23 17:12:36 -0400771
772 return rec;
773}
774
Steven Rostedt493762f2009-03-23 17:12:36 -0400775static void
776function_profile_call(unsigned long ip, unsigned long parent_ip)
777{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400778 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400779 struct ftrace_profile *rec;
780 unsigned long flags;
Steven Rostedt493762f2009-03-23 17:12:36 -0400781
782 if (!ftrace_profile_enabled)
783 return;
784
Steven Rostedt493762f2009-03-23 17:12:36 -0400785 local_irq_save(flags);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400786
787 stat = &__get_cpu_var(ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400788 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400789 goto out;
790
791 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400792 if (!rec) {
Steven Rostedt318e0a72009-03-25 20:06:34 -0400793 rec = ftrace_profile_alloc(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400794 if (!rec)
795 goto out;
796 }
797
798 rec->counter++;
799 out:
800 local_irq_restore(flags);
801}
802
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400803#ifdef CONFIG_FUNCTION_GRAPH_TRACER
804static int profile_graph_entry(struct ftrace_graph_ent *trace)
805{
806 function_profile_call(trace->func, 0);
807 return 1;
808}
809
810static void profile_graph_return(struct ftrace_graph_ret *trace)
811{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400812 struct ftrace_profile_stat *stat;
Steven Rostedta2a16d62009-03-24 23:17:58 -0400813 unsigned long long calltime;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400814 struct ftrace_profile *rec;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400815 unsigned long flags;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400816
817 local_irq_save(flags);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400818 stat = &__get_cpu_var(ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400819 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400820 goto out;
821
Steven Rostedt37e44bc2010-04-27 21:04:24 -0400822 /* If the calltime was zero'd ignore it */
823 if (!trace->calltime)
824 goto out;
825
Steven Rostedta2a16d62009-03-24 23:17:58 -0400826 calltime = trace->rettime - trace->calltime;
827
828 if (!(trace_flags & TRACE_ITER_GRAPH_TIME)) {
829 int index;
830
831 index = trace->depth;
832
833 /* Append this call time to the parent time to subtract */
834 if (index)
835 current->ret_stack[index - 1].subtime += calltime;
836
837 if (current->ret_stack[index].subtime < calltime)
838 calltime -= current->ret_stack[index].subtime;
839 else
840 calltime = 0;
841 }
842
Steven Rostedtcafb1682009-03-24 20:50:39 -0400843 rec = ftrace_find_profiled_func(stat, trace->func);
Chase Douglase330b3b2010-04-26 14:02:05 -0400844 if (rec) {
Steven Rostedta2a16d62009-03-24 23:17:58 -0400845 rec->time += calltime;
Chase Douglase330b3b2010-04-26 14:02:05 -0400846 rec->time_squared += calltime * calltime;
847 }
Steven Rostedta2a16d62009-03-24 23:17:58 -0400848
Steven Rostedtcafb1682009-03-24 20:50:39 -0400849 out:
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400850 local_irq_restore(flags);
851}
852
853static int register_ftrace_profiler(void)
854{
855 return register_ftrace_graph(&profile_graph_return,
856 &profile_graph_entry);
857}
858
859static void unregister_ftrace_profiler(void)
860{
861 unregister_ftrace_graph();
862}
863#else
Paul McQuadebd38c0e2011-05-31 20:51:55 +0100864static struct ftrace_ops ftrace_profile_ops __read_mostly = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400865 .func = function_profile_call,
Steven Rostedt493762f2009-03-23 17:12:36 -0400866};
867
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400868static int register_ftrace_profiler(void)
869{
870 return register_ftrace_function(&ftrace_profile_ops);
871}
872
873static void unregister_ftrace_profiler(void)
874{
875 unregister_ftrace_function(&ftrace_profile_ops);
876}
877#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
878
Steven Rostedt493762f2009-03-23 17:12:36 -0400879static ssize_t
880ftrace_profile_write(struct file *filp, const char __user *ubuf,
881 size_t cnt, loff_t *ppos)
882{
883 unsigned long val;
Steven Rostedt493762f2009-03-23 17:12:36 -0400884 int ret;
885
Peter Huewe22fe9b52011-06-07 21:58:27 +0200886 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
887 if (ret)
Steven Rostedt493762f2009-03-23 17:12:36 -0400888 return ret;
889
890 val = !!val;
891
892 mutex_lock(&ftrace_profile_lock);
893 if (ftrace_profile_enabled ^ val) {
894 if (val) {
895 ret = ftrace_profile_init();
896 if (ret < 0) {
897 cnt = ret;
898 goto out;
899 }
900
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400901 ret = register_ftrace_profiler();
902 if (ret < 0) {
903 cnt = ret;
904 goto out;
905 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400906 ftrace_profile_enabled = 1;
907 } else {
908 ftrace_profile_enabled = 0;
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400909 /*
910 * unregister_ftrace_profiler calls stop_machine
911 * so this acts like an synchronize_sched.
912 */
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400913 unregister_ftrace_profiler();
Steven Rostedt493762f2009-03-23 17:12:36 -0400914 }
915 }
916 out:
917 mutex_unlock(&ftrace_profile_lock);
918
Jiri Olsacf8517c2009-10-23 19:36:16 -0400919 *ppos += cnt;
Steven Rostedt493762f2009-03-23 17:12:36 -0400920
921 return cnt;
922}
923
924static ssize_t
925ftrace_profile_read(struct file *filp, char __user *ubuf,
926 size_t cnt, loff_t *ppos)
927{
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400928 char buf[64]; /* big enough to hold a number */
Steven Rostedt493762f2009-03-23 17:12:36 -0400929 int r;
930
931 r = sprintf(buf, "%u\n", ftrace_profile_enabled);
932 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
933}
934
935static const struct file_operations ftrace_profile_fops = {
936 .open = tracing_open_generic,
937 .read = ftrace_profile_read,
938 .write = ftrace_profile_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200939 .llseek = default_llseek,
Steven Rostedt493762f2009-03-23 17:12:36 -0400940};
941
Steven Rostedtcafb1682009-03-24 20:50:39 -0400942/* used to initialize the real stat files */
943static struct tracer_stat function_stats __initdata = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400944 .name = "functions",
945 .stat_start = function_stat_start,
946 .stat_next = function_stat_next,
947 .stat_cmp = function_stat_cmp,
948 .stat_headers = function_stat_headers,
949 .stat_show = function_stat_show
Steven Rostedtcafb1682009-03-24 20:50:39 -0400950};
951
Steven Rostedt6ab5d662009-06-04 00:55:45 -0400952static __init void ftrace_profile_debugfs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -0400953{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400954 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400955 struct dentry *entry;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400956 char *name;
Steven Rostedt493762f2009-03-23 17:12:36 -0400957 int ret;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400958 int cpu;
Steven Rostedt493762f2009-03-23 17:12:36 -0400959
Steven Rostedtcafb1682009-03-24 20:50:39 -0400960 for_each_possible_cpu(cpu) {
961 stat = &per_cpu(ftrace_profile_stats, cpu);
962
963 /* allocate enough for function name + cpu number */
964 name = kmalloc(32, GFP_KERNEL);
965 if (!name) {
966 /*
967 * The files created are permanent, if something happens
968 * we still do not free memory.
969 */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400970 WARN(1,
971 "Could not allocate stat file for cpu %d\n",
972 cpu);
973 return;
974 }
975 stat->stat = function_stats;
976 snprintf(name, 32, "function%d", cpu);
977 stat->stat.name = name;
978 ret = register_stat_tracer(&stat->stat);
979 if (ret) {
980 WARN(1,
981 "Could not register function stat for cpu %d\n",
982 cpu);
983 kfree(name);
984 return;
985 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400986 }
987
988 entry = debugfs_create_file("function_profile_enabled", 0644,
989 d_tracer, NULL, &ftrace_profile_fops);
990 if (!entry)
991 pr_warning("Could not create debugfs "
992 "'function_profile_enabled' entry\n");
993}
994
995#else /* CONFIG_FUNCTION_PROFILER */
Steven Rostedt6ab5d662009-06-04 00:55:45 -0400996static __init void ftrace_profile_debugfs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -0400997{
998}
999#endif /* CONFIG_FUNCTION_PROFILER */
1000
Ingo Molnar73d3fd92009-02-17 11:48:18 +01001001static struct pid * const ftrace_swapper_pid = &init_struct_pid;
1002
Steven Rostedt3d083392008-05-12 21:20:42 +02001003#ifdef CONFIG_DYNAMIC_FTRACE
Ingo Molnar73d3fd92009-02-17 11:48:18 +01001004
Steven Rostedt99ecdc42008-08-15 21:40:05 -04001005#ifndef CONFIG_FTRACE_MCOUNT_RECORD
Steven Rostedtcb7be3b2008-10-23 09:33:05 -04001006# error Dynamic ftrace depends on MCOUNT_RECORD
Steven Rostedt99ecdc42008-08-15 21:40:05 -04001007#endif
1008
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001009static struct hlist_head ftrace_func_hash[FTRACE_FUNC_HASHSIZE] __read_mostly;
1010
Steven Rostedtb6887d72009-02-17 12:32:04 -05001011struct ftrace_func_probe {
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001012 struct hlist_node node;
Steven Rostedtb6887d72009-02-17 12:32:04 -05001013 struct ftrace_probe_ops *ops;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001014 unsigned long flags;
1015 unsigned long ip;
1016 void *data;
1017 struct rcu_head rcu;
1018};
1019
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001020struct ftrace_func_entry {
1021 struct hlist_node hlist;
1022 unsigned long ip;
1023};
1024
1025struct ftrace_hash {
1026 unsigned long size_bits;
1027 struct hlist_head *buckets;
1028 unsigned long count;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001029 struct rcu_head rcu;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001030};
1031
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001032/*
1033 * We make these constant because no one should touch them,
1034 * but they are used as the default "empty hash", to avoid allocating
1035 * it all the time. These are in a read only section such that if
1036 * anyone does try to modify it, it will cause an exception.
1037 */
1038static const struct hlist_head empty_buckets[1];
1039static const struct ftrace_hash empty_hash = {
1040 .buckets = (struct hlist_head *)empty_buckets,
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001041};
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001042#define EMPTY_HASH ((struct ftrace_hash *)&empty_hash)
Steven Rostedt5072c592008-05-12 21:20:43 +02001043
Steven Rostedt2b499382011-05-03 22:49:52 -04001044static struct ftrace_ops global_ops = {
Steven Rostedtf45948e2011-05-02 12:29:25 -04001045 .func = ftrace_stub,
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001046 .notrace_hash = EMPTY_HASH,
1047 .filter_hash = EMPTY_HASH,
Steven Rostedtf45948e2011-05-02 12:29:25 -04001048};
1049
Steven Rostedt41c52c02008-05-22 11:46:33 -04001050static DEFINE_MUTEX(ftrace_regex_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02001051
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001052struct ftrace_page {
1053 struct ftrace_page *next;
Steven Rostedta7900872011-12-16 16:23:44 -05001054 struct dyn_ftrace *records;
Steven Rostedt431aa3f2009-01-06 12:43:01 -05001055 int index;
Steven Rostedta7900872011-12-16 16:23:44 -05001056 int size;
David Milleraa5e5ce2008-05-13 22:06:56 -07001057};
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001058
Steven Rostedt85ae32a2011-12-16 16:30:31 -05001059static struct ftrace_page *ftrace_new_pgs;
1060
Steven Rostedta7900872011-12-16 16:23:44 -05001061#define ENTRY_SIZE sizeof(struct dyn_ftrace)
1062#define ENTRIES_PER_PAGE (PAGE_SIZE / ENTRY_SIZE)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001063
1064/* estimate from running different kernels */
1065#define NR_TO_INIT 10000
1066
1067static struct ftrace_page *ftrace_pages_start;
1068static struct ftrace_page *ftrace_pages;
1069
Steven Rostedt06a51d92011-12-19 19:07:36 -05001070static bool ftrace_hash_empty(struct ftrace_hash *hash)
1071{
1072 return !hash || !hash->count;
1073}
1074
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001075static struct ftrace_func_entry *
1076ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
1077{
1078 unsigned long key;
1079 struct ftrace_func_entry *entry;
1080 struct hlist_head *hhd;
1081 struct hlist_node *n;
1082
Steven Rostedt06a51d92011-12-19 19:07:36 -05001083 if (ftrace_hash_empty(hash))
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001084 return NULL;
1085
1086 if (hash->size_bits > 0)
1087 key = hash_long(ip, hash->size_bits);
1088 else
1089 key = 0;
1090
1091 hhd = &hash->buckets[key];
1092
1093 hlist_for_each_entry_rcu(entry, n, hhd, hlist) {
1094 if (entry->ip == ip)
1095 return entry;
1096 }
1097 return NULL;
1098}
1099
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001100static void __add_hash_entry(struct ftrace_hash *hash,
1101 struct ftrace_func_entry *entry)
1102{
1103 struct hlist_head *hhd;
1104 unsigned long key;
1105
1106 if (hash->size_bits)
1107 key = hash_long(entry->ip, hash->size_bits);
1108 else
1109 key = 0;
1110
1111 hhd = &hash->buckets[key];
1112 hlist_add_head(&entry->hlist, hhd);
1113 hash->count++;
1114}
1115
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001116static int add_hash_entry(struct ftrace_hash *hash, unsigned long ip)
1117{
1118 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001119
1120 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
1121 if (!entry)
1122 return -ENOMEM;
1123
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001124 entry->ip = ip;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001125 __add_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001126
1127 return 0;
1128}
1129
1130static void
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001131free_hash_entry(struct ftrace_hash *hash,
1132 struct ftrace_func_entry *entry)
1133{
1134 hlist_del(&entry->hlist);
1135 kfree(entry);
1136 hash->count--;
1137}
1138
1139static void
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001140remove_hash_entry(struct ftrace_hash *hash,
1141 struct ftrace_func_entry *entry)
1142{
1143 hlist_del(&entry->hlist);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001144 hash->count--;
1145}
1146
1147static void ftrace_hash_clear(struct ftrace_hash *hash)
1148{
1149 struct hlist_head *hhd;
1150 struct hlist_node *tp, *tn;
1151 struct ftrace_func_entry *entry;
1152 int size = 1 << hash->size_bits;
1153 int i;
1154
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001155 if (!hash->count)
1156 return;
1157
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001158 for (i = 0; i < size; i++) {
1159 hhd = &hash->buckets[i];
1160 hlist_for_each_entry_safe(entry, tp, tn, hhd, hlist)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001161 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001162 }
1163 FTRACE_WARN_ON(hash->count);
1164}
1165
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001166static void free_ftrace_hash(struct ftrace_hash *hash)
1167{
1168 if (!hash || hash == EMPTY_HASH)
1169 return;
1170 ftrace_hash_clear(hash);
1171 kfree(hash->buckets);
1172 kfree(hash);
1173}
1174
Steven Rostedt07fd5512011-05-05 18:03:47 -04001175static void __free_ftrace_hash_rcu(struct rcu_head *rcu)
1176{
1177 struct ftrace_hash *hash;
1178
1179 hash = container_of(rcu, struct ftrace_hash, rcu);
1180 free_ftrace_hash(hash);
1181}
1182
1183static void free_ftrace_hash_rcu(struct ftrace_hash *hash)
1184{
1185 if (!hash || hash == EMPTY_HASH)
1186 return;
1187 call_rcu_sched(&hash->rcu, __free_ftrace_hash_rcu);
1188}
1189
Jiri Olsa5500fa52012-02-15 15:51:54 +01001190void ftrace_free_filter(struct ftrace_ops *ops)
1191{
1192 free_ftrace_hash(ops->filter_hash);
1193 free_ftrace_hash(ops->notrace_hash);
1194}
1195
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001196static struct ftrace_hash *alloc_ftrace_hash(int size_bits)
1197{
1198 struct ftrace_hash *hash;
1199 int size;
1200
1201 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
1202 if (!hash)
1203 return NULL;
1204
1205 size = 1 << size_bits;
Thomas Meyer47b0edc2011-11-29 22:08:00 +01001206 hash->buckets = kcalloc(size, sizeof(*hash->buckets), GFP_KERNEL);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001207
1208 if (!hash->buckets) {
1209 kfree(hash);
1210 return NULL;
1211 }
1212
1213 hash->size_bits = size_bits;
1214
1215 return hash;
1216}
1217
1218static struct ftrace_hash *
1219alloc_and_copy_ftrace_hash(int size_bits, struct ftrace_hash *hash)
1220{
1221 struct ftrace_func_entry *entry;
1222 struct ftrace_hash *new_hash;
1223 struct hlist_node *tp;
1224 int size;
1225 int ret;
1226 int i;
1227
1228 new_hash = alloc_ftrace_hash(size_bits);
1229 if (!new_hash)
1230 return NULL;
1231
1232 /* Empty hash? */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001233 if (ftrace_hash_empty(hash))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001234 return new_hash;
1235
1236 size = 1 << hash->size_bits;
1237 for (i = 0; i < size; i++) {
1238 hlist_for_each_entry(entry, tp, &hash->buckets[i], hlist) {
1239 ret = add_hash_entry(new_hash, entry->ip);
1240 if (ret < 0)
1241 goto free_hash;
1242 }
1243 }
1244
1245 FTRACE_WARN_ON(new_hash->count != hash->count);
1246
1247 return new_hash;
1248
1249 free_hash:
1250 free_ftrace_hash(new_hash);
1251 return NULL;
1252}
1253
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001254static void
1255ftrace_hash_rec_disable(struct ftrace_ops *ops, int filter_hash);
1256static void
1257ftrace_hash_rec_enable(struct ftrace_ops *ops, int filter_hash);
1258
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001259static int
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001260ftrace_hash_move(struct ftrace_ops *ops, int enable,
1261 struct ftrace_hash **dst, struct ftrace_hash *src)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001262{
1263 struct ftrace_func_entry *entry;
1264 struct hlist_node *tp, *tn;
1265 struct hlist_head *hhd;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001266 struct ftrace_hash *old_hash;
1267 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001268 unsigned long key;
1269 int size = src->count;
1270 int bits = 0;
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001271 int ret;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001272 int i;
1273
1274 /*
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001275 * Remove the current set, update the hash and add
1276 * them back.
1277 */
1278 ftrace_hash_rec_disable(ops, enable);
1279
1280 /*
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001281 * If the new source is empty, just free dst and assign it
1282 * the empty_hash.
1283 */
1284 if (!src->count) {
Steven Rostedt07fd5512011-05-05 18:03:47 -04001285 free_ftrace_hash_rcu(*dst);
1286 rcu_assign_pointer(*dst, EMPTY_HASH);
Steven Rostedtd4d34b92011-11-04 20:32:39 -04001287 /* still need to update the function records */
1288 ret = 0;
1289 goto out;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001290 }
1291
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001292 /*
1293 * Make the hash size about 1/2 the # found
1294 */
1295 for (size /= 2; size; size >>= 1)
1296 bits++;
1297
1298 /* Don't allocate too much */
1299 if (bits > FTRACE_HASH_MAX_BITS)
1300 bits = FTRACE_HASH_MAX_BITS;
1301
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001302 ret = -ENOMEM;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001303 new_hash = alloc_ftrace_hash(bits);
1304 if (!new_hash)
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001305 goto out;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001306
1307 size = 1 << src->size_bits;
1308 for (i = 0; i < size; i++) {
1309 hhd = &src->buckets[i];
1310 hlist_for_each_entry_safe(entry, tp, tn, hhd, hlist) {
1311 if (bits > 0)
1312 key = hash_long(entry->ip, bits);
1313 else
1314 key = 0;
1315 remove_hash_entry(src, entry);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001316 __add_hash_entry(new_hash, entry);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001317 }
1318 }
1319
Steven Rostedt07fd5512011-05-05 18:03:47 -04001320 old_hash = *dst;
1321 rcu_assign_pointer(*dst, new_hash);
1322 free_ftrace_hash_rcu(old_hash);
1323
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001324 ret = 0;
1325 out:
1326 /*
1327 * Enable regardless of ret:
1328 * On success, we enable the new hash.
1329 * On failure, we re-enable the original hash.
1330 */
1331 ftrace_hash_rec_enable(ops, enable);
1332
1333 return ret;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001334}
1335
Steven Rostedt265c8312009-02-13 12:43:56 -05001336/*
Steven Rostedtb8489142011-05-04 09:27:52 -04001337 * Test the hashes for this ops to see if we want to call
1338 * the ops->func or not.
1339 *
1340 * It's a match if the ip is in the ops->filter_hash or
1341 * the filter_hash does not exist or is empty,
1342 * AND
1343 * the ip is not in the ops->notrace_hash.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04001344 *
1345 * This needs to be called with preemption disabled as
1346 * the hashes are freed with call_rcu_sched().
Steven Rostedtb8489142011-05-04 09:27:52 -04001347 */
1348static int
1349ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip)
1350{
1351 struct ftrace_hash *filter_hash;
1352 struct ftrace_hash *notrace_hash;
1353 int ret;
1354
Steven Rostedtb8489142011-05-04 09:27:52 -04001355 filter_hash = rcu_dereference_raw(ops->filter_hash);
1356 notrace_hash = rcu_dereference_raw(ops->notrace_hash);
1357
Steven Rostedt06a51d92011-12-19 19:07:36 -05001358 if ((ftrace_hash_empty(filter_hash) ||
Steven Rostedtb8489142011-05-04 09:27:52 -04001359 ftrace_lookup_ip(filter_hash, ip)) &&
Steven Rostedt06a51d92011-12-19 19:07:36 -05001360 (ftrace_hash_empty(notrace_hash) ||
Steven Rostedtb8489142011-05-04 09:27:52 -04001361 !ftrace_lookup_ip(notrace_hash, ip)))
1362 ret = 1;
1363 else
1364 ret = 0;
Steven Rostedtb8489142011-05-04 09:27:52 -04001365
1366 return ret;
1367}
1368
1369/*
Steven Rostedt265c8312009-02-13 12:43:56 -05001370 * This is a double for. Do not use 'break' to break out of the loop,
1371 * you must use a goto.
1372 */
1373#define do_for_each_ftrace_rec(pg, rec) \
1374 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
1375 int _____i; \
1376 for (_____i = 0; _____i < pg->index; _____i++) { \
1377 rec = &pg->records[_____i];
1378
1379#define while_for_each_ftrace_rec() \
1380 } \
1381 }
Abhishek Sagarecea6562008-06-21 23:47:53 +05301382
Steven Rostedt5855fea2011-12-16 19:27:42 -05001383
1384static int ftrace_cmp_recs(const void *a, const void *b)
1385{
Steven Rostedta650e022012-04-25 13:48:13 -04001386 const struct dyn_ftrace *key = a;
1387 const struct dyn_ftrace *rec = b;
Steven Rostedt5855fea2011-12-16 19:27:42 -05001388
Steven Rostedta650e022012-04-25 13:48:13 -04001389 if (key->flags < rec->ip)
Steven Rostedt5855fea2011-12-16 19:27:42 -05001390 return -1;
Steven Rostedta650e022012-04-25 13:48:13 -04001391 if (key->ip >= rec->ip + MCOUNT_INSN_SIZE)
1392 return 1;
1393 return 0;
1394}
1395
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001396static unsigned long ftrace_location_range(unsigned long start, unsigned long end)
Steven Rostedta650e022012-04-25 13:48:13 -04001397{
1398 struct ftrace_page *pg;
1399 struct dyn_ftrace *rec;
1400 struct dyn_ftrace key;
1401
1402 key.ip = start;
1403 key.flags = end; /* overload flags, as it is unsigned long */
1404
1405 for (pg = ftrace_pages_start; pg; pg = pg->next) {
1406 if (end < pg->records[0].ip ||
1407 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
1408 continue;
1409 rec = bsearch(&key, pg->records, pg->index,
1410 sizeof(struct dyn_ftrace),
1411 ftrace_cmp_recs);
1412 if (rec)
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001413 return rec->ip;
Steven Rostedta650e022012-04-25 13:48:13 -04001414 }
1415
Steven Rostedt5855fea2011-12-16 19:27:42 -05001416 return 0;
1417}
1418
Steven Rostedtc88fd862011-08-16 09:53:39 -04001419/**
1420 * ftrace_location - return true if the ip giving is a traced location
1421 * @ip: the instruction pointer to check
1422 *
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001423 * Returns rec->ip if @ip given is a pointer to a ftrace location.
Steven Rostedtc88fd862011-08-16 09:53:39 -04001424 * That is, the instruction that is either a NOP or call to
1425 * the function tracer. It checks the ftrace internal tables to
1426 * determine if the address belongs or not.
1427 */
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001428unsigned long ftrace_location(unsigned long ip)
Steven Rostedtc88fd862011-08-16 09:53:39 -04001429{
Steven Rostedta650e022012-04-25 13:48:13 -04001430 return ftrace_location_range(ip, ip);
1431}
Steven Rostedtc88fd862011-08-16 09:53:39 -04001432
Steven Rostedta650e022012-04-25 13:48:13 -04001433/**
1434 * ftrace_text_reserved - return true if range contains an ftrace location
1435 * @start: start of range to search
1436 * @end: end of range to search (inclusive). @end points to the last byte to check.
1437 *
1438 * Returns 1 if @start and @end contains a ftrace location.
1439 * That is, the instruction that is either a NOP or call to
1440 * the function tracer. It checks the ftrace internal tables to
1441 * determine if the address belongs or not.
1442 */
1443int ftrace_text_reserved(void *start, void *end)
1444{
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001445 unsigned long ret;
1446
1447 ret = ftrace_location_range((unsigned long)start,
1448 (unsigned long)end);
1449
1450 return (int)!!ret;
Steven Rostedtc88fd862011-08-16 09:53:39 -04001451}
1452
Steven Rostedted926f92011-05-03 13:25:24 -04001453static void __ftrace_hash_rec_update(struct ftrace_ops *ops,
1454 int filter_hash,
1455 bool inc)
1456{
1457 struct ftrace_hash *hash;
1458 struct ftrace_hash *other_hash;
1459 struct ftrace_page *pg;
1460 struct dyn_ftrace *rec;
1461 int count = 0;
1462 int all = 0;
1463
1464 /* Only update if the ops has been registered */
1465 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1466 return;
1467
1468 /*
1469 * In the filter_hash case:
1470 * If the count is zero, we update all records.
1471 * Otherwise we just update the items in the hash.
1472 *
1473 * In the notrace_hash case:
1474 * We enable the update in the hash.
1475 * As disabling notrace means enabling the tracing,
1476 * and enabling notrace means disabling, the inc variable
1477 * gets inversed.
1478 */
1479 if (filter_hash) {
1480 hash = ops->filter_hash;
1481 other_hash = ops->notrace_hash;
Steven Rostedt06a51d92011-12-19 19:07:36 -05001482 if (ftrace_hash_empty(hash))
Steven Rostedted926f92011-05-03 13:25:24 -04001483 all = 1;
1484 } else {
1485 inc = !inc;
1486 hash = ops->notrace_hash;
1487 other_hash = ops->filter_hash;
1488 /*
1489 * If the notrace hash has no items,
1490 * then there's nothing to do.
1491 */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001492 if (ftrace_hash_empty(hash))
Steven Rostedted926f92011-05-03 13:25:24 -04001493 return;
1494 }
1495
1496 do_for_each_ftrace_rec(pg, rec) {
1497 int in_other_hash = 0;
1498 int in_hash = 0;
1499 int match = 0;
1500
1501 if (all) {
1502 /*
1503 * Only the filter_hash affects all records.
1504 * Update if the record is not in the notrace hash.
1505 */
Steven Rostedtb8489142011-05-04 09:27:52 -04001506 if (!other_hash || !ftrace_lookup_ip(other_hash, rec->ip))
Steven Rostedted926f92011-05-03 13:25:24 -04001507 match = 1;
1508 } else {
Steven Rostedt06a51d92011-12-19 19:07:36 -05001509 in_hash = !!ftrace_lookup_ip(hash, rec->ip);
1510 in_other_hash = !!ftrace_lookup_ip(other_hash, rec->ip);
Steven Rostedted926f92011-05-03 13:25:24 -04001511
1512 /*
1513 *
1514 */
1515 if (filter_hash && in_hash && !in_other_hash)
1516 match = 1;
1517 else if (!filter_hash && in_hash &&
Steven Rostedt06a51d92011-12-19 19:07:36 -05001518 (in_other_hash || ftrace_hash_empty(other_hash)))
Steven Rostedted926f92011-05-03 13:25:24 -04001519 match = 1;
1520 }
1521 if (!match)
1522 continue;
1523
1524 if (inc) {
1525 rec->flags++;
1526 if (FTRACE_WARN_ON((rec->flags & ~FTRACE_FL_MASK) == FTRACE_REF_MAX))
1527 return;
1528 } else {
1529 if (FTRACE_WARN_ON((rec->flags & ~FTRACE_FL_MASK) == 0))
1530 return;
1531 rec->flags--;
1532 }
1533 count++;
1534 /* Shortcut, if we handled all records, we are done. */
1535 if (!all && count == hash->count)
1536 return;
1537 } while_for_each_ftrace_rec();
1538}
1539
1540static void ftrace_hash_rec_disable(struct ftrace_ops *ops,
1541 int filter_hash)
1542{
1543 __ftrace_hash_rec_update(ops, filter_hash, 0);
1544}
1545
1546static void ftrace_hash_rec_enable(struct ftrace_ops *ops,
1547 int filter_hash)
1548{
1549 __ftrace_hash_rec_update(ops, filter_hash, 1);
1550}
1551
Steven Rostedt05736a42008-09-22 14:55:47 -07001552static void print_ip_ins(const char *fmt, unsigned char *p)
1553{
1554 int i;
1555
1556 printk(KERN_CONT "%s", fmt);
1557
1558 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
1559 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
1560}
1561
Steven Rostedtc88fd862011-08-16 09:53:39 -04001562/**
1563 * ftrace_bug - report and shutdown function tracer
1564 * @failed: The failed type (EFAULT, EINVAL, EPERM)
1565 * @ip: The address that failed
1566 *
1567 * The arch code that enables or disables the function tracing
1568 * can call ftrace_bug() when it has detected a problem in
1569 * modifying the code. @failed should be one of either:
1570 * EFAULT - if the problem happens on reading the @ip address
1571 * EINVAL - if what is read at @ip is not what was expected
1572 * EPERM - if the problem happens on writting to the @ip address
1573 */
1574void ftrace_bug(int failed, unsigned long ip)
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001575{
1576 switch (failed) {
1577 case -EFAULT:
1578 FTRACE_WARN_ON_ONCE(1);
1579 pr_info("ftrace faulted on modifying ");
1580 print_ip_sym(ip);
1581 break;
1582 case -EINVAL:
1583 FTRACE_WARN_ON_ONCE(1);
1584 pr_info("ftrace failed to modify ");
1585 print_ip_sym(ip);
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001586 print_ip_ins(" actual: ", (unsigned char *)ip);
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001587 printk(KERN_CONT "\n");
1588 break;
1589 case -EPERM:
1590 FTRACE_WARN_ON_ONCE(1);
1591 pr_info("ftrace faulted on writing ");
1592 print_ip_sym(ip);
1593 break;
1594 default:
1595 FTRACE_WARN_ON_ONCE(1);
1596 pr_info("ftrace faulted on unknown error ");
1597 print_ip_sym(ip);
1598 }
1599}
1600
Steven Rostedtc88fd862011-08-16 09:53:39 -04001601static int ftrace_check_record(struct dyn_ftrace *rec, int enable, int update)
Steven Rostedt5072c592008-05-12 21:20:43 +02001602{
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001603 unsigned long flag = 0UL;
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01001604
Steven Rostedt982c3502008-11-15 16:31:41 -05001605 /*
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001606 * If we are updating calls:
Steven Rostedt982c3502008-11-15 16:31:41 -05001607 *
Steven Rostedted926f92011-05-03 13:25:24 -04001608 * If the record has a ref count, then we need to enable it
1609 * because someone is using it.
Steven Rostedt982c3502008-11-15 16:31:41 -05001610 *
Steven Rostedted926f92011-05-03 13:25:24 -04001611 * Otherwise we make sure its disabled.
1612 *
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001613 * If we are disabling calls, then disable all records that
Steven Rostedted926f92011-05-03 13:25:24 -04001614 * are enabled.
Steven Rostedt982c3502008-11-15 16:31:41 -05001615 */
Steven Rostedtc88fd862011-08-16 09:53:39 -04001616 if (enable && (rec->flags & ~FTRACE_FL_MASK))
Steven Rostedted926f92011-05-03 13:25:24 -04001617 flag = FTRACE_FL_ENABLED;
Steven Rostedt5072c592008-05-12 21:20:43 +02001618
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001619 /* If the state of this record hasn't changed, then do nothing */
1620 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
Steven Rostedtc88fd862011-08-16 09:53:39 -04001621 return FTRACE_UPDATE_IGNORE;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001622
1623 if (flag) {
Steven Rostedtc88fd862011-08-16 09:53:39 -04001624 if (update)
1625 rec->flags |= FTRACE_FL_ENABLED;
1626 return FTRACE_UPDATE_MAKE_CALL;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001627 }
1628
Steven Rostedtc88fd862011-08-16 09:53:39 -04001629 if (update)
1630 rec->flags &= ~FTRACE_FL_ENABLED;
1631
1632 return FTRACE_UPDATE_MAKE_NOP;
1633}
1634
1635/**
1636 * ftrace_update_record, set a record that now is tracing or not
1637 * @rec: the record to update
1638 * @enable: set to 1 if the record is tracing, zero to force disable
1639 *
1640 * The records that represent all functions that can be traced need
1641 * to be updated when tracing has been enabled.
1642 */
1643int ftrace_update_record(struct dyn_ftrace *rec, int enable)
1644{
1645 return ftrace_check_record(rec, enable, 1);
1646}
1647
1648/**
1649 * ftrace_test_record, check if the record has been enabled or not
1650 * @rec: the record to test
1651 * @enable: set to 1 to check if enabled, 0 if it is disabled
1652 *
1653 * The arch code may need to test if a record is already set to
1654 * tracing to determine how to modify the function code that it
1655 * represents.
1656 */
1657int ftrace_test_record(struct dyn_ftrace *rec, int enable)
1658{
1659 return ftrace_check_record(rec, enable, 0);
1660}
1661
1662static int
1663__ftrace_replace_code(struct dyn_ftrace *rec, int enable)
1664{
1665 unsigned long ftrace_addr;
1666 int ret;
1667
1668 ftrace_addr = (unsigned long)FTRACE_ADDR;
1669
1670 ret = ftrace_update_record(rec, enable);
1671
1672 switch (ret) {
1673 case FTRACE_UPDATE_IGNORE:
1674 return 0;
1675
1676 case FTRACE_UPDATE_MAKE_CALL:
1677 return ftrace_make_call(rec, ftrace_addr);
1678
1679 case FTRACE_UPDATE_MAKE_NOP:
1680 return ftrace_make_nop(NULL, rec, ftrace_addr);
1681 }
1682
1683 return -1; /* unknow ftrace bug */
Steven Rostedt5072c592008-05-12 21:20:43 +02001684}
1685
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001686static void ftrace_replace_code(int update)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001687{
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001688 struct dyn_ftrace *rec;
1689 struct ftrace_page *pg;
Steven Rostedt6a24a242009-02-17 11:20:26 -05001690 int failed;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001691
Steven Rostedt45a4a232011-04-21 23:16:46 -04001692 if (unlikely(ftrace_disabled))
1693 return;
1694
Steven Rostedt265c8312009-02-13 12:43:56 -05001695 do_for_each_ftrace_rec(pg, rec) {
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001696 failed = __ftrace_replace_code(rec, update);
Zhaoleifa9d13c2009-03-13 17:16:34 +08001697 if (failed) {
Steven Rostedt3279ba32009-10-07 16:57:56 -04001698 ftrace_bug(failed, rec->ip);
1699 /* Stop processing */
1700 return;
Steven Rostedt265c8312009-02-13 12:43:56 -05001701 }
1702 } while_for_each_ftrace_rec();
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001703}
1704
Steven Rostedtc88fd862011-08-16 09:53:39 -04001705struct ftrace_rec_iter {
1706 struct ftrace_page *pg;
1707 int index;
1708};
1709
1710/**
1711 * ftrace_rec_iter_start, start up iterating over traced functions
1712 *
1713 * Returns an iterator handle that is used to iterate over all
1714 * the records that represent address locations where functions
1715 * are traced.
1716 *
1717 * May return NULL if no records are available.
1718 */
1719struct ftrace_rec_iter *ftrace_rec_iter_start(void)
1720{
1721 /*
1722 * We only use a single iterator.
1723 * Protected by the ftrace_lock mutex.
1724 */
1725 static struct ftrace_rec_iter ftrace_rec_iter;
1726 struct ftrace_rec_iter *iter = &ftrace_rec_iter;
1727
1728 iter->pg = ftrace_pages_start;
1729 iter->index = 0;
1730
1731 /* Could have empty pages */
1732 while (iter->pg && !iter->pg->index)
1733 iter->pg = iter->pg->next;
1734
1735 if (!iter->pg)
1736 return NULL;
1737
1738 return iter;
1739}
1740
1741/**
1742 * ftrace_rec_iter_next, get the next record to process.
1743 * @iter: The handle to the iterator.
1744 *
1745 * Returns the next iterator after the given iterator @iter.
1746 */
1747struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter)
1748{
1749 iter->index++;
1750
1751 if (iter->index >= iter->pg->index) {
1752 iter->pg = iter->pg->next;
1753 iter->index = 0;
1754
1755 /* Could have empty pages */
1756 while (iter->pg && !iter->pg->index)
1757 iter->pg = iter->pg->next;
1758 }
1759
1760 if (!iter->pg)
1761 return NULL;
1762
1763 return iter;
1764}
1765
1766/**
1767 * ftrace_rec_iter_record, get the record at the iterator location
1768 * @iter: The current iterator location
1769 *
1770 * Returns the record that the current @iter is at.
1771 */
1772struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter)
1773{
1774 return &iter->pg->records[iter->index];
1775}
1776
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05301777static int
Steven Rostedt31e88902008-11-14 16:21:19 -08001778ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001779{
1780 unsigned long ip;
Steven Rostedt593eb8a2008-10-23 09:32:59 -04001781 int ret;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001782
1783 ip = rec->ip;
1784
Steven Rostedt45a4a232011-04-21 23:16:46 -04001785 if (unlikely(ftrace_disabled))
1786 return 0;
1787
Shaohua Li25aac9d2009-01-09 11:29:40 +08001788 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
Steven Rostedt593eb8a2008-10-23 09:32:59 -04001789 if (ret) {
Steven Rostedt31e88902008-11-14 16:21:19 -08001790 ftrace_bug(ret, ip);
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05301791 return 0;
Steven Rostedt37ad5082008-05-12 21:20:48 +02001792 }
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05301793 return 1;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001794}
1795
Steven Rostedt000ab692009-02-17 13:35:06 -05001796/*
1797 * archs can override this function if they must do something
1798 * before the modifying code is performed.
1799 */
1800int __weak ftrace_arch_code_modify_prepare(void)
1801{
1802 return 0;
1803}
1804
1805/*
1806 * archs can override this function if they must do something
1807 * after the modifying code is performed.
1808 */
1809int __weak ftrace_arch_code_modify_post_process(void)
1810{
1811 return 0;
1812}
1813
Ingo Molnare309b412008-05-12 21:20:51 +02001814static int __ftrace_modify_code(void *data)
Steven Rostedt3d083392008-05-12 21:20:42 +02001815{
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001816 int *command = data;
1817
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001818 if (*command & FTRACE_UPDATE_CALLS)
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001819 ftrace_replace_code(1);
Steven Rostedta3583242008-11-11 15:01:42 -05001820 else if (*command & FTRACE_DISABLE_CALLS)
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001821 ftrace_replace_code(0);
1822
1823 if (*command & FTRACE_UPDATE_TRACE_FUNC)
1824 ftrace_update_ftrace_func(ftrace_trace_function);
1825
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05001826 if (*command & FTRACE_START_FUNC_RET)
1827 ftrace_enable_ftrace_graph_caller();
1828 else if (*command & FTRACE_STOP_FUNC_RET)
1829 ftrace_disable_ftrace_graph_caller();
1830
Steven Rostedtc88fd862011-08-16 09:53:39 -04001831 return 0;
1832}
1833
1834/**
1835 * ftrace_run_stop_machine, go back to the stop machine method
1836 * @command: The command to tell ftrace what to do
1837 *
1838 * If an arch needs to fall back to the stop machine method, the
1839 * it can call this function.
1840 */
1841void ftrace_run_stop_machine(int command)
1842{
1843 stop_machine(__ftrace_modify_code, &command, NULL);
1844}
1845
1846/**
1847 * arch_ftrace_update_code, modify the code to trace or not trace
1848 * @command: The command that needs to be done
1849 *
1850 * Archs can override this function if it does not need to
1851 * run stop_machine() to modify code.
1852 */
1853void __weak arch_ftrace_update_code(int command)
1854{
1855 ftrace_run_stop_machine(command);
1856}
1857
1858static void ftrace_run_update_code(int command)
1859{
1860 int ret;
1861
1862 ret = ftrace_arch_code_modify_prepare();
1863 FTRACE_WARN_ON(ret);
1864 if (ret)
1865 return;
1866 /*
1867 * Do not call function tracer while we update the code.
1868 * We are in stop machine.
1869 */
1870 function_trace_stop++;
1871
1872 /*
1873 * By default we use stop_machine() to modify the code.
1874 * But archs can do what ever they want as long as it
1875 * is safe. The stop_machine() is the safest, but also
1876 * produces the most overhead.
1877 */
1878 arch_ftrace_update_code(command);
1879
Steven Rostedt6331c282011-07-13 15:11:02 -04001880#ifndef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST
1881 /*
1882 * For archs that call ftrace_test_stop_func(), we must
1883 * wait till after we update all the function callers
1884 * before we update the callback. This keeps different
1885 * ops that record different functions from corrupting
1886 * each other.
1887 */
1888 __ftrace_trace_function = __ftrace_trace_function_delay;
1889#endif
1890 function_trace_stop--;
1891
Steven Rostedt000ab692009-02-17 13:35:06 -05001892 ret = ftrace_arch_code_modify_post_process();
1893 FTRACE_WARN_ON(ret);
Steven Rostedt3d083392008-05-12 21:20:42 +02001894}
1895
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001896static ftrace_func_t saved_ftrace_func;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001897static int ftrace_start_up;
Steven Rostedtb8489142011-05-04 09:27:52 -04001898static int global_start_up;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05001899
1900static void ftrace_startup_enable(int command)
1901{
1902 if (saved_ftrace_func != ftrace_trace_function) {
1903 saved_ftrace_func = ftrace_trace_function;
1904 command |= FTRACE_UPDATE_TRACE_FUNC;
1905 }
1906
1907 if (!command || !ftrace_enabled)
1908 return;
1909
1910 ftrace_run_update_code(command);
1911}
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001912
Steven Rostedta1cd6172011-05-23 15:24:25 -04001913static int ftrace_startup(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02001914{
Steven Rostedtb8489142011-05-04 09:27:52 -04001915 bool hash_enable = true;
1916
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001917 if (unlikely(ftrace_disabled))
Steven Rostedta1cd6172011-05-23 15:24:25 -04001918 return -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001919
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001920 ftrace_start_up++;
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001921 command |= FTRACE_UPDATE_CALLS;
Steven Rostedt3d083392008-05-12 21:20:42 +02001922
Steven Rostedtb8489142011-05-04 09:27:52 -04001923 /* ops marked global share the filter hashes */
1924 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
1925 ops = &global_ops;
1926 /* Don't update hash if global is already set */
1927 if (global_start_up)
1928 hash_enable = false;
1929 global_start_up++;
1930 }
1931
Steven Rostedted926f92011-05-03 13:25:24 -04001932 ops->flags |= FTRACE_OPS_FL_ENABLED;
Steven Rostedtb8489142011-05-04 09:27:52 -04001933 if (hash_enable)
Steven Rostedted926f92011-05-03 13:25:24 -04001934 ftrace_hash_rec_enable(ops, 1);
1935
Steven Rostedtdf4fc312008-11-26 00:16:23 -05001936 ftrace_startup_enable(command);
Steven Rostedta1cd6172011-05-23 15:24:25 -04001937
1938 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02001939}
1940
Steven Rostedtbd69c302011-05-03 21:55:54 -04001941static void ftrace_shutdown(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02001942{
Steven Rostedtb8489142011-05-04 09:27:52 -04001943 bool hash_disable = true;
1944
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001945 if (unlikely(ftrace_disabled))
1946 return;
1947
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001948 ftrace_start_up--;
Frederic Weisbecker9ea1a152009-06-20 06:52:21 +02001949 /*
1950 * Just warn in case of unbalance, no need to kill ftrace, it's not
1951 * critical but the ftrace_call callers may be never nopped again after
1952 * further ftrace uses.
1953 */
1954 WARN_ON_ONCE(ftrace_start_up < 0);
1955
Steven Rostedtb8489142011-05-04 09:27:52 -04001956 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
1957 ops = &global_ops;
1958 global_start_up--;
1959 WARN_ON_ONCE(global_start_up < 0);
1960 /* Don't update hash if global still has users */
1961 if (global_start_up) {
1962 WARN_ON_ONCE(!ftrace_start_up);
1963 hash_disable = false;
1964 }
1965 }
1966
1967 if (hash_disable)
Steven Rostedted926f92011-05-03 13:25:24 -04001968 ftrace_hash_rec_disable(ops, 1);
1969
Steven Rostedtb8489142011-05-04 09:27:52 -04001970 if (ops != &global_ops || !global_start_up)
Steven Rostedted926f92011-05-03 13:25:24 -04001971 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
Steven Rostedtb8489142011-05-04 09:27:52 -04001972
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001973 command |= FTRACE_UPDATE_CALLS;
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001974
1975 if (saved_ftrace_func != ftrace_trace_function) {
1976 saved_ftrace_func = ftrace_trace_function;
1977 command |= FTRACE_UPDATE_TRACE_FUNC;
1978 }
1979
1980 if (!command || !ftrace_enabled)
Steven Rostedte6ea44e2009-02-14 01:42:44 -05001981 return;
Steven Rostedt3d083392008-05-12 21:20:42 +02001982
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001983 ftrace_run_update_code(command);
Steven Rostedt3d083392008-05-12 21:20:42 +02001984}
1985
Ingo Molnare309b412008-05-12 21:20:51 +02001986static void ftrace_startup_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02001987{
Steven Rostedt4eebcc82008-05-12 21:20:48 +02001988 if (unlikely(ftrace_disabled))
1989 return;
1990
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001991 /* Force update next time */
1992 saved_ftrace_func = NULL;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05001993 /* ftrace_start_up is true if we want ftrace running */
1994 if (ftrace_start_up)
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001995 ftrace_run_update_code(FTRACE_UPDATE_CALLS);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02001996}
1997
Ingo Molnare309b412008-05-12 21:20:51 +02001998static void ftrace_shutdown_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02001999{
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002000 if (unlikely(ftrace_disabled))
2001 return;
2002
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002003 /* ftrace_start_up is true if ftrace is running */
2004 if (ftrace_start_up)
Steven Rostedt79e406d2010-09-14 22:19:46 -04002005 ftrace_run_update_code(FTRACE_DISABLE_CALLS);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002006}
2007
Steven Rostedt3d083392008-05-12 21:20:42 +02002008static cycle_t ftrace_update_time;
2009static unsigned long ftrace_update_cnt;
2010unsigned long ftrace_update_tot_cnt;
2011
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002012static int ops_traces_mod(struct ftrace_ops *ops)
2013{
2014 struct ftrace_hash *hash;
2015
2016 hash = ops->filter_hash;
Steven Rostedt06a51d92011-12-19 19:07:36 -05002017 return ftrace_hash_empty(hash);
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002018}
2019
Steven Rostedt31e88902008-11-14 16:21:19 -08002020static int ftrace_update_code(struct module *mod)
Steven Rostedt3d083392008-05-12 21:20:42 +02002021{
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002022 struct ftrace_page *pg;
Lai Jiangshane94142a2009-03-13 17:51:27 +08002023 struct dyn_ftrace *p;
Abhishek Sagarf22f9a82008-06-21 23:50:29 +05302024 cycle_t start, stop;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002025 unsigned long ref = 0;
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002026 int i;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002027
2028 /*
2029 * When adding a module, we need to check if tracers are
2030 * currently enabled and if they are set to trace all functions.
2031 * If they are, we need to enable the module functions as well
2032 * as update the reference counts for those function records.
2033 */
2034 if (mod) {
2035 struct ftrace_ops *ops;
2036
2037 for (ops = ftrace_ops_list;
2038 ops != &ftrace_list_end; ops = ops->next) {
2039 if (ops->flags & FTRACE_OPS_FL_ENABLED &&
2040 ops_traces_mod(ops))
2041 ref++;
2042 }
2043 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002044
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002045 start = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002046 ftrace_update_cnt = 0;
2047
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002048 for (pg = ftrace_new_pgs; pg; pg = pg->next) {
Abhishek Sagarf22f9a82008-06-21 23:50:29 +05302049
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002050 for (i = 0; i < pg->index; i++) {
2051 /* If something went wrong, bail without enabling anything */
2052 if (unlikely(ftrace_disabled))
2053 return -1;
Steven Rostedt3d083392008-05-12 21:20:42 +02002054
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002055 p = &pg->records[i];
2056 p->flags = ref;
Abhishek Sagar0eb96702008-06-01 21:47:30 +05302057
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002058 /*
2059 * Do the initial record conversion from mcount jump
2060 * to the NOP instructions.
2061 */
2062 if (!ftrace_code_disable(mod, p))
2063 break;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002064
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002065 ftrace_update_cnt++;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002066
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002067 /*
2068 * If the tracing is enabled, go ahead and enable the record.
2069 *
2070 * The reason not to enable the record immediatelly is the
2071 * inherent check of ftrace_make_nop/ftrace_make_call for
2072 * correct previous instructions. Making first the NOP
2073 * conversion puts the module to the correct state, thus
2074 * passing the ftrace_make_call check.
2075 */
2076 if (ftrace_start_up && ref) {
2077 int failed = __ftrace_replace_code(p, 1);
2078 if (failed)
2079 ftrace_bug(failed, p->ip);
2080 }
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002081 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002082 }
2083
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002084 ftrace_new_pgs = NULL;
2085
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002086 stop = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002087 ftrace_update_time = stop - start;
2088 ftrace_update_tot_cnt += ftrace_update_cnt;
2089
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02002090 return 0;
2091}
2092
Steven Rostedta7900872011-12-16 16:23:44 -05002093static int ftrace_allocate_records(struct ftrace_page *pg, int count)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002094{
Steven Rostedta7900872011-12-16 16:23:44 -05002095 int order;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002096 int cnt;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002097
Steven Rostedta7900872011-12-16 16:23:44 -05002098 if (WARN_ON(!count))
2099 return -EINVAL;
2100
2101 order = get_count_order(DIV_ROUND_UP(count, ENTRIES_PER_PAGE));
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002102
2103 /*
Steven Rostedta7900872011-12-16 16:23:44 -05002104 * We want to fill as much as possible. No more than a page
2105 * may be empty.
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002106 */
Steven Rostedta7900872011-12-16 16:23:44 -05002107 while ((PAGE_SIZE << order) / ENTRY_SIZE >= count + ENTRIES_PER_PAGE)
2108 order--;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002109
Steven Rostedta7900872011-12-16 16:23:44 -05002110 again:
2111 pg->records = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
2112
2113 if (!pg->records) {
2114 /* if we can't allocate this size, try something smaller */
2115 if (!order)
2116 return -ENOMEM;
2117 order >>= 1;
2118 goto again;
2119 }
2120
2121 cnt = (PAGE_SIZE << order) / ENTRY_SIZE;
2122 pg->size = cnt;
2123
2124 if (cnt > count)
2125 cnt = count;
2126
2127 return cnt;
2128}
2129
2130static struct ftrace_page *
2131ftrace_allocate_pages(unsigned long num_to_init)
2132{
2133 struct ftrace_page *start_pg;
2134 struct ftrace_page *pg;
2135 int order;
2136 int cnt;
2137
2138 if (!num_to_init)
2139 return 0;
2140
2141 start_pg = pg = kzalloc(sizeof(*pg), GFP_KERNEL);
2142 if (!pg)
2143 return NULL;
2144
2145 /*
2146 * Try to allocate as much as possible in one continues
2147 * location that fills in all of the space. We want to
2148 * waste as little space as possible.
2149 */
2150 for (;;) {
2151 cnt = ftrace_allocate_records(pg, num_to_init);
2152 if (cnt < 0)
2153 goto free_pages;
2154
2155 num_to_init -= cnt;
2156 if (!num_to_init)
2157 break;
2158
2159 pg->next = kzalloc(sizeof(*pg), GFP_KERNEL);
2160 if (!pg->next)
2161 goto free_pages;
2162
2163 pg = pg->next;
2164 }
2165
2166 return start_pg;
2167
2168 free_pages:
2169 while (start_pg) {
2170 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
2171 free_pages((unsigned long)pg->records, order);
2172 start_pg = pg->next;
2173 kfree(pg);
2174 pg = start_pg;
2175 }
2176 pr_info("ftrace: FAILED to allocate memory for functions\n");
2177 return NULL;
2178}
2179
2180static int __init ftrace_dyn_table_alloc(unsigned long num_to_init)
2181{
2182 int cnt;
2183
2184 if (!num_to_init) {
2185 pr_info("ftrace: No functions to be traced?\n");
2186 return -1;
2187 }
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002188
Steven Rostedt68bf21a2008-08-14 15:45:08 -04002189 cnt = num_to_init / ENTRIES_PER_PAGE;
Steven Rostedt08f5ac902008-10-23 09:33:07 -04002190 pr_info("ftrace: allocating %ld entries in %d pages\n",
walimis5821e1b2008-11-15 15:19:06 +08002191 num_to_init, cnt + 1);
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002192
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002193 return 0;
2194}
2195
Steven Rostedt5072c592008-05-12 21:20:43 +02002196#define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
2197
2198struct ftrace_iterator {
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002199 loff_t pos;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002200 loff_t func_pos;
2201 struct ftrace_page *pg;
2202 struct dyn_ftrace *func;
2203 struct ftrace_func_probe *probe;
2204 struct trace_parser parser;
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002205 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002206 struct ftrace_ops *ops;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002207 int hidx;
2208 int idx;
2209 unsigned flags;
Steven Rostedt5072c592008-05-12 21:20:43 +02002210};
2211
Ingo Molnare309b412008-05-12 21:20:51 +02002212static void *
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002213t_hash_next(struct seq_file *m, loff_t *pos)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002214{
2215 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002216 struct hlist_node *hnd = NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002217 struct hlist_head *hhd;
2218
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002219 (*pos)++;
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002220 iter->pos = *pos;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002221
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002222 if (iter->probe)
2223 hnd = &iter->probe->node;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002224 retry:
2225 if (iter->hidx >= FTRACE_FUNC_HASHSIZE)
2226 return NULL;
2227
2228 hhd = &ftrace_func_hash[iter->hidx];
2229
2230 if (hlist_empty(hhd)) {
2231 iter->hidx++;
2232 hnd = NULL;
2233 goto retry;
2234 }
2235
2236 if (!hnd)
2237 hnd = hhd->first;
2238 else {
2239 hnd = hnd->next;
2240 if (!hnd) {
2241 iter->hidx++;
2242 goto retry;
2243 }
2244 }
2245
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002246 if (WARN_ON_ONCE(!hnd))
2247 return NULL;
2248
2249 iter->probe = hlist_entry(hnd, struct ftrace_func_probe, node);
2250
2251 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002252}
2253
2254static void *t_hash_start(struct seq_file *m, loff_t *pos)
2255{
2256 struct ftrace_iterator *iter = m->private;
2257 void *p = NULL;
Li Zefand82d6242009-06-24 09:54:54 +08002258 loff_t l;
2259
Steven Rostedt69a30832011-12-19 15:21:16 -05002260 if (!(iter->flags & FTRACE_ITER_DO_HASH))
2261 return NULL;
2262
Steven Rostedt2bccfff2010-09-09 08:43:22 -04002263 if (iter->func_pos > *pos)
2264 return NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002265
Li Zefand82d6242009-06-24 09:54:54 +08002266 iter->hidx = 0;
Steven Rostedt2bccfff2010-09-09 08:43:22 -04002267 for (l = 0; l <= (*pos - iter->func_pos); ) {
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002268 p = t_hash_next(m, &l);
Li Zefand82d6242009-06-24 09:54:54 +08002269 if (!p)
2270 break;
2271 }
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002272 if (!p)
2273 return NULL;
2274
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002275 /* Only set this if we have an item */
2276 iter->flags |= FTRACE_ITER_HASH;
2277
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002278 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002279}
2280
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002281static int
2282t_hash_show(struct seq_file *m, struct ftrace_iterator *iter)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002283{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002284 struct ftrace_func_probe *rec;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002285
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002286 rec = iter->probe;
2287 if (WARN_ON_ONCE(!rec))
2288 return -EIO;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002289
Steven Rostedt809dcf22009-02-16 23:06:01 -05002290 if (rec->ops->print)
2291 return rec->ops->print(m, rec->ip, rec->ops, rec->data);
2292
Steven Rostedtb375a112009-09-17 00:05:58 -04002293 seq_printf(m, "%ps:%ps", (void *)rec->ip, (void *)rec->ops->func);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002294
2295 if (rec->data)
2296 seq_printf(m, ":%p", rec->data);
2297 seq_putc(m, '\n');
2298
2299 return 0;
2300}
2301
2302static void *
Steven Rostedt5072c592008-05-12 21:20:43 +02002303t_next(struct seq_file *m, void *v, loff_t *pos)
2304{
2305 struct ftrace_iterator *iter = m->private;
Steven Rostedtfc13cb02011-12-19 14:41:25 -05002306 struct ftrace_ops *ops = iter->ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02002307 struct dyn_ftrace *rec = NULL;
2308
Steven Rostedt45a4a232011-04-21 23:16:46 -04002309 if (unlikely(ftrace_disabled))
2310 return NULL;
2311
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002312 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002313 return t_hash_next(m, pos);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002314
Steven Rostedt5072c592008-05-12 21:20:43 +02002315 (*pos)++;
Jiri Olsa1106b692011-02-16 17:35:34 +01002316 iter->pos = iter->func_pos = *pos;
Steven Rostedt5072c592008-05-12 21:20:43 +02002317
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002318 if (iter->flags & FTRACE_ITER_PRINTALL)
Steven Rostedt57c072c2010-09-14 11:21:11 -04002319 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002320
Steven Rostedt5072c592008-05-12 21:20:43 +02002321 retry:
2322 if (iter->idx >= iter->pg->index) {
2323 if (iter->pg->next) {
2324 iter->pg = iter->pg->next;
2325 iter->idx = 0;
2326 goto retry;
2327 }
2328 } else {
2329 rec = &iter->pg->records[iter->idx++];
Steven Rostedt32082302011-12-16 14:42:37 -05002330 if (((iter->flags & FTRACE_ITER_FILTER) &&
Steven Rostedtf45948e2011-05-02 12:29:25 -04002331 !(ftrace_lookup_ip(ops->filter_hash, rec->ip))) ||
Steven Rostedt0183fb12008-11-07 22:36:02 -05002332
Steven Rostedt41c52c02008-05-22 11:46:33 -04002333 ((iter->flags & FTRACE_ITER_NOTRACE) &&
Steven Rostedt647bcd02011-05-03 14:39:21 -04002334 !ftrace_lookup_ip(ops->notrace_hash, rec->ip)) ||
2335
2336 ((iter->flags & FTRACE_ITER_ENABLED) &&
2337 !(rec->flags & ~FTRACE_FL_MASK))) {
2338
Steven Rostedt5072c592008-05-12 21:20:43 +02002339 rec = NULL;
2340 goto retry;
2341 }
2342 }
2343
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002344 if (!rec)
Steven Rostedt57c072c2010-09-14 11:21:11 -04002345 return t_hash_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002346
2347 iter->func = rec;
2348
2349 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02002350}
2351
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002352static void reset_iter_read(struct ftrace_iterator *iter)
2353{
2354 iter->pos = 0;
2355 iter->func_pos = 0;
2356 iter->flags &= ~(FTRACE_ITER_PRINTALL & FTRACE_ITER_HASH);
Steven Rostedt5072c592008-05-12 21:20:43 +02002357}
2358
2359static void *t_start(struct seq_file *m, loff_t *pos)
2360{
2361 struct ftrace_iterator *iter = m->private;
Steven Rostedtfc13cb02011-12-19 14:41:25 -05002362 struct ftrace_ops *ops = iter->ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02002363 void *p = NULL;
Li Zefan694ce0a2009-06-24 09:54:19 +08002364 loff_t l;
Steven Rostedt5072c592008-05-12 21:20:43 +02002365
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002366 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04002367
2368 if (unlikely(ftrace_disabled))
2369 return NULL;
2370
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002371 /*
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002372 * If an lseek was done, then reset and start from beginning.
2373 */
2374 if (*pos < iter->pos)
2375 reset_iter_read(iter);
2376
2377 /*
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002378 * For set_ftrace_filter reading, if we have the filter
2379 * off, we can short cut and just print out that all
2380 * functions are enabled.
2381 */
Steven Rostedt06a51d92011-12-19 19:07:36 -05002382 if (iter->flags & FTRACE_ITER_FILTER &&
2383 ftrace_hash_empty(ops->filter_hash)) {
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002384 if (*pos > 0)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002385 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002386 iter->flags |= FTRACE_ITER_PRINTALL;
Chris Wrightdf091622010-09-09 16:34:59 -07002387 /* reset in case of seek/pread */
2388 iter->flags &= ~FTRACE_ITER_HASH;
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002389 return iter;
2390 }
2391
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002392 if (iter->flags & FTRACE_ITER_HASH)
2393 return t_hash_start(m, pos);
2394
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002395 /*
2396 * Unfortunately, we need to restart at ftrace_pages_start
2397 * every time we let go of the ftrace_mutex. This is because
2398 * those pointers can change without the lock.
2399 */
Li Zefan694ce0a2009-06-24 09:54:19 +08002400 iter->pg = ftrace_pages_start;
2401 iter->idx = 0;
2402 for (l = 0; l <= *pos; ) {
2403 p = t_next(m, p, &l);
2404 if (!p)
2405 break;
Liming Wang50cdaf02008-11-28 12:13:21 +08002406 }
walimis5821e1b2008-11-15 15:19:06 +08002407
Steven Rostedt69a30832011-12-19 15:21:16 -05002408 if (!p)
2409 return t_hash_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002410
2411 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02002412}
2413
2414static void t_stop(struct seq_file *m, void *p)
2415{
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002416 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02002417}
2418
2419static int t_show(struct seq_file *m, void *v)
2420{
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002421 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002422 struct dyn_ftrace *rec;
Steven Rostedt5072c592008-05-12 21:20:43 +02002423
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002424 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002425 return t_hash_show(m, iter);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002426
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002427 if (iter->flags & FTRACE_ITER_PRINTALL) {
2428 seq_printf(m, "#### all functions enabled ####\n");
2429 return 0;
2430 }
2431
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002432 rec = iter->func;
2433
Steven Rostedt5072c592008-05-12 21:20:43 +02002434 if (!rec)
2435 return 0;
2436
Steven Rostedt647bcd02011-05-03 14:39:21 -04002437 seq_printf(m, "%ps", (void *)rec->ip);
2438 if (iter->flags & FTRACE_ITER_ENABLED)
2439 seq_printf(m, " (%ld)",
2440 rec->flags & ~FTRACE_FL_MASK);
2441 seq_printf(m, "\n");
Steven Rostedt5072c592008-05-12 21:20:43 +02002442
2443 return 0;
2444}
2445
James Morris88e9d342009-09-22 16:43:43 -07002446static const struct seq_operations show_ftrace_seq_ops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02002447 .start = t_start,
2448 .next = t_next,
2449 .stop = t_stop,
2450 .show = t_show,
2451};
2452
Ingo Molnare309b412008-05-12 21:20:51 +02002453static int
Steven Rostedt5072c592008-05-12 21:20:43 +02002454ftrace_avail_open(struct inode *inode, struct file *file)
2455{
2456 struct ftrace_iterator *iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02002457
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002458 if (unlikely(ftrace_disabled))
2459 return -ENODEV;
2460
Jiri Olsa50e18b92012-04-25 10:23:39 +02002461 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
2462 if (iter) {
2463 iter->pg = ftrace_pages_start;
2464 iter->ops = &global_ops;
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002465 }
Steven Rostedt5072c592008-05-12 21:20:43 +02002466
Jiri Olsa50e18b92012-04-25 10:23:39 +02002467 return iter ? 0 : -ENOMEM;
Steven Rostedt5072c592008-05-12 21:20:43 +02002468}
2469
Steven Rostedt647bcd02011-05-03 14:39:21 -04002470static int
2471ftrace_enabled_open(struct inode *inode, struct file *file)
2472{
2473 struct ftrace_iterator *iter;
Steven Rostedt647bcd02011-05-03 14:39:21 -04002474
2475 if (unlikely(ftrace_disabled))
2476 return -ENODEV;
2477
Jiri Olsa50e18b92012-04-25 10:23:39 +02002478 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
2479 if (iter) {
2480 iter->pg = ftrace_pages_start;
2481 iter->flags = FTRACE_ITER_ENABLED;
2482 iter->ops = &global_ops;
Steven Rostedt647bcd02011-05-03 14:39:21 -04002483 }
2484
Jiri Olsa50e18b92012-04-25 10:23:39 +02002485 return iter ? 0 : -ENOMEM;
Steven Rostedt647bcd02011-05-03 14:39:21 -04002486}
2487
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002488static void ftrace_filter_reset(struct ftrace_hash *hash)
Steven Rostedt5072c592008-05-12 21:20:43 +02002489{
Steven Rostedt52baf112009-02-14 01:15:39 -05002490 mutex_lock(&ftrace_lock);
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002491 ftrace_hash_clear(hash);
Steven Rostedt52baf112009-02-14 01:15:39 -05002492 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02002493}
2494
Steven Rostedtfc13cb02011-12-19 14:41:25 -05002495/**
2496 * ftrace_regex_open - initialize function tracer filter files
2497 * @ops: The ftrace_ops that hold the hash filters
2498 * @flag: The type of filter to process
2499 * @inode: The inode, usually passed in to your open routine
2500 * @file: The file, usually passed in to your open routine
2501 *
2502 * ftrace_regex_open() initializes the filter files for the
2503 * @ops. Depending on @flag it may process the filter hash or
2504 * the notrace hash of @ops. With this called from the open
2505 * routine, you can use ftrace_filter_write() for the write
2506 * routine if @flag has FTRACE_ITER_FILTER set, or
2507 * ftrace_notrace_write() if @flag has FTRACE_ITER_NOTRACE set.
2508 * ftrace_regex_lseek() should be used as the lseek routine, and
2509 * release must call ftrace_regex_release().
2510 */
2511int
Steven Rostedtf45948e2011-05-02 12:29:25 -04002512ftrace_regex_open(struct ftrace_ops *ops, int flag,
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002513 struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02002514{
2515 struct ftrace_iterator *iter;
Steven Rostedtf45948e2011-05-02 12:29:25 -04002516 struct ftrace_hash *hash;
Steven Rostedt5072c592008-05-12 21:20:43 +02002517 int ret = 0;
2518
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002519 if (unlikely(ftrace_disabled))
2520 return -ENODEV;
2521
Steven Rostedt5072c592008-05-12 21:20:43 +02002522 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2523 if (!iter)
2524 return -ENOMEM;
2525
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002526 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
2527 kfree(iter);
2528 return -ENOMEM;
2529 }
2530
Steven Rostedtf45948e2011-05-02 12:29:25 -04002531 if (flag & FTRACE_ITER_NOTRACE)
2532 hash = ops->notrace_hash;
2533 else
2534 hash = ops->filter_hash;
2535
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002536 iter->ops = ops;
2537 iter->flags = flag;
2538
2539 if (file->f_mode & FMODE_WRITE) {
2540 mutex_lock(&ftrace_lock);
2541 iter->hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, hash);
2542 mutex_unlock(&ftrace_lock);
2543
2544 if (!iter->hash) {
2545 trace_parser_put(&iter->parser);
2546 kfree(iter);
2547 return -ENOMEM;
2548 }
2549 }
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002550
Steven Rostedt41c52c02008-05-22 11:46:33 -04002551 mutex_lock(&ftrace_regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002552
Steven Rostedt5072c592008-05-12 21:20:43 +02002553 if ((file->f_mode & FMODE_WRITE) &&
Steven Rostedt8650ae32009-07-22 23:29:30 -04002554 (file->f_flags & O_TRUNC))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002555 ftrace_filter_reset(iter->hash);
Steven Rostedt5072c592008-05-12 21:20:43 +02002556
2557 if (file->f_mode & FMODE_READ) {
2558 iter->pg = ftrace_pages_start;
Steven Rostedt5072c592008-05-12 21:20:43 +02002559
2560 ret = seq_open(file, &show_ftrace_seq_ops);
2561 if (!ret) {
2562 struct seq_file *m = file->private_data;
2563 m->private = iter;
Li Zefan79fe2492009-09-22 13:54:28 +08002564 } else {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002565 /* Failed */
2566 free_ftrace_hash(iter->hash);
Li Zefan79fe2492009-09-22 13:54:28 +08002567 trace_parser_put(&iter->parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02002568 kfree(iter);
Li Zefan79fe2492009-09-22 13:54:28 +08002569 }
Steven Rostedt5072c592008-05-12 21:20:43 +02002570 } else
2571 file->private_data = iter;
Steven Rostedt41c52c02008-05-22 11:46:33 -04002572 mutex_unlock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02002573
2574 return ret;
2575}
2576
Steven Rostedt41c52c02008-05-22 11:46:33 -04002577static int
2578ftrace_filter_open(struct inode *inode, struct file *file)
2579{
Steven Rostedt69a30832011-12-19 15:21:16 -05002580 return ftrace_regex_open(&global_ops,
2581 FTRACE_ITER_FILTER | FTRACE_ITER_DO_HASH,
2582 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04002583}
2584
2585static int
2586ftrace_notrace_open(struct inode *inode, struct file *file)
2587{
Steven Rostedtf45948e2011-05-02 12:29:25 -04002588 return ftrace_regex_open(&global_ops, FTRACE_ITER_NOTRACE,
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002589 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04002590}
2591
Steven Rostedtfc13cb02011-12-19 14:41:25 -05002592loff_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04002593ftrace_regex_lseek(struct file *file, loff_t offset, int origin)
Steven Rostedt5072c592008-05-12 21:20:43 +02002594{
2595 loff_t ret;
2596
2597 if (file->f_mode & FMODE_READ)
2598 ret = seq_lseek(file, offset, origin);
2599 else
2600 file->f_pos = ret = 1;
2601
2602 return ret;
2603}
2604
Steven Rostedt64e7c442009-02-13 17:08:48 -05002605static int ftrace_match(char *str, char *regex, int len, int type)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002606{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002607 int matched = 0;
Li Zefan751e9982010-01-14 10:53:02 +08002608 int slen;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002609
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002610 switch (type) {
2611 case MATCH_FULL:
2612 if (strcmp(str, regex) == 0)
2613 matched = 1;
2614 break;
2615 case MATCH_FRONT_ONLY:
2616 if (strncmp(str, regex, len) == 0)
2617 matched = 1;
2618 break;
2619 case MATCH_MIDDLE_ONLY:
2620 if (strstr(str, regex))
2621 matched = 1;
2622 break;
2623 case MATCH_END_ONLY:
Li Zefan751e9982010-01-14 10:53:02 +08002624 slen = strlen(str);
2625 if (slen >= len && memcmp(str + slen - len, regex, len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002626 matched = 1;
2627 break;
2628 }
2629
2630 return matched;
2631}
2632
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002633static int
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002634enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int not)
Steven Rostedt996e87b2011-04-26 16:11:03 -04002635{
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002636 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002637 int ret = 0;
2638
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002639 entry = ftrace_lookup_ip(hash, rec->ip);
2640 if (not) {
2641 /* Do nothing if it doesn't exist */
2642 if (!entry)
2643 return 0;
2644
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002645 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002646 } else {
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002647 /* Do nothing if it exists */
2648 if (entry)
2649 return 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002650
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002651 ret = add_hash_entry(hash, rec->ip);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002652 }
2653 return ret;
Steven Rostedt996e87b2011-04-26 16:11:03 -04002654}
2655
Steven Rostedt64e7c442009-02-13 17:08:48 -05002656static int
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002657ftrace_match_record(struct dyn_ftrace *rec, char *mod,
2658 char *regex, int len, int type)
Steven Rostedt64e7c442009-02-13 17:08:48 -05002659{
2660 char str[KSYM_SYMBOL_LEN];
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002661 char *modname;
Steven Rostedt64e7c442009-02-13 17:08:48 -05002662
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002663 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
2664
2665 if (mod) {
2666 /* module lookup requires matching the module */
2667 if (!modname || strcmp(modname, mod))
2668 return 0;
2669
2670 /* blank search means to match all funcs in the mod */
2671 if (!len)
2672 return 1;
2673 }
2674
Steven Rostedt64e7c442009-02-13 17:08:48 -05002675 return ftrace_match(str, regex, len, type);
2676}
2677
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002678static int
2679match_records(struct ftrace_hash *hash, char *buff,
2680 int len, char *mod, int not)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002681{
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002682 unsigned search_len = 0;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002683 struct ftrace_page *pg;
2684 struct dyn_ftrace *rec;
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002685 int type = MATCH_FULL;
2686 char *search = buff;
Li Zefan311d16d2009-12-08 11:15:11 +08002687 int found = 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002688 int ret;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002689
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002690 if (len) {
2691 type = filter_parse_regex(buff, len, &search, &not);
2692 search_len = strlen(search);
2693 }
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002694
Steven Rostedt52baf112009-02-14 01:15:39 -05002695 mutex_lock(&ftrace_lock);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002696
2697 if (unlikely(ftrace_disabled))
2698 goto out_unlock;
2699
Steven Rostedt265c8312009-02-13 12:43:56 -05002700 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002701 if (ftrace_match_record(rec, mod, search, search_len, type)) {
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002702 ret = enter_record(hash, rec, not);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002703 if (ret < 0) {
2704 found = ret;
2705 goto out_unlock;
2706 }
Li Zefan311d16d2009-12-08 11:15:11 +08002707 found = 1;
Steven Rostedt265c8312009-02-13 12:43:56 -05002708 }
2709 } while_for_each_ftrace_rec();
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002710 out_unlock:
Steven Rostedt52baf112009-02-14 01:15:39 -05002711 mutex_unlock(&ftrace_lock);
Li Zefan311d16d2009-12-08 11:15:11 +08002712
2713 return found;
Steven Rostedt5072c592008-05-12 21:20:43 +02002714}
2715
Steven Rostedt64e7c442009-02-13 17:08:48 -05002716static int
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002717ftrace_match_records(struct ftrace_hash *hash, char *buff, int len)
Steven Rostedt64e7c442009-02-13 17:08:48 -05002718{
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002719 return match_records(hash, buff, len, NULL, 0);
Steven Rostedt64e7c442009-02-13 17:08:48 -05002720}
2721
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002722static int
2723ftrace_match_module_records(struct ftrace_hash *hash, char *buff, char *mod)
Steven Rostedt64e7c442009-02-13 17:08:48 -05002724{
Steven Rostedt64e7c442009-02-13 17:08:48 -05002725 int not = 0;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002726
Steven Rostedt64e7c442009-02-13 17:08:48 -05002727 /* blank or '*' mean the same */
2728 if (strcmp(buff, "*") == 0)
2729 buff[0] = 0;
2730
2731 /* handle the case of 'dont filter this module' */
2732 if (strcmp(buff, "!") == 0 || strcmp(buff, "!*") == 0) {
2733 buff[0] = 0;
2734 not = 1;
2735 }
2736
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002737 return match_records(hash, buff, strlen(buff), mod, not);
Steven Rostedt64e7c442009-02-13 17:08:48 -05002738}
2739
Steven Rostedtf6180772009-02-14 00:40:25 -05002740/*
2741 * We register the module command as a template to show others how
2742 * to register the a command as well.
2743 */
2744
2745static int
Steven Rostedt43dd61c2011-07-07 11:09:22 -04002746ftrace_mod_callback(struct ftrace_hash *hash,
2747 char *func, char *cmd, char *param, int enable)
Steven Rostedtf6180772009-02-14 00:40:25 -05002748{
2749 char *mod;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002750 int ret = -EINVAL;
Steven Rostedtf6180772009-02-14 00:40:25 -05002751
2752 /*
2753 * cmd == 'mod' because we only registered this func
2754 * for the 'mod' ftrace_func_command.
2755 * But if you register one func with multiple commands,
2756 * you can tell which command was used by the cmd
2757 * parameter.
2758 */
2759
2760 /* we must have a module name */
2761 if (!param)
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002762 return ret;
Steven Rostedtf6180772009-02-14 00:40:25 -05002763
2764 mod = strsep(&param, ":");
2765 if (!strlen(mod))
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002766 return ret;
Steven Rostedtf6180772009-02-14 00:40:25 -05002767
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04002768 ret = ftrace_match_module_records(hash, func, mod);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002769 if (!ret)
2770 ret = -EINVAL;
2771 if (ret < 0)
2772 return ret;
2773
2774 return 0;
Steven Rostedtf6180772009-02-14 00:40:25 -05002775}
2776
2777static struct ftrace_func_command ftrace_mod_cmd = {
2778 .name = "mod",
2779 .func = ftrace_mod_callback,
2780};
2781
2782static int __init ftrace_mod_cmd_init(void)
2783{
2784 return register_ftrace_command(&ftrace_mod_cmd);
2785}
2786device_initcall(ftrace_mod_cmd_init);
2787
Steven Rostedt59df055f2009-02-14 15:29:06 -05002788static void
Steven Rostedtb6887d72009-02-17 12:32:04 -05002789function_trace_probe_call(unsigned long ip, unsigned long parent_ip)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002790{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002791 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002792 struct hlist_head *hhd;
2793 struct hlist_node *n;
2794 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002795
2796 key = hash_long(ip, FTRACE_HASH_BITS);
2797
2798 hhd = &ftrace_func_hash[key];
2799
2800 if (hlist_empty(hhd))
2801 return;
2802
2803 /*
2804 * Disable preemption for these calls to prevent a RCU grace
2805 * period. This syncs the hash iteration and freeing of items
2806 * on the hash. rcu_read_lock is too dangerous here.
2807 */
Steven Rostedt5168ae52010-06-03 09:36:50 -04002808 preempt_disable_notrace();
Steven Rostedt59df055f2009-02-14 15:29:06 -05002809 hlist_for_each_entry_rcu(entry, n, hhd, node) {
2810 if (entry->ip == ip)
2811 entry->ops->func(ip, parent_ip, &entry->data);
2812 }
Steven Rostedt5168ae52010-06-03 09:36:50 -04002813 preempt_enable_notrace();
Steven Rostedt59df055f2009-02-14 15:29:06 -05002814}
2815
Steven Rostedtb6887d72009-02-17 12:32:04 -05002816static struct ftrace_ops trace_probe_ops __read_mostly =
Steven Rostedt59df055f2009-02-14 15:29:06 -05002817{
Steven Rostedtfb9fb012009-03-25 13:26:41 -04002818 .func = function_trace_probe_call,
Steven Rostedt59df055f2009-02-14 15:29:06 -05002819};
2820
Steven Rostedtb6887d72009-02-17 12:32:04 -05002821static int ftrace_probe_registered;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002822
Steven Rostedtb6887d72009-02-17 12:32:04 -05002823static void __enable_ftrace_function_probe(void)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002824{
Steven Rostedtb8489142011-05-04 09:27:52 -04002825 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002826 int i;
2827
Steven Rostedtb6887d72009-02-17 12:32:04 -05002828 if (ftrace_probe_registered)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002829 return;
2830
2831 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2832 struct hlist_head *hhd = &ftrace_func_hash[i];
2833 if (hhd->first)
2834 break;
2835 }
2836 /* Nothing registered? */
2837 if (i == FTRACE_FUNC_HASHSIZE)
2838 return;
2839
Steven Rostedtb8489142011-05-04 09:27:52 -04002840 ret = __register_ftrace_function(&trace_probe_ops);
2841 if (!ret)
Steven Rostedta1cd6172011-05-23 15:24:25 -04002842 ret = ftrace_startup(&trace_probe_ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04002843
Steven Rostedtb6887d72009-02-17 12:32:04 -05002844 ftrace_probe_registered = 1;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002845}
2846
Steven Rostedtb6887d72009-02-17 12:32:04 -05002847static void __disable_ftrace_function_probe(void)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002848{
Steven Rostedtb8489142011-05-04 09:27:52 -04002849 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002850 int i;
2851
Steven Rostedtb6887d72009-02-17 12:32:04 -05002852 if (!ftrace_probe_registered)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002853 return;
2854
2855 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2856 struct hlist_head *hhd = &ftrace_func_hash[i];
2857 if (hhd->first)
2858 return;
2859 }
2860
2861 /* no more funcs left */
Steven Rostedtb8489142011-05-04 09:27:52 -04002862 ret = __unregister_ftrace_function(&trace_probe_ops);
2863 if (!ret)
2864 ftrace_shutdown(&trace_probe_ops, 0);
2865
Steven Rostedtb6887d72009-02-17 12:32:04 -05002866 ftrace_probe_registered = 0;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002867}
2868
2869
2870static void ftrace_free_entry_rcu(struct rcu_head *rhp)
2871{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002872 struct ftrace_func_probe *entry =
2873 container_of(rhp, struct ftrace_func_probe, rcu);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002874
2875 if (entry->ops->free)
2876 entry->ops->free(&entry->data);
2877 kfree(entry);
2878}
2879
2880
2881int
Steven Rostedtb6887d72009-02-17 12:32:04 -05002882register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05002883 void *data)
2884{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002885 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002886 struct ftrace_page *pg;
2887 struct dyn_ftrace *rec;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002888 int type, len, not;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002889 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002890 int count = 0;
2891 char *search;
2892
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02002893 type = filter_parse_regex(glob, strlen(glob), &search, &not);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002894 len = strlen(search);
2895
Steven Rostedtb6887d72009-02-17 12:32:04 -05002896 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05002897 if (WARN_ON(not))
2898 return -EINVAL;
2899
2900 mutex_lock(&ftrace_lock);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002901
Steven Rostedt45a4a232011-04-21 23:16:46 -04002902 if (unlikely(ftrace_disabled))
2903 goto out_unlock;
2904
Steven Rostedt59df055f2009-02-14 15:29:06 -05002905 do_for_each_ftrace_rec(pg, rec) {
2906
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002907 if (!ftrace_match_record(rec, NULL, search, len, type))
Steven Rostedt59df055f2009-02-14 15:29:06 -05002908 continue;
2909
2910 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
2911 if (!entry) {
Steven Rostedtb6887d72009-02-17 12:32:04 -05002912 /* If we did not process any, then return error */
Steven Rostedt59df055f2009-02-14 15:29:06 -05002913 if (!count)
2914 count = -ENOMEM;
2915 goto out_unlock;
2916 }
2917
2918 count++;
2919
2920 entry->data = data;
2921
2922 /*
2923 * The caller might want to do something special
2924 * for each function we find. We call the callback
2925 * to give the caller an opportunity to do so.
2926 */
2927 if (ops->callback) {
2928 if (ops->callback(rec->ip, &entry->data) < 0) {
2929 /* caller does not like this func */
2930 kfree(entry);
2931 continue;
2932 }
2933 }
2934
2935 entry->ops = ops;
2936 entry->ip = rec->ip;
2937
2938 key = hash_long(entry->ip, FTRACE_HASH_BITS);
2939 hlist_add_head_rcu(&entry->node, &ftrace_func_hash[key]);
2940
2941 } while_for_each_ftrace_rec();
Steven Rostedtb6887d72009-02-17 12:32:04 -05002942 __enable_ftrace_function_probe();
Steven Rostedt59df055f2009-02-14 15:29:06 -05002943
2944 out_unlock:
2945 mutex_unlock(&ftrace_lock);
2946
2947 return count;
2948}
2949
2950enum {
Steven Rostedtb6887d72009-02-17 12:32:04 -05002951 PROBE_TEST_FUNC = 1,
2952 PROBE_TEST_DATA = 2
Steven Rostedt59df055f2009-02-14 15:29:06 -05002953};
2954
2955static void
Steven Rostedtb6887d72009-02-17 12:32:04 -05002956__unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05002957 void *data, int flags)
2958{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002959 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002960 struct hlist_node *n, *tmp;
2961 char str[KSYM_SYMBOL_LEN];
2962 int type = MATCH_FULL;
2963 int i, len = 0;
2964 char *search;
2965
Atsushi Tsujib36461d2009-09-15 19:06:30 +09002966 if (glob && (strcmp(glob, "*") == 0 || !strlen(glob)))
Steven Rostedt59df055f2009-02-14 15:29:06 -05002967 glob = NULL;
Atsushi Tsujib36461d2009-09-15 19:06:30 +09002968 else if (glob) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05002969 int not;
2970
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02002971 type = filter_parse_regex(glob, strlen(glob), &search, &not);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002972 len = strlen(search);
2973
Steven Rostedtb6887d72009-02-17 12:32:04 -05002974 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05002975 if (WARN_ON(not))
2976 return;
2977 }
2978
2979 mutex_lock(&ftrace_lock);
2980 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2981 struct hlist_head *hhd = &ftrace_func_hash[i];
2982
2983 hlist_for_each_entry_safe(entry, n, tmp, hhd, node) {
2984
2985 /* break up if statements for readability */
Steven Rostedtb6887d72009-02-17 12:32:04 -05002986 if ((flags & PROBE_TEST_FUNC) && entry->ops != ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002987 continue;
2988
Steven Rostedtb6887d72009-02-17 12:32:04 -05002989 if ((flags & PROBE_TEST_DATA) && entry->data != data)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002990 continue;
2991
2992 /* do this last, since it is the most expensive */
2993 if (glob) {
2994 kallsyms_lookup(entry->ip, NULL, NULL,
2995 NULL, str);
2996 if (!ftrace_match(str, glob, len, type))
2997 continue;
2998 }
2999
3000 hlist_del(&entry->node);
3001 call_rcu(&entry->rcu, ftrace_free_entry_rcu);
3002 }
3003 }
Steven Rostedtb6887d72009-02-17 12:32:04 -05003004 __disable_ftrace_function_probe();
Steven Rostedt59df055f2009-02-14 15:29:06 -05003005 mutex_unlock(&ftrace_lock);
3006}
3007
3008void
Steven Rostedtb6887d72009-02-17 12:32:04 -05003009unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05003010 void *data)
3011{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003012 __unregister_ftrace_function_probe(glob, ops, data,
3013 PROBE_TEST_FUNC | PROBE_TEST_DATA);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003014}
3015
3016void
Steven Rostedtb6887d72009-02-17 12:32:04 -05003017unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003018{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003019 __unregister_ftrace_function_probe(glob, ops, NULL, PROBE_TEST_FUNC);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003020}
3021
Steven Rostedtb6887d72009-02-17 12:32:04 -05003022void unregister_ftrace_function_probe_all(char *glob)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003023{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003024 __unregister_ftrace_function_probe(glob, NULL, NULL, 0);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003025}
3026
Steven Rostedtf6180772009-02-14 00:40:25 -05003027static LIST_HEAD(ftrace_commands);
3028static DEFINE_MUTEX(ftrace_cmd_mutex);
3029
3030int register_ftrace_command(struct ftrace_func_command *cmd)
3031{
3032 struct ftrace_func_command *p;
3033 int ret = 0;
3034
3035 mutex_lock(&ftrace_cmd_mutex);
3036 list_for_each_entry(p, &ftrace_commands, list) {
3037 if (strcmp(cmd->name, p->name) == 0) {
3038 ret = -EBUSY;
3039 goto out_unlock;
3040 }
3041 }
3042 list_add(&cmd->list, &ftrace_commands);
3043 out_unlock:
3044 mutex_unlock(&ftrace_cmd_mutex);
3045
3046 return ret;
3047}
3048
3049int unregister_ftrace_command(struct ftrace_func_command *cmd)
3050{
3051 struct ftrace_func_command *p, *n;
3052 int ret = -ENODEV;
3053
3054 mutex_lock(&ftrace_cmd_mutex);
3055 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
3056 if (strcmp(cmd->name, p->name) == 0) {
3057 ret = 0;
3058 list_del_init(&p->list);
3059 goto out_unlock;
3060 }
3061 }
3062 out_unlock:
3063 mutex_unlock(&ftrace_cmd_mutex);
3064
3065 return ret;
3066}
3067
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003068static int ftrace_process_regex(struct ftrace_hash *hash,
3069 char *buff, int len, int enable)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003070{
Steven Rostedtf6180772009-02-14 00:40:25 -05003071 char *func, *command, *next = buff;
Steven Rostedt6a24a242009-02-17 11:20:26 -05003072 struct ftrace_func_command *p;
GuoWen Li0aff1c02011-06-01 19:18:47 +08003073 int ret = -EINVAL;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003074
3075 func = strsep(&next, ":");
3076
3077 if (!next) {
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003078 ret = ftrace_match_records(hash, func, len);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003079 if (!ret)
3080 ret = -EINVAL;
3081 if (ret < 0)
3082 return ret;
3083 return 0;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003084 }
3085
Steven Rostedtf6180772009-02-14 00:40:25 -05003086 /* command found */
Steven Rostedt64e7c442009-02-13 17:08:48 -05003087
3088 command = strsep(&next, ":");
3089
Steven Rostedtf6180772009-02-14 00:40:25 -05003090 mutex_lock(&ftrace_cmd_mutex);
3091 list_for_each_entry(p, &ftrace_commands, list) {
3092 if (strcmp(p->name, command) == 0) {
Steven Rostedt43dd61c2011-07-07 11:09:22 -04003093 ret = p->func(hash, func, command, next, enable);
Steven Rostedtf6180772009-02-14 00:40:25 -05003094 goto out_unlock;
3095 }
Steven Rostedt64e7c442009-02-13 17:08:48 -05003096 }
Steven Rostedtf6180772009-02-14 00:40:25 -05003097 out_unlock:
3098 mutex_unlock(&ftrace_cmd_mutex);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003099
Steven Rostedtf6180772009-02-14 00:40:25 -05003100 return ret;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003101}
3102
Ingo Molnare309b412008-05-12 21:20:51 +02003103static ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04003104ftrace_regex_write(struct file *file, const char __user *ubuf,
3105 size_t cnt, loff_t *ppos, int enable)
Steven Rostedt5072c592008-05-12 21:20:43 +02003106{
3107 struct ftrace_iterator *iter;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003108 struct trace_parser *parser;
3109 ssize_t ret, read;
Steven Rostedt5072c592008-05-12 21:20:43 +02003110
Li Zefan4ba79782009-09-22 13:52:20 +08003111 if (!cnt)
Steven Rostedt5072c592008-05-12 21:20:43 +02003112 return 0;
3113
Steven Rostedt41c52c02008-05-22 11:46:33 -04003114 mutex_lock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003115
Steven Rostedt45a4a232011-04-21 23:16:46 -04003116 ret = -ENODEV;
3117 if (unlikely(ftrace_disabled))
3118 goto out_unlock;
3119
Steven Rostedt5072c592008-05-12 21:20:43 +02003120 if (file->f_mode & FMODE_READ) {
3121 struct seq_file *m = file->private_data;
3122 iter = m->private;
3123 } else
3124 iter = file->private_data;
3125
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003126 parser = &iter->parser;
3127 read = trace_get_user(parser, ubuf, cnt, ppos);
Steven Rostedt5072c592008-05-12 21:20:43 +02003128
Li Zefan4ba79782009-09-22 13:52:20 +08003129 if (read >= 0 && trace_parser_loaded(parser) &&
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003130 !trace_parser_cont(parser)) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003131 ret = ftrace_process_regex(iter->hash, parser->buffer,
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003132 parser->idx, enable);
Li Zefan313254a2009-12-08 11:15:30 +08003133 trace_parser_clear(parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02003134 if (ret)
Li Zefaned146b252009-11-03 08:55:38 +08003135 goto out_unlock;
Steven Rostedt5072c592008-05-12 21:20:43 +02003136 }
3137
Steven Rostedt5072c592008-05-12 21:20:43 +02003138 ret = read;
Li Zefaned146b252009-11-03 08:55:38 +08003139out_unlock:
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003140 mutex_unlock(&ftrace_regex_lock);
Li Zefaned146b252009-11-03 08:55:38 +08003141
Steven Rostedt5072c592008-05-12 21:20:43 +02003142 return ret;
3143}
3144
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003145ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04003146ftrace_filter_write(struct file *file, const char __user *ubuf,
3147 size_t cnt, loff_t *ppos)
3148{
3149 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
3150}
3151
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003152ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04003153ftrace_notrace_write(struct file *file, const char __user *ubuf,
3154 size_t cnt, loff_t *ppos)
3155{
3156 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
3157}
3158
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003159static int
Steven Rostedtf45948e2011-05-02 12:29:25 -04003160ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
3161 int reset, int enable)
Steven Rostedt41c52c02008-05-22 11:46:33 -04003162{
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003163 struct ftrace_hash **orig_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003164 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003165 int ret;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003166
Steven Rostedt936e0742011-05-05 22:54:01 -04003167 /* All global ops uses the global ops filters */
3168 if (ops->flags & FTRACE_OPS_FL_GLOBAL)
3169 ops = &global_ops;
3170
Steven Rostedt41c52c02008-05-22 11:46:33 -04003171 if (unlikely(ftrace_disabled))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003172 return -ENODEV;
Steven Rostedt41c52c02008-05-22 11:46:33 -04003173
Steven Rostedtf45948e2011-05-02 12:29:25 -04003174 if (enable)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003175 orig_hash = &ops->filter_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003176 else
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003177 orig_hash = &ops->notrace_hash;
3178
3179 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
3180 if (!hash)
3181 return -ENOMEM;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003182
Steven Rostedt41c52c02008-05-22 11:46:33 -04003183 mutex_lock(&ftrace_regex_lock);
3184 if (reset)
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003185 ftrace_filter_reset(hash);
Jiri Olsaac483c42012-01-02 10:04:14 +01003186 if (buf && !ftrace_match_records(hash, buf, len)) {
3187 ret = -EINVAL;
3188 goto out_regex_unlock;
3189 }
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003190
3191 mutex_lock(&ftrace_lock);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04003192 ret = ftrace_hash_move(ops, enable, orig_hash, hash);
Steven Rostedt072126f2011-07-13 15:08:31 -04003193 if (!ret && ops->flags & FTRACE_OPS_FL_ENABLED
3194 && ftrace_enabled)
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01003195 ftrace_run_update_code(FTRACE_UPDATE_CALLS);
Steven Rostedt072126f2011-07-13 15:08:31 -04003196
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003197 mutex_unlock(&ftrace_lock);
3198
Jiri Olsaac483c42012-01-02 10:04:14 +01003199 out_regex_unlock:
Steven Rostedt41c52c02008-05-22 11:46:33 -04003200 mutex_unlock(&ftrace_regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003201
3202 free_ftrace_hash(hash);
3203 return ret;
Steven Rostedt41c52c02008-05-22 11:46:33 -04003204}
3205
Steven Rostedt77a2b372008-05-12 21:20:45 +02003206/**
3207 * ftrace_set_filter - set a function to filter on in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04003208 * @ops - the ops to set the filter with
Steven Rostedt77a2b372008-05-12 21:20:45 +02003209 * @buf - the string that holds the function filter text.
3210 * @len - the length of the string.
3211 * @reset - non zero to reset all filters before applying this filter.
3212 *
3213 * Filters denote which functions should be enabled when tracing is enabled.
3214 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
3215 */
Jiri Olsaac483c42012-01-02 10:04:14 +01003216int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04003217 int len, int reset)
Steven Rostedt77a2b372008-05-12 21:20:45 +02003218{
Jiri Olsaac483c42012-01-02 10:04:14 +01003219 return ftrace_set_regex(ops, buf, len, reset, 1);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003220}
Steven Rostedt936e0742011-05-05 22:54:01 -04003221EXPORT_SYMBOL_GPL(ftrace_set_filter);
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003222
Steven Rostedt41c52c02008-05-22 11:46:33 -04003223/**
3224 * ftrace_set_notrace - set a function to not trace in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04003225 * @ops - the ops to set the notrace filter with
Steven Rostedt41c52c02008-05-22 11:46:33 -04003226 * @buf - the string that holds the function notrace text.
3227 * @len - the length of the string.
3228 * @reset - non zero to reset all filters before applying this filter.
3229 *
3230 * Notrace Filters denote which functions should not be enabled when tracing
3231 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
3232 * for tracing.
3233 */
Jiri Olsaac483c42012-01-02 10:04:14 +01003234int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04003235 int len, int reset)
3236{
Jiri Olsaac483c42012-01-02 10:04:14 +01003237 return ftrace_set_regex(ops, buf, len, reset, 0);
Steven Rostedt936e0742011-05-05 22:54:01 -04003238}
3239EXPORT_SYMBOL_GPL(ftrace_set_notrace);
3240/**
3241 * ftrace_set_filter - set a function to filter on in ftrace
3242 * @ops - the ops to set the filter with
3243 * @buf - the string that holds the function filter text.
3244 * @len - the length of the string.
3245 * @reset - non zero to reset all filters before applying this filter.
3246 *
3247 * Filters denote which functions should be enabled when tracing is enabled.
3248 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
3249 */
3250void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
3251{
3252 ftrace_set_regex(&global_ops, buf, len, reset, 1);
3253}
3254EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
3255
3256/**
3257 * ftrace_set_notrace - set a function to not trace in ftrace
3258 * @ops - the ops to set the notrace filter with
3259 * @buf - the string that holds the function notrace text.
3260 * @len - the length of the string.
3261 * @reset - non zero to reset all filters before applying this filter.
3262 *
3263 * Notrace Filters denote which functions should not be enabled when tracing
3264 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
3265 * for tracing.
3266 */
3267void ftrace_set_global_notrace(unsigned char *buf, int len, int reset)
Steven Rostedt41c52c02008-05-22 11:46:33 -04003268{
Steven Rostedtf45948e2011-05-02 12:29:25 -04003269 ftrace_set_regex(&global_ops, buf, len, reset, 0);
Steven Rostedt77a2b372008-05-12 21:20:45 +02003270}
Steven Rostedt936e0742011-05-05 22:54:01 -04003271EXPORT_SYMBOL_GPL(ftrace_set_global_notrace);
Steven Rostedt77a2b372008-05-12 21:20:45 +02003272
Steven Rostedt2af15d62009-05-28 13:37:24 -04003273/*
3274 * command line interface to allow users to set filters on boot up.
3275 */
3276#define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
3277static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
3278static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
3279
3280static int __init set_ftrace_notrace(char *str)
3281{
3282 strncpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
3283 return 1;
3284}
3285__setup("ftrace_notrace=", set_ftrace_notrace);
3286
3287static int __init set_ftrace_filter(char *str)
3288{
3289 strncpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
3290 return 1;
3291}
3292__setup("ftrace_filter=", set_ftrace_filter);
3293
Stefan Assmann369bc182009-10-12 22:17:21 +02003294#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Lai Jiangshanf6060f42009-11-05 11:16:17 +08003295static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
Steven Rostedt801c29f2010-03-05 20:02:19 -05003296static int ftrace_set_func(unsigned long *array, int *idx, char *buffer);
3297
Stefan Assmann369bc182009-10-12 22:17:21 +02003298static int __init set_graph_function(char *str)
3299{
Frederic Weisbecker06f43d62009-10-14 20:43:39 +02003300 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
Stefan Assmann369bc182009-10-12 22:17:21 +02003301 return 1;
3302}
3303__setup("ftrace_graph_filter=", set_graph_function);
3304
3305static void __init set_ftrace_early_graph(char *buf)
3306{
3307 int ret;
3308 char *func;
3309
3310 while (buf) {
3311 func = strsep(&buf, ",");
3312 /* we allow only one expression at a time */
3313 ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
3314 func);
3315 if (ret)
3316 printk(KERN_DEBUG "ftrace: function %s not "
3317 "traceable\n", func);
3318 }
3319}
3320#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3321
Steven Rostedt2a85a372011-12-19 21:57:44 -05003322void __init
3323ftrace_set_early_filter(struct ftrace_ops *ops, char *buf, int enable)
Steven Rostedt2af15d62009-05-28 13:37:24 -04003324{
3325 char *func;
3326
3327 while (buf) {
3328 func = strsep(&buf, ",");
Steven Rostedtf45948e2011-05-02 12:29:25 -04003329 ftrace_set_regex(ops, func, strlen(func), 0, enable);
Steven Rostedt2af15d62009-05-28 13:37:24 -04003330 }
3331}
3332
3333static void __init set_ftrace_early_filters(void)
3334{
3335 if (ftrace_filter_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05003336 ftrace_set_early_filter(&global_ops, ftrace_filter_buf, 1);
Steven Rostedt2af15d62009-05-28 13:37:24 -04003337 if (ftrace_notrace_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05003338 ftrace_set_early_filter(&global_ops, ftrace_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02003339#ifdef CONFIG_FUNCTION_GRAPH_TRACER
3340 if (ftrace_graph_buf[0])
3341 set_ftrace_early_graph(ftrace_graph_buf);
3342#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
Steven Rostedt2af15d62009-05-28 13:37:24 -04003343}
3344
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003345int ftrace_regex_release(struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02003346{
3347 struct seq_file *m = (struct seq_file *)file->private_data;
3348 struct ftrace_iterator *iter;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003349 struct ftrace_hash **orig_hash;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003350 struct trace_parser *parser;
Steven Rostedted926f92011-05-03 13:25:24 -04003351 int filter_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003352 int ret;
Steven Rostedt5072c592008-05-12 21:20:43 +02003353
Steven Rostedt41c52c02008-05-22 11:46:33 -04003354 mutex_lock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003355 if (file->f_mode & FMODE_READ) {
3356 iter = m->private;
3357
3358 seq_release(inode, file);
3359 } else
3360 iter = file->private_data;
3361
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003362 parser = &iter->parser;
3363 if (trace_parser_loaded(parser)) {
3364 parser->buffer[parser->idx] = 0;
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003365 ftrace_match_records(iter->hash, parser->buffer, parser->idx);
Steven Rostedt5072c592008-05-12 21:20:43 +02003366 }
3367
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003368 trace_parser_put(parser);
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003369
Steven Rostedt058e2972011-04-29 22:35:33 -04003370 if (file->f_mode & FMODE_WRITE) {
Steven Rostedted926f92011-05-03 13:25:24 -04003371 filter_hash = !!(iter->flags & FTRACE_ITER_FILTER);
3372
3373 if (filter_hash)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003374 orig_hash = &iter->ops->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04003375 else
3376 orig_hash = &iter->ops->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003377
Steven Rostedt058e2972011-04-29 22:35:33 -04003378 mutex_lock(&ftrace_lock);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04003379 ret = ftrace_hash_move(iter->ops, filter_hash,
3380 orig_hash, iter->hash);
3381 if (!ret && (iter->ops->flags & FTRACE_OPS_FL_ENABLED)
3382 && ftrace_enabled)
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01003383 ftrace_run_update_code(FTRACE_UPDATE_CALLS);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04003384
Steven Rostedt058e2972011-04-29 22:35:33 -04003385 mutex_unlock(&ftrace_lock);
3386 }
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003387 free_ftrace_hash(iter->hash);
3388 kfree(iter);
Steven Rostedt058e2972011-04-29 22:35:33 -04003389
Steven Rostedt41c52c02008-05-22 11:46:33 -04003390 mutex_unlock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003391 return 0;
3392}
3393
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003394static const struct file_operations ftrace_avail_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02003395 .open = ftrace_avail_open,
3396 .read = seq_read,
3397 .llseek = seq_lseek,
Li Zefan3be04b42009-08-17 16:54:03 +08003398 .release = seq_release_private,
Steven Rostedt5072c592008-05-12 21:20:43 +02003399};
3400
Steven Rostedt647bcd02011-05-03 14:39:21 -04003401static const struct file_operations ftrace_enabled_fops = {
3402 .open = ftrace_enabled_open,
3403 .read = seq_read,
3404 .llseek = seq_lseek,
3405 .release = seq_release_private,
3406};
3407
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003408static const struct file_operations ftrace_filter_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02003409 .open = ftrace_filter_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08003410 .read = seq_read,
Steven Rostedt5072c592008-05-12 21:20:43 +02003411 .write = ftrace_filter_write,
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003412 .llseek = ftrace_regex_lseek,
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003413 .release = ftrace_regex_release,
Steven Rostedt5072c592008-05-12 21:20:43 +02003414};
3415
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003416static const struct file_operations ftrace_notrace_fops = {
Steven Rostedt41c52c02008-05-22 11:46:33 -04003417 .open = ftrace_notrace_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08003418 .read = seq_read,
Steven Rostedt41c52c02008-05-22 11:46:33 -04003419 .write = ftrace_notrace_write,
3420 .llseek = ftrace_regex_lseek,
Steven Rostedt1cf41dd2011-04-29 20:59:51 -04003421 .release = ftrace_regex_release,
Steven Rostedt41c52c02008-05-22 11:46:33 -04003422};
3423
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003424#ifdef CONFIG_FUNCTION_GRAPH_TRACER
3425
3426static DEFINE_MUTEX(graph_lock);
3427
3428int ftrace_graph_count;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003429int ftrace_graph_filter_enabled;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003430unsigned long ftrace_graph_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
3431
3432static void *
Li Zefan85951842009-06-24 09:54:00 +08003433__g_next(struct seq_file *m, loff_t *pos)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003434{
Li Zefan85951842009-06-24 09:54:00 +08003435 if (*pos >= ftrace_graph_count)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003436 return NULL;
Li Zefana4ec5e02009-09-18 14:06:28 +08003437 return &ftrace_graph_funcs[*pos];
Li Zefan85951842009-06-24 09:54:00 +08003438}
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003439
Li Zefan85951842009-06-24 09:54:00 +08003440static void *
3441g_next(struct seq_file *m, void *v, loff_t *pos)
3442{
3443 (*pos)++;
3444 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003445}
3446
3447static void *g_start(struct seq_file *m, loff_t *pos)
3448{
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003449 mutex_lock(&graph_lock);
3450
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003451 /* Nothing, tell g_show to print all functions are enabled */
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003452 if (!ftrace_graph_filter_enabled && !*pos)
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003453 return (void *)1;
3454
Li Zefan85951842009-06-24 09:54:00 +08003455 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003456}
3457
3458static void g_stop(struct seq_file *m, void *p)
3459{
3460 mutex_unlock(&graph_lock);
3461}
3462
3463static int g_show(struct seq_file *m, void *v)
3464{
3465 unsigned long *ptr = v;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003466
3467 if (!ptr)
3468 return 0;
3469
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003470 if (ptr == (unsigned long *)1) {
3471 seq_printf(m, "#### all functions enabled ####\n");
3472 return 0;
3473 }
3474
Steven Rostedtb375a112009-09-17 00:05:58 -04003475 seq_printf(m, "%ps\n", (void *)*ptr);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003476
3477 return 0;
3478}
3479
James Morris88e9d342009-09-22 16:43:43 -07003480static const struct seq_operations ftrace_graph_seq_ops = {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003481 .start = g_start,
3482 .next = g_next,
3483 .stop = g_stop,
3484 .show = g_show,
3485};
3486
3487static int
3488ftrace_graph_open(struct inode *inode, struct file *file)
3489{
3490 int ret = 0;
3491
3492 if (unlikely(ftrace_disabled))
3493 return -ENODEV;
3494
3495 mutex_lock(&graph_lock);
3496 if ((file->f_mode & FMODE_WRITE) &&
Steven Rostedt8650ae32009-07-22 23:29:30 -04003497 (file->f_flags & O_TRUNC)) {
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003498 ftrace_graph_filter_enabled = 0;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003499 ftrace_graph_count = 0;
3500 memset(ftrace_graph_funcs, 0, sizeof(ftrace_graph_funcs));
3501 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003502 mutex_unlock(&graph_lock);
3503
Li Zefana4ec5e02009-09-18 14:06:28 +08003504 if (file->f_mode & FMODE_READ)
3505 ret = seq_open(file, &ftrace_graph_seq_ops);
3506
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003507 return ret;
3508}
3509
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003510static int
Li Zefan87827112009-07-23 11:29:11 +08003511ftrace_graph_release(struct inode *inode, struct file *file)
3512{
3513 if (file->f_mode & FMODE_READ)
3514 seq_release(inode, file);
3515 return 0;
3516}
3517
3518static int
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003519ftrace_set_func(unsigned long *array, int *idx, char *buffer)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003520{
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003521 struct dyn_ftrace *rec;
3522 struct ftrace_page *pg;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003523 int search_len;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003524 int fail = 1;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003525 int type, not;
3526 char *search;
3527 bool exists;
3528 int i;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003529
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003530 /* decode regex */
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02003531 type = filter_parse_regex(buffer, strlen(buffer), &search, &not);
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003532 if (!not && *idx >= FTRACE_GRAPH_MAX_FUNCS)
3533 return -EBUSY;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003534
3535 search_len = strlen(search);
3536
Steven Rostedt52baf112009-02-14 01:15:39 -05003537 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04003538
3539 if (unlikely(ftrace_disabled)) {
3540 mutex_unlock(&ftrace_lock);
3541 return -ENODEV;
3542 }
3543
Steven Rostedt265c8312009-02-13 12:43:56 -05003544 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003545
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003546 if (ftrace_match_record(rec, NULL, search, search_len, type)) {
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003547 /* if it is in the array */
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003548 exists = false;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003549 for (i = 0; i < *idx; i++) {
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003550 if (array[i] == rec->ip) {
3551 exists = true;
Steven Rostedt265c8312009-02-13 12:43:56 -05003552 break;
3553 }
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003554 }
3555
3556 if (!not) {
3557 fail = 0;
3558 if (!exists) {
3559 array[(*idx)++] = rec->ip;
3560 if (*idx >= FTRACE_GRAPH_MAX_FUNCS)
3561 goto out;
3562 }
3563 } else {
3564 if (exists) {
3565 array[i] = array[--(*idx)];
3566 array[*idx] = 0;
3567 fail = 0;
3568 }
3569 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003570 }
Steven Rostedt265c8312009-02-13 12:43:56 -05003571 } while_for_each_ftrace_rec();
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003572out:
Steven Rostedt52baf112009-02-14 01:15:39 -05003573 mutex_unlock(&ftrace_lock);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003574
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003575 if (fail)
3576 return -EINVAL;
3577
3578 ftrace_graph_filter_enabled = 1;
3579 return 0;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003580}
3581
3582static ssize_t
3583ftrace_graph_write(struct file *file, const char __user *ubuf,
3584 size_t cnt, loff_t *ppos)
3585{
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003586 struct trace_parser parser;
Li Zefan4ba79782009-09-22 13:52:20 +08003587 ssize_t read, ret;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003588
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003589 if (!cnt)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003590 return 0;
3591
3592 mutex_lock(&graph_lock);
3593
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003594 if (trace_parser_get_init(&parser, FTRACE_BUFF_MAX)) {
3595 ret = -ENOMEM;
Li Zefan1eb90f12009-09-22 13:52:57 +08003596 goto out_unlock;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003597 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003598
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003599 read = trace_get_user(&parser, ubuf, cnt, ppos);
3600
Li Zefan4ba79782009-09-22 13:52:20 +08003601 if (read >= 0 && trace_parser_loaded((&parser))) {
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003602 parser.buffer[parser.idx] = 0;
3603
3604 /* we allow only one expression at a time */
Li Zefana4ec5e02009-09-18 14:06:28 +08003605 ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003606 parser.buffer);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003607 if (ret)
Li Zefan1eb90f12009-09-22 13:52:57 +08003608 goto out_free;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003609 }
3610
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003611 ret = read;
Li Zefan1eb90f12009-09-22 13:52:57 +08003612
3613out_free:
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003614 trace_parser_put(&parser);
Li Zefan1eb90f12009-09-22 13:52:57 +08003615out_unlock:
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003616 mutex_unlock(&graph_lock);
3617
3618 return ret;
3619}
3620
3621static const struct file_operations ftrace_graph_fops = {
Li Zefan87827112009-07-23 11:29:11 +08003622 .open = ftrace_graph_open,
3623 .read = seq_read,
3624 .write = ftrace_graph_write,
3625 .release = ftrace_graph_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003626 .llseek = seq_lseek,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003627};
3628#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3629
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003630static __init int ftrace_init_dyn_debugfs(struct dentry *d_tracer)
Steven Rostedt5072c592008-05-12 21:20:43 +02003631{
Steven Rostedt5072c592008-05-12 21:20:43 +02003632
Frederic Weisbecker5452af62009-03-27 00:25:38 +01003633 trace_create_file("available_filter_functions", 0444,
3634 d_tracer, NULL, &ftrace_avail_fops);
Steven Rostedt5072c592008-05-12 21:20:43 +02003635
Steven Rostedt647bcd02011-05-03 14:39:21 -04003636 trace_create_file("enabled_functions", 0444,
3637 d_tracer, NULL, &ftrace_enabled_fops);
3638
Frederic Weisbecker5452af62009-03-27 00:25:38 +01003639 trace_create_file("set_ftrace_filter", 0644, d_tracer,
3640 NULL, &ftrace_filter_fops);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003641
Frederic Weisbecker5452af62009-03-27 00:25:38 +01003642 trace_create_file("set_ftrace_notrace", 0644, d_tracer,
Steven Rostedt41c52c02008-05-22 11:46:33 -04003643 NULL, &ftrace_notrace_fops);
Steven Rostedtad90c0e2008-05-27 20:48:37 -04003644
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003645#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbecker5452af62009-03-27 00:25:38 +01003646 trace_create_file("set_graph_function", 0444, d_tracer,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003647 NULL,
3648 &ftrace_graph_fops);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003649#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3650
Steven Rostedt5072c592008-05-12 21:20:43 +02003651 return 0;
3652}
3653
Steven Rostedt9fd49322012-04-24 22:32:06 -04003654static int ftrace_cmp_ips(const void *a, const void *b)
Steven Rostedt68950612011-12-16 17:06:45 -05003655{
Steven Rostedt9fd49322012-04-24 22:32:06 -04003656 const unsigned long *ipa = a;
3657 const unsigned long *ipb = b;
Steven Rostedt68950612011-12-16 17:06:45 -05003658
Steven Rostedt9fd49322012-04-24 22:32:06 -04003659 if (*ipa > *ipb)
3660 return 1;
3661 if (*ipa < *ipb)
3662 return -1;
3663 return 0;
3664}
3665
3666static void ftrace_swap_ips(void *a, void *b, int size)
3667{
3668 unsigned long *ipa = a;
3669 unsigned long *ipb = b;
3670 unsigned long t;
3671
3672 t = *ipa;
3673 *ipa = *ipb;
3674 *ipb = t;
Steven Rostedt68950612011-12-16 17:06:45 -05003675}
3676
Jiri Olsa5cb084b2009-10-13 16:33:53 -04003677static int ftrace_process_locs(struct module *mod,
Steven Rostedt31e88902008-11-14 16:21:19 -08003678 unsigned long *start,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003679 unsigned long *end)
3680{
Steven Rostedt706c81f2012-04-24 23:45:26 -04003681 struct ftrace_page *start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05003682 struct ftrace_page *pg;
Steven Rostedt706c81f2012-04-24 23:45:26 -04003683 struct dyn_ftrace *rec;
Steven Rostedta7900872011-12-16 16:23:44 -05003684 unsigned long count;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003685 unsigned long *p;
3686 unsigned long addr;
Steven Rostedt4376cac2011-06-24 23:28:13 -04003687 unsigned long flags = 0; /* Shut up gcc */
Steven Rostedta7900872011-12-16 16:23:44 -05003688 int ret = -ENOMEM;
3689
3690 count = end - start;
3691
3692 if (!count)
3693 return 0;
3694
Steven Rostedt9fd49322012-04-24 22:32:06 -04003695 sort(start, count, sizeof(*start),
3696 ftrace_cmp_ips, ftrace_swap_ips);
3697
Steven Rostedt706c81f2012-04-24 23:45:26 -04003698 start_pg = ftrace_allocate_pages(count);
3699 if (!start_pg)
Steven Rostedta7900872011-12-16 16:23:44 -05003700 return -ENOMEM;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003701
Steven Rostedte6ea44e2009-02-14 01:42:44 -05003702 mutex_lock(&ftrace_lock);
Steven Rostedta7900872011-12-16 16:23:44 -05003703
Steven Rostedt32082302011-12-16 14:42:37 -05003704 /*
3705 * Core and each module needs their own pages, as
3706 * modules will free them when they are removed.
3707 * Force a new page to be allocated for modules.
3708 */
Steven Rostedta7900872011-12-16 16:23:44 -05003709 if (!mod) {
3710 WARN_ON(ftrace_pages || ftrace_pages_start);
3711 /* First initialization */
Steven Rostedt706c81f2012-04-24 23:45:26 -04003712 ftrace_pages = ftrace_pages_start = start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05003713 } else {
Steven Rostedt32082302011-12-16 14:42:37 -05003714 if (!ftrace_pages)
Steven Rostedta7900872011-12-16 16:23:44 -05003715 goto out;
Steven Rostedt32082302011-12-16 14:42:37 -05003716
Steven Rostedta7900872011-12-16 16:23:44 -05003717 if (WARN_ON(ftrace_pages->next)) {
3718 /* Hmm, we have free pages? */
3719 while (ftrace_pages->next)
3720 ftrace_pages = ftrace_pages->next;
Steven Rostedt32082302011-12-16 14:42:37 -05003721 }
Steven Rostedta7900872011-12-16 16:23:44 -05003722
Steven Rostedt706c81f2012-04-24 23:45:26 -04003723 ftrace_pages->next = start_pg;
Steven Rostedt32082302011-12-16 14:42:37 -05003724 }
3725
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003726 p = start;
Steven Rostedt706c81f2012-04-24 23:45:26 -04003727 pg = start_pg;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003728 while (p < end) {
3729 addr = ftrace_call_adjust(*p++);
Steven Rostedt20e52272008-11-14 16:21:19 -08003730 /*
3731 * Some architecture linkers will pad between
3732 * the different mcount_loc sections of different
3733 * object files to satisfy alignments.
3734 * Skip any NULL pointers.
3735 */
3736 if (!addr)
3737 continue;
Steven Rostedt706c81f2012-04-24 23:45:26 -04003738
3739 if (pg->index == pg->size) {
3740 /* We should have allocated enough */
3741 if (WARN_ON(!pg->next))
3742 break;
3743 pg = pg->next;
3744 }
3745
3746 rec = &pg->records[pg->index++];
3747 rec->ip = addr;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003748 }
3749
Steven Rostedt706c81f2012-04-24 23:45:26 -04003750 /* We should have used all pages */
3751 WARN_ON(pg->next);
3752
3753 /* Assign the last page to ftrace_pages */
3754 ftrace_pages = pg;
3755
Steven Rostedt85ae32a2011-12-16 16:30:31 -05003756 /* These new locations need to be initialized */
Steven Rostedt706c81f2012-04-24 23:45:26 -04003757 ftrace_new_pgs = start_pg;
Steven Rostedt85ae32a2011-12-16 16:30:31 -05003758
Steven Rostedta4f18ed2011-06-07 09:26:46 -04003759 /*
Steven Rostedt4376cac2011-06-24 23:28:13 -04003760 * We only need to disable interrupts on start up
3761 * because we are modifying code that an interrupt
3762 * may execute, and the modification is not atomic.
3763 * But for modules, nothing runs the code we modify
3764 * until we are finished with it, and there's no
3765 * reason to cause large interrupt latencies while we do it.
Steven Rostedta4f18ed2011-06-07 09:26:46 -04003766 */
Steven Rostedt4376cac2011-06-24 23:28:13 -04003767 if (!mod)
3768 local_irq_save(flags);
Steven Rostedt31e88902008-11-14 16:21:19 -08003769 ftrace_update_code(mod);
Steven Rostedt4376cac2011-06-24 23:28:13 -04003770 if (!mod)
3771 local_irq_restore(flags);
Steven Rostedta7900872011-12-16 16:23:44 -05003772 ret = 0;
3773 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05003774 mutex_unlock(&ftrace_lock);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003775
Steven Rostedta7900872011-12-16 16:23:44 -05003776 return ret;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003777}
3778
Steven Rostedt93eb6772009-04-15 13:24:06 -04003779#ifdef CONFIG_MODULES
Steven Rostedt32082302011-12-16 14:42:37 -05003780
3781#define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next)
3782
jolsa@redhat.come7247a12009-10-07 19:00:35 +02003783void ftrace_release_mod(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04003784{
3785 struct dyn_ftrace *rec;
Steven Rostedt32082302011-12-16 14:42:37 -05003786 struct ftrace_page **last_pg;
Steven Rostedt93eb6772009-04-15 13:24:06 -04003787 struct ftrace_page *pg;
Steven Rostedta7900872011-12-16 16:23:44 -05003788 int order;
Steven Rostedt93eb6772009-04-15 13:24:06 -04003789
Steven Rostedt93eb6772009-04-15 13:24:06 -04003790 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04003791
3792 if (ftrace_disabled)
3793 goto out_unlock;
3794
Steven Rostedt32082302011-12-16 14:42:37 -05003795 /*
3796 * Each module has its own ftrace_pages, remove
3797 * them from the list.
3798 */
3799 last_pg = &ftrace_pages_start;
3800 for (pg = ftrace_pages_start; pg; pg = *last_pg) {
3801 rec = &pg->records[0];
jolsa@redhat.come7247a12009-10-07 19:00:35 +02003802 if (within_module_core(rec->ip, mod)) {
Steven Rostedt93eb6772009-04-15 13:24:06 -04003803 /*
Steven Rostedt32082302011-12-16 14:42:37 -05003804 * As core pages are first, the first
3805 * page should never be a module page.
Steven Rostedt93eb6772009-04-15 13:24:06 -04003806 */
Steven Rostedt32082302011-12-16 14:42:37 -05003807 if (WARN_ON(pg == ftrace_pages_start))
3808 goto out_unlock;
3809
3810 /* Check if we are deleting the last page */
3811 if (pg == ftrace_pages)
3812 ftrace_pages = next_to_ftrace_page(last_pg);
3813
3814 *last_pg = pg->next;
Steven Rostedta7900872011-12-16 16:23:44 -05003815 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
3816 free_pages((unsigned long)pg->records, order);
3817 kfree(pg);
Steven Rostedt32082302011-12-16 14:42:37 -05003818 } else
3819 last_pg = &pg->next;
3820 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04003821 out_unlock:
Steven Rostedt93eb6772009-04-15 13:24:06 -04003822 mutex_unlock(&ftrace_lock);
3823}
3824
3825static void ftrace_init_module(struct module *mod,
3826 unsigned long *start, unsigned long *end)
Steven Rostedt90d595f2008-08-14 15:45:09 -04003827{
Steven Rostedt00fd61a2008-08-15 21:40:04 -04003828 if (ftrace_disabled || start == end)
Steven Rostedtfed19392008-08-14 22:47:19 -04003829 return;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04003830 ftrace_process_locs(mod, start, end);
Steven Rostedt90d595f2008-08-14 15:45:09 -04003831}
3832
Steven Rostedt93eb6772009-04-15 13:24:06 -04003833static int ftrace_module_notify(struct notifier_block *self,
3834 unsigned long val, void *data)
3835{
3836 struct module *mod = data;
3837
3838 switch (val) {
3839 case MODULE_STATE_COMING:
3840 ftrace_init_module(mod, mod->ftrace_callsites,
3841 mod->ftrace_callsites +
3842 mod->num_ftrace_callsites);
3843 break;
3844 case MODULE_STATE_GOING:
jolsa@redhat.come7247a12009-10-07 19:00:35 +02003845 ftrace_release_mod(mod);
Steven Rostedt93eb6772009-04-15 13:24:06 -04003846 break;
3847 }
3848
3849 return 0;
3850}
3851#else
3852static int ftrace_module_notify(struct notifier_block *self,
3853 unsigned long val, void *data)
3854{
3855 return 0;
3856}
3857#endif /* CONFIG_MODULES */
3858
3859struct notifier_block ftrace_module_nb = {
3860 .notifier_call = ftrace_module_notify,
3861 .priority = 0,
3862};
3863
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003864extern unsigned long __start_mcount_loc[];
3865extern unsigned long __stop_mcount_loc[];
3866
3867void __init ftrace_init(void)
3868{
3869 unsigned long count, addr, flags;
3870 int ret;
3871
3872 /* Keep the ftrace pointer to the stub */
3873 addr = (unsigned long)ftrace_stub;
3874
3875 local_irq_save(flags);
3876 ftrace_dyn_arch_init(&addr);
3877 local_irq_restore(flags);
3878
3879 /* ftrace_dyn_arch_init places the return code in addr */
3880 if (addr)
3881 goto failed;
3882
3883 count = __stop_mcount_loc - __start_mcount_loc;
3884
3885 ret = ftrace_dyn_table_alloc(count);
3886 if (ret)
3887 goto failed;
3888
3889 last_ftrace_enabled = ftrace_enabled = 1;
3890
Jiri Olsa5cb084b2009-10-13 16:33:53 -04003891 ret = ftrace_process_locs(NULL,
Steven Rostedt31e88902008-11-14 16:21:19 -08003892 __start_mcount_loc,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003893 __stop_mcount_loc);
3894
Steven Rostedt93eb6772009-04-15 13:24:06 -04003895 ret = register_module_notifier(&ftrace_module_nb);
Ming Lei24ed0c42009-05-17 15:31:38 +08003896 if (ret)
Steven Rostedt93eb6772009-04-15 13:24:06 -04003897 pr_warning("Failed to register trace ftrace module notifier\n");
3898
Steven Rostedt2af15d62009-05-28 13:37:24 -04003899 set_ftrace_early_filters();
3900
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003901 return;
3902 failed:
3903 ftrace_disabled = 1;
3904}
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003905
Steven Rostedt3d083392008-05-12 21:20:42 +02003906#else
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01003907
Steven Rostedt2b499382011-05-03 22:49:52 -04003908static struct ftrace_ops global_ops = {
Steven Rostedtbd69c302011-05-03 21:55:54 -04003909 .func = ftrace_stub,
3910};
3911
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01003912static int __init ftrace_nodyn_init(void)
3913{
3914 ftrace_enabled = 1;
3915 return 0;
3916}
3917device_initcall(ftrace_nodyn_init);
3918
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003919static inline int ftrace_init_dyn_debugfs(struct dentry *d_tracer) { return 0; }
3920static inline void ftrace_startup_enable(int command) { }
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05003921/* Keep as macros so we do not need to define the commands */
Steven Rostedt3b6cfdb2011-05-23 15:33:49 -04003922# define ftrace_startup(ops, command) \
3923 ({ \
3924 (ops)->flags |= FTRACE_OPS_FL_ENABLED; \
3925 0; \
3926 })
Steven Rostedtbd69c302011-05-03 21:55:54 -04003927# define ftrace_shutdown(ops, command) do { } while (0)
Ingo Molnarc7aafc52008-05-12 21:20:45 +02003928# define ftrace_startup_sysctl() do { } while (0)
3929# define ftrace_shutdown_sysctl() do { } while (0)
Steven Rostedtb8489142011-05-04 09:27:52 -04003930
3931static inline int
3932ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip)
3933{
3934 return 1;
3935}
3936
Steven Rostedt3d083392008-05-12 21:20:42 +02003937#endif /* CONFIG_DYNAMIC_FTRACE */
3938
Steven Rostedtb8489142011-05-04 09:27:52 -04003939static void
Jiri Olsae2484912012-02-15 15:51:48 +01003940ftrace_ops_control_func(unsigned long ip, unsigned long parent_ip)
3941{
3942 struct ftrace_ops *op;
3943
3944 if (unlikely(trace_recursion_test(TRACE_CONTROL_BIT)))
3945 return;
3946
3947 /*
3948 * Some of the ops may be dynamically allocated,
3949 * they must be freed after a synchronize_sched().
3950 */
3951 preempt_disable_notrace();
3952 trace_recursion_set(TRACE_CONTROL_BIT);
3953 op = rcu_dereference_raw(ftrace_control_list);
3954 while (op != &ftrace_list_end) {
3955 if (!ftrace_function_local_disabled(op) &&
3956 ftrace_ops_test(op, ip))
3957 op->func(ip, parent_ip);
3958
3959 op = rcu_dereference_raw(op->next);
3960 };
3961 trace_recursion_clear(TRACE_CONTROL_BIT);
3962 preempt_enable_notrace();
3963}
3964
3965static struct ftrace_ops control_ops = {
3966 .func = ftrace_ops_control_func,
3967};
3968
3969static void
Steven Rostedtb8489142011-05-04 09:27:52 -04003970ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip)
3971{
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04003972 struct ftrace_ops *op;
Steven Rostedtb8489142011-05-04 09:27:52 -04003973
Steven Rostedtb1cff0a2011-05-25 14:27:43 -04003974 if (unlikely(trace_recursion_test(TRACE_INTERNAL_BIT)))
3975 return;
3976
3977 trace_recursion_set(TRACE_INTERNAL_BIT);
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04003978 /*
3979 * Some of the ops may be dynamically allocated,
3980 * they must be freed after a synchronize_sched().
3981 */
3982 preempt_disable_notrace();
3983 op = rcu_dereference_raw(ftrace_ops_list);
Steven Rostedtb8489142011-05-04 09:27:52 -04003984 while (op != &ftrace_list_end) {
3985 if (ftrace_ops_test(op, ip))
3986 op->func(ip, parent_ip);
3987 op = rcu_dereference_raw(op->next);
3988 };
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04003989 preempt_enable_notrace();
Steven Rostedtb1cff0a2011-05-25 14:27:43 -04003990 trace_recursion_clear(TRACE_INTERNAL_BIT);
Steven Rostedtb8489142011-05-04 09:27:52 -04003991}
3992
Steven Rostedte32d8952008-12-04 00:26:41 -05003993static void clear_ftrace_swapper(void)
3994{
3995 struct task_struct *p;
3996 int cpu;
3997
3998 get_online_cpus();
3999 for_each_online_cpu(cpu) {
4000 p = idle_task(cpu);
4001 clear_tsk_trace_trace(p);
4002 }
4003 put_online_cpus();
4004}
4005
4006static void set_ftrace_swapper(void)
4007{
4008 struct task_struct *p;
4009 int cpu;
4010
4011 get_online_cpus();
4012 for_each_online_cpu(cpu) {
4013 p = idle_task(cpu);
4014 set_tsk_trace_trace(p);
4015 }
4016 put_online_cpus();
4017}
4018
4019static void clear_ftrace_pid(struct pid *pid)
Steven Rostedt978f3a42008-12-04 00:26:40 -05004020{
4021 struct task_struct *p;
4022
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01004023 rcu_read_lock();
Steven Rostedte32d8952008-12-04 00:26:41 -05004024 do_each_pid_task(pid, PIDTYPE_PID, p) {
Steven Rostedt978f3a42008-12-04 00:26:40 -05004025 clear_tsk_trace_trace(p);
Steven Rostedte32d8952008-12-04 00:26:41 -05004026 } while_each_pid_task(pid, PIDTYPE_PID, p);
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01004027 rcu_read_unlock();
4028
Steven Rostedte32d8952008-12-04 00:26:41 -05004029 put_pid(pid);
Steven Rostedt978f3a42008-12-04 00:26:40 -05004030}
4031
Steven Rostedte32d8952008-12-04 00:26:41 -05004032static void set_ftrace_pid(struct pid *pid)
Steven Rostedt978f3a42008-12-04 00:26:40 -05004033{
4034 struct task_struct *p;
4035
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01004036 rcu_read_lock();
Steven Rostedt978f3a42008-12-04 00:26:40 -05004037 do_each_pid_task(pid, PIDTYPE_PID, p) {
4038 set_tsk_trace_trace(p);
4039 } while_each_pid_task(pid, PIDTYPE_PID, p);
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01004040 rcu_read_unlock();
Steven Rostedt978f3a42008-12-04 00:26:40 -05004041}
4042
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004043static void clear_ftrace_pid_task(struct pid *pid)
Steven Rostedte32d8952008-12-04 00:26:41 -05004044{
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004045 if (pid == ftrace_swapper_pid)
Steven Rostedte32d8952008-12-04 00:26:41 -05004046 clear_ftrace_swapper();
4047 else
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004048 clear_ftrace_pid(pid);
Steven Rostedte32d8952008-12-04 00:26:41 -05004049}
4050
4051static void set_ftrace_pid_task(struct pid *pid)
4052{
4053 if (pid == ftrace_swapper_pid)
4054 set_ftrace_swapper();
4055 else
4056 set_ftrace_pid(pid);
4057}
4058
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004059static int ftrace_pid_add(int p)
4060{
4061 struct pid *pid;
4062 struct ftrace_pid *fpid;
4063 int ret = -EINVAL;
4064
4065 mutex_lock(&ftrace_lock);
4066
4067 if (!p)
4068 pid = ftrace_swapper_pid;
4069 else
4070 pid = find_get_pid(p);
4071
4072 if (!pid)
4073 goto out;
4074
4075 ret = 0;
4076
4077 list_for_each_entry(fpid, &ftrace_pids, list)
4078 if (fpid->pid == pid)
4079 goto out_put;
4080
4081 ret = -ENOMEM;
4082
4083 fpid = kmalloc(sizeof(*fpid), GFP_KERNEL);
4084 if (!fpid)
4085 goto out_put;
4086
4087 list_add(&fpid->list, &ftrace_pids);
4088 fpid->pid = pid;
4089
4090 set_ftrace_pid_task(pid);
4091
4092 ftrace_update_pid_func();
4093 ftrace_startup_enable(0);
4094
4095 mutex_unlock(&ftrace_lock);
4096 return 0;
4097
4098out_put:
4099 if (pid != ftrace_swapper_pid)
4100 put_pid(pid);
4101
4102out:
4103 mutex_unlock(&ftrace_lock);
4104 return ret;
4105}
4106
4107static void ftrace_pid_reset(void)
4108{
4109 struct ftrace_pid *fpid, *safe;
4110
4111 mutex_lock(&ftrace_lock);
4112 list_for_each_entry_safe(fpid, safe, &ftrace_pids, list) {
4113 struct pid *pid = fpid->pid;
4114
4115 clear_ftrace_pid_task(pid);
4116
4117 list_del(&fpid->list);
4118 kfree(fpid);
4119 }
4120
4121 ftrace_update_pid_func();
4122 ftrace_startup_enable(0);
4123
4124 mutex_unlock(&ftrace_lock);
4125}
4126
4127static void *fpid_start(struct seq_file *m, loff_t *pos)
4128{
4129 mutex_lock(&ftrace_lock);
4130
4131 if (list_empty(&ftrace_pids) && (!*pos))
4132 return (void *) 1;
4133
4134 return seq_list_start(&ftrace_pids, *pos);
4135}
4136
4137static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
4138{
4139 if (v == (void *)1)
4140 return NULL;
4141
4142 return seq_list_next(v, &ftrace_pids, pos);
4143}
4144
4145static void fpid_stop(struct seq_file *m, void *p)
4146{
4147 mutex_unlock(&ftrace_lock);
4148}
4149
4150static int fpid_show(struct seq_file *m, void *v)
4151{
4152 const struct ftrace_pid *fpid = list_entry(v, struct ftrace_pid, list);
4153
4154 if (v == (void *)1) {
4155 seq_printf(m, "no pid\n");
4156 return 0;
4157 }
4158
4159 if (fpid->pid == ftrace_swapper_pid)
4160 seq_printf(m, "swapper tasks\n");
4161 else
4162 seq_printf(m, "%u\n", pid_vnr(fpid->pid));
4163
4164 return 0;
4165}
4166
4167static const struct seq_operations ftrace_pid_sops = {
4168 .start = fpid_start,
4169 .next = fpid_next,
4170 .stop = fpid_stop,
4171 .show = fpid_show,
4172};
4173
4174static int
4175ftrace_pid_open(struct inode *inode, struct file *file)
4176{
4177 int ret = 0;
4178
4179 if ((file->f_mode & FMODE_WRITE) &&
4180 (file->f_flags & O_TRUNC))
4181 ftrace_pid_reset();
4182
4183 if (file->f_mode & FMODE_READ)
4184 ret = seq_open(file, &ftrace_pid_sops);
4185
4186 return ret;
4187}
4188
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004189static ssize_t
4190ftrace_pid_write(struct file *filp, const char __user *ubuf,
4191 size_t cnt, loff_t *ppos)
4192{
Ingo Molnar457dc922009-11-23 11:03:28 +01004193 char buf[64], *tmp;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004194 long val;
4195 int ret;
4196
4197 if (cnt >= sizeof(buf))
4198 return -EINVAL;
4199
4200 if (copy_from_user(&buf, ubuf, cnt))
4201 return -EFAULT;
4202
4203 buf[cnt] = 0;
4204
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004205 /*
4206 * Allow "echo > set_ftrace_pid" or "echo -n '' > set_ftrace_pid"
4207 * to clean the filter quietly.
4208 */
Ingo Molnar457dc922009-11-23 11:03:28 +01004209 tmp = strstrip(buf);
4210 if (strlen(tmp) == 0)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004211 return 1;
4212
Ingo Molnar457dc922009-11-23 11:03:28 +01004213 ret = strict_strtol(tmp, 10, &val);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004214 if (ret < 0)
4215 return ret;
4216
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004217 ret = ftrace_pid_add(val);
Steven Rostedt978f3a42008-12-04 00:26:40 -05004218
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004219 return ret ? ret : cnt;
4220}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004221
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004222static int
4223ftrace_pid_release(struct inode *inode, struct file *file)
4224{
4225 if (file->f_mode & FMODE_READ)
4226 seq_release(inode, file);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004227
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004228 return 0;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004229}
4230
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004231static const struct file_operations ftrace_pid_fops = {
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004232 .open = ftrace_pid_open,
4233 .write = ftrace_pid_write,
4234 .read = seq_read,
4235 .llseek = seq_lseek,
4236 .release = ftrace_pid_release,
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004237};
4238
4239static __init int ftrace_init_debugfs(void)
4240{
4241 struct dentry *d_tracer;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004242
4243 d_tracer = tracing_init_dentry();
4244 if (!d_tracer)
4245 return 0;
4246
4247 ftrace_init_dyn_debugfs(d_tracer);
4248
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004249 trace_create_file("set_ftrace_pid", 0644, d_tracer,
4250 NULL, &ftrace_pid_fops);
Steven Rostedt493762f2009-03-23 17:12:36 -04004251
4252 ftrace_profile_debugfs(d_tracer);
4253
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004254 return 0;
4255}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004256fs_initcall(ftrace_init_debugfs);
4257
Steven Rostedt3d083392008-05-12 21:20:42 +02004258/**
Steven Rostedt81adbdc2008-10-23 09:33:02 -04004259 * ftrace_kill - kill ftrace
Steven Rostedta2bb6a32008-07-10 20:58:15 -04004260 *
4261 * This function should be used by panic code. It stops ftrace
4262 * but in a not so nice way. If you need to simply kill ftrace
4263 * from a non-atomic section, use ftrace_kill.
4264 */
Steven Rostedt81adbdc2008-10-23 09:33:02 -04004265void ftrace_kill(void)
Steven Rostedta2bb6a32008-07-10 20:58:15 -04004266{
4267 ftrace_disabled = 1;
4268 ftrace_enabled = 0;
Steven Rostedta2bb6a32008-07-10 20:58:15 -04004269 clear_ftrace_function();
4270}
4271
4272/**
Steven Rostedte0a413f2011-09-29 21:26:16 -04004273 * Test if ftrace is dead or not.
4274 */
4275int ftrace_is_dead(void)
4276{
4277 return ftrace_disabled;
4278}
4279
4280/**
Steven Rostedt3d083392008-05-12 21:20:42 +02004281 * register_ftrace_function - register a function for profiling
4282 * @ops - ops structure that holds the function for profiling.
4283 *
4284 * Register a function to be called by all functions in the
4285 * kernel.
4286 *
4287 * Note: @ops->func and all the functions it calls must be labeled
4288 * with "notrace", otherwise it will go into a
4289 * recursive loop.
4290 */
4291int register_ftrace_function(struct ftrace_ops *ops)
4292{
Steven Rostedt45a4a232011-04-21 23:16:46 -04004293 int ret = -1;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02004294
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004295 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004296
Steven Rostedt45a4a232011-04-21 23:16:46 -04004297 if (unlikely(ftrace_disabled))
4298 goto out_unlock;
4299
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004300 ret = __register_ftrace_function(ops);
Steven Rostedtb8489142011-05-04 09:27:52 -04004301 if (!ret)
Steven Rostedta1cd6172011-05-23 15:24:25 -04004302 ret = ftrace_startup(ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04004303
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004304
Steven Rostedt45a4a232011-04-21 23:16:46 -04004305 out_unlock:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004306 mutex_unlock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004307 return ret;
Steven Rostedt3d083392008-05-12 21:20:42 +02004308}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04004309EXPORT_SYMBOL_GPL(register_ftrace_function);
Steven Rostedt3d083392008-05-12 21:20:42 +02004310
4311/**
Uwe Kleine-Koenig32632922009-01-12 23:35:50 +01004312 * unregister_ftrace_function - unregister a function for profiling.
Steven Rostedt3d083392008-05-12 21:20:42 +02004313 * @ops - ops structure that holds the function to unregister
4314 *
4315 * Unregister a function that was added to be called by ftrace profiling.
4316 */
4317int unregister_ftrace_function(struct ftrace_ops *ops)
4318{
4319 int ret;
4320
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004321 mutex_lock(&ftrace_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02004322 ret = __unregister_ftrace_function(ops);
Steven Rostedtb8489142011-05-04 09:27:52 -04004323 if (!ret)
4324 ftrace_shutdown(ops, 0);
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004325 mutex_unlock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004326
4327 return ret;
4328}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04004329EXPORT_SYMBOL_GPL(unregister_ftrace_function);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004330
Ingo Molnare309b412008-05-12 21:20:51 +02004331int
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004332ftrace_enable_sysctl(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07004333 void __user *buffer, size_t *lenp,
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004334 loff_t *ppos)
4335{
Steven Rostedt45a4a232011-04-21 23:16:46 -04004336 int ret = -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02004337
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004338 mutex_lock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004339
Steven Rostedt45a4a232011-04-21 23:16:46 -04004340 if (unlikely(ftrace_disabled))
4341 goto out;
4342
4343 ret = proc_dointvec(table, write, buffer, lenp, ppos);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004344
Li Zefana32c7762009-06-26 16:55:51 +08004345 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004346 goto out;
4347
Li Zefana32c7762009-06-26 16:55:51 +08004348 last_ftrace_enabled = !!ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004349
4350 if (ftrace_enabled) {
4351
4352 ftrace_startup_sysctl();
4353
4354 /* we are starting ftrace again */
Steven Rostedtb8489142011-05-04 09:27:52 -04004355 if (ftrace_ops_list != &ftrace_list_end) {
4356 if (ftrace_ops_list->next == &ftrace_list_end)
4357 ftrace_trace_function = ftrace_ops_list->func;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004358 else
Steven Rostedtb8489142011-05-04 09:27:52 -04004359 ftrace_trace_function = ftrace_ops_list_func;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004360 }
4361
4362 } else {
4363 /* stopping ftrace calls (just send to ftrace_stub) */
4364 ftrace_trace_function = ftrace_stub;
4365
4366 ftrace_shutdown_sysctl();
4367 }
4368
4369 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004370 mutex_unlock(&ftrace_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02004371 return ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02004372}
Ingo Molnarf17845e2008-10-24 12:47:10 +02004373
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004374#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004375
Steven Rostedt597af812009-04-03 15:24:12 -04004376static int ftrace_graph_active;
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08004377static struct notifier_block ftrace_suspend_notifier;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004378
Steven Rostedte49dc192008-12-02 23:50:05 -05004379int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
4380{
4381 return 0;
4382}
4383
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01004384/* The callbacks that hook a function */
4385trace_func_graph_ret_t ftrace_graph_return =
4386 (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05004387trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004388
4389/* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
4390static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
4391{
4392 int i;
4393 int ret = 0;
4394 unsigned long flags;
4395 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
4396 struct task_struct *g, *t;
4397
4398 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
4399 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
4400 * sizeof(struct ftrace_ret_stack),
4401 GFP_KERNEL);
4402 if (!ret_stack_list[i]) {
4403 start = 0;
4404 end = i;
4405 ret = -ENOMEM;
4406 goto free;
4407 }
4408 }
4409
4410 read_lock_irqsave(&tasklist_lock, flags);
4411 do_each_thread(g, t) {
4412 if (start == end) {
4413 ret = -EAGAIN;
4414 goto unlock;
4415 }
4416
4417 if (t->ret_stack == NULL) {
Frederic Weisbecker380c4b12008-12-06 03:43:41 +01004418 atomic_set(&t->tracing_graph_pause, 0);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004419 atomic_set(&t->trace_overrun, 0);
Steven Rostedt26c01622009-06-02 14:01:19 -04004420 t->curr_ret_stack = -1;
4421 /* Make sure the tasks see the -1 first: */
4422 smp_wmb();
4423 t->ret_stack = ret_stack_list[start++];
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004424 }
4425 } while_each_thread(g, t);
4426
4427unlock:
4428 read_unlock_irqrestore(&tasklist_lock, flags);
4429free:
4430 for (i = start; i < end; i++)
4431 kfree(ret_stack_list[i]);
4432 return ret;
4433}
4434
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004435static void
Steven Rostedt38516ab2010-04-20 17:04:50 -04004436ftrace_graph_probe_sched_switch(void *ignore,
4437 struct task_struct *prev, struct task_struct *next)
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004438{
4439 unsigned long long timestamp;
4440 int index;
4441
Steven Rostedtbe6f1642009-03-24 11:06:24 -04004442 /*
4443 * Does the user want to count the time a function was asleep.
4444 * If so, do not update the time stamps.
4445 */
4446 if (trace_flags & TRACE_ITER_SLEEP_TIME)
4447 return;
4448
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004449 timestamp = trace_clock_local();
4450
4451 prev->ftrace_timestamp = timestamp;
4452
4453 /* only process tasks that we timestamped */
4454 if (!next->ftrace_timestamp)
4455 return;
4456
4457 /*
4458 * Update all the counters in next to make up for the
4459 * time next was sleeping.
4460 */
4461 timestamp -= next->ftrace_timestamp;
4462
4463 for (index = next->curr_ret_stack; index >= 0; index--)
4464 next->ret_stack[index].calltime += timestamp;
4465}
4466
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004467/* Allocate a return stack for each task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004468static int start_graph_tracing(void)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004469{
4470 struct ftrace_ret_stack **ret_stack_list;
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01004471 int ret, cpu;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004472
4473 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
4474 sizeof(struct ftrace_ret_stack *),
4475 GFP_KERNEL);
4476
4477 if (!ret_stack_list)
4478 return -ENOMEM;
4479
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01004480 /* The cpu_boot init_task->ret_stack will never be freed */
Steven Rostedt179c4982009-06-02 12:03:19 -04004481 for_each_online_cpu(cpu) {
4482 if (!idle_task(cpu)->ret_stack)
Steven Rostedt868baf02011-02-10 21:26:13 -05004483 ftrace_graph_init_idle_task(idle_task(cpu), cpu);
Steven Rostedt179c4982009-06-02 12:03:19 -04004484 }
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01004485
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004486 do {
4487 ret = alloc_retstack_tasklist(ret_stack_list);
4488 } while (ret == -EAGAIN);
4489
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004490 if (!ret) {
Steven Rostedt38516ab2010-04-20 17:04:50 -04004491 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004492 if (ret)
4493 pr_info("ftrace_graph: Couldn't activate tracepoint"
4494 " probe to kernel_sched_switch\n");
4495 }
4496
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004497 kfree(ret_stack_list);
4498 return ret;
4499}
4500
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08004501/*
4502 * Hibernation protection.
4503 * The state of the current task is too much unstable during
4504 * suspend/restore to disk. We want to protect against that.
4505 */
4506static int
4507ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
4508 void *unused)
4509{
4510 switch (state) {
4511 case PM_HIBERNATION_PREPARE:
4512 pause_graph_tracing();
4513 break;
4514
4515 case PM_POST_HIBERNATION:
4516 unpause_graph_tracing();
4517 break;
4518 }
4519 return NOTIFY_DONE;
4520}
4521
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01004522int register_ftrace_graph(trace_func_graph_ret_t retfunc,
4523 trace_func_graph_ent_t entryfunc)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004524{
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004525 int ret = 0;
4526
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004527 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004528
Steven Rostedt05ce5812009-03-24 00:18:31 -04004529 /* we currently allow only one tracer registered at a time */
Steven Rostedt597af812009-04-03 15:24:12 -04004530 if (ftrace_graph_active) {
Steven Rostedt05ce5812009-03-24 00:18:31 -04004531 ret = -EBUSY;
4532 goto out;
4533 }
4534
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08004535 ftrace_suspend_notifier.notifier_call = ftrace_suspend_notifier_call;
4536 register_pm_notifier(&ftrace_suspend_notifier);
4537
Steven Rostedt597af812009-04-03 15:24:12 -04004538 ftrace_graph_active++;
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004539 ret = start_graph_tracing();
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004540 if (ret) {
Steven Rostedt597af812009-04-03 15:24:12 -04004541 ftrace_graph_active--;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004542 goto out;
4543 }
Steven Rostedte53a6312008-11-26 00:16:25 -05004544
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01004545 ftrace_graph_return = retfunc;
4546 ftrace_graph_entry = entryfunc;
Steven Rostedte53a6312008-11-26 00:16:25 -05004547
Steven Rostedta1cd6172011-05-23 15:24:25 -04004548 ret = ftrace_startup(&global_ops, FTRACE_START_FUNC_RET);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004549
4550out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004551 mutex_unlock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004552 return ret;
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004553}
4554
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004555void unregister_ftrace_graph(void)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004556{
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004557 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004558
Steven Rostedt597af812009-04-03 15:24:12 -04004559 if (unlikely(!ftrace_graph_active))
Steven Rostedt2aad1b72009-03-30 11:11:28 -04004560 goto out;
4561
Steven Rostedt597af812009-04-03 15:24:12 -04004562 ftrace_graph_active--;
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01004563 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05004564 ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedtbd69c302011-05-03 21:55:54 -04004565 ftrace_shutdown(&global_ops, FTRACE_STOP_FUNC_RET);
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08004566 unregister_pm_notifier(&ftrace_suspend_notifier);
Steven Rostedt38516ab2010-04-20 17:04:50 -04004567 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004568
Steven Rostedt2aad1b72009-03-30 11:11:28 -04004569 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004570 mutex_unlock(&ftrace_lock);
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004571}
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004572
Steven Rostedt868baf02011-02-10 21:26:13 -05004573static DEFINE_PER_CPU(struct ftrace_ret_stack *, idle_ret_stack);
4574
4575static void
4576graph_init_task(struct task_struct *t, struct ftrace_ret_stack *ret_stack)
4577{
4578 atomic_set(&t->tracing_graph_pause, 0);
4579 atomic_set(&t->trace_overrun, 0);
4580 t->ftrace_timestamp = 0;
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004581 /* make curr_ret_stack visible before we add the ret_stack */
Steven Rostedt868baf02011-02-10 21:26:13 -05004582 smp_wmb();
4583 t->ret_stack = ret_stack;
4584}
4585
4586/*
4587 * Allocate a return stack for the idle task. May be the first
4588 * time through, or it may be done by CPU hotplug online.
4589 */
4590void ftrace_graph_init_idle_task(struct task_struct *t, int cpu)
4591{
4592 t->curr_ret_stack = -1;
4593 /*
4594 * The idle task has no parent, it either has its own
4595 * stack or no stack at all.
4596 */
4597 if (t->ret_stack)
4598 WARN_ON(t->ret_stack != per_cpu(idle_ret_stack, cpu));
4599
4600 if (ftrace_graph_active) {
4601 struct ftrace_ret_stack *ret_stack;
4602
4603 ret_stack = per_cpu(idle_ret_stack, cpu);
4604 if (!ret_stack) {
4605 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
4606 * sizeof(struct ftrace_ret_stack),
4607 GFP_KERNEL);
4608 if (!ret_stack)
4609 return;
4610 per_cpu(idle_ret_stack, cpu) = ret_stack;
4611 }
4612 graph_init_task(t, ret_stack);
4613 }
4614}
4615
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004616/* Allocate a return stack for newly created task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004617void ftrace_graph_init_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004618{
Steven Rostedt84047e32009-06-02 16:51:55 -04004619 /* Make sure we do not use the parent ret_stack */
4620 t->ret_stack = NULL;
Steven Rostedtea14eb72010-03-12 19:41:23 -05004621 t->curr_ret_stack = -1;
Steven Rostedt84047e32009-06-02 16:51:55 -04004622
Steven Rostedt597af812009-04-03 15:24:12 -04004623 if (ftrace_graph_active) {
Steven Rostedt82310a32009-06-02 12:26:07 -04004624 struct ftrace_ret_stack *ret_stack;
4625
4626 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004627 * sizeof(struct ftrace_ret_stack),
4628 GFP_KERNEL);
Steven Rostedt82310a32009-06-02 12:26:07 -04004629 if (!ret_stack)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004630 return;
Steven Rostedt868baf02011-02-10 21:26:13 -05004631 graph_init_task(t, ret_stack);
Steven Rostedt84047e32009-06-02 16:51:55 -04004632 }
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004633}
4634
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004635void ftrace_graph_exit_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004636{
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01004637 struct ftrace_ret_stack *ret_stack = t->ret_stack;
4638
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004639 t->ret_stack = NULL;
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01004640 /* NULL must become visible to IRQs before we free it: */
4641 barrier();
4642
4643 kfree(ret_stack);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004644}
Steven Rostedt14a866c2008-12-02 23:50:02 -05004645
4646void ftrace_graph_stop(void)
4647{
4648 ftrace_stop();
4649}
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004650#endif