blob: b8dfe8138aa26e738a3a91286a5e936335f5621e [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 Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -050021#include <linux/tracefs.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 Rostedt6912896e2008-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 Rostedt6912896e2008-10-23 09:33:03 -040047 ftrace_kill(); \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040048 ___r; \
49 })
Steven Rostedt6912896e2008-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 Rostedt6912896e2008-10-23 09:33:03 -040055 ftrace_kill(); \
Steven Rostedt0778d9a2011-04-29 10:36:31 -040056 ___r; \
57 })
Steven Rostedt6912896e2008-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
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -050065#define FL_GLOBAL_CONTROL_MASK (FTRACE_OPS_FL_CONTROL)
Jiri Olsae2484912012-02-15 15:51:48 +010066
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +090067#ifdef CONFIG_DYNAMIC_FTRACE
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -040068#define INIT_OPS_HASH(opsname) \
69 .func_hash = &opsname.local_hash, \
70 .local_hash.regex_lock = __MUTEX_INITIALIZER(opsname.local_hash.regex_lock),
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -040071#define ASSIGN_OPS_HASH(opsname, val) \
72 .func_hash = val, \
73 .local_hash.regex_lock = __MUTEX_INITIALIZER(opsname.local_hash.regex_lock),
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +090074#else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -040075#define INIT_OPS_HASH(opsname)
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -040076#define ASSIGN_OPS_HASH(opsname, val)
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +090077#endif
78
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -040079static struct ftrace_ops ftrace_list_end __read_mostly = {
80 .func = ftrace_stub,
Steven Rostedt (Red Hat)395b97a2013-03-27 09:31:28 -040081 .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_STUB,
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -040082 INIT_OPS_HASH(ftrace_list_end)
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -040083};
84
Steven Rostedt4eebcc82008-05-12 21:20:48 +020085/* ftrace_enabled is a method to turn ftrace on or off */
86int ftrace_enabled __read_mostly;
Steven Rostedtd61f82d2008-05-12 21:20:43 +020087static int last_ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +020088
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -040089/* Current function tracing op */
90struct ftrace_ops *function_trace_op __read_mostly = &ftrace_list_end;
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -050091/* What to set function_trace_op to */
92static struct ftrace_ops *set_function_trace_op;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -050093
jolsa@redhat.com756d17e2009-10-13 16:33:52 -040094/* List for set_ftrace_pid's pids. */
95LIST_HEAD(ftrace_pids);
96struct ftrace_pid {
97 struct list_head list;
98 struct pid *pid;
99};
100
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400101static bool ftrace_pids_enabled(void)
102{
103 return !list_empty(&ftrace_pids);
104}
105
106static void ftrace_update_trampoline(struct ftrace_ops *ops);
107
Steven Rostedt4eebcc82008-05-12 21:20:48 +0200108/*
109 * ftrace_disabled is set when an anomaly is discovered.
110 * ftrace_disabled is much stronger than ftrace_enabled.
111 */
112static int ftrace_disabled __read_mostly;
113
Steven Rostedt52baf112009-02-14 01:15:39 -0500114static DEFINE_MUTEX(ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +0200115
Jiri Olsae2484912012-02-15 15:51:48 +0100116static struct ftrace_ops *ftrace_control_list __read_mostly = &ftrace_list_end;
Steven Rostedtb8489142011-05-04 09:27:52 -0400117static struct ftrace_ops *ftrace_ops_list __read_mostly = &ftrace_list_end;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200118ftrace_func_t ftrace_trace_function __read_mostly = ftrace_stub;
Steven Rostedt2b499382011-05-03 22:49:52 -0400119static struct ftrace_ops global_ops;
Jiri Olsae2484912012-02-15 15:51:48 +0100120static struct ftrace_ops control_ops;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200121
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -0400122static void ftrace_ops_recurs_func(unsigned long ip, unsigned long parent_ip,
123 struct ftrace_ops *op, struct pt_regs *regs);
124
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400125#if ARCH_SUPPORTS_FTRACE_OPS
126static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400127 struct ftrace_ops *op, struct pt_regs *regs);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400128#else
129/* See comment below, where ftrace_ops_list_func is defined */
130static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip);
131#define ftrace_ops_list_func ((ftrace_func_t)ftrace_ops_no_ops)
132#endif
Steven Rostedtb8489142011-05-04 09:27:52 -0400133
Steven Rostedt0a016402012-11-02 17:03:03 -0400134/*
135 * Traverse the ftrace_global_list, invoking all entries. The reason that we
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400136 * can use rcu_dereference_raw_notrace() is that elements removed from this list
Steven Rostedt0a016402012-11-02 17:03:03 -0400137 * are simply leaked, so there is no need to interact with a grace-period
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400138 * mechanism. The rcu_dereference_raw_notrace() calls are needed to handle
Steven Rostedt0a016402012-11-02 17:03:03 -0400139 * concurrent insertions into the ftrace_global_list.
140 *
141 * Silly Alpha and silly pointer-speculation compiler optimizations!
142 */
143#define do_for_each_ftrace_op(op, list) \
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400144 op = rcu_dereference_raw_notrace(list); \
Steven Rostedt0a016402012-11-02 17:03:03 -0400145 do
146
147/*
148 * Optimized for just a single item in the list (as that is the normal case).
149 */
150#define while_for_each_ftrace_op(op) \
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400151 while (likely(op = rcu_dereference_raw_notrace((op)->next)) && \
Steven Rostedt0a016402012-11-02 17:03:03 -0400152 unlikely((op) != &ftrace_list_end))
153
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +0900154static inline void ftrace_ops_init(struct ftrace_ops *ops)
155{
156#ifdef CONFIG_DYNAMIC_FTRACE
157 if (!(ops->flags & FTRACE_OPS_FL_INITIALIZED)) {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -0400158 mutex_init(&ops->local_hash.regex_lock);
159 ops->func_hash = &ops->local_hash;
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +0900160 ops->flags |= FTRACE_OPS_FL_INITIALIZED;
161 }
162#endif
163}
164
Steven Rostedtea701f12012-07-20 13:08:05 -0400165/**
166 * ftrace_nr_registered_ops - return number of ops registered
167 *
168 * Returns the number of ftrace_ops registered and tracing functions
169 */
170int ftrace_nr_registered_ops(void)
171{
172 struct ftrace_ops *ops;
173 int cnt = 0;
174
175 mutex_lock(&ftrace_lock);
176
177 for (ops = ftrace_ops_list;
178 ops != &ftrace_list_end; ops = ops->next)
179 cnt++;
180
181 mutex_unlock(&ftrace_lock);
182
183 return cnt;
184}
185
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400186static void ftrace_pid_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400187 struct ftrace_ops *op, struct pt_regs *regs)
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500188{
Steven Rostedt0ef8cde2008-12-03 15:36:58 -0500189 if (!test_tsk_trace_trace(current))
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500190 return;
191
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400192 op->saved_func(ip, parent_ip, op, regs);
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500193}
194
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200195/**
Steven Rostedt3d083392008-05-12 21:20:42 +0200196 * clear_ftrace_function - reset the ftrace function
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200197 *
Steven Rostedt3d083392008-05-12 21:20:42 +0200198 * This NULLs the ftrace function and in essence stops
199 * tracing. There may be lag
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200200 */
Steven Rostedt3d083392008-05-12 21:20:42 +0200201void clear_ftrace_function(void)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200202{
Steven Rostedt3d083392008-05-12 21:20:42 +0200203 ftrace_trace_function = ftrace_stub;
204}
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200205
Jiri Olsae2484912012-02-15 15:51:48 +0100206static void control_ops_disable_all(struct ftrace_ops *ops)
207{
208 int cpu;
209
210 for_each_possible_cpu(cpu)
211 *per_cpu_ptr(ops->disabled, cpu) = 1;
212}
213
214static int control_ops_alloc(struct ftrace_ops *ops)
215{
216 int __percpu *disabled;
217
218 disabled = alloc_percpu(int);
219 if (!disabled)
220 return -ENOMEM;
221
222 ops->disabled = disabled;
223 control_ops_disable_all(ops);
224 return 0;
225}
226
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500227static void ftrace_sync(struct work_struct *work)
228{
229 /*
230 * This function is just a stub to implement a hard force
231 * of synchronize_sched(). This requires synchronizing
232 * tasks even in userspace and idle.
233 *
234 * Yes, function tracing is rude.
235 */
236}
237
238static void ftrace_sync_ipi(void *data)
239{
240 /* Probably not needed, but do it anyway */
241 smp_rmb();
242}
243
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -0500244#ifdef CONFIG_FUNCTION_GRAPH_TRACER
245static void update_function_graph_func(void);
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -0400246
247/* Both enabled by default (can be cleared by function_graph tracer flags */
248static bool fgraph_sleep_time = true;
249static bool fgraph_graph_time = true;
250
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -0500251#else
252static inline void update_function_graph_func(void) { }
253#endif
254
Steven Rostedt (Red Hat)00ccbf22015-02-19 15:56:14 +0100255
256static ftrace_func_t ftrace_ops_get_list_func(struct ftrace_ops *ops)
257{
258 /*
259 * If this is a dynamic ops or we force list func,
260 * then it needs to call the list anyway.
261 */
262 if (ops->flags & FTRACE_OPS_FL_DYNAMIC || FTRACE_FORCE_LIST_FUNC)
263 return ftrace_ops_list_func;
264
265 return ftrace_ops_get_func(ops);
266}
267
Steven Rostedt2b499382011-05-03 22:49:52 -0400268static void update_ftrace_function(void)
269{
270 ftrace_func_t func;
271
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400272 /*
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400273 * Prepare the ftrace_ops that the arch callback will use.
274 * If there's only one ftrace_ops registered, the ftrace_ops_list
275 * will point to the ops we want.
276 */
277 set_function_trace_op = ftrace_ops_list;
278
279 /* If there's no ftrace_ops registered, just call the stub function */
280 if (ftrace_ops_list == &ftrace_list_end) {
281 func = ftrace_stub;
282
283 /*
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400284 * If we are at the end of the list and this ops is
Steven Rostedt47409742012-07-20 11:04:44 -0400285 * recursion safe and not dynamic and the arch supports passing ops,
286 * then have the mcount trampoline call the function directly.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400287 */
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400288 } else if (ftrace_ops_list->next == &ftrace_list_end) {
Steven Rostedt (Red Hat)00ccbf22015-02-19 15:56:14 +0100289 func = ftrace_ops_get_list_func(ftrace_ops_list);
Steven Rostedt (Red Hat)f7aad4e2014-09-10 10:42:46 -0400290
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400291 } else {
292 /* Just use the default ftrace_ops */
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500293 set_function_trace_op = &ftrace_list_end;
Steven Rostedtb8489142011-05-04 09:27:52 -0400294 func = ftrace_ops_list_func;
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400295 }
Steven Rostedt2b499382011-05-03 22:49:52 -0400296
Steven Rostedt (Red Hat)5f8bf2d22014-07-15 11:05:12 -0400297 update_function_graph_func();
298
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -0500299 /* If there's no change, then do nothing more here */
300 if (ftrace_trace_function == func)
301 return;
302
303 /*
304 * If we are using the list function, it doesn't care
305 * about the function_trace_ops.
306 */
307 if (func == ftrace_ops_list_func) {
308 ftrace_trace_function = func;
309 /*
310 * Don't even bother setting function_trace_ops,
311 * it would be racy to do so anyway.
312 */
313 return;
314 }
315
316#ifndef CONFIG_DYNAMIC_FTRACE
317 /*
318 * For static tracing, we need to be a bit more careful.
319 * The function change takes affect immediately. Thus,
320 * we need to coorditate the setting of the function_trace_ops
321 * with the setting of the ftrace_trace_function.
322 *
323 * Set the function to the list ops, which will call the
324 * function we want, albeit indirectly, but it handles the
325 * ftrace_ops and doesn't depend on function_trace_op.
326 */
327 ftrace_trace_function = ftrace_ops_list_func;
328 /*
329 * Make sure all CPUs see this. Yes this is slow, but static
330 * tracing is slow and nasty to have enabled.
331 */
332 schedule_on_each_cpu(ftrace_sync);
333 /* Now all cpus are using the list ops. */
334 function_trace_op = set_function_trace_op;
335 /* Make sure the function_trace_op is visible on all CPUs */
336 smp_wmb();
337 /* Nasty way to force a rmb on all cpus */
338 smp_call_function(ftrace_sync_ipi, NULL, 1);
339 /* OK, we are all set to update the ftrace_trace_function now! */
340#endif /* !CONFIG_DYNAMIC_FTRACE */
341
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400342 ftrace_trace_function = func;
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400343}
344
Jiaxing Wang7eea4fc2014-04-20 23:10:43 +0800345int using_ftrace_ops_list_func(void)
346{
347 return ftrace_trace_function == ftrace_ops_list_func;
348}
349
Steven Rostedt2b499382011-05-03 22:49:52 -0400350static void add_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
Steven Rostedt3d083392008-05-12 21:20:42 +0200351{
Steven Rostedt2b499382011-05-03 22:49:52 -0400352 ops->next = *list;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200353 /*
Steven Rostedtb8489142011-05-04 09:27:52 -0400354 * We are entering ops into the list but another
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200355 * CPU might be walking that list. We need to make sure
356 * the ops->next pointer is valid before another CPU sees
Steven Rostedtb8489142011-05-04 09:27:52 -0400357 * the ops pointer included into the list.
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200358 */
Steven Rostedt2b499382011-05-03 22:49:52 -0400359 rcu_assign_pointer(*list, ops);
360}
Steven Rostedt3d083392008-05-12 21:20:42 +0200361
Steven Rostedt2b499382011-05-03 22:49:52 -0400362static int remove_ftrace_ops(struct ftrace_ops **list, struct ftrace_ops *ops)
363{
364 struct ftrace_ops **p;
365
366 /*
367 * If we are removing the last function, then simply point
368 * to the ftrace_stub.
369 */
370 if (*list == ops && ops->next == &ftrace_list_end) {
371 *list = &ftrace_list_end;
372 return 0;
373 }
374
375 for (p = list; *p != &ftrace_list_end; p = &(*p)->next)
376 if (*p == ops)
377 break;
378
379 if (*p != ops)
380 return -1;
381
382 *p = (*p)->next;
383 return 0;
384}
385
Jiri Olsae2484912012-02-15 15:51:48 +0100386static void add_ftrace_list_ops(struct ftrace_ops **list,
387 struct ftrace_ops *main_ops,
388 struct ftrace_ops *ops)
389{
390 int first = *list == &ftrace_list_end;
391 add_ftrace_ops(list, ops);
392 if (first)
393 add_ftrace_ops(&ftrace_ops_list, main_ops);
394}
395
396static int remove_ftrace_list_ops(struct ftrace_ops **list,
397 struct ftrace_ops *main_ops,
398 struct ftrace_ops *ops)
399{
400 int ret = remove_ftrace_ops(list, ops);
401 if (!ret && *list == &ftrace_list_end)
402 ret = remove_ftrace_ops(&ftrace_ops_list, main_ops);
403 return ret;
404}
405
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -0400406static void ftrace_update_trampoline(struct ftrace_ops *ops);
407
Steven Rostedt2b499382011-05-03 22:49:52 -0400408static int __register_ftrace_function(struct ftrace_ops *ops)
409{
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -0500410 if (ops->flags & FTRACE_OPS_FL_DELETED)
411 return -EINVAL;
412
Steven Rostedtb8489142011-05-04 09:27:52 -0400413 if (WARN_ON(ops->flags & FTRACE_OPS_FL_ENABLED))
414 return -EBUSY;
415
Masami Hiramatsu06aeaae2012-09-28 17:15:17 +0900416#ifndef CONFIG_DYNAMIC_FTRACE_WITH_REGS
Steven Rostedt08f6fba2012-04-30 16:20:23 -0400417 /*
418 * If the ftrace_ops specifies SAVE_REGS, then it only can be used
419 * if the arch supports it, or SAVE_REGS_IF_SUPPORTED is also set.
420 * Setting SAVE_REGS_IF_SUPPORTED makes SAVE_REGS irrelevant.
421 */
422 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS &&
423 !(ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED))
424 return -EINVAL;
425
426 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS_IF_SUPPORTED)
427 ops->flags |= FTRACE_OPS_FL_SAVE_REGS;
428#endif
429
Steven Rostedtcdbe61b2011-05-05 21:14:55 -0400430 if (!core_kernel_data((unsigned long)ops))
431 ops->flags |= FTRACE_OPS_FL_DYNAMIC;
432
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -0500433 if (ops->flags & FTRACE_OPS_FL_CONTROL) {
Jiri Olsae2484912012-02-15 15:51:48 +0100434 if (control_ops_alloc(ops))
435 return -ENOMEM;
436 add_ftrace_list_ops(&ftrace_control_list, &control_ops, ops);
Steven Rostedt (Red Hat)fe578ba2014-11-13 19:40:56 -0500437 /* The control_ops needs the trampoline update */
438 ops = &control_ops;
Steven Rostedtb8489142011-05-04 09:27:52 -0400439 } else
440 add_ftrace_ops(&ftrace_ops_list, ops);
441
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400442 /* Always save the function, and reset at unregistering */
443 ops->saved_func = ops->func;
444
445 if (ops->flags & FTRACE_OPS_FL_PID && ftrace_pids_enabled())
446 ops->func = ftrace_pid_func;
447
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -0400448 ftrace_update_trampoline(ops);
449
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400450 if (ftrace_enabled)
451 update_ftrace_function();
Steven Rostedt3d083392008-05-12 21:20:42 +0200452
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200453 return 0;
454}
455
Ingo Molnare309b412008-05-12 21:20:51 +0200456static int __unregister_ftrace_function(struct ftrace_ops *ops)
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200457{
Steven Rostedt2b499382011-05-03 22:49:52 -0400458 int ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200459
Steven Rostedtb8489142011-05-04 09:27:52 -0400460 if (WARN_ON(!(ops->flags & FTRACE_OPS_FL_ENABLED)))
461 return -EBUSY;
462
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -0500463 if (ops->flags & FTRACE_OPS_FL_CONTROL) {
Jiri Olsae2484912012-02-15 15:51:48 +0100464 ret = remove_ftrace_list_ops(&ftrace_control_list,
465 &control_ops, ops);
Steven Rostedtb8489142011-05-04 09:27:52 -0400466 } else
467 ret = remove_ftrace_ops(&ftrace_ops_list, ops);
468
Steven Rostedt2b499382011-05-03 22:49:52 -0400469 if (ret < 0)
470 return ret;
Steven Rostedtb8489142011-05-04 09:27:52 -0400471
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400472 if (ftrace_enabled)
473 update_ftrace_function();
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +0200474
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400475 ops->func = ops->saved_func;
476
Steven Rostedte6ea44e2009-02-14 01:42:44 -0500477 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +0200478}
479
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500480static void ftrace_update_pid_func(void)
481{
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400482 bool enabled = ftrace_pids_enabled();
483 struct ftrace_ops *op;
484
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400485 /* Only do something if we are tracing something */
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500486 if (ftrace_trace_function == ftrace_stub)
KOSAKI Motohiro10dd3eb2009-03-06 15:29:04 +0900487 return;
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500488
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -0400489 do_for_each_ftrace_op(op, ftrace_ops_list) {
490 if (op->flags & FTRACE_OPS_FL_PID) {
491 op->func = enabled ? ftrace_pid_func :
492 op->saved_func;
493 ftrace_update_trampoline(op);
494 }
495 } while_for_each_ftrace_op(op);
496
Steven Rostedt491d0dc2011-04-27 21:43:36 -0400497 update_ftrace_function();
Steven Rostedtdf4fc312008-11-26 00:16:23 -0500498}
499
Steven Rostedt493762f2009-03-23 17:12:36 -0400500#ifdef CONFIG_FUNCTION_PROFILER
501struct ftrace_profile {
502 struct hlist_node node;
503 unsigned long ip;
504 unsigned long counter;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400505#ifdef CONFIG_FUNCTION_GRAPH_TRACER
506 unsigned long long time;
Chase Douglase330b3b2010-04-26 14:02:05 -0400507 unsigned long long time_squared;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400508#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400509};
510
511struct ftrace_profile_page {
512 struct ftrace_profile_page *next;
513 unsigned long index;
514 struct ftrace_profile records[];
515};
516
Steven Rostedtcafb1682009-03-24 20:50:39 -0400517struct ftrace_profile_stat {
518 atomic_t disabled;
519 struct hlist_head *hash;
520 struct ftrace_profile_page *pages;
521 struct ftrace_profile_page *start;
522 struct tracer_stat stat;
523};
524
Steven Rostedt493762f2009-03-23 17:12:36 -0400525#define PROFILE_RECORDS_SIZE \
526 (PAGE_SIZE - offsetof(struct ftrace_profile_page, records))
527
528#define PROFILES_PER_PAGE \
529 (PROFILE_RECORDS_SIZE / sizeof(struct ftrace_profile))
530
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400531static int ftrace_profile_enabled __read_mostly;
532
533/* ftrace_profile_lock - synchronize the enable and disable of the profiler */
Steven Rostedt493762f2009-03-23 17:12:36 -0400534static DEFINE_MUTEX(ftrace_profile_lock);
535
Steven Rostedtcafb1682009-03-24 20:50:39 -0400536static DEFINE_PER_CPU(struct ftrace_profile_stat, ftrace_profile_stats);
Steven Rostedt493762f2009-03-23 17:12:36 -0400537
Namhyung Kim20079eb2013-04-10 08:55:50 +0900538#define FTRACE_PROFILE_HASH_BITS 10
539#define FTRACE_PROFILE_HASH_SIZE (1 << FTRACE_PROFILE_HASH_BITS)
Steven Rostedt493762f2009-03-23 17:12:36 -0400540
Steven Rostedt493762f2009-03-23 17:12:36 -0400541static void *
542function_stat_next(void *v, int idx)
543{
544 struct ftrace_profile *rec = v;
545 struct ftrace_profile_page *pg;
546
547 pg = (struct ftrace_profile_page *)((unsigned long)rec & PAGE_MASK);
548
549 again:
Li Zefan0296e422009-06-26 11:15:37 +0800550 if (idx != 0)
551 rec++;
552
Steven Rostedt493762f2009-03-23 17:12:36 -0400553 if ((void *)rec >= (void *)&pg->records[pg->index]) {
554 pg = pg->next;
555 if (!pg)
556 return NULL;
557 rec = &pg->records[0];
558 if (!rec->counter)
559 goto again;
560 }
561
562 return rec;
563}
564
565static void *function_stat_start(struct tracer_stat *trace)
566{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400567 struct ftrace_profile_stat *stat =
568 container_of(trace, struct ftrace_profile_stat, stat);
569
570 if (!stat || !stat->start)
571 return NULL;
572
573 return function_stat_next(&stat->start->records[0], 0);
Steven Rostedt493762f2009-03-23 17:12:36 -0400574}
575
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400576#ifdef CONFIG_FUNCTION_GRAPH_TRACER
577/* function graph compares on total time */
578static int function_stat_cmp(void *p1, void *p2)
579{
580 struct ftrace_profile *a = p1;
581 struct ftrace_profile *b = p2;
582
583 if (a->time < b->time)
584 return -1;
585 if (a->time > b->time)
586 return 1;
587 else
588 return 0;
589}
590#else
591/* not function graph compares against hits */
Steven Rostedt493762f2009-03-23 17:12:36 -0400592static int function_stat_cmp(void *p1, void *p2)
593{
594 struct ftrace_profile *a = p1;
595 struct ftrace_profile *b = p2;
596
597 if (a->counter < b->counter)
598 return -1;
599 if (a->counter > b->counter)
600 return 1;
601 else
602 return 0;
603}
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400604#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400605
606static int function_stat_headers(struct seq_file *m)
607{
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400608#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100609 seq_puts(m, " Function "
610 "Hit Time Avg s^2\n"
611 " -------- "
612 "--- ---- --- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400613#else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100614 seq_puts(m, " Function Hit\n"
615 " -------- ---\n");
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400616#endif
Steven Rostedt493762f2009-03-23 17:12:36 -0400617 return 0;
618}
619
620static int function_stat_show(struct seq_file *m, void *v)
621{
622 struct ftrace_profile *rec = v;
623 char str[KSYM_SYMBOL_LEN];
Li Zefan3aaba202010-08-23 16:50:12 +0800624 int ret = 0;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400625#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Steven Rostedt34886c82009-03-25 21:00:47 -0400626 static struct trace_seq s;
627 unsigned long long avg;
Chase Douglase330b3b2010-04-26 14:02:05 -0400628 unsigned long long stddev;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400629#endif
Li Zefan3aaba202010-08-23 16:50:12 +0800630 mutex_lock(&ftrace_profile_lock);
631
632 /* we raced with function_profile_reset() */
633 if (unlikely(rec->counter == 0)) {
634 ret = -EBUSY;
635 goto out;
636 }
Steven Rostedt493762f2009-03-23 17:12:36 -0400637
Umesh Tiwari8e436ca2015-06-22 16:58:08 +0530638#ifdef CONFIG_FUNCTION_GRAPH_TRACER
639 avg = rec->time;
640 do_div(avg, rec->counter);
641 if (tracing_thresh && (avg < tracing_thresh))
642 goto out;
643#endif
644
Steven Rostedt493762f2009-03-23 17:12:36 -0400645 kallsyms_lookup(rec->ip, NULL, NULL, NULL, str);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400646 seq_printf(m, " %-30.30s %10lu", str, rec->counter);
Steven Rostedt493762f2009-03-23 17:12:36 -0400647
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400648#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +0100649 seq_puts(m, " ");
Steven Rostedt34886c82009-03-25 21:00:47 -0400650
Chase Douglase330b3b2010-04-26 14:02:05 -0400651 /* Sample standard deviation (s^2) */
652 if (rec->counter <= 1)
653 stddev = 0;
654 else {
Juri Lelli52d85d72013-06-12 12:03:18 +0200655 /*
656 * Apply Welford's method:
657 * s^2 = 1 / (n * (n-1)) * (n * \Sum (x_i)^2 - (\Sum x_i)^2)
658 */
659 stddev = rec->counter * rec->time_squared -
660 rec->time * rec->time;
661
Chase Douglase330b3b2010-04-26 14:02:05 -0400662 /*
663 * Divide only 1000 for ns^2 -> us^2 conversion.
664 * trace_print_graph_duration will divide 1000 again.
665 */
Juri Lelli52d85d72013-06-12 12:03:18 +0200666 do_div(stddev, rec->counter * (rec->counter - 1) * 1000);
Chase Douglase330b3b2010-04-26 14:02:05 -0400667 }
668
Steven Rostedt34886c82009-03-25 21:00:47 -0400669 trace_seq_init(&s);
670 trace_print_graph_duration(rec->time, &s);
671 trace_seq_puts(&s, " ");
672 trace_print_graph_duration(avg, &s);
Chase Douglase330b3b2010-04-26 14:02:05 -0400673 trace_seq_puts(&s, " ");
674 trace_print_graph_duration(stddev, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400675 trace_print_seq(m, &s);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400676#endif
677 seq_putc(m, '\n');
Li Zefan3aaba202010-08-23 16:50:12 +0800678out:
679 mutex_unlock(&ftrace_profile_lock);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400680
Li Zefan3aaba202010-08-23 16:50:12 +0800681 return ret;
Steven Rostedt493762f2009-03-23 17:12:36 -0400682}
683
Steven Rostedtcafb1682009-03-24 20:50:39 -0400684static void ftrace_profile_reset(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400685{
686 struct ftrace_profile_page *pg;
687
Steven Rostedtcafb1682009-03-24 20:50:39 -0400688 pg = stat->pages = stat->start;
Steven Rostedt493762f2009-03-23 17:12:36 -0400689
690 while (pg) {
691 memset(pg->records, 0, PROFILE_RECORDS_SIZE);
692 pg->index = 0;
693 pg = pg->next;
694 }
695
Steven Rostedtcafb1682009-03-24 20:50:39 -0400696 memset(stat->hash, 0,
Steven Rostedt493762f2009-03-23 17:12:36 -0400697 FTRACE_PROFILE_HASH_SIZE * sizeof(struct hlist_head));
698}
699
Steven Rostedtcafb1682009-03-24 20:50:39 -0400700int ftrace_profile_pages_init(struct ftrace_profile_stat *stat)
Steven Rostedt493762f2009-03-23 17:12:36 -0400701{
702 struct ftrace_profile_page *pg;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400703 int functions;
704 int pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400705 int i;
706
707 /* If we already allocated, do nothing */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400708 if (stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400709 return 0;
710
Steven Rostedtcafb1682009-03-24 20:50:39 -0400711 stat->pages = (void *)get_zeroed_page(GFP_KERNEL);
712 if (!stat->pages)
Steven Rostedt493762f2009-03-23 17:12:36 -0400713 return -ENOMEM;
714
Steven Rostedt318e0a72009-03-25 20:06:34 -0400715#ifdef CONFIG_DYNAMIC_FTRACE
716 functions = ftrace_update_tot_cnt;
717#else
718 /*
719 * We do not know the number of functions that exist because
720 * dynamic tracing is what counts them. With past experience
721 * we have around 20K functions. That should be more than enough.
722 * It is highly unlikely we will execute every function in
723 * the kernel.
724 */
725 functions = 20000;
726#endif
727
Steven Rostedtcafb1682009-03-24 20:50:39 -0400728 pg = stat->start = stat->pages;
Steven Rostedt493762f2009-03-23 17:12:36 -0400729
Steven Rostedt318e0a72009-03-25 20:06:34 -0400730 pages = DIV_ROUND_UP(functions, PROFILES_PER_PAGE);
731
Namhyung Kim39e30cd2013-04-01 21:46:24 +0900732 for (i = 1; i < pages; i++) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400733 pg->next = (void *)get_zeroed_page(GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400734 if (!pg->next)
Steven Rostedt318e0a72009-03-25 20:06:34 -0400735 goto out_free;
Steven Rostedt493762f2009-03-23 17:12:36 -0400736 pg = pg->next;
737 }
738
739 return 0;
Steven Rostedt318e0a72009-03-25 20:06:34 -0400740
741 out_free:
742 pg = stat->start;
743 while (pg) {
744 unsigned long tmp = (unsigned long)pg;
745
746 pg = pg->next;
747 free_page(tmp);
748 }
749
Steven Rostedt318e0a72009-03-25 20:06:34 -0400750 stat->pages = NULL;
751 stat->start = NULL;
752
753 return -ENOMEM;
Steven Rostedt493762f2009-03-23 17:12:36 -0400754}
755
Steven Rostedtcafb1682009-03-24 20:50:39 -0400756static int ftrace_profile_init_cpu(int cpu)
Steven Rostedt493762f2009-03-23 17:12:36 -0400757{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400758 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400759 int size;
760
Steven Rostedtcafb1682009-03-24 20:50:39 -0400761 stat = &per_cpu(ftrace_profile_stats, cpu);
762
763 if (stat->hash) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400764 /* If the profile is already created, simply reset it */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400765 ftrace_profile_reset(stat);
Steven Rostedt493762f2009-03-23 17:12:36 -0400766 return 0;
767 }
768
769 /*
770 * We are profiling all functions, but usually only a few thousand
771 * functions are hit. We'll make a hash of 1024 items.
772 */
773 size = FTRACE_PROFILE_HASH_SIZE;
774
Steven Rostedtcafb1682009-03-24 20:50:39 -0400775 stat->hash = kzalloc(sizeof(struct hlist_head) * size, GFP_KERNEL);
Steven Rostedt493762f2009-03-23 17:12:36 -0400776
Steven Rostedtcafb1682009-03-24 20:50:39 -0400777 if (!stat->hash)
Steven Rostedt493762f2009-03-23 17:12:36 -0400778 return -ENOMEM;
779
Steven Rostedt318e0a72009-03-25 20:06:34 -0400780 /* Preallocate the function profiling pages */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400781 if (ftrace_profile_pages_init(stat) < 0) {
782 kfree(stat->hash);
783 stat->hash = NULL;
Steven Rostedt493762f2009-03-23 17:12:36 -0400784 return -ENOMEM;
785 }
786
787 return 0;
788}
789
Steven Rostedtcafb1682009-03-24 20:50:39 -0400790static int ftrace_profile_init(void)
791{
792 int cpu;
793 int ret = 0;
794
Miao Xiec4602c12013-12-16 15:20:01 +0800795 for_each_possible_cpu(cpu) {
Steven Rostedtcafb1682009-03-24 20:50:39 -0400796 ret = ftrace_profile_init_cpu(cpu);
797 if (ret)
798 break;
799 }
800
801 return ret;
802}
803
Steven Rostedt493762f2009-03-23 17:12:36 -0400804/* interrupts must be disabled */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400805static struct ftrace_profile *
806ftrace_find_profiled_func(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400807{
808 struct ftrace_profile *rec;
809 struct hlist_head *hhd;
Steven Rostedt493762f2009-03-23 17:12:36 -0400810 unsigned long key;
811
Namhyung Kim20079eb2013-04-10 08:55:50 +0900812 key = hash_long(ip, FTRACE_PROFILE_HASH_BITS);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400813 hhd = &stat->hash[key];
Steven Rostedt493762f2009-03-23 17:12:36 -0400814
815 if (hlist_empty(hhd))
816 return NULL;
817
Steven Rostedt1bb539c2013-05-28 14:38:43 -0400818 hlist_for_each_entry_rcu_notrace(rec, hhd, node) {
Steven Rostedt493762f2009-03-23 17:12:36 -0400819 if (rec->ip == ip)
820 return rec;
821 }
822
823 return NULL;
824}
825
Steven Rostedtcafb1682009-03-24 20:50:39 -0400826static void ftrace_add_profile(struct ftrace_profile_stat *stat,
827 struct ftrace_profile *rec)
Steven Rostedt493762f2009-03-23 17:12:36 -0400828{
829 unsigned long key;
830
Namhyung Kim20079eb2013-04-10 08:55:50 +0900831 key = hash_long(rec->ip, FTRACE_PROFILE_HASH_BITS);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400832 hlist_add_head_rcu(&rec->node, &stat->hash[key]);
Steven Rostedt493762f2009-03-23 17:12:36 -0400833}
834
Steven Rostedt318e0a72009-03-25 20:06:34 -0400835/*
836 * The memory is already allocated, this simply finds a new record to use.
837 */
Steven Rostedt493762f2009-03-23 17:12:36 -0400838static struct ftrace_profile *
Steven Rostedt318e0a72009-03-25 20:06:34 -0400839ftrace_profile_alloc(struct ftrace_profile_stat *stat, unsigned long ip)
Steven Rostedt493762f2009-03-23 17:12:36 -0400840{
841 struct ftrace_profile *rec = NULL;
842
Steven Rostedt318e0a72009-03-25 20:06:34 -0400843 /* prevent recursion (from NMIs) */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400844 if (atomic_inc_return(&stat->disabled) != 1)
Steven Rostedt493762f2009-03-23 17:12:36 -0400845 goto out;
846
Steven Rostedt493762f2009-03-23 17:12:36 -0400847 /*
Steven Rostedt318e0a72009-03-25 20:06:34 -0400848 * Try to find the function again since an NMI
849 * could have added it
Steven Rostedt493762f2009-03-23 17:12:36 -0400850 */
Steven Rostedtcafb1682009-03-24 20:50:39 -0400851 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400852 if (rec)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400853 goto out;
Steven Rostedt493762f2009-03-23 17:12:36 -0400854
Steven Rostedtcafb1682009-03-24 20:50:39 -0400855 if (stat->pages->index == PROFILES_PER_PAGE) {
856 if (!stat->pages->next)
857 goto out;
858 stat->pages = stat->pages->next;
Steven Rostedt493762f2009-03-23 17:12:36 -0400859 }
860
Steven Rostedtcafb1682009-03-24 20:50:39 -0400861 rec = &stat->pages->records[stat->pages->index++];
Steven Rostedt493762f2009-03-23 17:12:36 -0400862 rec->ip = ip;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400863 ftrace_add_profile(stat, rec);
Steven Rostedt493762f2009-03-23 17:12:36 -0400864
Steven Rostedt493762f2009-03-23 17:12:36 -0400865 out:
Steven Rostedtcafb1682009-03-24 20:50:39 -0400866 atomic_dec(&stat->disabled);
Steven Rostedt493762f2009-03-23 17:12:36 -0400867
868 return rec;
869}
870
Steven Rostedt493762f2009-03-23 17:12:36 -0400871static void
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -0400872function_profile_call(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -0400873 struct ftrace_ops *ops, struct pt_regs *regs)
Steven Rostedt493762f2009-03-23 17:12:36 -0400874{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400875 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -0400876 struct ftrace_profile *rec;
877 unsigned long flags;
Steven Rostedt493762f2009-03-23 17:12:36 -0400878
879 if (!ftrace_profile_enabled)
880 return;
881
Steven Rostedt493762f2009-03-23 17:12:36 -0400882 local_irq_save(flags);
Steven Rostedtcafb1682009-03-24 20:50:39 -0400883
Christoph Lameterbdffd892014-04-29 14:17:40 -0500884 stat = this_cpu_ptr(&ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400885 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400886 goto out;
887
888 rec = ftrace_find_profiled_func(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400889 if (!rec) {
Steven Rostedt318e0a72009-03-25 20:06:34 -0400890 rec = ftrace_profile_alloc(stat, ip);
Steven Rostedt493762f2009-03-23 17:12:36 -0400891 if (!rec)
892 goto out;
893 }
894
895 rec->counter++;
896 out:
897 local_irq_restore(flags);
898}
899
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400900#ifdef CONFIG_FUNCTION_GRAPH_TRACER
901static int profile_graph_entry(struct ftrace_graph_ent *trace)
902{
Steven Rostedta1e2e312011-08-09 12:50:46 -0400903 function_profile_call(trace->func, 0, NULL, NULL);
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400904 return 1;
905}
906
907static void profile_graph_return(struct ftrace_graph_ret *trace)
908{
Steven Rostedtcafb1682009-03-24 20:50:39 -0400909 struct ftrace_profile_stat *stat;
Steven Rostedta2a16d62009-03-24 23:17:58 -0400910 unsigned long long calltime;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400911 struct ftrace_profile *rec;
Steven Rostedtcafb1682009-03-24 20:50:39 -0400912 unsigned long flags;
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400913
914 local_irq_save(flags);
Christoph Lameterbdffd892014-04-29 14:17:40 -0500915 stat = this_cpu_ptr(&ftrace_profile_stats);
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -0400916 if (!stat->hash || !ftrace_profile_enabled)
Steven Rostedtcafb1682009-03-24 20:50:39 -0400917 goto out;
918
Steven Rostedt37e44bc2010-04-27 21:04:24 -0400919 /* If the calltime was zero'd ignore it */
920 if (!trace->calltime)
921 goto out;
922
Steven Rostedta2a16d62009-03-24 23:17:58 -0400923 calltime = trace->rettime - trace->calltime;
924
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -0400925 if (!fgraph_graph_time) {
Steven Rostedta2a16d62009-03-24 23:17:58 -0400926 int index;
927
928 index = trace->depth;
929
930 /* Append this call time to the parent time to subtract */
931 if (index)
932 current->ret_stack[index - 1].subtime += calltime;
933
934 if (current->ret_stack[index].subtime < calltime)
935 calltime -= current->ret_stack[index].subtime;
936 else
937 calltime = 0;
938 }
939
Steven Rostedtcafb1682009-03-24 20:50:39 -0400940 rec = ftrace_find_profiled_func(stat, trace->func);
Chase Douglase330b3b2010-04-26 14:02:05 -0400941 if (rec) {
Steven Rostedta2a16d62009-03-24 23:17:58 -0400942 rec->time += calltime;
Chase Douglase330b3b2010-04-26 14:02:05 -0400943 rec->time_squared += calltime * calltime;
944 }
Steven Rostedta2a16d62009-03-24 23:17:58 -0400945
Steven Rostedtcafb1682009-03-24 20:50:39 -0400946 out:
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400947 local_irq_restore(flags);
948}
949
950static int register_ftrace_profiler(void)
951{
952 return register_ftrace_graph(&profile_graph_return,
953 &profile_graph_entry);
954}
955
956static void unregister_ftrace_profiler(void)
957{
958 unregister_ftrace_graph();
959}
960#else
Paul McQuadebd38c0e2011-05-31 20:51:55 +0100961static struct ftrace_ops ftrace_profile_ops __read_mostly = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -0400962 .func = function_profile_call,
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +0900963 .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_INITIALIZED,
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -0400964 INIT_OPS_HASH(ftrace_profile_ops)
Steven Rostedt493762f2009-03-23 17:12:36 -0400965};
966
Steven Rostedt0706f1c2009-03-23 23:12:58 -0400967static int register_ftrace_profiler(void)
968{
969 return register_ftrace_function(&ftrace_profile_ops);
970}
971
972static void unregister_ftrace_profiler(void)
973{
974 unregister_ftrace_function(&ftrace_profile_ops);
975}
976#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
977
Steven Rostedt493762f2009-03-23 17:12:36 -0400978static ssize_t
979ftrace_profile_write(struct file *filp, const char __user *ubuf,
980 size_t cnt, loff_t *ppos)
981{
982 unsigned long val;
Steven Rostedt493762f2009-03-23 17:12:36 -0400983 int ret;
984
Peter Huewe22fe9b52011-06-07 21:58:27 +0200985 ret = kstrtoul_from_user(ubuf, cnt, 10, &val);
986 if (ret)
Steven Rostedt493762f2009-03-23 17:12:36 -0400987 return ret;
988
989 val = !!val;
990
991 mutex_lock(&ftrace_profile_lock);
992 if (ftrace_profile_enabled ^ val) {
993 if (val) {
994 ret = ftrace_profile_init();
995 if (ret < 0) {
996 cnt = ret;
997 goto out;
998 }
999
Steven Rostedt0706f1c2009-03-23 23:12:58 -04001000 ret = register_ftrace_profiler();
1001 if (ret < 0) {
1002 cnt = ret;
1003 goto out;
1004 }
Steven Rostedt493762f2009-03-23 17:12:36 -04001005 ftrace_profile_enabled = 1;
1006 } else {
1007 ftrace_profile_enabled = 0;
Steven Rostedt0f6ce3d2009-06-01 21:51:28 -04001008 /*
1009 * unregister_ftrace_profiler calls stop_machine
1010 * so this acts like an synchronize_sched.
1011 */
Steven Rostedt0706f1c2009-03-23 23:12:58 -04001012 unregister_ftrace_profiler();
Steven Rostedt493762f2009-03-23 17:12:36 -04001013 }
1014 }
1015 out:
1016 mutex_unlock(&ftrace_profile_lock);
1017
Jiri Olsacf8517c2009-10-23 19:36:16 -04001018 *ppos += cnt;
Steven Rostedt493762f2009-03-23 17:12:36 -04001019
1020 return cnt;
1021}
1022
1023static ssize_t
1024ftrace_profile_read(struct file *filp, char __user *ubuf,
1025 size_t cnt, loff_t *ppos)
1026{
Steven Rostedtfb9fb012009-03-25 13:26:41 -04001027 char buf[64]; /* big enough to hold a number */
Steven Rostedt493762f2009-03-23 17:12:36 -04001028 int r;
1029
1030 r = sprintf(buf, "%u\n", ftrace_profile_enabled);
1031 return simple_read_from_buffer(ubuf, cnt, ppos, buf, r);
1032}
1033
1034static const struct file_operations ftrace_profile_fops = {
1035 .open = tracing_open_generic,
1036 .read = ftrace_profile_read,
1037 .write = ftrace_profile_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001038 .llseek = default_llseek,
Steven Rostedt493762f2009-03-23 17:12:36 -04001039};
1040
Steven Rostedtcafb1682009-03-24 20:50:39 -04001041/* used to initialize the real stat files */
1042static struct tracer_stat function_stats __initdata = {
Steven Rostedtfb9fb012009-03-25 13:26:41 -04001043 .name = "functions",
1044 .stat_start = function_stat_start,
1045 .stat_next = function_stat_next,
1046 .stat_cmp = function_stat_cmp,
1047 .stat_headers = function_stat_headers,
1048 .stat_show = function_stat_show
Steven Rostedtcafb1682009-03-24 20:50:39 -04001049};
1050
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001051static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -04001052{
Steven Rostedtcafb1682009-03-24 20:50:39 -04001053 struct ftrace_profile_stat *stat;
Steven Rostedt493762f2009-03-23 17:12:36 -04001054 struct dentry *entry;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001055 char *name;
Steven Rostedt493762f2009-03-23 17:12:36 -04001056 int ret;
Steven Rostedtcafb1682009-03-24 20:50:39 -04001057 int cpu;
Steven Rostedt493762f2009-03-23 17:12:36 -04001058
Steven Rostedtcafb1682009-03-24 20:50:39 -04001059 for_each_possible_cpu(cpu) {
1060 stat = &per_cpu(ftrace_profile_stats, cpu);
1061
1062 /* allocate enough for function name + cpu number */
1063 name = kmalloc(32, GFP_KERNEL);
1064 if (!name) {
1065 /*
1066 * The files created are permanent, if something happens
1067 * we still do not free memory.
1068 */
Steven Rostedtcafb1682009-03-24 20:50:39 -04001069 WARN(1,
1070 "Could not allocate stat file for cpu %d\n",
1071 cpu);
1072 return;
1073 }
1074 stat->stat = function_stats;
1075 snprintf(name, 32, "function%d", cpu);
1076 stat->stat.name = name;
1077 ret = register_stat_tracer(&stat->stat);
1078 if (ret) {
1079 WARN(1,
1080 "Could not register function stat for cpu %d\n",
1081 cpu);
1082 kfree(name);
1083 return;
1084 }
Steven Rostedt493762f2009-03-23 17:12:36 -04001085 }
1086
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001087 entry = tracefs_create_file("function_profile_enabled", 0644,
Steven Rostedt493762f2009-03-23 17:12:36 -04001088 d_tracer, NULL, &ftrace_profile_fops);
1089 if (!entry)
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001090 pr_warning("Could not create tracefs "
Steven Rostedt493762f2009-03-23 17:12:36 -04001091 "'function_profile_enabled' entry\n");
1092}
1093
1094#else /* CONFIG_FUNCTION_PROFILER */
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05001095static __init void ftrace_profile_tracefs(struct dentry *d_tracer)
Steven Rostedt493762f2009-03-23 17:12:36 -04001096{
1097}
1098#endif /* CONFIG_FUNCTION_PROFILER */
1099
Ingo Molnar73d3fd92009-02-17 11:48:18 +01001100static struct pid * const ftrace_swapper_pid = &init_struct_pid;
1101
Pratyush Anand1619dc32015-03-06 23:58:06 +05301102#ifdef CONFIG_FUNCTION_GRAPH_TRACER
1103static int ftrace_graph_active;
1104#else
1105# define ftrace_graph_active 0
1106#endif
1107
Steven Rostedt3d083392008-05-12 21:20:42 +02001108#ifdef CONFIG_DYNAMIC_FTRACE
Ingo Molnar73d3fd92009-02-17 11:48:18 +01001109
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001110static struct ftrace_ops *removed_ops;
1111
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04001112/*
1113 * Set when doing a global update, like enabling all recs or disabling them.
1114 * It is not set when just updating a single ftrace_ops.
1115 */
1116static bool update_all_ops;
1117
Steven Rostedt99ecdc42008-08-15 21:40:05 -04001118#ifndef CONFIG_FTRACE_MCOUNT_RECORD
Steven Rostedtcb7be3b2008-10-23 09:33:05 -04001119# error Dynamic ftrace depends on MCOUNT_RECORD
Steven Rostedt99ecdc42008-08-15 21:40:05 -04001120#endif
1121
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001122static struct hlist_head ftrace_func_hash[FTRACE_FUNC_HASHSIZE] __read_mostly;
1123
Steven Rostedtb6887d72009-02-17 12:32:04 -05001124struct ftrace_func_probe {
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001125 struct hlist_node node;
Steven Rostedtb6887d72009-02-17 12:32:04 -05001126 struct ftrace_probe_ops *ops;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001127 unsigned long flags;
1128 unsigned long ip;
1129 void *data;
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04001130 struct list_head free_list;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05001131};
1132
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001133struct ftrace_func_entry {
1134 struct hlist_node hlist;
1135 unsigned long ip;
1136};
1137
1138struct ftrace_hash {
1139 unsigned long size_bits;
1140 struct hlist_head *buckets;
1141 unsigned long count;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001142 struct rcu_head rcu;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001143};
1144
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001145/*
1146 * We make these constant because no one should touch them,
1147 * but they are used as the default "empty hash", to avoid allocating
1148 * it all the time. These are in a read only section such that if
1149 * anyone does try to modify it, it will cause an exception.
1150 */
1151static const struct hlist_head empty_buckets[1];
1152static const struct ftrace_hash empty_hash = {
1153 .buckets = (struct hlist_head *)empty_buckets,
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001154};
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001155#define EMPTY_HASH ((struct ftrace_hash *)&empty_hash)
Steven Rostedt5072c592008-05-12 21:20:43 +02001156
Steven Rostedt2b499382011-05-03 22:49:52 -04001157static struct ftrace_ops global_ops = {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001158 .func = ftrace_stub,
1159 .local_hash.notrace_hash = EMPTY_HASH,
1160 .local_hash.filter_hash = EMPTY_HASH,
1161 INIT_OPS_HASH(global_ops)
1162 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04001163 FTRACE_OPS_FL_INITIALIZED |
1164 FTRACE_OPS_FL_PID,
Steven Rostedtf45948e2011-05-02 12:29:25 -04001165};
1166
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05001167/*
1168 * This is used by __kernel_text_address() to return true if the
Steven Rostedt (Red Hat)0af26492014-11-20 10:05:36 -05001169 * address is on a dynamically allocated trampoline that would
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05001170 * not return true for either core_kernel_text() or
1171 * is_module_text_address().
1172 */
1173bool is_ftrace_trampoline(unsigned long addr)
1174{
1175 struct ftrace_ops *op;
1176 bool ret = false;
1177
1178 /*
1179 * Some of the ops may be dynamically allocated,
1180 * they are freed after a synchronize_sched().
1181 */
1182 preempt_disable_notrace();
1183
1184 do_for_each_ftrace_op(op, ftrace_ops_list) {
1185 /*
1186 * This is to check for dynamically allocated trampolines.
1187 * Trampolines that are in kernel text will have
1188 * core_kernel_text() return true.
1189 */
1190 if (op->trampoline && op->trampoline_size)
1191 if (addr >= op->trampoline &&
1192 addr < op->trampoline + op->trampoline_size) {
1193 ret = true;
1194 goto out;
1195 }
1196 } while_for_each_ftrace_op(op);
1197
1198 out:
1199 preempt_enable_notrace();
1200
1201 return ret;
1202}
1203
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001204struct ftrace_page {
1205 struct ftrace_page *next;
Steven Rostedta7900872011-12-16 16:23:44 -05001206 struct dyn_ftrace *records;
Steven Rostedt431aa3f2009-01-06 12:43:01 -05001207 int index;
Steven Rostedta7900872011-12-16 16:23:44 -05001208 int size;
David Milleraa5e5ce2008-05-13 22:06:56 -07001209};
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001210
Steven Rostedta7900872011-12-16 16:23:44 -05001211#define ENTRY_SIZE sizeof(struct dyn_ftrace)
1212#define ENTRIES_PER_PAGE (PAGE_SIZE / ENTRY_SIZE)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02001213
1214/* estimate from running different kernels */
1215#define NR_TO_INIT 10000
1216
1217static struct ftrace_page *ftrace_pages_start;
1218static struct ftrace_page *ftrace_pages;
1219
Steven Rostedt (Red Hat)68f40962014-05-01 12:44:50 -04001220static bool __always_inline ftrace_hash_empty(struct ftrace_hash *hash)
Steven Rostedt06a51d92011-12-19 19:07:36 -05001221{
1222 return !hash || !hash->count;
1223}
1224
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001225static struct ftrace_func_entry *
1226ftrace_lookup_ip(struct ftrace_hash *hash, unsigned long ip)
1227{
1228 unsigned long key;
1229 struct ftrace_func_entry *entry;
1230 struct hlist_head *hhd;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001231
Steven Rostedt06a51d92011-12-19 19:07:36 -05001232 if (ftrace_hash_empty(hash))
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001233 return NULL;
1234
1235 if (hash->size_bits > 0)
1236 key = hash_long(ip, hash->size_bits);
1237 else
1238 key = 0;
1239
1240 hhd = &hash->buckets[key];
1241
Steven Rostedt1bb539c2013-05-28 14:38:43 -04001242 hlist_for_each_entry_rcu_notrace(entry, hhd, hlist) {
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001243 if (entry->ip == ip)
1244 return entry;
1245 }
1246 return NULL;
1247}
1248
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001249static void __add_hash_entry(struct ftrace_hash *hash,
1250 struct ftrace_func_entry *entry)
1251{
1252 struct hlist_head *hhd;
1253 unsigned long key;
1254
1255 if (hash->size_bits)
1256 key = hash_long(entry->ip, hash->size_bits);
1257 else
1258 key = 0;
1259
1260 hhd = &hash->buckets[key];
1261 hlist_add_head(&entry->hlist, hhd);
1262 hash->count++;
1263}
1264
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001265static int add_hash_entry(struct ftrace_hash *hash, unsigned long ip)
1266{
1267 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001268
1269 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
1270 if (!entry)
1271 return -ENOMEM;
1272
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001273 entry->ip = ip;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001274 __add_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001275
1276 return 0;
1277}
1278
1279static void
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001280free_hash_entry(struct ftrace_hash *hash,
1281 struct ftrace_func_entry *entry)
1282{
1283 hlist_del(&entry->hlist);
1284 kfree(entry);
1285 hash->count--;
1286}
1287
1288static void
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001289remove_hash_entry(struct ftrace_hash *hash,
1290 struct ftrace_func_entry *entry)
1291{
1292 hlist_del(&entry->hlist);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001293 hash->count--;
1294}
1295
1296static void ftrace_hash_clear(struct ftrace_hash *hash)
1297{
1298 struct hlist_head *hhd;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001299 struct hlist_node *tn;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001300 struct ftrace_func_entry *entry;
1301 int size = 1 << hash->size_bits;
1302 int i;
1303
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001304 if (!hash->count)
1305 return;
1306
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001307 for (i = 0; i < size; i++) {
1308 hhd = &hash->buckets[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001309 hlist_for_each_entry_safe(entry, tn, hhd, hlist)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001310 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04001311 }
1312 FTRACE_WARN_ON(hash->count);
1313}
1314
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001315static void free_ftrace_hash(struct ftrace_hash *hash)
1316{
1317 if (!hash || hash == EMPTY_HASH)
1318 return;
1319 ftrace_hash_clear(hash);
1320 kfree(hash->buckets);
1321 kfree(hash);
1322}
1323
Steven Rostedt07fd5512011-05-05 18:03:47 -04001324static void __free_ftrace_hash_rcu(struct rcu_head *rcu)
1325{
1326 struct ftrace_hash *hash;
1327
1328 hash = container_of(rcu, struct ftrace_hash, rcu);
1329 free_ftrace_hash(hash);
1330}
1331
1332static void free_ftrace_hash_rcu(struct ftrace_hash *hash)
1333{
1334 if (!hash || hash == EMPTY_HASH)
1335 return;
1336 call_rcu_sched(&hash->rcu, __free_ftrace_hash_rcu);
1337}
1338
Jiri Olsa5500fa52012-02-15 15:51:54 +01001339void ftrace_free_filter(struct ftrace_ops *ops)
1340{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09001341 ftrace_ops_init(ops);
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001342 free_ftrace_hash(ops->func_hash->filter_hash);
1343 free_ftrace_hash(ops->func_hash->notrace_hash);
Jiri Olsa5500fa52012-02-15 15:51:54 +01001344}
1345
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001346static struct ftrace_hash *alloc_ftrace_hash(int size_bits)
1347{
1348 struct ftrace_hash *hash;
1349 int size;
1350
1351 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
1352 if (!hash)
1353 return NULL;
1354
1355 size = 1 << size_bits;
Thomas Meyer47b0edc2011-11-29 22:08:00 +01001356 hash->buckets = kcalloc(size, sizeof(*hash->buckets), GFP_KERNEL);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001357
1358 if (!hash->buckets) {
1359 kfree(hash);
1360 return NULL;
1361 }
1362
1363 hash->size_bits = size_bits;
1364
1365 return hash;
1366}
1367
1368static struct ftrace_hash *
1369alloc_and_copy_ftrace_hash(int size_bits, struct ftrace_hash *hash)
1370{
1371 struct ftrace_func_entry *entry;
1372 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001373 int size;
1374 int ret;
1375 int i;
1376
1377 new_hash = alloc_ftrace_hash(size_bits);
1378 if (!new_hash)
1379 return NULL;
1380
1381 /* Empty hash? */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001382 if (ftrace_hash_empty(hash))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001383 return new_hash;
1384
1385 size = 1 << hash->size_bits;
1386 for (i = 0; i < size; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -08001387 hlist_for_each_entry(entry, &hash->buckets[i], hlist) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001388 ret = add_hash_entry(new_hash, entry->ip);
1389 if (ret < 0)
1390 goto free_hash;
1391 }
1392 }
1393
1394 FTRACE_WARN_ON(new_hash->count != hash->count);
1395
1396 return new_hash;
1397
1398 free_hash:
1399 free_ftrace_hash(new_hash);
1400 return NULL;
1401}
1402
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001403static void
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001404ftrace_hash_rec_disable_modify(struct ftrace_ops *ops, int filter_hash);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001405static void
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001406ftrace_hash_rec_enable_modify(struct ftrace_ops *ops, int filter_hash);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001407
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001408static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
1409 struct ftrace_hash *new_hash);
1410
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001411static int
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001412ftrace_hash_move(struct ftrace_ops *ops, int enable,
1413 struct ftrace_hash **dst, struct ftrace_hash *src)
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001414{
1415 struct ftrace_func_entry *entry;
Sasha Levinb67bfe02013-02-27 17:06:00 -08001416 struct hlist_node *tn;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001417 struct hlist_head *hhd;
Steven Rostedt07fd5512011-05-05 18:03:47 -04001418 struct ftrace_hash *new_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001419 int size = src->count;
1420 int bits = 0;
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001421 int ret;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001422 int i;
1423
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001424 /* Reject setting notrace hash on IPMODIFY ftrace_ops */
1425 if (ops->flags & FTRACE_OPS_FL_IPMODIFY && !enable)
1426 return -EINVAL;
1427
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001428 /*
1429 * If the new source is empty, just free dst and assign it
1430 * the empty_hash.
1431 */
1432 if (!src->count) {
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001433 new_hash = EMPTY_HASH;
1434 goto update;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001435 }
1436
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001437 /*
1438 * Make the hash size about 1/2 the # found
1439 */
1440 for (size /= 2; size; size >>= 1)
1441 bits++;
1442
1443 /* Don't allocate too much */
1444 if (bits > FTRACE_HASH_MAX_BITS)
1445 bits = FTRACE_HASH_MAX_BITS;
1446
Steven Rostedt07fd5512011-05-05 18:03:47 -04001447 new_hash = alloc_ftrace_hash(bits);
1448 if (!new_hash)
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001449 return -ENOMEM;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001450
1451 size = 1 << src->size_bits;
1452 for (i = 0; i < size; i++) {
1453 hhd = &src->buckets[i];
Sasha Levinb67bfe02013-02-27 17:06:00 -08001454 hlist_for_each_entry_safe(entry, tn, hhd, hlist) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001455 remove_hash_entry(src, entry);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001456 __add_hash_entry(new_hash, entry);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001457 }
1458 }
1459
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001460update:
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001461 /* Make sure this can be applied if it is IPMODIFY ftrace_ops */
1462 if (enable) {
1463 /* IPMODIFY should be updated only when filter_hash updating */
1464 ret = ftrace_hash_ipmodify_update(ops, new_hash);
1465 if (ret < 0) {
1466 free_ftrace_hash(new_hash);
1467 return ret;
1468 }
1469 }
1470
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001471 /*
1472 * Remove the current set, update the hash and add
1473 * them back.
1474 */
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001475 ftrace_hash_rec_disable_modify(ops, enable);
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001476
Steven Rostedt07fd5512011-05-05 18:03:47 -04001477 rcu_assign_pointer(*dst, new_hash);
Steven Rostedt07fd5512011-05-05 18:03:47 -04001478
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001479 ftrace_hash_rec_enable_modify(ops, enable);
Steven Rostedt41fb61c2011-07-13 15:03:44 -04001480
Masami Hiramatsu5c27c772014-06-17 11:04:42 +00001481 return 0;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04001482}
1483
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001484static bool hash_contains_ip(unsigned long ip,
1485 struct ftrace_ops_hash *hash)
1486{
1487 /*
1488 * The function record is a match if it exists in the filter
1489 * hash and not in the notrace hash. Note, an emty hash is
1490 * considered a match for the filter hash, but an empty
1491 * notrace hash is considered not in the notrace hash.
1492 */
1493 return (ftrace_hash_empty(hash->filter_hash) ||
1494 ftrace_lookup_ip(hash->filter_hash, ip)) &&
1495 (ftrace_hash_empty(hash->notrace_hash) ||
1496 !ftrace_lookup_ip(hash->notrace_hash, ip));
1497}
1498
Steven Rostedt265c8312009-02-13 12:43:56 -05001499/*
Steven Rostedtb8489142011-05-04 09:27:52 -04001500 * Test the hashes for this ops to see if we want to call
1501 * the ops->func or not.
1502 *
1503 * It's a match if the ip is in the ops->filter_hash or
1504 * the filter_hash does not exist or is empty,
1505 * AND
1506 * the ip is not in the ops->notrace_hash.
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04001507 *
1508 * This needs to be called with preemption disabled as
1509 * the hashes are freed with call_rcu_sched().
Steven Rostedtb8489142011-05-04 09:27:52 -04001510 */
1511static int
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04001512ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04001513{
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001514 struct ftrace_ops_hash hash;
Steven Rostedtb8489142011-05-04 09:27:52 -04001515 int ret;
1516
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04001517#ifdef CONFIG_DYNAMIC_FTRACE_WITH_REGS
1518 /*
1519 * There's a small race when adding ops that the ftrace handler
1520 * that wants regs, may be called without them. We can not
1521 * allow that handler to be called if regs is NULL.
1522 */
1523 if (regs == NULL && (ops->flags & FTRACE_OPS_FL_SAVE_REGS))
1524 return 0;
1525#endif
1526
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001527 hash.filter_hash = rcu_dereference_raw_notrace(ops->func_hash->filter_hash);
1528 hash.notrace_hash = rcu_dereference_raw_notrace(ops->func_hash->notrace_hash);
Steven Rostedtb8489142011-05-04 09:27:52 -04001529
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001530 if (hash_contains_ip(ip, &hash))
Steven Rostedtb8489142011-05-04 09:27:52 -04001531 ret = 1;
1532 else
1533 ret = 0;
Steven Rostedtb8489142011-05-04 09:27:52 -04001534
1535 return ret;
1536}
1537
1538/*
Steven Rostedt265c8312009-02-13 12:43:56 -05001539 * This is a double for. Do not use 'break' to break out of the loop,
1540 * you must use a goto.
1541 */
1542#define do_for_each_ftrace_rec(pg, rec) \
1543 for (pg = ftrace_pages_start; pg; pg = pg->next) { \
1544 int _____i; \
1545 for (_____i = 0; _____i < pg->index; _____i++) { \
1546 rec = &pg->records[_____i];
1547
1548#define while_for_each_ftrace_rec() \
1549 } \
1550 }
Abhishek Sagarecea6562008-06-21 23:47:53 +05301551
Steven Rostedt5855fea2011-12-16 19:27:42 -05001552
1553static int ftrace_cmp_recs(const void *a, const void *b)
1554{
Steven Rostedta650e022012-04-25 13:48:13 -04001555 const struct dyn_ftrace *key = a;
1556 const struct dyn_ftrace *rec = b;
Steven Rostedt5855fea2011-12-16 19:27:42 -05001557
Steven Rostedta650e022012-04-25 13:48:13 -04001558 if (key->flags < rec->ip)
Steven Rostedt5855fea2011-12-16 19:27:42 -05001559 return -1;
Steven Rostedta650e022012-04-25 13:48:13 -04001560 if (key->ip >= rec->ip + MCOUNT_INSN_SIZE)
1561 return 1;
1562 return 0;
1563}
1564
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001565static unsigned long ftrace_location_range(unsigned long start, unsigned long end)
Steven Rostedta650e022012-04-25 13:48:13 -04001566{
1567 struct ftrace_page *pg;
1568 struct dyn_ftrace *rec;
1569 struct dyn_ftrace key;
1570
1571 key.ip = start;
1572 key.flags = end; /* overload flags, as it is unsigned long */
1573
1574 for (pg = ftrace_pages_start; pg; pg = pg->next) {
1575 if (end < pg->records[0].ip ||
1576 start >= (pg->records[pg->index - 1].ip + MCOUNT_INSN_SIZE))
1577 continue;
1578 rec = bsearch(&key, pg->records, pg->index,
1579 sizeof(struct dyn_ftrace),
1580 ftrace_cmp_recs);
1581 if (rec)
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001582 return rec->ip;
Steven Rostedta650e022012-04-25 13:48:13 -04001583 }
1584
Steven Rostedt5855fea2011-12-16 19:27:42 -05001585 return 0;
1586}
1587
Steven Rostedtc88fd862011-08-16 09:53:39 -04001588/**
1589 * ftrace_location - return true if the ip giving is a traced location
1590 * @ip: the instruction pointer to check
1591 *
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001592 * Returns rec->ip if @ip given is a pointer to a ftrace location.
Steven Rostedtc88fd862011-08-16 09:53:39 -04001593 * That is, the instruction that is either a NOP or call to
1594 * the function tracer. It checks the ftrace internal tables to
1595 * determine if the address belongs or not.
1596 */
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001597unsigned long ftrace_location(unsigned long ip)
Steven Rostedtc88fd862011-08-16 09:53:39 -04001598{
Steven Rostedta650e022012-04-25 13:48:13 -04001599 return ftrace_location_range(ip, ip);
1600}
Steven Rostedtc88fd862011-08-16 09:53:39 -04001601
Steven Rostedta650e022012-04-25 13:48:13 -04001602/**
1603 * ftrace_text_reserved - return true if range contains an ftrace location
1604 * @start: start of range to search
1605 * @end: end of range to search (inclusive). @end points to the last byte to check.
1606 *
1607 * Returns 1 if @start and @end contains a ftrace location.
1608 * That is, the instruction that is either a NOP or call to
1609 * the function tracer. It checks the ftrace internal tables to
1610 * determine if the address belongs or not.
1611 */
Sasha Levind88471c2013-01-09 18:09:20 -05001612int ftrace_text_reserved(const void *start, const void *end)
Steven Rostedta650e022012-04-25 13:48:13 -04001613{
Steven Rostedtf0cf9732012-04-25 14:39:54 -04001614 unsigned long ret;
1615
1616 ret = ftrace_location_range((unsigned long)start,
1617 (unsigned long)end);
1618
1619 return (int)!!ret;
Steven Rostedtc88fd862011-08-16 09:53:39 -04001620}
1621
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001622/* Test if ops registered to this rec needs regs */
1623static bool test_rec_ops_needs_regs(struct dyn_ftrace *rec)
1624{
1625 struct ftrace_ops *ops;
1626 bool keep_regs = false;
1627
1628 for (ops = ftrace_ops_list;
1629 ops != &ftrace_list_end; ops = ops->next) {
1630 /* pass rec in as regs to have non-NULL val */
1631 if (ftrace_ops_test(ops, rec->ip, rec)) {
1632 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1633 keep_regs = true;
1634 break;
1635 }
1636 }
1637 }
1638
1639 return keep_regs;
1640}
1641
Steven Rostedted926f92011-05-03 13:25:24 -04001642static void __ftrace_hash_rec_update(struct ftrace_ops *ops,
1643 int filter_hash,
1644 bool inc)
1645{
1646 struct ftrace_hash *hash;
1647 struct ftrace_hash *other_hash;
1648 struct ftrace_page *pg;
1649 struct dyn_ftrace *rec;
1650 int count = 0;
1651 int all = 0;
1652
1653 /* Only update if the ops has been registered */
1654 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1655 return;
1656
1657 /*
1658 * In the filter_hash case:
1659 * If the count is zero, we update all records.
1660 * Otherwise we just update the items in the hash.
1661 *
1662 * In the notrace_hash case:
1663 * We enable the update in the hash.
1664 * As disabling notrace means enabling the tracing,
1665 * and enabling notrace means disabling, the inc variable
1666 * gets inversed.
1667 */
1668 if (filter_hash) {
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001669 hash = ops->func_hash->filter_hash;
1670 other_hash = ops->func_hash->notrace_hash;
Steven Rostedt06a51d92011-12-19 19:07:36 -05001671 if (ftrace_hash_empty(hash))
Steven Rostedted926f92011-05-03 13:25:24 -04001672 all = 1;
1673 } else {
1674 inc = !inc;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04001675 hash = ops->func_hash->notrace_hash;
1676 other_hash = ops->func_hash->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04001677 /*
1678 * If the notrace hash has no items,
1679 * then there's nothing to do.
1680 */
Steven Rostedt06a51d92011-12-19 19:07:36 -05001681 if (ftrace_hash_empty(hash))
Steven Rostedted926f92011-05-03 13:25:24 -04001682 return;
1683 }
1684
1685 do_for_each_ftrace_rec(pg, rec) {
1686 int in_other_hash = 0;
1687 int in_hash = 0;
1688 int match = 0;
1689
1690 if (all) {
1691 /*
1692 * Only the filter_hash affects all records.
1693 * Update if the record is not in the notrace hash.
1694 */
Steven Rostedtb8489142011-05-04 09:27:52 -04001695 if (!other_hash || !ftrace_lookup_ip(other_hash, rec->ip))
Steven Rostedted926f92011-05-03 13:25:24 -04001696 match = 1;
1697 } else {
Steven Rostedt06a51d92011-12-19 19:07:36 -05001698 in_hash = !!ftrace_lookup_ip(hash, rec->ip);
1699 in_other_hash = !!ftrace_lookup_ip(other_hash, rec->ip);
Steven Rostedted926f92011-05-03 13:25:24 -04001700
1701 /*
Steven Rostedt (Red Hat)19eab4a2014-05-07 15:06:14 -04001702 * If filter_hash is set, we want to match all functions
1703 * that are in the hash but not in the other hash.
Steven Rostedted926f92011-05-03 13:25:24 -04001704 *
Steven Rostedt (Red Hat)19eab4a2014-05-07 15:06:14 -04001705 * If filter_hash is not set, then we are decrementing.
1706 * That means we match anything that is in the hash
1707 * and also in the other_hash. That is, we need to turn
1708 * off functions in the other hash because they are disabled
1709 * by this hash.
Steven Rostedted926f92011-05-03 13:25:24 -04001710 */
1711 if (filter_hash && in_hash && !in_other_hash)
1712 match = 1;
1713 else if (!filter_hash && in_hash &&
Steven Rostedt06a51d92011-12-19 19:07:36 -05001714 (in_other_hash || ftrace_hash_empty(other_hash)))
Steven Rostedted926f92011-05-03 13:25:24 -04001715 match = 1;
1716 }
1717 if (!match)
1718 continue;
1719
1720 if (inc) {
1721 rec->flags++;
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001722 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == FTRACE_REF_MAX))
Steven Rostedted926f92011-05-03 13:25:24 -04001723 return;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001724
1725 /*
1726 * If there's only a single callback registered to a
1727 * function, and the ops has a trampoline registered
1728 * for it, then we can call it directly.
1729 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001730 if (ftrace_rec_count(rec) == 1 && ops->trampoline)
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001731 rec->flags |= FTRACE_FL_TRAMP;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001732 else
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001733 /*
1734 * If we are adding another function callback
1735 * to this function, and the previous had a
Steven Rostedt (Red Hat)bce0b6c2014-08-20 23:57:04 -04001736 * custom trampoline in use, then we need to go
1737 * back to the default trampoline.
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001738 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001739 rec->flags &= ~FTRACE_FL_TRAMP;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001740
Steven Rostedt08f6fba2012-04-30 16:20:23 -04001741 /*
1742 * If any ops wants regs saved for this function
1743 * then all ops will get saved regs.
1744 */
1745 if (ops->flags & FTRACE_OPS_FL_SAVE_REGS)
1746 rec->flags |= FTRACE_FL_REGS;
Steven Rostedted926f92011-05-03 13:25:24 -04001747 } else {
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001748 if (FTRACE_WARN_ON(ftrace_rec_count(rec) == 0))
Steven Rostedted926f92011-05-03 13:25:24 -04001749 return;
1750 rec->flags--;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001751
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001752 /*
1753 * If the rec had REGS enabled and the ops that is
1754 * being removed had REGS set, then see if there is
1755 * still any ops for this record that wants regs.
1756 * If not, we can stop recording them.
1757 */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04001758 if (ftrace_rec_count(rec) > 0 &&
Steven Rostedt (Red Hat)4fbb48c2014-04-30 22:35:48 -04001759 rec->flags & FTRACE_FL_REGS &&
1760 ops->flags & FTRACE_OPS_FL_SAVE_REGS) {
1761 if (!test_rec_ops_needs_regs(rec))
1762 rec->flags &= ~FTRACE_FL_REGS;
1763 }
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001764
1765 /*
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04001766 * If the rec had TRAMP enabled, then it needs to
1767 * be cleared. As TRAMP can only be enabled iff
1768 * there is only a single ops attached to it.
1769 * In otherwords, always disable it on decrementing.
1770 * In the future, we may set it if rec count is
1771 * decremented to one, and the ops that is left
1772 * has a trampoline.
1773 */
1774 rec->flags &= ~FTRACE_FL_TRAMP;
1775
1776 /*
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04001777 * flags will be cleared in ftrace_check_record()
1778 * if rec count is zero.
1779 */
Steven Rostedted926f92011-05-03 13:25:24 -04001780 }
1781 count++;
1782 /* Shortcut, if we handled all records, we are done. */
1783 if (!all && count == hash->count)
1784 return;
1785 } while_for_each_ftrace_rec();
1786}
1787
1788static void ftrace_hash_rec_disable(struct ftrace_ops *ops,
1789 int filter_hash)
1790{
1791 __ftrace_hash_rec_update(ops, filter_hash, 0);
1792}
1793
1794static void ftrace_hash_rec_enable(struct ftrace_ops *ops,
1795 int filter_hash)
1796{
1797 __ftrace_hash_rec_update(ops, filter_hash, 1);
1798}
1799
Steven Rostedt (Red Hat)84261912014-08-18 13:21:08 -04001800static void ftrace_hash_rec_update_modify(struct ftrace_ops *ops,
1801 int filter_hash, int inc)
1802{
1803 struct ftrace_ops *op;
1804
1805 __ftrace_hash_rec_update(ops, filter_hash, inc);
1806
1807 if (ops->func_hash != &global_ops.local_hash)
1808 return;
1809
1810 /*
1811 * If the ops shares the global_ops hash, then we need to update
1812 * all ops that are enabled and use this hash.
1813 */
1814 do_for_each_ftrace_op(op, ftrace_ops_list) {
1815 /* Already done */
1816 if (op == ops)
1817 continue;
1818 if (op->func_hash == &global_ops.local_hash)
1819 __ftrace_hash_rec_update(op, filter_hash, inc);
1820 } while_for_each_ftrace_op(op);
1821}
1822
1823static void ftrace_hash_rec_disable_modify(struct ftrace_ops *ops,
1824 int filter_hash)
1825{
1826 ftrace_hash_rec_update_modify(ops, filter_hash, 0);
1827}
1828
1829static void ftrace_hash_rec_enable_modify(struct ftrace_ops *ops,
1830 int filter_hash)
1831{
1832 ftrace_hash_rec_update_modify(ops, filter_hash, 1);
1833}
1834
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05001835/*
1836 * Try to update IPMODIFY flag on each ftrace_rec. Return 0 if it is OK
1837 * or no-needed to update, -EBUSY if it detects a conflict of the flag
1838 * on a ftrace_rec, and -EINVAL if the new_hash tries to trace all recs.
1839 * Note that old_hash and new_hash has below meanings
1840 * - If the hash is NULL, it hits all recs (if IPMODIFY is set, this is rejected)
1841 * - If the hash is EMPTY_HASH, it hits nothing
1842 * - Anything else hits the recs which match the hash entries.
1843 */
1844static int __ftrace_hash_update_ipmodify(struct ftrace_ops *ops,
1845 struct ftrace_hash *old_hash,
1846 struct ftrace_hash *new_hash)
1847{
1848 struct ftrace_page *pg;
1849 struct dyn_ftrace *rec, *end = NULL;
1850 int in_old, in_new;
1851
1852 /* Only update if the ops has been registered */
1853 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
1854 return 0;
1855
1856 if (!(ops->flags & FTRACE_OPS_FL_IPMODIFY))
1857 return 0;
1858
1859 /*
1860 * Since the IPMODIFY is a very address sensitive action, we do not
1861 * allow ftrace_ops to set all functions to new hash.
1862 */
1863 if (!new_hash || !old_hash)
1864 return -EINVAL;
1865
1866 /* Update rec->flags */
1867 do_for_each_ftrace_rec(pg, rec) {
1868 /* We need to update only differences of filter_hash */
1869 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1870 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1871 if (in_old == in_new)
1872 continue;
1873
1874 if (in_new) {
1875 /* New entries must ensure no others are using it */
1876 if (rec->flags & FTRACE_FL_IPMODIFY)
1877 goto rollback;
1878 rec->flags |= FTRACE_FL_IPMODIFY;
1879 } else /* Removed entry */
1880 rec->flags &= ~FTRACE_FL_IPMODIFY;
1881 } while_for_each_ftrace_rec();
1882
1883 return 0;
1884
1885rollback:
1886 end = rec;
1887
1888 /* Roll back what we did above */
1889 do_for_each_ftrace_rec(pg, rec) {
1890 if (rec == end)
1891 goto err_out;
1892
1893 in_old = !!ftrace_lookup_ip(old_hash, rec->ip);
1894 in_new = !!ftrace_lookup_ip(new_hash, rec->ip);
1895 if (in_old == in_new)
1896 continue;
1897
1898 if (in_new)
1899 rec->flags &= ~FTRACE_FL_IPMODIFY;
1900 else
1901 rec->flags |= FTRACE_FL_IPMODIFY;
1902 } while_for_each_ftrace_rec();
1903
1904err_out:
1905 return -EBUSY;
1906}
1907
1908static int ftrace_hash_ipmodify_enable(struct ftrace_ops *ops)
1909{
1910 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1911
1912 if (ftrace_hash_empty(hash))
1913 hash = NULL;
1914
1915 return __ftrace_hash_update_ipmodify(ops, EMPTY_HASH, hash);
1916}
1917
1918/* Disabling always succeeds */
1919static void ftrace_hash_ipmodify_disable(struct ftrace_ops *ops)
1920{
1921 struct ftrace_hash *hash = ops->func_hash->filter_hash;
1922
1923 if (ftrace_hash_empty(hash))
1924 hash = NULL;
1925
1926 __ftrace_hash_update_ipmodify(ops, hash, EMPTY_HASH);
1927}
1928
1929static int ftrace_hash_ipmodify_update(struct ftrace_ops *ops,
1930 struct ftrace_hash *new_hash)
1931{
1932 struct ftrace_hash *old_hash = ops->func_hash->filter_hash;
1933
1934 if (ftrace_hash_empty(old_hash))
1935 old_hash = NULL;
1936
1937 if (ftrace_hash_empty(new_hash))
1938 new_hash = NULL;
1939
1940 return __ftrace_hash_update_ipmodify(ops, old_hash, new_hash);
1941}
1942
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05001943static void print_ip_ins(const char *fmt, const unsigned char *p)
Steven Rostedt05736a42008-09-22 14:55:47 -07001944{
1945 int i;
1946
1947 printk(KERN_CONT "%s", fmt);
1948
1949 for (i = 0; i < MCOUNT_INSN_SIZE; i++)
1950 printk(KERN_CONT "%s%02x", i ? ":" : "", p[i]);
1951}
1952
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001953static struct ftrace_ops *
1954ftrace_find_tramp_ops_any(struct dyn_ftrace *rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05001955static struct ftrace_ops *
1956ftrace_find_tramp_ops_next(struct dyn_ftrace *rec, struct ftrace_ops *ops);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001957
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05001958enum ftrace_bug_type ftrace_bug_type;
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05001959const void *ftrace_expected;
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05001960
1961static void print_bug_type(void)
1962{
1963 switch (ftrace_bug_type) {
1964 case FTRACE_BUG_UNKNOWN:
1965 break;
1966 case FTRACE_BUG_INIT:
1967 pr_info("Initializing ftrace call sites\n");
1968 break;
1969 case FTRACE_BUG_NOP:
1970 pr_info("Setting ftrace call site to NOP\n");
1971 break;
1972 case FTRACE_BUG_CALL:
1973 pr_info("Setting ftrace call site to call ftrace function\n");
1974 break;
1975 case FTRACE_BUG_UPDATE:
1976 pr_info("Updating ftrace call site to call a different ftrace function\n");
1977 break;
1978 }
1979}
1980
Steven Rostedtc88fd862011-08-16 09:53:39 -04001981/**
1982 * ftrace_bug - report and shutdown function tracer
1983 * @failed: The failed type (EFAULT, EINVAL, EPERM)
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001984 * @rec: The record that failed
Steven Rostedtc88fd862011-08-16 09:53:39 -04001985 *
1986 * The arch code that enables or disables the function tracing
1987 * can call ftrace_bug() when it has detected a problem in
1988 * modifying the code. @failed should be one of either:
1989 * EFAULT - if the problem happens on reading the @ip address
1990 * EINVAL - if what is read at @ip is not what was expected
1991 * EPERM - if the problem happens on writting to the @ip address
1992 */
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001993void ftrace_bug(int failed, struct dyn_ftrace *rec)
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001994{
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04001995 unsigned long ip = rec ? rec->ip : 0;
1996
Steven Rostedtb17e8a32008-11-14 16:21:19 -08001997 switch (failed) {
1998 case -EFAULT:
1999 FTRACE_WARN_ON_ONCE(1);
2000 pr_info("ftrace faulted on modifying ");
2001 print_ip_sym(ip);
2002 break;
2003 case -EINVAL:
2004 FTRACE_WARN_ON_ONCE(1);
2005 pr_info("ftrace failed to modify ");
2006 print_ip_sym(ip);
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05002007 print_ip_ins(" actual: ", (unsigned char *)ip);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002008 pr_cont("\n");
Steven Rostedt (Red Hat)b05086c2015-11-25 14:13:11 -05002009 if (ftrace_expected) {
2010 print_ip_ins(" expected: ", ftrace_expected);
2011 pr_cont("\n");
2012 }
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002013 break;
2014 case -EPERM:
2015 FTRACE_WARN_ON_ONCE(1);
2016 pr_info("ftrace faulted on writing ");
2017 print_ip_sym(ip);
2018 break;
2019 default:
2020 FTRACE_WARN_ON_ONCE(1);
2021 pr_info("ftrace faulted on unknown error ");
2022 print_ip_sym(ip);
2023 }
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002024 print_bug_type();
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002025 if (rec) {
2026 struct ftrace_ops *ops = NULL;
2027
2028 pr_info("ftrace record flags: %lx\n", rec->flags);
2029 pr_cont(" (%ld)%s", ftrace_rec_count(rec),
2030 rec->flags & FTRACE_FL_REGS ? " R" : " ");
2031 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2032 ops = ftrace_find_tramp_ops_any(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002033 if (ops) {
2034 do {
2035 pr_cont("\ttramp: %pS (%pS)",
2036 (void *)ops->trampoline,
2037 (void *)ops->func);
2038 ops = ftrace_find_tramp_ops_next(rec, ops);
2039 } while (ops);
2040 } else
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002041 pr_cont("\ttramp: ERROR!");
2042
2043 }
2044 ip = ftrace_get_addr_curr(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002045 pr_cont("\n expected tramp: %lx\n", ip);
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002046 }
Steven Rostedtb17e8a32008-11-14 16:21:19 -08002047}
2048
Steven Rostedtc88fd862011-08-16 09:53:39 -04002049static int ftrace_check_record(struct dyn_ftrace *rec, int enable, int update)
Steven Rostedt5072c592008-05-12 21:20:43 +02002050{
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002051 unsigned long flag = 0UL;
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01002052
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002053 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2054
Steven Rostedt982c3502008-11-15 16:31:41 -05002055 /*
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002056 * If we are updating calls:
Steven Rostedt982c3502008-11-15 16:31:41 -05002057 *
Steven Rostedted926f92011-05-03 13:25:24 -04002058 * If the record has a ref count, then we need to enable it
2059 * because someone is using it.
Steven Rostedt982c3502008-11-15 16:31:41 -05002060 *
Steven Rostedted926f92011-05-03 13:25:24 -04002061 * Otherwise we make sure its disabled.
2062 *
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002063 * If we are disabling calls, then disable all records that
Steven Rostedted926f92011-05-03 13:25:24 -04002064 * are enabled.
Steven Rostedt982c3502008-11-15 16:31:41 -05002065 */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04002066 if (enable && ftrace_rec_count(rec))
Steven Rostedted926f92011-05-03 13:25:24 -04002067 flag = FTRACE_FL_ENABLED;
Steven Rostedt5072c592008-05-12 21:20:43 +02002068
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002069 /*
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002070 * If enabling and the REGS flag does not match the REGS_EN, or
2071 * the TRAMP flag doesn't match the TRAMP_EN, then do not ignore
2072 * this record. Set flags to fail the compare against ENABLED.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002073 */
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002074 if (flag) {
2075 if (!(rec->flags & FTRACE_FL_REGS) !=
2076 !(rec->flags & FTRACE_FL_REGS_EN))
2077 flag |= FTRACE_FL_REGS;
2078
2079 if (!(rec->flags & FTRACE_FL_TRAMP) !=
2080 !(rec->flags & FTRACE_FL_TRAMP_EN))
2081 flag |= FTRACE_FL_TRAMP;
2082 }
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002083
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002084 /* If the state of this record hasn't changed, then do nothing */
2085 if ((rec->flags & FTRACE_FL_ENABLED) == flag)
Steven Rostedtc88fd862011-08-16 09:53:39 -04002086 return FTRACE_UPDATE_IGNORE;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002087
2088 if (flag) {
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002089 /* Save off if rec is being enabled (for return value) */
2090 flag ^= rec->flags & FTRACE_FL_ENABLED;
2091
2092 if (update) {
Steven Rostedtc88fd862011-08-16 09:53:39 -04002093 rec->flags |= FTRACE_FL_ENABLED;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002094 if (flag & FTRACE_FL_REGS) {
2095 if (rec->flags & FTRACE_FL_REGS)
2096 rec->flags |= FTRACE_FL_REGS_EN;
2097 else
2098 rec->flags &= ~FTRACE_FL_REGS_EN;
2099 }
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002100 if (flag & FTRACE_FL_TRAMP) {
2101 if (rec->flags & FTRACE_FL_TRAMP)
2102 rec->flags |= FTRACE_FL_TRAMP_EN;
2103 else
2104 rec->flags &= ~FTRACE_FL_TRAMP_EN;
2105 }
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002106 }
2107
2108 /*
2109 * If this record is being updated from a nop, then
2110 * return UPDATE_MAKE_CALL.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002111 * Otherwise,
2112 * return UPDATE_MODIFY_CALL to tell the caller to convert
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002113 * from the save regs, to a non-save regs function or
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002114 * vice versa, or from a trampoline call.
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002115 */
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002116 if (flag & FTRACE_FL_ENABLED) {
2117 ftrace_bug_type = FTRACE_BUG_CALL;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002118 return FTRACE_UPDATE_MAKE_CALL;
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002119 }
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002120
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002121 ftrace_bug_type = FTRACE_BUG_UPDATE;
Steven Rostedt (Red Hat)f1b2f2b2014-05-07 16:09:49 -04002122 return FTRACE_UPDATE_MODIFY_CALL;
Xiao Guangrong64fbcd12009-07-15 12:32:15 +08002123 }
2124
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002125 if (update) {
2126 /* If there's no more users, clear all flags */
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04002127 if (!ftrace_rec_count(rec))
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002128 rec->flags = 0;
2129 else
Steven Rostedt (Red Hat)b24d4432015-03-04 23:10:28 -05002130 /*
2131 * Just disable the record, but keep the ops TRAMP
2132 * and REGS states. The _EN flags must be disabled though.
2133 */
2134 rec->flags &= ~(FTRACE_FL_ENABLED | FTRACE_FL_TRAMP_EN |
2135 FTRACE_FL_REGS_EN);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002136 }
Steven Rostedtc88fd862011-08-16 09:53:39 -04002137
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002138 ftrace_bug_type = FTRACE_BUG_NOP;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002139 return FTRACE_UPDATE_MAKE_NOP;
2140}
2141
2142/**
2143 * ftrace_update_record, set a record that now is tracing or not
2144 * @rec: the record to update
2145 * @enable: set to 1 if the record is tracing, zero to force disable
2146 *
2147 * The records that represent all functions that can be traced need
2148 * to be updated when tracing has been enabled.
2149 */
2150int ftrace_update_record(struct dyn_ftrace *rec, int enable)
2151{
2152 return ftrace_check_record(rec, enable, 1);
2153}
2154
2155/**
2156 * ftrace_test_record, check if the record has been enabled or not
2157 * @rec: the record to test
2158 * @enable: set to 1 to check if enabled, 0 if it is disabled
2159 *
2160 * The arch code may need to test if a record is already set to
2161 * tracing to determine how to modify the function code that it
2162 * represents.
2163 */
2164int ftrace_test_record(struct dyn_ftrace *rec, int enable)
2165{
2166 return ftrace_check_record(rec, enable, 0);
2167}
2168
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002169static struct ftrace_ops *
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002170ftrace_find_tramp_ops_any(struct dyn_ftrace *rec)
2171{
2172 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002173 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002174
2175 do_for_each_ftrace_op(op, ftrace_ops_list) {
2176
2177 if (!op->trampoline)
2178 continue;
2179
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002180 if (hash_contains_ip(ip, op->func_hash))
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04002181 return op;
2182 } while_for_each_ftrace_op(op);
2183
2184 return NULL;
2185}
2186
2187static struct ftrace_ops *
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05002188ftrace_find_tramp_ops_next(struct dyn_ftrace *rec,
2189 struct ftrace_ops *op)
2190{
2191 unsigned long ip = rec->ip;
2192
2193 while_for_each_ftrace_op(op) {
2194
2195 if (!op->trampoline)
2196 continue;
2197
2198 if (hash_contains_ip(ip, op->func_hash))
2199 return op;
2200 }
2201
2202 return NULL;
2203}
2204
2205static struct ftrace_ops *
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002206ftrace_find_tramp_ops_curr(struct dyn_ftrace *rec)
2207{
2208 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002209 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002210
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002211 /*
2212 * Need to check removed ops first.
2213 * If they are being removed, and this rec has a tramp,
2214 * and this rec is in the ops list, then it would be the
2215 * one with the tramp.
2216 */
2217 if (removed_ops) {
2218 if (hash_contains_ip(ip, &removed_ops->old_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002219 return removed_ops;
2220 }
2221
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002222 /*
2223 * Need to find the current trampoline for a rec.
2224 * Now, a trampoline is only attached to a rec if there
2225 * was a single 'ops' attached to it. But this can be called
2226 * when we are adding another op to the rec or removing the
2227 * current one. Thus, if the op is being added, we can
2228 * ignore it because it hasn't attached itself to the rec
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002229 * yet.
2230 *
2231 * If an ops is being modified (hooking to different functions)
2232 * then we don't care about the new functions that are being
2233 * added, just the old ones (that are probably being removed).
2234 *
2235 * If we are adding an ops to a function that already is using
2236 * a trampoline, it needs to be removed (trampolines are only
2237 * for single ops connected), then an ops that is not being
2238 * modified also needs to be checked.
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002239 */
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002240 do_for_each_ftrace_op(op, ftrace_ops_list) {
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002241
2242 if (!op->trampoline)
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002243 continue;
2244
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002245 /*
2246 * If the ops is being added, it hasn't gotten to
2247 * the point to be removed from this tree yet.
2248 */
2249 if (op->flags & FTRACE_OPS_FL_ADDING)
2250 continue;
2251
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002252
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002253 /*
2254 * If the ops is being modified and is in the old
2255 * hash, then it is probably being removed from this
2256 * function.
2257 */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002258 if ((op->flags & FTRACE_OPS_FL_MODIFYING) &&
2259 hash_contains_ip(ip, &op->old_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002260 return op;
Steven Rostedt (Red Hat)4fc40902014-10-24 14:48:35 -04002261 /*
2262 * If the ops is not being added or modified, and it's
2263 * in its normal filter hash, then this must be the one
2264 * we want!
2265 */
2266 if (!(op->flags & FTRACE_OPS_FL_MODIFYING) &&
2267 hash_contains_ip(ip, op->func_hash))
2268 return op;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002269
2270 } while_for_each_ftrace_op(op);
2271
2272 return NULL;
2273}
2274
2275static struct ftrace_ops *
2276ftrace_find_tramp_ops_new(struct dyn_ftrace *rec)
2277{
2278 struct ftrace_ops *op;
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002279 unsigned long ip = rec->ip;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002280
2281 do_for_each_ftrace_op(op, ftrace_ops_list) {
2282 /* pass rec in as regs to have non-NULL val */
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002283 if (hash_contains_ip(ip, op->func_hash))
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002284 return op;
2285 } while_for_each_ftrace_op(op);
2286
2287 return NULL;
2288}
2289
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002290/**
2291 * ftrace_get_addr_new - Get the call address to set to
2292 * @rec: The ftrace record descriptor
2293 *
2294 * If the record has the FTRACE_FL_REGS set, that means that it
2295 * wants to convert to a callback that saves all regs. If FTRACE_FL_REGS
2296 * is not not set, then it wants to convert to the normal callback.
2297 *
2298 * Returns the address of the trampoline to set to
2299 */
2300unsigned long ftrace_get_addr_new(struct dyn_ftrace *rec)
2301{
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002302 struct ftrace_ops *ops;
2303
2304 /* Trampolines take precedence over regs */
2305 if (rec->flags & FTRACE_FL_TRAMP) {
2306 ops = ftrace_find_tramp_ops_new(rec);
2307 if (FTRACE_WARN_ON(!ops || !ops->trampoline)) {
Steven Rostedt (Red Hat)bce0b6c2014-08-20 23:57:04 -04002308 pr_warn("Bad trampoline accounting at: %p (%pS) (%lx)\n",
2309 (void *)rec->ip, (void *)rec->ip, rec->flags);
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002310 /* Ftrace is shutting down, return anything */
2311 return (unsigned long)FTRACE_ADDR;
2312 }
2313 return ops->trampoline;
2314 }
2315
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002316 if (rec->flags & FTRACE_FL_REGS)
2317 return (unsigned long)FTRACE_REGS_ADDR;
2318 else
2319 return (unsigned long)FTRACE_ADDR;
2320}
2321
2322/**
2323 * ftrace_get_addr_curr - Get the call address that is already there
2324 * @rec: The ftrace record descriptor
2325 *
2326 * The FTRACE_FL_REGS_EN is set when the record already points to
2327 * a function that saves all the regs. Basically the '_EN' version
2328 * represents the current state of the function.
2329 *
2330 * Returns the address of the trampoline that is currently being called
2331 */
2332unsigned long ftrace_get_addr_curr(struct dyn_ftrace *rec)
2333{
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002334 struct ftrace_ops *ops;
2335
2336 /* Trampolines take precedence over regs */
2337 if (rec->flags & FTRACE_FL_TRAMP_EN) {
2338 ops = ftrace_find_tramp_ops_curr(rec);
2339 if (FTRACE_WARN_ON(!ops)) {
2340 pr_warning("Bad trampoline accounting at: %p (%pS)\n",
2341 (void *)rec->ip, (void *)rec->ip);
2342 /* Ftrace is shutting down, return anything */
2343 return (unsigned long)FTRACE_ADDR;
2344 }
2345 return ops->trampoline;
2346 }
2347
Steven Rostedt (Red Hat)7413af12014-05-06 21:34:14 -04002348 if (rec->flags & FTRACE_FL_REGS_EN)
2349 return (unsigned long)FTRACE_REGS_ADDR;
2350 else
2351 return (unsigned long)FTRACE_ADDR;
2352}
2353
Steven Rostedtc88fd862011-08-16 09:53:39 -04002354static int
2355__ftrace_replace_code(struct dyn_ftrace *rec, int enable)
2356{
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002357 unsigned long ftrace_old_addr;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002358 unsigned long ftrace_addr;
2359 int ret;
2360
Steven Rostedt (Red Hat)7c0868e2014-05-08 07:01:21 -04002361 ftrace_addr = ftrace_get_addr_new(rec);
Steven Rostedtc88fd862011-08-16 09:53:39 -04002362
Steven Rostedt (Red Hat)7c0868e2014-05-08 07:01:21 -04002363 /* This needs to be done before we call ftrace_update_record */
2364 ftrace_old_addr = ftrace_get_addr_curr(rec);
2365
2366 ret = ftrace_update_record(rec, enable);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002367
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002368 ftrace_bug_type = FTRACE_BUG_UNKNOWN;
2369
Steven Rostedtc88fd862011-08-16 09:53:39 -04002370 switch (ret) {
2371 case FTRACE_UPDATE_IGNORE:
2372 return 0;
2373
2374 case FTRACE_UPDATE_MAKE_CALL:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002375 ftrace_bug_type = FTRACE_BUG_CALL;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002376 return ftrace_make_call(rec, ftrace_addr);
2377
2378 case FTRACE_UPDATE_MAKE_NOP:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002379 ftrace_bug_type = FTRACE_BUG_NOP;
Steven Rostedt (Red Hat)39b55522014-08-17 20:59:10 -04002380 return ftrace_make_nop(NULL, rec, ftrace_old_addr);
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002381
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002382 case FTRACE_UPDATE_MODIFY_CALL:
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002383 ftrace_bug_type = FTRACE_BUG_UPDATE;
Steven Rostedt08f6fba2012-04-30 16:20:23 -04002384 return ftrace_modify_call(rec, ftrace_old_addr, ftrace_addr);
Steven Rostedtc88fd862011-08-16 09:53:39 -04002385 }
2386
2387 return -1; /* unknow ftrace bug */
Steven Rostedt5072c592008-05-12 21:20:43 +02002388}
2389
Steven Rostedte4f5d542012-04-27 09:13:18 -04002390void __weak ftrace_replace_code(int enable)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002391{
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002392 struct dyn_ftrace *rec;
2393 struct ftrace_page *pg;
Steven Rostedt6a24a242009-02-17 11:20:26 -05002394 int failed;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002395
Steven Rostedt45a4a232011-04-21 23:16:46 -04002396 if (unlikely(ftrace_disabled))
2397 return;
2398
Steven Rostedt265c8312009-02-13 12:43:56 -05002399 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedte4f5d542012-04-27 09:13:18 -04002400 failed = __ftrace_replace_code(rec, enable);
Zhaoleifa9d13c2009-03-13 17:16:34 +08002401 if (failed) {
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002402 ftrace_bug(failed, rec);
Steven Rostedt3279ba32009-10-07 16:57:56 -04002403 /* Stop processing */
2404 return;
Steven Rostedt265c8312009-02-13 12:43:56 -05002405 }
2406 } while_for_each_ftrace_rec();
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002407}
2408
Steven Rostedtc88fd862011-08-16 09:53:39 -04002409struct ftrace_rec_iter {
2410 struct ftrace_page *pg;
2411 int index;
2412};
2413
2414/**
2415 * ftrace_rec_iter_start, start up iterating over traced functions
2416 *
2417 * Returns an iterator handle that is used to iterate over all
2418 * the records that represent address locations where functions
2419 * are traced.
2420 *
2421 * May return NULL if no records are available.
2422 */
2423struct ftrace_rec_iter *ftrace_rec_iter_start(void)
2424{
2425 /*
2426 * We only use a single iterator.
2427 * Protected by the ftrace_lock mutex.
2428 */
2429 static struct ftrace_rec_iter ftrace_rec_iter;
2430 struct ftrace_rec_iter *iter = &ftrace_rec_iter;
2431
2432 iter->pg = ftrace_pages_start;
2433 iter->index = 0;
2434
2435 /* Could have empty pages */
2436 while (iter->pg && !iter->pg->index)
2437 iter->pg = iter->pg->next;
2438
2439 if (!iter->pg)
2440 return NULL;
2441
2442 return iter;
2443}
2444
2445/**
2446 * ftrace_rec_iter_next, get the next record to process.
2447 * @iter: The handle to the iterator.
2448 *
2449 * Returns the next iterator after the given iterator @iter.
2450 */
2451struct ftrace_rec_iter *ftrace_rec_iter_next(struct ftrace_rec_iter *iter)
2452{
2453 iter->index++;
2454
2455 if (iter->index >= iter->pg->index) {
2456 iter->pg = iter->pg->next;
2457 iter->index = 0;
2458
2459 /* Could have empty pages */
2460 while (iter->pg && !iter->pg->index)
2461 iter->pg = iter->pg->next;
2462 }
2463
2464 if (!iter->pg)
2465 return NULL;
2466
2467 return iter;
2468}
2469
2470/**
2471 * ftrace_rec_iter_record, get the record at the iterator location
2472 * @iter: The current iterator location
2473 *
2474 * Returns the record that the current @iter is at.
2475 */
2476struct dyn_ftrace *ftrace_rec_iter_record(struct ftrace_rec_iter *iter)
2477{
2478 return &iter->pg->records[iter->index];
2479}
2480
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302481static int
Steven Rostedt31e88902008-11-14 16:21:19 -08002482ftrace_code_disable(struct module *mod, struct dyn_ftrace *rec)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002483{
Steven Rostedt593eb8a2008-10-23 09:32:59 -04002484 int ret;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002485
Steven Rostedt45a4a232011-04-21 23:16:46 -04002486 if (unlikely(ftrace_disabled))
2487 return 0;
2488
Shaohua Li25aac9d2009-01-09 11:29:40 +08002489 ret = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
Steven Rostedt593eb8a2008-10-23 09:32:59 -04002490 if (ret) {
Steven Rostedt (Red Hat)02a392a2015-11-25 12:50:47 -05002491 ftrace_bug_type = FTRACE_BUG_INIT;
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002492 ftrace_bug(ret, rec);
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302493 return 0;
Steven Rostedt37ad50842008-05-12 21:20:48 +02002494 }
Abhishek Sagar492a7ea52008-05-25 00:10:04 +05302495 return 1;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002496}
2497
Steven Rostedt000ab692009-02-17 13:35:06 -05002498/*
2499 * archs can override this function if they must do something
2500 * before the modifying code is performed.
2501 */
2502int __weak ftrace_arch_code_modify_prepare(void)
2503{
2504 return 0;
2505}
2506
2507/*
2508 * archs can override this function if they must do something
2509 * after the modifying code is performed.
2510 */
2511int __weak ftrace_arch_code_modify_post_process(void)
2512{
2513 return 0;
2514}
2515
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002516void ftrace_modify_all_code(int command)
2517{
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002518 int update = command & FTRACE_UPDATE_TRACE_FUNC;
Petr Mladekcd21067f2014-02-24 17:12:21 +01002519 int err = 0;
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002520
2521 /*
2522 * If the ftrace_caller calls a ftrace_ops func directly,
2523 * we need to make sure that it only traces functions it
2524 * expects to trace. When doing the switch of functions,
2525 * we need to update to the ftrace_ops_list_func first
2526 * before the transition between old and new calls are set,
2527 * as the ftrace_ops_list_func will check the ops hashes
2528 * to make sure the ops are having the right functions
2529 * traced.
2530 */
Petr Mladekcd21067f2014-02-24 17:12:21 +01002531 if (update) {
2532 err = ftrace_update_ftrace_func(ftrace_ops_list_func);
2533 if (FTRACE_WARN_ON(err))
2534 return;
2535 }
Steven Rostedt (Red Hat)59338f72013-08-31 01:04:07 -04002536
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002537 if (command & FTRACE_UPDATE_CALLS)
2538 ftrace_replace_code(1);
2539 else if (command & FTRACE_DISABLE_CALLS)
2540 ftrace_replace_code(0);
2541
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -05002542 if (update && ftrace_trace_function != ftrace_ops_list_func) {
2543 function_trace_op = set_function_trace_op;
2544 smp_wmb();
2545 /* If irqs are disabled, we are in stop machine */
2546 if (!irqs_disabled())
2547 smp_call_function(ftrace_sync_ipi, NULL, 1);
Petr Mladekcd21067f2014-02-24 17:12:21 +01002548 err = ftrace_update_ftrace_func(ftrace_trace_function);
2549 if (FTRACE_WARN_ON(err))
2550 return;
Steven Rostedt (Red Hat)405e1d82013-11-08 14:17:30 -05002551 }
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002552
2553 if (command & FTRACE_START_FUNC_RET)
Petr Mladekcd21067f2014-02-24 17:12:21 +01002554 err = ftrace_enable_ftrace_graph_caller();
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002555 else if (command & FTRACE_STOP_FUNC_RET)
Petr Mladekcd21067f2014-02-24 17:12:21 +01002556 err = ftrace_disable_ftrace_graph_caller();
2557 FTRACE_WARN_ON(err);
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002558}
2559
Ingo Molnare309b412008-05-12 21:20:51 +02002560static int __ftrace_modify_code(void *data)
Steven Rostedt3d083392008-05-12 21:20:42 +02002561{
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002562 int *command = data;
2563
Steven Rostedt8ed3e2c2012-04-26 14:59:43 -04002564 ftrace_modify_all_code(*command);
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05002565
Steven Rostedtc88fd862011-08-16 09:53:39 -04002566 return 0;
2567}
2568
2569/**
2570 * ftrace_run_stop_machine, go back to the stop machine method
2571 * @command: The command to tell ftrace what to do
2572 *
2573 * If an arch needs to fall back to the stop machine method, the
2574 * it can call this function.
2575 */
2576void ftrace_run_stop_machine(int command)
2577{
2578 stop_machine(__ftrace_modify_code, &command, NULL);
2579}
2580
2581/**
2582 * arch_ftrace_update_code, modify the code to trace or not trace
2583 * @command: The command that needs to be done
2584 *
2585 * Archs can override this function if it does not need to
2586 * run stop_machine() to modify code.
2587 */
2588void __weak arch_ftrace_update_code(int command)
2589{
2590 ftrace_run_stop_machine(command);
2591}
2592
2593static void ftrace_run_update_code(int command)
2594{
2595 int ret;
2596
2597 ret = ftrace_arch_code_modify_prepare();
2598 FTRACE_WARN_ON(ret);
2599 if (ret)
2600 return;
Steven Rostedtc88fd862011-08-16 09:53:39 -04002601
2602 /*
2603 * By default we use stop_machine() to modify the code.
2604 * But archs can do what ever they want as long as it
2605 * is safe. The stop_machine() is the safest, but also
2606 * produces the most overhead.
2607 */
2608 arch_ftrace_update_code(command);
2609
Steven Rostedt000ab692009-02-17 13:35:06 -05002610 ret = ftrace_arch_code_modify_post_process();
2611 FTRACE_WARN_ON(ret);
Steven Rostedt3d083392008-05-12 21:20:42 +02002612}
2613
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04002614static void ftrace_run_modify_code(struct ftrace_ops *ops, int command,
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002615 struct ftrace_ops_hash *old_hash)
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002616{
2617 ops->flags |= FTRACE_OPS_FL_MODIFYING;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002618 ops->old_hash.filter_hash = old_hash->filter_hash;
2619 ops->old_hash.notrace_hash = old_hash->notrace_hash;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002620 ftrace_run_update_code(command);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04002621 ops->old_hash.filter_hash = NULL;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05002622 ops->old_hash.notrace_hash = NULL;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002623 ops->flags &= ~FTRACE_OPS_FL_MODIFYING;
2624}
2625
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002626static ftrace_func_t saved_ftrace_func;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002627static int ftrace_start_up;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002628
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04002629void __weak arch_ftrace_trampoline_free(struct ftrace_ops *ops)
2630{
2631}
2632
Jiri Slabydb0fbad2014-03-10 21:42:11 +01002633static void control_ops_free(struct ftrace_ops *ops)
2634{
2635 free_percpu(ops->disabled);
2636}
2637
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002638static void ftrace_startup_enable(int command)
2639{
2640 if (saved_ftrace_func != ftrace_trace_function) {
2641 saved_ftrace_func = ftrace_trace_function;
2642 command |= FTRACE_UPDATE_TRACE_FUNC;
2643 }
2644
2645 if (!command || !ftrace_enabled)
2646 return;
2647
2648 ftrace_run_update_code(command);
2649}
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002650
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002651static void ftrace_startup_all(int command)
2652{
2653 update_all_ops = true;
2654 ftrace_startup_enable(command);
2655 update_all_ops = false;
2656}
2657
Steven Rostedta1cd6172011-05-23 15:24:25 -04002658static int ftrace_startup(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02002659{
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002660 int ret;
Steven Rostedtb8489142011-05-04 09:27:52 -04002661
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002662 if (unlikely(ftrace_disabled))
Steven Rostedta1cd6172011-05-23 15:24:25 -04002663 return -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002664
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002665 ret = __register_ftrace_function(ops);
2666 if (ret)
2667 return ret;
2668
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002669 ftrace_start_up++;
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002670 command |= FTRACE_UPDATE_CALLS;
Steven Rostedt3d083392008-05-12 21:20:42 +02002671
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002672 /*
2673 * Note that ftrace probes uses this to start up
2674 * and modify functions it will probe. But we still
2675 * set the ADDING flag for modification, as probes
2676 * do not have trampolines. If they add them in the
2677 * future, then the probes will need to distinguish
2678 * between adding and updating probes.
2679 */
2680 ops->flags |= FTRACE_OPS_FL_ENABLED | FTRACE_OPS_FL_ADDING;
Steven Rostedt (Red Hat)66209a52014-05-06 21:57:49 -04002681
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05002682 ret = ftrace_hash_ipmodify_enable(ops);
2683 if (ret < 0) {
2684 /* Rollback registration process */
2685 __unregister_ftrace_function(ops);
2686 ftrace_start_up--;
2687 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
2688 return ret;
2689 }
2690
Steven Rostedt (Red Hat)66209a52014-05-06 21:57:49 -04002691 ftrace_hash_rec_enable(ops, 1);
Steven Rostedted926f92011-05-03 13:25:24 -04002692
Steven Rostedtdf4fc312008-11-26 00:16:23 -05002693 ftrace_startup_enable(command);
Steven Rostedta1cd6172011-05-23 15:24:25 -04002694
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002695 ops->flags &= ~FTRACE_OPS_FL_ADDING;
2696
Steven Rostedta1cd6172011-05-23 15:24:25 -04002697 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02002698}
2699
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002700static int ftrace_shutdown(struct ftrace_ops *ops, int command)
Steven Rostedt3d083392008-05-12 21:20:42 +02002701{
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002702 int ret;
Steven Rostedtb8489142011-05-04 09:27:52 -04002703
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002704 if (unlikely(ftrace_disabled))
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002705 return -ENODEV;
2706
2707 ret = __unregister_ftrace_function(ops);
2708 if (ret)
2709 return ret;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002710
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002711 ftrace_start_up--;
Frederic Weisbecker9ea1a152009-06-20 06:52:21 +02002712 /*
2713 * Just warn in case of unbalance, no need to kill ftrace, it's not
2714 * critical but the ftrace_call callers may be never nopped again after
2715 * further ftrace uses.
2716 */
2717 WARN_ON_ONCE(ftrace_start_up < 0);
2718
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05002719 /* Disabling ipmodify never fails */
2720 ftrace_hash_ipmodify_disable(ops);
Steven Rostedt (Red Hat)66209a52014-05-06 21:57:49 -04002721 ftrace_hash_rec_disable(ops, 1);
Steven Rostedtb8489142011-05-04 09:27:52 -04002722
Namhyung Kima737e6d2014-06-12 23:56:12 +09002723 ops->flags &= ~FTRACE_OPS_FL_ENABLED;
Steven Rostedtb8489142011-05-04 09:27:52 -04002724
Jiri Olsa30fb6aa2011-12-05 18:22:48 +01002725 command |= FTRACE_UPDATE_CALLS;
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002726
2727 if (saved_ftrace_func != ftrace_trace_function) {
2728 saved_ftrace_func = ftrace_trace_function;
2729 command |= FTRACE_UPDATE_TRACE_FUNC;
2730 }
2731
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002732 if (!command || !ftrace_enabled) {
2733 /*
2734 * If these are control ops, they still need their
2735 * per_cpu field freed. Since, function tracing is
2736 * not currently active, we can just free them
2737 * without synchronizing all CPUs.
2738 */
2739 if (ops->flags & FTRACE_OPS_FL_CONTROL)
2740 control_ops_free(ops);
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002741 return 0;
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002742 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002743
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002744 /*
2745 * If the ops uses a trampoline, then it needs to be
2746 * tested first on update.
2747 */
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002748 ops->flags |= FTRACE_OPS_FL_REMOVING;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002749 removed_ops = ops;
2750
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002751 /* The trampoline logic checks the old hashes */
2752 ops->old_hash.filter_hash = ops->func_hash->filter_hash;
2753 ops->old_hash.notrace_hash = ops->func_hash->notrace_hash;
2754
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002755 ftrace_run_update_code(command);
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002756
Steven Rostedt (Red Hat)84bde622014-09-12 14:21:13 -04002757 /*
2758 * If there's no more ops registered with ftrace, run a
2759 * sanity check to make sure all rec flags are cleared.
2760 */
2761 if (ftrace_ops_list == &ftrace_list_end) {
2762 struct ftrace_page *pg;
2763 struct dyn_ftrace *rec;
2764
2765 do_for_each_ftrace_rec(pg, rec) {
2766 if (FTRACE_WARN_ON_ONCE(rec->flags))
2767 pr_warn(" %pS flags:%lx\n",
2768 (void *)rec->ip, rec->flags);
2769 } while_for_each_ftrace_rec();
2770 }
2771
Steven Rostedt (Red Hat)fef5aee2014-07-24 12:25:47 -04002772 ops->old_hash.filter_hash = NULL;
2773 ops->old_hash.notrace_hash = NULL;
2774
2775 removed_ops = NULL;
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04002776 ops->flags &= ~FTRACE_OPS_FL_REMOVING;
Steven Rostedt (Red Hat)79922b82014-05-06 21:56:17 -04002777
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002778 /*
2779 * Dynamic ops may be freed, we must make sure that all
2780 * callers are done before leaving this function.
2781 * The same goes for freeing the per_cpu data of the control
2782 * ops.
2783 *
2784 * Again, normal synchronize_sched() is not good enough.
2785 * We need to do a hard force of sched synchronization.
2786 * This is because we use preempt_disable() to do RCU, but
2787 * the function tracers can be called where RCU is not watching
2788 * (like before user_exit()). We can not rely on the RCU
2789 * infrastructure to do the synchronization, thus we must do it
2790 * ourselves.
2791 */
2792 if (ops->flags & (FTRACE_OPS_FL_DYNAMIC | FTRACE_OPS_FL_CONTROL)) {
2793 schedule_on_each_cpu(ftrace_sync);
2794
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04002795 arch_ftrace_trampoline_free(ops);
2796
Steven Rostedt (Red Hat)a4c35ed22014-01-13 12:56:21 -05002797 if (ops->flags & FTRACE_OPS_FL_CONTROL)
2798 control_ops_free(ops);
2799 }
2800
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05002801 return 0;
Steven Rostedt3d083392008-05-12 21:20:42 +02002802}
2803
Ingo Molnare309b412008-05-12 21:20:51 +02002804static void ftrace_startup_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002805{
Pratyush Anand1619dc32015-03-06 23:58:06 +05302806 int command;
2807
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002808 if (unlikely(ftrace_disabled))
2809 return;
2810
Steven Rostedtd61f82d2008-05-12 21:20:43 +02002811 /* Force update next time */
2812 saved_ftrace_func = NULL;
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002813 /* ftrace_start_up is true if we want ftrace running */
Pratyush Anand1619dc32015-03-06 23:58:06 +05302814 if (ftrace_start_up) {
2815 command = FTRACE_UPDATE_CALLS;
2816 if (ftrace_graph_active)
2817 command |= FTRACE_START_FUNC_RET;
Steven Rostedt (Red Hat)524a3862015-03-06 19:55:13 -05002818 ftrace_startup_enable(command);
Pratyush Anand1619dc32015-03-06 23:58:06 +05302819 }
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002820}
2821
Ingo Molnare309b412008-05-12 21:20:51 +02002822static void ftrace_shutdown_sysctl(void)
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002823{
Pratyush Anand1619dc32015-03-06 23:58:06 +05302824 int command;
2825
Steven Rostedt4eebcc82008-05-12 21:20:48 +02002826 if (unlikely(ftrace_disabled))
2827 return;
2828
Steven Rostedt60a7ecf2008-11-05 16:05:44 -05002829 /* ftrace_start_up is true if ftrace is running */
Pratyush Anand1619dc32015-03-06 23:58:06 +05302830 if (ftrace_start_up) {
2831 command = FTRACE_DISABLE_CALLS;
2832 if (ftrace_graph_active)
2833 command |= FTRACE_STOP_FUNC_RET;
2834 ftrace_run_update_code(command);
2835 }
Steven Rostedtb0fc4942008-05-12 21:20:43 +02002836}
2837
Steven Rostedt3d083392008-05-12 21:20:42 +02002838static cycle_t ftrace_update_time;
Steven Rostedt3d083392008-05-12 21:20:42 +02002839unsigned long ftrace_update_tot_cnt;
2840
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002841static inline int ops_traces_mod(struct ftrace_ops *ops)
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002842{
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002843 /*
2844 * Filter_hash being empty will default to trace module.
2845 * But notrace hash requires a test of individual module functions.
2846 */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002847 return ftrace_hash_empty(ops->func_hash->filter_hash) &&
2848 ftrace_hash_empty(ops->func_hash->notrace_hash);
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002849}
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002850
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002851/*
2852 * Check if the current ops references the record.
2853 *
2854 * If the ops traces all functions, then it was already accounted for.
2855 * If the ops does not trace the current record function, skip it.
2856 * If the ops ignores the function via notrace filter, skip it.
2857 */
2858static inline bool
2859ops_references_rec(struct ftrace_ops *ops, struct dyn_ftrace *rec)
2860{
2861 /* If ops isn't enabled, ignore it */
2862 if (!(ops->flags & FTRACE_OPS_FL_ENABLED))
2863 return 0;
2864
2865 /* If ops traces all mods, we already accounted for it */
2866 if (ops_traces_mod(ops))
2867 return 0;
2868
2869 /* The function must be in the filter */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002870 if (!ftrace_hash_empty(ops->func_hash->filter_hash) &&
2871 !ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip))
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002872 return 0;
2873
2874 /* If in notrace hash, we ignore it too */
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04002875 if (ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip))
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002876 return 0;
2877
2878 return 1;
2879}
2880
2881static int referenced_filters(struct dyn_ftrace *rec)
2882{
2883 struct ftrace_ops *ops;
2884 int cnt = 0;
2885
2886 for (ops = ftrace_ops_list; ops != &ftrace_list_end; ops = ops->next) {
2887 if (ops_references_rec(ops, rec))
2888 cnt++;
2889 }
2890
2891 return cnt;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002892}
2893
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002894static int ftrace_update_code(struct module *mod, struct ftrace_page *new_pgs)
Steven Rostedt3d083392008-05-12 21:20:42 +02002895{
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002896 struct ftrace_page *pg;
Lai Jiangshane94142a2009-03-13 17:51:27 +08002897 struct dyn_ftrace *p;
Abhishek Sagarf22f9a892008-06-21 23:50:29 +05302898 cycle_t start, stop;
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002899 unsigned long update_cnt = 0;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002900 unsigned long ref = 0;
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002901 bool test = false;
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002902 int i;
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002903
2904 /*
2905 * When adding a module, we need to check if tracers are
2906 * currently enabled and if they are set to trace all functions.
2907 * If they are, we need to enable the module functions as well
2908 * as update the reference counts for those function records.
2909 */
2910 if (mod) {
2911 struct ftrace_ops *ops;
2912
2913 for (ops = ftrace_ops_list;
2914 ops != &ftrace_list_end; ops = ops->next) {
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002915 if (ops->flags & FTRACE_OPS_FL_ENABLED) {
2916 if (ops_traces_mod(ops))
2917 ref++;
2918 else
2919 test = true;
2920 }
Steven Rostedtf7bc8b62011-07-14 23:02:27 -04002921 }
2922 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002923
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002924 start = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002925
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002926 for (pg = new_pgs; pg; pg = pg->next) {
Abhishek Sagarf22f9a892008-06-21 23:50:29 +05302927
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002928 for (i = 0; i < pg->index; i++) {
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002929 int cnt = ref;
2930
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002931 /* If something went wrong, bail without enabling anything */
2932 if (unlikely(ftrace_disabled))
2933 return -1;
Steven Rostedt3d083392008-05-12 21:20:42 +02002934
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002935 p = &pg->records[i];
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002936 if (test)
2937 cnt += referenced_filters(p);
2938 p->flags = cnt;
Abhishek Sagar0eb96702008-06-01 21:47:30 +05302939
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002940 /*
2941 * Do the initial record conversion from mcount jump
2942 * to the NOP instructions.
2943 */
2944 if (!ftrace_code_disable(mod, p))
2945 break;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002946
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002947 update_cnt++;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002948
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002949 /*
2950 * If the tracing is enabled, go ahead and enable the record.
2951 *
2952 * The reason not to enable the record immediatelly is the
2953 * inherent check of ftrace_make_nop/ftrace_make_call for
2954 * correct previous instructions. Making first the NOP
2955 * conversion puts the module to the correct state, thus
2956 * passing the ftrace_make_call check.
2957 */
Steven Rostedt (Red Hat)8c4f3c32013-07-30 00:04:32 -04002958 if (ftrace_start_up && cnt) {
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002959 int failed = __ftrace_replace_code(p, 1);
2960 if (failed)
Steven Rostedt (Red Hat)4fd32792014-10-24 17:56:04 -04002961 ftrace_bug(failed, p);
Steven Rostedt85ae32a2011-12-16 16:30:31 -05002962 }
Jiri Olsa5cb084b2009-10-13 16:33:53 -04002963 }
Steven Rostedt3d083392008-05-12 21:20:42 +02002964 }
2965
Ingo Molnar750ed1a2008-05-12 21:20:46 +02002966 stop = ftrace_now(raw_smp_processor_id());
Steven Rostedt3d083392008-05-12 21:20:42 +02002967 ftrace_update_time = stop - start;
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01002968 ftrace_update_tot_cnt += update_cnt;
Steven Rostedt3d083392008-05-12 21:20:42 +02002969
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02002970 return 0;
2971}
2972
Steven Rostedta7900872011-12-16 16:23:44 -05002973static int ftrace_allocate_records(struct ftrace_page *pg, int count)
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002974{
Steven Rostedta7900872011-12-16 16:23:44 -05002975 int order;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002976 int cnt;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002977
Steven Rostedta7900872011-12-16 16:23:44 -05002978 if (WARN_ON(!count))
2979 return -EINVAL;
2980
2981 order = get_count_order(DIV_ROUND_UP(count, ENTRIES_PER_PAGE));
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002982
2983 /*
Steven Rostedta7900872011-12-16 16:23:44 -05002984 * We want to fill as much as possible. No more than a page
2985 * may be empty.
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002986 */
Steven Rostedta7900872011-12-16 16:23:44 -05002987 while ((PAGE_SIZE << order) / ENTRY_SIZE >= count + ENTRIES_PER_PAGE)
2988 order--;
Steven Rostedt3c1720f2008-05-12 21:20:43 +02002989
Steven Rostedta7900872011-12-16 16:23:44 -05002990 again:
2991 pg->records = (void *)__get_free_pages(GFP_KERNEL | __GFP_ZERO, order);
2992
2993 if (!pg->records) {
2994 /* if we can't allocate this size, try something smaller */
2995 if (!order)
2996 return -ENOMEM;
2997 order >>= 1;
2998 goto again;
2999 }
3000
3001 cnt = (PAGE_SIZE << order) / ENTRY_SIZE;
3002 pg->size = cnt;
3003
3004 if (cnt > count)
3005 cnt = count;
3006
3007 return cnt;
3008}
3009
3010static struct ftrace_page *
3011ftrace_allocate_pages(unsigned long num_to_init)
3012{
3013 struct ftrace_page *start_pg;
3014 struct ftrace_page *pg;
3015 int order;
3016 int cnt;
3017
3018 if (!num_to_init)
3019 return 0;
3020
3021 start_pg = pg = kzalloc(sizeof(*pg), GFP_KERNEL);
3022 if (!pg)
3023 return NULL;
3024
3025 /*
3026 * Try to allocate as much as possible in one continues
3027 * location that fills in all of the space. We want to
3028 * waste as little space as possible.
3029 */
3030 for (;;) {
3031 cnt = ftrace_allocate_records(pg, num_to_init);
3032 if (cnt < 0)
3033 goto free_pages;
3034
3035 num_to_init -= cnt;
3036 if (!num_to_init)
3037 break;
3038
3039 pg->next = kzalloc(sizeof(*pg), GFP_KERNEL);
3040 if (!pg->next)
3041 goto free_pages;
3042
3043 pg = pg->next;
3044 }
3045
3046 return start_pg;
3047
3048 free_pages:
Namhyung Kim1f61be002014-06-11 17:06:53 +09003049 pg = start_pg;
3050 while (pg) {
Steven Rostedta7900872011-12-16 16:23:44 -05003051 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
3052 free_pages((unsigned long)pg->records, order);
3053 start_pg = pg->next;
3054 kfree(pg);
3055 pg = start_pg;
3056 }
3057 pr_info("ftrace: FAILED to allocate memory for functions\n");
3058 return NULL;
3059}
3060
Steven Rostedt5072c592008-05-12 21:20:43 +02003061#define FTRACE_BUFF_MAX (KSYM_SYMBOL_LEN+4) /* room for wildcards */
3062
3063struct ftrace_iterator {
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003064 loff_t pos;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003065 loff_t func_pos;
3066 struct ftrace_page *pg;
3067 struct dyn_ftrace *func;
3068 struct ftrace_func_probe *probe;
3069 struct trace_parser parser;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003070 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003071 struct ftrace_ops *ops;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003072 int hidx;
3073 int idx;
3074 unsigned flags;
Steven Rostedt5072c592008-05-12 21:20:43 +02003075};
3076
Ingo Molnare309b412008-05-12 21:20:51 +02003077static void *
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003078t_hash_next(struct seq_file *m, loff_t *pos)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003079{
3080 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003081 struct hlist_node *hnd = NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003082 struct hlist_head *hhd;
3083
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003084 (*pos)++;
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003085 iter->pos = *pos;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003086
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003087 if (iter->probe)
3088 hnd = &iter->probe->node;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003089 retry:
3090 if (iter->hidx >= FTRACE_FUNC_HASHSIZE)
3091 return NULL;
3092
3093 hhd = &ftrace_func_hash[iter->hidx];
3094
3095 if (hlist_empty(hhd)) {
3096 iter->hidx++;
3097 hnd = NULL;
3098 goto retry;
3099 }
3100
3101 if (!hnd)
3102 hnd = hhd->first;
3103 else {
3104 hnd = hnd->next;
3105 if (!hnd) {
3106 iter->hidx++;
3107 goto retry;
3108 }
3109 }
3110
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003111 if (WARN_ON_ONCE(!hnd))
3112 return NULL;
3113
3114 iter->probe = hlist_entry(hnd, struct ftrace_func_probe, node);
3115
3116 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003117}
3118
3119static void *t_hash_start(struct seq_file *m, loff_t *pos)
3120{
3121 struct ftrace_iterator *iter = m->private;
3122 void *p = NULL;
Li Zefand82d6242009-06-24 09:54:54 +08003123 loff_t l;
3124
Steven Rostedt69a30832011-12-19 15:21:16 -05003125 if (!(iter->flags & FTRACE_ITER_DO_HASH))
3126 return NULL;
3127
Steven Rostedt2bccfff2010-09-09 08:43:22 -04003128 if (iter->func_pos > *pos)
3129 return NULL;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003130
Li Zefand82d6242009-06-24 09:54:54 +08003131 iter->hidx = 0;
Steven Rostedt2bccfff2010-09-09 08:43:22 -04003132 for (l = 0; l <= (*pos - iter->func_pos); ) {
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003133 p = t_hash_next(m, &l);
Li Zefand82d6242009-06-24 09:54:54 +08003134 if (!p)
3135 break;
3136 }
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003137 if (!p)
3138 return NULL;
3139
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003140 /* Only set this if we have an item */
3141 iter->flags |= FTRACE_ITER_HASH;
3142
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003143 return iter;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003144}
3145
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003146static int
3147t_hash_show(struct seq_file *m, struct ftrace_iterator *iter)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003148{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003149 struct ftrace_func_probe *rec;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003150
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003151 rec = iter->probe;
3152 if (WARN_ON_ONCE(!rec))
3153 return -EIO;
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003154
Steven Rostedt809dcf22009-02-16 23:06:01 -05003155 if (rec->ops->print)
3156 return rec->ops->print(m, rec->ip, rec->ops, rec->data);
3157
Steven Rostedtb375a112009-09-17 00:05:58 -04003158 seq_printf(m, "%ps:%ps", (void *)rec->ip, (void *)rec->ops->func);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003159
3160 if (rec->data)
3161 seq_printf(m, ":%p", rec->data);
3162 seq_putc(m, '\n');
3163
3164 return 0;
3165}
3166
3167static void *
Steven Rostedt5072c592008-05-12 21:20:43 +02003168t_next(struct seq_file *m, void *v, loff_t *pos)
3169{
3170 struct ftrace_iterator *iter = m->private;
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003171 struct ftrace_ops *ops = iter->ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02003172 struct dyn_ftrace *rec = NULL;
3173
Steven Rostedt45a4a232011-04-21 23:16:46 -04003174 if (unlikely(ftrace_disabled))
3175 return NULL;
3176
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003177 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003178 return t_hash_next(m, pos);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003179
Steven Rostedt5072c592008-05-12 21:20:43 +02003180 (*pos)++;
Jiri Olsa1106b692011-02-16 17:35:34 +01003181 iter->pos = iter->func_pos = *pos;
Steven Rostedt5072c592008-05-12 21:20:43 +02003182
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003183 if (iter->flags & FTRACE_ITER_PRINTALL)
Steven Rostedt57c072c2010-09-14 11:21:11 -04003184 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003185
Steven Rostedt5072c592008-05-12 21:20:43 +02003186 retry:
3187 if (iter->idx >= iter->pg->index) {
3188 if (iter->pg->next) {
3189 iter->pg = iter->pg->next;
3190 iter->idx = 0;
3191 goto retry;
3192 }
3193 } else {
3194 rec = &iter->pg->records[iter->idx++];
Steven Rostedt320823092011-12-16 14:42:37 -05003195 if (((iter->flags & FTRACE_ITER_FILTER) &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003196 !(ftrace_lookup_ip(ops->func_hash->filter_hash, rec->ip))) ||
Steven Rostedt0183fb1c2008-11-07 22:36:02 -05003197
Steven Rostedt41c52c02008-05-22 11:46:33 -04003198 ((iter->flags & FTRACE_ITER_NOTRACE) &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003199 !ftrace_lookup_ip(ops->func_hash->notrace_hash, rec->ip)) ||
Steven Rostedt647bcd02011-05-03 14:39:21 -04003200
3201 ((iter->flags & FTRACE_ITER_ENABLED) &&
Steven Rostedt (Red Hat)23ea9c42013-05-09 19:31:48 -04003202 !(rec->flags & FTRACE_FL_ENABLED))) {
Steven Rostedt647bcd02011-05-03 14:39:21 -04003203
Steven Rostedt5072c592008-05-12 21:20:43 +02003204 rec = NULL;
3205 goto retry;
3206 }
3207 }
3208
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003209 if (!rec)
Steven Rostedt57c072c2010-09-14 11:21:11 -04003210 return t_hash_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003211
3212 iter->func = rec;
3213
3214 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003215}
3216
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003217static void reset_iter_read(struct ftrace_iterator *iter)
3218{
3219 iter->pos = 0;
3220 iter->func_pos = 0;
Dan Carpenter70f77b3f2012-06-09 19:10:27 +03003221 iter->flags &= ~(FTRACE_ITER_PRINTALL | FTRACE_ITER_HASH);
Steven Rostedt5072c592008-05-12 21:20:43 +02003222}
3223
3224static void *t_start(struct seq_file *m, loff_t *pos)
3225{
3226 struct ftrace_iterator *iter = m->private;
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003227 struct ftrace_ops *ops = iter->ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02003228 void *p = NULL;
Li Zefan694ce0a2009-06-24 09:54:19 +08003229 loff_t l;
Steven Rostedt5072c592008-05-12 21:20:43 +02003230
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003231 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04003232
3233 if (unlikely(ftrace_disabled))
3234 return NULL;
3235
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003236 /*
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003237 * If an lseek was done, then reset and start from beginning.
3238 */
3239 if (*pos < iter->pos)
3240 reset_iter_read(iter);
3241
3242 /*
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003243 * For set_ftrace_filter reading, if we have the filter
3244 * off, we can short cut and just print out that all
3245 * functions are enabled.
3246 */
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003247 if ((iter->flags & FTRACE_ITER_FILTER &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003248 ftrace_hash_empty(ops->func_hash->filter_hash)) ||
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003249 (iter->flags & FTRACE_ITER_NOTRACE &&
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003250 ftrace_hash_empty(ops->func_hash->notrace_hash))) {
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003251 if (*pos > 0)
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003252 return t_hash_start(m, pos);
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003253 iter->flags |= FTRACE_ITER_PRINTALL;
Chris Wrightdf091622010-09-09 16:34:59 -07003254 /* reset in case of seek/pread */
3255 iter->flags &= ~FTRACE_ITER_HASH;
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003256 return iter;
3257 }
3258
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003259 if (iter->flags & FTRACE_ITER_HASH)
3260 return t_hash_start(m, pos);
3261
Steven Rostedt98c4fd02010-09-10 11:47:43 -04003262 /*
3263 * Unfortunately, we need to restart at ftrace_pages_start
3264 * every time we let go of the ftrace_mutex. This is because
3265 * those pointers can change without the lock.
3266 */
Li Zefan694ce0a2009-06-24 09:54:19 +08003267 iter->pg = ftrace_pages_start;
3268 iter->idx = 0;
3269 for (l = 0; l <= *pos; ) {
3270 p = t_next(m, p, &l);
3271 if (!p)
3272 break;
Liming Wang50cdaf02008-11-28 12:13:21 +08003273 }
walimis5821e1b2008-11-15 15:19:06 +08003274
Steven Rostedt69a30832011-12-19 15:21:16 -05003275 if (!p)
3276 return t_hash_start(m, pos);
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003277
3278 return iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003279}
3280
3281static void t_stop(struct seq_file *m, void *p)
3282{
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003283 mutex_unlock(&ftrace_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003284}
3285
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003286void * __weak
3287arch_ftrace_trampoline_func(struct ftrace_ops *ops, struct dyn_ftrace *rec)
3288{
3289 return NULL;
3290}
3291
3292static void add_trampoline_func(struct seq_file *m, struct ftrace_ops *ops,
3293 struct dyn_ftrace *rec)
3294{
3295 void *ptr;
3296
3297 ptr = arch_ftrace_trampoline_func(ops, rec);
3298 if (ptr)
3299 seq_printf(m, " ->%pS", ptr);
3300}
3301
Steven Rostedt5072c592008-05-12 21:20:43 +02003302static int t_show(struct seq_file *m, void *v)
3303{
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003304 struct ftrace_iterator *iter = m->private;
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003305 struct dyn_ftrace *rec;
Steven Rostedt5072c592008-05-12 21:20:43 +02003306
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003307 if (iter->flags & FTRACE_ITER_HASH)
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003308 return t_hash_show(m, iter);
Steven Rostedt8fc0c702009-02-16 15:28:00 -05003309
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003310 if (iter->flags & FTRACE_ITER_PRINTALL) {
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003311 if (iter->flags & FTRACE_ITER_NOTRACE)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003312 seq_puts(m, "#### no functions disabled ####\n");
Namhyung Kim8c006cf2014-06-13 16:24:06 +09003313 else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003314 seq_puts(m, "#### all functions enabled ####\n");
Steven Rostedt0c75a3e2009-02-16 11:21:52 -05003315 return 0;
3316 }
3317
Steven Rostedt4aeb6962010-09-09 10:00:28 -04003318 rec = iter->func;
3319
Steven Rostedt5072c592008-05-12 21:20:43 +02003320 if (!rec)
3321 return 0;
3322
Steven Rostedt647bcd02011-05-03 14:39:21 -04003323 seq_printf(m, "%ps", (void *)rec->ip);
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003324 if (iter->flags & FTRACE_ITER_ENABLED) {
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003325 struct ftrace_ops *ops = NULL;
3326
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05003327 seq_printf(m, " (%ld)%s%s",
Steven Rostedt (Red Hat)0376bde2014-05-07 13:46:45 -04003328 ftrace_rec_count(rec),
Masami Hiramatsuf8b8be82014-11-21 05:25:16 -05003329 rec->flags & FTRACE_FL_REGS ? " R" : " ",
3330 rec->flags & FTRACE_FL_IPMODIFY ? " I" : " ");
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003331 if (rec->flags & FTRACE_FL_TRAMP_EN) {
Steven Rostedt (Red Hat)5fecaa02014-07-24 16:00:31 -04003332 ops = ftrace_find_tramp_ops_any(rec);
Steven Rostedt (Red Hat)39daa7b2015-11-25 15:12:38 -05003333 if (ops) {
3334 do {
3335 seq_printf(m, "\ttramp: %pS (%pS)",
3336 (void *)ops->trampoline,
3337 (void *)ops->func);
3338 ops = ftrace_find_tramp_ops_next(rec, ops);
3339 } while (ops);
3340 } else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003341 seq_puts(m, "\ttramp: ERROR!");
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003342
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003343 }
Steven Rostedt (Red Hat)15d5b022014-07-03 14:51:36 -04003344 add_trampoline_func(m, ops, rec);
Steven Rostedt (Red Hat)9674b2f2014-05-09 16:54:59 -04003345 }
3346
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01003347 seq_putc(m, '\n');
Steven Rostedt5072c592008-05-12 21:20:43 +02003348
3349 return 0;
3350}
3351
James Morris88e9d342009-09-22 16:43:43 -07003352static const struct seq_operations show_ftrace_seq_ops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02003353 .start = t_start,
3354 .next = t_next,
3355 .stop = t_stop,
3356 .show = t_show,
3357};
3358
Ingo Molnare309b412008-05-12 21:20:51 +02003359static int
Steven Rostedt5072c592008-05-12 21:20:43 +02003360ftrace_avail_open(struct inode *inode, struct file *file)
3361{
3362 struct ftrace_iterator *iter;
Steven Rostedt5072c592008-05-12 21:20:43 +02003363
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003364 if (unlikely(ftrace_disabled))
3365 return -ENODEV;
3366
Jiri Olsa50e18b92012-04-25 10:23:39 +02003367 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
3368 if (iter) {
3369 iter->pg = ftrace_pages_start;
3370 iter->ops = &global_ops;
Ingo Molnar4bf39a92008-05-12 21:20:46 +02003371 }
Steven Rostedt5072c592008-05-12 21:20:43 +02003372
Jiri Olsa50e18b92012-04-25 10:23:39 +02003373 return iter ? 0 : -ENOMEM;
Steven Rostedt5072c592008-05-12 21:20:43 +02003374}
3375
Steven Rostedt647bcd02011-05-03 14:39:21 -04003376static int
3377ftrace_enabled_open(struct inode *inode, struct file *file)
3378{
3379 struct ftrace_iterator *iter;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003380
Jiri Olsa50e18b92012-04-25 10:23:39 +02003381 iter = __seq_open_private(file, &show_ftrace_seq_ops, sizeof(*iter));
3382 if (iter) {
3383 iter->pg = ftrace_pages_start;
3384 iter->flags = FTRACE_ITER_ENABLED;
3385 iter->ops = &global_ops;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003386 }
3387
Jiri Olsa50e18b92012-04-25 10:23:39 +02003388 return iter ? 0 : -ENOMEM;
Steven Rostedt647bcd02011-05-03 14:39:21 -04003389}
3390
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003391/**
3392 * ftrace_regex_open - initialize function tracer filter files
3393 * @ops: The ftrace_ops that hold the hash filters
3394 * @flag: The type of filter to process
3395 * @inode: The inode, usually passed in to your open routine
3396 * @file: The file, usually passed in to your open routine
3397 *
3398 * ftrace_regex_open() initializes the filter files for the
3399 * @ops. Depending on @flag it may process the filter hash or
3400 * the notrace hash of @ops. With this called from the open
3401 * routine, you can use ftrace_filter_write() for the write
3402 * routine if @flag has FTRACE_ITER_FILTER set, or
3403 * ftrace_notrace_write() if @flag has FTRACE_ITER_NOTRACE set.
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05003404 * tracing_lseek() should be used as the lseek routine, and
Steven Rostedtfc13cb02011-12-19 14:41:25 -05003405 * release must call ftrace_regex_release().
3406 */
3407int
Steven Rostedtf45948e2011-05-02 12:29:25 -04003408ftrace_regex_open(struct ftrace_ops *ops, int flag,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003409 struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02003410{
3411 struct ftrace_iterator *iter;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003412 struct ftrace_hash *hash;
Steven Rostedt5072c592008-05-12 21:20:43 +02003413 int ret = 0;
3414
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09003415 ftrace_ops_init(ops);
3416
Steven Rostedt4eebcc82008-05-12 21:20:48 +02003417 if (unlikely(ftrace_disabled))
3418 return -ENODEV;
3419
Steven Rostedt5072c592008-05-12 21:20:43 +02003420 iter = kzalloc(sizeof(*iter), GFP_KERNEL);
3421 if (!iter)
3422 return -ENOMEM;
3423
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02003424 if (trace_parser_get_init(&iter->parser, FTRACE_BUFF_MAX)) {
3425 kfree(iter);
3426 return -ENOMEM;
3427 }
3428
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003429 iter->ops = ops;
3430 iter->flags = flag;
3431
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003432 mutex_lock(&ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003433
Steven Rostedtf45948e2011-05-02 12:29:25 -04003434 if (flag & FTRACE_ITER_NOTRACE)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003435 hash = ops->func_hash->notrace_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003436 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003437 hash = ops->func_hash->filter_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04003438
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003439 if (file->f_mode & FMODE_WRITE) {
Namhyung Kimef2fbe12014-06-11 17:06:54 +09003440 const int size_bits = FTRACE_HASH_DEFAULT_BITS;
3441
3442 if (file->f_flags & O_TRUNC)
3443 iter->hash = alloc_ftrace_hash(size_bits);
3444 else
3445 iter->hash = alloc_and_copy_ftrace_hash(size_bits, hash);
3446
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003447 if (!iter->hash) {
3448 trace_parser_put(&iter->parser);
3449 kfree(iter);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003450 ret = -ENOMEM;
3451 goto out_unlock;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003452 }
3453 }
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003454
Steven Rostedt5072c592008-05-12 21:20:43 +02003455 if (file->f_mode & FMODE_READ) {
3456 iter->pg = ftrace_pages_start;
Steven Rostedt5072c592008-05-12 21:20:43 +02003457
3458 ret = seq_open(file, &show_ftrace_seq_ops);
3459 if (!ret) {
3460 struct seq_file *m = file->private_data;
3461 m->private = iter;
Li Zefan79fe2492009-09-22 13:54:28 +08003462 } else {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003463 /* Failed */
3464 free_ftrace_hash(iter->hash);
Li Zefan79fe2492009-09-22 13:54:28 +08003465 trace_parser_put(&iter->parser);
Steven Rostedt5072c592008-05-12 21:20:43 +02003466 kfree(iter);
Li Zefan79fe2492009-09-22 13:54:28 +08003467 }
Steven Rostedt5072c592008-05-12 21:20:43 +02003468 } else
3469 file->private_data = iter;
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003470
3471 out_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003472 mutex_unlock(&ops->func_hash->regex_lock);
Steven Rostedt5072c592008-05-12 21:20:43 +02003473
3474 return ret;
3475}
3476
Steven Rostedt41c52c02008-05-22 11:46:33 -04003477static int
3478ftrace_filter_open(struct inode *inode, struct file *file)
3479{
Steven Rostedt (Red Hat)e3b3e2e2013-11-11 23:07:14 -05003480 struct ftrace_ops *ops = inode->i_private;
3481
3482 return ftrace_regex_open(ops,
Steven Rostedt69a30832011-12-19 15:21:16 -05003483 FTRACE_ITER_FILTER | FTRACE_ITER_DO_HASH,
3484 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003485}
3486
3487static int
3488ftrace_notrace_open(struct inode *inode, struct file *file)
3489{
Steven Rostedt (Red Hat)e3b3e2e2013-11-11 23:07:14 -05003490 struct ftrace_ops *ops = inode->i_private;
3491
3492 return ftrace_regex_open(ops, FTRACE_ITER_NOTRACE,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003493 inode, file);
Steven Rostedt41c52c02008-05-22 11:46:33 -04003494}
3495
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003496/* Type for quick search ftrace basic regexes (globs) from filter_parse_regex */
3497struct ftrace_glob {
3498 char *search;
3499 unsigned len;
3500 int type;
3501};
3502
3503static int ftrace_match(char *str, struct ftrace_glob *g)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003504{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003505 int matched = 0;
Li Zefan751e9982010-01-14 10:53:02 +08003506 int slen;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003507
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003508 switch (g->type) {
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003509 case MATCH_FULL:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003510 if (strcmp(str, g->search) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003511 matched = 1;
3512 break;
3513 case MATCH_FRONT_ONLY:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003514 if (strncmp(str, g->search, g->len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003515 matched = 1;
3516 break;
3517 case MATCH_MIDDLE_ONLY:
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003518 if (strstr(str, g->search))
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003519 matched = 1;
3520 break;
3521 case MATCH_END_ONLY:
Li Zefan751e9982010-01-14 10:53:02 +08003522 slen = strlen(str);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003523 if (slen >= g->len &&
3524 memcmp(str + slen - g->len, g->search, g->len) == 0)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003525 matched = 1;
3526 break;
3527 }
3528
3529 return matched;
3530}
3531
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003532static int
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003533enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int clear_filter)
Steven Rostedt996e87b2011-04-26 16:11:03 -04003534{
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003535 struct ftrace_func_entry *entry;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003536 int ret = 0;
3537
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003538 entry = ftrace_lookup_ip(hash, rec->ip);
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003539 if (clear_filter) {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003540 /* Do nothing if it doesn't exist */
3541 if (!entry)
3542 return 0;
3543
Steven Rostedt33dc9b12011-05-02 17:34:47 -04003544 free_hash_entry(hash, entry);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003545 } else {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003546 /* Do nothing if it exists */
3547 if (entry)
3548 return 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003549
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003550 ret = add_hash_entry(hash, rec->ip);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003551 }
3552 return ret;
Steven Rostedt996e87b2011-04-26 16:11:03 -04003553}
3554
Steven Rostedt64e7c442009-02-13 17:08:48 -05003555static int
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003556ftrace_match_record(struct dyn_ftrace *rec, struct ftrace_glob *func_g,
3557 struct ftrace_glob *mod_g, int exclude_mod)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003558{
3559 char str[KSYM_SYMBOL_LEN];
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003560 char *modname;
Steven Rostedt64e7c442009-02-13 17:08:48 -05003561
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003562 kallsyms_lookup(rec->ip, NULL, NULL, &modname, str);
3563
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003564 if (mod_g) {
3565 int mod_matches = (modname) ? ftrace_match(modname, mod_g) : 0;
3566
3567 /* blank module name to match all modules */
3568 if (!mod_g->len) {
3569 /* blank module globbing: modname xor exclude_mod */
3570 if ((!exclude_mod) != (!modname))
3571 goto func_match;
3572 return 0;
3573 }
3574
3575 /* not matching the module */
3576 if (!modname || !mod_matches) {
3577 if (exclude_mod)
3578 goto func_match;
3579 else
3580 return 0;
3581 }
3582
3583 if (mod_matches && exclude_mod)
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003584 return 0;
3585
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003586func_match:
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003587 /* blank search means to match all funcs in the mod */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003588 if (!func_g->len)
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003589 return 1;
3590 }
3591
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003592 return ftrace_match(str, func_g);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003593}
3594
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003595static int
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003596match_records(struct ftrace_hash *hash, char *func, int len, char *mod)
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003597{
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003598 struct ftrace_page *pg;
3599 struct dyn_ftrace *rec;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003600 struct ftrace_glob func_g = { .type = MATCH_FULL };
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003601 struct ftrace_glob mod_g = { .type = MATCH_FULL };
3602 struct ftrace_glob *mod_match = (mod) ? &mod_g : NULL;
3603 int exclude_mod = 0;
Li Zefan311d16d2009-12-08 11:15:11 +08003604 int found = 0;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003605 int ret;
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003606 int clear_filter;
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003607
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003608 if (func) {
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003609 func_g.type = filter_parse_regex(func, len, &func_g.search,
3610 &clear_filter);
3611 func_g.len = strlen(func_g.search);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003612 }
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003613
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003614 if (mod) {
3615 mod_g.type = filter_parse_regex(mod, strlen(mod),
3616 &mod_g.search, &exclude_mod);
3617 mod_g.len = strlen(mod_g.search);
Steven Rostedt9f4801e2009-02-13 15:56:43 -05003618 }
3619
Steven Rostedt52baf112009-02-14 01:15:39 -05003620 mutex_lock(&ftrace_lock);
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003621
3622 if (unlikely(ftrace_disabled))
3623 goto out_unlock;
3624
Steven Rostedt265c8312009-02-13 12:43:56 -05003625 do_for_each_ftrace_rec(pg, rec) {
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003626 if (ftrace_match_record(rec, &func_g, mod_match, exclude_mod)) {
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003627 ret = enter_record(hash, rec, clear_filter);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003628 if (ret < 0) {
3629 found = ret;
3630 goto out_unlock;
3631 }
Li Zefan311d16d2009-12-08 11:15:11 +08003632 found = 1;
Steven Rostedt265c8312009-02-13 12:43:56 -05003633 }
3634 } while_for_each_ftrace_rec();
Steven Rostedtb9df92d2011-04-28 20:32:08 -04003635 out_unlock:
Steven Rostedt52baf112009-02-14 01:15:39 -05003636 mutex_unlock(&ftrace_lock);
Li Zefan311d16d2009-12-08 11:15:11 +08003637
3638 return found;
Steven Rostedt5072c592008-05-12 21:20:43 +02003639}
3640
Steven Rostedt64e7c442009-02-13 17:08:48 -05003641static int
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04003642ftrace_match_records(struct ftrace_hash *hash, char *buff, int len)
Steven Rostedt64e7c442009-02-13 17:08:48 -05003643{
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003644 return match_records(hash, buff, len, NULL);
Steven Rostedt64e7c442009-02-13 17:08:48 -05003645}
3646
Steven Rostedt64e7c442009-02-13 17:08:48 -05003647
Steven Rostedtf6180772009-02-14 00:40:25 -05003648/*
3649 * We register the module command as a template to show others how
3650 * to register the a command as well.
3651 */
3652
3653static int
Steven Rostedt43dd61c2011-07-07 11:09:22 -04003654ftrace_mod_callback(struct ftrace_hash *hash,
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003655 char *func, char *cmd, char *module, int enable)
Steven Rostedtf6180772009-02-14 00:40:25 -05003656{
Dmitry Safonov5e3949f2015-09-29 19:46:12 +03003657 int ret;
Steven Rostedtf6180772009-02-14 00:40:25 -05003658
3659 /*
3660 * cmd == 'mod' because we only registered this func
3661 * for the 'mod' ftrace_func_command.
3662 * But if you register one func with multiple commands,
3663 * you can tell which command was used by the cmd
3664 * parameter.
3665 */
Dmitry Safonovf0a3b152015-09-29 19:46:13 +03003666 ret = match_records(hash, func, strlen(func), module);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003667 if (!ret)
Dmitry Safonov5e3949f2015-09-29 19:46:12 +03003668 return -EINVAL;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003669 if (ret < 0)
3670 return ret;
Steven Rostedtb448c4e2011-04-29 15:12:32 -04003671 return 0;
Steven Rostedtf6180772009-02-14 00:40:25 -05003672}
3673
3674static struct ftrace_func_command ftrace_mod_cmd = {
3675 .name = "mod",
3676 .func = ftrace_mod_callback,
3677};
3678
3679static int __init ftrace_mod_cmd_init(void)
3680{
3681 return register_ftrace_command(&ftrace_mod_cmd);
3682}
Steven Rostedt6f415672012-10-05 12:13:07 -04003683core_initcall(ftrace_mod_cmd_init);
Steven Rostedtf6180772009-02-14 00:40:25 -05003684
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04003685static void function_trace_probe_call(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04003686 struct ftrace_ops *op, struct pt_regs *pt_regs)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003687{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003688 struct ftrace_func_probe *entry;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003689 struct hlist_head *hhd;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003690 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003691
3692 key = hash_long(ip, FTRACE_HASH_BITS);
3693
3694 hhd = &ftrace_func_hash[key];
3695
3696 if (hlist_empty(hhd))
3697 return;
3698
3699 /*
3700 * Disable preemption for these calls to prevent a RCU grace
3701 * period. This syncs the hash iteration and freeing of items
3702 * on the hash. rcu_read_lock is too dangerous here.
3703 */
Steven Rostedt5168ae52010-06-03 09:36:50 -04003704 preempt_disable_notrace();
Steven Rostedt1bb539c2013-05-28 14:38:43 -04003705 hlist_for_each_entry_rcu_notrace(entry, hhd, node) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003706 if (entry->ip == ip)
3707 entry->ops->func(ip, parent_ip, &entry->data);
3708 }
Steven Rostedt5168ae52010-06-03 09:36:50 -04003709 preempt_enable_notrace();
Steven Rostedt59df055f2009-02-14 15:29:06 -05003710}
3711
Steven Rostedtb6887d72009-02-17 12:32:04 -05003712static struct ftrace_ops trace_probe_ops __read_mostly =
Steven Rostedt59df055f2009-02-14 15:29:06 -05003713{
Steven Rostedtfb9fb012009-03-25 13:26:41 -04003714 .func = function_trace_probe_call,
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09003715 .flags = FTRACE_OPS_FL_INITIALIZED,
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003716 INIT_OPS_HASH(trace_probe_ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003717};
3718
Steven Rostedtb6887d72009-02-17 12:32:04 -05003719static int ftrace_probe_registered;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003720
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003721static void __enable_ftrace_function_probe(struct ftrace_ops_hash *old_hash)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003722{
Steven Rostedtb8489142011-05-04 09:27:52 -04003723 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003724 int i;
3725
Steven Rostedt (Red Hat)19dd6032013-05-09 19:37:36 -04003726 if (ftrace_probe_registered) {
3727 /* still need to update the function call sites */
3728 if (ftrace_enabled)
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04003729 ftrace_run_modify_code(&trace_probe_ops, FTRACE_UPDATE_CALLS,
3730 old_hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003731 return;
Steven Rostedt (Red Hat)19dd6032013-05-09 19:37:36 -04003732 }
Steven Rostedt59df055f2009-02-14 15:29:06 -05003733
3734 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3735 struct hlist_head *hhd = &ftrace_func_hash[i];
3736 if (hhd->first)
3737 break;
3738 }
3739 /* Nothing registered? */
3740 if (i == FTRACE_FUNC_HASHSIZE)
3741 return;
3742
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05003743 ret = ftrace_startup(&trace_probe_ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04003744
Steven Rostedtb6887d72009-02-17 12:32:04 -05003745 ftrace_probe_registered = 1;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003746}
3747
Steven Rostedtb6887d72009-02-17 12:32:04 -05003748static void __disable_ftrace_function_probe(void)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003749{
3750 int i;
3751
Steven Rostedtb6887d72009-02-17 12:32:04 -05003752 if (!ftrace_probe_registered)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003753 return;
3754
3755 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3756 struct hlist_head *hhd = &ftrace_func_hash[i];
3757 if (hhd->first)
3758 return;
3759 }
3760
3761 /* no more funcs left */
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05003762 ftrace_shutdown(&trace_probe_ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04003763
Steven Rostedtb6887d72009-02-17 12:32:04 -05003764 ftrace_probe_registered = 0;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003765}
3766
3767
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003768static void ftrace_free_entry(struct ftrace_func_probe *entry)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003769{
Steven Rostedt59df055f2009-02-14 15:29:06 -05003770 if (entry->ops->free)
Steven Rostedt (Red Hat)e67efb92013-03-12 15:07:59 -04003771 entry->ops->free(entry->ops, entry->ip, &entry->data);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003772 kfree(entry);
3773}
3774
Steven Rostedt59df055f2009-02-14 15:29:06 -05003775int
Steven Rostedtb6887d72009-02-17 12:32:04 -05003776register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05003777 void *data)
3778{
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003779 struct ftrace_ops_hash old_hash_ops;
Steven Rostedtb6887d72009-02-17 12:32:04 -05003780 struct ftrace_func_probe *entry;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003781 struct ftrace_glob func_g;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003782 struct ftrace_hash **orig_hash = &trace_probe_ops.func_hash->filter_hash;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003783 struct ftrace_hash *old_hash = *orig_hash;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003784 struct ftrace_hash *hash;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003785 struct ftrace_page *pg;
3786 struct dyn_ftrace *rec;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003787 int not;
Steven Rostedt6a24a242009-02-17 11:20:26 -05003788 unsigned long key;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003789 int count = 0;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003790 int ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003791
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003792 func_g.type = filter_parse_regex(glob, strlen(glob),
3793 &func_g.search, &not);
3794 func_g.len = strlen(func_g.search);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003795
Steven Rostedtb6887d72009-02-17 12:32:04 -05003796 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05003797 if (WARN_ON(not))
3798 return -EINVAL;
3799
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003800 mutex_lock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003801
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003802 old_hash_ops.filter_hash = old_hash;
3803 /* Probes only have filters */
3804 old_hash_ops.notrace_hash = NULL;
3805
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003806 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, old_hash);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003807 if (!hash) {
3808 count = -ENOMEM;
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003809 goto out;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003810 }
3811
3812 if (unlikely(ftrace_disabled)) {
3813 count = -ENODEV;
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003814 goto out;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003815 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04003816
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003817 mutex_lock(&ftrace_lock);
3818
Steven Rostedt59df055f2009-02-14 15:29:06 -05003819 do_for_each_ftrace_rec(pg, rec) {
3820
Dmitry Safonov0b507e12015-09-29 19:46:15 +03003821 if (!ftrace_match_record(rec, &func_g, NULL, 0))
Steven Rostedt59df055f2009-02-14 15:29:06 -05003822 continue;
3823
3824 entry = kmalloc(sizeof(*entry), GFP_KERNEL);
3825 if (!entry) {
Steven Rostedtb6887d72009-02-17 12:32:04 -05003826 /* If we did not process any, then return error */
Steven Rostedt59df055f2009-02-14 15:29:06 -05003827 if (!count)
3828 count = -ENOMEM;
3829 goto out_unlock;
3830 }
3831
3832 count++;
3833
3834 entry->data = data;
3835
3836 /*
3837 * The caller might want to do something special
3838 * for each function we find. We call the callback
3839 * to give the caller an opportunity to do so.
3840 */
Steven Rostedt (Red Hat)e67efb92013-03-12 15:07:59 -04003841 if (ops->init) {
3842 if (ops->init(ops, rec->ip, &entry->data) < 0) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003843 /* caller does not like this func */
3844 kfree(entry);
3845 continue;
3846 }
3847 }
3848
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003849 ret = enter_record(hash, rec, 0);
3850 if (ret < 0) {
3851 kfree(entry);
3852 count = ret;
3853 goto out_unlock;
3854 }
3855
Steven Rostedt59df055f2009-02-14 15:29:06 -05003856 entry->ops = ops;
3857 entry->ip = rec->ip;
3858
3859 key = hash_long(entry->ip, FTRACE_HASH_BITS);
3860 hlist_add_head_rcu(&entry->node, &ftrace_func_hash[key]);
3861
3862 } while_for_each_ftrace_rec();
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003863
3864 ret = ftrace_hash_move(&trace_probe_ops, 1, orig_hash, hash);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04003865
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05003866 __enable_ftrace_function_probe(&old_hash_ops);
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04003867
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003868 if (!ret)
3869 free_ftrace_hash_rcu(old_hash);
3870 else
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003871 count = ret;
3872
Steven Rostedt59df055f2009-02-14 15:29:06 -05003873 out_unlock:
Steven Rostedt (Red Hat)5ae0bf52013-05-09 18:20:37 -04003874 mutex_unlock(&ftrace_lock);
3875 out:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003876 mutex_unlock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003877 free_ftrace_hash(hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003878
3879 return count;
3880}
3881
3882enum {
Steven Rostedtb6887d72009-02-17 12:32:04 -05003883 PROBE_TEST_FUNC = 1,
3884 PROBE_TEST_DATA = 2
Steven Rostedt59df055f2009-02-14 15:29:06 -05003885};
3886
3887static void
Steven Rostedtb6887d72009-02-17 12:32:04 -05003888__unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05003889 void *data, int flags)
3890{
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003891 struct ftrace_func_entry *rec_entry;
Steven Rostedtb6887d72009-02-17 12:32:04 -05003892 struct ftrace_func_probe *entry;
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003893 struct ftrace_func_probe *p;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003894 struct ftrace_glob func_g;
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003895 struct ftrace_hash **orig_hash = &trace_probe_ops.func_hash->filter_hash;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003896 struct ftrace_hash *old_hash = *orig_hash;
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003897 struct list_head free_list;
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003898 struct ftrace_hash *hash;
Sasha Levinb67bfe02013-02-27 17:06:00 -08003899 struct hlist_node *tmp;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003900 char str[KSYM_SYMBOL_LEN];
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003901 int i, ret;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003902
Atsushi Tsujib36461d2009-09-15 19:06:30 +09003903 if (glob && (strcmp(glob, "*") == 0 || !strlen(glob)))
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003904 func_g.search = NULL;
Atsushi Tsujib36461d2009-09-15 19:06:30 +09003905 else if (glob) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003906 int not;
3907
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003908 func_g.type = filter_parse_regex(glob, strlen(glob),
3909 &func_g.search, &not);
3910 func_g.len = strlen(func_g.search);
3911 func_g.search = glob;
Steven Rostedt59df055f2009-02-14 15:29:06 -05003912
Steven Rostedtb6887d72009-02-17 12:32:04 -05003913 /* we do not support '!' for function probes */
Steven Rostedt59df055f2009-02-14 15:29:06 -05003914 if (WARN_ON(not))
3915 return;
3916 }
3917
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003918 mutex_lock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003919
3920 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
3921 if (!hash)
3922 /* Hmm, should report this somehow */
3923 goto out_unlock;
3924
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003925 INIT_LIST_HEAD(&free_list);
3926
Steven Rostedt59df055f2009-02-14 15:29:06 -05003927 for (i = 0; i < FTRACE_FUNC_HASHSIZE; i++) {
3928 struct hlist_head *hhd = &ftrace_func_hash[i];
3929
Sasha Levinb67bfe02013-02-27 17:06:00 -08003930 hlist_for_each_entry_safe(entry, tmp, hhd, node) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003931
3932 /* break up if statements for readability */
Steven Rostedtb6887d72009-02-17 12:32:04 -05003933 if ((flags & PROBE_TEST_FUNC) && entry->ops != ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003934 continue;
3935
Steven Rostedtb6887d72009-02-17 12:32:04 -05003936 if ((flags & PROBE_TEST_DATA) && entry->data != data)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003937 continue;
3938
3939 /* do this last, since it is the most expensive */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003940 if (func_g.search) {
Steven Rostedt59df055f2009-02-14 15:29:06 -05003941 kallsyms_lookup(entry->ip, NULL, NULL,
3942 NULL, str);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003943 if (!ftrace_match(str, &func_g))
Steven Rostedt59df055f2009-02-14 15:29:06 -05003944 continue;
3945 }
3946
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003947 rec_entry = ftrace_lookup_ip(hash, entry->ip);
3948 /* It is possible more than one entry had this ip */
3949 if (rec_entry)
3950 free_hash_entry(hash, rec_entry);
3951
Steven Rostedt (Red Hat)740466b2013-03-13 11:15:19 -04003952 hlist_del_rcu(&entry->node);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003953 list_add(&entry->free_list, &free_list);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003954 }
3955 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003956 mutex_lock(&ftrace_lock);
Steven Rostedtb6887d72009-02-17 12:32:04 -05003957 __disable_ftrace_function_probe();
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003958 /*
3959 * Remove after the disable is called. Otherwise, if the last
3960 * probe is removed, a null hash means *all enabled*.
3961 */
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003962 ret = ftrace_hash_move(&trace_probe_ops, 1, orig_hash, hash);
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003963 synchronize_sched();
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04003964 if (!ret)
3965 free_ftrace_hash_rcu(old_hash);
3966
Steven Rostedt (Red Hat)7818b382013-03-13 12:42:58 -04003967 list_for_each_entry_safe(entry, p, &free_list, free_list) {
3968 list_del(&entry->free_list);
3969 ftrace_free_entry(entry);
3970 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09003971 mutex_unlock(&ftrace_lock);
Dmitry Safonov3ba00922015-09-29 19:46:14 +03003972
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003973 out_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04003974 mutex_unlock(&trace_probe_ops.func_hash->regex_lock);
Steven Rostedt (Red Hat)e1df4cb2013-03-12 10:09:42 -04003975 free_ftrace_hash(hash);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003976}
3977
3978void
Steven Rostedtb6887d72009-02-17 12:32:04 -05003979unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops,
Steven Rostedt59df055f2009-02-14 15:29:06 -05003980 void *data)
3981{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003982 __unregister_ftrace_function_probe(glob, ops, data,
3983 PROBE_TEST_FUNC | PROBE_TEST_DATA);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003984}
3985
3986void
Steven Rostedtb6887d72009-02-17 12:32:04 -05003987unregister_ftrace_function_probe_func(char *glob, struct ftrace_probe_ops *ops)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003988{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003989 __unregister_ftrace_function_probe(glob, ops, NULL, PROBE_TEST_FUNC);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003990}
3991
Steven Rostedtb6887d72009-02-17 12:32:04 -05003992void unregister_ftrace_function_probe_all(char *glob)
Steven Rostedt59df055f2009-02-14 15:29:06 -05003993{
Steven Rostedtb6887d72009-02-17 12:32:04 -05003994 __unregister_ftrace_function_probe(glob, NULL, NULL, 0);
Steven Rostedt59df055f2009-02-14 15:29:06 -05003995}
3996
Steven Rostedtf6180772009-02-14 00:40:25 -05003997static LIST_HEAD(ftrace_commands);
3998static DEFINE_MUTEX(ftrace_cmd_mutex);
3999
Tom Zanussi38de93a2013-10-24 08:34:18 -05004000/*
4001 * Currently we only register ftrace commands from __init, so mark this
4002 * __init too.
4003 */
4004__init int register_ftrace_command(struct ftrace_func_command *cmd)
Steven Rostedtf6180772009-02-14 00:40:25 -05004005{
4006 struct ftrace_func_command *p;
4007 int ret = 0;
4008
4009 mutex_lock(&ftrace_cmd_mutex);
4010 list_for_each_entry(p, &ftrace_commands, list) {
4011 if (strcmp(cmd->name, p->name) == 0) {
4012 ret = -EBUSY;
4013 goto out_unlock;
4014 }
4015 }
4016 list_add(&cmd->list, &ftrace_commands);
4017 out_unlock:
4018 mutex_unlock(&ftrace_cmd_mutex);
4019
4020 return ret;
4021}
4022
Tom Zanussi38de93a2013-10-24 08:34:18 -05004023/*
4024 * Currently we only unregister ftrace commands from __init, so mark
4025 * this __init too.
4026 */
4027__init int unregister_ftrace_command(struct ftrace_func_command *cmd)
Steven Rostedtf6180772009-02-14 00:40:25 -05004028{
4029 struct ftrace_func_command *p, *n;
4030 int ret = -ENODEV;
4031
4032 mutex_lock(&ftrace_cmd_mutex);
4033 list_for_each_entry_safe(p, n, &ftrace_commands, list) {
4034 if (strcmp(cmd->name, p->name) == 0) {
4035 ret = 0;
4036 list_del_init(&p->list);
4037 goto out_unlock;
4038 }
4039 }
4040 out_unlock:
4041 mutex_unlock(&ftrace_cmd_mutex);
4042
4043 return ret;
4044}
4045
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004046static int ftrace_process_regex(struct ftrace_hash *hash,
4047 char *buff, int len, int enable)
Steven Rostedt64e7c442009-02-13 17:08:48 -05004048{
Steven Rostedtf6180772009-02-14 00:40:25 -05004049 char *func, *command, *next = buff;
Steven Rostedt6a24a242009-02-17 11:20:26 -05004050 struct ftrace_func_command *p;
GuoWen Li0aff1c02011-06-01 19:18:47 +08004051 int ret = -EINVAL;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004052
4053 func = strsep(&next, ":");
4054
4055 if (!next) {
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004056 ret = ftrace_match_records(hash, func, len);
Steven Rostedtb448c4e2011-04-29 15:12:32 -04004057 if (!ret)
4058 ret = -EINVAL;
4059 if (ret < 0)
4060 return ret;
4061 return 0;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004062 }
4063
Steven Rostedtf6180772009-02-14 00:40:25 -05004064 /* command found */
Steven Rostedt64e7c442009-02-13 17:08:48 -05004065
4066 command = strsep(&next, ":");
4067
Steven Rostedtf6180772009-02-14 00:40:25 -05004068 mutex_lock(&ftrace_cmd_mutex);
4069 list_for_each_entry(p, &ftrace_commands, list) {
4070 if (strcmp(p->name, command) == 0) {
Steven Rostedt43dd61c2011-07-07 11:09:22 -04004071 ret = p->func(hash, func, command, next, enable);
Steven Rostedtf6180772009-02-14 00:40:25 -05004072 goto out_unlock;
4073 }
Steven Rostedt64e7c442009-02-13 17:08:48 -05004074 }
Steven Rostedtf6180772009-02-14 00:40:25 -05004075 out_unlock:
4076 mutex_unlock(&ftrace_cmd_mutex);
Steven Rostedt64e7c442009-02-13 17:08:48 -05004077
Steven Rostedtf6180772009-02-14 00:40:25 -05004078 return ret;
Steven Rostedt64e7c442009-02-13 17:08:48 -05004079}
4080
Ingo Molnare309b412008-05-12 21:20:51 +02004081static ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004082ftrace_regex_write(struct file *file, const char __user *ubuf,
4083 size_t cnt, loff_t *ppos, int enable)
Steven Rostedt5072c592008-05-12 21:20:43 +02004084{
4085 struct ftrace_iterator *iter;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004086 struct trace_parser *parser;
4087 ssize_t ret, read;
Steven Rostedt5072c592008-05-12 21:20:43 +02004088
Li Zefan4ba79782009-09-22 13:52:20 +08004089 if (!cnt)
Steven Rostedt5072c592008-05-12 21:20:43 +02004090 return 0;
4091
Steven Rostedt5072c592008-05-12 21:20:43 +02004092 if (file->f_mode & FMODE_READ) {
4093 struct seq_file *m = file->private_data;
4094 iter = m->private;
4095 } else
4096 iter = file->private_data;
4097
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004098 if (unlikely(ftrace_disabled))
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004099 return -ENODEV;
4100
4101 /* iter->hash is a local copy, so we don't need regex_lock */
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004102
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004103 parser = &iter->parser;
4104 read = trace_get_user(parser, ubuf, cnt, ppos);
Steven Rostedt5072c592008-05-12 21:20:43 +02004105
Li Zefan4ba79782009-09-22 13:52:20 +08004106 if (read >= 0 && trace_parser_loaded(parser) &&
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004107 !trace_parser_cont(parser)) {
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004108 ret = ftrace_process_regex(iter->hash, parser->buffer,
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004109 parser->idx, enable);
Li Zefan313254a2009-12-08 11:15:30 +08004110 trace_parser_clear(parser);
Steven Rostedt (Red Hat)7c088b52013-05-09 11:35:12 -04004111 if (ret < 0)
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004112 goto out;
Steven Rostedt5072c592008-05-12 21:20:43 +02004113 }
4114
Steven Rostedt5072c592008-05-12 21:20:43 +02004115 ret = read;
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004116 out:
Steven Rostedt5072c592008-05-12 21:20:43 +02004117 return ret;
4118}
4119
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004120ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004121ftrace_filter_write(struct file *file, const char __user *ubuf,
4122 size_t cnt, loff_t *ppos)
4123{
4124 return ftrace_regex_write(file, ubuf, cnt, ppos, 1);
4125}
4126
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004127ssize_t
Steven Rostedt41c52c02008-05-22 11:46:33 -04004128ftrace_notrace_write(struct file *file, const char __user *ubuf,
4129 size_t cnt, loff_t *ppos)
4130{
4131 return ftrace_regex_write(file, ubuf, cnt, ppos, 0);
4132}
4133
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004134static int
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004135ftrace_match_addr(struct ftrace_hash *hash, unsigned long ip, int remove)
4136{
4137 struct ftrace_func_entry *entry;
4138
4139 if (!ftrace_location(ip))
4140 return -EINVAL;
4141
4142 if (remove) {
4143 entry = ftrace_lookup_ip(hash, ip);
4144 if (!entry)
4145 return -ENOENT;
4146 free_hash_entry(hash, entry);
4147 return 0;
4148 }
4149
4150 return add_hash_entry(hash, ip);
4151}
4152
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04004153static void ftrace_ops_update_code(struct ftrace_ops *ops,
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004154 struct ftrace_ops_hash *old_hash)
Steven Rostedt (Red Hat)1c80c432013-07-25 20:22:00 -04004155{
Steven Rostedt (Red Hat)8f86f832015-01-13 11:20:43 -05004156 struct ftrace_ops *op;
4157
4158 if (!ftrace_enabled)
4159 return;
4160
4161 if (ops->flags & FTRACE_OPS_FL_ENABLED) {
Steven Rostedt (Red Hat)8252ecf2014-10-24 14:56:01 -04004162 ftrace_run_modify_code(ops, FTRACE_UPDATE_CALLS, old_hash);
Steven Rostedt (Red Hat)8f86f832015-01-13 11:20:43 -05004163 return;
4164 }
4165
4166 /*
4167 * If this is the shared global_ops filter, then we need to
4168 * check if there is another ops that shares it, is enabled.
4169 * If so, we still need to run the modify code.
4170 */
4171 if (ops->func_hash != &global_ops.local_hash)
4172 return;
4173
4174 do_for_each_ftrace_op(op, ftrace_ops_list) {
4175 if (op->func_hash == &global_ops.local_hash &&
4176 op->flags & FTRACE_OPS_FL_ENABLED) {
4177 ftrace_run_modify_code(op, FTRACE_UPDATE_CALLS, old_hash);
4178 /* Only need to do this once */
4179 return;
4180 }
4181 } while_for_each_ftrace_op(op);
Steven Rostedt (Red Hat)1c80c432013-07-25 20:22:00 -04004182}
4183
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004184static int
4185ftrace_set_hash(struct ftrace_ops *ops, unsigned char *buf, int len,
4186 unsigned long ip, int remove, int reset, int enable)
Steven Rostedt41c52c02008-05-22 11:46:33 -04004187{
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004188 struct ftrace_hash **orig_hash;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004189 struct ftrace_ops_hash old_hash_ops;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004190 struct ftrace_hash *old_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004191 struct ftrace_hash *hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004192 int ret;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004193
Steven Rostedt41c52c02008-05-22 11:46:33 -04004194 if (unlikely(ftrace_disabled))
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004195 return -ENODEV;
Steven Rostedt41c52c02008-05-22 11:46:33 -04004196
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004197 mutex_lock(&ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004198
Steven Rostedtf45948e2011-05-02 12:29:25 -04004199 if (enable)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004200 orig_hash = &ops->func_hash->filter_hash;
Steven Rostedtf45948e2011-05-02 12:29:25 -04004201 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004202 orig_hash = &ops->func_hash->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004203
Wang Nanb972cc52014-07-15 08:40:20 +08004204 if (reset)
4205 hash = alloc_ftrace_hash(FTRACE_HASH_DEFAULT_BITS);
4206 else
4207 hash = alloc_and_copy_ftrace_hash(FTRACE_HASH_DEFAULT_BITS, *orig_hash);
4208
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004209 if (!hash) {
4210 ret = -ENOMEM;
4211 goto out_regex_unlock;
4212 }
Steven Rostedtf45948e2011-05-02 12:29:25 -04004213
Jiri Olsaac483c42012-01-02 10:04:14 +01004214 if (buf && !ftrace_match_records(hash, buf, len)) {
4215 ret = -EINVAL;
4216 goto out_regex_unlock;
4217 }
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004218 if (ip) {
4219 ret = ftrace_match_addr(hash, ip, remove);
4220 if (ret < 0)
4221 goto out_regex_unlock;
4222 }
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004223
4224 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004225 old_hash = *orig_hash;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004226 old_hash_ops.filter_hash = ops->func_hash->filter_hash;
4227 old_hash_ops.notrace_hash = ops->func_hash->notrace_hash;
Steven Rostedt41fb61c2011-07-13 15:03:44 -04004228 ret = ftrace_hash_move(ops, enable, orig_hash, hash);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004229 if (!ret) {
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004230 ftrace_ops_update_code(ops, &old_hash_ops);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004231 free_ftrace_hash_rcu(old_hash);
4232 }
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004233 mutex_unlock(&ftrace_lock);
4234
Jiri Olsaac483c42012-01-02 10:04:14 +01004235 out_regex_unlock:
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004236 mutex_unlock(&ops->func_hash->regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004237
4238 free_ftrace_hash(hash);
4239 return ret;
Steven Rostedt41c52c02008-05-22 11:46:33 -04004240}
4241
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004242static int
4243ftrace_set_addr(struct ftrace_ops *ops, unsigned long ip, int remove,
4244 int reset, int enable)
4245{
4246 return ftrace_set_hash(ops, 0, 0, ip, remove, reset, enable);
4247}
4248
4249/**
4250 * ftrace_set_filter_ip - set a function to filter on in ftrace by address
4251 * @ops - the ops to set the filter with
4252 * @ip - the address to add to or remove from the filter.
4253 * @remove - non zero to remove the ip from the filter
4254 * @reset - non zero to reset all filters before applying this filter.
4255 *
4256 * Filters denote which functions should be enabled when tracing is enabled
4257 * If @ip is NULL, it failes to update filter.
4258 */
4259int ftrace_set_filter_ip(struct ftrace_ops *ops, unsigned long ip,
4260 int remove, int reset)
4261{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004262 ftrace_ops_init(ops);
Masami Hiramatsu647664e2012-06-05 19:28:08 +09004263 return ftrace_set_addr(ops, ip, remove, reset, 1);
4264}
4265EXPORT_SYMBOL_GPL(ftrace_set_filter_ip);
4266
4267static int
4268ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
4269 int reset, int enable)
4270{
4271 return ftrace_set_hash(ops, buf, len, 0, 0, reset, enable);
4272}
4273
Steven Rostedt77a2b372008-05-12 21:20:45 +02004274/**
4275 * ftrace_set_filter - set a function to filter on in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04004276 * @ops - the ops to set the filter with
Steven Rostedt77a2b372008-05-12 21:20:45 +02004277 * @buf - the string that holds the function filter text.
4278 * @len - the length of the string.
4279 * @reset - non zero to reset all filters before applying this filter.
4280 *
4281 * Filters denote which functions should be enabled when tracing is enabled.
4282 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4283 */
Jiri Olsaac483c42012-01-02 10:04:14 +01004284int ftrace_set_filter(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04004285 int len, int reset)
Steven Rostedt77a2b372008-05-12 21:20:45 +02004286{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004287 ftrace_ops_init(ops);
Jiri Olsaac483c42012-01-02 10:04:14 +01004288 return ftrace_set_regex(ops, buf, len, reset, 1);
Steven Rostedt41c52c02008-05-22 11:46:33 -04004289}
Steven Rostedt936e0742011-05-05 22:54:01 -04004290EXPORT_SYMBOL_GPL(ftrace_set_filter);
Steven Rostedt4eebcc82008-05-12 21:20:48 +02004291
Steven Rostedt41c52c02008-05-22 11:46:33 -04004292/**
4293 * ftrace_set_notrace - set a function to not trace in ftrace
Steven Rostedt936e0742011-05-05 22:54:01 -04004294 * @ops - the ops to set the notrace filter with
Steven Rostedt41c52c02008-05-22 11:46:33 -04004295 * @buf - the string that holds the function notrace text.
4296 * @len - the length of the string.
4297 * @reset - non zero to reset all filters before applying this filter.
4298 *
4299 * Notrace Filters denote which functions should not be enabled when tracing
4300 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4301 * for tracing.
4302 */
Jiri Olsaac483c42012-01-02 10:04:14 +01004303int ftrace_set_notrace(struct ftrace_ops *ops, unsigned char *buf,
Steven Rostedt936e0742011-05-05 22:54:01 -04004304 int len, int reset)
4305{
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004306 ftrace_ops_init(ops);
Jiri Olsaac483c42012-01-02 10:04:14 +01004307 return ftrace_set_regex(ops, buf, len, reset, 0);
Steven Rostedt936e0742011-05-05 22:54:01 -04004308}
4309EXPORT_SYMBOL_GPL(ftrace_set_notrace);
4310/**
Jiaxing Wang8d1b0652014-04-20 23:10:44 +08004311 * ftrace_set_global_filter - set a function to filter on with global tracers
Steven Rostedt936e0742011-05-05 22:54:01 -04004312 * @buf - the string that holds the function filter text.
4313 * @len - the length of the string.
4314 * @reset - non zero to reset all filters before applying this filter.
4315 *
4316 * Filters denote which functions should be enabled when tracing is enabled.
4317 * If @buf is NULL and reset is set, all functions will be enabled for tracing.
4318 */
4319void ftrace_set_global_filter(unsigned char *buf, int len, int reset)
4320{
4321 ftrace_set_regex(&global_ops, buf, len, reset, 1);
4322}
4323EXPORT_SYMBOL_GPL(ftrace_set_global_filter);
4324
4325/**
Jiaxing Wang8d1b0652014-04-20 23:10:44 +08004326 * ftrace_set_global_notrace - set a function to not trace with global tracers
Steven Rostedt936e0742011-05-05 22:54:01 -04004327 * @buf - the string that holds the function notrace text.
4328 * @len - the length of the string.
4329 * @reset - non zero to reset all filters before applying this filter.
4330 *
4331 * Notrace Filters denote which functions should not be enabled when tracing
4332 * is enabled. If @buf is NULL and reset is set, all functions will be enabled
4333 * for tracing.
4334 */
4335void ftrace_set_global_notrace(unsigned char *buf, int len, int reset)
Steven Rostedt41c52c02008-05-22 11:46:33 -04004336{
Steven Rostedtf45948e2011-05-02 12:29:25 -04004337 ftrace_set_regex(&global_ops, buf, len, reset, 0);
Steven Rostedt77a2b372008-05-12 21:20:45 +02004338}
Steven Rostedt936e0742011-05-05 22:54:01 -04004339EXPORT_SYMBOL_GPL(ftrace_set_global_notrace);
Steven Rostedt77a2b372008-05-12 21:20:45 +02004340
Steven Rostedt2af15d62009-05-28 13:37:24 -04004341/*
4342 * command line interface to allow users to set filters on boot up.
4343 */
4344#define FTRACE_FILTER_SIZE COMMAND_LINE_SIZE
4345static char ftrace_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
4346static char ftrace_filter_buf[FTRACE_FILTER_SIZE] __initdata;
4347
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004348/* Used by function selftest to not test if filter is set */
4349bool ftrace_filter_param __initdata;
4350
Steven Rostedt2af15d62009-05-28 13:37:24 -04004351static int __init set_ftrace_notrace(char *str)
4352{
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004353 ftrace_filter_param = true;
Chen Gang75761cc2013-04-08 12:12:39 +08004354 strlcpy(ftrace_notrace_buf, str, FTRACE_FILTER_SIZE);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004355 return 1;
4356}
4357__setup("ftrace_notrace=", set_ftrace_notrace);
4358
4359static int __init set_ftrace_filter(char *str)
4360{
Steven Rostedt (Red Hat)f1ed7c72013-06-27 22:18:06 -04004361 ftrace_filter_param = true;
Chen Gang75761cc2013-04-08 12:12:39 +08004362 strlcpy(ftrace_filter_buf, str, FTRACE_FILTER_SIZE);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004363 return 1;
4364}
4365__setup("ftrace_filter=", set_ftrace_filter);
4366
Stefan Assmann369bc182009-10-12 22:17:21 +02004367#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Lai Jiangshanf6060f42009-11-05 11:16:17 +08004368static char ftrace_graph_buf[FTRACE_FILTER_SIZE] __initdata;
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004369static char ftrace_graph_notrace_buf[FTRACE_FILTER_SIZE] __initdata;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004370static int ftrace_set_func(unsigned long *array, int *idx, int size, char *buffer);
Steven Rostedt801c29f2010-03-05 20:02:19 -05004371
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04004372static unsigned long save_global_trampoline;
4373static unsigned long save_global_flags;
4374
Stefan Assmann369bc182009-10-12 22:17:21 +02004375static int __init set_graph_function(char *str)
4376{
Frederic Weisbecker06f43d62009-10-14 20:43:39 +02004377 strlcpy(ftrace_graph_buf, str, FTRACE_FILTER_SIZE);
Stefan Assmann369bc182009-10-12 22:17:21 +02004378 return 1;
4379}
4380__setup("ftrace_graph_filter=", set_graph_function);
4381
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004382static int __init set_graph_notrace_function(char *str)
4383{
4384 strlcpy(ftrace_graph_notrace_buf, str, FTRACE_FILTER_SIZE);
4385 return 1;
4386}
4387__setup("ftrace_graph_notrace=", set_graph_notrace_function);
4388
4389static void __init set_ftrace_early_graph(char *buf, int enable)
Stefan Assmann369bc182009-10-12 22:17:21 +02004390{
4391 int ret;
4392 char *func;
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004393 unsigned long *table = ftrace_graph_funcs;
4394 int *count = &ftrace_graph_count;
4395
4396 if (!enable) {
4397 table = ftrace_graph_notrace_funcs;
4398 count = &ftrace_graph_notrace_count;
4399 }
Stefan Assmann369bc182009-10-12 22:17:21 +02004400
4401 while (buf) {
4402 func = strsep(&buf, ",");
4403 /* we allow only one expression at a time */
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004404 ret = ftrace_set_func(table, count, FTRACE_GRAPH_MAX_FUNCS, func);
Stefan Assmann369bc182009-10-12 22:17:21 +02004405 if (ret)
4406 printk(KERN_DEBUG "ftrace: function %s not "
4407 "traceable\n", func);
4408 }
4409}
4410#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4411
Steven Rostedt2a85a372011-12-19 21:57:44 -05004412void __init
4413ftrace_set_early_filter(struct ftrace_ops *ops, char *buf, int enable)
Steven Rostedt2af15d62009-05-28 13:37:24 -04004414{
4415 char *func;
4416
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09004417 ftrace_ops_init(ops);
4418
Steven Rostedt2af15d62009-05-28 13:37:24 -04004419 while (buf) {
4420 func = strsep(&buf, ",");
Steven Rostedtf45948e2011-05-02 12:29:25 -04004421 ftrace_set_regex(ops, func, strlen(func), 0, enable);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004422 }
4423}
4424
4425static void __init set_ftrace_early_filters(void)
4426{
4427 if (ftrace_filter_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05004428 ftrace_set_early_filter(&global_ops, ftrace_filter_buf, 1);
Steven Rostedt2af15d62009-05-28 13:37:24 -04004429 if (ftrace_notrace_buf[0])
Steven Rostedt2a85a372011-12-19 21:57:44 -05004430 ftrace_set_early_filter(&global_ops, ftrace_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02004431#ifdef CONFIG_FUNCTION_GRAPH_TRACER
4432 if (ftrace_graph_buf[0])
Namhyung Kim0d7d9a12014-06-13 01:23:50 +09004433 set_ftrace_early_graph(ftrace_graph_buf, 1);
4434 if (ftrace_graph_notrace_buf[0])
4435 set_ftrace_early_graph(ftrace_graph_notrace_buf, 0);
Stefan Assmann369bc182009-10-12 22:17:21 +02004436#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
Steven Rostedt2af15d62009-05-28 13:37:24 -04004437}
4438
Steven Rostedtfc13cb02011-12-19 14:41:25 -05004439int ftrace_regex_release(struct inode *inode, struct file *file)
Steven Rostedt5072c592008-05-12 21:20:43 +02004440{
4441 struct seq_file *m = (struct seq_file *)file->private_data;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004442 struct ftrace_ops_hash old_hash_ops;
Steven Rostedt5072c592008-05-12 21:20:43 +02004443 struct ftrace_iterator *iter;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004444 struct ftrace_hash **orig_hash;
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004445 struct ftrace_hash *old_hash;
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004446 struct trace_parser *parser;
Steven Rostedted926f92011-05-03 13:25:24 -04004447 int filter_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004448 int ret;
Steven Rostedt5072c592008-05-12 21:20:43 +02004449
Steven Rostedt5072c592008-05-12 21:20:43 +02004450 if (file->f_mode & FMODE_READ) {
4451 iter = m->private;
Steven Rostedt5072c592008-05-12 21:20:43 +02004452 seq_release(inode, file);
4453 } else
4454 iter = file->private_data;
4455
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004456 parser = &iter->parser;
4457 if (trace_parser_loaded(parser)) {
4458 parser->buffer[parser->idx] = 0;
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004459 ftrace_match_records(iter->hash, parser->buffer, parser->idx);
Steven Rostedt5072c592008-05-12 21:20:43 +02004460 }
4461
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004462 trace_parser_put(parser);
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004463
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004464 mutex_lock(&iter->ops->func_hash->regex_lock);
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004465
Steven Rostedt058e2972011-04-29 22:35:33 -04004466 if (file->f_mode & FMODE_WRITE) {
Steven Rostedted926f92011-05-03 13:25:24 -04004467 filter_hash = !!(iter->flags & FTRACE_ITER_FILTER);
4468
4469 if (filter_hash)
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004470 orig_hash = &iter->ops->func_hash->filter_hash;
Steven Rostedted926f92011-05-03 13:25:24 -04004471 else
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004472 orig_hash = &iter->ops->func_hash->notrace_hash;
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004473
Steven Rostedt058e2972011-04-29 22:35:33 -04004474 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004475 old_hash = *orig_hash;
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004476 old_hash_ops.filter_hash = iter->ops->func_hash->filter_hash;
4477 old_hash_ops.notrace_hash = iter->ops->func_hash->notrace_hash;
Steven Rostedt41fb61c2011-07-13 15:03:44 -04004478 ret = ftrace_hash_move(iter->ops, filter_hash,
4479 orig_hash, iter->hash);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004480 if (!ret) {
Steven Rostedt (Red Hat)7485058e2015-01-13 14:03:38 -05004481 ftrace_ops_update_code(iter->ops, &old_hash_ops);
Steven Rostedt (Red Hat)3296fc42014-07-24 15:33:41 -04004482 free_ftrace_hash_rcu(old_hash);
4483 }
Steven Rostedt058e2972011-04-29 22:35:33 -04004484 mutex_unlock(&ftrace_lock);
4485 }
Masami Hiramatsu3f2367b2013-05-09 14:44:21 +09004486
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04004487 mutex_unlock(&iter->ops->func_hash->regex_lock);
Steven Rostedt33dc9b12011-05-02 17:34:47 -04004488 free_ftrace_hash(iter->hash);
4489 kfree(iter);
Steven Rostedt058e2972011-04-29 22:35:33 -04004490
Steven Rostedt5072c592008-05-12 21:20:43 +02004491 return 0;
4492}
4493
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004494static const struct file_operations ftrace_avail_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02004495 .open = ftrace_avail_open,
4496 .read = seq_read,
4497 .llseek = seq_lseek,
Li Zefan3be04b42009-08-17 16:54:03 +08004498 .release = seq_release_private,
Steven Rostedt5072c592008-05-12 21:20:43 +02004499};
4500
Steven Rostedt647bcd02011-05-03 14:39:21 -04004501static const struct file_operations ftrace_enabled_fops = {
4502 .open = ftrace_enabled_open,
4503 .read = seq_read,
4504 .llseek = seq_lseek,
4505 .release = seq_release_private,
4506};
4507
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004508static const struct file_operations ftrace_filter_fops = {
Steven Rostedt5072c592008-05-12 21:20:43 +02004509 .open = ftrace_filter_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08004510 .read = seq_read,
Steven Rostedt5072c592008-05-12 21:20:43 +02004511 .write = ftrace_filter_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004512 .llseek = tracing_lseek,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004513 .release = ftrace_regex_release,
Steven Rostedt5072c592008-05-12 21:20:43 +02004514};
4515
Steven Rostedt5e2336a2009-03-05 21:44:55 -05004516static const struct file_operations ftrace_notrace_fops = {
Steven Rostedt41c52c02008-05-22 11:46:33 -04004517 .open = ftrace_notrace_open,
Lai Jiangshan850a80c2009-03-13 17:47:23 +08004518 .read = seq_read,
Steven Rostedt41c52c02008-05-22 11:46:33 -04004519 .write = ftrace_notrace_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004520 .llseek = tracing_lseek,
Steven Rostedt1cf41dd72011-04-29 20:59:51 -04004521 .release = ftrace_regex_release,
Steven Rostedt41c52c02008-05-22 11:46:33 -04004522};
4523
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004524#ifdef CONFIG_FUNCTION_GRAPH_TRACER
4525
4526static DEFINE_MUTEX(graph_lock);
4527
4528int ftrace_graph_count;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004529int ftrace_graph_notrace_count;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004530unsigned long ftrace_graph_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004531unsigned long ftrace_graph_notrace_funcs[FTRACE_GRAPH_MAX_FUNCS] __read_mostly;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004532
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004533struct ftrace_graph_data {
4534 unsigned long *table;
4535 size_t size;
4536 int *count;
4537 const struct seq_operations *seq_ops;
4538};
4539
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004540static void *
Li Zefan85951842009-06-24 09:54:00 +08004541__g_next(struct seq_file *m, loff_t *pos)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004542{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004543 struct ftrace_graph_data *fgd = m->private;
4544
4545 if (*pos >= *fgd->count)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004546 return NULL;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004547 return &fgd->table[*pos];
Li Zefan85951842009-06-24 09:54:00 +08004548}
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004549
Li Zefan85951842009-06-24 09:54:00 +08004550static void *
4551g_next(struct seq_file *m, void *v, loff_t *pos)
4552{
4553 (*pos)++;
4554 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004555}
4556
4557static void *g_start(struct seq_file *m, loff_t *pos)
4558{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004559 struct ftrace_graph_data *fgd = m->private;
4560
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004561 mutex_lock(&graph_lock);
4562
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004563 /* Nothing, tell g_show to print all functions are enabled */
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004564 if (!*fgd->count && !*pos)
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004565 return (void *)1;
4566
Li Zefan85951842009-06-24 09:54:00 +08004567 return __g_next(m, pos);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004568}
4569
4570static void g_stop(struct seq_file *m, void *p)
4571{
4572 mutex_unlock(&graph_lock);
4573}
4574
4575static int g_show(struct seq_file *m, void *v)
4576{
4577 unsigned long *ptr = v;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004578
4579 if (!ptr)
4580 return 0;
4581
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004582 if (ptr == (unsigned long *)1) {
Namhyung Kim280d1422014-06-13 01:23:51 +09004583 struct ftrace_graph_data *fgd = m->private;
4584
4585 if (fgd->table == ftrace_graph_funcs)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01004586 seq_puts(m, "#### all functions enabled ####\n");
Namhyung Kim280d1422014-06-13 01:23:51 +09004587 else
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01004588 seq_puts(m, "#### no functions disabled ####\n");
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004589 return 0;
4590 }
4591
Steven Rostedtb375a112009-09-17 00:05:58 -04004592 seq_printf(m, "%ps\n", (void *)*ptr);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004593
4594 return 0;
4595}
4596
James Morris88e9d342009-09-22 16:43:43 -07004597static const struct seq_operations ftrace_graph_seq_ops = {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004598 .start = g_start,
4599 .next = g_next,
4600 .stop = g_stop,
4601 .show = g_show,
4602};
4603
4604static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004605__ftrace_graph_open(struct inode *inode, struct file *file,
4606 struct ftrace_graph_data *fgd)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004607{
4608 int ret = 0;
4609
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004610 mutex_lock(&graph_lock);
4611 if ((file->f_mode & FMODE_WRITE) &&
Steven Rostedt8650ae32009-07-22 23:29:30 -04004612 (file->f_flags & O_TRUNC)) {
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004613 *fgd->count = 0;
4614 memset(fgd->table, 0, fgd->size * sizeof(*fgd->table));
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004615 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004616 mutex_unlock(&graph_lock);
4617
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004618 if (file->f_mode & FMODE_READ) {
4619 ret = seq_open(file, fgd->seq_ops);
4620 if (!ret) {
4621 struct seq_file *m = file->private_data;
4622 m->private = fgd;
4623 }
4624 } else
4625 file->private_data = fgd;
Li Zefana4ec5e02009-09-18 14:06:28 +08004626
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004627 return ret;
4628}
4629
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004630static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004631ftrace_graph_open(struct inode *inode, struct file *file)
4632{
4633 struct ftrace_graph_data *fgd;
4634
4635 if (unlikely(ftrace_disabled))
4636 return -ENODEV;
4637
4638 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
4639 if (fgd == NULL)
4640 return -ENOMEM;
4641
4642 fgd->table = ftrace_graph_funcs;
4643 fgd->size = FTRACE_GRAPH_MAX_FUNCS;
4644 fgd->count = &ftrace_graph_count;
4645 fgd->seq_ops = &ftrace_graph_seq_ops;
4646
4647 return __ftrace_graph_open(inode, file, fgd);
4648}
4649
4650static int
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004651ftrace_graph_notrace_open(struct inode *inode, struct file *file)
4652{
4653 struct ftrace_graph_data *fgd;
4654
4655 if (unlikely(ftrace_disabled))
4656 return -ENODEV;
4657
4658 fgd = kmalloc(sizeof(*fgd), GFP_KERNEL);
4659 if (fgd == NULL)
4660 return -ENOMEM;
4661
4662 fgd->table = ftrace_graph_notrace_funcs;
4663 fgd->size = FTRACE_GRAPH_MAX_FUNCS;
4664 fgd->count = &ftrace_graph_notrace_count;
4665 fgd->seq_ops = &ftrace_graph_seq_ops;
4666
4667 return __ftrace_graph_open(inode, file, fgd);
4668}
4669
4670static int
Li Zefan87827112009-07-23 11:29:11 +08004671ftrace_graph_release(struct inode *inode, struct file *file)
4672{
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004673 if (file->f_mode & FMODE_READ) {
4674 struct seq_file *m = file->private_data;
4675
4676 kfree(m->private);
Li Zefan87827112009-07-23 11:29:11 +08004677 seq_release(inode, file);
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004678 } else {
4679 kfree(file->private_data);
4680 }
4681
Li Zefan87827112009-07-23 11:29:11 +08004682 return 0;
4683}
4684
4685static int
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004686ftrace_set_func(unsigned long *array, int *idx, int size, char *buffer)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004687{
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004688 struct ftrace_glob func_g;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004689 struct dyn_ftrace *rec;
4690 struct ftrace_page *pg;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004691 int fail = 1;
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004692 int not;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004693 bool exists;
4694 int i;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004695
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004696 /* decode regex */
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004697 func_g.type = filter_parse_regex(buffer, strlen(buffer),
4698 &func_g.search, &not);
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004699 if (!not && *idx >= size)
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004700 return -EBUSY;
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004701
Dmitry Safonov3ba00922015-09-29 19:46:14 +03004702 func_g.len = strlen(func_g.search);
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004703
Steven Rostedt52baf112009-02-14 01:15:39 -05004704 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04004705
4706 if (unlikely(ftrace_disabled)) {
4707 mutex_unlock(&ftrace_lock);
4708 return -ENODEV;
4709 }
4710
Steven Rostedt265c8312009-02-13 12:43:56 -05004711 do_for_each_ftrace_rec(pg, rec) {
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004712
Dmitry Safonov0b507e12015-09-29 19:46:15 +03004713 if (ftrace_match_record(rec, &func_g, NULL, 0)) {
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004714 /* if it is in the array */
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004715 exists = false;
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004716 for (i = 0; i < *idx; i++) {
Frederic Weisbeckerf9349a82009-02-19 21:13:12 +01004717 if (array[i] == rec->ip) {
4718 exists = true;
Steven Rostedt265c8312009-02-13 12:43:56 -05004719 break;
4720 }
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004721 }
4722
4723 if (!not) {
4724 fail = 0;
4725 if (!exists) {
4726 array[(*idx)++] = rec->ip;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004727 if (*idx >= size)
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004728 goto out;
4729 }
4730 } else {
4731 if (exists) {
4732 array[i] = array[--(*idx)];
4733 array[*idx] = 0;
4734 fail = 0;
4735 }
4736 }
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004737 }
Steven Rostedt265c8312009-02-13 12:43:56 -05004738 } while_for_each_ftrace_rec();
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004739out:
Steven Rostedt52baf112009-02-14 01:15:39 -05004740 mutex_unlock(&ftrace_lock);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004741
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004742 if (fail)
4743 return -EINVAL;
4744
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004745 return 0;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004746}
4747
4748static ssize_t
4749ftrace_graph_write(struct file *file, const char __user *ubuf,
4750 size_t cnt, loff_t *ppos)
4751{
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004752 struct trace_parser parser;
Namhyung Kim6a101082013-10-14 17:24:25 +09004753 ssize_t read, ret = 0;
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004754 struct ftrace_graph_data *fgd = file->private_data;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004755
Li Zefanc7c6b1f2010-02-10 15:43:04 +08004756 if (!cnt)
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004757 return 0;
4758
Namhyung Kim6a101082013-10-14 17:24:25 +09004759 if (trace_parser_get_init(&parser, FTRACE_BUFF_MAX))
4760 return -ENOMEM;
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004761
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004762 read = trace_get_user(&parser, ubuf, cnt, ppos);
4763
Li Zefan4ba79782009-09-22 13:52:20 +08004764 if (read >= 0 && trace_parser_loaded((&parser))) {
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004765 parser.buffer[parser.idx] = 0;
4766
Namhyung Kim6a101082013-10-14 17:24:25 +09004767 mutex_lock(&graph_lock);
4768
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004769 /* we allow only one expression at a time */
Namhyung Kimfaf982a2013-10-14 17:24:24 +09004770 ret = ftrace_set_func(fgd->table, fgd->count, fgd->size,
4771 parser.buffer);
Namhyung Kim6a101082013-10-14 17:24:25 +09004772
4773 mutex_unlock(&graph_lock);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004774 }
4775
Namhyung Kim6a101082013-10-14 17:24:25 +09004776 if (!ret)
4777 ret = read;
Li Zefan1eb90f12009-09-22 13:52:57 +08004778
jolsa@redhat.com689fd8b2009-09-11 17:29:29 +02004779 trace_parser_put(&parser);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004780
4781 return ret;
4782}
4783
4784static const struct file_operations ftrace_graph_fops = {
Li Zefan87827112009-07-23 11:29:11 +08004785 .open = ftrace_graph_open,
4786 .read = seq_read,
4787 .write = ftrace_graph_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004788 .llseek = tracing_lseek,
Li Zefan87827112009-07-23 11:29:11 +08004789 .release = ftrace_graph_release,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004790};
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004791
4792static const struct file_operations ftrace_graph_notrace_fops = {
4793 .open = ftrace_graph_notrace_open,
4794 .read = seq_read,
4795 .write = ftrace_graph_write,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05004796 .llseek = tracing_lseek,
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004797 .release = ftrace_graph_release,
4798};
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004799#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4800
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -05004801void ftrace_create_filter_files(struct ftrace_ops *ops,
4802 struct dentry *parent)
4803{
4804
4805 trace_create_file("set_ftrace_filter", 0644, parent,
4806 ops, &ftrace_filter_fops);
4807
4808 trace_create_file("set_ftrace_notrace", 0644, parent,
4809 ops, &ftrace_notrace_fops);
4810}
4811
4812/*
4813 * The name "destroy_filter_files" is really a misnomer. Although
4814 * in the future, it may actualy delete the files, but this is
4815 * really intended to make sure the ops passed in are disabled
4816 * and that when this function returns, the caller is free to
4817 * free the ops.
4818 *
4819 * The "destroy" name is only to match the "create" name that this
4820 * should be paired with.
4821 */
4822void ftrace_destroy_filter_files(struct ftrace_ops *ops)
4823{
4824 mutex_lock(&ftrace_lock);
4825 if (ops->flags & FTRACE_OPS_FL_ENABLED)
4826 ftrace_shutdown(ops, 0);
4827 ops->flags |= FTRACE_OPS_FL_DELETED;
4828 mutex_unlock(&ftrace_lock);
4829}
4830
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05004831static __init int ftrace_init_dyn_tracefs(struct dentry *d_tracer)
Steven Rostedt5072c592008-05-12 21:20:43 +02004832{
Steven Rostedt5072c592008-05-12 21:20:43 +02004833
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004834 trace_create_file("available_filter_functions", 0444,
4835 d_tracer, NULL, &ftrace_avail_fops);
Steven Rostedt5072c592008-05-12 21:20:43 +02004836
Steven Rostedt647bcd02011-05-03 14:39:21 -04004837 trace_create_file("enabled_functions", 0444,
4838 d_tracer, NULL, &ftrace_enabled_fops);
4839
Steven Rostedt (Red Hat)591dffd2014-01-10 16:17:45 -05004840 ftrace_create_filter_files(&global_ops, d_tracer);
Steven Rostedtad90c0e2008-05-27 20:48:37 -04004841
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004842#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbecker5452af62009-03-27 00:25:38 +01004843 trace_create_file("set_graph_function", 0444, d_tracer,
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004844 NULL,
4845 &ftrace_graph_fops);
Namhyung Kim29ad23b2013-10-14 17:24:26 +09004846 trace_create_file("set_graph_notrace", 0444, d_tracer,
4847 NULL,
4848 &ftrace_graph_notrace_fops);
Steven Rostedtea4e2bc2008-12-03 15:36:57 -05004849#endif /* CONFIG_FUNCTION_GRAPH_TRACER */
4850
Steven Rostedt5072c592008-05-12 21:20:43 +02004851 return 0;
4852}
4853
Steven Rostedt9fd49322012-04-24 22:32:06 -04004854static int ftrace_cmp_ips(const void *a, const void *b)
Steven Rostedt68950612011-12-16 17:06:45 -05004855{
Steven Rostedt9fd49322012-04-24 22:32:06 -04004856 const unsigned long *ipa = a;
4857 const unsigned long *ipb = b;
Steven Rostedt68950612011-12-16 17:06:45 -05004858
Steven Rostedt9fd49322012-04-24 22:32:06 -04004859 if (*ipa > *ipb)
4860 return 1;
4861 if (*ipa < *ipb)
4862 return -1;
4863 return 0;
4864}
4865
Jiri Olsa5cb084b2009-10-13 16:33:53 -04004866static int ftrace_process_locs(struct module *mod,
Steven Rostedt31e88902008-11-14 16:21:19 -08004867 unsigned long *start,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004868 unsigned long *end)
4869{
Steven Rostedt706c81f2012-04-24 23:45:26 -04004870 struct ftrace_page *start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05004871 struct ftrace_page *pg;
Steven Rostedt706c81f2012-04-24 23:45:26 -04004872 struct dyn_ftrace *rec;
Steven Rostedta7900872011-12-16 16:23:44 -05004873 unsigned long count;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004874 unsigned long *p;
4875 unsigned long addr;
Steven Rostedt4376cac2011-06-24 23:28:13 -04004876 unsigned long flags = 0; /* Shut up gcc */
Steven Rostedta7900872011-12-16 16:23:44 -05004877 int ret = -ENOMEM;
4878
4879 count = end - start;
4880
4881 if (!count)
4882 return 0;
4883
Steven Rostedt9fd49322012-04-24 22:32:06 -04004884 sort(start, count, sizeof(*start),
Rasmus Villemoes6db02902015-09-09 23:27:02 +02004885 ftrace_cmp_ips, NULL);
Steven Rostedt9fd49322012-04-24 22:32:06 -04004886
Steven Rostedt706c81f2012-04-24 23:45:26 -04004887 start_pg = ftrace_allocate_pages(count);
4888 if (!start_pg)
Steven Rostedta7900872011-12-16 16:23:44 -05004889 return -ENOMEM;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004890
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004891 mutex_lock(&ftrace_lock);
Steven Rostedta7900872011-12-16 16:23:44 -05004892
Steven Rostedt320823092011-12-16 14:42:37 -05004893 /*
4894 * Core and each module needs their own pages, as
4895 * modules will free them when they are removed.
4896 * Force a new page to be allocated for modules.
4897 */
Steven Rostedta7900872011-12-16 16:23:44 -05004898 if (!mod) {
4899 WARN_ON(ftrace_pages || ftrace_pages_start);
4900 /* First initialization */
Steven Rostedt706c81f2012-04-24 23:45:26 -04004901 ftrace_pages = ftrace_pages_start = start_pg;
Steven Rostedta7900872011-12-16 16:23:44 -05004902 } else {
Steven Rostedt320823092011-12-16 14:42:37 -05004903 if (!ftrace_pages)
Steven Rostedta7900872011-12-16 16:23:44 -05004904 goto out;
Steven Rostedt320823092011-12-16 14:42:37 -05004905
Steven Rostedta7900872011-12-16 16:23:44 -05004906 if (WARN_ON(ftrace_pages->next)) {
4907 /* Hmm, we have free pages? */
4908 while (ftrace_pages->next)
4909 ftrace_pages = ftrace_pages->next;
Steven Rostedt320823092011-12-16 14:42:37 -05004910 }
Steven Rostedta7900872011-12-16 16:23:44 -05004911
Steven Rostedt706c81f2012-04-24 23:45:26 -04004912 ftrace_pages->next = start_pg;
Steven Rostedt320823092011-12-16 14:42:37 -05004913 }
4914
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004915 p = start;
Steven Rostedt706c81f2012-04-24 23:45:26 -04004916 pg = start_pg;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004917 while (p < end) {
4918 addr = ftrace_call_adjust(*p++);
Steven Rostedt20e52272008-11-14 16:21:19 -08004919 /*
4920 * Some architecture linkers will pad between
4921 * the different mcount_loc sections of different
4922 * object files to satisfy alignments.
4923 * Skip any NULL pointers.
4924 */
4925 if (!addr)
4926 continue;
Steven Rostedt706c81f2012-04-24 23:45:26 -04004927
4928 if (pg->index == pg->size) {
4929 /* We should have allocated enough */
4930 if (WARN_ON(!pg->next))
4931 break;
4932 pg = pg->next;
4933 }
4934
4935 rec = &pg->records[pg->index++];
4936 rec->ip = addr;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004937 }
4938
Steven Rostedt706c81f2012-04-24 23:45:26 -04004939 /* We should have used all pages */
4940 WARN_ON(pg->next);
4941
4942 /* Assign the last page to ftrace_pages */
4943 ftrace_pages = pg;
4944
Steven Rostedta4f18ed2011-06-07 09:26:46 -04004945 /*
Steven Rostedt4376cac2011-06-24 23:28:13 -04004946 * We only need to disable interrupts on start up
4947 * because we are modifying code that an interrupt
4948 * may execute, and the modification is not atomic.
4949 * But for modules, nothing runs the code we modify
4950 * until we are finished with it, and there's no
4951 * reason to cause large interrupt latencies while we do it.
Steven Rostedta4f18ed2011-06-07 09:26:46 -04004952 */
Steven Rostedt4376cac2011-06-24 23:28:13 -04004953 if (!mod)
4954 local_irq_save(flags);
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01004955 ftrace_update_code(mod, start_pg);
Steven Rostedt4376cac2011-06-24 23:28:13 -04004956 if (!mod)
4957 local_irq_restore(flags);
Steven Rostedta7900872011-12-16 16:23:44 -05004958 ret = 0;
4959 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05004960 mutex_unlock(&ftrace_lock);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004961
Steven Rostedta7900872011-12-16 16:23:44 -05004962 return ret;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04004963}
4964
Steven Rostedt93eb6772009-04-15 13:24:06 -04004965#ifdef CONFIG_MODULES
Steven Rostedt320823092011-12-16 14:42:37 -05004966
4967#define next_to_ftrace_page(p) container_of(p, struct ftrace_page, next)
4968
jolsa@redhat.come7247a12009-10-07 19:00:35 +02004969void ftrace_release_mod(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04004970{
4971 struct dyn_ftrace *rec;
Steven Rostedt320823092011-12-16 14:42:37 -05004972 struct ftrace_page **last_pg;
Steven Rostedt93eb6772009-04-15 13:24:06 -04004973 struct ftrace_page *pg;
Steven Rostedta7900872011-12-16 16:23:44 -05004974 int order;
Steven Rostedt93eb6772009-04-15 13:24:06 -04004975
Steven Rostedt93eb6772009-04-15 13:24:06 -04004976 mutex_lock(&ftrace_lock);
Steven Rostedt45a4a232011-04-21 23:16:46 -04004977
4978 if (ftrace_disabled)
4979 goto out_unlock;
4980
Steven Rostedt320823092011-12-16 14:42:37 -05004981 /*
4982 * Each module has its own ftrace_pages, remove
4983 * them from the list.
4984 */
4985 last_pg = &ftrace_pages_start;
4986 for (pg = ftrace_pages_start; pg; pg = *last_pg) {
4987 rec = &pg->records[0];
jolsa@redhat.come7247a12009-10-07 19:00:35 +02004988 if (within_module_core(rec->ip, mod)) {
Steven Rostedt93eb6772009-04-15 13:24:06 -04004989 /*
Steven Rostedt320823092011-12-16 14:42:37 -05004990 * As core pages are first, the first
4991 * page should never be a module page.
Steven Rostedt93eb6772009-04-15 13:24:06 -04004992 */
Steven Rostedt320823092011-12-16 14:42:37 -05004993 if (WARN_ON(pg == ftrace_pages_start))
4994 goto out_unlock;
4995
4996 /* Check if we are deleting the last page */
4997 if (pg == ftrace_pages)
4998 ftrace_pages = next_to_ftrace_page(last_pg);
4999
5000 *last_pg = pg->next;
Steven Rostedta7900872011-12-16 16:23:44 -05005001 order = get_count_order(pg->size / ENTRIES_PER_PAGE);
5002 free_pages((unsigned long)pg->records, order);
5003 kfree(pg);
Steven Rostedt320823092011-12-16 14:42:37 -05005004 } else
5005 last_pg = &pg->next;
5006 }
Steven Rostedt45a4a232011-04-21 23:16:46 -04005007 out_unlock:
Steven Rostedt93eb6772009-04-15 13:24:06 -04005008 mutex_unlock(&ftrace_lock);
5009}
5010
5011static void ftrace_init_module(struct module *mod,
5012 unsigned long *start, unsigned long *end)
Steven Rostedt90d595f2008-08-14 15:45:09 -04005013{
Steven Rostedt00fd61a2008-08-15 21:40:04 -04005014 if (ftrace_disabled || start == end)
Steven Rostedtfed19392008-08-14 22:47:19 -04005015 return;
Jiri Olsa5cb084b2009-10-13 16:33:53 -04005016 ftrace_process_locs(mod, start, end);
Steven Rostedt90d595f2008-08-14 15:45:09 -04005017}
5018
Steven Rostedt (Red Hat)a949ae52014-04-24 10:40:12 -04005019void ftrace_module_init(struct module *mod)
Steven Rostedt93eb6772009-04-15 13:24:06 -04005020{
Steven Rostedt (Red Hat)a949ae52014-04-24 10:40:12 -04005021 ftrace_init_module(mod, mod->ftrace_callsites,
5022 mod->ftrace_callsites +
5023 mod->num_ftrace_callsites);
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05005024}
5025
5026static int ftrace_module_notify_exit(struct notifier_block *self,
5027 unsigned long val, void *data)
5028{
5029 struct module *mod = data;
5030
5031 if (val == MODULE_STATE_GOING)
jolsa@redhat.come7247a12009-10-07 19:00:35 +02005032 ftrace_release_mod(mod);
Steven Rostedt93eb6772009-04-15 13:24:06 -04005033
5034 return 0;
5035}
5036#else
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05005037static int ftrace_module_notify_exit(struct notifier_block *self,
5038 unsigned long val, void *data)
Steven Rostedt93eb6772009-04-15 13:24:06 -04005039{
5040 return 0;
5041}
5042#endif /* CONFIG_MODULES */
5043
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05005044struct notifier_block ftrace_module_exit_nb = {
5045 .notifier_call = ftrace_module_notify_exit,
5046 .priority = INT_MIN, /* Run after anything that can remove kprobes */
5047};
5048
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005049void __init ftrace_init(void)
5050{
Jiri Slaby1dc43cf2014-02-24 19:59:56 +01005051 extern unsigned long __start_mcount_loc[];
5052 extern unsigned long __stop_mcount_loc[];
Jiri Slaby3a36cb12014-02-24 19:59:59 +01005053 unsigned long count, flags;
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005054 int ret;
5055
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005056 local_irq_save(flags);
Jiri Slaby3a36cb12014-02-24 19:59:59 +01005057 ret = ftrace_dyn_arch_init();
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005058 local_irq_restore(flags);
Jiri Slabyaf64a7c2014-02-24 19:59:58 +01005059 if (ret)
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005060 goto failed;
5061
5062 count = __stop_mcount_loc - __start_mcount_loc;
Jiri Slabyc867ccd2014-02-24 19:59:57 +01005063 if (!count) {
5064 pr_info("ftrace: No functions to be traced?\n");
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005065 goto failed;
Jiri Slabyc867ccd2014-02-24 19:59:57 +01005066 }
5067
5068 pr_info("ftrace: allocating %ld entries in %ld pages\n",
5069 count, count / ENTRIES_PER_PAGE + 1);
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005070
5071 last_ftrace_enabled = ftrace_enabled = 1;
5072
Jiri Olsa5cb084b2009-10-13 16:33:53 -04005073 ret = ftrace_process_locs(NULL,
Steven Rostedt31e88902008-11-14 16:21:19 -08005074 __start_mcount_loc,
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005075 __stop_mcount_loc);
5076
Steven Rostedt (Red Hat)8c189ea2013-02-13 15:18:38 -05005077 ret = register_module_notifier(&ftrace_module_exit_nb);
5078 if (ret)
5079 pr_warning("Failed to register trace ftrace module exit notifier\n");
Steven Rostedt93eb6772009-04-15 13:24:06 -04005080
Steven Rostedt2af15d62009-05-28 13:37:24 -04005081 set_ftrace_early_filters();
5082
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005083 return;
5084 failed:
5085 ftrace_disabled = 1;
5086}
Steven Rostedt68bf21a2008-08-14 15:45:08 -04005087
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005088/* Do nothing if arch does not support this */
5089void __weak arch_ftrace_update_trampoline(struct ftrace_ops *ops)
5090{
5091}
5092
5093static void ftrace_update_trampoline(struct ftrace_ops *ops)
5094{
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04005095
5096/*
5097 * Currently there's no safe way to free a trampoline when the kernel
5098 * is configured with PREEMPT. That is because a task could be preempted
5099 * when it jumped to the trampoline, it may be preempted for a long time
5100 * depending on the system load, and currently there's no way to know
5101 * when it will be off the trampoline. If the trampoline is freed
5102 * too early, when the task runs again, it will be executing on freed
5103 * memory and crash.
5104 */
5105#ifdef CONFIG_PREEMPT
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005106 /* Currently, only non dynamic ops can have a trampoline */
5107 if (ops->flags & FTRACE_OPS_FL_DYNAMIC)
5108 return;
Steven Rostedt (Red Hat)12cce592014-07-03 15:48:16 -04005109#endif
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005110
5111 arch_ftrace_update_trampoline(ops);
5112}
5113
Steven Rostedt3d083392008-05-12 21:20:42 +02005114#else
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005115
Steven Rostedt2b499382011-05-03 22:49:52 -04005116static struct ftrace_ops global_ops = {
Steven Rostedtbd69c302011-05-03 21:55:54 -04005117 .func = ftrace_stub,
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04005118 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
5119 FTRACE_OPS_FL_INITIALIZED |
5120 FTRACE_OPS_FL_PID,
Steven Rostedtbd69c302011-05-03 21:55:54 -04005121};
5122
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005123static int __init ftrace_nodyn_init(void)
5124{
5125 ftrace_enabled = 1;
5126 return 0;
5127}
Steven Rostedt6f415672012-10-05 12:13:07 -04005128core_initcall(ftrace_nodyn_init);
Frederic Weisbecker0b6e4d52008-10-28 20:17:38 +01005129
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05005130static inline int ftrace_init_dyn_tracefs(struct dentry *d_tracer) { return 0; }
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005131static inline void ftrace_startup_enable(int command) { }
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04005132static inline void ftrace_startup_all(int command) { }
Steven Rostedt5a45cfe2008-11-26 00:16:24 -05005133/* Keep as macros so we do not need to define the commands */
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005134# define ftrace_startup(ops, command) \
5135 ({ \
5136 int ___ret = __register_ftrace_function(ops); \
5137 if (!___ret) \
5138 (ops)->flags |= FTRACE_OPS_FL_ENABLED; \
5139 ___ret; \
Steven Rostedt3b6cfdb2011-05-23 15:33:49 -04005140 })
Steven Rostedt (Red Hat)1fcc1552014-02-19 15:12:18 -05005141# define ftrace_shutdown(ops, command) \
5142 ({ \
5143 int ___ret = __unregister_ftrace_function(ops); \
5144 if (!___ret) \
5145 (ops)->flags &= ~FTRACE_OPS_FL_ENABLED; \
5146 ___ret; \
5147 })
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005148
Ingo Molnarc7aafc52008-05-12 21:20:45 +02005149# define ftrace_startup_sysctl() do { } while (0)
5150# define ftrace_shutdown_sysctl() do { } while (0)
Steven Rostedtb8489142011-05-04 09:27:52 -04005151
5152static inline int
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04005153ftrace_ops_test(struct ftrace_ops *ops, unsigned long ip, void *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04005154{
5155 return 1;
5156}
5157
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005158static void ftrace_update_trampoline(struct ftrace_ops *ops)
5159{
5160}
5161
Steven Rostedt3d083392008-05-12 21:20:42 +02005162#endif /* CONFIG_DYNAMIC_FTRACE */
5163
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005164__init void ftrace_init_global_array_ops(struct trace_array *tr)
5165{
5166 tr->ops = &global_ops;
5167 tr->ops->private = tr;
5168}
5169
5170void ftrace_init_array_ops(struct trace_array *tr, ftrace_func_t func)
5171{
5172 /* If we filter on pids, update to use the pid function */
5173 if (tr->flags & TRACE_ARRAY_FL_GLOBAL) {
5174 if (WARN_ON(tr->ops->func != ftrace_stub))
5175 printk("ftrace ops had %pS for function\n",
5176 tr->ops->func);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005177 }
5178 tr->ops->func = func;
5179 tr->ops->private = tr;
5180}
5181
5182void ftrace_reset_array_ops(struct trace_array *tr)
5183{
5184 tr->ops->func = ftrace_stub;
5185}
5186
Steven Rostedtb8489142011-05-04 09:27:52 -04005187static void
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005188ftrace_ops_control_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04005189 struct ftrace_ops *op, struct pt_regs *regs)
Jiri Olsae2484912012-02-15 15:51:48 +01005190{
Jiri Olsae2484912012-02-15 15:51:48 +01005191 if (unlikely(trace_recursion_test(TRACE_CONTROL_BIT)))
5192 return;
5193
5194 /*
5195 * Some of the ops may be dynamically allocated,
5196 * they must be freed after a synchronize_sched().
5197 */
5198 preempt_disable_notrace();
5199 trace_recursion_set(TRACE_CONTROL_BIT);
Steven Rostedt (Red Hat)b5aa3a42013-11-04 18:34:44 -05005200
5201 /*
5202 * Control funcs (perf) uses RCU. Only trace if
5203 * RCU is currently active.
5204 */
5205 if (!rcu_is_watching())
5206 goto out;
5207
Steven Rostedt0a016402012-11-02 17:03:03 -04005208 do_for_each_ftrace_op(op, ftrace_control_list) {
Steven Rostedt (Red Hat)395b97a2013-03-27 09:31:28 -04005209 if (!(op->flags & FTRACE_OPS_FL_STUB) &&
5210 !ftrace_function_local_disabled(op) &&
Steven Rostedt (Red Hat)195a8af2013-07-23 22:06:15 -04005211 ftrace_ops_test(op, ip, regs))
Steven Rostedta1e2e312011-08-09 12:50:46 -04005212 op->func(ip, parent_ip, op, regs);
Steven Rostedt0a016402012-11-02 17:03:03 -04005213 } while_for_each_ftrace_op(op);
Steven Rostedt (Red Hat)b5aa3a42013-11-04 18:34:44 -05005214 out:
Jiri Olsae2484912012-02-15 15:51:48 +01005215 trace_recursion_clear(TRACE_CONTROL_BIT);
5216 preempt_enable_notrace();
5217}
5218
5219static struct ftrace_ops control_ops = {
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09005220 .func = ftrace_ops_control_func,
5221 .flags = FTRACE_OPS_FL_RECURSION_SAFE | FTRACE_OPS_FL_INITIALIZED,
Steven Rostedt (Red Hat)33b7f992014-08-15 17:23:02 -04005222 INIT_OPS_HASH(control_ops)
Jiri Olsae2484912012-02-15 15:51:48 +01005223};
5224
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005225static inline void
5226__ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04005227 struct ftrace_ops *ignored, struct pt_regs *regs)
Steven Rostedtb8489142011-05-04 09:27:52 -04005228{
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005229 struct ftrace_ops *op;
Steven Rostedtedc15ca2012-11-02 17:47:21 -04005230 int bit;
Steven Rostedtb8489142011-05-04 09:27:52 -04005231
Steven Rostedtedc15ca2012-11-02 17:47:21 -04005232 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
5233 if (bit < 0)
5234 return;
Steven Rostedtc29f1222012-11-02 17:17:59 -04005235
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005236 /*
5237 * Some of the ops may be dynamically allocated,
5238 * they must be freed after a synchronize_sched().
5239 */
5240 preempt_disable_notrace();
Steven Rostedt0a016402012-11-02 17:03:03 -04005241 do_for_each_ftrace_op(op, ftrace_ops_list) {
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005242 if (ftrace_ops_test(op, ip, regs)) {
Steven Rostedt (Red Hat)1d48d592014-06-25 11:54:03 -04005243 if (FTRACE_WARN_ON(!op->func)) {
5244 pr_warn("op=%p %pS\n", op, op);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005245 goto out;
5246 }
Steven Rostedta1e2e312011-08-09 12:50:46 -04005247 op->func(ip, parent_ip, op, regs);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005248 }
Steven Rostedt0a016402012-11-02 17:03:03 -04005249 } while_for_each_ftrace_op(op);
Steven Rostedt (Red Hat)4104d322014-01-10 17:01:58 -05005250out:
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005251 preempt_enable_notrace();
Steven Rostedtedc15ca2012-11-02 17:47:21 -04005252 trace_clear_recursion(bit);
Steven Rostedtb8489142011-05-04 09:27:52 -04005253}
5254
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005255/*
5256 * Some archs only support passing ip and parent_ip. Even though
5257 * the list function ignores the op parameter, we do not want any
5258 * C side effects, where a function is called without the caller
5259 * sending a third parameter.
Steven Rostedta1e2e312011-08-09 12:50:46 -04005260 * Archs are to support both the regs and ftrace_ops at the same time.
5261 * If they support ftrace_ops, it is assumed they support regs.
5262 * If call backs want to use regs, they must either check for regs
Masami Hiramatsu06aeaae2012-09-28 17:15:17 +09005263 * being NULL, or CONFIG_DYNAMIC_FTRACE_WITH_REGS.
5264 * Note, CONFIG_DYNAMIC_FTRACE_WITH_REGS expects a full regs to be saved.
Steven Rostedta1e2e312011-08-09 12:50:46 -04005265 * An architecture can pass partial regs with ftrace_ops and still
Li Binb8ec3302015-11-30 18:23:36 +08005266 * set the ARCH_SUPPORTS_FTRACE_OPS.
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005267 */
5268#if ARCH_SUPPORTS_FTRACE_OPS
5269static void ftrace_ops_list_func(unsigned long ip, unsigned long parent_ip,
Steven Rostedta1e2e312011-08-09 12:50:46 -04005270 struct ftrace_ops *op, struct pt_regs *regs)
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005271{
Steven Rostedta1e2e312011-08-09 12:50:46 -04005272 __ftrace_ops_list_func(ip, parent_ip, NULL, regs);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005273}
5274#else
5275static void ftrace_ops_no_ops(unsigned long ip, unsigned long parent_ip)
5276{
Steven Rostedta1e2e312011-08-09 12:50:46 -04005277 __ftrace_ops_list_func(ip, parent_ip, NULL, NULL);
Steven Rostedt2f5f6ad2011-08-08 16:57:47 -04005278}
5279#endif
5280
Steven Rostedt (Red Hat)f1ff6342014-07-22 20:16:57 -04005281/*
5282 * If there's only one function registered but it does not support
5283 * recursion, this function will be called by the mcount trampoline.
5284 * This function will handle recursion protection.
5285 */
5286static void ftrace_ops_recurs_func(unsigned long ip, unsigned long parent_ip,
5287 struct ftrace_ops *op, struct pt_regs *regs)
5288{
5289 int bit;
5290
5291 bit = trace_test_and_set_recursion(TRACE_LIST_START, TRACE_LIST_MAX);
5292 if (bit < 0)
5293 return;
5294
5295 op->func(ip, parent_ip, op, regs);
5296
5297 trace_clear_recursion(bit);
5298}
5299
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04005300/**
5301 * ftrace_ops_get_func - get the function a trampoline should call
5302 * @ops: the ops to get the function for
5303 *
5304 * Normally the mcount trampoline will call the ops->func, but there
5305 * are times that it should not. For example, if the ops does not
5306 * have its own recursion protection, then it should call the
5307 * ftrace_ops_recurs_func() instead.
5308 *
5309 * Returns the function that the trampoline should call for @ops.
5310 */
5311ftrace_func_t ftrace_ops_get_func(struct ftrace_ops *ops)
5312{
5313 /*
Steven Rostedt (Red Hat)87354052014-07-22 20:41:42 -04005314 * If the func handles its own recursion, call it directly.
5315 * Otherwise call the recursion protected function that
5316 * will call the ftrace ops function.
5317 */
5318 if (!(ops->flags & FTRACE_OPS_FL_RECURSION_SAFE))
5319 return ftrace_ops_recurs_func;
5320
5321 return ops->func;
5322}
5323
Steven Rostedte32d8952008-12-04 00:26:41 -05005324static void clear_ftrace_swapper(void)
5325{
5326 struct task_struct *p;
5327 int cpu;
5328
5329 get_online_cpus();
5330 for_each_online_cpu(cpu) {
5331 p = idle_task(cpu);
5332 clear_tsk_trace_trace(p);
5333 }
5334 put_online_cpus();
5335}
5336
5337static void set_ftrace_swapper(void)
5338{
5339 struct task_struct *p;
5340 int cpu;
5341
5342 get_online_cpus();
5343 for_each_online_cpu(cpu) {
5344 p = idle_task(cpu);
5345 set_tsk_trace_trace(p);
5346 }
5347 put_online_cpus();
5348}
5349
5350static void clear_ftrace_pid(struct pid *pid)
Steven Rostedt978f3a42008-12-04 00:26:40 -05005351{
5352 struct task_struct *p;
5353
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01005354 rcu_read_lock();
Steven Rostedte32d8952008-12-04 00:26:41 -05005355 do_each_pid_task(pid, PIDTYPE_PID, p) {
Steven Rostedt978f3a42008-12-04 00:26:40 -05005356 clear_tsk_trace_trace(p);
Steven Rostedte32d8952008-12-04 00:26:41 -05005357 } while_each_pid_task(pid, PIDTYPE_PID, p);
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01005358 rcu_read_unlock();
5359
Steven Rostedte32d8952008-12-04 00:26:41 -05005360 put_pid(pid);
Steven Rostedt978f3a42008-12-04 00:26:40 -05005361}
5362
Steven Rostedte32d8952008-12-04 00:26:41 -05005363static void set_ftrace_pid(struct pid *pid)
Steven Rostedt978f3a42008-12-04 00:26:40 -05005364{
5365 struct task_struct *p;
5366
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01005367 rcu_read_lock();
Steven Rostedt978f3a42008-12-04 00:26:40 -05005368 do_each_pid_task(pid, PIDTYPE_PID, p) {
5369 set_tsk_trace_trace(p);
5370 } while_each_pid_task(pid, PIDTYPE_PID, p);
Oleg Nesterov229c4ef2009-02-03 20:39:04 +01005371 rcu_read_unlock();
Steven Rostedt978f3a42008-12-04 00:26:40 -05005372}
5373
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005374static void clear_ftrace_pid_task(struct pid *pid)
Steven Rostedte32d8952008-12-04 00:26:41 -05005375{
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005376 if (pid == ftrace_swapper_pid)
Steven Rostedte32d8952008-12-04 00:26:41 -05005377 clear_ftrace_swapper();
5378 else
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005379 clear_ftrace_pid(pid);
Steven Rostedte32d8952008-12-04 00:26:41 -05005380}
5381
5382static void set_ftrace_pid_task(struct pid *pid)
5383{
5384 if (pid == ftrace_swapper_pid)
5385 set_ftrace_swapper();
5386 else
5387 set_ftrace_pid(pid);
5388}
5389
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005390static int ftrace_pid_add(int p)
5391{
5392 struct pid *pid;
5393 struct ftrace_pid *fpid;
5394 int ret = -EINVAL;
5395
5396 mutex_lock(&ftrace_lock);
5397
5398 if (!p)
5399 pid = ftrace_swapper_pid;
5400 else
5401 pid = find_get_pid(p);
5402
5403 if (!pid)
5404 goto out;
5405
5406 ret = 0;
5407
5408 list_for_each_entry(fpid, &ftrace_pids, list)
5409 if (fpid->pid == pid)
5410 goto out_put;
5411
5412 ret = -ENOMEM;
5413
5414 fpid = kmalloc(sizeof(*fpid), GFP_KERNEL);
5415 if (!fpid)
5416 goto out_put;
5417
5418 list_add(&fpid->list, &ftrace_pids);
5419 fpid->pid = pid;
5420
5421 set_ftrace_pid_task(pid);
5422
5423 ftrace_update_pid_func();
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04005424
5425 ftrace_startup_all(0);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005426
5427 mutex_unlock(&ftrace_lock);
5428 return 0;
5429
5430out_put:
5431 if (pid != ftrace_swapper_pid)
5432 put_pid(pid);
5433
5434out:
5435 mutex_unlock(&ftrace_lock);
5436 return ret;
5437}
5438
5439static void ftrace_pid_reset(void)
5440{
5441 struct ftrace_pid *fpid, *safe;
5442
5443 mutex_lock(&ftrace_lock);
5444 list_for_each_entry_safe(fpid, safe, &ftrace_pids, list) {
5445 struct pid *pid = fpid->pid;
5446
5447 clear_ftrace_pid_task(pid);
5448
5449 list_del(&fpid->list);
5450 kfree(fpid);
5451 }
5452
5453 ftrace_update_pid_func();
Steven Rostedt (Red Hat)e1effa02014-08-05 17:19:38 -04005454 ftrace_startup_all(0);
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005455
5456 mutex_unlock(&ftrace_lock);
5457}
5458
5459static void *fpid_start(struct seq_file *m, loff_t *pos)
5460{
5461 mutex_lock(&ftrace_lock);
5462
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04005463 if (!ftrace_pids_enabled() && (!*pos))
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005464 return (void *) 1;
5465
5466 return seq_list_start(&ftrace_pids, *pos);
5467}
5468
5469static void *fpid_next(struct seq_file *m, void *v, loff_t *pos)
5470{
5471 if (v == (void *)1)
5472 return NULL;
5473
5474 return seq_list_next(v, &ftrace_pids, pos);
5475}
5476
5477static void fpid_stop(struct seq_file *m, void *p)
5478{
5479 mutex_unlock(&ftrace_lock);
5480}
5481
5482static int fpid_show(struct seq_file *m, void *v)
5483{
5484 const struct ftrace_pid *fpid = list_entry(v, struct ftrace_pid, list);
5485
5486 if (v == (void *)1) {
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01005487 seq_puts(m, "no pid\n");
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005488 return 0;
5489 }
5490
5491 if (fpid->pid == ftrace_swapper_pid)
Rasmus Villemoesfa6f0cc2014-11-08 21:42:10 +01005492 seq_puts(m, "swapper tasks\n");
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005493 else
5494 seq_printf(m, "%u\n", pid_vnr(fpid->pid));
5495
5496 return 0;
5497}
5498
5499static const struct seq_operations ftrace_pid_sops = {
5500 .start = fpid_start,
5501 .next = fpid_next,
5502 .stop = fpid_stop,
5503 .show = fpid_show,
5504};
5505
5506static int
5507ftrace_pid_open(struct inode *inode, struct file *file)
5508{
5509 int ret = 0;
5510
5511 if ((file->f_mode & FMODE_WRITE) &&
5512 (file->f_flags & O_TRUNC))
5513 ftrace_pid_reset();
5514
5515 if (file->f_mode & FMODE_READ)
5516 ret = seq_open(file, &ftrace_pid_sops);
5517
5518 return ret;
5519}
5520
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005521static ssize_t
5522ftrace_pid_write(struct file *filp, const char __user *ubuf,
5523 size_t cnt, loff_t *ppos)
5524{
Ingo Molnar457dc922009-11-23 11:03:28 +01005525 char buf[64], *tmp;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005526 long val;
5527 int ret;
5528
5529 if (cnt >= sizeof(buf))
5530 return -EINVAL;
5531
5532 if (copy_from_user(&buf, ubuf, cnt))
5533 return -EFAULT;
5534
5535 buf[cnt] = 0;
5536
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005537 /*
5538 * Allow "echo > set_ftrace_pid" or "echo -n '' > set_ftrace_pid"
5539 * to clean the filter quietly.
5540 */
Ingo Molnar457dc922009-11-23 11:03:28 +01005541 tmp = strstrip(buf);
5542 if (strlen(tmp) == 0)
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005543 return 1;
5544
Daniel Walterbcd83ea2012-09-26 22:08:38 +02005545 ret = kstrtol(tmp, 10, &val);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005546 if (ret < 0)
5547 return ret;
5548
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005549 ret = ftrace_pid_add(val);
Steven Rostedt978f3a42008-12-04 00:26:40 -05005550
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005551 return ret ? ret : cnt;
5552}
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005553
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005554static int
5555ftrace_pid_release(struct inode *inode, struct file *file)
5556{
5557 if (file->f_mode & FMODE_READ)
5558 seq_release(inode, file);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005559
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005560 return 0;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005561}
5562
Steven Rostedt5e2336a2009-03-05 21:44:55 -05005563static const struct file_operations ftrace_pid_fops = {
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005564 .open = ftrace_pid_open,
5565 .write = ftrace_pid_write,
5566 .read = seq_read,
Steven Rostedt (Red Hat)098c8792013-12-21 17:39:40 -05005567 .llseek = tracing_lseek,
jolsa@redhat.com756d17e2009-10-13 16:33:52 -04005568 .release = ftrace_pid_release,
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005569};
5570
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05005571static __init int ftrace_init_tracefs(void)
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005572{
5573 struct dentry *d_tracer;
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005574
5575 d_tracer = tracing_init_dentry();
Steven Rostedt (Red Hat)14a5ae42015-01-20 11:14:16 -05005576 if (IS_ERR(d_tracer))
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005577 return 0;
5578
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05005579 ftrace_init_dyn_tracefs(d_tracer);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005580
Frederic Weisbecker5452af62009-03-27 00:25:38 +01005581 trace_create_file("set_ftrace_pid", 0644, d_tracer,
5582 NULL, &ftrace_pid_fops);
Steven Rostedt493762f2009-03-23 17:12:36 -04005583
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05005584 ftrace_profile_tracefs(d_tracer);
Steven Rostedt493762f2009-03-23 17:12:36 -04005585
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005586 return 0;
5587}
Steven Rostedt (Red Hat)8434dc92015-01-20 12:13:40 -05005588fs_initcall(ftrace_init_tracefs);
Steven Rostedtdf4fc312008-11-26 00:16:23 -05005589
Steven Rostedt3d083392008-05-12 21:20:42 +02005590/**
Steven Rostedt81adbdc2008-10-23 09:33:02 -04005591 * ftrace_kill - kill ftrace
Steven Rostedta2bb6a32008-07-10 20:58:15 -04005592 *
5593 * This function should be used by panic code. It stops ftrace
5594 * but in a not so nice way. If you need to simply kill ftrace
5595 * from a non-atomic section, use ftrace_kill.
5596 */
Steven Rostedt81adbdc2008-10-23 09:33:02 -04005597void ftrace_kill(void)
Steven Rostedta2bb6a32008-07-10 20:58:15 -04005598{
5599 ftrace_disabled = 1;
5600 ftrace_enabled = 0;
Steven Rostedta2bb6a32008-07-10 20:58:15 -04005601 clear_ftrace_function();
5602}
5603
5604/**
Steven Rostedte0a413f2011-09-29 21:26:16 -04005605 * Test if ftrace is dead or not.
5606 */
5607int ftrace_is_dead(void)
5608{
5609 return ftrace_disabled;
5610}
5611
5612/**
Steven Rostedt3d083392008-05-12 21:20:42 +02005613 * register_ftrace_function - register a function for profiling
5614 * @ops - ops structure that holds the function for profiling.
5615 *
5616 * Register a function to be called by all functions in the
5617 * kernel.
5618 *
5619 * Note: @ops->func and all the functions it calls must be labeled
5620 * with "notrace", otherwise it will go into a
5621 * recursive loop.
5622 */
5623int register_ftrace_function(struct ftrace_ops *ops)
5624{
Steven Rostedt45a4a232011-04-21 23:16:46 -04005625 int ret = -1;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02005626
Masami Hiramatsuf04f24fb2013-05-09 14:44:17 +09005627 ftrace_ops_init(ops);
5628
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005629 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005630
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005631 ret = ftrace_startup(ops, 0);
Steven Rostedtb8489142011-05-04 09:27:52 -04005632
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005633 mutex_unlock(&ftrace_lock);
Borislav Petkov8d240dd2012-03-29 19:11:40 +02005634
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005635 return ret;
Steven Rostedt3d083392008-05-12 21:20:42 +02005636}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005637EXPORT_SYMBOL_GPL(register_ftrace_function);
Steven Rostedt3d083392008-05-12 21:20:42 +02005638
5639/**
Uwe Kleine-Koenig32632922009-01-12 23:35:50 +01005640 * unregister_ftrace_function - unregister a function for profiling.
Steven Rostedt3d083392008-05-12 21:20:42 +02005641 * @ops - ops structure that holds the function to unregister
5642 *
5643 * Unregister a function that was added to be called by ftrace profiling.
5644 */
5645int unregister_ftrace_function(struct ftrace_ops *ops)
5646{
5647 int ret;
5648
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005649 mutex_lock(&ftrace_lock);
Steven Rostedt (Red Hat)8a56d772013-11-25 20:59:46 -05005650 ret = ftrace_shutdown(ops, 0);
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005651 mutex_unlock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005652
5653 return ret;
5654}
Steven Rostedtcdbe61b2011-05-05 21:14:55 -04005655EXPORT_SYMBOL_GPL(unregister_ftrace_function);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005656
Ingo Molnare309b412008-05-12 21:20:51 +02005657int
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005658ftrace_enable_sysctl(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07005659 void __user *buffer, size_t *lenp,
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005660 loff_t *ppos)
5661{
Steven Rostedt45a4a232011-04-21 23:16:46 -04005662 int ret = -ENODEV;
Steven Rostedt4eebcc82008-05-12 21:20:48 +02005663
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005664 mutex_lock(&ftrace_lock);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005665
Steven Rostedt45a4a232011-04-21 23:16:46 -04005666 if (unlikely(ftrace_disabled))
5667 goto out;
5668
5669 ret = proc_dointvec(table, write, buffer, lenp, ppos);
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005670
Li Zefana32c7762009-06-26 16:55:51 +08005671 if (ret || !write || (last_ftrace_enabled == !!ftrace_enabled))
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005672 goto out;
5673
Li Zefana32c7762009-06-26 16:55:51 +08005674 last_ftrace_enabled = !!ftrace_enabled;
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005675
5676 if (ftrace_enabled) {
5677
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005678 /* we are starting ftrace again */
Jan Kiszka5000c412013-03-26 17:53:03 +01005679 if (ftrace_ops_list != &ftrace_list_end)
5680 update_ftrace_function();
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005681
Steven Rostedt (Red Hat)524a3862015-03-06 19:55:13 -05005682 ftrace_startup_sysctl();
5683
Steven Rostedtb0fc4942008-05-12 21:20:43 +02005684 } else {
5685 /* stopping ftrace calls (just send to ftrace_stub) */
5686 ftrace_trace_function = ftrace_stub;
5687
5688 ftrace_shutdown_sysctl();
5689 }
5690
5691 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005692 mutex_unlock(&ftrace_lock);
Steven Rostedt3d083392008-05-12 21:20:42 +02005693 return ret;
Arnaldo Carvalho de Melo16444a82008-05-12 21:20:42 +02005694}
Ingo Molnarf17845e2008-10-24 12:47:10 +02005695
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005696#ifdef CONFIG_FUNCTION_GRAPH_TRACER
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005697
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005698static struct ftrace_ops graph_ops = {
5699 .func = ftrace_stub,
5700 .flags = FTRACE_OPS_FL_RECURSION_SAFE |
5701 FTRACE_OPS_FL_INITIALIZED |
Steven Rostedt (Red Hat)e3eea142015-07-24 10:38:12 -04005702 FTRACE_OPS_FL_PID |
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005703 FTRACE_OPS_FL_STUB,
5704#ifdef FTRACE_GRAPH_TRAMP_ADDR
5705 .trampoline = FTRACE_GRAPH_TRAMP_ADDR,
Steven Rostedt (Red Hat)aec0be22014-11-18 21:14:11 -05005706 /* trampoline_size is only needed for dynamically allocated tramps */
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005707#endif
5708 ASSIGN_OPS_HASH(graph_ops, &global_ops.local_hash)
5709};
5710
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -04005711void ftrace_graph_sleep_time_control(bool enable)
5712{
5713 fgraph_sleep_time = enable;
5714}
5715
5716void ftrace_graph_graph_time_control(bool enable)
5717{
5718 fgraph_graph_time = enable;
5719}
5720
Steven Rostedte49dc192008-12-02 23:50:05 -05005721int ftrace_graph_entry_stub(struct ftrace_graph_ent *trace)
5722{
5723 return 0;
5724}
5725
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01005726/* The callbacks that hook a function */
5727trace_func_graph_ret_t ftrace_graph_return =
5728 (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05005729trace_func_graph_ent_t ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005730static trace_func_graph_ent_t __ftrace_graph_entry = ftrace_graph_entry_stub;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005731
5732/* Try to assign a return stack array on FTRACE_RETSTACK_ALLOC_SIZE tasks. */
5733static int alloc_retstack_tasklist(struct ftrace_ret_stack **ret_stack_list)
5734{
5735 int i;
5736 int ret = 0;
5737 unsigned long flags;
5738 int start = 0, end = FTRACE_RETSTACK_ALLOC_SIZE;
5739 struct task_struct *g, *t;
5740
5741 for (i = 0; i < FTRACE_RETSTACK_ALLOC_SIZE; i++) {
5742 ret_stack_list[i] = kmalloc(FTRACE_RETFUNC_DEPTH
5743 * sizeof(struct ftrace_ret_stack),
5744 GFP_KERNEL);
5745 if (!ret_stack_list[i]) {
5746 start = 0;
5747 end = i;
5748 ret = -ENOMEM;
5749 goto free;
5750 }
5751 }
5752
5753 read_lock_irqsave(&tasklist_lock, flags);
5754 do_each_thread(g, t) {
5755 if (start == end) {
5756 ret = -EAGAIN;
5757 goto unlock;
5758 }
5759
5760 if (t->ret_stack == NULL) {
Frederic Weisbecker380c4b12008-12-06 03:43:41 +01005761 atomic_set(&t->tracing_graph_pause, 0);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005762 atomic_set(&t->trace_overrun, 0);
Steven Rostedt26c01622009-06-02 14:01:19 -04005763 t->curr_ret_stack = -1;
5764 /* Make sure the tasks see the -1 first: */
5765 smp_wmb();
5766 t->ret_stack = ret_stack_list[start++];
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005767 }
5768 } while_each_thread(g, t);
5769
5770unlock:
5771 read_unlock_irqrestore(&tasklist_lock, flags);
5772free:
5773 for (i = start; i < end; i++)
5774 kfree(ret_stack_list[i]);
5775 return ret;
5776}
5777
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005778static void
Peter Zijlstrac73464b2015-09-28 18:06:56 +02005779ftrace_graph_probe_sched_switch(void *ignore, bool preempt,
Steven Rostedt38516ab2010-04-20 17:04:50 -04005780 struct task_struct *prev, struct task_struct *next)
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005781{
5782 unsigned long long timestamp;
5783 int index;
5784
Steven Rostedtbe6f1642009-03-24 11:06:24 -04005785 /*
5786 * Does the user want to count the time a function was asleep.
5787 * If so, do not update the time stamps.
5788 */
Steven Rostedt (Red Hat)55577202015-09-29 19:06:50 -04005789 if (fgraph_sleep_time)
Steven Rostedtbe6f1642009-03-24 11:06:24 -04005790 return;
5791
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005792 timestamp = trace_clock_local();
5793
5794 prev->ftrace_timestamp = timestamp;
5795
5796 /* only process tasks that we timestamped */
5797 if (!next->ftrace_timestamp)
5798 return;
5799
5800 /*
5801 * Update all the counters in next to make up for the
5802 * time next was sleeping.
5803 */
5804 timestamp -= next->ftrace_timestamp;
5805
5806 for (index = next->curr_ret_stack; index >= 0; index--)
5807 next->ret_stack[index].calltime += timestamp;
5808}
5809
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005810/* Allocate a return stack for each task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005811static int start_graph_tracing(void)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005812{
5813 struct ftrace_ret_stack **ret_stack_list;
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01005814 int ret, cpu;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005815
5816 ret_stack_list = kmalloc(FTRACE_RETSTACK_ALLOC_SIZE *
5817 sizeof(struct ftrace_ret_stack *),
5818 GFP_KERNEL);
5819
5820 if (!ret_stack_list)
5821 return -ENOMEM;
5822
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01005823 /* The cpu_boot init_task->ret_stack will never be freed */
Steven Rostedt179c4982009-06-02 12:03:19 -04005824 for_each_online_cpu(cpu) {
5825 if (!idle_task(cpu)->ret_stack)
Steven Rostedt868baf02011-02-10 21:26:13 -05005826 ftrace_graph_init_idle_task(idle_task(cpu), cpu);
Steven Rostedt179c4982009-06-02 12:03:19 -04005827 }
Frederic Weisbecker5b058bc2009-02-17 18:35:34 +01005828
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005829 do {
5830 ret = alloc_retstack_tasklist(ret_stack_list);
5831 } while (ret == -EAGAIN);
5832
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005833 if (!ret) {
Steven Rostedt38516ab2010-04-20 17:04:50 -04005834 ret = register_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Steven Rostedt8aef2d22009-03-24 01:10:15 -04005835 if (ret)
5836 pr_info("ftrace_graph: Couldn't activate tracepoint"
5837 " probe to kernel_sched_switch\n");
5838 }
5839
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005840 kfree(ret_stack_list);
5841 return ret;
5842}
5843
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08005844/*
5845 * Hibernation protection.
5846 * The state of the current task is too much unstable during
5847 * suspend/restore to disk. We want to protect against that.
5848 */
5849static int
5850ftrace_suspend_notifier_call(struct notifier_block *bl, unsigned long state,
5851 void *unused)
5852{
5853 switch (state) {
5854 case PM_HIBERNATION_PREPARE:
5855 pause_graph_tracing();
5856 break;
5857
5858 case PM_POST_HIBERNATION:
5859 unpause_graph_tracing();
5860 break;
5861 }
5862 return NOTIFY_DONE;
5863}
5864
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005865static int ftrace_graph_entry_test(struct ftrace_graph_ent *trace)
5866{
5867 if (!ftrace_ops_test(&global_ops, trace->func, NULL))
5868 return 0;
5869 return __ftrace_graph_entry(trace);
5870}
5871
5872/*
5873 * The function graph tracer should only trace the functions defined
5874 * by set_ftrace_filter and set_ftrace_notrace. If another function
5875 * tracer ops is registered, the graph tracer requires testing the
5876 * function against the global ops, and not just trace any function
5877 * that any ftrace_ops registered.
5878 */
5879static void update_function_graph_func(void)
5880{
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005881 struct ftrace_ops *op;
5882 bool do_test = false;
5883
5884 /*
5885 * The graph and global ops share the same set of functions
5886 * to test. If any other ops is on the list, then
5887 * the graph tracing needs to test if its the function
5888 * it should call.
5889 */
5890 do_for_each_ftrace_op(op, ftrace_ops_list) {
5891 if (op != &global_ops && op != &graph_ops &&
5892 op != &ftrace_list_end) {
5893 do_test = true;
5894 /* in double loop, break out with goto */
5895 goto out;
5896 }
5897 } while_for_each_ftrace_op(op);
5898 out:
5899 if (do_test)
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005900 ftrace_graph_entry = ftrace_graph_entry_test;
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005901 else
5902 ftrace_graph_entry = __ftrace_graph_entry;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005903}
5904
Mathias Krause8275f692014-03-30 15:31:50 +02005905static struct notifier_block ftrace_suspend_notifier = {
5906 .notifier_call = ftrace_suspend_notifier_call,
5907};
5908
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01005909int register_ftrace_graph(trace_func_graph_ret_t retfunc,
5910 trace_func_graph_ent_t entryfunc)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01005911{
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005912 int ret = 0;
5913
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005914 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005915
Steven Rostedt05ce5812009-03-24 00:18:31 -04005916 /* we currently allow only one tracer registered at a time */
Steven Rostedt597af812009-04-03 15:24:12 -04005917 if (ftrace_graph_active) {
Steven Rostedt05ce5812009-03-24 00:18:31 -04005918 ret = -EBUSY;
5919 goto out;
5920 }
5921
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08005922 register_pm_notifier(&ftrace_suspend_notifier);
5923
Steven Rostedt597af812009-04-03 15:24:12 -04005924 ftrace_graph_active++;
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005925 ret = start_graph_tracing();
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005926 if (ret) {
Steven Rostedt597af812009-04-03 15:24:12 -04005927 ftrace_graph_active--;
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005928 goto out;
5929 }
Steven Rostedte53a6312008-11-26 00:16:25 -05005930
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01005931 ftrace_graph_return = retfunc;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005932
5933 /*
5934 * Update the indirect function to the entryfunc, and the
5935 * function that gets called to the entry_test first. Then
5936 * call the update fgraph entry function to determine if
5937 * the entryfunc should be called directly or not.
5938 */
5939 __ftrace_graph_entry = entryfunc;
5940 ftrace_graph_entry = ftrace_graph_entry_test;
5941 update_function_graph_func();
Steven Rostedte53a6312008-11-26 00:16:25 -05005942
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005943 ret = ftrace_startup(&graph_ops, FTRACE_START_FUNC_RET);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005944out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005945 mutex_unlock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005946 return ret;
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01005947}
5948
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01005949void unregister_ftrace_graph(void)
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01005950{
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005951 mutex_lock(&ftrace_lock);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005952
Steven Rostedt597af812009-04-03 15:24:12 -04005953 if (unlikely(!ftrace_graph_active))
Steven Rostedt2aad1b72009-03-30 11:11:28 -04005954 goto out;
5955
Steven Rostedt597af812009-04-03 15:24:12 -04005956 ftrace_graph_active--;
Frederic Weisbecker287b6e62008-11-26 00:57:25 +01005957 ftrace_graph_return = (trace_func_graph_ret_t)ftrace_stub;
Steven Rostedte49dc192008-12-02 23:50:05 -05005958 ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)23a8e842014-01-13 10:30:23 -05005959 __ftrace_graph_entry = ftrace_graph_entry_stub;
Steven Rostedt (Red Hat)5f151b22014-08-15 17:18:46 -04005960 ftrace_shutdown(&graph_ops, FTRACE_STOP_FUNC_RET);
Frederic Weisbecker4a2b8dd2009-01-14 13:33:27 -08005961 unregister_pm_notifier(&ftrace_suspend_notifier);
Steven Rostedt38516ab2010-04-20 17:04:50 -04005962 unregister_trace_sched_switch(ftrace_graph_probe_sched_switch, NULL);
Frederic Weisbeckere7d37372008-11-16 06:02:06 +01005963
Steven Rostedt (Red Hat)f3bea492014-07-02 23:23:31 -04005964#ifdef CONFIG_DYNAMIC_FTRACE
5965 /*
5966 * Function graph does not allocate the trampoline, but
5967 * other global_ops do. We need to reset the ALLOC_TRAMP flag
5968 * if one was used.
5969 */
5970 global_ops.trampoline = save_global_trampoline;
5971 if (save_global_flags & FTRACE_OPS_FL_ALLOC_TRAMP)
5972 global_ops.flags |= FTRACE_OPS_FL_ALLOC_TRAMP;
5973#endif
5974
Steven Rostedt2aad1b72009-03-30 11:11:28 -04005975 out:
Steven Rostedte6ea44e2009-02-14 01:42:44 -05005976 mutex_unlock(&ftrace_lock);
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01005977}
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01005978
Steven Rostedt868baf02011-02-10 21:26:13 -05005979static DEFINE_PER_CPU(struct ftrace_ret_stack *, idle_ret_stack);
5980
5981static void
5982graph_init_task(struct task_struct *t, struct ftrace_ret_stack *ret_stack)
5983{
5984 atomic_set(&t->tracing_graph_pause, 0);
5985 atomic_set(&t->trace_overrun, 0);
5986 t->ftrace_timestamp = 0;
Lucas De Marchi25985ed2011-03-30 22:57:33 -03005987 /* make curr_ret_stack visible before we add the ret_stack */
Steven Rostedt868baf02011-02-10 21:26:13 -05005988 smp_wmb();
5989 t->ret_stack = ret_stack;
5990}
5991
5992/*
5993 * Allocate a return stack for the idle task. May be the first
5994 * time through, or it may be done by CPU hotplug online.
5995 */
5996void ftrace_graph_init_idle_task(struct task_struct *t, int cpu)
5997{
5998 t->curr_ret_stack = -1;
5999 /*
6000 * The idle task has no parent, it either has its own
6001 * stack or no stack at all.
6002 */
6003 if (t->ret_stack)
6004 WARN_ON(t->ret_stack != per_cpu(idle_ret_stack, cpu));
6005
6006 if (ftrace_graph_active) {
6007 struct ftrace_ret_stack *ret_stack;
6008
6009 ret_stack = per_cpu(idle_ret_stack, cpu);
6010 if (!ret_stack) {
6011 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
6012 * sizeof(struct ftrace_ret_stack),
6013 GFP_KERNEL);
6014 if (!ret_stack)
6015 return;
6016 per_cpu(idle_ret_stack, cpu) = ret_stack;
6017 }
6018 graph_init_task(t, ret_stack);
6019 }
6020}
6021
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006022/* Allocate a return stack for newly created task */
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006023void ftrace_graph_init_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006024{
Steven Rostedt84047e32009-06-02 16:51:55 -04006025 /* Make sure we do not use the parent ret_stack */
6026 t->ret_stack = NULL;
Steven Rostedtea14eb72010-03-12 19:41:23 -05006027 t->curr_ret_stack = -1;
Steven Rostedt84047e32009-06-02 16:51:55 -04006028
Steven Rostedt597af812009-04-03 15:24:12 -04006029 if (ftrace_graph_active) {
Steven Rostedt82310a32009-06-02 12:26:07 -04006030 struct ftrace_ret_stack *ret_stack;
6031
6032 ret_stack = kmalloc(FTRACE_RETFUNC_DEPTH
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006033 * sizeof(struct ftrace_ret_stack),
6034 GFP_KERNEL);
Steven Rostedt82310a32009-06-02 12:26:07 -04006035 if (!ret_stack)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006036 return;
Steven Rostedt868baf02011-02-10 21:26:13 -05006037 graph_init_task(t, ret_stack);
Steven Rostedt84047e32009-06-02 16:51:55 -04006038 }
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006039}
6040
Frederic Weisbeckerfb526072008-11-25 21:07:04 +01006041void ftrace_graph_exit_task(struct task_struct *t)
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006042{
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01006043 struct ftrace_ret_stack *ret_stack = t->ret_stack;
6044
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006045 t->ret_stack = NULL;
Frederic Weisbeckereae849c2008-11-23 17:33:12 +01006046 /* NULL must become visible to IRQs before we free it: */
6047 barrier();
6048
6049 kfree(ret_stack);
Frederic Weisbeckerf201ae22008-11-23 06:22:56 +01006050}
Frederic Weisbecker15e6cb32008-11-11 07:14:25 +01006051#endif