blob: e6effd0c40a9612c83d54b68d1bddefb1247e48d [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
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +010013 * Copyright (C) 2004 Nadia Yvette Chambers
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +020014 */
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 Rostedt2f5f6ad2011-08-08 16:57:47 -040067static struct ftrace_ops ftrace_list_end __read_mostly = {
68 .func = ftrace_stub,
Steven Rostedt47409742012-07-20 11:04:44 -040069 .flags = FTRACE_OPS_FL_RECURSION_SAFE,
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -040070};
71
Steven Rostedt4eebcc82008-05-12 21:20:48 +020072/* ftrace_enabled is a method to turn ftrace on or off */
73int ftrace_enabled __read_mostly;
Steven Rostedtd61f82d2008-05-12 21:20:43 +020074static int last_ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +020075
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050076/* Quick disabling of function tracer. */
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -040077int function_trace_stop __read_mostly;
78
79/* Current function tracing op */
80struct ftrace_ops *function_trace_op __read_mostly = &ftrace_list_end;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050081
jolsa@redhat.com756d17e2009-10-13 16:33:52 -040082/* List for set_ftrace_pid's pids. */
83LIST_HEAD(ftrace_pids);
84struct ftrace_pid {
85 struct list_head list;
86 struct pid *pid;
87};
88
Steven Rostedt4eebcc82008-05-12 21:20:48 +020089/*
90 * ftrace_disabled is set when an anomaly is discovered.
91 * ftrace_disabled is much stronger than ftrace_enabled.
92 */
93static int ftrace_disabled __read_mostly;
94
Steven Rostedt52baf112009-02-14 01:15:39 -050095static DEFINE_MUTEX(ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +020096
Steven Rostedtb8489142011-05-04 09:27:52 -040097static struct ftrace_ops *ftrace_global_list __read_mostly = &ftrace_list_end;
Jiri Olsae2484912012-02-15 15:51:48 +010098static struct ftrace_ops *ftrace_control_list __read_mostly = &ftrace_list_end;
Steven Rostedtb8489142011-05-04 09:27:52 -040099static struct ftrace_ops *ftrace_ops_list __read_mostly = &ftrace_list_end;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200100ftrace_func_t ftrace_trace_function __read_mostly = ftrace_stub;
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500101ftrace_func_t ftrace_pid_function __read_mostly = ftrace_stub;
Steven Rostedt2b499382011-05-03 22:49:52 -0400102static struct ftrace_ops global_ops;
Jiri Olsae2484912012-02-15 15:51:48 +0100103static struct ftrace_ops control_ops;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200104
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400105#if ARCH_SUPPORTS_FTRACE_OPS
106static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400107 struct ftrace_ops *op, struct pt_regs *regs);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400108#else
109/* See comment below, where ftrace_ops_list_func is defined */
110static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip);
111#define ftrace_ops_list_func ((ftrace_func_t)ftrace_ops_no_ops)
112#endif
Steven Rostedtb8489142011-05-04 09:27:52 -0400113
Steven Rostedt0a016402012-11-02 17:03:03 -0400114/*
115 * Traverse the ftrace_global_list, invoking all entries. The reason that we
116 * can use rcu_dereference_raw() is that elements removed from this list
117 * are simply leaked, so there is no need to interact with a grace-period
118 * mechanism. The rcu_dereference_raw() calls are needed to handle
119 * concurrent insertions into the ftrace_global_list.
120 *
121 * Silly Alpha and silly pointer-speculation compiler optimizations!
122 */
123#define do_for_each_ftrace_op(op, list) \
124 op = rcu_dereference_raw(list); \
125 do
126
127/*
128 * Optimized for just a single item in the list (as that is the normal case).
129 */
130#define while_for_each_ftrace_op(op) \
131 while (likely(op = rcu_dereference_raw((op)->next)) && \
132 unlikely((op) != &ftrace_list_end))
133
Steven Rostedtea701f12012-07-20 13:08:05 -0400134/**
135 * ftrace_nr_registered_ops - return number of ops registered
136 *
137 * Returns the number of ftrace_ops registered and tracing functions
138 */
139int ftrace_nr_registered_ops(void)
140{
141 struct ftrace_ops *ops;
142 int cnt = 0;
143
144 mutex_lock(&ftrace_lock);
145
146 for (ops = ftrace_ops_list;
147 ops != &ftrace_list_end; ops = ops->next)
148 cnt++;
149
150 mutex_unlock(&ftrace_lock);
151
152 return cnt;
153}
154
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400155static void
156ftrace_global_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400157 struct ftrace_ops *op, struct pt_regs *regs)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200158{
Steven Rostedtc29f1222012-11-02 17:17:59 -0400159 int bit;
160
Steven Rostedtedc15ca2012-11-02 17:47:21 -0400161 bit = trace_test_and_set_recursion(TRACE_GLOBAL_START, TRACE_GLOBAL_MAX);
162 if (bit < 0)
Steven Rostedtb1cff0a2011-05-25 14:27:43 -0400163 return;
164
Steven Rostedt0a016402012-11-02 17:03:03 -0400165 do_for_each_ftrace_op(op, ftrace_global_list) {
Steven Rostedta1e2e312011-08-09 12:50:46 -0400166 op->func(ip, parent_ip, op, regs);
Steven Rostedt0a016402012-11-02 17:03:03 -0400167 } while_for_each_ftrace_op(op);
Steven Rostedtedc15ca2012-11-02 17:47:21 -0400168
169 trace_clear_recursion(bit);
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200170}
171
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400172static void ftrace_pid_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400173 struct ftrace_ops *op, struct pt_regs *regs)
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500174{
Steven Rostedt0ef8cde2008-12-03 15:36:58 -0500175 if (!test_tsk_trace_trace(current))
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500176 return;
177
Steven Rostedta1e2e312011-08-09 12:50:46 -0400178 ftrace_pid_function(ip, parent_ip, op, regs);
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500179}
180
181static void set_ftrace_pid_function(ftrace_func_t func)
182{
183 /* do not set ftrace_pid_function to itself! */
184 if (func != ftrace_pid_func)
185 ftrace_pid_function = func;
186}
187
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200188/**
Steven Rostedt3d083392008-05-12 21:20:42 +0200189 * clear_ftrace_function - reset the ftrace function
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200190 *
Steven Rostedt3d083392008-05-12 21:20:42 +0200191 * This NULLs the ftrace function and in essence stops
192 * tracing. There may be lag
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200193 */
Steven Rostedt3d083392008-05-12 21:20:42 +0200194void clear_ftrace_function(void)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200195{
Steven Rostedt3d083392008-05-12 21:20:42 +0200196 ftrace_trace_function = ftrace_stub;
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500197 ftrace_pid_function = ftrace_stub;
Steven Rostedt3d083392008-05-12 21:20:42 +0200198}
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200199
Jiri Olsae2484912012-02-15 15:51:48 +0100200static void control_ops_disable_all(struct ftrace_ops *ops)
201{
202 int cpu;
203
204 for_each_possible_cpu(cpu)
205 *per_cpu_ptr(ops->disabled, cpu) = 1;
206}
207
208static int control_ops_alloc(struct ftrace_ops *ops)
209{
210 int __percpu *disabled;
211
212 disabled = alloc_percpu(int);
213 if (!disabled)
214 return -ENOMEM;
215
216 ops->disabled = disabled;
217 control_ops_disable_all(ops);
218 return 0;
219}
220
221static void control_ops_free(struct ftrace_ops *ops)
222{
223 free_percpu(ops->disabled);
224}
225
Steven Rostedt2b499382011-05-03 22:49:52 -0400226static void update_global_ops(void)
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400227{
228 ftrace_func_t func;
229
230 /*
231 * If there's only one function registered, then call that
232 * function directly. Otherwise, we need to iterate over the
233 * registered callers.
234 */
Steven Rostedtb8489142011-05-04 09:27:52 -0400235 if (ftrace_global_list == &ftrace_list_end ||
Steven Rostedt63503792012-11-02 16:58:56 -0400236 ftrace_global_list->next == &ftrace_list_end) {
Steven Rostedtb8489142011-05-04 09:27:52 -0400237 func = ftrace_global_list->func;
Steven Rostedt63503792012-11-02 16:58:56 -0400238 /*
239 * As we are calling the function directly.
240 * If it does not have recursion protection,
241 * the function_trace_op needs to be updated
242 * accordingly.
243 */
244 if (ftrace_global_list->flags & FTRACE_OPS_FL_RECURSION_SAFE)
245 global_ops.flags |= FTRACE_OPS_FL_RECURSION_SAFE;
246 else
247 global_ops.flags &= ~FTRACE_OPS_FL_RECURSION_SAFE;
248 } else {
Steven Rostedtb8489142011-05-04 09:27:52 -0400249 func = ftrace_global_list_func;
Steven Rostedt63503792012-11-02 16:58:56 -0400250 /* The list has its own recursion protection. */
251 global_ops.flags |= FTRACE_OPS_FL_RECURSION_SAFE;
252 }
253
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400254
255 /* If we filter on pids, update to use the pid function */
256 if (!list_empty(&ftrace_pids)) {
257 set_ftrace_pid_function(func);
258 func = ftrace_pid_func;
259 }
Steven Rostedt2b499382011-05-03 22:49:52 -0400260
261 global_ops.func = func;
262}
263
264static void update_ftrace_function(void)
265{
266 ftrace_func_t func;
267
268 update_global_ops();
269
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400270 /*
271 * If we are at the end of the list and this ops is
Steven Rostedt47409742012-07-20 11:04:44 -0400272 * recursion safe and not dynamic and the arch supports passing ops,
273 * then have the mcount trampoline call the function directly.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400274 */
Steven Rostedtb8489142011-05-04 09:27:52 -0400275 if (ftrace_ops_list == &ftrace_list_end ||
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400276 (ftrace_ops_list->next == &ftrace_list_end &&
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400277 !(ftrace_ops_list->flags & FTRACE_OPS_FL_DYNAMIC) &&
Steven Rostedt47409742012-07-20 11:04:44 -0400278 (ftrace_ops_list->flags & FTRACE_OPS_FL_RECURSION_SAFE) &&
Steven Rostedtccf36722012-06-05 09:44:25 -0400279 !FTRACE_FORCE_LIST_FUNC)) {
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400280 /* Set the ftrace_ops that the arch callback uses */
281 if (ftrace_ops_list == &global_ops)
282 function_trace_op = ftrace_global_list;
283 else
284 function_trace_op = ftrace_ops_list;
Steven Rostedtb8489142011-05-04 09:27:52 -0400285 func = ftrace_ops_list->func;
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400286 } else {
287 /* Just use the default ftrace_ops */
288 function_trace_op = &ftrace_list_end;
Steven Rostedtb8489142011-05-04 09:27:52 -0400289 func = ftrace_ops_list_func;
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400290 }
Steven Rostedt2b499382011-05-03 22:49:52 -0400291
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400292 ftrace_trace_function = func;
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400293}
294
Steven Rostedt2b499382011-05-03 22:49:52 -0400295static void add_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
Steven Rostedt3d083392008-05-12 21:20:42 +0200296{
Steven Rostedt2b499382011-05-03 22:49:52 -0400297 ops->next = *list;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200298 /*
Steven Rostedtb8489142011-05-04 09:27:52 -0400299 * We are entering ops into the list but another
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200300 * CPU might be walking that list. We need to make sure
301 * the ops->next pointer is valid before another CPU sees
Steven Rostedtb8489142011-05-04 09:27:52 -0400302 * the ops pointer included into the list.
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200303 */
Steven Rostedt2b499382011-05-03 22:49:52 -0400304 rcu_assign_pointer(*list, ops);
305}
Steven Rostedt3d083392008-05-12 21:20:42 +0200306
Steven Rostedt2b499382011-05-03 22:49:52 -0400307static int remove_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
308{
309 struct ftrace_ops **p;
310
311 /*
312 * If we are removing the last function, then simply point
313 * to the ftrace_stub.
314 */
315 if (*list == ops && ops->next == &ftrace_list_end) {
316 *list = &ftrace_list_end;
317 return 0;
318 }
319
320 for (p = list; *p != &ftrace_list_end; p = &(*p)->next)
321 if (*p == ops)
322 break;
323
324 if (*p != ops)
325 return -1;
326
327 *p = (*p)->next;
328 return 0;
329}
330
Jiri Olsae2484912012-02-15 15:51:48 +0100331static void add_ftrace_list_ops(struct ftrace_ops **list,
332 struct ftrace_ops *main_ops,
333 struct ftrace_ops *ops)
334{
335 int first = *list == &ftrace_list_end;
336 add_ftrace_ops(list, ops);
337 if (first)
338 add_ftrace_ops(&ftrace_ops_list, main_ops);
339}
340
341static int remove_ftrace_list_ops(struct ftrace_ops **list,
342 struct ftrace_ops *main_ops,
343 struct ftrace_ops *ops)
344{
345 int ret = remove_ftrace_ops(list, ops);
346 if (!ret && *list == &ftrace_list_end)
347 ret = remove_ftrace_ops(&ftrace_ops_list, main_ops);
348 return ret;
349}
350
Steven Rostedt2b499382011-05-03 22:49:52 -0400351static int __register_ftrace_function(struct ftrace_ops *ops)
352{
Borislav Petkov8d240dd2012-03-29 19:11:40 +0200353 if (unlikely(ftrace_disabled))
Steven Rostedt2b499382011-05-03 22:49:52 -0400354 return -ENODEV;
355
356 if (FTRACE_WARN_ON(ops == &global_ops))
357 return -EINVAL;
358
Steven Rostedtb8489142011-05-04 09:27:52 -0400359 if (WARN_ON(ops->flags & FTRACE_OPS_FL_ENABLED))
360 return -EBUSY;
361
Jiri Olsae2484912012-02-15 15:51:48 +0100362 /* We don't support both control and global flags set. */
363 if ((ops->flags & FL_GLOBAL_CONTROL_MASK) == FL_GLOBAL_CONTROL_MASK)
364 return -EINVAL;
365
Masami Hiramatsu06aeaae2012-09-28 17:15:17 +0900366#ifndef CONFIG_DYNAMIC_FTRACE_WITH_REGS
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400367 /*
368 * If the ftrace_ops specifies SAVE_REGS, then it only can be used
369 * if the arch supports it, or SAVE_REGS_IF_SUPPORTED is also set.
370 * Setting SAVE_REGS_IF_SUPPORTED makes SAVE_REGS irrelevant.
371 */
372 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS &&
373 !(ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED))
374 return -EINVAL;
375
376 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED)
377 ops->flags |= FTRACE_OPS_FL_SAVE_REGS;
378#endif
379
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400380 if (!core_kernel_data((unsigned long)ops))
381 ops->flags |= FTRACE_OPS_FL_DYNAMIC;
382
Steven Rostedtb8489142011-05-04 09:27:52 -0400383 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
Jiri Olsae2484912012-02-15 15:51:48 +0100384 add_ftrace_list_ops(&ftrace_global_list, &global_ops, ops);
Steven Rostedtb8489142011-05-04 09:27:52 -0400385 ops->flags |= FTRACE_OPS_FL_ENABLED;
Jiri Olsae2484912012-02-15 15:51:48 +0100386 } else if (ops->flags & FTRACE_OPS_FL_CONTROL) {
387 if (control_ops_alloc(ops))
388 return -ENOMEM;
389 add_ftrace_list_ops(&ftrace_control_list, &control_ops, ops);
Steven Rostedtb8489142011-05-04 09:27:52 -0400390 } else
391 add_ftrace_ops(&ftrace_ops_list, ops);
392
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400393 if (ftrace_enabled)
394 update_ftrace_function();
Steven Rostedt3d083392008-05-12 21:20:42 +0200395
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200396 return 0;
397}
398
Ingo Molnare309b412008-05-12 21:20:51 +0200399static int __unregister_ftrace_function(struct ftrace_ops *ops)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200400{
Steven Rostedt2b499382011-05-03 22:49:52 -0400401 int ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200402
Steven Rostedt2b499382011-05-03 22:49:52 -0400403 if (ftrace_disabled)
404 return -ENODEV;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200405
Steven Rostedtb8489142011-05-04 09:27:52 -0400406 if (WARN_ON(!(ops->flags & FTRACE_OPS_FL_ENABLED)))
407 return -EBUSY;
408
Steven Rostedt2b499382011-05-03 22:49:52 -0400409 if (FTRACE_WARN_ON(ops == &global_ops))
410 return -EINVAL;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200411
Steven Rostedtb8489142011-05-04 09:27:52 -0400412 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
Jiri Olsae2484912012-02-15 15:51:48 +0100413 ret = remove_ftrace_list_ops(&ftrace_global_list,
414 &global_ops, ops);
Steven Rostedtb8489142011-05-04 09:27:52 -0400415 if (!ret)
416 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
Jiri Olsae2484912012-02-15 15:51:48 +0100417 } else if (ops->flags & FTRACE_OPS_FL_CONTROL) {
418 ret = remove_ftrace_list_ops(&ftrace_control_list,
419 &control_ops, ops);
420 if (!ret) {
421 /*
422 * The ftrace_ops is now removed from the list,
423 * so there'll be no new users. We must ensure
424 * all current users are done before we free
425 * the control data.
426 */
427 synchronize_sched();
428 control_ops_free(ops);
429 }
Steven Rostedtb8489142011-05-04 09:27:52 -0400430 } else
431 ret = remove_ftrace_ops(&ftrace_ops_list, ops);
432
Steven Rostedt2b499382011-05-03 22:49:52 -0400433 if (ret < 0)
434 return ret;
Steven Rostedtb8489142011-05-04 09:27:52 -0400435
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400436 if (ftrace_enabled)
437 update_ftrace_function();
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200438
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400439 /*
440 * Dynamic ops may be freed, we must make sure that all
441 * callers are done before leaving this function.
442 */
443 if (ops->flags & FTRACE_OPS_FL_DYNAMIC)
444 synchronize_sched();
445
Steven Rostedte6ea44e2009-02-14 01:42:44 -0500446 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +0200447}
448
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500449static void ftrace_update_pid_func(void)
450{
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400451 /* Only do something if we are tracing something */
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500452 if (ftrace_trace_function == ftrace_stub)
KOSAKI Motohiro10dd3eb2009-03-06 15:29:04 +0900453 return;
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500454
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400455 update_ftrace_function();
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500456}
457
Steven Rostedt493762f2009-03-23 17:12:36 -0400458#ifdef CONFIG_FUNCTION_PROFILER
459struct ftrace_profile {
460 struct hlist_node node;
461 unsigned long ip;
462 unsigned long counter;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400463#ifdef CONFIG_FUNCTION_GRAPH_TRACER
464 unsigned long long time;
Chase Douglase330b3b2010-04-26 14:02:05 -0400465 unsigned long long time_squared;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400466#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400467};
468
469struct ftrace_profile_page {
470 struct ftrace_profile_page *next;
471 unsigned long index;
472 struct ftrace_profile records[];
473};
474
Steven Rostedtcafb1682009-03-24 20:50:39 -0400475struct ftrace_profile_stat {
476 atomic_t disabled;
477 struct hlist_head *hash;
478 struct ftrace_profile_page *pages;
479 struct ftrace_profile_page *start;
480 struct tracer_stat stat;
481};
482
Steven Rostedt493762f2009-03-23 17:12:36 -0400483#define PROFILE_RECORDS_SIZE \
484 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
485
486#define PROFILES_PER_PAGE \
487 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
488
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400489static int ftrace_profile_bits __read_mostly;
490static int ftrace_profile_enabled __read_mostly;
491
492/* ftrace_profile_lock - synchronize the enable and disable of the profiler */
Steven Rostedt493762f2009-03-23 17:12:36 -0400493static DEFINE_MUTEX(ftrace_profile_lock);
494
Steven Rostedtcafb1682009-03-24 20:50:39 -0400495static DEFINE_PER_CPU(struct ftrace_profile_stat, ftrace_profile_stats);
Steven Rostedt493762f2009-03-23 17:12:36 -0400496
497#define FTRACE_PROFILE_HASH_SIZE 1024 /* must be power of 2 */
498
Steven Rostedt493762f2009-03-23 17:12:36 -0400499static void *
500function_stat_next(void *v, int idx)
501{
502 struct ftrace_profile *rec = v;
503 struct ftrace_profile_page *pg;
504
505 pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK);
506
507 again:
Li Zefan0296e422009-06-26 11:15:37 +0800508 if (idx != 0)
509 rec++;
510
Steven Rostedt493762f2009-03-23 17:12:36 -0400511 if ((void *)rec >= (void *)&pg->records[pg->index]) {
512 pg = pg->next;
513 if (!pg)
514 return NULL;
515 rec = &pg->records[0];
516 if (!rec->counter)
517 goto again;
518 }
519
520 return rec;
521}
522
523static void *function_stat_start(struct tracer_stat *trace)
524{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400525 struct ftrace_profile_stat *stat =
526 container_of(trace, struct ftrace_profile_stat, stat);
527
528 if (!stat || !stat->start)
529 return NULL;
530
531 return function_stat_next(&stat->start->records[0], 0);
Steven Rostedt493762f2009-03-23 17:12:36 -0400532}
533
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400534#ifdef CONFIG_FUNCTION_GRAPH_TRACER
535/* function graph compares on total time */
536static int function_stat_cmp(void *p1, void *p2)
537{
538 struct ftrace_profile *a = p1;
539 struct ftrace_profile *b = p2;
540
541 if (a->time < b->time)
542 return -1;
543 if (a->time > b->time)
544 return 1;
545 else
546 return 0;
547}
548#else
549/* not function graph compares against hits */
Steven Rostedt493762f2009-03-23 17:12:36 -0400550static int function_stat_cmp(void *p1, void *p2)
551{
552 struct ftrace_profile *a = p1;
553 struct ftrace_profile *b = p2;
554
555 if (a->counter < b->counter)
556 return -1;
557 if (a->counter > b->counter)
558 return 1;
559 else
560 return 0;
561}
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400562#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400563
564static int function_stat_headers(struct seq_file *m)
565{
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400566#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Steven Rostedt34886c82009-03-25 21:00:47 -0400567 seq_printf(m, " Function "
Chase Douglase330b3b2010-04-26 14:02:05 -0400568 "Hit Time Avg s^2\n"
Steven Rostedt34886c82009-03-25 21:00:47 -0400569 " -------- "
Chase Douglase330b3b2010-04-26 14:02:05 -0400570 "--- ---- --- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400571#else
Steven Rostedt493762f2009-03-23 17:12:36 -0400572 seq_printf(m, " Function Hit\n"
573 " -------- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400574#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400575 return 0;
576}
577
578static int function_stat_show(struct seq_file *m, void *v)
579{
580 struct ftrace_profile *rec = v;
581 char str[KSYM_SYMBOL_LEN];
Li Zefan3aaba202010-08-23 16:50:12 +0800582 int ret = 0;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400583#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Steven Rostedt34886c82009-03-25 21:00:47 -0400584 static struct trace_seq s;
585 unsigned long long avg;
Chase Douglase330b3b2010-04-26 14:02:05 -0400586 unsigned long long stddev;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400587#endif
Li Zefan3aaba202010-08-23 16:50:12 +0800588 mutex_lock(&ftrace_profile_lock);
589
590 /* we raced with function_profile_reset() */
591 if (unlikely(rec->counter == 0)) {
592 ret = -EBUSY;
593 goto out;
594 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400595
596 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400597 seq_printf(m, " %-30.30s %10lu", str, rec->counter);
Steven Rostedt493762f2009-03-23 17:12:36 -0400598
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400599#ifdef CONFIG_FUNCTION_GRAPH_TRACER
600 seq_printf(m, " ");
Steven Rostedt34886c82009-03-25 21:00:47 -0400601 avg = rec->time;
602 do_div(avg, rec->counter);
603
Chase Douglase330b3b2010-04-26 14:02:05 -0400604 /* Sample standard deviation (s^2) */
605 if (rec->counter <= 1)
606 stddev = 0;
607 else {
608 stddev = rec->time_squared - rec->counter * avg * avg;
609 /*
610 * Divide only 1000 for ns^2 -> us^2 conversion.
611 * trace_print_graph_duration will divide 1000 again.
612 */
613 do_div(stddev, (rec->counter - 1) * 1000);
614 }
615
Steven Rostedt34886c82009-03-25 21:00:47 -0400616 trace_seq_init(&s);
617 trace_print_graph_duration(rec->time, &s);
618 trace_seq_puts(&s, " ");
619 trace_print_graph_duration(avg, &s);
Chase Douglase330b3b2010-04-26 14:02:05 -0400620 trace_seq_puts(&s, " ");
621 trace_print_graph_duration(stddev, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400622 trace_print_seq(m, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400623#endif
624 seq_putc(m, '\n');
Li Zefan3aaba202010-08-23 16:50:12 +0800625out:
626 mutex_unlock(&ftrace_profile_lock);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400627
Li Zefan3aaba202010-08-23 16:50:12 +0800628 return ret;
Steven Rostedt493762f2009-03-23 17:12:36 -0400629}
630
Steven Rostedtcafb1682009-03-24 20:50:39 -0400631static void ftrace_profile_reset(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400632{
633 struct ftrace_profile_page *pg;
634
Steven Rostedtcafb1682009-03-24 20:50:39 -0400635 pg = stat->pages = stat->start;
Steven Rostedt493762f2009-03-23 17:12:36 -0400636
637 while (pg) {
638 memset(pg->records, 0, PROFILE_RECORDS_SIZE);
639 pg->index = 0;
640 pg = pg->next;
641 }
642
Steven Rostedtcafb1682009-03-24 20:50:39 -0400643 memset(stat->hash, 0,
Steven Rostedt493762f2009-03-23 17:12:36 -0400644 FTRACE_PROFILE_HASH_SIZE * sizeof(struct hlist_head));
645}
646
Steven Rostedtcafb1682009-03-24 20:50:39 -0400647int ftrace_profile_pages_init(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400648{
649 struct ftrace_profile_page *pg;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400650 int functions;
651 int pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400652 int i;
653
654 /* If we already allocated, do nothing */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400655 if (stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400656 return 0;
657
Steven Rostedtcafb1682009-03-24 20:50:39 -0400658 stat->pages = (void *)get_zeroed_page(GFP_KERNEL);
659 if (!stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400660 return -ENOMEM;
661
Steven Rostedt318e0a72009-03-25 20:06:34 -0400662#ifdef CONFIG_DYNAMIC_FTRACE
663 functions = ftrace_update_tot_cnt;
664#else
665 /*
666 * We do not know the number of functions that exist because
667 * dynamic tracing is what counts them. With past experience
668 * we have around 20K functions. That should be more than enough.
669 * It is highly unlikely we will execute every function in
670 * the kernel.
671 */
672 functions = 20000;
673#endif
674
Steven Rostedtcafb1682009-03-24 20:50:39 -0400675 pg = stat->start = stat->pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400676
Steven Rostedt318e0a72009-03-25 20:06:34 -0400677 pages = DIV_ROUND_UP(functions, PROFILES_PER_PAGE);
678
679 for (i = 0; i < pages; i++) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400680 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400681 if (!pg->next)
Steven Rostedt318e0a72009-03-25 20:06:34 -0400682 goto out_free;
Steven Rostedt493762f2009-03-23 17:12:36 -0400683 pg = pg->next;
684 }
685
686 return 0;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400687
688 out_free:
689 pg = stat->start;
690 while (pg) {
691 unsigned long tmp = (unsigned long)pg;
692
693 pg = pg->next;
694 free_page(tmp);
695 }
696
697 free_page((unsigned long)stat->pages);
698 stat->pages = NULL;
699 stat->start = NULL;
700
701 return -ENOMEM;
Steven Rostedt493762f2009-03-23 17:12:36 -0400702}
703
Steven Rostedtcafb1682009-03-24 20:50:39 -0400704static int ftrace_profile_init_cpu(int cpu)
Steven Rostedt493762f2009-03-23 17:12:36 -0400705{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400706 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400707 int size;
708
Steven Rostedtcafb1682009-03-24 20:50:39 -0400709 stat = &per_cpu(ftrace_profile_stats, cpu);
710
711 if (stat->hash) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400712 /* If the profile is already created, simply reset it */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400713 ftrace_profile_reset(stat);
Steven Rostedt493762f2009-03-23 17:12:36 -0400714 return 0;
715 }
716
717 /*
718 * We are profiling all functions, but usually only a few thousand
719 * functions are hit. We'll make a hash of 1024 items.
720 */
721 size = FTRACE_PROFILE_HASH_SIZE;
722
Steven Rostedtcafb1682009-03-24 20:50:39 -0400723 stat->hash = kzalloc(sizeof(struct hlist_head) * size, GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400724
Steven Rostedtcafb1682009-03-24 20:50:39 -0400725 if (!stat->hash)
Steven Rostedt493762f2009-03-23 17:12:36 -0400726 return -ENOMEM;
727
Steven Rostedtcafb1682009-03-24 20:50:39 -0400728 if (!ftrace_profile_bits) {
729 size--;
Steven Rostedt493762f2009-03-23 17:12:36 -0400730
Steven Rostedtcafb1682009-03-24 20:50:39 -0400731 for (; size; size >>= 1)
732 ftrace_profile_bits++;
733 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400734
Steven Rostedt318e0a72009-03-25 20:06:34 -0400735 /* Preallocate the function profiling pages */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400736 if (ftrace_profile_pages_init(stat) < 0) {
737 kfree(stat->hash);
738 stat->hash = NULL;
Steven Rostedt493762f2009-03-23 17:12:36 -0400739 return -ENOMEM;
740 }
741
742 return 0;
743}
744
Steven Rostedtcafb1682009-03-24 20:50:39 -0400745static int ftrace_profile_init(void)
746{
747 int cpu;
748 int ret = 0;
749
750 for_each_online_cpu(cpu) {
751 ret = ftrace_profile_init_cpu(cpu);
752 if (ret)
753 break;
754 }
755
756 return ret;
757}
758
Steven Rostedt493762f2009-03-23 17:12:36 -0400759/* interrupts must be disabled */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400760static struct ftrace_profile *
761ftrace_find_profiled_func(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400762{
763 struct ftrace_profile *rec;
764 struct hlist_head *hhd;
765 struct hlist_node *n;
766 unsigned long key;
767
768 key = hash_long(ip, ftrace_profile_bits);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400769 hhd = &stat->hash[key];
Steven Rostedt493762f2009-03-23 17:12:36 -0400770
771 if (hlist_empty(hhd))
772 return NULL;
773
774 hlist_for_each_entry_rcu(rec, n, hhd, node) {
775 if (rec->ip == ip)
776 return rec;
777 }
778
779 return NULL;
780}
781
Steven Rostedtcafb1682009-03-24 20:50:39 -0400782static void ftrace_add_profile(struct ftrace_profile_stat *stat,
783 struct ftrace_profile *rec)
Steven Rostedt493762f2009-03-23 17:12:36 -0400784{
785 unsigned long key;
786
787 key = hash_long(rec->ip, ftrace_profile_bits);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400788 hlist_add_head_rcu(&rec->node, &stat->hash[key]);
Steven Rostedt493762f2009-03-23 17:12:36 -0400789}
790
Steven Rostedt318e0a72009-03-25 20:06:34 -0400791/*
792 * The memory is already allocated, this simply finds a new record to use.
793 */
Steven Rostedt493762f2009-03-23 17:12:36 -0400794static struct ftrace_profile *
Steven Rostedt318e0a72009-03-25 20:06:34 -0400795ftrace_profile_alloc(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400796{
797 struct ftrace_profile *rec = NULL;
798
Steven Rostedt318e0a72009-03-25 20:06:34 -0400799 /* prevent recursion (from NMIs) */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400800 if (atomic_inc_return(&stat->disabled) != 1)
Steven Rostedt493762f2009-03-23 17:12:36 -0400801 goto out;
802
Steven Rostedt493762f2009-03-23 17:12:36 -0400803 /*
Steven Rostedt318e0a72009-03-25 20:06:34 -0400804 * Try to find the function again since an NMI
805 * could have added it
Steven Rostedt493762f2009-03-23 17:12:36 -0400806 */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400807 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400808 if (rec)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400809 goto out;
Steven Rostedt493762f2009-03-23 17:12:36 -0400810
Steven Rostedtcafb1682009-03-24 20:50:39 -0400811 if (stat->pages->index == PROFILES_PER_PAGE) {
812 if (!stat->pages->next)
813 goto out;
814 stat->pages = stat->pages->next;
Steven Rostedt493762f2009-03-23 17:12:36 -0400815 }
816
Steven Rostedtcafb1682009-03-24 20:50:39 -0400817 rec = &stat->pages->records[stat->pages->index++];
Steven Rostedt493762f2009-03-23 17:12:36 -0400818 rec->ip = ip;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400819 ftrace_add_profile(stat, rec);
Steven Rostedt493762f2009-03-23 17:12:36 -0400820
Steven Rostedt493762f2009-03-23 17:12:36 -0400821 out:
Steven Rostedtcafb1682009-03-24 20:50:39 -0400822 atomic_dec(&stat->disabled);
Steven Rostedt493762f2009-03-23 17:12:36 -0400823
824 return rec;
825}
826
Steven Rostedt493762f2009-03-23 17:12:36 -0400827static void
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400828function_profile_call(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400829 struct ftrace_ops *ops, struct pt_regs *regs)
Steven Rostedt493762f2009-03-23 17:12:36 -0400830{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400831 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400832 struct ftrace_profile *rec;
833 unsigned long flags;
Steven Rostedt493762f2009-03-23 17:12:36 -0400834
835 if (!ftrace_profile_enabled)
836 return;
837
Steven Rostedt493762f2009-03-23 17:12:36 -0400838 local_irq_save(flags);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400839
840 stat = &__get_cpu_var(ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400841 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400842 goto out;
843
844 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400845 if (!rec) {
Steven Rostedt318e0a72009-03-25 20:06:34 -0400846 rec = ftrace_profile_alloc(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400847 if (!rec)
848 goto out;
849 }
850
851 rec->counter++;
852 out:
853 local_irq_restore(flags);
854}
855
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400856#ifdef CONFIG_FUNCTION_GRAPH_TRACER
857static int profile_graph_entry(struct ftrace_graph_ent *trace)
858{
Steven Rostedta1e2e312011-08-09 12:50:46 -0400859 function_profile_call(trace->func, 0, NULL, NULL);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400860 return 1;
861}
862
863static void profile_graph_return(struct ftrace_graph_ret *trace)
864{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400865 struct ftrace_profile_stat *stat;
Steven Rostedta2a16d62009-03-24 23:17:58 -0400866 unsigned long long calltime;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400867 struct ftrace_profile *rec;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400868 unsigned long flags;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400869
870 local_irq_save(flags);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400871 stat = &__get_cpu_var(ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400872 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400873 goto out;
874
Steven Rostedt37e44bc2010-04-27 21:04:24 -0400875 /* If the calltime was zero'd ignore it */
876 if (!trace->calltime)
877 goto out;
878
Steven Rostedta2a16d62009-03-24 23:17:58 -0400879 calltime = trace->rettime - trace->calltime;
880
881 if (!(trace_flags & TRACE_ITER_GRAPH_TIME)) {
882 int index;
883
884 index = trace->depth;
885
886 /* Append this call time to the parent time to subtract */
887 if (index)
888 current->ret_stack[index - 1].subtime += calltime;
889
890 if (current->ret_stack[index].subtime < calltime)
891 calltime -= current->ret_stack[index].subtime;
892 else
893 calltime = 0;
894 }
895
Steven Rostedtcafb1682009-03-24 20:50:39 -0400896 rec = ftrace_find_profiled_func(stat, trace->func);
Chase Douglase330b3b2010-04-26 14:02:05 -0400897 if (rec) {
Steven Rostedta2a16d62009-03-24 23:17:58 -0400898 rec->time += calltime;
Chase Douglase330b3b2010-04-26 14:02:05 -0400899 rec->time_squared += calltime * calltime;
900 }
Steven Rostedta2a16d62009-03-24 23:17:58 -0400901
Steven Rostedtcafb1682009-03-24 20:50:39 -0400902 out:
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400903 local_irq_restore(flags);
904}
905
906static int register_ftrace_profiler(void)
907{
908 return register_ftrace_graph(&profile_graph_return,
909 &profile_graph_entry);
910}
911
912static void unregister_ftrace_profiler(void)
913{
914 unregister_ftrace_graph();
915}
916#else
Paul McQuadebd38c0e2011-05-31 20:51:55 +0100917static struct ftrace_ops ftrace_profile_ops __read_mostly = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400918 .func = function_profile_call,
Steven Rostedt47409742012-07-20 11:04:44 -0400919 .flags = FTRACE_OPS_FL_RECURSION_SAFE,
Steven Rostedt493762f2009-03-23 17:12:36 -0400920};
921
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400922static int register_ftrace_profiler(void)
923{
924 return register_ftrace_function(&ftrace_profile_ops);
925}
926
927static void unregister_ftrace_profiler(void)
928{
929 unregister_ftrace_function(&ftrace_profile_ops);
930}
931#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
932
Steven Rostedt493762f2009-03-23 17:12:36 -0400933static ssize_t
934ftrace_profile_write(struct file *filp, const char __user *ubuf,
935 size_t cnt, loff_t *ppos)
936{
937 unsigned long val;
Steven Rostedt493762f2009-03-23 17:12:36 -0400938 int ret;
939
Peter Huewe22fe9b52011-06-07 21:58:27 +0200940 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
941 if (ret)
Steven Rostedt493762f2009-03-23 17:12:36 -0400942 return ret;
943
944 val = !!val;
945
946 mutex_lock(&ftrace_profile_lock);
947 if (ftrace_profile_enabled ^ val) {
948 if (val) {
949 ret = ftrace_profile_init();
950 if (ret < 0) {
951 cnt = ret;
952 goto out;
953 }
954
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400955 ret = register_ftrace_profiler();
956 if (ret < 0) {
957 cnt = ret;
958 goto out;
959 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400960 ftrace_profile_enabled = 1;
961 } else {
962 ftrace_profile_enabled = 0;
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400963 /*
964 * unregister_ftrace_profiler calls stop_machine
965 * so this acts like an synchronize_sched.
966 */
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400967 unregister_ftrace_profiler();
Steven Rostedt493762f2009-03-23 17:12:36 -0400968 }
969 }
970 out:
971 mutex_unlock(&ftrace_profile_lock);
972
Jiri Olsacf8517c2009-10-23 19:36:16 -0400973 *ppos += cnt;
Steven Rostedt493762f2009-03-23 17:12:36 -0400974
975 return cnt;
976}
977
978static ssize_t
979ftrace_profile_read(struct file *filp, char __user *ubuf,
980 size_t cnt, loff_t *ppos)
981{
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400982 char buf[64]; /* big enough to hold a number */
Steven Rostedt493762f2009-03-23 17:12:36 -0400983 int r;
984
985 r = sprintf(buf, "%u\n", ftrace_profile_enabled);
986 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
987}
988
989static const struct file_operations ftrace_profile_fops = {
990 .open = tracing_open_generic,
991 .read = ftrace_profile_read,
992 .write = ftrace_profile_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200993 .llseek = default_llseek,
Steven Rostedt493762f2009-03-23 17:12:36 -0400994};
995
Steven Rostedtcafb1682009-03-24 20:50:39 -0400996/* used to initialize the real stat files */
997static struct tracer_stat function_stats __initdata = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400998 .name = "functions",
999 .stat_start = function_stat_start,
1000 .stat_next = function_stat_next,
1001 .stat_cmp = function_stat_cmp,
1002 .stat_headers = function_stat_headers,
1003 .stat_show = function_stat_show
Steven Rostedtcafb1682009-03-24 20:50:39 -04001004};
1005
Steven Rostedt6ab5d662009-06-04 00:55:45 -04001006static __init void ftrace_profile_debugfs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -04001007{
Steven Rostedtcafb1682009-03-24 20:50:39 -04001008 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -04001009 struct dentry *entry;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001010 char *name;
Steven Rostedt493762f2009-03-23 17:12:36 -04001011 int ret;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001012 int cpu;
Steven Rostedt493762f2009-03-23 17:12:36 -04001013
Steven Rostedtcafb1682009-03-24 20:50:39 -04001014 for_each_possible_cpu(cpu) {
1015 stat = &per_cpu(ftrace_profile_stats, cpu);
1016
1017 /* allocate enough for function name + cpu number */
1018 name = kmalloc(32, GFP_KERNEL);
1019 if (!name) {
1020 /*
1021 * The files created are permanent, if something happens
1022 * we still do not free memory.
1023 */
Steven Rostedtcafb1682009-03-24 20:50:39 -04001024 WARN(1,
1025 "Could not allocate stat file for cpu %d\n",
1026 cpu);
1027 return;
1028 }
1029 stat->stat = function_stats;
1030 snprintf(name, 32, "function%d", cpu);
1031 stat->stat.name = name;
1032 ret = register_stat_tracer(&stat->stat);
1033 if (ret) {
1034 WARN(1,
1035 "Could not register function stat for cpu %d\n",
1036 cpu);
1037 kfree(name);
1038 return;
1039 }
Steven Rostedt493762f2009-03-23 17:12:36 -04001040 }
1041
1042 entry = debugfs_create_file("function_profile_enabled", 0644,
1043 d_tracer, NULL, &ftrace_profile_fops);
1044 if (!entry)
1045 pr_warning("Could not create debugfs "
1046 "'function_profile_enabled' entry\n");
1047}
1048
1049#else /* CONFIG_FUNCTION_PROFILER */
Steven Rostedt6ab5d662009-06-04 00:55:45 -04001050static __init void ftrace_profile_debugfs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -04001051{
1052}
1053#endif /* CONFIG_FUNCTION_PROFILER */
1054
Ingo Molnar73d3fd92009-02-17 11:48:18 +01001055static struct pid * const ftrace_swapper_pid = &init_struct_pid;
1056
Steven Rostedt3d083392008-05-12 21:20:42 +02001057#ifdef CONFIG_DYNAMIC_FTRACE
Ingo Molnar73d3fd92009-02-17 11:48:18 +01001058
Steven Rostedt99ecdc42008-08-15 21:40:05 -04001059#ifndef CONFIG_FTRACE_MCOUNT_RECORD
Steven Rostedtcb7be3b2008-10-23 09:33:05 -04001060# error Dynamic ftrace depends on MCOUNT_RECORD
Steven Rostedt99ecdc42008-08-15 21:40:05 -04001061#endif
1062
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001063static struct hlist_head ftrace_func_hash[FTRACE_FUNC_HASHSIZE] __read_mostly;
1064
Steven Rostedtb6887d72009-02-17 12:32:04 -05001065struct ftrace_func_probe {
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001066 struct hlist_node node;
Steven Rostedtb6887d72009-02-17 12:32:04 -05001067 struct ftrace_probe_ops *ops;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001068 unsigned long flags;
1069 unsigned long ip;
1070 void *data;
1071 struct rcu_head rcu;
1072};
1073
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001074struct ftrace_func_entry {
1075 struct hlist_node hlist;
1076 unsigned long ip;
1077};
1078
1079struct ftrace_hash {
1080 unsigned long size_bits;
1081 struct hlist_head *buckets;
1082 unsigned long count;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001083 struct rcu_head rcu;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001084};
1085
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001086/*
1087 * We make these constant because no one should touch them,
1088 * but they are used as the default "empty hash", to avoid allocating
1089 * it all the time. These are in a read only section such that if
1090 * anyone does try to modify it, it will cause an exception.
1091 */
1092static const struct hlist_head empty_buckets[1];
1093static const struct ftrace_hash empty_hash = {
1094 .buckets = (struct hlist_head *)empty_buckets,
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001095};
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001096#define EMPTY_HASH ((struct ftrace_hash *)&empty_hash)
Steven Rostedt5072c592008-05-12 21:20:43 +02001097
Steven Rostedt2b499382011-05-03 22:49:52 -04001098static struct ftrace_ops global_ops = {
Steven Rostedtf45948e2011-05-02 12:29:25 -04001099 .func = ftrace_stub,
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001100 .notrace_hash = EMPTY_HASH,
1101 .filter_hash = EMPTY_HASH,
Steven Rostedt47409742012-07-20 11:04:44 -04001102 .flags = FTRACE_OPS_FL_RECURSION_SAFE,
Steven Rostedtf45948e2011-05-02 12:29:25 -04001103};
1104
Steven Rostedt41c52c02008-05-22 11:46:33 -04001105static DEFINE_MUTEX(ftrace_regex_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02001106
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001107struct ftrace_page {
1108 struct ftrace_page *next;
Steven Rostedta7900872011-12-16 16:23:44 -05001109 struct dyn_ftrace *records;
Steven Rostedt431aa3f2009-01-06 12:43:01 -05001110 int index;
Steven Rostedta7900872011-12-16 16:23:44 -05001111 int size;
David Milleraa5e5ce2008-05-13 22:06:56 -07001112};
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001113
Steven Rostedt85ae32a2011-12-16 16:30:31 -05001114static struct ftrace_page *ftrace_new_pgs;
1115
Steven Rostedta7900872011-12-16 16:23:44 -05001116#define ENTRY_SIZE sizeof(struct dyn_ftrace)
1117#define ENTRIES_PER_PAGE (PAGE_SIZE / ENTRY_SIZE)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001118
1119/* estimate from running different kernels */
1120#define NR_TO_INIT 10000
1121
1122static struct ftrace_page *ftrace_pages_start;
1123static struct ftrace_page *ftrace_pages;
1124
Steven Rostedt06a51d92011-12-19 19:07:36 -05001125static bool ftrace_hash_empty(struct ftrace_hash *hash)
1126{
1127 return !hash || !hash->count;
1128}
1129
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001130static struct ftrace_func_entry *
1131ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
1132{
1133 unsigned long key;
1134 struct ftrace_func_entry *entry;
1135 struct hlist_head *hhd;
1136 struct hlist_node *n;
1137
Steven Rostedt06a51d92011-12-19 19:07:36 -05001138 if (ftrace_hash_empty(hash))
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001139 return NULL;
1140
1141 if (hash->size_bits > 0)
1142 key = hash_long(ip, hash->size_bits);
1143 else
1144 key = 0;
1145
1146 hhd = &hash->buckets[key];
1147
1148 hlist_for_each_entry_rcu(entry, n, hhd, hlist) {
1149 if (entry->ip == ip)
1150 return entry;
1151 }
1152 return NULL;
1153}
1154
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001155static void __add_hash_entry(struct ftrace_hash *hash,
1156 struct ftrace_func_entry *entry)
1157{
1158 struct hlist_head *hhd;
1159 unsigned long key;
1160
1161 if (hash->size_bits)
1162 key = hash_long(entry->ip, hash->size_bits);
1163 else
1164 key = 0;
1165
1166 hhd = &hash->buckets[key];
1167 hlist_add_head(&entry->hlist, hhd);
1168 hash->count++;
1169}
1170
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001171static int add_hash_entry(struct ftrace_hash *hash, unsigned long ip)
1172{
1173 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001174
1175 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
1176 if (!entry)
1177 return -ENOMEM;
1178
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001179 entry->ip = ip;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001180 __add_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001181
1182 return 0;
1183}
1184
1185static void
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001186free_hash_entry(struct ftrace_hash *hash,
1187 struct ftrace_func_entry *entry)
1188{
1189 hlist_del(&entry->hlist);
1190 kfree(entry);
1191 hash->count--;
1192}
1193
1194static void
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001195remove_hash_entry(struct ftrace_hash *hash,
1196 struct ftrace_func_entry *entry)
1197{
1198 hlist_del(&entry->hlist);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001199 hash->count--;
1200}
1201
1202static void ftrace_hash_clear(struct ftrace_hash *hash)
1203{
1204 struct hlist_head *hhd;
1205 struct hlist_node *tp, *tn;
1206 struct ftrace_func_entry *entry;
1207 int size = 1 << hash->size_bits;
1208 int i;
1209
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001210 if (!hash->count)
1211 return;
1212
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001213 for (i = 0; i < size; i++) {
1214 hhd = &hash->buckets[i];
1215 hlist_for_each_entry_safe(entry, tp, tn, hhd, hlist)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001216 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001217 }
1218 FTRACE_WARN_ON(hash->count);
1219}
1220
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001221static void free_ftrace_hash(struct ftrace_hash *hash)
1222{
1223 if (!hash || hash == EMPTY_HASH)
1224 return;
1225 ftrace_hash_clear(hash);
1226 kfree(hash->buckets);
1227 kfree(hash);
1228}
1229
Steven Rostedt07fd5512011-05-05 18:03:47 -04001230static void __free_ftrace_hash_rcu(struct rcu_head *rcu)
1231{
1232 struct ftrace_hash *hash;
1233
1234 hash = container_of(rcu, struct ftrace_hash, rcu);
1235 free_ftrace_hash(hash);
1236}
1237
1238static void free_ftrace_hash_rcu(struct ftrace_hash *hash)
1239{
1240 if (!hash || hash == EMPTY_HASH)
1241 return;
1242 call_rcu_sched(&hash->rcu, __free_ftrace_hash_rcu);
1243}
1244
Jiri Olsa5500fa52012-02-15 15:51:54 +01001245void ftrace_free_filter(struct ftrace_ops *ops)
1246{
1247 free_ftrace_hash(ops->filter_hash);
1248 free_ftrace_hash(ops->notrace_hash);
1249}
1250
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001251static struct ftrace_hash *alloc_ftrace_hash(int size_bits)
1252{
1253 struct ftrace_hash *hash;
1254 int size;
1255
1256 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
1257 if (!hash)
1258 return NULL;
1259
1260 size = 1 << size_bits;
Thomas Meyer47b0edc2011-11-29 22:08:00 +01001261 hash->buckets = kcalloc(size, sizeof(*hash->buckets), GFP_KERNEL);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001262
1263 if (!hash->buckets) {
1264 kfree(hash);
1265 return NULL;
1266 }
1267
1268 hash->size_bits = size_bits;
1269
1270 return hash;
1271}
1272
1273static struct ftrace_hash *
1274alloc_and_copy_ftrace_hash(int size_bits, struct ftrace_hash *hash)
1275{
1276 struct ftrace_func_entry *entry;
1277 struct ftrace_hash *new_hash;
1278 struct hlist_node *tp;
1279 int size;
1280 int ret;
1281 int i;
1282
1283 new_hash = alloc_ftrace_hash(size_bits);
1284 if (!new_hash)
1285 return NULL;
1286
1287 /* Empty hash? */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001288 if (ftrace_hash_empty(hash))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001289 return new_hash;
1290
1291 size = 1 << hash->size_bits;
1292 for (i = 0; i < size; i++) {
1293 hlist_for_each_entry(entry, tp, &hash->buckets[i], hlist) {
1294 ret = add_hash_entry(new_hash, entry->ip);
1295 if (ret < 0)
1296 goto free_hash;
1297 }
1298 }
1299
1300 FTRACE_WARN_ON(new_hash->count != hash->count);
1301
1302 return new_hash;
1303
1304 free_hash:
1305 free_ftrace_hash(new_hash);
1306 return NULL;
1307}
1308
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001309static void
1310ftrace_hash_rec_disable(struct ftrace_ops *ops, int filter_hash);
1311static void
1312ftrace_hash_rec_enable(struct ftrace_ops *ops, int filter_hash);
1313
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001314static int
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001315ftrace_hash_move(struct ftrace_ops *ops, int enable,
1316 struct ftrace_hash **dst, struct ftrace_hash *src)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001317{
1318 struct ftrace_func_entry *entry;
1319 struct hlist_node *tp, *tn;
1320 struct hlist_head *hhd;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001321 struct ftrace_hash *old_hash;
1322 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001323 unsigned long key;
1324 int size = src->count;
1325 int bits = 0;
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001326 int ret;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001327 int i;
1328
1329 /*
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001330 * Remove the current set, update the hash and add
1331 * them back.
1332 */
1333 ftrace_hash_rec_disable(ops, enable);
1334
1335 /*
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001336 * If the new source is empty, just free dst and assign it
1337 * the empty_hash.
1338 */
1339 if (!src->count) {
Steven Rostedt07fd5512011-05-05 18:03:47 -04001340 free_ftrace_hash_rcu(*dst);
1341 rcu_assign_pointer(*dst, EMPTY_HASH);
Steven Rostedtd4d34b92011-11-04 20:32:39 -04001342 /* still need to update the function records */
1343 ret = 0;
1344 goto out;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001345 }
1346
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001347 /*
1348 * Make the hash size about 1/2 the # found
1349 */
1350 for (size /= 2; size; size >>= 1)
1351 bits++;
1352
1353 /* Don't allocate too much */
1354 if (bits > FTRACE_HASH_MAX_BITS)
1355 bits = FTRACE_HASH_MAX_BITS;
1356
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001357 ret = -ENOMEM;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001358 new_hash = alloc_ftrace_hash(bits);
1359 if (!new_hash)
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001360 goto out;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001361
1362 size = 1 << src->size_bits;
1363 for (i = 0; i < size; i++) {
1364 hhd = &src->buckets[i];
1365 hlist_for_each_entry_safe(entry, tp, tn, hhd, hlist) {
1366 if (bits > 0)
1367 key = hash_long(entry->ip, bits);
1368 else
1369 key = 0;
1370 remove_hash_entry(src, entry);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001371 __add_hash_entry(new_hash, entry);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001372 }
1373 }
1374
Steven Rostedt07fd5512011-05-05 18:03:47 -04001375 old_hash = *dst;
1376 rcu_assign_pointer(*dst, new_hash);
1377 free_ftrace_hash_rcu(old_hash);
1378
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001379 ret = 0;
1380 out:
1381 /*
1382 * Enable regardless of ret:
1383 * On success, we enable the new hash.
1384 * On failure, we re-enable the original hash.
1385 */
1386 ftrace_hash_rec_enable(ops, enable);
1387
1388 return ret;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001389}
1390
Steven Rostedt265c8312009-02-13 12:43:56 -05001391/*
Steven Rostedtb8489142011-05-04 09:27:52 -04001392 * Test the hashes for this ops to see if we want to call
1393 * the ops->func or not.
1394 *
1395 * It's a match if the ip is in the ops->filter_hash or
1396 * the filter_hash does not exist or is empty,
1397 * AND
1398 * the ip is not in the ops->notrace_hash.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04001399 *
1400 * This needs to be called with preemption disabled as
1401 * the hashes are freed with call_rcu_sched().
Steven Rostedtb8489142011-05-04 09:27:52 -04001402 */
1403static int
1404ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip)
1405{
1406 struct ftrace_hash *filter_hash;
1407 struct ftrace_hash *notrace_hash;
1408 int ret;
1409
Steven Rostedtb8489142011-05-04 09:27:52 -04001410 filter_hash = rcu_dereference_raw(ops->filter_hash);
1411 notrace_hash = rcu_dereference_raw(ops->notrace_hash);
1412
Steven Rostedt06a51d92011-12-19 19:07:36 -05001413 if ((ftrace_hash_empty(filter_hash) ||
Steven Rostedtb8489142011-05-04 09:27:52 -04001414 ftrace_lookup_ip(filter_hash, ip)) &&
Steven Rostedt06a51d92011-12-19 19:07:36 -05001415 (ftrace_hash_empty(notrace_hash) ||
Steven Rostedtb8489142011-05-04 09:27:52 -04001416 !ftrace_lookup_ip(notrace_hash, ip)))
1417 ret = 1;
1418 else
1419 ret = 0;
Steven Rostedtb8489142011-05-04 09:27:52 -04001420
1421 return ret;
1422}
1423
1424/*
Steven Rostedt265c8312009-02-13 12:43:56 -05001425 * This is a double for. Do not use 'break' to break out of the loop,
1426 * you must use a goto.
1427 */
1428#define do_for_each_ftrace_rec(pg, rec) \
1429 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
1430 int _____i; \
1431 for (_____i = 0; _____i < pg->index; _____i++) { \
1432 rec = &pg->records[_____i];
1433
1434#define while_for_each_ftrace_rec() \
1435 } \
1436 }
Abhishek Sagarecea6562008-06-21 23:47:53 +05301437
Steven Rostedt5855fea2011-12-16 19:27:42 -05001438
1439static int ftrace_cmp_recs(const void *a, const void *b)
1440{
Steven Rostedta650e022012-04-25 13:48:13 -04001441 const struct dyn_ftrace *key = a;
1442 const struct dyn_ftrace *rec = b;
Steven Rostedt5855fea2011-12-16 19:27:42 -05001443
Steven Rostedta650e022012-04-25 13:48:13 -04001444 if (key->flags < rec->ip)
Steven Rostedt5855fea2011-12-16 19:27:42 -05001445 return -1;
Steven Rostedta650e022012-04-25 13:48:13 -04001446 if (key->ip >= rec->ip + MCOUNT_INSN_SIZE)
1447 return 1;
1448 return 0;
1449}
1450
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001451static unsigned long ftrace_location_range(unsigned long start, unsigned long end)
Steven Rostedta650e022012-04-25 13:48:13 -04001452{
1453 struct ftrace_page *pg;
1454 struct dyn_ftrace *rec;
1455 struct dyn_ftrace key;
1456
1457 key.ip = start;
1458 key.flags = end; /* overload flags, as it is unsigned long */
1459
1460 for (pg = ftrace_pages_start; pg; pg = pg->next) {
1461 if (end < pg->records[0].ip ||
1462 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
1463 continue;
1464 rec = bsearch(&key, pg->records, pg->index,
1465 sizeof(struct dyn_ftrace),
1466 ftrace_cmp_recs);
1467 if (rec)
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001468 return rec->ip;
Steven Rostedta650e022012-04-25 13:48:13 -04001469 }
1470
Steven Rostedt5855fea2011-12-16 19:27:42 -05001471 return 0;
1472}
1473
Steven Rostedtc88fd862011-08-16 09:53:39 -04001474/**
1475 * ftrace_location - return true if the ip giving is a traced location
1476 * @ip: the instruction pointer to check
1477 *
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001478 * Returns rec->ip if @ip given is a pointer to a ftrace location.
Steven Rostedtc88fd862011-08-16 09:53:39 -04001479 * That is, the instruction that is either a NOP or call to
1480 * the function tracer. It checks the ftrace internal tables to
1481 * determine if the address belongs or not.
1482 */
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001483unsigned long ftrace_location(unsigned long ip)
Steven Rostedtc88fd862011-08-16 09:53:39 -04001484{
Steven Rostedta650e022012-04-25 13:48:13 -04001485 return ftrace_location_range(ip, ip);
1486}
Steven Rostedtc88fd862011-08-16 09:53:39 -04001487
Steven Rostedta650e022012-04-25 13:48:13 -04001488/**
1489 * ftrace_text_reserved - return true if range contains an ftrace location
1490 * @start: start of range to search
1491 * @end: end of range to search (inclusive). @end points to the last byte to check.
1492 *
1493 * Returns 1 if @start and @end contains a ftrace location.
1494 * That is, the instruction that is either a NOP or call to
1495 * the function tracer. It checks the ftrace internal tables to
1496 * determine if the address belongs or not.
1497 */
1498int ftrace_text_reserved(void *start, void *end)
1499{
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001500 unsigned long ret;
1501
1502 ret = ftrace_location_range((unsigned long)start,
1503 (unsigned long)end);
1504
1505 return (int)!!ret;
Steven Rostedtc88fd862011-08-16 09:53:39 -04001506}
1507
Steven Rostedted926f92011-05-03 13:25:24 -04001508static void __ftrace_hash_rec_update(struct ftrace_ops *ops,
1509 int filter_hash,
1510 bool inc)
1511{
1512 struct ftrace_hash *hash;
1513 struct ftrace_hash *other_hash;
1514 struct ftrace_page *pg;
1515 struct dyn_ftrace *rec;
1516 int count = 0;
1517 int all = 0;
1518
1519 /* Only update if the ops has been registered */
1520 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1521 return;
1522
1523 /*
1524 * In the filter_hash case:
1525 * If the count is zero, we update all records.
1526 * Otherwise we just update the items in the hash.
1527 *
1528 * In the notrace_hash case:
1529 * We enable the update in the hash.
1530 * As disabling notrace means enabling the tracing,
1531 * and enabling notrace means disabling, the inc variable
1532 * gets inversed.
1533 */
1534 if (filter_hash) {
1535 hash = ops->filter_hash;
1536 other_hash = ops->notrace_hash;
Steven Rostedt06a51d92011-12-19 19:07:36 -05001537 if (ftrace_hash_empty(hash))
Steven Rostedted926f92011-05-03 13:25:24 -04001538 all = 1;
1539 } else {
1540 inc = !inc;
1541 hash = ops->notrace_hash;
1542 other_hash = ops->filter_hash;
1543 /*
1544 * If the notrace hash has no items,
1545 * then there's nothing to do.
1546 */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001547 if (ftrace_hash_empty(hash))
Steven Rostedted926f92011-05-03 13:25:24 -04001548 return;
1549 }
1550
1551 do_for_each_ftrace_rec(pg, rec) {
1552 int in_other_hash = 0;
1553 int in_hash = 0;
1554 int match = 0;
1555
1556 if (all) {
1557 /*
1558 * Only the filter_hash affects all records.
1559 * Update if the record is not in the notrace hash.
1560 */
Steven Rostedtb8489142011-05-04 09:27:52 -04001561 if (!other_hash || !ftrace_lookup_ip(other_hash, rec->ip))
Steven Rostedted926f92011-05-03 13:25:24 -04001562 match = 1;
1563 } else {
Steven Rostedt06a51d92011-12-19 19:07:36 -05001564 in_hash = !!ftrace_lookup_ip(hash, rec->ip);
1565 in_other_hash = !!ftrace_lookup_ip(other_hash, rec->ip);
Steven Rostedted926f92011-05-03 13:25:24 -04001566
1567 /*
1568 *
1569 */
1570 if (filter_hash && in_hash && !in_other_hash)
1571 match = 1;
1572 else if (!filter_hash && in_hash &&
Steven Rostedt06a51d92011-12-19 19:07:36 -05001573 (in_other_hash || ftrace_hash_empty(other_hash)))
Steven Rostedted926f92011-05-03 13:25:24 -04001574 match = 1;
1575 }
1576 if (!match)
1577 continue;
1578
1579 if (inc) {
1580 rec->flags++;
1581 if (FTRACE_WARN_ON((rec->flags & ~FTRACE_FL_MASK) == FTRACE_REF_MAX))
1582 return;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001583 /*
1584 * If any ops wants regs saved for this function
1585 * then all ops will get saved regs.
1586 */
1587 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS)
1588 rec->flags |= FTRACE_FL_REGS;
Steven Rostedted926f92011-05-03 13:25:24 -04001589 } else {
1590 if (FTRACE_WARN_ON((rec->flags & ~FTRACE_FL_MASK) == 0))
1591 return;
1592 rec->flags--;
1593 }
1594 count++;
1595 /* Shortcut, if we handled all records, we are done. */
1596 if (!all && count == hash->count)
1597 return;
1598 } while_for_each_ftrace_rec();
1599}
1600
1601static void ftrace_hash_rec_disable(struct ftrace_ops *ops,
1602 int filter_hash)
1603{
1604 __ftrace_hash_rec_update(ops, filter_hash, 0);
1605}
1606
1607static void ftrace_hash_rec_enable(struct ftrace_ops *ops,
1608 int filter_hash)
1609{
1610 __ftrace_hash_rec_update(ops, filter_hash, 1);
1611}
1612
Steven Rostedt05736a42008-09-22 14:55:47 -07001613static void print_ip_ins(const char *fmt, unsigned char *p)
1614{
1615 int i;
1616
1617 printk(KERN_CONT "%s", fmt);
1618
1619 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
1620 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
1621}
1622
Steven Rostedtc88fd862011-08-16 09:53:39 -04001623/**
1624 * ftrace_bug - report and shutdown function tracer
1625 * @failed: The failed type (EFAULT, EINVAL, EPERM)
1626 * @ip: The address that failed
1627 *
1628 * The arch code that enables or disables the function tracing
1629 * can call ftrace_bug() when it has detected a problem in
1630 * modifying the code. @failed should be one of either:
1631 * EFAULT - if the problem happens on reading the @ip address
1632 * EINVAL - if what is read at @ip is not what was expected
1633 * EPERM - if the problem happens on writting to the @ip address
1634 */
1635void ftrace_bug(int failed, unsigned long ip)
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001636{
1637 switch (failed) {
1638 case -EFAULT:
1639 FTRACE_WARN_ON_ONCE(1);
1640 pr_info("ftrace faulted on modifying ");
1641 print_ip_sym(ip);
1642 break;
1643 case -EINVAL:
1644 FTRACE_WARN_ON_ONCE(1);
1645 pr_info("ftrace failed to modify ");
1646 print_ip_sym(ip);
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001647 print_ip_ins(" actual: ", (unsigned char *)ip);
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001648 printk(KERN_CONT "\n");
1649 break;
1650 case -EPERM:
1651 FTRACE_WARN_ON_ONCE(1);
1652 pr_info("ftrace faulted on writing ");
1653 print_ip_sym(ip);
1654 break;
1655 default:
1656 FTRACE_WARN_ON_ONCE(1);
1657 pr_info("ftrace faulted on unknown error ");
1658 print_ip_sym(ip);
1659 }
1660}
1661
Steven Rostedtc88fd862011-08-16 09:53:39 -04001662static int ftrace_check_record(struct dyn_ftrace *rec, int enable, int update)
Steven Rostedt5072c592008-05-12 21:20:43 +02001663{
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001664 unsigned long flag = 0UL;
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01001665
Steven Rostedt982c3502008-11-15 16:31:41 -05001666 /*
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001667 * If we are updating calls:
Steven Rostedt982c3502008-11-15 16:31:41 -05001668 *
Steven Rostedted926f92011-05-03 13:25:24 -04001669 * If the record has a ref count, then we need to enable it
1670 * because someone is using it.
Steven Rostedt982c3502008-11-15 16:31:41 -05001671 *
Steven Rostedted926f92011-05-03 13:25:24 -04001672 * Otherwise we make sure its disabled.
1673 *
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01001674 * If we are disabling calls, then disable all records that
Steven Rostedted926f92011-05-03 13:25:24 -04001675 * are enabled.
Steven Rostedt982c3502008-11-15 16:31:41 -05001676 */
Steven Rostedtc88fd862011-08-16 09:53:39 -04001677 if (enable && (rec->flags & ~FTRACE_FL_MASK))
Steven Rostedted926f92011-05-03 13:25:24 -04001678 flag = FTRACE_FL_ENABLED;
Steven Rostedt5072c592008-05-12 21:20:43 +02001679
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001680 /*
1681 * If enabling and the REGS flag does not match the REGS_EN, then
1682 * do not ignore this record. Set flags to fail the compare against
1683 * ENABLED.
1684 */
1685 if (flag &&
1686 (!(rec->flags & FTRACE_FL_REGS) != !(rec->flags & FTRACE_FL_REGS_EN)))
1687 flag |= FTRACE_FL_REGS;
1688
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001689 /* If the state of this record hasn't changed, then do nothing */
1690 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
Steven Rostedtc88fd862011-08-16 09:53:39 -04001691 return FTRACE_UPDATE_IGNORE;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001692
1693 if (flag) {
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001694 /* Save off if rec is being enabled (for return value) */
1695 flag ^= rec->flags & FTRACE_FL_ENABLED;
1696
1697 if (update) {
Steven Rostedtc88fd862011-08-16 09:53:39 -04001698 rec->flags |= FTRACE_FL_ENABLED;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001699 if (flag & FTRACE_FL_REGS) {
1700 if (rec->flags & FTRACE_FL_REGS)
1701 rec->flags |= FTRACE_FL_REGS_EN;
1702 else
1703 rec->flags &= ~FTRACE_FL_REGS_EN;
1704 }
1705 }
1706
1707 /*
1708 * If this record is being updated from a nop, then
1709 * return UPDATE_MAKE_CALL.
1710 * Otherwise, if the EN flag is set, then return
1711 * UPDATE_MODIFY_CALL_REGS to tell the caller to convert
1712 * from the non-save regs, to a save regs function.
1713 * Otherwise,
1714 * return UPDATE_MODIFY_CALL to tell the caller to convert
1715 * from the save regs, to a non-save regs function.
1716 */
1717 if (flag & FTRACE_FL_ENABLED)
1718 return FTRACE_UPDATE_MAKE_CALL;
1719 else if (rec->flags & FTRACE_FL_REGS_EN)
1720 return FTRACE_UPDATE_MODIFY_CALL_REGS;
1721 else
1722 return FTRACE_UPDATE_MODIFY_CALL;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08001723 }
1724
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001725 if (update) {
1726 /* If there's no more users, clear all flags */
1727 if (!(rec->flags & ~FTRACE_FL_MASK))
1728 rec->flags = 0;
1729 else
1730 /* Just disable the record (keep REGS state) */
1731 rec->flags &= ~FTRACE_FL_ENABLED;
1732 }
Steven Rostedtc88fd862011-08-16 09:53:39 -04001733
1734 return FTRACE_UPDATE_MAKE_NOP;
1735}
1736
1737/**
1738 * ftrace_update_record, set a record that now is tracing or not
1739 * @rec: the record to update
1740 * @enable: set to 1 if the record is tracing, zero to force disable
1741 *
1742 * The records that represent all functions that can be traced need
1743 * to be updated when tracing has been enabled.
1744 */
1745int ftrace_update_record(struct dyn_ftrace *rec, int enable)
1746{
1747 return ftrace_check_record(rec, enable, 1);
1748}
1749
1750/**
1751 * ftrace_test_record, check if the record has been enabled or not
1752 * @rec: the record to test
1753 * @enable: set to 1 to check if enabled, 0 if it is disabled
1754 *
1755 * The arch code may need to test if a record is already set to
1756 * tracing to determine how to modify the function code that it
1757 * represents.
1758 */
1759int ftrace_test_record(struct dyn_ftrace *rec, int enable)
1760{
1761 return ftrace_check_record(rec, enable, 0);
1762}
1763
1764static int
1765__ftrace_replace_code(struct dyn_ftrace *rec, int enable)
1766{
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001767 unsigned long ftrace_old_addr;
Steven Rostedtc88fd862011-08-16 09:53:39 -04001768 unsigned long ftrace_addr;
1769 int ret;
1770
Steven Rostedtc88fd862011-08-16 09:53:39 -04001771 ret = ftrace_update_record(rec, enable);
1772
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001773 if (rec->flags & FTRACE_FL_REGS)
1774 ftrace_addr = (unsigned long)FTRACE_REGS_ADDR;
1775 else
1776 ftrace_addr = (unsigned long)FTRACE_ADDR;
1777
Steven Rostedtc88fd862011-08-16 09:53:39 -04001778 switch (ret) {
1779 case FTRACE_UPDATE_IGNORE:
1780 return 0;
1781
1782 case FTRACE_UPDATE_MAKE_CALL:
1783 return ftrace_make_call(rec, ftrace_addr);
1784
1785 case FTRACE_UPDATE_MAKE_NOP:
1786 return ftrace_make_nop(NULL, rec, ftrace_addr);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001787
1788 case FTRACE_UPDATE_MODIFY_CALL_REGS:
1789 case FTRACE_UPDATE_MODIFY_CALL:
1790 if (rec->flags & FTRACE_FL_REGS)
1791 ftrace_old_addr = (unsigned long)FTRACE_ADDR;
1792 else
1793 ftrace_old_addr = (unsigned long)FTRACE_REGS_ADDR;
1794
1795 return ftrace_modify_call(rec, ftrace_old_addr, ftrace_addr);
Steven Rostedtc88fd862011-08-16 09:53:39 -04001796 }
1797
1798 return -1; /* unknow ftrace bug */
Steven Rostedt5072c592008-05-12 21:20:43 +02001799}
1800
Steven Rostedte4f5d542012-04-27 09:13:18 -04001801void __weak ftrace_replace_code(int enable)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001802{
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001803 struct dyn_ftrace *rec;
1804 struct ftrace_page *pg;
Steven Rostedt6a24a242009-02-17 11:20:26 -05001805 int failed;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001806
Steven Rostedt45a4a232011-04-21 23:16:46 -04001807 if (unlikely(ftrace_disabled))
1808 return;
1809
Steven Rostedt265c8312009-02-13 12:43:56 -05001810 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedte4f5d542012-04-27 09:13:18 -04001811 failed = __ftrace_replace_code(rec, enable);
Zhaoleifa9d13c2009-03-13 17:16:34 +08001812 if (failed) {
Steven Rostedt3279ba32009-10-07 16:57:56 -04001813 ftrace_bug(failed, rec->ip);
1814 /* Stop processing */
1815 return;
Steven Rostedt265c8312009-02-13 12:43:56 -05001816 }
1817 } while_for_each_ftrace_rec();
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001818}
1819
Steven Rostedtc88fd862011-08-16 09:53:39 -04001820struct ftrace_rec_iter {
1821 struct ftrace_page *pg;
1822 int index;
1823};
1824
1825/**
1826 * ftrace_rec_iter_start, start up iterating over traced functions
1827 *
1828 * Returns an iterator handle that is used to iterate over all
1829 * the records that represent address locations where functions
1830 * are traced.
1831 *
1832 * May return NULL if no records are available.
1833 */
1834struct ftrace_rec_iter *ftrace_rec_iter_start(void)
1835{
1836 /*
1837 * We only use a single iterator.
1838 * Protected by the ftrace_lock mutex.
1839 */
1840 static struct ftrace_rec_iter ftrace_rec_iter;
1841 struct ftrace_rec_iter *iter = &ftrace_rec_iter;
1842
1843 iter->pg = ftrace_pages_start;
1844 iter->index = 0;
1845
1846 /* Could have empty pages */
1847 while (iter->pg && !iter->pg->index)
1848 iter->pg = iter->pg->next;
1849
1850 if (!iter->pg)
1851 return NULL;
1852
1853 return iter;
1854}
1855
1856/**
1857 * ftrace_rec_iter_next, get the next record to process.
1858 * @iter: The handle to the iterator.
1859 *
1860 * Returns the next iterator after the given iterator @iter.
1861 */
1862struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter)
1863{
1864 iter->index++;
1865
1866 if (iter->index >= iter->pg->index) {
1867 iter->pg = iter->pg->next;
1868 iter->index = 0;
1869
1870 /* Could have empty pages */
1871 while (iter->pg && !iter->pg->index)
1872 iter->pg = iter->pg->next;
1873 }
1874
1875 if (!iter->pg)
1876 return NULL;
1877
1878 return iter;
1879}
1880
1881/**
1882 * ftrace_rec_iter_record, get the record at the iterator location
1883 * @iter: The current iterator location
1884 *
1885 * Returns the record that the current @iter is at.
1886 */
1887struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter)
1888{
1889 return &iter->pg->records[iter->index];
1890}
1891
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05301892static int
Steven Rostedt31e88902008-11-14 16:21:19 -08001893ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001894{
1895 unsigned long ip;
Steven Rostedt593eb8a2008-10-23 09:32:59 -04001896 int ret;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001897
1898 ip = rec->ip;
1899
Steven Rostedt45a4a232011-04-21 23:16:46 -04001900 if (unlikely(ftrace_disabled))
1901 return 0;
1902
Shaohua Li25aac9d2009-01-09 11:29:40 +08001903 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
Steven Rostedt593eb8a2008-10-23 09:32:59 -04001904 if (ret) {
Steven Rostedt31e88902008-11-14 16:21:19 -08001905 ftrace_bug(ret, ip);
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05301906 return 0;
Steven Rostedt37ad5082008-05-12 21:20:48 +02001907 }
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05301908 return 1;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001909}
1910
Steven Rostedt000ab692009-02-17 13:35:06 -05001911/*
1912 * archs can override this function if they must do something
1913 * before the modifying code is performed.
1914 */
1915int __weak ftrace_arch_code_modify_prepare(void)
1916{
1917 return 0;
1918}
1919
1920/*
1921 * archs can override this function if they must do something
1922 * after the modifying code is performed.
1923 */
1924int __weak ftrace_arch_code_modify_post_process(void)
1925{
1926 return 0;
1927}
1928
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04001929void ftrace_modify_all_code(int command)
1930{
1931 if (command & FTRACE_UPDATE_CALLS)
1932 ftrace_replace_code(1);
1933 else if (command & FTRACE_DISABLE_CALLS)
1934 ftrace_replace_code(0);
1935
1936 if (command & FTRACE_UPDATE_TRACE_FUNC)
1937 ftrace_update_ftrace_func(ftrace_trace_function);
1938
1939 if (command & FTRACE_START_FUNC_RET)
1940 ftrace_enable_ftrace_graph_caller();
1941 else if (command & FTRACE_STOP_FUNC_RET)
1942 ftrace_disable_ftrace_graph_caller();
1943}
1944
Ingo Molnare309b412008-05-12 21:20:51 +02001945static int __ftrace_modify_code(void *data)
Steven Rostedt3d083392008-05-12 21:20:42 +02001946{
Steven Rostedtd61f82d2008-05-12 21:20:43 +02001947 int *command = data;
1948
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04001949 ftrace_modify_all_code(*command);
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05001950
Steven Rostedtc88fd862011-08-16 09:53:39 -04001951 return 0;
1952}
1953
1954/**
1955 * ftrace_run_stop_machine, go back to the stop machine method
1956 * @command: The command to tell ftrace what to do
1957 *
1958 * If an arch needs to fall back to the stop machine method, the
1959 * it can call this function.
1960 */
1961void ftrace_run_stop_machine(int command)
1962{
1963 stop_machine(__ftrace_modify_code, &command, NULL);
1964}
1965
1966/**
1967 * arch_ftrace_update_code, modify the code to trace or not trace
1968 * @command: The command that needs to be done
1969 *
1970 * Archs can override this function if it does not need to
1971 * run stop_machine() to modify code.
1972 */
1973void __weak arch_ftrace_update_code(int command)
1974{
1975 ftrace_run_stop_machine(command);
1976}
1977
1978static void ftrace_run_update_code(int command)
1979{
1980 int ret;
1981
1982 ret = ftrace_arch_code_modify_prepare();
1983 FTRACE_WARN_ON(ret);
1984 if (ret)
1985 return;
1986 /*
1987 * Do not call function tracer while we update the code.
1988 * We are in stop machine.
1989 */
1990 function_trace_stop++;
1991
1992 /*
1993 * By default we use stop_machine() to modify the code.
1994 * But archs can do what ever they want as long as it
1995 * is safe. The stop_machine() is the safest, but also
1996 * produces the most overhead.
1997 */
1998 arch_ftrace_update_code(command);
1999
Steven Rostedt6331c282011-07-13 15:11:02 -04002000 function_trace_stop--;
2001
Steven Rostedt000ab692009-02-17 13:35:06 -05002002 ret = ftrace_arch_code_modify_post_process();
2003 FTRACE_WARN_ON(ret);
Steven Rostedt3d083392008-05-12 21:20:42 +02002004}
2005
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002006static ftrace_func_t saved_ftrace_func;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002007static int ftrace_start_up;
Steven Rostedtb8489142011-05-04 09:27:52 -04002008static int global_start_up;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002009
2010static void ftrace_startup_enable(int command)
2011{
2012 if (saved_ftrace_func != ftrace_trace_function) {
2013 saved_ftrace_func = ftrace_trace_function;
2014 command |= FTRACE_UPDATE_TRACE_FUNC;
2015 }
2016
2017 if (!command || !ftrace_enabled)
2018 return;
2019
2020 ftrace_run_update_code(command);
2021}
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002022
Steven Rostedta1cd6172011-05-23 15:24:25 -04002023static int ftrace_startup(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02002024{
Steven Rostedtb8489142011-05-04 09:27:52 -04002025 bool hash_enable = true;
2026
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002027 if (unlikely(ftrace_disabled))
Steven Rostedta1cd6172011-05-23 15:24:25 -04002028 return -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002029
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002030 ftrace_start_up++;
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002031 command |= FTRACE_UPDATE_CALLS;
Steven Rostedt3d083392008-05-12 21:20:42 +02002032
Steven Rostedtb8489142011-05-04 09:27:52 -04002033 /* ops marked global share the filter hashes */
2034 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
2035 ops = &global_ops;
2036 /* Don't update hash if global is already set */
2037 if (global_start_up)
2038 hash_enable = false;
2039 global_start_up++;
2040 }
2041
Steven Rostedted926f92011-05-03 13:25:24 -04002042 ops->flags |= FTRACE_OPS_FL_ENABLED;
Steven Rostedtb8489142011-05-04 09:27:52 -04002043 if (hash_enable)
Steven Rostedted926f92011-05-03 13:25:24 -04002044 ftrace_hash_rec_enable(ops, 1);
2045
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002046 ftrace_startup_enable(command);
Steven Rostedta1cd6172011-05-23 15:24:25 -04002047
2048 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02002049}
2050
Steven Rostedtbd69c302011-05-03 21:55:54 -04002051static void ftrace_shutdown(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02002052{
Steven Rostedtb8489142011-05-04 09:27:52 -04002053 bool hash_disable = true;
2054
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002055 if (unlikely(ftrace_disabled))
2056 return;
2057
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002058 ftrace_start_up--;
Frederic Weisbecker9ea1a152009-06-20 06:52:21 +02002059 /*
2060 * Just warn in case of unbalance, no need to kill ftrace, it's not
2061 * critical but the ftrace_call callers may be never nopped again after
2062 * further ftrace uses.
2063 */
2064 WARN_ON_ONCE(ftrace_start_up < 0);
2065
Steven Rostedtb8489142011-05-04 09:27:52 -04002066 if (ops->flags & FTRACE_OPS_FL_GLOBAL) {
2067 ops = &global_ops;
2068 global_start_up--;
2069 WARN_ON_ONCE(global_start_up < 0);
2070 /* Don't update hash if global still has users */
2071 if (global_start_up) {
2072 WARN_ON_ONCE(!ftrace_start_up);
2073 hash_disable = false;
2074 }
2075 }
2076
2077 if (hash_disable)
Steven Rostedted926f92011-05-03 13:25:24 -04002078 ftrace_hash_rec_disable(ops, 1);
2079
Steven Rostedtb8489142011-05-04 09:27:52 -04002080 if (ops != &global_ops || !global_start_up)
Steven Rostedted926f92011-05-03 13:25:24 -04002081 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
Steven Rostedtb8489142011-05-04 09:27:52 -04002082
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002083 command |= FTRACE_UPDATE_CALLS;
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002084
2085 if (saved_ftrace_func != ftrace_trace_function) {
2086 saved_ftrace_func = ftrace_trace_function;
2087 command |= FTRACE_UPDATE_TRACE_FUNC;
2088 }
2089
2090 if (!command || !ftrace_enabled)
Steven Rostedte6ea44e2009-02-14 01:42:44 -05002091 return;
Steven Rostedt3d083392008-05-12 21:20:42 +02002092
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002093 ftrace_run_update_code(command);
Steven Rostedt3d083392008-05-12 21:20:42 +02002094}
2095
Ingo Molnare309b412008-05-12 21:20:51 +02002096static void ftrace_startup_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002097{
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002098 if (unlikely(ftrace_disabled))
2099 return;
2100
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002101 /* Force update next time */
2102 saved_ftrace_func = NULL;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002103 /* ftrace_start_up is true if we want ftrace running */
2104 if (ftrace_start_up)
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002105 ftrace_run_update_code(FTRACE_UPDATE_CALLS);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002106}
2107
Ingo Molnare309b412008-05-12 21:20:51 +02002108static void ftrace_shutdown_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002109{
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002110 if (unlikely(ftrace_disabled))
2111 return;
2112
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002113 /* ftrace_start_up is true if ftrace is running */
2114 if (ftrace_start_up)
Steven Rostedt79e406d2010-09-14 22:19:46 -04002115 ftrace_run_update_code(FTRACE_DISABLE_CALLS);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002116}
2117
Steven Rostedt3d083392008-05-12 21:20:42 +02002118static cycle_t ftrace_update_time;
2119static unsigned long ftrace_update_cnt;
2120unsigned long ftrace_update_tot_cnt;
2121
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002122static int ops_traces_mod(struct ftrace_ops *ops)
2123{
2124 struct ftrace_hash *hash;
2125
2126 hash = ops->filter_hash;
Steven Rostedt06a51d92011-12-19 19:07:36 -05002127 return ftrace_hash_empty(hash);
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002128}
2129
Steven Rostedt31e88902008-11-14 16:21:19 -08002130static int ftrace_update_code(struct module *mod)
Steven Rostedt3d083392008-05-12 21:20:42 +02002131{
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002132 struct ftrace_page *pg;
Lai Jiangshane94142a2009-03-13 17:51:27 +08002133 struct dyn_ftrace *p;
Abhishek Sagarf22f9a82008-06-21 23:50:29 +05302134 cycle_t start, stop;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002135 unsigned long ref = 0;
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002136 int i;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002137
2138 /*
2139 * When adding a module, we need to check if tracers are
2140 * currently enabled and if they are set to trace all functions.
2141 * If they are, we need to enable the module functions as well
2142 * as update the reference counts for those function records.
2143 */
2144 if (mod) {
2145 struct ftrace_ops *ops;
2146
2147 for (ops = ftrace_ops_list;
2148 ops != &ftrace_list_end; ops = ops->next) {
2149 if (ops->flags & FTRACE_OPS_FL_ENABLED &&
2150 ops_traces_mod(ops))
2151 ref++;
2152 }
2153 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002154
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002155 start = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002156 ftrace_update_cnt = 0;
2157
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002158 for (pg = ftrace_new_pgs; pg; pg = pg->next) {
Abhishek Sagarf22f9a82008-06-21 23:50:29 +05302159
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002160 for (i = 0; i < pg->index; i++) {
2161 /* If something went wrong, bail without enabling anything */
2162 if (unlikely(ftrace_disabled))
2163 return -1;
Steven Rostedt3d083392008-05-12 21:20:42 +02002164
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002165 p = &pg->records[i];
2166 p->flags = ref;
Abhishek Sagar0eb96702008-06-01 21:47:30 +05302167
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002168 /*
2169 * Do the initial record conversion from mcount jump
2170 * to the NOP instructions.
2171 */
2172 if (!ftrace_code_disable(mod, p))
2173 break;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002174
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002175 ftrace_update_cnt++;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002176
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002177 /*
2178 * If the tracing is enabled, go ahead and enable the record.
2179 *
2180 * The reason not to enable the record immediatelly is the
2181 * inherent check of ftrace_make_nop/ftrace_make_call for
2182 * correct previous instructions. Making first the NOP
2183 * conversion puts the module to the correct state, thus
2184 * passing the ftrace_make_call check.
2185 */
2186 if (ftrace_start_up && ref) {
2187 int failed = __ftrace_replace_code(p, 1);
2188 if (failed)
2189 ftrace_bug(failed, p->ip);
2190 }
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002191 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002192 }
2193
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002194 ftrace_new_pgs = NULL;
2195
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002196 stop = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002197 ftrace_update_time = stop - start;
2198 ftrace_update_tot_cnt += ftrace_update_cnt;
2199
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02002200 return 0;
2201}
2202
Steven Rostedta7900872011-12-16 16:23:44 -05002203static int ftrace_allocate_records(struct ftrace_page *pg, int count)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002204{
Steven Rostedta7900872011-12-16 16:23:44 -05002205 int order;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002206 int cnt;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002207
Steven Rostedta7900872011-12-16 16:23:44 -05002208 if (WARN_ON(!count))
2209 return -EINVAL;
2210
2211 order = get_count_order(DIV_ROUND_UP(count, ENTRIES_PER_PAGE));
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002212
2213 /*
Steven Rostedta7900872011-12-16 16:23:44 -05002214 * We want to fill as much as possible. No more than a page
2215 * may be empty.
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002216 */
Steven Rostedta7900872011-12-16 16:23:44 -05002217 while ((PAGE_SIZE << order) / ENTRY_SIZE >= count + ENTRIES_PER_PAGE)
2218 order--;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002219
Steven Rostedta7900872011-12-16 16:23:44 -05002220 again:
2221 pg->records = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
2222
2223 if (!pg->records) {
2224 /* if we can't allocate this size, try something smaller */
2225 if (!order)
2226 return -ENOMEM;
2227 order >>= 1;
2228 goto again;
2229 }
2230
2231 cnt = (PAGE_SIZE << order) / ENTRY_SIZE;
2232 pg->size = cnt;
2233
2234 if (cnt > count)
2235 cnt = count;
2236
2237 return cnt;
2238}
2239
2240static struct ftrace_page *
2241ftrace_allocate_pages(unsigned long num_to_init)
2242{
2243 struct ftrace_page *start_pg;
2244 struct ftrace_page *pg;
2245 int order;
2246 int cnt;
2247
2248 if (!num_to_init)
2249 return 0;
2250
2251 start_pg = pg = kzalloc(sizeof(*pg), GFP_KERNEL);
2252 if (!pg)
2253 return NULL;
2254
2255 /*
2256 * Try to allocate as much as possible in one continues
2257 * location that fills in all of the space. We want to
2258 * waste as little space as possible.
2259 */
2260 for (;;) {
2261 cnt = ftrace_allocate_records(pg, num_to_init);
2262 if (cnt < 0)
2263 goto free_pages;
2264
2265 num_to_init -= cnt;
2266 if (!num_to_init)
2267 break;
2268
2269 pg->next = kzalloc(sizeof(*pg), GFP_KERNEL);
2270 if (!pg->next)
2271 goto free_pages;
2272
2273 pg = pg->next;
2274 }
2275
2276 return start_pg;
2277
2278 free_pages:
2279 while (start_pg) {
2280 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
2281 free_pages((unsigned long)pg->records, order);
2282 start_pg = pg->next;
2283 kfree(pg);
2284 pg = start_pg;
2285 }
2286 pr_info("ftrace: FAILED to allocate memory for functions\n");
2287 return NULL;
2288}
2289
2290static int __init ftrace_dyn_table_alloc(unsigned long num_to_init)
2291{
2292 int cnt;
2293
2294 if (!num_to_init) {
2295 pr_info("ftrace: No functions to be traced?\n");
2296 return -1;
2297 }
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002298
Steven Rostedt68bf21a2008-08-14 15:45:08 -04002299 cnt = num_to_init / ENTRIES_PER_PAGE;
Steven Rostedt08f5ac902008-10-23 09:33:07 -04002300 pr_info("ftrace: allocating %ld entries in %d pages\n",
walimis5821e1b2008-11-15 15:19:06 +08002301 num_to_init, cnt + 1);
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002302
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002303 return 0;
2304}
2305
Steven Rostedt5072c592008-05-12 21:20:43 +02002306#define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
2307
2308struct ftrace_iterator {
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002309 loff_t pos;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002310 loff_t func_pos;
2311 struct ftrace_page *pg;
2312 struct dyn_ftrace *func;
2313 struct ftrace_func_probe *probe;
2314 struct trace_parser parser;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002315 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002316 struct ftrace_ops *ops;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002317 int hidx;
2318 int idx;
2319 unsigned flags;
Steven Rostedt5072c592008-05-12 21:20:43 +02002320};
2321
Ingo Molnare309b412008-05-12 21:20:51 +02002322static void *
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002323t_hash_next(struct seq_file *m, loff_t *pos)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002324{
2325 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002326 struct hlist_node *hnd = NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002327 struct hlist_head *hhd;
2328
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002329 (*pos)++;
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002330 iter->pos = *pos;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002331
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002332 if (iter->probe)
2333 hnd = &iter->probe->node;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002334 retry:
2335 if (iter->hidx >= FTRACE_FUNC_HASHSIZE)
2336 return NULL;
2337
2338 hhd = &ftrace_func_hash[iter->hidx];
2339
2340 if (hlist_empty(hhd)) {
2341 iter->hidx++;
2342 hnd = NULL;
2343 goto retry;
2344 }
2345
2346 if (!hnd)
2347 hnd = hhd->first;
2348 else {
2349 hnd = hnd->next;
2350 if (!hnd) {
2351 iter->hidx++;
2352 goto retry;
2353 }
2354 }
2355
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002356 if (WARN_ON_ONCE(!hnd))
2357 return NULL;
2358
2359 iter->probe = hlist_entry(hnd, struct ftrace_func_probe, node);
2360
2361 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002362}
2363
2364static void *t_hash_start(struct seq_file *m, loff_t *pos)
2365{
2366 struct ftrace_iterator *iter = m->private;
2367 void *p = NULL;
Li Zefand82d6242009-06-24 09:54:54 +08002368 loff_t l;
2369
Steven Rostedt69a30832011-12-19 15:21:16 -05002370 if (!(iter->flags & FTRACE_ITER_DO_HASH))
2371 return NULL;
2372
Steven Rostedt2bccfff2010-09-09 08:43:22 -04002373 if (iter->func_pos > *pos)
2374 return NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002375
Li Zefand82d6242009-06-24 09:54:54 +08002376 iter->hidx = 0;
Steven Rostedt2bccfff2010-09-09 08:43:22 -04002377 for (l = 0; l <= (*pos - iter->func_pos); ) {
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002378 p = t_hash_next(m, &l);
Li Zefand82d6242009-06-24 09:54:54 +08002379 if (!p)
2380 break;
2381 }
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002382 if (!p)
2383 return NULL;
2384
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002385 /* Only set this if we have an item */
2386 iter->flags |= FTRACE_ITER_HASH;
2387
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002388 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002389}
2390
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002391static int
2392t_hash_show(struct seq_file *m, struct ftrace_iterator *iter)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002393{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002394 struct ftrace_func_probe *rec;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002395
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002396 rec = iter->probe;
2397 if (WARN_ON_ONCE(!rec))
2398 return -EIO;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002399
Steven Rostedt809dcf22009-02-16 23:06:01 -05002400 if (rec->ops->print)
2401 return rec->ops->print(m, rec->ip, rec->ops, rec->data);
2402
Steven Rostedtb375a112009-09-17 00:05:58 -04002403 seq_printf(m, "%ps:%ps", (void *)rec->ip, (void *)rec->ops->func);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002404
2405 if (rec->data)
2406 seq_printf(m, ":%p", rec->data);
2407 seq_putc(m, '\n');
2408
2409 return 0;
2410}
2411
2412static void *
Steven Rostedt5072c592008-05-12 21:20:43 +02002413t_next(struct seq_file *m, void *v, loff_t *pos)
2414{
2415 struct ftrace_iterator *iter = m->private;
Steven Rostedtfc13cb02011-12-19 14:41:25 -05002416 struct ftrace_ops *ops = iter->ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02002417 struct dyn_ftrace *rec = NULL;
2418
Steven Rostedt45a4a232011-04-21 23:16:46 -04002419 if (unlikely(ftrace_disabled))
2420 return NULL;
2421
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002422 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002423 return t_hash_next(m, pos);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002424
Steven Rostedt5072c592008-05-12 21:20:43 +02002425 (*pos)++;
Jiri Olsa1106b692011-02-16 17:35:34 +01002426 iter->pos = iter->func_pos = *pos;
Steven Rostedt5072c592008-05-12 21:20:43 +02002427
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002428 if (iter->flags & FTRACE_ITER_PRINTALL)
Steven Rostedt57c072c2010-09-14 11:21:11 -04002429 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002430
Steven Rostedt5072c592008-05-12 21:20:43 +02002431 retry:
2432 if (iter->idx >= iter->pg->index) {
2433 if (iter->pg->next) {
2434 iter->pg = iter->pg->next;
2435 iter->idx = 0;
2436 goto retry;
2437 }
2438 } else {
2439 rec = &iter->pg->records[iter->idx++];
Steven Rostedt32082302011-12-16 14:42:37 -05002440 if (((iter->flags & FTRACE_ITER_FILTER) &&
Steven Rostedtf45948e2011-05-02 12:29:25 -04002441 !(ftrace_lookup_ip(ops->filter_hash, rec->ip))) ||
Steven Rostedt0183fb12008-11-07 22:36:02 -05002442
Steven Rostedt41c52c02008-05-22 11:46:33 -04002443 ((iter->flags & FTRACE_ITER_NOTRACE) &&
Steven Rostedt647bcd02011-05-03 14:39:21 -04002444 !ftrace_lookup_ip(ops->notrace_hash, rec->ip)) ||
2445
2446 ((iter->flags & FTRACE_ITER_ENABLED) &&
2447 !(rec->flags & ~FTRACE_FL_MASK))) {
2448
Steven Rostedt5072c592008-05-12 21:20:43 +02002449 rec = NULL;
2450 goto retry;
2451 }
2452 }
2453
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002454 if (!rec)
Steven Rostedt57c072c2010-09-14 11:21:11 -04002455 return t_hash_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002456
2457 iter->func = rec;
2458
2459 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02002460}
2461
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002462static void reset_iter_read(struct ftrace_iterator *iter)
2463{
2464 iter->pos = 0;
2465 iter->func_pos = 0;
Dan Carpenter70f77b32012-06-09 19:10:27 +03002466 iter->flags &= ~(FTRACE_ITER_PRINTALL | FTRACE_ITER_HASH);
Steven Rostedt5072c592008-05-12 21:20:43 +02002467}
2468
2469static void *t_start(struct seq_file *m, loff_t *pos)
2470{
2471 struct ftrace_iterator *iter = m->private;
Steven Rostedtfc13cb02011-12-19 14:41:25 -05002472 struct ftrace_ops *ops = iter->ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02002473 void *p = NULL;
Li Zefan694ce0a2009-06-24 09:54:19 +08002474 loff_t l;
Steven Rostedt5072c592008-05-12 21:20:43 +02002475
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002476 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04002477
2478 if (unlikely(ftrace_disabled))
2479 return NULL;
2480
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002481 /*
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002482 * If an lseek was done, then reset and start from beginning.
2483 */
2484 if (*pos < iter->pos)
2485 reset_iter_read(iter);
2486
2487 /*
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002488 * For set_ftrace_filter reading, if we have the filter
2489 * off, we can short cut and just print out that all
2490 * functions are enabled.
2491 */
Steven Rostedt06a51d92011-12-19 19:07:36 -05002492 if (iter->flags & FTRACE_ITER_FILTER &&
2493 ftrace_hash_empty(ops->filter_hash)) {
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002494 if (*pos > 0)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002495 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002496 iter->flags |= FTRACE_ITER_PRINTALL;
Chris Wrightdf091622010-09-09 16:34:59 -07002497 /* reset in case of seek/pread */
2498 iter->flags &= ~FTRACE_ITER_HASH;
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002499 return iter;
2500 }
2501
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002502 if (iter->flags & FTRACE_ITER_HASH)
2503 return t_hash_start(m, pos);
2504
Steven Rostedt98c4fd02010-09-10 11:47:43 -04002505 /*
2506 * Unfortunately, we need to restart at ftrace_pages_start
2507 * every time we let go of the ftrace_mutex. This is because
2508 * those pointers can change without the lock.
2509 */
Li Zefan694ce0a2009-06-24 09:54:19 +08002510 iter->pg = ftrace_pages_start;
2511 iter->idx = 0;
2512 for (l = 0; l <= *pos; ) {
2513 p = t_next(m, p, &l);
2514 if (!p)
2515 break;
Liming Wang50cdaf02008-11-28 12:13:21 +08002516 }
walimis5821e1b2008-11-15 15:19:06 +08002517
Steven Rostedt69a30832011-12-19 15:21:16 -05002518 if (!p)
2519 return t_hash_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002520
2521 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02002522}
2523
2524static void t_stop(struct seq_file *m, void *p)
2525{
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002526 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02002527}
2528
2529static int t_show(struct seq_file *m, void *v)
2530{
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002531 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002532 struct dyn_ftrace *rec;
Steven Rostedt5072c592008-05-12 21:20:43 +02002533
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002534 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002535 return t_hash_show(m, iter);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05002536
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05002537 if (iter->flags & FTRACE_ITER_PRINTALL) {
2538 seq_printf(m, "#### all functions enabled ####\n");
2539 return 0;
2540 }
2541
Steven Rostedt4aeb6962010-09-09 10:00:28 -04002542 rec = iter->func;
2543
Steven Rostedt5072c592008-05-12 21:20:43 +02002544 if (!rec)
2545 return 0;
2546
Steven Rostedt647bcd02011-05-03 14:39:21 -04002547 seq_printf(m, "%ps", (void *)rec->ip);
2548 if (iter->flags & FTRACE_ITER_ENABLED)
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002549 seq_printf(m, " (%ld)%s",
2550 rec->flags & ~FTRACE_FL_MASK,
2551 rec->flags & FTRACE_FL_REGS ? " R" : "");
Steven Rostedt647bcd02011-05-03 14:39:21 -04002552 seq_printf(m, "\n");
Steven Rostedt5072c592008-05-12 21:20:43 +02002553
2554 return 0;
2555}
2556
James Morris88e9d342009-09-22 16:43:43 -07002557static const struct seq_operations show_ftrace_seq_ops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02002558 .start = t_start,
2559 .next = t_next,
2560 .stop = t_stop,
2561 .show = t_show,
2562};
2563
Ingo Molnare309b412008-05-12 21:20:51 +02002564static int
Steven Rostedt5072c592008-05-12 21:20:43 +02002565ftrace_avail_open(struct inode *inode, struct file *file)
2566{
2567 struct ftrace_iterator *iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02002568
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002569 if (unlikely(ftrace_disabled))
2570 return -ENODEV;
2571
Jiri Olsa50e18b92012-04-25 10:23:39 +02002572 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
2573 if (iter) {
2574 iter->pg = ftrace_pages_start;
2575 iter->ops = &global_ops;
Ingo Molnar4bf39a92008-05-12 21:20:46 +02002576 }
Steven Rostedt5072c592008-05-12 21:20:43 +02002577
Jiri Olsa50e18b92012-04-25 10:23:39 +02002578 return iter ? 0 : -ENOMEM;
Steven Rostedt5072c592008-05-12 21:20:43 +02002579}
2580
Steven Rostedt647bcd02011-05-03 14:39:21 -04002581static int
2582ftrace_enabled_open(struct inode *inode, struct file *file)
2583{
2584 struct ftrace_iterator *iter;
Steven Rostedt647bcd02011-05-03 14:39:21 -04002585
2586 if (unlikely(ftrace_disabled))
2587 return -ENODEV;
2588
Jiri Olsa50e18b92012-04-25 10:23:39 +02002589 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
2590 if (iter) {
2591 iter->pg = ftrace_pages_start;
2592 iter->flags = FTRACE_ITER_ENABLED;
2593 iter->ops = &global_ops;
Steven Rostedt647bcd02011-05-03 14:39:21 -04002594 }
2595
Jiri Olsa50e18b92012-04-25 10:23:39 +02002596 return iter ? 0 : -ENOMEM;
Steven Rostedt647bcd02011-05-03 14:39:21 -04002597}
2598
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002599static void ftrace_filter_reset(struct ftrace_hash *hash)
Steven Rostedt5072c592008-05-12 21:20:43 +02002600{
Steven Rostedt52baf112009-02-14 01:15:39 -05002601 mutex_lock(&ftrace_lock);
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002602 ftrace_hash_clear(hash);
Steven Rostedt52baf112009-02-14 01:15:39 -05002603 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02002604}
2605
Steven Rostedtfc13cb02011-12-19 14:41:25 -05002606/**
2607 * ftrace_regex_open - initialize function tracer filter files
2608 * @ops: The ftrace_ops that hold the hash filters
2609 * @flag: The type of filter to process
2610 * @inode: The inode, usually passed in to your open routine
2611 * @file: The file, usually passed in to your open routine
2612 *
2613 * ftrace_regex_open() initializes the filter files for the
2614 * @ops. Depending on @flag it may process the filter hash or
2615 * the notrace hash of @ops. With this called from the open
2616 * routine, you can use ftrace_filter_write() for the write
2617 * routine if @flag has FTRACE_ITER_FILTER set, or
2618 * ftrace_notrace_write() if @flag has FTRACE_ITER_NOTRACE set.
2619 * ftrace_regex_lseek() should be used as the lseek routine, and
2620 * release must call ftrace_regex_release().
2621 */
2622int
Steven Rostedtf45948e2011-05-02 12:29:25 -04002623ftrace_regex_open(struct ftrace_ops *ops, int flag,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002624 struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02002625{
2626 struct ftrace_iterator *iter;
Steven Rostedtf45948e2011-05-02 12:29:25 -04002627 struct ftrace_hash *hash;
Steven Rostedt5072c592008-05-12 21:20:43 +02002628 int ret = 0;
2629
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002630 if (unlikely(ftrace_disabled))
2631 return -ENODEV;
2632
Steven Rostedt5072c592008-05-12 21:20:43 +02002633 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
2634 if (!iter)
2635 return -ENOMEM;
2636
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02002637 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
2638 kfree(iter);
2639 return -ENOMEM;
2640 }
2641
Steven Rostedtf45948e2011-05-02 12:29:25 -04002642 if (flag & FTRACE_ITER_NOTRACE)
2643 hash = ops->notrace_hash;
2644 else
2645 hash = ops->filter_hash;
2646
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002647 iter->ops = ops;
2648 iter->flags = flag;
2649
2650 if (file->f_mode & FMODE_WRITE) {
2651 mutex_lock(&ftrace_lock);
2652 iter->hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, hash);
2653 mutex_unlock(&ftrace_lock);
2654
2655 if (!iter->hash) {
2656 trace_parser_put(&iter->parser);
2657 kfree(iter);
2658 return -ENOMEM;
2659 }
2660 }
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002661
Steven Rostedt41c52c02008-05-22 11:46:33 -04002662 mutex_lock(&ftrace_regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002663
Steven Rostedt5072c592008-05-12 21:20:43 +02002664 if ((file->f_mode & FMODE_WRITE) &&
Steven Rostedt8650ae32009-07-22 23:29:30 -04002665 (file->f_flags & O_TRUNC))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002666 ftrace_filter_reset(iter->hash);
Steven Rostedt5072c592008-05-12 21:20:43 +02002667
2668 if (file->f_mode & FMODE_READ) {
2669 iter->pg = ftrace_pages_start;
Steven Rostedt5072c592008-05-12 21:20:43 +02002670
2671 ret = seq_open(file, &show_ftrace_seq_ops);
2672 if (!ret) {
2673 struct seq_file *m = file->private_data;
2674 m->private = iter;
Li Zefan79fe2492009-09-22 13:54:28 +08002675 } else {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002676 /* Failed */
2677 free_ftrace_hash(iter->hash);
Li Zefan79fe2492009-09-22 13:54:28 +08002678 trace_parser_put(&iter->parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02002679 kfree(iter);
Li Zefan79fe2492009-09-22 13:54:28 +08002680 }
Steven Rostedt5072c592008-05-12 21:20:43 +02002681 } else
2682 file->private_data = iter;
Steven Rostedt41c52c02008-05-22 11:46:33 -04002683 mutex_unlock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02002684
2685 return ret;
2686}
2687
Steven Rostedt41c52c02008-05-22 11:46:33 -04002688static int
2689ftrace_filter_open(struct inode *inode, struct file *file)
2690{
Steven Rostedt69a30832011-12-19 15:21:16 -05002691 return ftrace_regex_open(&global_ops,
2692 FTRACE_ITER_FILTER | FTRACE_ITER_DO_HASH,
2693 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04002694}
2695
2696static int
2697ftrace_notrace_open(struct inode *inode, struct file *file)
2698{
Steven Rostedtf45948e2011-05-02 12:29:25 -04002699 return ftrace_regex_open(&global_ops, FTRACE_ITER_NOTRACE,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002700 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04002701}
2702
Steven Rostedtfc13cb02011-12-19 14:41:25 -05002703loff_t
Andrew Morton965c8e52012-12-17 15:59:39 -08002704ftrace_regex_lseek(struct file *file, loff_t offset, int whence)
Steven Rostedt5072c592008-05-12 21:20:43 +02002705{
2706 loff_t ret;
2707
2708 if (file->f_mode & FMODE_READ)
Andrew Morton965c8e52012-12-17 15:59:39 -08002709 ret = seq_lseek(file, offset, whence);
Steven Rostedt5072c592008-05-12 21:20:43 +02002710 else
2711 file->f_pos = ret = 1;
2712
2713 return ret;
2714}
2715
Steven Rostedt64e7c442009-02-13 17:08:48 -05002716static int ftrace_match(char *str, char *regex, int len, int type)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002717{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002718 int matched = 0;
Li Zefan751e9982010-01-14 10:53:02 +08002719 int slen;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002720
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002721 switch (type) {
2722 case MATCH_FULL:
2723 if (strcmp(str, regex) == 0)
2724 matched = 1;
2725 break;
2726 case MATCH_FRONT_ONLY:
2727 if (strncmp(str, regex, len) == 0)
2728 matched = 1;
2729 break;
2730 case MATCH_MIDDLE_ONLY:
2731 if (strstr(str, regex))
2732 matched = 1;
2733 break;
2734 case MATCH_END_ONLY:
Li Zefan751e9982010-01-14 10:53:02 +08002735 slen = strlen(str);
2736 if (slen >= len && memcmp(str + slen - len, regex, len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002737 matched = 1;
2738 break;
2739 }
2740
2741 return matched;
2742}
2743
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002744static int
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002745enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int not)
Steven Rostedt996e87b2011-04-26 16:11:03 -04002746{
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002747 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002748 int ret = 0;
2749
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002750 entry = ftrace_lookup_ip(hash, rec->ip);
2751 if (not) {
2752 /* Do nothing if it doesn't exist */
2753 if (!entry)
2754 return 0;
2755
Steven Rostedt33dc9b12011-05-02 17:34:47 -04002756 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002757 } else {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002758 /* Do nothing if it exists */
2759 if (entry)
2760 return 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002761
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002762 ret = add_hash_entry(hash, rec->ip);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002763 }
2764 return ret;
Steven Rostedt996e87b2011-04-26 16:11:03 -04002765}
2766
Steven Rostedt64e7c442009-02-13 17:08:48 -05002767static int
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002768ftrace_match_record(struct dyn_ftrace *rec, char *mod,
2769 char *regex, int len, int type)
Steven Rostedt64e7c442009-02-13 17:08:48 -05002770{
2771 char str[KSYM_SYMBOL_LEN];
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002772 char *modname;
Steven Rostedt64e7c442009-02-13 17:08:48 -05002773
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002774 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
2775
2776 if (mod) {
2777 /* module lookup requires matching the module */
2778 if (!modname || strcmp(modname, mod))
2779 return 0;
2780
2781 /* blank search means to match all funcs in the mod */
2782 if (!len)
2783 return 1;
2784 }
2785
Steven Rostedt64e7c442009-02-13 17:08:48 -05002786 return ftrace_match(str, regex, len, type);
2787}
2788
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002789static int
2790match_records(struct ftrace_hash *hash, char *buff,
2791 int len, char *mod, int not)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002792{
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002793 unsigned search_len = 0;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002794 struct ftrace_page *pg;
2795 struct dyn_ftrace *rec;
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002796 int type = MATCH_FULL;
2797 char *search = buff;
Li Zefan311d16d2009-12-08 11:15:11 +08002798 int found = 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002799 int ret;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002800
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002801 if (len) {
2802 type = filter_parse_regex(buff, len, &search, &not);
2803 search_len = strlen(search);
2804 }
Steven Rostedt9f4801e2009-02-13 15:56:43 -05002805
Steven Rostedt52baf112009-02-14 01:15:39 -05002806 mutex_lock(&ftrace_lock);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002807
2808 if (unlikely(ftrace_disabled))
2809 goto out_unlock;
2810
Steven Rostedt265c8312009-02-13 12:43:56 -05002811 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002812 if (ftrace_match_record(rec, mod, search, search_len, type)) {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002813 ret = enter_record(hash, rec, not);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002814 if (ret < 0) {
2815 found = ret;
2816 goto out_unlock;
2817 }
Li Zefan311d16d2009-12-08 11:15:11 +08002818 found = 1;
Steven Rostedt265c8312009-02-13 12:43:56 -05002819 }
2820 } while_for_each_ftrace_rec();
Steven Rostedtb9df92d2011-04-28 20:32:08 -04002821 out_unlock:
Steven Rostedt52baf112009-02-14 01:15:39 -05002822 mutex_unlock(&ftrace_lock);
Li Zefan311d16d2009-12-08 11:15:11 +08002823
2824 return found;
Steven Rostedt5072c592008-05-12 21:20:43 +02002825}
2826
Steven Rostedt64e7c442009-02-13 17:08:48 -05002827static int
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002828ftrace_match_records(struct ftrace_hash *hash, char *buff, int len)
Steven Rostedt64e7c442009-02-13 17:08:48 -05002829{
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002830 return match_records(hash, buff, len, NULL, 0);
Steven Rostedt64e7c442009-02-13 17:08:48 -05002831}
2832
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002833static int
2834ftrace_match_module_records(struct ftrace_hash *hash, char *buff, char *mod)
Steven Rostedt64e7c442009-02-13 17:08:48 -05002835{
Steven Rostedt64e7c442009-02-13 17:08:48 -05002836 int not = 0;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002837
Steven Rostedt64e7c442009-02-13 17:08:48 -05002838 /* blank or '*' mean the same */
2839 if (strcmp(buff, "*") == 0)
2840 buff[0] = 0;
2841
2842 /* handle the case of 'dont filter this module' */
2843 if (strcmp(buff, "!") == 0 || strcmp(buff, "!*") == 0) {
2844 buff[0] = 0;
2845 not = 1;
2846 }
2847
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002848 return match_records(hash, buff, strlen(buff), mod, not);
Steven Rostedt64e7c442009-02-13 17:08:48 -05002849}
2850
Steven Rostedtf6180772009-02-14 00:40:25 -05002851/*
2852 * We register the module command as a template to show others how
2853 * to register the a command as well.
2854 */
2855
2856static int
Steven Rostedt43dd61c2011-07-07 11:09:22 -04002857ftrace_mod_callback(struct ftrace_hash *hash,
2858 char *func, char *cmd, char *param, int enable)
Steven Rostedtf6180772009-02-14 00:40:25 -05002859{
2860 char *mod;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002861 int ret = -EINVAL;
Steven Rostedtf6180772009-02-14 00:40:25 -05002862
2863 /*
2864 * cmd == 'mod' because we only registered this func
2865 * for the 'mod' ftrace_func_command.
2866 * But if you register one func with multiple commands,
2867 * you can tell which command was used by the cmd
2868 * parameter.
2869 */
2870
2871 /* we must have a module name */
2872 if (!param)
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002873 return ret;
Steven Rostedtf6180772009-02-14 00:40:25 -05002874
2875 mod = strsep(&param, ":");
2876 if (!strlen(mod))
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002877 return ret;
Steven Rostedtf6180772009-02-14 00:40:25 -05002878
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04002879 ret = ftrace_match_module_records(hash, func, mod);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04002880 if (!ret)
2881 ret = -EINVAL;
2882 if (ret < 0)
2883 return ret;
2884
2885 return 0;
Steven Rostedtf6180772009-02-14 00:40:25 -05002886}
2887
2888static struct ftrace_func_command ftrace_mod_cmd = {
2889 .name = "mod",
2890 .func = ftrace_mod_callback,
2891};
2892
2893static int __init ftrace_mod_cmd_init(void)
2894{
2895 return register_ftrace_command(&ftrace_mod_cmd);
2896}
Steven Rostedt6f415672012-10-05 12:13:07 -04002897core_initcall(ftrace_mod_cmd_init);
Steven Rostedtf6180772009-02-14 00:40:25 -05002898
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04002899static void function_trace_probe_call(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04002900 struct ftrace_ops *op, struct pt_regs *pt_regs)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002901{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002902 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002903 struct hlist_head *hhd;
2904 struct hlist_node *n;
2905 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002906
2907 key = hash_long(ip, FTRACE_HASH_BITS);
2908
2909 hhd = &ftrace_func_hash[key];
2910
2911 if (hlist_empty(hhd))
2912 return;
2913
2914 /*
2915 * Disable preemption for these calls to prevent a RCU grace
2916 * period. This syncs the hash iteration and freeing of items
2917 * on the hash. rcu_read_lock is too dangerous here.
2918 */
Steven Rostedt5168ae52010-06-03 09:36:50 -04002919 preempt_disable_notrace();
Steven Rostedt59df055f2009-02-14 15:29:06 -05002920 hlist_for_each_entry_rcu(entry, n, hhd, node) {
2921 if (entry->ip == ip)
2922 entry->ops->func(ip, parent_ip, &entry->data);
2923 }
Steven Rostedt5168ae52010-06-03 09:36:50 -04002924 preempt_enable_notrace();
Steven Rostedt59df055f2009-02-14 15:29:06 -05002925}
2926
Steven Rostedtb6887d72009-02-17 12:32:04 -05002927static struct ftrace_ops trace_probe_ops __read_mostly =
Steven Rostedt59df055f2009-02-14 15:29:06 -05002928{
Steven Rostedtfb9fb012009-03-25 13:26:41 -04002929 .func = function_trace_probe_call,
Steven Rostedt59df055f2009-02-14 15:29:06 -05002930};
2931
Steven Rostedtb6887d72009-02-17 12:32:04 -05002932static int ftrace_probe_registered;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002933
Steven Rostedtb6887d72009-02-17 12:32:04 -05002934static void __enable_ftrace_function_probe(void)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002935{
Steven Rostedtb8489142011-05-04 09:27:52 -04002936 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002937 int i;
2938
Steven Rostedtb6887d72009-02-17 12:32:04 -05002939 if (ftrace_probe_registered)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002940 return;
2941
2942 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2943 struct hlist_head *hhd = &ftrace_func_hash[i];
2944 if (hhd->first)
2945 break;
2946 }
2947 /* Nothing registered? */
2948 if (i == FTRACE_FUNC_HASHSIZE)
2949 return;
2950
Steven Rostedtb8489142011-05-04 09:27:52 -04002951 ret = __register_ftrace_function(&trace_probe_ops);
2952 if (!ret)
Steven Rostedta1cd6172011-05-23 15:24:25 -04002953 ret = ftrace_startup(&trace_probe_ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04002954
Steven Rostedtb6887d72009-02-17 12:32:04 -05002955 ftrace_probe_registered = 1;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002956}
2957
Steven Rostedtb6887d72009-02-17 12:32:04 -05002958static void __disable_ftrace_function_probe(void)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002959{
Steven Rostedtb8489142011-05-04 09:27:52 -04002960 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002961 int i;
2962
Steven Rostedtb6887d72009-02-17 12:32:04 -05002963 if (!ftrace_probe_registered)
Steven Rostedt59df055f2009-02-14 15:29:06 -05002964 return;
2965
2966 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
2967 struct hlist_head *hhd = &ftrace_func_hash[i];
2968 if (hhd->first)
2969 return;
2970 }
2971
2972 /* no more funcs left */
Steven Rostedtb8489142011-05-04 09:27:52 -04002973 ret = __unregister_ftrace_function(&trace_probe_ops);
2974 if (!ret)
2975 ftrace_shutdown(&trace_probe_ops, 0);
2976
Steven Rostedtb6887d72009-02-17 12:32:04 -05002977 ftrace_probe_registered = 0;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002978}
2979
2980
2981static void ftrace_free_entry_rcu(struct rcu_head *rhp)
2982{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002983 struct ftrace_func_probe *entry =
2984 container_of(rhp, struct ftrace_func_probe, rcu);
Steven Rostedt59df055f2009-02-14 15:29:06 -05002985
2986 if (entry->ops->free)
2987 entry->ops->free(&entry->data);
2988 kfree(entry);
2989}
2990
2991
2992int
Steven Rostedtb6887d72009-02-17 12:32:04 -05002993register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05002994 void *data)
2995{
Steven Rostedtb6887d72009-02-17 12:32:04 -05002996 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002997 struct ftrace_page *pg;
2998 struct dyn_ftrace *rec;
Steven Rostedt59df055f2009-02-14 15:29:06 -05002999 int type, len, not;
Steven Rostedt6a24a242009-02-17 11:20:26 -05003000 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003001 int count = 0;
3002 char *search;
3003
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02003004 type = filter_parse_regex(glob, strlen(glob), &search, &not);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003005 len = strlen(search);
3006
Steven Rostedtb6887d72009-02-17 12:32:04 -05003007 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05003008 if (WARN_ON(not))
3009 return -EINVAL;
3010
3011 mutex_lock(&ftrace_lock);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003012
Steven Rostedt45a4a232011-04-21 23:16:46 -04003013 if (unlikely(ftrace_disabled))
3014 goto out_unlock;
3015
Steven Rostedt59df055f2009-02-14 15:29:06 -05003016 do_for_each_ftrace_rec(pg, rec) {
3017
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003018 if (!ftrace_match_record(rec, NULL, search, len, type))
Steven Rostedt59df055f2009-02-14 15:29:06 -05003019 continue;
3020
3021 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
3022 if (!entry) {
Steven Rostedtb6887d72009-02-17 12:32:04 -05003023 /* If we did not process any, then return error */
Steven Rostedt59df055f2009-02-14 15:29:06 -05003024 if (!count)
3025 count = -ENOMEM;
3026 goto out_unlock;
3027 }
3028
3029 count++;
3030
3031 entry->data = data;
3032
3033 /*
3034 * The caller might want to do something special
3035 * for each function we find. We call the callback
3036 * to give the caller an opportunity to do so.
3037 */
3038 if (ops->callback) {
3039 if (ops->callback(rec->ip, &entry->data) < 0) {
3040 /* caller does not like this func */
3041 kfree(entry);
3042 continue;
3043 }
3044 }
3045
3046 entry->ops = ops;
3047 entry->ip = rec->ip;
3048
3049 key = hash_long(entry->ip, FTRACE_HASH_BITS);
3050 hlist_add_head_rcu(&entry->node, &ftrace_func_hash[key]);
3051
3052 } while_for_each_ftrace_rec();
Steven Rostedtb6887d72009-02-17 12:32:04 -05003053 __enable_ftrace_function_probe();
Steven Rostedt59df055f2009-02-14 15:29:06 -05003054
3055 out_unlock:
3056 mutex_unlock(&ftrace_lock);
3057
3058 return count;
3059}
3060
3061enum {
Steven Rostedtb6887d72009-02-17 12:32:04 -05003062 PROBE_TEST_FUNC = 1,
3063 PROBE_TEST_DATA = 2
Steven Rostedt59df055f2009-02-14 15:29:06 -05003064};
3065
3066static void
Steven Rostedtb6887d72009-02-17 12:32:04 -05003067__unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05003068 void *data, int flags)
3069{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003070 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003071 struct hlist_node *n, *tmp;
3072 char str[KSYM_SYMBOL_LEN];
3073 int type = MATCH_FULL;
3074 int i, len = 0;
3075 char *search;
3076
Atsushi Tsujib36461d2009-09-15 19:06:30 +09003077 if (glob && (strcmp(glob, "*") == 0 || !strlen(glob)))
Steven Rostedt59df055f2009-02-14 15:29:06 -05003078 glob = NULL;
Atsushi Tsujib36461d2009-09-15 19:06:30 +09003079 else if (glob) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003080 int not;
3081
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02003082 type = filter_parse_regex(glob, strlen(glob), &search, &not);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003083 len = strlen(search);
3084
Steven Rostedtb6887d72009-02-17 12:32:04 -05003085 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05003086 if (WARN_ON(not))
3087 return;
3088 }
3089
3090 mutex_lock(&ftrace_lock);
3091 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3092 struct hlist_head *hhd = &ftrace_func_hash[i];
3093
3094 hlist_for_each_entry_safe(entry, n, tmp, hhd, node) {
3095
3096 /* break up if statements for readability */
Steven Rostedtb6887d72009-02-17 12:32:04 -05003097 if ((flags & PROBE_TEST_FUNC) && entry->ops != ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003098 continue;
3099
Steven Rostedtb6887d72009-02-17 12:32:04 -05003100 if ((flags & PROBE_TEST_DATA) && entry->data != data)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003101 continue;
3102
3103 /* do this last, since it is the most expensive */
3104 if (glob) {
3105 kallsyms_lookup(entry->ip, NULL, NULL,
3106 NULL, str);
3107 if (!ftrace_match(str, glob, len, type))
3108 continue;
3109 }
3110
Steven Rostedt (Red Hat)740466b2013-03-13 11:15:19 -04003111 hlist_del_rcu(&entry->node);
3112 call_rcu_sched(&entry->rcu, ftrace_free_entry_rcu);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003113 }
3114 }
Steven Rostedtb6887d72009-02-17 12:32:04 -05003115 __disable_ftrace_function_probe();
Steven Rostedt59df055f2009-02-14 15:29:06 -05003116 mutex_unlock(&ftrace_lock);
3117}
3118
3119void
Steven Rostedtb6887d72009-02-17 12:32:04 -05003120unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05003121 void *data)
3122{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003123 __unregister_ftrace_function_probe(glob, ops, data,
3124 PROBE_TEST_FUNC | PROBE_TEST_DATA);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003125}
3126
3127void
Steven Rostedtb6887d72009-02-17 12:32:04 -05003128unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003129{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003130 __unregister_ftrace_function_probe(glob, ops, NULL, PROBE_TEST_FUNC);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003131}
3132
Steven Rostedtb6887d72009-02-17 12:32:04 -05003133void unregister_ftrace_function_probe_all(char *glob)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003134{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003135 __unregister_ftrace_function_probe(glob, NULL, NULL, 0);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003136}
3137
Steven Rostedtf6180772009-02-14 00:40:25 -05003138static LIST_HEAD(ftrace_commands);
3139static DEFINE_MUTEX(ftrace_cmd_mutex);
3140
3141int register_ftrace_command(struct ftrace_func_command *cmd)
3142{
3143 struct ftrace_func_command *p;
3144 int ret = 0;
3145
3146 mutex_lock(&ftrace_cmd_mutex);
3147 list_for_each_entry(p, &ftrace_commands, list) {
3148 if (strcmp(cmd->name, p->name) == 0) {
3149 ret = -EBUSY;
3150 goto out_unlock;
3151 }
3152 }
3153 list_add(&cmd->list, &ftrace_commands);
3154 out_unlock:
3155 mutex_unlock(&ftrace_cmd_mutex);
3156
3157 return ret;
3158}
3159
3160int unregister_ftrace_command(struct ftrace_func_command *cmd)
3161{
3162 struct ftrace_func_command *p, *n;
3163 int ret = -ENODEV;
3164
3165 mutex_lock(&ftrace_cmd_mutex);
3166 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
3167 if (strcmp(cmd->name, p->name) == 0) {
3168 ret = 0;
3169 list_del_init(&p->list);
3170 goto out_unlock;
3171 }
3172 }
3173 out_unlock:
3174 mutex_unlock(&ftrace_cmd_mutex);
3175
3176 return ret;
3177}
3178
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003179static int ftrace_process_regex(struct ftrace_hash *hash,
3180 char *buff, int len, int enable)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003181{
Steven Rostedtf6180772009-02-14 00:40:25 -05003182 char *func, *command, *next = buff;
Steven Rostedt6a24a242009-02-17 11:20:26 -05003183 struct ftrace_func_command *p;
GuoWen Li0aff1c02011-06-01 19:18:47 +08003184 int ret = -EINVAL;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003185
3186 func = strsep(&next, ":");
3187
3188 if (!next) {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003189 ret = ftrace_match_records(hash, func, len);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003190 if (!ret)
3191 ret = -EINVAL;
3192 if (ret < 0)
3193 return ret;
3194 return 0;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003195 }
3196
Steven Rostedtf6180772009-02-14 00:40:25 -05003197 /* command found */
Steven Rostedt64e7c442009-02-13 17:08:48 -05003198
3199 command = strsep(&next, ":");
3200
Steven Rostedtf6180772009-02-14 00:40:25 -05003201 mutex_lock(&ftrace_cmd_mutex);
3202 list_for_each_entry(p, &ftrace_commands, list) {
3203 if (strcmp(p->name, command) == 0) {
Steven Rostedt43dd61c2011-07-07 11:09:22 -04003204 ret = p->func(hash, func, command, next, enable);
Steven Rostedtf6180772009-02-14 00:40:25 -05003205 goto out_unlock;
3206 }
Steven Rostedt64e7c442009-02-13 17:08:48 -05003207 }
Steven Rostedtf6180772009-02-14 00:40:25 -05003208 out_unlock:
3209 mutex_unlock(&ftrace_cmd_mutex);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003210
Steven Rostedtf6180772009-02-14 00:40:25 -05003211 return ret;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003212}
3213
Ingo Molnare309b412008-05-12 21:20:51 +02003214static ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04003215ftrace_regex_write(struct file *file, const char __user *ubuf,
3216 size_t cnt, loff_t *ppos, int enable)
Steven Rostedt5072c592008-05-12 21:20:43 +02003217{
3218 struct ftrace_iterator *iter;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003219 struct trace_parser *parser;
3220 ssize_t ret, read;
Steven Rostedt5072c592008-05-12 21:20:43 +02003221
Li Zefan4ba79782009-09-22 13:52:20 +08003222 if (!cnt)
Steven Rostedt5072c592008-05-12 21:20:43 +02003223 return 0;
3224
Steven Rostedt41c52c02008-05-22 11:46:33 -04003225 mutex_lock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003226
Steven Rostedt45a4a232011-04-21 23:16:46 -04003227 ret = -ENODEV;
3228 if (unlikely(ftrace_disabled))
3229 goto out_unlock;
3230
Steven Rostedt5072c592008-05-12 21:20:43 +02003231 if (file->f_mode & FMODE_READ) {
3232 struct seq_file *m = file->private_data;
3233 iter = m->private;
3234 } else
3235 iter = file->private_data;
3236
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003237 parser = &iter->parser;
3238 read = trace_get_user(parser, ubuf, cnt, ppos);
Steven Rostedt5072c592008-05-12 21:20:43 +02003239
Li Zefan4ba79782009-09-22 13:52:20 +08003240 if (read >= 0 && trace_parser_loaded(parser) &&
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003241 !trace_parser_cont(parser)) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003242 ret = ftrace_process_regex(iter->hash, parser->buffer,
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003243 parser->idx, enable);
Li Zefan313254a2009-12-08 11:15:30 +08003244 trace_parser_clear(parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02003245 if (ret)
Li Zefaned146b252009-11-03 08:55:38 +08003246 goto out_unlock;
Steven Rostedt5072c592008-05-12 21:20:43 +02003247 }
3248
Steven Rostedt5072c592008-05-12 21:20:43 +02003249 ret = read;
Li Zefaned146b252009-11-03 08:55:38 +08003250out_unlock:
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003251 mutex_unlock(&ftrace_regex_lock);
Li Zefaned146b252009-11-03 08:55:38 +08003252
Steven Rostedt5072c592008-05-12 21:20:43 +02003253 return ret;
3254}
3255
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003256ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04003257ftrace_filter_write(struct file *file, const char __user *ubuf,
3258 size_t cnt, loff_t *ppos)
3259{
3260 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
3261}
3262
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003263ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04003264ftrace_notrace_write(struct file *file, const char __user *ubuf,
3265 size_t cnt, loff_t *ppos)
3266{
3267 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
3268}
3269
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003270static int
Masami Hiramatsu647664e2012-06-05 19:28:08 +09003271ftrace_match_addr(struct ftrace_hash *hash, unsigned long ip, int remove)
3272{
3273 struct ftrace_func_entry *entry;
3274
3275 if (!ftrace_location(ip))
3276 return -EINVAL;
3277
3278 if (remove) {
3279 entry = ftrace_lookup_ip(hash, ip);
3280 if (!entry)
3281 return -ENOENT;
3282 free_hash_entry(hash, entry);
3283 return 0;
3284 }
3285
3286 return add_hash_entry(hash, ip);
3287}
3288
3289static int
3290ftrace_set_hash(struct ftrace_ops *ops, unsigned char *buf, int len,
3291 unsigned long ip, int remove, int reset, int enable)
Steven Rostedt41c52c02008-05-22 11:46:33 -04003292{
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003293 struct ftrace_hash **orig_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003294 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003295 int ret;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003296
Steven Rostedt936e0742011-05-05 22:54:01 -04003297 /* All global ops uses the global ops filters */
3298 if (ops->flags & FTRACE_OPS_FL_GLOBAL)
3299 ops = &global_ops;
3300
Steven Rostedt41c52c02008-05-22 11:46:33 -04003301 if (unlikely(ftrace_disabled))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003302 return -ENODEV;
Steven Rostedt41c52c02008-05-22 11:46:33 -04003303
Steven Rostedtf45948e2011-05-02 12:29:25 -04003304 if (enable)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003305 orig_hash = &ops->filter_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003306 else
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003307 orig_hash = &ops->notrace_hash;
3308
3309 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
3310 if (!hash)
3311 return -ENOMEM;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003312
Steven Rostedt41c52c02008-05-22 11:46:33 -04003313 mutex_lock(&ftrace_regex_lock);
3314 if (reset)
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003315 ftrace_filter_reset(hash);
Jiri Olsaac483c42012-01-02 10:04:14 +01003316 if (buf && !ftrace_match_records(hash, buf, len)) {
3317 ret = -EINVAL;
3318 goto out_regex_unlock;
3319 }
Masami Hiramatsu647664e2012-06-05 19:28:08 +09003320 if (ip) {
3321 ret = ftrace_match_addr(hash, ip, remove);
3322 if (ret < 0)
3323 goto out_regex_unlock;
3324 }
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003325
3326 mutex_lock(&ftrace_lock);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04003327 ret = ftrace_hash_move(ops, enable, orig_hash, hash);
Steven Rostedt072126f2011-07-13 15:08:31 -04003328 if (!ret && ops->flags & FTRACE_OPS_FL_ENABLED
3329 && ftrace_enabled)
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01003330 ftrace_run_update_code(FTRACE_UPDATE_CALLS);
Steven Rostedt072126f2011-07-13 15:08:31 -04003331
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003332 mutex_unlock(&ftrace_lock);
3333
Jiri Olsaac483c42012-01-02 10:04:14 +01003334 out_regex_unlock:
Steven Rostedt41c52c02008-05-22 11:46:33 -04003335 mutex_unlock(&ftrace_regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003336
3337 free_ftrace_hash(hash);
3338 return ret;
Steven Rostedt41c52c02008-05-22 11:46:33 -04003339}
3340
Masami Hiramatsu647664e2012-06-05 19:28:08 +09003341static int
3342ftrace_set_addr(struct ftrace_ops *ops, unsigned long ip, int remove,
3343 int reset, int enable)
3344{
3345 return ftrace_set_hash(ops, 0, 0, ip, remove, reset, enable);
3346}
3347
3348/**
3349 * ftrace_set_filter_ip - set a function to filter on in ftrace by address
3350 * @ops - the ops to set the filter with
3351 * @ip - the address to add to or remove from the filter.
3352 * @remove - non zero to remove the ip from the filter
3353 * @reset - non zero to reset all filters before applying this filter.
3354 *
3355 * Filters denote which functions should be enabled when tracing is enabled
3356 * If @ip is NULL, it failes to update filter.
3357 */
3358int ftrace_set_filter_ip(struct ftrace_ops *ops, unsigned long ip,
3359 int remove, int reset)
3360{
3361 return ftrace_set_addr(ops, ip, remove, reset, 1);
3362}
3363EXPORT_SYMBOL_GPL(ftrace_set_filter_ip);
3364
3365static int
3366ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
3367 int reset, int enable)
3368{
3369 return ftrace_set_hash(ops, buf, len, 0, 0, reset, enable);
3370}
3371
Steven Rostedt77a2b372008-05-12 21:20:45 +02003372/**
3373 * ftrace_set_filter - set a function to filter on in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04003374 * @ops - the ops to set the filter with
Steven Rostedt77a2b372008-05-12 21:20:45 +02003375 * @buf - the string that holds the function filter text.
3376 * @len - the length of the string.
3377 * @reset - non zero to reset all filters before applying this filter.
3378 *
3379 * Filters denote which functions should be enabled when tracing is enabled.
3380 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
3381 */
Jiri Olsaac483c42012-01-02 10:04:14 +01003382int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04003383 int len, int reset)
Steven Rostedt77a2b372008-05-12 21:20:45 +02003384{
Jiri Olsaac483c42012-01-02 10:04:14 +01003385 return ftrace_set_regex(ops, buf, len, reset, 1);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003386}
Steven Rostedt936e0742011-05-05 22:54:01 -04003387EXPORT_SYMBOL_GPL(ftrace_set_filter);
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003388
Steven Rostedt41c52c02008-05-22 11:46:33 -04003389/**
3390 * ftrace_set_notrace - set a function to not trace in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04003391 * @ops - the ops to set the notrace filter with
Steven Rostedt41c52c02008-05-22 11:46:33 -04003392 * @buf - the string that holds the function notrace text.
3393 * @len - the length of the string.
3394 * @reset - non zero to reset all filters before applying this filter.
3395 *
3396 * Notrace Filters denote which functions should not be enabled when tracing
3397 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
3398 * for tracing.
3399 */
Jiri Olsaac483c42012-01-02 10:04:14 +01003400int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04003401 int len, int reset)
3402{
Jiri Olsaac483c42012-01-02 10:04:14 +01003403 return ftrace_set_regex(ops, buf, len, reset, 0);
Steven Rostedt936e0742011-05-05 22:54:01 -04003404}
3405EXPORT_SYMBOL_GPL(ftrace_set_notrace);
3406/**
3407 * ftrace_set_filter - set a function to filter on in ftrace
3408 * @ops - the ops to set the filter with
3409 * @buf - the string that holds the function filter text.
3410 * @len - the length of the string.
3411 * @reset - non zero to reset all filters before applying this filter.
3412 *
3413 * Filters denote which functions should be enabled when tracing is enabled.
3414 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
3415 */
3416void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
3417{
3418 ftrace_set_regex(&global_ops, buf, len, reset, 1);
3419}
3420EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
3421
3422/**
3423 * ftrace_set_notrace - set a function to not trace in ftrace
3424 * @ops - the ops to set the notrace filter with
3425 * @buf - the string that holds the function notrace text.
3426 * @len - the length of the string.
3427 * @reset - non zero to reset all filters before applying this filter.
3428 *
3429 * Notrace Filters denote which functions should not be enabled when tracing
3430 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
3431 * for tracing.
3432 */
3433void ftrace_set_global_notrace(unsigned char *buf, int len, int reset)
Steven Rostedt41c52c02008-05-22 11:46:33 -04003434{
Steven Rostedtf45948e2011-05-02 12:29:25 -04003435 ftrace_set_regex(&global_ops, buf, len, reset, 0);
Steven Rostedt77a2b372008-05-12 21:20:45 +02003436}
Steven Rostedt936e0742011-05-05 22:54:01 -04003437EXPORT_SYMBOL_GPL(ftrace_set_global_notrace);
Steven Rostedt77a2b372008-05-12 21:20:45 +02003438
Steven Rostedt2af15d62009-05-28 13:37:24 -04003439/*
3440 * command line interface to allow users to set filters on boot up.
3441 */
3442#define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
3443static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
3444static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
3445
3446static int __init set_ftrace_notrace(char *str)
3447{
3448 strncpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
3449 return 1;
3450}
3451__setup("ftrace_notrace=", set_ftrace_notrace);
3452
3453static int __init set_ftrace_filter(char *str)
3454{
3455 strncpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
3456 return 1;
3457}
3458__setup("ftrace_filter=", set_ftrace_filter);
3459
Stefan Assmann369bc182009-10-12 22:17:21 +02003460#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Lai Jiangshanf6060f42009-11-05 11:16:17 +08003461static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
Steven Rostedt801c29f2010-03-05 20:02:19 -05003462static int ftrace_set_func(unsigned long *array, int *idx, char *buffer);
3463
Stefan Assmann369bc182009-10-12 22:17:21 +02003464static int __init set_graph_function(char *str)
3465{
Frederic Weisbecker06f43d62009-10-14 20:43:39 +02003466 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
Stefan Assmann369bc182009-10-12 22:17:21 +02003467 return 1;
3468}
3469__setup("ftrace_graph_filter=", set_graph_function);
3470
3471static void __init set_ftrace_early_graph(char *buf)
3472{
3473 int ret;
3474 char *func;
3475
3476 while (buf) {
3477 func = strsep(&buf, ",");
3478 /* we allow only one expression at a time */
3479 ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
3480 func);
3481 if (ret)
3482 printk(KERN_DEBUG "ftrace: function %s not "
3483 "traceable\n", func);
3484 }
3485}
3486#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3487
Steven Rostedt2a85a372011-12-19 21:57:44 -05003488void __init
3489ftrace_set_early_filter(struct ftrace_ops *ops, char *buf, int enable)
Steven Rostedt2af15d62009-05-28 13:37:24 -04003490{
3491 char *func;
3492
3493 while (buf) {
3494 func = strsep(&buf, ",");
Steven Rostedtf45948e2011-05-02 12:29:25 -04003495 ftrace_set_regex(ops, func, strlen(func), 0, enable);
Steven Rostedt2af15d62009-05-28 13:37:24 -04003496 }
3497}
3498
3499static void __init set_ftrace_early_filters(void)
3500{
3501 if (ftrace_filter_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05003502 ftrace_set_early_filter(&global_ops, ftrace_filter_buf, 1);
Steven Rostedt2af15d62009-05-28 13:37:24 -04003503 if (ftrace_notrace_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05003504 ftrace_set_early_filter(&global_ops, ftrace_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02003505#ifdef CONFIG_FUNCTION_GRAPH_TRACER
3506 if (ftrace_graph_buf[0])
3507 set_ftrace_early_graph(ftrace_graph_buf);
3508#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
Steven Rostedt2af15d62009-05-28 13:37:24 -04003509}
3510
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003511int ftrace_regex_release(struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02003512{
3513 struct seq_file *m = (struct seq_file *)file->private_data;
3514 struct ftrace_iterator *iter;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003515 struct ftrace_hash **orig_hash;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003516 struct trace_parser *parser;
Steven Rostedted926f92011-05-03 13:25:24 -04003517 int filter_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003518 int ret;
Steven Rostedt5072c592008-05-12 21:20:43 +02003519
Steven Rostedt41c52c02008-05-22 11:46:33 -04003520 mutex_lock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003521 if (file->f_mode & FMODE_READ) {
3522 iter = m->private;
3523
3524 seq_release(inode, file);
3525 } else
3526 iter = file->private_data;
3527
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003528 parser = &iter->parser;
3529 if (trace_parser_loaded(parser)) {
3530 parser->buffer[parser->idx] = 0;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003531 ftrace_match_records(iter->hash, parser->buffer, parser->idx);
Steven Rostedt5072c592008-05-12 21:20:43 +02003532 }
3533
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003534 trace_parser_put(parser);
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003535
Steven Rostedt058e2972011-04-29 22:35:33 -04003536 if (file->f_mode & FMODE_WRITE) {
Steven Rostedted926f92011-05-03 13:25:24 -04003537 filter_hash = !!(iter->flags & FTRACE_ITER_FILTER);
3538
3539 if (filter_hash)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003540 orig_hash = &iter->ops->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04003541 else
3542 orig_hash = &iter->ops->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003543
Steven Rostedt058e2972011-04-29 22:35:33 -04003544 mutex_lock(&ftrace_lock);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04003545 ret = ftrace_hash_move(iter->ops, filter_hash,
3546 orig_hash, iter->hash);
3547 if (!ret && (iter->ops->flags & FTRACE_OPS_FL_ENABLED)
3548 && ftrace_enabled)
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01003549 ftrace_run_update_code(FTRACE_UPDATE_CALLS);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04003550
Steven Rostedt058e2972011-04-29 22:35:33 -04003551 mutex_unlock(&ftrace_lock);
3552 }
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003553 free_ftrace_hash(iter->hash);
3554 kfree(iter);
Steven Rostedt058e2972011-04-29 22:35:33 -04003555
Steven Rostedt41c52c02008-05-22 11:46:33 -04003556 mutex_unlock(&ftrace_regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003557 return 0;
3558}
3559
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003560static const struct file_operations ftrace_avail_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02003561 .open = ftrace_avail_open,
3562 .read = seq_read,
3563 .llseek = seq_lseek,
Li Zefan3be04b42009-08-17 16:54:03 +08003564 .release = seq_release_private,
Steven Rostedt5072c592008-05-12 21:20:43 +02003565};
3566
Steven Rostedt647bcd02011-05-03 14:39:21 -04003567static const struct file_operations ftrace_enabled_fops = {
3568 .open = ftrace_enabled_open,
3569 .read = seq_read,
3570 .llseek = seq_lseek,
3571 .release = seq_release_private,
3572};
3573
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003574static const struct file_operations ftrace_filter_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02003575 .open = ftrace_filter_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08003576 .read = seq_read,
Steven Rostedt5072c592008-05-12 21:20:43 +02003577 .write = ftrace_filter_write,
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003578 .llseek = ftrace_regex_lseek,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003579 .release = ftrace_regex_release,
Steven Rostedt5072c592008-05-12 21:20:43 +02003580};
3581
Steven Rostedt5e2336a2009-03-05 21:44:55 -05003582static const struct file_operations ftrace_notrace_fops = {
Steven Rostedt41c52c02008-05-22 11:46:33 -04003583 .open = ftrace_notrace_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08003584 .read = seq_read,
Steven Rostedt41c52c02008-05-22 11:46:33 -04003585 .write = ftrace_notrace_write,
3586 .llseek = ftrace_regex_lseek,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003587 .release = ftrace_regex_release,
Steven Rostedt41c52c02008-05-22 11:46:33 -04003588};
3589
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003590#ifdef CONFIG_FUNCTION_GRAPH_TRACER
3591
3592static DEFINE_MUTEX(graph_lock);
3593
3594int ftrace_graph_count;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003595int ftrace_graph_filter_enabled;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003596unsigned long ftrace_graph_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
3597
3598static void *
Li Zefan85951842009-06-24 09:54:00 +08003599__g_next(struct seq_file *m, loff_t *pos)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003600{
Li Zefan85951842009-06-24 09:54:00 +08003601 if (*pos >= ftrace_graph_count)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003602 return NULL;
Li Zefana4ec5e02009-09-18 14:06:28 +08003603 return &ftrace_graph_funcs[*pos];
Li Zefan85951842009-06-24 09:54:00 +08003604}
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003605
Li Zefan85951842009-06-24 09:54:00 +08003606static void *
3607g_next(struct seq_file *m, void *v, loff_t *pos)
3608{
3609 (*pos)++;
3610 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003611}
3612
3613static void *g_start(struct seq_file *m, loff_t *pos)
3614{
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003615 mutex_lock(&graph_lock);
3616
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003617 /* Nothing, tell g_show to print all functions are enabled */
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003618 if (!ftrace_graph_filter_enabled && !*pos)
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003619 return (void *)1;
3620
Li Zefan85951842009-06-24 09:54:00 +08003621 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003622}
3623
3624static void g_stop(struct seq_file *m, void *p)
3625{
3626 mutex_unlock(&graph_lock);
3627}
3628
3629static int g_show(struct seq_file *m, void *v)
3630{
3631 unsigned long *ptr = v;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003632
3633 if (!ptr)
3634 return 0;
3635
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003636 if (ptr == (unsigned long *)1) {
3637 seq_printf(m, "#### all functions enabled ####\n");
3638 return 0;
3639 }
3640
Steven Rostedtb375a112009-09-17 00:05:58 -04003641 seq_printf(m, "%ps\n", (void *)*ptr);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003642
3643 return 0;
3644}
3645
James Morris88e9d342009-09-22 16:43:43 -07003646static const struct seq_operations ftrace_graph_seq_ops = {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003647 .start = g_start,
3648 .next = g_next,
3649 .stop = g_stop,
3650 .show = g_show,
3651};
3652
3653static int
3654ftrace_graph_open(struct inode *inode, struct file *file)
3655{
3656 int ret = 0;
3657
3658 if (unlikely(ftrace_disabled))
3659 return -ENODEV;
3660
3661 mutex_lock(&graph_lock);
3662 if ((file->f_mode & FMODE_WRITE) &&
Steven Rostedt8650ae32009-07-22 23:29:30 -04003663 (file->f_flags & O_TRUNC)) {
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003664 ftrace_graph_filter_enabled = 0;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003665 ftrace_graph_count = 0;
3666 memset(ftrace_graph_funcs, 0, sizeof(ftrace_graph_funcs));
3667 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003668 mutex_unlock(&graph_lock);
3669
Li Zefana4ec5e02009-09-18 14:06:28 +08003670 if (file->f_mode & FMODE_READ)
3671 ret = seq_open(file, &ftrace_graph_seq_ops);
3672
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003673 return ret;
3674}
3675
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003676static int
Li Zefan87827112009-07-23 11:29:11 +08003677ftrace_graph_release(struct inode *inode, struct file *file)
3678{
3679 if (file->f_mode & FMODE_READ)
3680 seq_release(inode, file);
3681 return 0;
3682}
3683
3684static int
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003685ftrace_set_func(unsigned long *array, int *idx, char *buffer)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003686{
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003687 struct dyn_ftrace *rec;
3688 struct ftrace_page *pg;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003689 int search_len;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003690 int fail = 1;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003691 int type, not;
3692 char *search;
3693 bool exists;
3694 int i;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003695
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003696 /* decode regex */
Frederic Weisbecker3f6fe062009-09-24 21:31:51 +02003697 type = filter_parse_regex(buffer, strlen(buffer), &search, &not);
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003698 if (!not && *idx >= FTRACE_GRAPH_MAX_FUNCS)
3699 return -EBUSY;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003700
3701 search_len = strlen(search);
3702
Steven Rostedt52baf112009-02-14 01:15:39 -05003703 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04003704
3705 if (unlikely(ftrace_disabled)) {
3706 mutex_unlock(&ftrace_lock);
3707 return -ENODEV;
3708 }
3709
Steven Rostedt265c8312009-02-13 12:43:56 -05003710 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003711
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003712 if (ftrace_match_record(rec, NULL, search, search_len, type)) {
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003713 /* if it is in the array */
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003714 exists = false;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003715 for (i = 0; i < *idx; i++) {
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01003716 if (array[i] == rec->ip) {
3717 exists = true;
Steven Rostedt265c8312009-02-13 12:43:56 -05003718 break;
3719 }
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003720 }
3721
3722 if (!not) {
3723 fail = 0;
3724 if (!exists) {
3725 array[(*idx)++] = rec->ip;
3726 if (*idx >= FTRACE_GRAPH_MAX_FUNCS)
3727 goto out;
3728 }
3729 } else {
3730 if (exists) {
3731 array[i] = array[--(*idx)];
3732 array[*idx] = 0;
3733 fail = 0;
3734 }
3735 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003736 }
Steven Rostedt265c8312009-02-13 12:43:56 -05003737 } while_for_each_ftrace_rec();
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003738out:
Steven Rostedt52baf112009-02-14 01:15:39 -05003739 mutex_unlock(&ftrace_lock);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003740
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003741 if (fail)
3742 return -EINVAL;
3743
3744 ftrace_graph_filter_enabled = 1;
3745 return 0;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003746}
3747
3748static ssize_t
3749ftrace_graph_write(struct file *file, const char __user *ubuf,
3750 size_t cnt, loff_t *ppos)
3751{
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003752 struct trace_parser parser;
Li Zefan4ba79782009-09-22 13:52:20 +08003753 ssize_t read, ret;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003754
Li Zefanc7c6b1f2010-02-10 15:43:04 +08003755 if (!cnt)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003756 return 0;
3757
3758 mutex_lock(&graph_lock);
3759
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003760 if (trace_parser_get_init(&parser, FTRACE_BUFF_MAX)) {
3761 ret = -ENOMEM;
Li Zefan1eb90f12009-09-22 13:52:57 +08003762 goto out_unlock;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003763 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003764
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003765 read = trace_get_user(&parser, ubuf, cnt, ppos);
3766
Li Zefan4ba79782009-09-22 13:52:20 +08003767 if (read >= 0 && trace_parser_loaded((&parser))) {
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003768 parser.buffer[parser.idx] = 0;
3769
3770 /* we allow only one expression at a time */
Li Zefana4ec5e02009-09-18 14:06:28 +08003771 ret = ftrace_set_func(ftrace_graph_funcs, &ftrace_graph_count,
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003772 parser.buffer);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003773 if (ret)
Li Zefan1eb90f12009-09-22 13:52:57 +08003774 goto out_free;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003775 }
3776
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003777 ret = read;
Li Zefan1eb90f12009-09-22 13:52:57 +08003778
3779out_free:
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003780 trace_parser_put(&parser);
Li Zefan1eb90f12009-09-22 13:52:57 +08003781out_unlock:
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003782 mutex_unlock(&graph_lock);
3783
3784 return ret;
3785}
3786
3787static const struct file_operations ftrace_graph_fops = {
Li Zefan87827112009-07-23 11:29:11 +08003788 .open = ftrace_graph_open,
3789 .read = seq_read,
3790 .write = ftrace_graph_write,
3791 .release = ftrace_graph_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +02003792 .llseek = seq_lseek,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003793};
3794#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3795
Steven Rostedtdf4fc312008-11-26 00:16:23 -05003796static __init int ftrace_init_dyn_debugfs(struct dentry *d_tracer)
Steven Rostedt5072c592008-05-12 21:20:43 +02003797{
Steven Rostedt5072c592008-05-12 21:20:43 +02003798
Frederic Weisbecker5452af62009-03-27 00:25:38 +01003799 trace_create_file("available_filter_functions", 0444,
3800 d_tracer, NULL, &ftrace_avail_fops);
Steven Rostedt5072c592008-05-12 21:20:43 +02003801
Steven Rostedt647bcd02011-05-03 14:39:21 -04003802 trace_create_file("enabled_functions", 0444,
3803 d_tracer, NULL, &ftrace_enabled_fops);
3804
Frederic Weisbecker5452af62009-03-27 00:25:38 +01003805 trace_create_file("set_ftrace_filter", 0644, d_tracer,
3806 NULL, &ftrace_filter_fops);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003807
Frederic Weisbecker5452af62009-03-27 00:25:38 +01003808 trace_create_file("set_ftrace_notrace", 0644, d_tracer,
Steven Rostedt41c52c02008-05-22 11:46:33 -04003809 NULL, &ftrace_notrace_fops);
Steven Rostedtad90c0e2008-05-27 20:48:37 -04003810
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003811#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbecker5452af62009-03-27 00:25:38 +01003812 trace_create_file("set_graph_function", 0444, d_tracer,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003813 NULL,
3814 &ftrace_graph_fops);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05003815#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
3816
Steven Rostedt5072c592008-05-12 21:20:43 +02003817 return 0;
3818}
3819
Steven Rostedt9fd49322012-04-24 22:32:06 -04003820static int ftrace_cmp_ips(const void *a, const void *b)
Steven Rostedt68950612011-12-16 17:06:45 -05003821{
Steven Rostedt9fd49322012-04-24 22:32:06 -04003822 const unsigned long *ipa = a;
3823 const unsigned long *ipb = b;
Steven Rostedt68950612011-12-16 17:06:45 -05003824
Steven Rostedt9fd49322012-04-24 22:32:06 -04003825 if (*ipa > *ipb)
3826 return 1;
3827 if (*ipa < *ipb)
3828 return -1;
3829 return 0;
3830}
3831
3832static void ftrace_swap_ips(void *a, void *b, int size)
3833{
3834 unsigned long *ipa = a;
3835 unsigned long *ipb = b;
3836 unsigned long t;
3837
3838 t = *ipa;
3839 *ipa = *ipb;
3840 *ipb = t;
Steven Rostedt68950612011-12-16 17:06:45 -05003841}
3842
Jiri Olsa5cb084b2009-10-13 16:33:53 -04003843static int ftrace_process_locs(struct module *mod,
Steven Rostedt31e88902008-11-14 16:21:19 -08003844 unsigned long *start,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003845 unsigned long *end)
3846{
Steven Rostedt706c81f2012-04-24 23:45:26 -04003847 struct ftrace_page *start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05003848 struct ftrace_page *pg;
Steven Rostedt706c81f2012-04-24 23:45:26 -04003849 struct dyn_ftrace *rec;
Steven Rostedta7900872011-12-16 16:23:44 -05003850 unsigned long count;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003851 unsigned long *p;
3852 unsigned long addr;
Steven Rostedt4376cac2011-06-24 23:28:13 -04003853 unsigned long flags = 0; /* Shut up gcc */
Steven Rostedta7900872011-12-16 16:23:44 -05003854 int ret = -ENOMEM;
3855
3856 count = end - start;
3857
3858 if (!count)
3859 return 0;
3860
Steven Rostedt9fd49322012-04-24 22:32:06 -04003861 sort(start, count, sizeof(*start),
3862 ftrace_cmp_ips, ftrace_swap_ips);
3863
Steven Rostedt706c81f2012-04-24 23:45:26 -04003864 start_pg = ftrace_allocate_pages(count);
3865 if (!start_pg)
Steven Rostedta7900872011-12-16 16:23:44 -05003866 return -ENOMEM;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003867
Steven Rostedte6ea44e2009-02-14 01:42:44 -05003868 mutex_lock(&ftrace_lock);
Steven Rostedta7900872011-12-16 16:23:44 -05003869
Steven Rostedt32082302011-12-16 14:42:37 -05003870 /*
3871 * Core and each module needs their own pages, as
3872 * modules will free them when they are removed.
3873 * Force a new page to be allocated for modules.
3874 */
Steven Rostedta7900872011-12-16 16:23:44 -05003875 if (!mod) {
3876 WARN_ON(ftrace_pages || ftrace_pages_start);
3877 /* First initialization */
Steven Rostedt706c81f2012-04-24 23:45:26 -04003878 ftrace_pages = ftrace_pages_start = start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05003879 } else {
Steven Rostedt32082302011-12-16 14:42:37 -05003880 if (!ftrace_pages)
Steven Rostedta7900872011-12-16 16:23:44 -05003881 goto out;
Steven Rostedt32082302011-12-16 14:42:37 -05003882
Steven Rostedta7900872011-12-16 16:23:44 -05003883 if (WARN_ON(ftrace_pages->next)) {
3884 /* Hmm, we have free pages? */
3885 while (ftrace_pages->next)
3886 ftrace_pages = ftrace_pages->next;
Steven Rostedt32082302011-12-16 14:42:37 -05003887 }
Steven Rostedta7900872011-12-16 16:23:44 -05003888
Steven Rostedt706c81f2012-04-24 23:45:26 -04003889 ftrace_pages->next = start_pg;
Steven Rostedt32082302011-12-16 14:42:37 -05003890 }
3891
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003892 p = start;
Steven Rostedt706c81f2012-04-24 23:45:26 -04003893 pg = start_pg;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003894 while (p < end) {
3895 addr = ftrace_call_adjust(*p++);
Steven Rostedt20e52272008-11-14 16:21:19 -08003896 /*
3897 * Some architecture linkers will pad between
3898 * the different mcount_loc sections of different
3899 * object files to satisfy alignments.
3900 * Skip any NULL pointers.
3901 */
3902 if (!addr)
3903 continue;
Steven Rostedt706c81f2012-04-24 23:45:26 -04003904
3905 if (pg->index == pg->size) {
3906 /* We should have allocated enough */
3907 if (WARN_ON(!pg->next))
3908 break;
3909 pg = pg->next;
3910 }
3911
3912 rec = &pg->records[pg->index++];
3913 rec->ip = addr;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003914 }
3915
Steven Rostedt706c81f2012-04-24 23:45:26 -04003916 /* We should have used all pages */
3917 WARN_ON(pg->next);
3918
3919 /* Assign the last page to ftrace_pages */
3920 ftrace_pages = pg;
3921
Steven Rostedt85ae32a2011-12-16 16:30:31 -05003922 /* These new locations need to be initialized */
Steven Rostedt706c81f2012-04-24 23:45:26 -04003923 ftrace_new_pgs = start_pg;
Steven Rostedt85ae32a2011-12-16 16:30:31 -05003924
Steven Rostedta4f18ed2011-06-07 09:26:46 -04003925 /*
Steven Rostedt4376cac2011-06-24 23:28:13 -04003926 * We only need to disable interrupts on start up
3927 * because we are modifying code that an interrupt
3928 * may execute, and the modification is not atomic.
3929 * But for modules, nothing runs the code we modify
3930 * until we are finished with it, and there's no
3931 * reason to cause large interrupt latencies while we do it.
Steven Rostedta4f18ed2011-06-07 09:26:46 -04003932 */
Steven Rostedt4376cac2011-06-24 23:28:13 -04003933 if (!mod)
3934 local_irq_save(flags);
Steven Rostedt31e88902008-11-14 16:21:19 -08003935 ftrace_update_code(mod);
Steven Rostedt4376cac2011-06-24 23:28:13 -04003936 if (!mod)
3937 local_irq_restore(flags);
Steven Rostedta7900872011-12-16 16:23:44 -05003938 ret = 0;
3939 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05003940 mutex_unlock(&ftrace_lock);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003941
Steven Rostedta7900872011-12-16 16:23:44 -05003942 return ret;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04003943}
3944
Steven Rostedt93eb6772009-04-15 13:24:06 -04003945#ifdef CONFIG_MODULES
Steven Rostedt32082302011-12-16 14:42:37 -05003946
3947#define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next)
3948
jolsa@redhat.come7247a12009-10-07 19:00:35 +02003949void ftrace_release_mod(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04003950{
3951 struct dyn_ftrace *rec;
Steven Rostedt32082302011-12-16 14:42:37 -05003952 struct ftrace_page **last_pg;
Steven Rostedt93eb6772009-04-15 13:24:06 -04003953 struct ftrace_page *pg;
Steven Rostedta7900872011-12-16 16:23:44 -05003954 int order;
Steven Rostedt93eb6772009-04-15 13:24:06 -04003955
Steven Rostedt93eb6772009-04-15 13:24:06 -04003956 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04003957
3958 if (ftrace_disabled)
3959 goto out_unlock;
3960
Steven Rostedt32082302011-12-16 14:42:37 -05003961 /*
3962 * Each module has its own ftrace_pages, remove
3963 * them from the list.
3964 */
3965 last_pg = &ftrace_pages_start;
3966 for (pg = ftrace_pages_start; pg; pg = *last_pg) {
3967 rec = &pg->records[0];
jolsa@redhat.come7247a12009-10-07 19:00:35 +02003968 if (within_module_core(rec->ip, mod)) {
Steven Rostedt93eb6772009-04-15 13:24:06 -04003969 /*
Steven Rostedt32082302011-12-16 14:42:37 -05003970 * As core pages are first, the first
3971 * page should never be a module page.
Steven Rostedt93eb6772009-04-15 13:24:06 -04003972 */
Steven Rostedt32082302011-12-16 14:42:37 -05003973 if (WARN_ON(pg == ftrace_pages_start))
3974 goto out_unlock;
3975
3976 /* Check if we are deleting the last page */
3977 if (pg == ftrace_pages)
3978 ftrace_pages = next_to_ftrace_page(last_pg);
3979
3980 *last_pg = pg->next;
Steven Rostedta7900872011-12-16 16:23:44 -05003981 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
3982 free_pages((unsigned long)pg->records, order);
3983 kfree(pg);
Steven Rostedt32082302011-12-16 14:42:37 -05003984 } else
3985 last_pg = &pg->next;
3986 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04003987 out_unlock:
Steven Rostedt93eb6772009-04-15 13:24:06 -04003988 mutex_unlock(&ftrace_lock);
3989}
3990
3991static void ftrace_init_module(struct module *mod,
3992 unsigned long *start, unsigned long *end)
Steven Rostedt90d595f2008-08-14 15:45:09 -04003993{
Steven Rostedt00fd61a2008-08-15 21:40:04 -04003994 if (ftrace_disabled || start == end)
Steven Rostedtfed19392008-08-14 22:47:19 -04003995 return;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04003996 ftrace_process_locs(mod, start, end);
Steven Rostedt90d595f2008-08-14 15:45:09 -04003997}
3998
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05003999static int ftrace_module_notify_enter(struct notifier_block *self,
4000 unsigned long val, void *data)
Steven Rostedt93eb6772009-04-15 13:24:06 -04004001{
4002 struct module *mod = data;
4003
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05004004 if (val == MODULE_STATE_COMING)
Steven Rostedt93eb6772009-04-15 13:24:06 -04004005 ftrace_init_module(mod, mod->ftrace_callsites,
4006 mod->ftrace_callsites +
4007 mod->num_ftrace_callsites);
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05004008 return 0;
4009}
4010
4011static int ftrace_module_notify_exit(struct notifier_block *self,
4012 unsigned long val, void *data)
4013{
4014 struct module *mod = data;
4015
4016 if (val == MODULE_STATE_GOING)
jolsa@redhat.come7247a12009-10-07 19:00:35 +02004017 ftrace_release_mod(mod);
Steven Rostedt93eb6772009-04-15 13:24:06 -04004018
4019 return 0;
4020}
4021#else
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05004022static int ftrace_module_notify_enter(struct notifier_block *self,
4023 unsigned long val, void *data)
4024{
4025 return 0;
4026}
4027static int ftrace_module_notify_exit(struct notifier_block *self,
4028 unsigned long val, void *data)
Steven Rostedt93eb6772009-04-15 13:24:06 -04004029{
4030 return 0;
4031}
4032#endif /* CONFIG_MODULES */
4033
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05004034struct notifier_block ftrace_module_enter_nb = {
4035 .notifier_call = ftrace_module_notify_enter,
Steven Rostedtc1bf08a2012-12-14 09:48:15 -05004036 .priority = INT_MAX, /* Run before anything that can use kprobes */
Steven Rostedt93eb6772009-04-15 13:24:06 -04004037};
4038
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05004039struct notifier_block ftrace_module_exit_nb = {
4040 .notifier_call = ftrace_module_notify_exit,
4041 .priority = INT_MIN, /* Run after anything that can remove kprobes */
4042};
4043
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004044extern unsigned long __start_mcount_loc[];
4045extern unsigned long __stop_mcount_loc[];
4046
4047void __init ftrace_init(void)
4048{
4049 unsigned long count, addr, flags;
4050 int ret;
4051
4052 /* Keep the ftrace pointer to the stub */
4053 addr = (unsigned long)ftrace_stub;
4054
4055 local_irq_save(flags);
4056 ftrace_dyn_arch_init(&addr);
4057 local_irq_restore(flags);
4058
4059 /* ftrace_dyn_arch_init places the return code in addr */
4060 if (addr)
4061 goto failed;
4062
4063 count = __stop_mcount_loc - __start_mcount_loc;
4064
4065 ret = ftrace_dyn_table_alloc(count);
4066 if (ret)
4067 goto failed;
4068
4069 last_ftrace_enabled = ftrace_enabled = 1;
4070
Jiri Olsa5cb084b2009-10-13 16:33:53 -04004071 ret = ftrace_process_locs(NULL,
Steven Rostedt31e88902008-11-14 16:21:19 -08004072 __start_mcount_loc,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004073 __stop_mcount_loc);
4074
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05004075 ret = register_module_notifier(&ftrace_module_enter_nb);
Ming Lei24ed0c42009-05-17 15:31:38 +08004076 if (ret)
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05004077 pr_warning("Failed to register trace ftrace module enter notifier\n");
4078
4079 ret = register_module_notifier(&ftrace_module_exit_nb);
4080 if (ret)
4081 pr_warning("Failed to register trace ftrace module exit notifier\n");
Steven Rostedt93eb6772009-04-15 13:24:06 -04004082
Steven Rostedt2af15d62009-05-28 13:37:24 -04004083 set_ftrace_early_filters();
4084
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004085 return;
4086 failed:
4087 ftrace_disabled = 1;
4088}
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004089
Steven Rostedt3d083392008-05-12 21:20:42 +02004090#else
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01004091
Steven Rostedt2b499382011-05-03 22:49:52 -04004092static struct ftrace_ops global_ops = {
Steven Rostedtbd69c302011-05-03 21:55:54 -04004093 .func = ftrace_stub,
Steven Rostedt47409742012-07-20 11:04:44 -04004094 .flags = FTRACE_OPS_FL_RECURSION_SAFE,
Steven Rostedtbd69c302011-05-03 21:55:54 -04004095};
4096
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01004097static int __init ftrace_nodyn_init(void)
4098{
4099 ftrace_enabled = 1;
4100 return 0;
4101}
Steven Rostedt6f415672012-10-05 12:13:07 -04004102core_initcall(ftrace_nodyn_init);
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01004103
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004104static inline int ftrace_init_dyn_debugfs(struct dentry *d_tracer) { return 0; }
4105static inline void ftrace_startup_enable(int command) { }
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05004106/* Keep as macros so we do not need to define the commands */
Steven Rostedt3b6cfdb2011-05-23 15:33:49 -04004107# define ftrace_startup(ops, command) \
4108 ({ \
4109 (ops)->flags |= FTRACE_OPS_FL_ENABLED; \
4110 0; \
4111 })
Steven Rostedtbd69c302011-05-03 21:55:54 -04004112# define ftrace_shutdown(ops, command) do { } while (0)
Ingo Molnarc7aafc52008-05-12 21:20:45 +02004113# define ftrace_startup_sysctl() do { } while (0)
4114# define ftrace_shutdown_sysctl() do { } while (0)
Steven Rostedtb8489142011-05-04 09:27:52 -04004115
4116static inline int
4117ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip)
4118{
4119 return 1;
4120}
4121
Steven Rostedt3d083392008-05-12 21:20:42 +02004122#endif /* CONFIG_DYNAMIC_FTRACE */
4123
Steven Rostedtb8489142011-05-04 09:27:52 -04004124static void
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04004125ftrace_ops_control_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04004126 struct ftrace_ops *op, struct pt_regs *regs)
Jiri Olsae2484912012-02-15 15:51:48 +01004127{
Jiri Olsae2484912012-02-15 15:51:48 +01004128 if (unlikely(trace_recursion_test(TRACE_CONTROL_BIT)))
4129 return;
4130
4131 /*
4132 * Some of the ops may be dynamically allocated,
4133 * they must be freed after a synchronize_sched().
4134 */
4135 preempt_disable_notrace();
4136 trace_recursion_set(TRACE_CONTROL_BIT);
Steven Rostedt0a016402012-11-02 17:03:03 -04004137 do_for_each_ftrace_op(op, ftrace_control_list) {
Jiri Olsae2484912012-02-15 15:51:48 +01004138 if (!ftrace_function_local_disabled(op) &&
4139 ftrace_ops_test(op, ip))
Steven Rostedta1e2e312011-08-09 12:50:46 -04004140 op->func(ip, parent_ip, op, regs);
Steven Rostedt0a016402012-11-02 17:03:03 -04004141 } while_for_each_ftrace_op(op);
Jiri Olsae2484912012-02-15 15:51:48 +01004142 trace_recursion_clear(TRACE_CONTROL_BIT);
4143 preempt_enable_notrace();
4144}
4145
4146static struct ftrace_ops control_ops = {
4147 .func = ftrace_ops_control_func,
Steven Rostedt47409742012-07-20 11:04:44 -04004148 .flags = FTRACE_OPS_FL_RECURSION_SAFE,
Jiri Olsae2484912012-02-15 15:51:48 +01004149};
4150
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04004151static inline void
4152__ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04004153 struct ftrace_ops *ignored, struct pt_regs *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04004154{
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04004155 struct ftrace_ops *op;
Steven Rostedtedc15ca2012-11-02 17:47:21 -04004156 int bit;
Steven Rostedtb8489142011-05-04 09:27:52 -04004157
Steven Rostedtccf36722012-06-05 09:44:25 -04004158 if (function_trace_stop)
4159 return;
4160
Steven Rostedtedc15ca2012-11-02 17:47:21 -04004161 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
4162 if (bit < 0)
4163 return;
Steven Rostedtc29f1222012-11-02 17:17:59 -04004164
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04004165 /*
4166 * Some of the ops may be dynamically allocated,
4167 * they must be freed after a synchronize_sched().
4168 */
4169 preempt_disable_notrace();
Steven Rostedt0a016402012-11-02 17:03:03 -04004170 do_for_each_ftrace_op(op, ftrace_ops_list) {
Steven Rostedtb8489142011-05-04 09:27:52 -04004171 if (ftrace_ops_test(op, ip))
Steven Rostedta1e2e312011-08-09 12:50:46 -04004172 op->func(ip, parent_ip, op, regs);
Steven Rostedt0a016402012-11-02 17:03:03 -04004173 } while_for_each_ftrace_op(op);
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04004174 preempt_enable_notrace();
Steven Rostedtedc15ca2012-11-02 17:47:21 -04004175 trace_clear_recursion(bit);
Steven Rostedtb8489142011-05-04 09:27:52 -04004176}
4177
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04004178/*
4179 * Some archs only support passing ip and parent_ip. Even though
4180 * the list function ignores the op parameter, we do not want any
4181 * C side effects, where a function is called without the caller
4182 * sending a third parameter.
Steven Rostedta1e2e312011-08-09 12:50:46 -04004183 * Archs are to support both the regs and ftrace_ops at the same time.
4184 * If they support ftrace_ops, it is assumed they support regs.
4185 * If call backs want to use regs, they must either check for regs
Masami Hiramatsu06aeaae2012-09-28 17:15:17 +09004186 * being NULL, or CONFIG_DYNAMIC_FTRACE_WITH_REGS.
4187 * Note, CONFIG_DYNAMIC_FTRACE_WITH_REGS expects a full regs to be saved.
Steven Rostedta1e2e312011-08-09 12:50:46 -04004188 * An architecture can pass partial regs with ftrace_ops and still
4189 * set the ARCH_SUPPORT_FTARCE_OPS.
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04004190 */
4191#if ARCH_SUPPORTS_FTRACE_OPS
4192static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04004193 struct ftrace_ops *op, struct pt_regs *regs)
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04004194{
Steven Rostedta1e2e312011-08-09 12:50:46 -04004195 __ftrace_ops_list_func(ip, parent_ip, NULL, regs);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04004196}
4197#else
4198static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip)
4199{
Steven Rostedta1e2e312011-08-09 12:50:46 -04004200 __ftrace_ops_list_func(ip, parent_ip, NULL, NULL);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04004201}
4202#endif
4203
Steven Rostedte32d8952008-12-04 00:26:41 -05004204static void clear_ftrace_swapper(void)
4205{
4206 struct task_struct *p;
4207 int cpu;
4208
4209 get_online_cpus();
4210 for_each_online_cpu(cpu) {
4211 p = idle_task(cpu);
4212 clear_tsk_trace_trace(p);
4213 }
4214 put_online_cpus();
4215}
4216
4217static void set_ftrace_swapper(void)
4218{
4219 struct task_struct *p;
4220 int cpu;
4221
4222 get_online_cpus();
4223 for_each_online_cpu(cpu) {
4224 p = idle_task(cpu);
4225 set_tsk_trace_trace(p);
4226 }
4227 put_online_cpus();
4228}
4229
4230static void clear_ftrace_pid(struct pid *pid)
Steven Rostedt978f3a42008-12-04 00:26:40 -05004231{
4232 struct task_struct *p;
4233
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01004234 rcu_read_lock();
Steven Rostedte32d8952008-12-04 00:26:41 -05004235 do_each_pid_task(pid, PIDTYPE_PID, p) {
Steven Rostedt978f3a42008-12-04 00:26:40 -05004236 clear_tsk_trace_trace(p);
Steven Rostedte32d8952008-12-04 00:26:41 -05004237 } while_each_pid_task(pid, PIDTYPE_PID, p);
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01004238 rcu_read_unlock();
4239
Steven Rostedte32d8952008-12-04 00:26:41 -05004240 put_pid(pid);
Steven Rostedt978f3a42008-12-04 00:26:40 -05004241}
4242
Steven Rostedte32d8952008-12-04 00:26:41 -05004243static void set_ftrace_pid(struct pid *pid)
Steven Rostedt978f3a42008-12-04 00:26:40 -05004244{
4245 struct task_struct *p;
4246
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01004247 rcu_read_lock();
Steven Rostedt978f3a42008-12-04 00:26:40 -05004248 do_each_pid_task(pid, PIDTYPE_PID, p) {
4249 set_tsk_trace_trace(p);
4250 } while_each_pid_task(pid, PIDTYPE_PID, p);
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01004251 rcu_read_unlock();
Steven Rostedt978f3a42008-12-04 00:26:40 -05004252}
4253
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004254static void clear_ftrace_pid_task(struct pid *pid)
Steven Rostedte32d8952008-12-04 00:26:41 -05004255{
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004256 if (pid == ftrace_swapper_pid)
Steven Rostedte32d8952008-12-04 00:26:41 -05004257 clear_ftrace_swapper();
4258 else
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004259 clear_ftrace_pid(pid);
Steven Rostedte32d8952008-12-04 00:26:41 -05004260}
4261
4262static void set_ftrace_pid_task(struct pid *pid)
4263{
4264 if (pid == ftrace_swapper_pid)
4265 set_ftrace_swapper();
4266 else
4267 set_ftrace_pid(pid);
4268}
4269
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004270static int ftrace_pid_add(int p)
4271{
4272 struct pid *pid;
4273 struct ftrace_pid *fpid;
4274 int ret = -EINVAL;
4275
4276 mutex_lock(&ftrace_lock);
4277
4278 if (!p)
4279 pid = ftrace_swapper_pid;
4280 else
4281 pid = find_get_pid(p);
4282
4283 if (!pid)
4284 goto out;
4285
4286 ret = 0;
4287
4288 list_for_each_entry(fpid, &ftrace_pids, list)
4289 if (fpid->pid == pid)
4290 goto out_put;
4291
4292 ret = -ENOMEM;
4293
4294 fpid = kmalloc(sizeof(*fpid), GFP_KERNEL);
4295 if (!fpid)
4296 goto out_put;
4297
4298 list_add(&fpid->list, &ftrace_pids);
4299 fpid->pid = pid;
4300
4301 set_ftrace_pid_task(pid);
4302
4303 ftrace_update_pid_func();
4304 ftrace_startup_enable(0);
4305
4306 mutex_unlock(&ftrace_lock);
4307 return 0;
4308
4309out_put:
4310 if (pid != ftrace_swapper_pid)
4311 put_pid(pid);
4312
4313out:
4314 mutex_unlock(&ftrace_lock);
4315 return ret;
4316}
4317
4318static void ftrace_pid_reset(void)
4319{
4320 struct ftrace_pid *fpid, *safe;
4321
4322 mutex_lock(&ftrace_lock);
4323 list_for_each_entry_safe(fpid, safe, &ftrace_pids, list) {
4324 struct pid *pid = fpid->pid;
4325
4326 clear_ftrace_pid_task(pid);
4327
4328 list_del(&fpid->list);
4329 kfree(fpid);
4330 }
4331
4332 ftrace_update_pid_func();
4333 ftrace_startup_enable(0);
4334
4335 mutex_unlock(&ftrace_lock);
4336}
4337
4338static void *fpid_start(struct seq_file *m, loff_t *pos)
4339{
4340 mutex_lock(&ftrace_lock);
4341
4342 if (list_empty(&ftrace_pids) && (!*pos))
4343 return (void *) 1;
4344
4345 return seq_list_start(&ftrace_pids, *pos);
4346}
4347
4348static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
4349{
4350 if (v == (void *)1)
4351 return NULL;
4352
4353 return seq_list_next(v, &ftrace_pids, pos);
4354}
4355
4356static void fpid_stop(struct seq_file *m, void *p)
4357{
4358 mutex_unlock(&ftrace_lock);
4359}
4360
4361static int fpid_show(struct seq_file *m, void *v)
4362{
4363 const struct ftrace_pid *fpid = list_entry(v, struct ftrace_pid, list);
4364
4365 if (v == (void *)1) {
4366 seq_printf(m, "no pid\n");
4367 return 0;
4368 }
4369
4370 if (fpid->pid == ftrace_swapper_pid)
4371 seq_printf(m, "swapper tasks\n");
4372 else
4373 seq_printf(m, "%u\n", pid_vnr(fpid->pid));
4374
4375 return 0;
4376}
4377
4378static const struct seq_operations ftrace_pid_sops = {
4379 .start = fpid_start,
4380 .next = fpid_next,
4381 .stop = fpid_stop,
4382 .show = fpid_show,
4383};
4384
4385static int
4386ftrace_pid_open(struct inode *inode, struct file *file)
4387{
4388 int ret = 0;
4389
4390 if ((file->f_mode & FMODE_WRITE) &&
4391 (file->f_flags & O_TRUNC))
4392 ftrace_pid_reset();
4393
4394 if (file->f_mode & FMODE_READ)
4395 ret = seq_open(file, &ftrace_pid_sops);
4396
4397 return ret;
4398}
4399
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004400static ssize_t
4401ftrace_pid_write(struct file *filp, const char __user *ubuf,
4402 size_t cnt, loff_t *ppos)
4403{
Ingo Molnar457dc922009-11-23 11:03:28 +01004404 char buf[64], *tmp;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004405 long val;
4406 int ret;
4407
4408 if (cnt >= sizeof(buf))
4409 return -EINVAL;
4410
4411 if (copy_from_user(&buf, ubuf, cnt))
4412 return -EFAULT;
4413
4414 buf[cnt] = 0;
4415
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004416 /*
4417 * Allow "echo > set_ftrace_pid" or "echo -n '' > set_ftrace_pid"
4418 * to clean the filter quietly.
4419 */
Ingo Molnar457dc922009-11-23 11:03:28 +01004420 tmp = strstrip(buf);
4421 if (strlen(tmp) == 0)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004422 return 1;
4423
Daniel Walterbcd83ea2012-09-26 22:08:38 +02004424 ret = kstrtol(tmp, 10, &val);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004425 if (ret < 0)
4426 return ret;
4427
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004428 ret = ftrace_pid_add(val);
Steven Rostedt978f3a42008-12-04 00:26:40 -05004429
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004430 return ret ? ret : cnt;
4431}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004432
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004433static int
4434ftrace_pid_release(struct inode *inode, struct file *file)
4435{
4436 if (file->f_mode & FMODE_READ)
4437 seq_release(inode, file);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004438
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004439 return 0;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004440}
4441
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004442static const struct file_operations ftrace_pid_fops = {
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04004443 .open = ftrace_pid_open,
4444 .write = ftrace_pid_write,
4445 .read = seq_read,
4446 .llseek = seq_lseek,
4447 .release = ftrace_pid_release,
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004448};
4449
4450static __init int ftrace_init_debugfs(void)
4451{
4452 struct dentry *d_tracer;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004453
4454 d_tracer = tracing_init_dentry();
4455 if (!d_tracer)
4456 return 0;
4457
4458 ftrace_init_dyn_debugfs(d_tracer);
4459
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004460 trace_create_file("set_ftrace_pid", 0644, d_tracer,
4461 NULL, &ftrace_pid_fops);
Steven Rostedt493762f2009-03-23 17:12:36 -04004462
4463 ftrace_profile_debugfs(d_tracer);
4464
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004465 return 0;
4466}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05004467fs_initcall(ftrace_init_debugfs);
4468
Steven Rostedt3d083392008-05-12 21:20:42 +02004469/**
Steven Rostedt81adbdc2008-10-23 09:33:02 -04004470 * ftrace_kill - kill ftrace
Steven Rostedta2bb6a32008-07-10 20:58:15 -04004471 *
4472 * This function should be used by panic code. It stops ftrace
4473 * but in a not so nice way. If you need to simply kill ftrace
4474 * from a non-atomic section, use ftrace_kill.
4475 */
Steven Rostedt81adbdc2008-10-23 09:33:02 -04004476void ftrace_kill(void)
Steven Rostedta2bb6a32008-07-10 20:58:15 -04004477{
4478 ftrace_disabled = 1;
4479 ftrace_enabled = 0;
Steven Rostedta2bb6a32008-07-10 20:58:15 -04004480 clear_ftrace_function();
4481}
4482
4483/**
Steven Rostedte0a413f2011-09-29 21:26:16 -04004484 * Test if ftrace is dead or not.
4485 */
4486int ftrace_is_dead(void)
4487{
4488 return ftrace_disabled;
4489}
4490
4491/**
Steven Rostedt3d083392008-05-12 21:20:42 +02004492 * register_ftrace_function - register a function for profiling
4493 * @ops - ops structure that holds the function for profiling.
4494 *
4495 * Register a function to be called by all functions in the
4496 * kernel.
4497 *
4498 * Note: @ops->func and all the functions it calls must be labeled
4499 * with "notrace", otherwise it will go into a
4500 * recursive loop.
4501 */
4502int register_ftrace_function(struct ftrace_ops *ops)
4503{
Steven Rostedt45a4a232011-04-21 23:16:46 -04004504 int ret = -1;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02004505
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004506 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004507
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004508 ret = __register_ftrace_function(ops);
Steven Rostedtb8489142011-05-04 09:27:52 -04004509 if (!ret)
Steven Rostedta1cd6172011-05-23 15:24:25 -04004510 ret = ftrace_startup(ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04004511
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004512 mutex_unlock(&ftrace_lock);
Borislav Petkov8d240dd2012-03-29 19:11:40 +02004513
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004514 return ret;
Steven Rostedt3d083392008-05-12 21:20:42 +02004515}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04004516EXPORT_SYMBOL_GPL(register_ftrace_function);
Steven Rostedt3d083392008-05-12 21:20:42 +02004517
4518/**
Uwe Kleine-Koenig32632922009-01-12 23:35:50 +01004519 * unregister_ftrace_function - unregister a function for profiling.
Steven Rostedt3d083392008-05-12 21:20:42 +02004520 * @ops - ops structure that holds the function to unregister
4521 *
4522 * Unregister a function that was added to be called by ftrace profiling.
4523 */
4524int unregister_ftrace_function(struct ftrace_ops *ops)
4525{
4526 int ret;
4527
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004528 mutex_lock(&ftrace_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02004529 ret = __unregister_ftrace_function(ops);
Steven Rostedtb8489142011-05-04 09:27:52 -04004530 if (!ret)
4531 ftrace_shutdown(ops, 0);
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004532 mutex_unlock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004533
4534 return ret;
4535}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04004536EXPORT_SYMBOL_GPL(unregister_ftrace_function);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004537
Ingo Molnare309b412008-05-12 21:20:51 +02004538int
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004539ftrace_enable_sysctl(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07004540 void __user *buffer, size_t *lenp,
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004541 loff_t *ppos)
4542{
Steven Rostedt45a4a232011-04-21 23:16:46 -04004543 int ret = -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02004544
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004545 mutex_lock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004546
Steven Rostedt45a4a232011-04-21 23:16:46 -04004547 if (unlikely(ftrace_disabled))
4548 goto out;
4549
4550 ret = proc_dointvec(table, write, buffer, lenp, ppos);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004551
Li Zefana32c7762009-06-26 16:55:51 +08004552 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004553 goto out;
4554
Li Zefana32c7762009-06-26 16:55:51 +08004555 last_ftrace_enabled = !!ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004556
4557 if (ftrace_enabled) {
4558
4559 ftrace_startup_sysctl();
4560
4561 /* we are starting ftrace again */
Steven Rostedtb8489142011-05-04 09:27:52 -04004562 if (ftrace_ops_list != &ftrace_list_end) {
4563 if (ftrace_ops_list->next == &ftrace_list_end)
4564 ftrace_trace_function = ftrace_ops_list->func;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004565 else
Steven Rostedtb8489142011-05-04 09:27:52 -04004566 ftrace_trace_function = ftrace_ops_list_func;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02004567 }
4568
4569 } else {
4570 /* stopping ftrace calls (just send to ftrace_stub) */
4571 ftrace_trace_function = ftrace_stub;
4572
4573 ftrace_shutdown_sysctl();
4574 }
4575
4576 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004577 mutex_unlock(&ftrace_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02004578 return ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02004579}
Ingo Molnarf17845e2008-10-24 12:47:10 +02004580
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004581#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004582
Steven Rostedt597af812009-04-03 15:24:12 -04004583static int ftrace_graph_active;
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08004584static struct notifier_block ftrace_suspend_notifier;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004585
Steven Rostedte49dc192008-12-02 23:50:05 -05004586int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
4587{
4588 return 0;
4589}
4590
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01004591/* The callbacks that hook a function */
4592trace_func_graph_ret_t ftrace_graph_return =
4593 (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05004594trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004595
4596/* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
4597static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
4598{
4599 int i;
4600 int ret = 0;
4601 unsigned long flags;
4602 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
4603 struct task_struct *g, *t;
4604
4605 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
4606 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
4607 * sizeof(struct ftrace_ret_stack),
4608 GFP_KERNEL);
4609 if (!ret_stack_list[i]) {
4610 start = 0;
4611 end = i;
4612 ret = -ENOMEM;
4613 goto free;
4614 }
4615 }
4616
4617 read_lock_irqsave(&tasklist_lock, flags);
4618 do_each_thread(g, t) {
4619 if (start == end) {
4620 ret = -EAGAIN;
4621 goto unlock;
4622 }
4623
4624 if (t->ret_stack == NULL) {
Frederic Weisbecker380c4b12008-12-06 03:43:41 +01004625 atomic_set(&t->tracing_graph_pause, 0);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004626 atomic_set(&t->trace_overrun, 0);
Steven Rostedt26c01622009-06-02 14:01:19 -04004627 t->curr_ret_stack = -1;
4628 /* Make sure the tasks see the -1 first: */
4629 smp_wmb();
4630 t->ret_stack = ret_stack_list[start++];
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004631 }
4632 } while_each_thread(g, t);
4633
4634unlock:
4635 read_unlock_irqrestore(&tasklist_lock, flags);
4636free:
4637 for (i = start; i < end; i++)
4638 kfree(ret_stack_list[i]);
4639 return ret;
4640}
4641
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004642static void
Steven Rostedt38516ab2010-04-20 17:04:50 -04004643ftrace_graph_probe_sched_switch(void *ignore,
4644 struct task_struct *prev, struct task_struct *next)
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004645{
4646 unsigned long long timestamp;
4647 int index;
4648
Steven Rostedtbe6f1642009-03-24 11:06:24 -04004649 /*
4650 * Does the user want to count the time a function was asleep.
4651 * If so, do not update the time stamps.
4652 */
4653 if (trace_flags & TRACE_ITER_SLEEP_TIME)
4654 return;
4655
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004656 timestamp = trace_clock_local();
4657
4658 prev->ftrace_timestamp = timestamp;
4659
4660 /* only process tasks that we timestamped */
4661 if (!next->ftrace_timestamp)
4662 return;
4663
4664 /*
4665 * Update all the counters in next to make up for the
4666 * time next was sleeping.
4667 */
4668 timestamp -= next->ftrace_timestamp;
4669
4670 for (index = next->curr_ret_stack; index >= 0; index--)
4671 next->ret_stack[index].calltime += timestamp;
4672}
4673
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004674/* Allocate a return stack for each task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004675static int start_graph_tracing(void)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004676{
4677 struct ftrace_ret_stack **ret_stack_list;
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01004678 int ret, cpu;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004679
4680 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
4681 sizeof(struct ftrace_ret_stack *),
4682 GFP_KERNEL);
4683
4684 if (!ret_stack_list)
4685 return -ENOMEM;
4686
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01004687 /* The cpu_boot init_task->ret_stack will never be freed */
Steven Rostedt179c4982009-06-02 12:03:19 -04004688 for_each_online_cpu(cpu) {
4689 if (!idle_task(cpu)->ret_stack)
Steven Rostedt868baf02011-02-10 21:26:13 -05004690 ftrace_graph_init_idle_task(idle_task(cpu), cpu);
Steven Rostedt179c4982009-06-02 12:03:19 -04004691 }
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01004692
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004693 do {
4694 ret = alloc_retstack_tasklist(ret_stack_list);
4695 } while (ret == -EAGAIN);
4696
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004697 if (!ret) {
Steven Rostedt38516ab2010-04-20 17:04:50 -04004698 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Steven Rostedt8aef2d22009-03-24 01:10:15 -04004699 if (ret)
4700 pr_info("ftrace_graph: Couldn't activate tracepoint"
4701 " probe to kernel_sched_switch\n");
4702 }
4703
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004704 kfree(ret_stack_list);
4705 return ret;
4706}
4707
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08004708/*
4709 * Hibernation protection.
4710 * The state of the current task is too much unstable during
4711 * suspend/restore to disk. We want to protect against that.
4712 */
4713static int
4714ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
4715 void *unused)
4716{
4717 switch (state) {
4718 case PM_HIBERNATION_PREPARE:
4719 pause_graph_tracing();
4720 break;
4721
4722 case PM_POST_HIBERNATION:
4723 unpause_graph_tracing();
4724 break;
4725 }
4726 return NOTIFY_DONE;
4727}
4728
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01004729int register_ftrace_graph(trace_func_graph_ret_t retfunc,
4730 trace_func_graph_ent_t entryfunc)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004731{
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004732 int ret = 0;
4733
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004734 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004735
Steven Rostedt05ce5812009-03-24 00:18:31 -04004736 /* we currently allow only one tracer registered at a time */
Steven Rostedt597af812009-04-03 15:24:12 -04004737 if (ftrace_graph_active) {
Steven Rostedt05ce5812009-03-24 00:18:31 -04004738 ret = -EBUSY;
4739 goto out;
4740 }
4741
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08004742 ftrace_suspend_notifier.notifier_call = ftrace_suspend_notifier_call;
4743 register_pm_notifier(&ftrace_suspend_notifier);
4744
Steven Rostedt597af812009-04-03 15:24:12 -04004745 ftrace_graph_active++;
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004746 ret = start_graph_tracing();
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004747 if (ret) {
Steven Rostedt597af812009-04-03 15:24:12 -04004748 ftrace_graph_active--;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004749 goto out;
4750 }
Steven Rostedte53a6312008-11-26 00:16:25 -05004751
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01004752 ftrace_graph_return = retfunc;
4753 ftrace_graph_entry = entryfunc;
Steven Rostedte53a6312008-11-26 00:16:25 -05004754
Steven Rostedta1cd6172011-05-23 15:24:25 -04004755 ret = ftrace_startup(&global_ops, FTRACE_START_FUNC_RET);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004756
4757out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004758 mutex_unlock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004759 return ret;
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004760}
4761
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004762void unregister_ftrace_graph(void)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004763{
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004764 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004765
Steven Rostedt597af812009-04-03 15:24:12 -04004766 if (unlikely(!ftrace_graph_active))
Steven Rostedt2aad1b72009-03-30 11:11:28 -04004767 goto out;
4768
Steven Rostedt597af812009-04-03 15:24:12 -04004769 ftrace_graph_active--;
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01004770 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05004771 ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedtbd69c302011-05-03 21:55:54 -04004772 ftrace_shutdown(&global_ops, FTRACE_STOP_FUNC_RET);
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08004773 unregister_pm_notifier(&ftrace_suspend_notifier);
Steven Rostedt38516ab2010-04-20 17:04:50 -04004774 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01004775
Steven Rostedt2aad1b72009-03-30 11:11:28 -04004776 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004777 mutex_unlock(&ftrace_lock);
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004778}
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004779
Steven Rostedt868baf02011-02-10 21:26:13 -05004780static DEFINE_PER_CPU(struct ftrace_ret_stack *, idle_ret_stack);
4781
4782static void
4783graph_init_task(struct task_struct *t, struct ftrace_ret_stack *ret_stack)
4784{
4785 atomic_set(&t->tracing_graph_pause, 0);
4786 atomic_set(&t->trace_overrun, 0);
4787 t->ftrace_timestamp = 0;
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004788 /* make curr_ret_stack visible before we add the ret_stack */
Steven Rostedt868baf02011-02-10 21:26:13 -05004789 smp_wmb();
4790 t->ret_stack = ret_stack;
4791}
4792
4793/*
4794 * Allocate a return stack for the idle task. May be the first
4795 * time through, or it may be done by CPU hotplug online.
4796 */
4797void ftrace_graph_init_idle_task(struct task_struct *t, int cpu)
4798{
4799 t->curr_ret_stack = -1;
4800 /*
4801 * The idle task has no parent, it either has its own
4802 * stack or no stack at all.
4803 */
4804 if (t->ret_stack)
4805 WARN_ON(t->ret_stack != per_cpu(idle_ret_stack, cpu));
4806
4807 if (ftrace_graph_active) {
4808 struct ftrace_ret_stack *ret_stack;
4809
4810 ret_stack = per_cpu(idle_ret_stack, cpu);
4811 if (!ret_stack) {
4812 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
4813 * sizeof(struct ftrace_ret_stack),
4814 GFP_KERNEL);
4815 if (!ret_stack)
4816 return;
4817 per_cpu(idle_ret_stack, cpu) = ret_stack;
4818 }
4819 graph_init_task(t, ret_stack);
4820 }
4821}
4822
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004823/* Allocate a return stack for newly created task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004824void ftrace_graph_init_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004825{
Steven Rostedt84047e32009-06-02 16:51:55 -04004826 /* Make sure we do not use the parent ret_stack */
4827 t->ret_stack = NULL;
Steven Rostedtea14eb72010-03-12 19:41:23 -05004828 t->curr_ret_stack = -1;
Steven Rostedt84047e32009-06-02 16:51:55 -04004829
Steven Rostedt597af812009-04-03 15:24:12 -04004830 if (ftrace_graph_active) {
Steven Rostedt82310a32009-06-02 12:26:07 -04004831 struct ftrace_ret_stack *ret_stack;
4832
4833 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004834 * sizeof(struct ftrace_ret_stack),
4835 GFP_KERNEL);
Steven Rostedt82310a32009-06-02 12:26:07 -04004836 if (!ret_stack)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004837 return;
Steven Rostedt868baf02011-02-10 21:26:13 -05004838 graph_init_task(t, ret_stack);
Steven Rostedt84047e32009-06-02 16:51:55 -04004839 }
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004840}
4841
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01004842void ftrace_graph_exit_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004843{
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01004844 struct ftrace_ret_stack *ret_stack = t->ret_stack;
4845
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004846 t->ret_stack = NULL;
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01004847 /* NULL must become visible to IRQs before we free it: */
4848 barrier();
4849
4850 kfree(ret_stack);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01004851}
Steven Rostedt14a866c2008-12-02 23:50:02 -05004852
4853void ftrace_graph_stop(void)
4854{
4855 ftrace_stop();
4856}
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01004857#endif